From 259ae3518e2995314bd6d14523d711295606905b Mon Sep 17 00:00:00 2001 From: Sandor Szilard Magyari Date: Fri, 25 Feb 2022 21:00:51 +0100 Subject: [PATCH 1/3] Make receiver log level configurable #171 --- .../crds/monitoring.banzaicloud.io_receivers.yaml | 2 ++ config/crd/bases/monitoring.banzaicloud.io_receivers.yaml | 2 ++ pkg/resources/receiver/statefulset.go | 1 - pkg/sdk/api/v1alpha1/receiver_types.go | 2 ++ pkg/sdk/api/v1alpha1/zz_generated.deepcopy.go | 1 - pkg/sdk/resourcebuilder/zz_generated.deepcopy.go | 1 - 6 files changed, 6 insertions(+), 3 deletions(-) diff --git a/charts/thanos-operator/crds/monitoring.banzaicloud.io_receivers.yaml b/charts/thanos-operator/crds/monitoring.banzaicloud.io_receivers.yaml index cb1bf7c4..135412fb 100644 --- a/charts/thanos-operator/crds/monitoring.banzaicloud.io_receivers.yaml +++ b/charts/thanos-operator/crds/monitoring.banzaicloud.io_receivers.yaml @@ -419,6 +419,8 @@ spec: additionalProperties: type: string type: object + logLevel: + type: string metaOverrides: properties: annotations: diff --git a/config/crd/bases/monitoring.banzaicloud.io_receivers.yaml b/config/crd/bases/monitoring.banzaicloud.io_receivers.yaml index cb1bf7c4..135412fb 100644 --- a/config/crd/bases/monitoring.banzaicloud.io_receivers.yaml +++ b/config/crd/bases/monitoring.banzaicloud.io_receivers.yaml @@ -419,6 +419,8 @@ spec: additionalProperties: type: string type: object + logLevel: + type: string metaOverrides: properties: annotations: diff --git a/pkg/resources/receiver/statefulset.go b/pkg/resources/receiver/statefulset.go index f133caa4..2b1ee9fb 100644 --- a/pkg/resources/receiver/statefulset.go +++ b/pkg/resources/receiver/statefulset.go @@ -52,7 +52,6 @@ func (r receiverInstance) statefulset() (runtime.Object, reconciler.DesiredState "--receive.hashrings-file=/etc/hashring/hashring.json", fmt.Sprintf("--receive.replication-factor=%d", 1), "--label=receive_replica=\"$(NAME)\"", - "--log.level=debug", }, Env: []corev1.EnvVar{ { diff --git a/pkg/sdk/api/v1alpha1/receiver_types.go b/pkg/sdk/api/v1alpha1/receiver_types.go index 4519a5a3..80b67794 100644 --- a/pkg/sdk/api/v1alpha1/receiver_types.go +++ b/pkg/sdk/api/v1alpha1/receiver_types.go @@ -105,6 +105,8 @@ type ReceiverGroup struct { TSDBWalCompression *bool `json:"tsdbWalCompression,omitempty" thanos:"--tsdb.wal-compression"` // Do not create lockfile in TSDB data directory. In any case, the lockfiles will be deleted on next startup. TSDBNoLockfile *bool `json:"tsdbNoLockfile,omitempty" thanos:"--tsdb.no-lockfile"` + // Log level + LogLevel string `json:"logLevel,omitempty" thanos:"--log.level=%s"` } // ObjectStoreStatus defines the observed state of ObjectStore diff --git a/pkg/sdk/api/v1alpha1/zz_generated.deepcopy.go b/pkg/sdk/api/v1alpha1/zz_generated.deepcopy.go index f24aaeb7..8d505245 100644 --- a/pkg/sdk/api/v1alpha1/zz_generated.deepcopy.go +++ b/pkg/sdk/api/v1alpha1/zz_generated.deepcopy.go @@ -1,4 +1,3 @@ -//go:build !ignore_autogenerated // +build !ignore_autogenerated // Copyright 2021 Banzai Cloud diff --git a/pkg/sdk/resourcebuilder/zz_generated.deepcopy.go b/pkg/sdk/resourcebuilder/zz_generated.deepcopy.go index 221760a8..691c5dc6 100644 --- a/pkg/sdk/resourcebuilder/zz_generated.deepcopy.go +++ b/pkg/sdk/resourcebuilder/zz_generated.deepcopy.go @@ -1,4 +1,3 @@ -//go:build !ignore_autogenerated // +build !ignore_autogenerated // Copyright 2021 Banzai Cloud From 25b6b39aff19583fc7c1381e1dc93cfbea87e7df Mon Sep 17 00:00:00 2001 From: Sandor Szilard Magyari Date: Thu, 28 Apr 2022 15:49:46 +0200 Subject: [PATCH 2/3] regenerate crd and doc --- docs/types/receiver_types.md | 6 ++++++ pkg/sdk/api/v1alpha1/zz_generated.deepcopy.go | 1 + pkg/sdk/resourcebuilder/zz_generated.deepcopy.go | 1 + pkg/sdk/static/gen/crds/generated.go | 4 ++-- 4 files changed, 10 insertions(+), 2 deletions(-) diff --git a/docs/types/receiver_types.md b/docs/types/receiver_types.md index a783eacd..e16d1891 100644 --- a/docs/types/receiver_types.md +++ b/docs/types/receiver_types.md @@ -197,6 +197,12 @@ Do not create lockfile in TSDB data directory. In any case, the lockfiles will b Default: - +### logLevel (string, optional) {#receivergroup-loglevel} + +Log level + +Default: - + ## ReceiverStatus diff --git a/pkg/sdk/api/v1alpha1/zz_generated.deepcopy.go b/pkg/sdk/api/v1alpha1/zz_generated.deepcopy.go index 8d505245..f24aaeb7 100644 --- a/pkg/sdk/api/v1alpha1/zz_generated.deepcopy.go +++ b/pkg/sdk/api/v1alpha1/zz_generated.deepcopy.go @@ -1,3 +1,4 @@ +//go:build !ignore_autogenerated // +build !ignore_autogenerated // Copyright 2021 Banzai Cloud diff --git a/pkg/sdk/resourcebuilder/zz_generated.deepcopy.go b/pkg/sdk/resourcebuilder/zz_generated.deepcopy.go index 691c5dc6..221760a8 100644 --- a/pkg/sdk/resourcebuilder/zz_generated.deepcopy.go +++ b/pkg/sdk/resourcebuilder/zz_generated.deepcopy.go @@ -1,3 +1,4 @@ +//go:build !ignore_autogenerated // +build !ignore_autogenerated // Copyright 2021 Banzai Cloud diff --git a/pkg/sdk/static/gen/crds/generated.go b/pkg/sdk/static/gen/crds/generated.go index 3c5188de..032f910d 100644 --- a/pkg/sdk/static/gen/crds/generated.go +++ b/pkg/sdk/static/gen/crds/generated.go @@ -31,9 +31,9 @@ var Root = func() http.FileSystem { "/monitoring.banzaicloud.io_receivers.yaml": &vfsgen۰CompressedFileInfo{ name: "monitoring.banzaicloud.io_receivers.yaml", modTime: time.Time{}, - uncompressedSize: 220156, + uncompressedSize: 220221, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x5d\x73\xdb\x38\xb6\xe0\x7b\x7e\x05\xea\xd6\x7d\x48\x6e\x97\xb3\x33\x7b\x67\xa7\xf6\xe6\xa5\x2b\x63\x27\xe9\x54\xbe\xb4\x71\x92\x79\xc8\xf4\xdd\x82\xc9\x23\x09\x6b\x90\xe0\x00\xa0\x6c\x4d\xf5\x8f\xdf\x22\x29\x59\x72\x6c\x4b\x38\xe7\x40\xa4\xe8\xe0\x3c\x75\xdc\x22\x3e\x0f\xce\xf7\xc7\x93\x93\x93\x93\x27\xb2\x52\xdf\xc0\x3a\x65\xca\x17\x42\x56\x0a\xae\x3d\x94\xcd\xbf\xdc\xf3\xcb\xff\xed\x9e\x2b\xf3\x3f\x16\x7f\x7e\x72\xa9\xca\xfc\x85\x38\xad\x9d\x37\xc5\x67\x70\xa6\xb6\x19\x9c\xc1\x54\x95\xca\x2b\x53\x3e\x29\xc0\xcb\x5c\x7a\xf9\xe2\x89\x10\xb2\x2c\x8d\x97\xcd\x9f\x5d\xf3\x4f\x21\x32\x53\x7a\x6b\xb4\x06\x7b\x32\x83\xf2\xf9\x65\x7d\x01\x17\xb5\xd2\x39\xd8\x76\xf0\xf5\xd4\x8b\x3f\x3d\xff\x5f\xcf\xff\xf4\x44\x88\xcc\x42\xfb\xf9\x17\x55\x80\xf3\xb2\xa8\x5e\x88\xb2\xd6\xfa\x89\x10\xa5\x2c\xe0\x85\xb0\x90\x81\x6a\x3e\x7b\x5e\x98\x52\x79\x63\x55\x39\x7b\x7e\x21\xcb\x7f\x49\x95\x69\x53\xe7\xcf\x95\x79\xe2\x2a\xc8\x9a\xd9\x67\xd6\xd4\xd5\x0b\xf1\xf0\x0f\xbb\x41\x57\x2b\xed\x76\xf9\x79\x35\x7e\xfb\x27\xad\x9c\x7f\x77\xeb\xcf\xef\x95\xf3\xed\xff\xaa\x74\x6d\xa5\xde\x5a\x4f\xfb\x57\xa7\xca\x59\xad\xa5\xdd\xfc\xfd\x89\x10\x2e\x33\x15\xbc\x10\x1f\x9b\xa9\x2a\x99\x41\xfe\x44\x88\xd5\xc6\xdb\xa9\x4f\x56\x5b\x5b\xfc\x59\xea\x6a\x2e\xff\xdc\x8d\x94\xcd\xa1\x90\xdd\xca\x84\x30\x15\x94\x2f\x27\x6f\xbf\xfd\xe7\xf9\xad\x3f\x0b\x51\x59\x53\x81\xf5\x6a\xbd\x89\x0e\xb6\x2e\x75\xeb\xaf\x42\xf8\x65\xb3\x10\xe7\x9b\xb3\xd8\xfa\x1f\xed\xce\x43\x7e\xb8\x7d\xd3\x3f\xfe\xd8\x5c\xfc\x3f\xc8\xfc\xd6\xff\x58\xdf\xc2\x06\xee\x5f\x6c\x03\xeb\xd3\x7a\xd3\xdc\xd8\x9d\xff\x2b\x84\xf2\x50\xdc\xf3\xe7\x5d\x43\x76\x90\x99\x72\xaa\x66\xf7\xff\xbf\xfd\x5f\xb7\x7b\x36\x75\xe9\x5f\x5b\x53\x3c\xfc\x93\xb0\x81\x1a\x70\x90\x59\xf0\xef\x60\xf9\x19\xa6\xbb\x7f\x19\x3e\x66\x03\x97\xb0\xdc\xff\xa3\x07\xaf\xf5\x7e\x68\x91\x32\xf6\xa0\xa6\x6a\x1e\xb7\xd4\xe1\x03\x5f\x18\xa3\x41\x96\x7b\x7e\x6f\xe1\x9f\xb5\xb2\x90\xef\x1b\xf7\xa4\x39\xaa\x3d\xbf\x79\x00\x9f\x49\x3f\x5b\x48\x5d\xef\x3c\xc5\xa0\xd3\x6b\x47\x49\x38\x18\x69\xd0\x9f\x0b\x07\xf7\xfe\xa4\x21\xe8\xdf\x8c\xae\x1f\x3e\xe9\x10\x2c\x80\xa2\xf2\xcb\x33\x65\x63\x60\x68\x01\xb9\xaa\x77\xe2\xba\xc0\xdc\xb9\x53\xff\x82\xf7\xaa\x50\x7e\xdf\x88\xb2\x5c\x7e\xda\xfb\x24\x4e\x56\x13\xab\xd2\xc3\x6c\x25\x27\xec\xff\x75\x10\x6a\x56\xd2\x7b\xb0\xe5\x0b\xf1\xdf\x4f\xff\xf1\xcb\x1f\x27\xcf\x7e\x7d\xfa\xf4\xfb\x9f\x4e\xfe\xeb\xf7\x5f\x9e\xfe\xe3\x79\xfb\x1f\xff\xf1\xec\xd7\x67\x7f\xac\xff\xf1\xcb\xb3\x67\x4f\x9f\x7e\x7f\xf7\xe1\xcd\x97\xc9\xab\xdf\xd5\xb3\x3f\xbe\x97\x75\x71\xd9\xfd\xeb\x8f\xa7\xdf\xe1\xd5\xef\x81\x83\x3c\x7b\xf6\xeb\xbf\xef\x59\xd8\xf5\x49\x23\xb7\xd9\x12\x3c\xb8\x13\x55\xfa\x13\x63\x4f\xba\x1d\xbd\x10\xde\xd6\xc0\xa5\x92\x73\xe3\xfc\xff\xad\xa4\x9f\xc7\xc0\x9e\x7d\xe3\x08\x0c\xee\xb4\x3f\x8c\x33\x58\x08\x79\x38\x69\x57\x1f\xe3\x38\x27\xe9\x34\x23\x9d\x66\xb5\xc8\xa2\xb0\xdd\x56\x6d\x8a\xc9\x70\x33\x2d\x55\xf1\xf1\x10\x1c\xd2\x82\xcc\x3f\x95\x1a\xc1\xcf\x63\x73\xc8\x9b\xbd\xc5\xe1\x93\xf7\x69\x23\x77\x01\x73\xf8\x32\xcb\xc0\xb9\x0f\x26\x0f\xf9\xf1\x0e\x05\xe6\x2e\xa0\x6e\x6a\xfd\x73\x69\xad\xdc\x27\x53\x74\xac\xfe\x3c\x08\x0f\x05\xf2\x38\x44\xa7\x75\xb6\xfa\x5b\xd8\xaf\xd1\x1b\xbd\x4f\x4f\x8d\x38\x78\xa8\xa8\x49\x18\x3c\x14\xed\x45\x27\x1c\xaa\x32\x0f\xfa\x61\xb9\xff\x79\x08\xcc\x13\x11\xb7\x30\x24\x40\x3b\x10\x09\x49\xe2\x0d\x3e\x22\x24\xb1\x2b\x1b\x60\xd0\x95\x63\x11\x44\x37\x92\x7a\xe0\x6f\x85\x90\x79\xae\x3a\x6d\x6e\x82\x9c\x47\x84\x0a\xfc\x1b\xc0\x89\xfe\x77\xbf\x43\x20\x9a\x38\x66\x75\x60\x03\x0c\xc5\x60\x1b\x50\xd8\x27\x56\x8f\x05\x5c\x42\x13\x91\xd0\x24\xd2\xcf\x1d\x68\xc8\xbc\xd9\x69\xbf\x58\x03\x96\xa4\x15\xd2\x67\xf3\x57\xd7\x95\x05\xe7\x36\x9e\x91\xfd\x80\x10\x1a\x29\xcb\xea\x20\xd0\x6c\xb7\x01\x12\x92\xb6\x2e\x0c\x2b\x03\x0f\x98\x3d\x59\x6b\x30\x45\x1d\x03\xfa\xb4\x59\xeb\xc3\x89\xed\x6b\xc0\x88\x08\x1d\x84\x98\x1a\xb7\x7f\xbd\xbe\xa4\xe0\x4f\xd0\x94\x1b\xbf\xf3\xf6\xf5\xbc\x97\x17\xa0\x7b\x22\xf7\x84\x3b\x3d\x28\x65\xf2\xc6\xca\x19\x9c\x6a\xe9\xdc\x41\xb4\xfd\x45\x6b\xfc\x6d\x54\xd9\x03\x0d\x7d\x80\x55\xf7\x68\x1f\x9f\xd9\x2a\x7b\x99\xe7\x0d\xf1\x7e\x68\x13\x7b\x17\xde\x8c\xf1\xc6\xca\x0c\x26\x60\x95\x79\xf0\x01\x07\x8d\xf3\xb6\x9c\xed\x5a\x4b\x08\x17\xc8\x9a\x1f\x4c\x55\x26\x3d\xdf\x37\x35\x37\x6e\xa7\x61\x3d\x68\x10\xd5\xed\xe9\xd3\x02\xac\x55\x7b\x4c\x2a\xe1\x5e\x84\xfb\x9c\xd5\xf4\xf1\x84\xb8\x27\xbc\x61\xcf\xcf\xc9\x74\x88\x64\x04\x0a\x24\x28\x3a\x98\x96\x1e\xe3\xfa\x07\xb3\xf8\x5d\xc8\xec\x12\xc2\x6c\x0b\x58\x49\x6c\xad\x50\x87\xf2\x28\x8a\xa4\x87\x35\xbc\x08\xaa\x74\x83\x31\xc0\x90\x27\xc1\x18\x62\x88\x93\x60\xa5\xad\x60\xa3\x8c\xc0\x18\x66\x04\x45\xc8\x72\x60\x17\x2a\x0b\xe6\xbb\x82\x72\x40\xab\x39\x26\xc6\xee\xf5\xab\xae\x01\xa5\x47\xd3\xb4\x68\x92\x0e\x1d\x41\x3d\x45\x5d\xd1\x8a\xdb\x1d\x4e\xa2\xb3\xb5\x8e\xee\x96\xc0\xd3\x9c\x7d\x92\xc1\x6d\x20\xdc\xdb\xdc\x7b\x04\x39\xa3\xa9\xc7\x95\xf4\xf3\x3e\x14\x49\xda\xea\x3a\x40\x70\xa6\x98\xd3\x0a\x02\xe7\x8a\x3d\xbf\x20\x72\xb6\x1f\x81\xac\xc7\x6f\x03\x96\xf3\x1d\x64\x11\x58\xce\x78\x80\x45\xe0\xed\x14\xb7\x01\xc5\x49\xef\x7e\x8c\xe0\xac\x3f\x02\xc1\x9c\x71\x1b\x08\x9c\xf7\xfe\x35\x30\x2e\x80\xc0\x99\x7f\x04\xa4\xc5\xfb\x36\x50\xed\xdf\xf7\x8f\xc2\xc2\xc4\x48\x86\xe7\x6d\x60\xa1\x48\x48\x34\xcd\xc3\x93\x12\x8f\xa2\x99\xf4\x4b\x40\xe4\x4d\xe4\x89\xa9\x54\xe0\x64\xcd\xcf\x48\xa6\x58\xc2\xc5\xf4\x65\x8a\x6d\x45\x89\xc3\x59\x56\x49\x36\xc8\xb0\x5d\xfb\x30\x73\xc1\xc1\xa5\x49\x84\x90\x80\x16\xc2\x48\x98\x8e\x47\x9d\x2e\xfa\x1a\xc7\x1f\xd0\x4b\x3b\x18\x2a\xc4\x0c\x8d\xdf\x47\x0b\x03\x76\x1d\x64\xbb\x3d\x07\xbb\x00\x7b\xba\xdf\xe4\xb9\x77\xc2\xb9\xaf\xb2\x53\xad\xa0\xf4\x71\x46\xf3\x15\xd7\xae\xdc\x8c\x11\x77\x45\x31\xac\xd4\xcd\x38\xc9\x4a\x9d\xac\xd4\xf7\xff\x3c\x59\xa9\xb7\x21\x59\xa9\x6f\x41\xb2\x52\x27\x2b\xf5\xde\x39\x92\x95\x3a\x59\xa9\x1f\x80\x64\xa5\x0e\x85\x64\xa5\xee\x6f\x7e\x91\xac\xd4\x3f\x40\xb2\x52\x27\x2b\x75\xb2\x52\xaf\x20\x59\xa9\x93\x95\x3a\xf0\xc3\x64\xa5\xde\xf1\xdb\x64\xa5\xde\xf5\x51\xb2\x52\x53\x7e\xd6\x87\x95\xba\xd1\x10\xe2\x59\xa9\x77\x1b\xce\x70\xc6\xb2\x18\xbb\x2b\xc0\xcb\xbd\x26\xd3\x90\x97\x16\x68\xd6\xc4\x9b\x03\x03\x31\x37\x08\x5f\xf6\x9b\x2d\x87\x5c\x5f\xc8\x65\x59\x95\xb1\xae\xa9\x11\xa8\xec\x62\x77\x79\x9d\xa0\x1d\x45\x78\x7a\x42\x54\x7b\xe4\xcb\xa9\xb1\x85\xf4\xad\x18\xf8\x9f\xff\x73\xef\x64\xfb\x84\xc5\xca\x9a\x02\xfc\x1c\x6a\xf7\x32\x0c\x59\xbb\x61\xf7\x55\x4f\x58\xc9\xca\x1f\xba\x42\x76\xfc\xf1\xbc\x2a\xc0\xd4\x5c\x87\xc8\x5e\x64\xda\xa5\xe4\xed\x1d\x7f\x55\x12\xee\x0c\xa6\xb2\xd6\xfe\x0b\x94\xb2\xf4\x6f\xe9\x3e\xa9\xd5\x70\xbf\x49\x37\x6f\x7e\xe3\x5e\x2b\x0d\x9f\x61\x6a\xc1\xcd\xdf\xee\x41\xd8\xd0\xb1\x3f\x43\xa5\x55\x26\x7f\x03\x99\xc3\x83\x97\x84\x1c\xac\x41\xa0\xd7\x72\x57\x62\xe2\x7e\xc4\x5c\x8d\xd8\x1d\x61\x9c\xd5\x75\x63\xb5\x49\x59\xbb\x84\x84\x80\xe1\x0a\xe3\xe1\xef\x56\x79\xe0\xba\x42\xb7\x86\xea\x3c\xa2\x1d\x47\x65\x2e\xaf\xbd\x84\x07\x17\x15\x42\x3c\xf6\xdf\xcf\xea\x75\x47\xe1\x91\x21\xee\xc4\x50\xa9\x16\xe1\x46\xa4\xb9\xe0\xe2\xe7\x7b\x85\xba\x0d\x8f\x65\xbd\x41\x3f\xdb\xe7\x22\x0c\xbe\x4f\xad\x4d\x23\x59\xbe\x37\x32\xff\x9b\xd4\xb2\xcc\xc0\x7e\x34\x79\x6b\x82\xd9\xbb\xfb\x30\xc6\x22\xda\xb2\x44\xb5\xf3\x60\xdf\x4e\xc2\x86\x0c\x38\xce\x9b\x11\xf7\xae\x32\x50\x9f\x42\x5f\x64\x88\xd6\x71\xcb\x8a\xa3\x95\xf3\x27\xab\x6f\xbd\x29\x54\xb6\xf3\x63\xb8\xf6\x60\x4b\xa9\x8f\x7a\x87\xeb\x45\x86\x68\x85\xc1\xd3\xaf\x07\xfd\x62\xe5\x74\xaa\xb2\x89\xd1\x2a\xdb\x9b\x8f\x1e\x3c\xfa\x1c\xa4\xf6\xf3\xd3\x39\x64\x97\x6b\x44\xdf\x37\x76\xa8\x3c\x28\x82\x65\x42\xb1\x96\x89\x0f\xb6\x4d\x55\xbd\x96\x85\xd2\x01\x34\x6c\xa4\xef\x63\xb5\xc1\x65\xe4\x73\xd3\x5b\x84\xb0\x75\x73\x1e\x64\xe4\x88\x84\x70\x7b\xd8\x55\x95\x26\x59\xce\x8e\xf9\xda\xab\x10\xde\x12\xb8\x3c\x9c\x35\x4e\x56\xd5\xc4\x1a\x6f\x32\x13\x54\xe8\x15\x6d\xbf\x0a\xf7\x60\x61\x07\x0e\xa4\x54\x1d\x60\xe8\xd5\xf6\x72\xc2\xdd\x1e\xfb\x34\xe8\x5e\xd7\x82\xba\xd1\xbc\xd3\x1d\x5f\x88\x2f\xa7\x93\x43\xdc\x94\x97\x76\x06\x3e\xfc\xae\x10\xfe\x2a\x8a\x77\x8a\xe0\x8b\x62\x7b\x9e\xc2\x3d\x0c\x27\x2d\x22\x05\xd2\x20\x44\x8c\x1d\x8d\xf5\x14\xb2\x3a\xb9\x84\xe5\x5e\x4a\x12\xb4\xea\x93\x1b\xbc\x24\xb2\xc0\x42\x56\xbb\xa9\x68\x7d\xa1\x95\x9b\x7f\x34\xfe\x33\xc8\x7c\xb9\x52\x95\xf7\xd3\xc1\x70\xa1\x3d\xb4\xfc\xd1\xb1\x28\x4e\xe2\xc7\xd3\x6c\x2e\x34\x58\x9e\x70\x5d\x21\xa6\x97\xd3\xb6\x87\x45\x3c\x81\xe2\x87\x71\x4f\x77\x36\x1f\x58\x03\xae\xe4\xab\x82\xd2\xef\x97\x28\xb0\xe3\x8a\x8d\x51\xf0\x1c\x32\x53\xe6\xc1\x4e\x29\x3c\xcd\xc7\x53\xfd\x43\xc4\xdd\xfa\x00\x57\x73\x8f\x76\x77\xe7\xa5\x87\x69\xad\xcf\xc1\x27\x3b\xd0\xde\x9f\x26\x3b\xd0\x7d\x10\x5c\xd2\xdb\xe4\x1f\x64\x29\x67\x50\x40\xe9\x23\xab\x54\xfb\x2c\xa6\x6b\x38\x8c\x9a\x6d\x61\xa1\x1a\x02\xfc\x9b\x72\xde\xd8\x65\x50\xd1\xff\xc3\xac\x24\x94\x9f\x62\x88\x34\xa5\x8c\xe0\x41\x83\x1d\x50\xa5\x03\x09\x91\x0b\xf8\x92\x81\x84\x49\xb0\xa5\x02\x8f\x33\x64\x03\x17\xe9\x13\x5e\x16\x10\x59\x12\xf0\x80\xd1\x3d\xc8\x32\x80\xe3\x4e\x0a\x0a\x8f\xcf\x0c\x5e\xad\x87\xa2\xd2\x7b\x52\xe9\x04\x96\x22\x05\x26\xaf\x61\xc7\x15\xf8\x24\x36\x31\x82\xb2\x8f\x98\xa4\x36\x31\x82\xfd\xa0\x7e\x1e\x92\xe8\x26\x28\x78\x92\xf9\x36\x4c\x40\xe6\x5a\x95\x40\xd7\x5e\xfe\xfa\x97\x03\x69\x2f\x42\xc8\x40\x3d\x73\x0d\x94\x74\x83\xd2\xe4\x10\xaa\xcf\x72\xe7\xea\xbe\x83\x29\x58\x0b\xf9\x59\xdd\x20\xd8\x79\x36\x87\xbc\xd6\xaa\x9c\xbd\x9d\x95\xe6\xe6\xcf\xaf\xae\x21\xab\xfd\x9d\x3e\x84\xfb\x81\x94\x9d\xc2\x4d\xd4\xe8\xf6\x04\x25\x35\x51\x84\x9f\x26\x42\xad\x14\x7d\x17\x88\x07\xb8\x81\x18\x39\x2f\x82\x52\x5f\xfa\x2e\x44\xc9\x38\x11\xe4\x1a\xd4\x07\x5c\x10\xa5\x4e\xf5\x5d\x60\xdf\x75\x07\xd1\x76\x45\x0b\x56\xbf\x0b\xdc\x0c\x1d\x81\xae\x80\x7d\xdf\xf7\xe8\x9a\xd8\x77\x81\x9d\xb0\x23\xa2\x9c\x69\x4b\x5d\x5e\x2b\xd0\xe1\x0c\xf2\x2e\x24\xc2\x72\x0f\x24\xc2\xb2\x0b\x12\x61\xb9\xf7\xfb\xc7\x42\x58\x98\x8b\xb8\x02\x35\x9b\x13\x73\x00\x29\xde\x87\xdb\xc0\x4b\x02\xa4\x23\xd2\xc9\x96\xb4\x49\xf8\xb8\x3b\x34\xf4\x87\x8c\xab\xa2\x62\xc9\xfa\x88\x0e\xa3\x27\x70\x98\x49\xa3\x32\x9d\xaf\xec\xb4\x5f\xc0\xd2\x28\x1d\x83\x44\x26\x75\xe1\x1e\x48\x5c\x7d\x07\x24\xae\xbe\x0b\x12\x57\xbf\x3b\x48\x52\x17\xd6\x90\x08\xcb\x0e\x48\x84\x65\x17\x24\xc2\x72\x77\x90\xc1\xd4\x05\xfa\xf4\xf4\x52\x0f\x77\x24\x45\x92\xec\x8c\xde\x32\xe9\xb3\xca\xe4\xc9\x0f\xc0\xf4\x03\x6c\x8e\xb0\xb9\xed\xa1\xa4\xfb\xd6\x59\x78\x8e\xe8\x4b\x79\xa8\x85\x88\xa8\xaa\x86\x88\xc5\x29\x62\x49\x06\x22\x8e\x74\x20\xe2\xb2\xae\x78\x52\x42\xf4\x85\xc5\x91\x16\x44\x3c\x89\x41\xc4\xde\x61\x2c\xc9\x41\x44\x92\x1e\x44\x04\x09\x42\xc4\x92\x22\x44\x2c\x49\x42\x44\x3b\x67\x42\x8f\xd0\xfb\x81\x17\x72\x71\x3f\x44\xc3\xcc\x88\xe2\x1b\x6b\x90\x52\x16\xe0\x2a\x99\x41\x62\x4e\x0f\x42\x62\x4e\x03\x2d\x2c\x31\x27\x0c\x24\xe6\xb4\x7f\xa0\xc4\x9c\xc2\x07\x3a\x22\xe6\x34\xa4\xd1\x32\xca\xa9\xf2\xb1\xcf\x9b\xca\x68\x33\x5b\xbe\xe3\x30\x10\xf6\x5e\x78\x34\xe6\x64\x7b\x17\xc9\x3f\x8d\x03\x96\x7f\xfa\xb6\x15\x24\x39\xa9\xc7\x65\xc4\x8a\x60\x3d\x4a\x0e\xea\x7b\x20\xf9\x91\x76\x40\xf2\x23\xed\x82\xe4\x47\xba\x3b\x08\xdb\x41\xcd\x15\xac\x63\x0b\xd5\x11\x45\x3f\xc6\x01\x33\x07\x88\x64\xe1\x49\x0c\xe4\x1e\x48\x0c\x64\x07\x24\x06\xb2\x0b\x12\x03\xb9\x3b\x48\x62\x20\x0f\x0f\x72\x04\x0c\x84\x78\x14\xac\x17\xcc\x3e\x41\x1e\x66\xb1\xad\x2e\xac\xf5\x73\x54\x7e\x8e\xa5\xa5\x77\xad\x9d\x1c\x1d\x53\x7a\x95\x22\x64\x52\x84\x4c\xcc\x85\x88\xe4\x84\x0c\x84\xe4\x84\xc4\x41\x72\x42\x86\x43\x72\x42\x3e\x0c\xc9\x09\xd9\xe7\x20\x29\x42\x66\x3f\x24\xe6\x34\xd0\xc2\x12\x73\xc2\x40\x62\x4e\xfb\x07\x4a\xcc\x29\x7c\xa0\x23\x62\x4e\x29\x42\x26\x45\xc8\xb4\x90\x22\x64\x52\x84\xcc\x1e\x48\x11\x32\xf1\x17\x20\x92\x83\xf3\x01\x48\x0e\xce\xdd\x90\x1c\x9c\x0f\x43\x72\x70\x6e\x20\x39\x38\x0f\x35\x40\x8a\x90\xb9\x0b\x89\x81\xf4\xb0\xa0\xc4\x40\x76\x41\x62\x20\x77\x07\x49\x0c\xe4\xe1\x41\x8e\x80\x81\xa4\x08\x19\xea\xf4\x29\x42\x26\xfa\x84\xe8\x4f\x64\xed\x4d\x61\xea\xae\xdd\xba\xca\xe0\x65\x96\x35\xff\xfa\x62\x2e\x21\xd8\x0a\xd0\x4d\x1a\xd2\xa6\x6e\x0d\x99\x29\xbd\x54\x25\xd8\xe0\x17\x80\x7c\x2e\x34\x51\x46\xda\x19\xf2\x49\x92\x5e\x31\x19\xfb\x69\x68\x94\x99\xa2\x90\x25\xf2\xb9\x8c\x61\x63\x50\x2e\x7a\xd8\x14\xab\x44\x69\x70\x93\xd9\xdb\xc0\xa2\x8f\xad\x84\x39\xcc\xac\xaf\xad\x21\x05\x93\x71\x35\x8f\xac\xed\xd4\xf8\x41\x56\xef\x60\xf9\x19\x02\x7b\xb4\xc6\x5f\x86\xe0\x2b\x3f\x51\x64\x23\x2a\xda\x45\x5d\x84\xa9\x3a\x99\x91\xbf\x10\x0c\x67\xb9\x0b\x5c\x95\x82\xa3\x4e\xb0\x85\xd4\xa9\x02\x9d\x0f\x8c\xd1\xb2\x52\xdf\xc0\x3a\x82\x5b\x60\x1b\xa2\xe0\x54\x7b\x1c\x13\xe9\xe7\x03\xaf\x84\x8f\x53\x37\x3b\x19\x0a\xb3\x2c\xb8\xb6\x03\xfd\xeb\x23\xc0\xb0\x1b\x71\x30\xa4\x63\xda\x2e\x88\x82\x64\xb9\x5a\x28\xc7\xb3\x18\x21\x3a\x85\xdf\x0f\x94\xfe\xe1\xbb\x47\x62\x1b\x79\x2a\xe9\x3d\xd8\xf2\x85\xf8\xef\xa7\xff\xf8\xe5\x8f\x93\x67\xbf\x3e\x7d\xfa\xfd\x4f\x27\xff\xf5\xfb\x2f\x4f\xff\xf1\xbc\xfd\x8f\xff\x78\xf6\xeb\xb3\x3f\xd6\xff\xf8\xe5\xd9\xb3\xa7\x4f\xbf\xbf\xfb\xf0\xe6\xcb\xe4\xd5\xef\xea\xd9\x1f\xdf\xcb\xba\xb8\xec\xfe\xf5\xc7\xd3\xef\xf0\xea\xf7\xc0\x41\x9e\x3d\xfb\xf5\xdf\x19\x8b\x66\x37\x48\x7f\x08\xd6\xcf\x67\xf4\x84\x68\xbd\x91\xa1\xe8\x90\x83\xcc\x82\x4f\x72\x9b\x48\x72\xdb\x6d\x18\xb1\xdc\xc6\xf8\x9c\x51\xe4\x58\x16\xd8\x47\x4c\x5e\x27\x59\x5f\xc7\x2b\x88\xbd\xeb\xec\x37\xba\x24\x91\x20\x71\x89\x11\x87\x08\xb0\x09\x00\xf7\xf1\x73\x1f\x3e\xeb\xe1\x55\x16\xa6\xea\xba\x77\xcb\x47\xc7\xc1\x12\xb6\x50\x17\x30\x08\xb6\xf4\x4c\xfa\x54\x21\x67\xc8\x7b\x22\xde\x4e\x3b\xd3\xa4\xd6\x7a\x62\xb4\xca\x90\x32\x0d\x71\x4e\xad\xa6\x90\x2d\x33\x8d\xdc\x21\x1d\xf7\x2b\xe3\xfc\xb9\x97\x96\x10\xb4\xca\x7b\x70\x70\x1d\xd6\x05\x39\xf6\xbc\x82\x6a\xc7\xdf\x86\xc7\x11\xf4\xcd\x94\xcd\xe6\xde\x57\x6f\x80\x18\xed\xcc\xbf\xc4\xb9\x71\xc4\xb9\x45\x9c\x0b\x68\xf6\xff\x1b\xc8\x1c\xe1\x7b\xbb\x0b\x47\x13\x6a\xc4\xd5\x98\x44\xf4\xd0\x9e\x23\x59\x4d\x9c\x40\x1a\x82\x4e\x71\x7b\x80\xf6\x48\xd8\x14\x67\xf0\x30\x9a\x8a\x65\x72\x8e\x70\xa5\x95\xa1\xf0\xba\x35\x30\xcd\x91\xb1\x8c\x91\x91\x4c\x91\x07\xb2\xe9\xb9\x6c\x0e\x1c\x62\x32\x78\x16\x51\x83\x23\x43\x70\x54\x9f\x55\xe7\x26\xbb\xfc\x89\x79\x6a\x7a\x9d\x1b\x38\xc8\xeb\x1c\xe7\xd3\x60\x7c\x5c\x59\x38\xf7\xa6\x4a\xea\x0d\x02\x92\x7a\x93\xd4\x9b\xa4\xde\xdc\x81\xa4\xde\x3c\x00\x49\xbd\x59\x43\x52\x6f\x1e\xbb\x00\x95\xd4\x9b\xa4\xde\xa4\xd7\x79\xac\xaf\x73\x9c\x4f\x83\xe9\x42\x43\x7f\xa8\xd5\x02\x4a\x70\x6e\x62\xcd\x45\x6f\x9e\x26\x9a\x46\xc4\x7b\xf4\x2c\x4d\x68\xbc\x79\x65\x0c\x64\x9c\x4a\xa5\x6b\x0b\x5f\xe6\x16\xdc\xdc\x68\xc2\xd1\xf1\xea\xd8\x70\x48\x14\x59\x63\xe3\x21\x19\x9d\xab\x30\x91\x84\xad\xa1\xb1\x30\x3c\x86\x66\x76\x14\x61\x7a\x6c\x6d\xec\x28\xa2\x4f\x19\x1a\x18\x4f\xfb\x8a\x94\x3e\x4c\xd5\xba\xe8\x1a\x17\xf3\xda\xe8\xb2\x1c\x43\x8e\x8b\x21\xc3\x45\x90\xdf\x0e\x20\xbb\x71\xb4\xaa\xc1\x92\xa0\x49\xe2\x22\xe3\xc1\xa8\x52\x79\x25\xf5\x19\x68\xb9\x3c\x87\xcc\x94\x39\x81\xf8\x0e\xc7\xa0\x2b\xb0\xca\xe4\x23\x5c\xb8\xab\xb3\x0c\x9c\x1b\xa5\x54\xc4\xd0\xba\x47\x2a\x17\x25\xca\x1c\x91\x32\x8f\x89\x3c\x7a\xb0\x85\x2a\xa5\x57\xa6\x7c\x63\x65\x06\x93\x68\xf4\xe6\xaf\x7f\xe9\xf7\xcd\xaa\x02\x4c\xed\x47\x47\x29\x89\x77\x87\x57\x03\x88\xef\xa4\x41\xc8\x3e\xea\x52\x30\xb3\x26\xba\x14\xce\x09\x91\x8c\x71\x0b\xc9\xf2\xe8\x58\x43\xf5\xdf\x4e\x7a\x4f\x1d\x68\xa6\x1d\xe7\x81\x0d\x52\xd9\xa2\xb2\xc6\x9b\xcc\x90\xf2\x0d\x72\x98\xca\x5a\xfb\x17\xe2\xcb\xe9\xa4\xdf\x75\xd3\x53\xba\x6e\x3d\x2a\x2c\x31\xee\x37\xc1\xe1\x07\x1e\xae\x95\xf3\x27\x85\xac\x4e\x2e\x61\x89\xa4\x26\x9c\x6d\x9f\xdc\xa0\x08\x73\xe9\xdd\x21\x14\xb2\x42\x8c\x63\x41\xe6\x2a\x19\xa8\xf7\x41\x32\x50\x8f\x4c\x15\x4b\x06\x6a\x24\x24\x03\xb5\x48\x06\xea\x64\xa0\x4e\x66\x10\x2c\x24\x03\xb5\x48\x06\xea\x64\xa0\x46\x40\x32\x50\x23\x20\x51\xe6\xe3\xa1\xcc\x63\x22\x8f\xc9\x40\xbd\x82\x91\x19\xa8\xd7\xa5\xbd\xd0\x0d\xcf\xa9\xe4\x49\xab\x42\x61\x2d\xd5\x22\x62\x81\x79\x32\x9d\xe1\x53\x19\x36\x8d\x19\x55\x79\xbd\xe8\xe4\x90\x59\x31\x0b\x5c\x42\xbb\x84\x76\x3d\xa2\x1d\xf1\x43\x07\x59\x6d\x95\x5f\x9e\x9a\xd2\xc3\x35\x52\x9a\xa2\xd3\x65\xa9\xb5\xb9\x9a\x58\xb5\x50\x1a\x66\xf0\xca\x65\x52\x4b\x4a\x9b\x3f\x5e\xc5\xa6\x4c\x56\xf2\x42\x69\x45\x7b\x66\x3c\xa1\x59\xe6\x3f\x9d\xb5\x5a\x88\xdc\x52\x32\x88\xc5\xa8\x77\xcd\xca\xb9\x5e\x3d\x10\x02\xaa\x70\xde\x45\x65\x4d\xf6\xc1\xd4\x25\x41\xb9\x62\x79\x25\x65\xfe\xa9\xd4\xcb\xcf\xc6\xf8\xd7\x4a\x83\x5b\x3a\x0f\x84\xe2\xfd\x9c\x9d\xdb\xba\x7c\xe9\xde\x58\x53\x13\xd0\x74\x38\x2d\xa2\x5d\xf5\x47\x53\x36\x27\x37\xc0\x79\x7d\x75\x40\xa8\x4d\x3d\xdc\x71\x39\x78\xaf\xca\xfa\xfa\x53\x5b\x2b\xb0\xff\x26\xb1\xb0\x00\x62\x7d\x42\x26\x1d\xb3\x06\x5b\x0f\x2f\xd2\xc4\xed\xe7\x43\x4c\x5c\x93\x30\x93\x3d\x31\x83\xe4\x3b\xc8\x32\x53\x54\x13\x6b\xa6\x8a\x72\x5b\x4c\xdc\x34\x99\xd4\x6d\x08\x10\x75\x7e\x31\x5a\x6c\x61\x35\xf1\x5a\x56\xbd\x6a\x98\x57\xaa\xcc\xcd\x95\x1b\x88\x82\xcd\x0a\x27\x4f\x2d\xe4\x50\x7a\x25\xf5\x79\x45\xad\xd0\xc2\xc4\x93\xbb\xcb\xa0\x37\x6b\xe0\x3a\xe8\xbb\x27\x93\x81\x23\xca\xa8\x1c\x1e\x2c\xb6\xf9\xf0\x40\x47\xd0\xbb\xda\xea\xa5\xf5\x75\x95\xe2\x9a\x76\xc1\x4f\xa9\x33\xa5\xb8\x26\x34\xa4\xb8\x26\xe2\x08\x29\xae\xe9\x06\x52\x5c\x53\x8a\x6b\x0a\x81\xc7\xea\x3d\x4f\x71\x4d\x41\x90\xe2\x9a\x52\x5c\x53\x8a\x6b\xda\x07\x89\x32\xa7\xb8\xa6\x14\xd7\x34\xa2\xb8\x26\xe7\x73\x85\xf4\x5d\x53\x2d\x3e\xed\x54\x9f\x4a\x6c\x9f\x47\xea\x74\x5b\x18\xf9\x01\x9c\x93\x33\xc0\x37\xbb\x25\xd2\x84\x7b\xa6\xee\xaf\x81\x90\xf7\xa4\x79\xf0\x07\xbc\x30\xba\x2e\xe0\x0c\x16\x0a\x1d\x16\xd7\x7b\x4a\x75\xde\xae\x92\xda\xed\x98\xc5\x1a\x06\xc8\xee\xa5\x67\xc9\x6e\xce\x09\xfd\xe9\xf1\xf7\x4c\xec\x10\xb6\x0d\x0f\x38\x76\x7c\x2d\x9a\x45\x0e\x82\xae\xdd\xcc\xd6\x54\x72\x46\x8c\x6b\x1a\xdf\x7b\xd9\x44\x70\xd0\x27\xa6\x7a\x40\x5c\x7d\x31\xc8\x3d\xaf\xe6\x7d\x75\x5d\x91\xfc\xcc\x83\x50\xa7\x9b\x57\xf1\x08\x89\xd3\x95\xb1\x97\xaa\x9c\x9d\x29\xe4\x75\x90\x2e\x02\x7f\x05\xc8\x23\x24\x1c\x1e\xf6\xd8\xf2\xd2\x9d\xb6\xed\x65\x43\x37\x41\xa1\xc7\xcd\xa6\x1d\xd8\x05\xd2\xce\x4f\xe0\x17\x54\x69\x8f\x80\x6c\x06\xef\x7c\x27\x6c\x88\xce\xfe\x68\x1c\x80\x41\x91\x88\x6e\x08\xf2\x8c\x44\xd2\x42\xb9\x6b\x07\xd2\x66\x73\xdc\x1d\x1c\x33\xf6\xa2\x8f\x2e\x2f\x1d\x4e\xf9\x42\x6f\x05\x4a\x79\xa1\xe1\x1c\x6c\x23\x3a\xbf\x57\xe5\x65\xf0\xd9\xe1\x25\x07\xa8\xe6\x50\x80\x95\xfa\x74\x5d\xd7\x25\x78\x32\xe4\xad\xd2\x9e\xaf\xb4\xb3\x3e\x44\x6b\xe6\xcb\xc3\xf2\x66\x52\x2c\xc3\x18\x36\x06\xe5\xe2\xc8\x15\xa1\x41\xb4\x01\xb2\x5b\x9a\x3f\x2b\xbe\xa9\x7f\x07\xdc\x90\x80\x9b\x4e\xfd\xef\x60\x49\x6c\xbf\x1e\x63\x19\x0d\x5c\x02\x49\x0d\x5b\x43\x94\xc0\x84\xa3\x88\x8e\xe0\xb6\x84\x17\x11\xc2\xf3\x44\x94\x08\x89\x4b\xa0\xb6\x53\x62\x87\x38\x4c\x15\xe8\x7c\x60\x8c\x96\x95\xfa\x06\xd6\x11\xad\x29\x6b\x88\x82\x53\xed\x71\x50\x0d\x0e\x11\x57\xc2\xc7\xa9\x9b\x9d\x0c\x85\x59\xeb\x94\xf0\xd7\x47\x80\x61\x37\x65\xfe\xe8\x51\xb4\x1d\x44\x41\xb2\x5c\x2d\x94\x33\xc4\xfc\x85\x0e\x98\x9d\x8e\xe2\xf5\x3a\x8a\xd6\xed\x68\x64\xf9\xc1\x6b\x38\x50\x0b\xb5\xcd\xf3\x19\x3d\x21\x5a\x6f\x64\x28\x3a\xe4\x20\xb3\xe0\x93\xdc\x26\x92\xdc\x76\x1b\x46\x2c\xb7\x31\x6b\x58\xd0\xdc\x0b\xc7\xef\x24\x80\x72\x81\x57\x10\x87\xa8\x5f\xde\xe9\x92\x44\x82\xc4\x25\x46\x1c\x22\xc0\x26\x00\xdc\xc7\xcf\x7d\xf8\xac\x87\x57\x59\x98\xaa\xeb\xfe\x7d\x91\x2d\x07\x4b\xd8\x42\x5d\xc0\x20\xd8\xd2\x33\xe9\x53\x85\x9c\xf5\xd3\x22\xa2\x9d\x69\x52\x6b\xdd\x63\xd0\x96\x56\x53\xc8\x96\x19\x36\x6f\x99\x8e\xfb\x95\x71\xfe\xdc\x4b\x4a\xb4\x2e\xef\xc1\xd1\x72\x11\xf9\xf3\x0a\x6e\x4e\xa2\x88\xd1\xcc\x3e\x8a\x7c\xc9\xcb\xda\x61\xcb\x66\xe4\x5c\x3f\xf1\x38\x5a\x38\xb3\x73\xff\x44\x0c\x4c\x8a\xa1\xb1\x89\x08\x1a\x93\x88\x85\xd5\x22\x46\x3e\x60\xc4\xd5\x70\xb5\x27\xc1\xcd\x0d\x14\xec\xfc\x40\x11\xc3\xbc\x20\x22\x50\x1c\x4e\xae\xa0\x88\x73\xa5\xa9\xf1\xfa\x06\x0e\x64\xd3\xe3\xe4\x11\x8a\x18\xb7\x3c\xce\xde\xef\xac\x3c\x31\xf1\x38\x78\x6a\x7a\x9d\x1b\x38\xc8\xeb\x1c\xe7\xd3\x60\x7c\x5c\x59\x38\xf7\x94\x9a\x8d\x49\xbd\xa1\x7e\x9e\xd4\x9b\xc7\x40\x8a\x93\x7a\xf3\x23\x24\xf5\xe6\x01\x48\xea\xcd\x1a\x92\x7a\xf3\xd8\x05\xa8\xa4\xde\x24\xf5\x26\xbd\xce\x63\x7d\x9d\xe3\x7c\x1a\x7d\xd7\x9e\xd4\x6a\x01\xa9\xa9\xee\x3e\x48\xc5\x27\x47\x56\x66\x29\x15\x9f\x44\x42\x2a\x3e\x29\x52\xf1\xc9\x54\x7c\x32\x95\x38\xc3\x42\x2a\x3e\x29\x52\xf1\xc9\x54\x7c\x12\x01\xa9\xf8\x24\x02\x12\x65\x3e\x1e\xca\x3c\x26\xf2\x98\x8a\x4f\xae\x60\x64\xc5\x27\xf1\x6a\x00\xf1\x9d\x34\x08\x79\xec\x25\xdf\x6e\x52\x38\x27\x44\x32\xc6\xbb\x7c\x1e\xe2\x76\x54\xff\xed\xa4\xf7\xd4\x81\xb6\x7f\xcd\x28\x0f\x6c\x90\xca\x16\x95\x35\xde\x64\x86\x94\x6f\x90\xc3\x54\xd6\xda\xbf\x10\x5f\x4e\x27\xfd\xae\x9b\x9e\xd2\x75\xeb\x51\x61\x89\x71\xbf\x09\x0e\x16\x64\xae\x92\x75\x76\x1f\x24\xeb\xec\xc8\xf4\x90\x64\x9d\x45\x42\xb2\xce\x8a\x64\x9d\x4d\xd6\xd9\x64\x03\xc0\x42\xb2\xce\x8a\x64\x9d\x4d\xd6\x59\x04\x24\xeb\x2c\x02\x12\x65\x3e\x1e\xca\x3c\x26\xf2\x98\xac\xb3\x2b\x18\x99\x75\x76\x5d\xd7\xaa\xb7\xba\xdf\x5a\x15\x0a\x6b\xa6\x6d\x40\xe6\xb9\xea\xca\x68\x4c\x58\xa4\x91\x4c\x67\xf8\x54\x86\x4d\x63\x46\x55\x5b\x2e\x3a\x39\x64\x96\x8b\x02\x97\xd0\x2e\xa1\x5d\x8f\x68\x47\xfc\xd0\x41\x56\x5b\xe5\x97\xa7\xa6\xf4\x70\x8d\x94\xa6\xe8\x74\x59\x6a\x6d\xae\x26\x56\x2d\x94\x86\x19\xbc\x72\x99\xd4\xc4\xd6\x40\x9c\x72\x45\x99\xac\xe4\x85\xd2\x8a\xf6\xcc\x78\x42\xb3\xcc\x7f\x3a\x6b\xb5\x10\xb9\xa5\xa4\xcf\x8a\x51\xef\x9a\x95\x70\xbc\x7a\x20\x04\x54\xe1\xbc\x8b\xca\x9a\xac\xed\x69\x46\x9d\x96\xe8\x92\xeb\x1a\x66\x7d\x36\xc6\xbf\x56\x1a\xdc\xd2\x79\x20\x54\xae\xe7\xec\xdc\xd6\xe5\x4b\xf7\xc6\x9a\x9a\x80\xa6\xc3\x69\x11\xed\xaa\x3f\x9a\xb2\x39\xb9\x01\xce\xeb\xab\x03\x42\x61\xe6\xe1\x8e\xcb\xc1\x7b\x55\xd6\xd7\x9f\xf0\x3d\x8b\x3a\xe0\x11\x7e\x0d\x0b\x20\x16\xe7\x63\xd2\x31\x6b\xb0\xc5\xe0\x22\x4d\xdc\x7e\x3e\xc4\xc4\x35\x09\x33\xd9\x13\x33\x48\xbe\x83\x2c\x33\x45\x35\xb1\x66\xaa\x28\xb7\xc5\xc4\x4d\x93\x49\xdd\xc6\xbf\x50\xe7\x17\xa3\xc5\x16\x8e\xfd\xab\x99\xb8\x4f\x2c\xb9\x52\x65\x6e\xae\xdc\x40\x14\x6c\x56\x38\x79\x6a\x21\x87\xd2\x2b\xa9\xcf\x2b\x6a\x79\x12\x26\x9e\xdc\x5d\x06\xbd\x53\x01\xd7\x41\xdf\x3d\x99\x0c\x1c\x51\x46\xe5\xf0\x60\xb1\xcd\x87\x07\x3a\x82\xde\xd5\x56\x2f\xad\xaf\xab\x14\xd7\xb4\x0b\x7e\x4a\x9d\x29\xc5\x35\xa1\x21\xc5\x35\x11\x47\x48\x71\x4d\x37\x90\xe2\x9a\x52\x5c\x53\x08\x3c\x56\xef\x79\x8a\x6b\x0a\x82\x14\xd7\x94\xe2\x9a\x52\x5c\xd3\x3e\x48\x94\x39\xc5\x35\xa5\xb8\xa6\x11\xc5\x35\x39\x9f\x2b\xa4\xef\x9a\x6a\xf1\x69\xa7\xfa\x54\x62\x9b\x1c\x52\xa7\xf3\xd2\xce\xc0\x9f\xd2\x7b\x81\x12\x09\xc2\xd6\x4b\xf8\x00\xce\xc9\x19\xe0\x3b\xcc\xc6\x9b\xba\xbf\xae\x3d\xde\x93\xe6\xc1\x5f\xec\xc2\xe8\xba\x80\x33\x58\x28\x74\x38\x5e\xef\x79\xcc\x79\xbb\x4a\x6a\x8b\x61\x16\x4b\x1a\x20\xa5\x96\x9e\x9a\xba\x39\x27\xf4\xa7\xc7\xdf\xa8\xb0\x43\xd8\x36\x2c\xe1\xd8\xf1\xb5\x68\x16\x39\x08\xba\x76\x33\x5b\x53\xc9\x19\x31\x9e\x6a\x7c\xef\x65\x13\x39\x42\x9f\x98\xea\x79\x71\xf5\xc5\x20\xf7\xbc\x9a\xf7\xd5\x75\x45\xf2\x6f\x0f\x42\x9d\x6e\x5e\xc5\x23\x24\x4e\x57\xc6\x5e\xaa\x72\x76\xa6\x90\xd7\x41\xba\x08\xfc\x15\x20\x8f\x90\x70\x78\xd8\x63\x6b\x74\xeb\x97\x5a\x49\x17\x4e\x5f\x91\x64\x9c\x46\xc0\x9b\x75\x35\x67\xd5\x07\x8b\x21\xbf\x42\x1a\x8e\x2a\x64\x4c\x1b\x69\x79\x3d\xa1\xce\xdb\xc9\x69\xe8\x66\xf0\x04\xbe\x99\xe0\x23\xf8\xe6\x4d\x1f\x76\x92\xc9\xdb\xb3\xc3\x4e\x80\xe1\xc6\xe8\xeb\xbe\x69\x6a\x7a\xde\xf6\xda\x3d\xae\x77\xdc\x53\x1d\xa8\x1e\xd0\x5d\x95\x6a\xa3\x7f\x1f\xd7\x21\x4b\x3b\x7b\x84\x74\x92\x14\x73\x31\x86\x8d\x41\xb9\x38\x72\xc5\x69\x10\xed\x81\xec\x3e\xe7\xcf\x8a\xef\xbc\xdf\x01\x37\x74\xe1\xa6\x9d\xfe\x3b\x58\x12\x7b\xa4\xc7\x58\x46\x03\x97\x40\x52\xdb\xd6\x10\x25\x80\xe2\x28\xa2\x38\xb8\x7d\xdb\x45\x84\x30\x42\x11\x25\x92\xe3\x12\xa8\x3d\x8f\xd8\xa1\x18\x53\x05\x3a\x1f\x18\xa3\x65\xa5\xbe\x81\x75\x44\xeb\xcb\x1a\xa2\xe0\x54\x7b\x1c\x54\x03\x45\xc4\x95\xf0\x71\xea\x66\x27\x43\x61\xd6\x3a\x75\xfd\xf5\x11\x60\x58\x46\x77\xc7\xdc\x86\x28\x48\x96\xab\x85\x72\x86\x98\x67\xd1\x01\xb3\x1d\x51\xbc\x86\x44\xd1\x5a\x12\x8d\x2c\x8f\x79\x0d\x07\xea\x73\xb6\x79\x3e\xa3\x27\x44\xeb\x8d\x0c\x45\x87\x5c\xab\x6c\x27\xb9\x4d\x24\xb9\xed\x36\x8c\x58\x6e\x63\xd6\xda\xa0\xb9\x23\x8e\xdf\xa9\x00\xe5\x02\xaf\x20\x0e\x51\x64\xbc\xd3\x25\x89\x04\x89\x4b\x8c\x38\x44\x80\x4d\x00\xb8\x8f\x9f\xfb\xf0\x59\x0f\xaf\xb2\x30\x55\xd7\xfd\xfb\x2e\x5b\x0e\x96\xb0\x85\xba\x80\x41\xb0\xa5\x67\xd2\xd7\xfa\x16\x7a\x09\xb8\xba\xf1\x62\xf4\x18\xe4\xa5\xd5\x14\xb2\x65\x86\xcd\xaf\xa6\xe3\x7e\x65\x9c\x3f\xf7\x92\x12\x55\xcc\x7b\x70\xb4\x9c\x49\xfe\xbc\x82\x9b\x3b\x29\x62\x74\x9c\x8f\x22\x5f\xf2\xb2\x8b\xd8\xb2\x19\x39\x27\x51\x3c\x8e\x3e\xcb\xec\x1c\x45\x11\x03\x93\x62\x68\x6c\x22\x82\xc6\x24\x62\x61\xb5\x88\x91\xb7\x18\x71\x35\x5c\xed\x49\x70\x73\x18\x05\x3b\x8f\x51\xc4\x30\x2f\x88\x08\x14\x87\x93\xd3\x28\xe2\x5c\x69\xea\x8e\xbe\x81\x03\xd9\xf4\x38\xf9\x8e\x22\xc6\x2d\x8f\xb3\x41\x3b\x2b\x9f\x4d\x3c\x0e\x9e\x9a\x5e\xe7\x06\x0e\xf2\x3a\xc7\xf9\x34\x18\x1f\x57\x16\xce\x3d\xa5\xb6\x64\x52\x6f\xa8\x9f\x27\xf5\xe6\x31\x90\xe2\xa4\xde\xfc\x08\x49\xbd\x79\x00\x92\x7a\xb3\x86\xa4\xde\x3c\x76\x01\x2a\xa9\x37\x49\xbd\x49\xaf\xf3\x58\x5f\xe7\x38\x9f\x06\xd3\x85\x86\xfe\x50\xab\x05\xa4\xe6\xbf\xfb\x20\x15\xc9\x1c\x59\x39\xa8\x54\x24\x13\x09\xa9\x48\xa6\x48\x45\x32\x53\x91\xcc\x54\x8a\x0d\x0b\xa9\x48\xa6\x48\x45\x32\x53\x91\x4c\x04\xa4\x22\x99\x08\x48\x94\xf9\x78\x28\xf3\x98\xc8\x63\x2a\x92\xb9\x82\x91\x15\xc9\xec\xa9\x24\x47\x47\x19\x8e\xbd\x44\xdc\x4d\x0a\xe7\x84\x48\xc6\x78\x97\xcf\x43\xdc\x75\x0d\x9e\xde\x53\x07\xda\xa2\x39\xa3\x3c\xb0\x41\x2a\x5b\x54\xd6\x78\x93\x19\x52\xbe\x41\x0e\x53\x59\x6b\xff\x42\x7c\x39\x9d\xf4\xbb\x6e\x7a\x4a\xd7\xad\x47\x85\x25\xc6\xfd\x26\x38\xfc\xc0\xc3\xb5\x72\xfe\xa4\x90\xd5\xc9\x25\x2c\x91\xd4\x84\xb3\xed\x93\x1b\x14\x61\x2e\xbd\x3b\x84\x42\x56\x88\x71\x2c\xc8\x5c\x25\x03\xf5\x3e\x48\x06\xea\x91\xa9\x62\xc9\x40\x8d\x84\x64\xa0\x16\xc9\x40\x9d\x0c\xd4\xc9\x0c\x82\x85\x64\xa0\x16\xc9\x40\x9d\x0c\xd4\x08\x48\x06\x6a\x04\x24\xca\x7c\x3c\x94\x79\x4c\xe4\x31\x19\xa8\x57\x30\x32\x03\xf5\xba\xb4\x17\x72\xa7\x74\xf2\xa4\x55\xa1\xb0\x96\xea\x06\x64\x9e\xab\xae\x92\xc8\x84\x45\x1a\xc9\x74\x86\x4f\x65\xd8\x34\x66\x54\xe5\xf5\xa2\x93\x43\x66\xc5\x2c\x70\x09\xed\x12\xda\xf5\x88\x76\xc4\x0f\x1d\x64\xb5\x55\x7e\x79\x6a\x4a\x0f\xd7\x48\x69\x8a\x4e\x97\xa5\xd6\xe6\x6a\x62\xd5\x42\x69\x98\xc1\x2b\x97\x49\x4d\xec\xa6\xc4\xa9\xd8\x94\xc9\x4a\x5e\x28\xad\x68\xcf\x8c\x27\x34\xcb\xfc\xa7\xb3\x56\x0b\x91\x5b\x4a\x06\xb1\x18\xf5\xae\x59\x39\xd7\xab\x07\x42\x40\x15\xce\xbb\xa8\xac\xc9\xda\x36\x70\xd4\x69\x89\x5e\xc9\xae\xc7\xd8\x67\x63\xfc\x6b\xa5\xc1\x2d\x9d\x07\x42\xf1\x7e\xce\xce\x6d\x5d\xbe\x74\x6f\xac\xa9\x09\x68\x3a\x9c\x16\xd1\xae\xfa\xa3\x29\x9b\x93\x1b\xe0\xbc\xbe\x3a\x20\xd4\xa6\x1e\xee\xb8\x1c\xbc\x57\x65\x7d\xfd\xa9\xad\x15\xd8\x3b\xe1\xd7\xb0\x00\x62\x7d\x42\x26\x1d\xb3\x06\x5b\x0f\x2f\xd2\xc4\xed\xe7\x43\x4c\x5c\x93\x30\x93\x3d\x31\x83\xe4\x3b\xc8\x32\x53\x54\x13\x6b\xa6\x8a\x72\x5b\x4c\xdc\x34\x99\xd4\x6d\x08\x10\x75\x7e\x31\x5a\x6c\xe1\xd8\xbf\x9a\x89\xfb\xc4\x92\x2b\x55\xe6\xe6\xca\x0d\x44\xc1\x66\x85\x93\xa7\x16\x72\x28\xbd\x92\xfa\xbc\xa2\x56\x68\x61\xe2\xc9\xdd\x65\xd0\x9b\x35\x70\x1d\xf4\xdd\x93\xc9\xc0\x11\x65\x54\x0e\x0f\x16\xdb\x7c\x78\xa0\x23\xe8\x5d\x6d\xf5\xd2\xfa\xba\x4a\x71\x4d\xbb\xe0\xa7\xd4\x99\x52\x5c\x13\x1a\x52\x5c\x13\x71\x84\x14\xd7\x74\x03\x29\xae\x29\xc5\x35\x85\xc0\x63\xf5\x9e\xa7\xb8\xa6\x20\x48\x71\x4d\x29\xae\x29\xc5\x35\xed\x83\x44\x99\x53\x5c\x53\x8a\x6b\x1a\x51\x5c\x93\xf3\xb9\x42\xfa\xae\xa9\x16\x9f\x76\xaa\x4f\x25\xb6\xcf\x23\x75\xba\x2d\x8c\xfc\x00\xce\xc9\x19\xe0\x9b\xdd\x12\x69\xc2\x3d\x53\xf7\xd7\x40\xc8\x7b\xd2\x3c\xf8\x03\x5e\x18\x5d\x17\x70\x06\x0b\x85\x0e\x8b\xeb\x3d\xa5\x3a\x6f\x57\x49\xed\x76\xcc\x62\x0d\x03\x64\xf7\xd2\xb3\x64\x37\xe7\x84\xfe\xf4\xf8\x7b\x26\x76\x08\xdb\x86\x07\x1c\x3b\xbe\x16\xcd\x22\x07\x41\xd7\x6e\x66\x6b\x2a\x39\x23\xc6\x35\x8d\xef\xbd\x6c\x22\x38\xe8\x13\x53\x3d\x20\xae\xbe\x18\xe4\x9e\x57\xf3\xbe\xba\xae\x48\x7e\xe6\x41\xa8\xd3\xcd\xab\x78\x84\xc4\xe9\xca\xd8\x4b\x55\xce\xce\x14\xf2\x3a\x48\x17\x81\xbf\x02\xe4\x11\x12\x0e\x0f\x7b\x6c\xa5\xc9\x01\xe3\x33\x44\x1f\x54\x33\xc1\x39\x68\xc8\x7c\x78\x03\x7b\x5e\x18\x34\xe1\x2e\xd1\x07\x6d\x16\x60\xe7\x20\x83\xaf\x9e\xb7\x23\xa4\x56\x4f\xd5\xe4\x89\xda\xfb\x08\x02\xb6\x23\x19\x15\xd0\x68\x52\x59\x80\xa2\x0d\xd2\xc0\xa9\x2e\xe8\x7b\xa8\xac\x32\x56\x85\xeb\x2c\x14\xfd\x1a\x8f\x54\xeb\x55\x9d\x6a\xe9\xdc\x41\xa9\xcc\x4d\xa5\x93\x37\xd2\x87\xbf\x2c\xa4\x40\x4a\x13\x45\x33\x53\x76\x6f\xff\x0b\x3a\xae\xa9\x37\xae\x74\x6b\x8d\xc7\xc4\x9e\x2c\xb4\x91\x1e\x07\x7e\x3d\xb6\x2e\xbd\x2a\xe0\xf0\x68\xea\xb2\x39\xe4\xb5\xc6\x85\xe9\xe0\x67\xa1\xe5\x74\x50\xd0\x7b\x8a\x0f\x96\xa6\x1a\x25\x69\x3c\x6d\xb5\xc0\xd3\xb9\x2c\x29\xf6\x23\xda\x0b\x24\x05\x91\xf7\x7b\x2e\xd4\x90\x71\x9a\x9a\x46\x0a\x13\xef\xf7\x40\xe8\x41\xe1\x54\x0b\x05\x29\x10\x9c\xac\x31\x52\x82\xbf\xc9\x93\x51\x42\x78\xc9\x93\x51\x82\xbc\xa9\x56\x61\x8a\x36\x4b\x0f\xe9\x26\x63\x16\x33\x8c\x7b\x0c\xf7\x4e\xb1\x7f\xa0\x03\xb5\x69\xf7\x5d\x57\x95\x86\x02\x4a\x2f\x75\xcb\x05\x50\xb7\x47\x30\x92\xd2\xdd\x7c\x54\x47\x19\xc5\x38\xe3\x96\x2e\xf3\xfa\xd0\x67\x41\x37\x17\xd3\x2c\xa6\x0c\x0b\x1e\x31\x6c\x8f\xce\x01\x48\x16\x43\x82\xd5\x8f\x12\x8e\x47\xb4\x13\x52\x10\x91\x9e\x3c\x41\x45\x2e\x7e\xc2\x04\xf9\xd2\xe3\x24\x49\x90\xa7\x67\x24\x46\xd0\x1d\x02\xac\x64\x88\xfe\x24\x03\xf4\x27\x0e\xec\x42\x65\xf0\x32\xcb\x4c\x5d\xfa\x03\xab\x90\xfe\x37\xe3\x7c\xf3\xf4\x5f\xba\xd7\xff\xe7\xec\x23\x6e\x26\xcc\xad\xb9\xb9\xb4\xb0\xc2\x91\x66\x4f\xae\x92\xe1\xc1\x0d\x84\xe9\xea\x8b\xdc\x14\x32\x3c\x5c\x03\x7d\x76\x51\x82\x78\x28\x3c\x1d\xcf\xcd\xbd\xd1\x60\x25\x8a\x0e\xf6\x62\x33\x83\xe9\x14\x32\x64\x08\x1c\xf1\xe1\x5e\x42\x3f\x01\x25\xcd\x31\x48\x84\x0f\x84\x35\xd9\xe6\x5e\x49\x11\x58\xfd\x0b\x94\x04\x59\x88\x74\x34\x3d\x98\x2c\xbd\xa9\x8c\x36\xb3\xe5\x79\x65\x41\xe6\xa7\xa6\x74\xde\x4a\x85\x08\x96\xe8\xe5\x85\x69\x79\x01\x1a\xeb\x97\xe3\x4c\xd8\x40\x21\x7d\xd6\xfa\xca\xc1\x39\x5a\xe2\x2a\x39\xe1\x87\x9b\xec\x83\x26\x13\x1b\x60\x87\xc4\xd2\x48\x47\xc4\x05\xb4\xaf\x93\x9c\x25\xc5\xec\x5d\x1f\x21\x39\x89\x97\xa0\xc3\x49\x6d\x3a\x69\x10\x87\xf4\xdd\xfa\xd2\x09\x1f\xb3\x12\x9a\xe8\x67\xd5\xbe\xee\xf7\x0d\x5d\x19\xb0\xf2\xd9\xa8\xb2\x98\x0b\x79\x7d\x7e\x09\x57\x64\xe6\x8c\x0c\x8d\x26\x5b\x7b\x56\x1c\xed\x5d\x4f\xa2\xd2\xd5\x1c\xca\xaf\xa5\x93\x5e\xb9\xa9\x92\x17\x58\xfb\x65\x6f\x5e\xd3\xd5\xf5\x21\xbe\xd8\x3a\x49\xc4\x57\x77\xce\xe3\x98\xc4\x9d\x18\x6d\x56\x28\x07\x43\x3f\x16\x6e\x6f\x95\x2e\x00\xf6\xb8\xc4\x39\x79\xe5\x5e\x69\xe9\xbc\xca\xfe\xa6\x4d\x76\x79\xee\x8d\xed\xad\x2e\xc2\xd4\xe1\x23\x1b\x04\x8f\x54\x57\xd2\x7a\x45\x8b\xab\x1d\x2e\x8f\x8d\x1e\x1d\xcb\x89\x8d\xed\xb0\xf5\xed\xd9\x08\x0c\xcd\xeb\xa5\xf6\xc1\x7a\xe5\xbf\x6a\x0b\x67\xca\x5d\xf6\xf5\x4a\x32\x99\xcd\x55\x39\xfb\x60\xf2\x7e\x9f\x4a\xae\xdc\x25\xad\x28\x0c\x73\xd2\xaf\x9f\xdf\xf6\x3a\xe7\x00\x64\xe8\x52\x51\x4a\xb3\xb0\x82\xbe\xfb\x27\x21\xd4\xd7\xbc\x46\x3c\xc2\x67\x5f\x3f\xbf\xed\x8d\x06\xbc\x46\xfb\xc7\xe9\x34\x60\x18\x0e\xe0\x20\xb3\x80\x72\x17\xfc\x38\x2f\x09\x57\x5b\xbb\x7e\xcf\xb3\x52\x71\x75\x73\x44\xd8\x0f\xd7\x9b\xec\x03\x5f\x33\xa8\xe6\xd3\xde\xfc\xe1\x85\x29\x95\x37\x94\xca\x3c\x64\x83\x4f\x04\xe5\x9d\x62\xb8\xa0\x55\x60\x19\x19\x19\x5f\xd3\x01\x3c\xbd\x13\x4c\x3a\xd0\x4e\xfb\x19\x08\x65\x09\x78\x46\x5b\x7a\x6d\xa6\x61\x8c\x48\xd4\x72\xa5\xbd\x53\xcb\x35\x65\xe8\x85\xe6\xa9\x32\xc7\x1e\xca\xa8\x54\xd9\x21\x69\x41\x7a\x94\x01\x90\x14\xe8\x7b\x21\x33\xe5\x54\xcd\x3e\x48\x64\xa1\x74\x3a\xf6\xac\xda\x65\xd3\x14\xe8\xe1\xac\x3e\x44\x61\xe8\xa7\x74\x74\x16\xa4\xbb\xed\x80\xdb\x7c\x5e\x30\xef\xb9\x03\x7a\x31\x3f\xf6\xf1\x0d\xe3\xa6\xac\xf0\x79\xe4\x62\x38\x17\x65\xef\x31\xbe\xa6\xea\x9c\x9a\x7d\x72\x77\x2a\x41\x77\xaa\x37\x52\x6e\xd5\xa2\x57\x49\x77\x10\xc9\xae\x34\x39\x4c\xea\x0b\xad\xdc\xfc\x3c\x89\x5b\xa1\x30\xa4\x97\xe4\xa5\xf7\x56\x5d\xd4\x88\x0c\xe2\x0d\x8c\x3b\x80\x81\x6c\xe4\x6d\x5f\x72\x1f\xe4\x29\x37\x57\xe5\x95\xb4\xf9\xcb\x09\xd2\xad\x90\x24\xce\x83\x7e\xc6\x97\x38\xa7\x0a\x74\x4e\xa2\x8d\x71\xe6\x6f\x40\x56\xea\x1b\x58\x47\xac\xd4\xb4\x86\x08\xa1\x6a\xab\xe3\xa0\x16\x33\x8a\xb8\x12\x7e\x45\xef\x9b\x9d\xb0\x04\x62\x46\x61\xee\xa4\x4f\xb0\x70\x60\xdd\xad\xf7\xf5\x11\x3c\xd0\xcc\x94\x5e\xaa\x92\xd3\xe0\xa4\x83\x28\x6f\x34\x57\x0b\xe5\xe8\x01\xb9\x82\x57\xa9\xb7\x83\x18\xf5\x7a\x6f\x8f\xc4\x3c\x94\x51\x54\x02\xba\x0b\x07\x28\x05\xdf\xc1\xfa\xf9\x8c\x9e\x8e\xaf\x37\x32\x0c\x19\xe7\xd9\x35\xc6\x64\x9f\x20\x4e\x0a\x45\xe5\x97\xe8\x8a\x77\x0c\xc7\x30\xe4\xaa\x26\xf7\xe5\xa4\xf9\x10\xd5\xbf\xe0\xbd\x2a\x14\xa1\x2a\x3a\x91\xce\x72\xa9\x2b\x93\xa6\x8e\x88\x92\x46\xa5\x9f\xd4\x27\x50\xcd\xa1\x00\x8b\xb5\xb3\xd1\xdf\x40\x67\x2f\x38\xd5\x52\x15\x5f\xa0\xa8\xb4\xf4\xbd\xf7\x6a\x2c\xc0\xcb\x5c\x7a\xc9\x31\xef\x90\x89\xb2\x23\x37\xfd\xe3\x0b\x83\xb2\x6d\x65\xd1\x68\xe5\x0c\x79\x92\x99\x94\x14\x49\x8e\xe4\x25\x26\x35\xd0\x60\xc0\x39\x53\xcc\x88\x21\x9f\xb7\x2a\x34\xb1\x71\xf2\x36\x44\x92\x44\x69\x91\x99\x07\x58\x08\xb7\x41\x58\xa4\x85\x70\x85\xc0\xd6\x45\xa4\xca\x9c\xf1\x39\xa3\xbf\x57\x04\x53\xc0\xf6\x4b\x61\xa8\xb2\xe9\xb1\x1c\x72\x21\xe9\xb1\xac\x3f\x1f\xfa\xb1\xac\x55\x3e\x06\x92\xc7\x79\x28\xba\x91\xfa\x59\x23\xc4\x73\xcd\xdc\x1a\x93\x6b\xbe\x11\x51\x4d\x38\x22\xa6\x19\x47\x8c\x4b\x01\xb9\x0d\x07\x33\xe7\x88\x38\x2f\x4b\xac\x08\x0c\xb8\x84\xd6\xa8\xd1\x12\x5a\x1f\x37\x5a\x47\x18\xc4\x91\xea\x91\x6c\x43\x1c\xa6\xc3\xaf\x53\xb2\x0d\x6c\x55\x53\x44\xdb\x58\x07\x8c\x10\xbf\x6d\x88\xf8\x2c\xf9\x35\x4e\x0e\xb6\x30\x5e\xed\x93\x6d\x88\x82\x07\x1d\x44\xdd\x61\x0c\x33\xc4\x1a\xf8\xa2\x73\x07\xd4\x80\xc4\xdb\x63\x30\x6a\xa8\x6c\x43\x24\xae\x1f\xeb\x9c\x59\x75\x56\xb6\xe1\x10\x02\x44\x34\xcc\x3c\x1a\x9e\xe4\x8d\x95\x33\x7c\x6f\x80\x87\x16\xc3\x3a\x9a\x75\xef\x35\x7a\x58\x43\xc4\x65\x0c\x7c\x1a\xac\xbb\xe5\x34\x85\x75\x15\x64\x44\xe7\x57\x7f\xa5\x85\xa6\x48\xf3\xfc\xa8\x72\xa6\x74\x9d\x0a\x7f\xec\xff\x56\xda\x19\xf8\xbf\xff\xfd\xe3\x4f\x90\xc1\x7b\x75\xa5\x28\x5d\x86\xc7\xb5\x4d\x2a\x25\xd0\x70\xfd\xad\x25\xd8\x29\xbc\x3f\xe6\x94\x06\x5f\x3f\xbc\x83\x71\x47\x8a\xa7\x8c\xd5\x60\x48\xa1\xfc\xf7\xc3\x54\x9b\xec\xb2\xbf\xa4\xee\x5c\x7a\xe9\x06\x28\x80\xb2\x9a\xf7\xeb\xd7\x5e\x73\x87\x89\x77\x32\x6b\xeb\x94\x3b\xe5\x3c\x94\xbe\xcf\xba\x58\xa9\x7a\x5c\x18\x54\x79\xef\x08\x3c\xa6\x6a\x53\xdd\xf1\xf4\xf2\x52\x94\xff\x0c\x95\xe9\x8d\x7a\x29\xdb\xda\xc4\xc9\xb7\x40\xbc\xfa\xca\x38\x35\xc0\xb4\x0b\x45\x4b\xc2\xe9\xbd\xd6\xc2\xe6\x84\x7a\x41\x3a\x5d\x3b\x0f\xb6\xbf\xea\x4f\x50\xe6\x95\xc1\x54\xad\xdf\x00\x8b\x32\xff\x04\x95\x98\xa8\x18\x77\x73\x25\x58\xd2\x88\x0d\x81\x27\xe2\x68\xdb\xeb\x07\x7d\x81\x74\x14\xed\x1d\x59\x7c\xbf\x82\x0a\x99\x15\xf6\x74\xdf\xca\xf5\x58\x32\x20\x9b\xcb\xea\x65\xed\xe7\x67\xca\x65\x66\x01\x74\xbe\x44\xd3\x3e\xd7\xd3\x9f\x77\x1e\xe1\x7e\x27\x1f\x40\x44\x56\xa5\xf2\x4a\x7a\x43\x4c\xb7\xe3\xcc\xfc\xcf\x3e\xb9\xff\x0a\x8b\xdf\x96\x0d\x73\x45\xf4\x9d\x8a\x32\xf5\xc8\xcc\xd8\x95\xb1\x5e\x52\x7c\x8e\xe3\x32\xb3\x26\x03\x57\x30\x0c\x65\x81\xec\x5c\x1b\x93\x16\x1f\x47\xc0\x90\xd5\x3f\x71\xb8\x70\xd2\x50\x06\xe4\x17\xdb\x47\xd2\x07\xf3\xc7\x23\x0d\xf1\xd8\xcb\xfe\x74\x9e\x9f\x42\xfb\xe8\xda\x48\x8e\xa2\xce\x28\x5a\x90\x3d\x59\xed\xad\x8f\x07\x50\xdd\x58\x4b\xbf\x6d\x72\x01\x7b\x93\x86\x9b\xc9\x92\x3d\xf0\x41\x38\xd9\x9c\x50\x2f\xb8\x30\x37\xde\x94\x3f\x8f\xfd\x3c\x1f\x45\x35\xd4\x66\x99\xbd\xdc\xbe\xb1\xfe\xca\xd8\x9e\x9d\xec\x3f\x4d\xa9\xe2\x54\x7f\xf7\x5e\xa8\xac\x69\xbe\xc0\x2e\xf2\xa7\xab\x86\x46\xce\x63\x1b\xac\x1e\x1a\xb1\xb2\x72\xbc\x05\x88\x18\xc1\xea\x11\xa2\xdd\xe3\xe5\x3c\x44\xc9\x78\x88\x18\x74\xcf\x29\x4c\xb6\x81\x18\x25\xca\x36\x10\x33\x67\x8b\x53\xb6\xec\xc7\x15\x45\x38\xf0\x38\x59\x09\xfc\x9c\x04\x72\x39\xa2\x0d\x44\xca\x45\x88\x91\x89\xc0\xcd\xd6\x8e\x72\xbd\xf4\x02\xcb\x3f\x2e\x84\x26\x9d\xdc\x1e\x83\x71\x2f\xe4\xfa\xa6\x1b\x48\x74\xff\x47\xe0\x96\x16\x3d\xc4\x9a\x44\xb4\x72\xa3\x1b\x88\x9c\x0f\x16\xa5\x04\xe9\x81\x56\x17\x2b\xc3\x2c\x46\x81\xd2\x0d\x44\x4b\x11\x4b\xb2\x01\x66\x45\x51\x70\x2a\x56\x99\xd3\x0d\xc4\x25\x16\xd1\x4a\x9f\x6e\x20\x32\xbd\x88\x50\x0e\x75\x03\x51\x4a\x10\x74\x10\xb7\x10\xc1\xed\x31\xa3\x1d\xde\x88\x8b\x12\x74\x70\xd0\xd2\x04\x1d\xc4\x28\xa5\xba\x81\xa3\xe5\x47\xcc\x42\xab\x1b\x88\xc6\x8e\x62\x69\x4e\x8f\x47\xef\x61\x2f\xa4\xf3\xf3\x27\x19\x3f\xd9\x76\x76\x41\x92\xdf\x02\x21\xd9\x76\xee\x1f\x26\xd9\x76\xb6\x16\x32\xb0\x6d\xc7\x81\x5d\xa8\x0c\x5e\x66\x99\xa9\x4b\xff\xc5\x5c\x02\x59\xef\x8f\xd2\xec\xa4\xce\x15\x94\x83\x17\xa6\x17\x02\xae\x2b\x65\x65\x73\xc9\xe7\x90\x99\x92\x92\xc2\xbd\x81\x2d\x8a\xf9\xd7\xbf\xb0\x77\xc6\xa5\x95\x5c\x2a\x19\xe1\x7c\xf9\x85\xff\x19\x14\x8d\xf9\x66\x58\x9f\xf7\x9c\x60\xff\xcf\xda\x5c\x2c\xb1\xf5\xbf\xe9\xef\x78\x46\xab\x1b\x3b\x3a\xbf\xbf\x85\x99\x72\xbe\xe7\x04\x34\x0f\xa5\x2c\x09\xc2\x39\x63\xca\x9e\x9b\x7e\xaf\x03\x2a\x46\x10\x4e\xb1\xc6\x00\x52\x14\x46\x1f\x2f\xdf\x5e\xf4\x16\x7d\x31\x44\x0e\x48\x21\x67\xfd\xce\x78\x09\xcb\xd6\x6c\xd4\xe7\x9c\xeb\x66\xf6\x8f\x3f\xad\xa1\x32\xa6\xcf\x68\xf9\x94\x47\x11\x0c\x43\xe5\x51\xf4\xcc\x7a\xc8\xf9\x13\x0d\x21\x42\x7e\xb3\x7e\xd6\x7d\xb0\x01\x97\x49\x0d\x6f\x3f\x3d\x62\x56\x30\x93\x1e\xae\x64\xbf\xa2\x58\x65\x8d\x87\xac\x51\x0e\xcf\x4c\x21\x55\xbf\x59\x81\x89\x74\x05\xc2\x50\xa4\xcb\x39\xfd\xaa\x94\x17\x9a\xa2\xde\xb2\xae\xa8\x2b\x07\x4a\x8b\x82\x65\x1c\xd6\x6a\xde\x49\xdf\x3c\xdc\x2d\x9d\x87\x7e\x9b\xbd\x71\xaa\x8b\xf6\xce\x9b\x56\x94\x11\xf9\xd5\xcd\x43\xc7\x7e\xd7\xde\x46\x2f\x3c\x8d\xe0\xa5\xfa\xe9\x62\xcb\xc7\xd6\x69\x9b\xe1\x2a\x63\xdb\x23\x53\x2f\x66\xc6\xf1\xf1\x7a\xa0\xd2\x5c\x5b\xe3\xea\x9d\xca\xf1\x16\xf1\x45\xb6\x9e\x99\x15\x95\xa6\x77\x32\x84\xe9\x2d\xa1\xfa\xa7\xc9\x51\x4b\x82\x7b\x30\x0c\x22\xdd\x6d\x4f\xeb\xaa\x7e\xeb\xbc\x10\xcf\x6a\xe1\xaa\x39\x58\x78\xf4\x49\xa5\x37\x8a\x8d\x56\xd9\xb2\xd7\x2c\xcf\x1f\xe6\x1e\x08\x25\x69\x61\xf6\x03\xa5\xb6\xa2\x63\xe5\x49\xc8\x8f\x5f\x23\xb2\x61\x22\x61\x55\x38\xb9\x04\x31\x41\xf0\x4f\xeb\x2a\x97\x1e\xce\xbd\x95\x1e\x66\x7b\xf9\x1b\x86\x06\x58\xa3\xb5\x2a\x67\x5f\xdb\x09\x42\x0e\x1d\x4b\x60\xd0\x05\x77\x29\x02\x3f\x56\xc0\x47\x21\x41\x68\xe9\x3f\xc4\xbb\x0c\x9e\xff\x9e\x5e\xe3\x7b\xcf\x3d\x50\xc5\xc4\x5d\x24\xae\xe3\x38\x9e\x0b\xc9\xb2\x34\x5e\x22\xab\xea\x73\xab\xe9\x93\x28\x29\x81\x80\x68\x64\xc3\xa6\xb1\xec\x0b\x27\x81\xa2\x57\x85\x5c\x51\x78\x5f\x7a\x02\x7a\x52\xfa\xce\xa3\x6d\x3d\x8c\x7b\xc3\x68\xcd\x94\xbe\xf1\x34\xb9\x92\xd6\xea\x9a\x28\xe0\xe0\x5b\x59\x53\xcb\x92\xf5\x53\xff\x8c\x22\x0a\xa1\x5a\x4f\x1f\x5e\x72\x22\xf6\x5d\x4f\xc8\xb6\x81\x84\x6c\xa1\xc8\x46\xe8\x5b\x4e\x43\x34\x4a\x5f\xf2\x18\x8d\x7f\x48\xd9\x91\xbc\x3c\x48\x56\xc6\xe3\x68\x72\x1b\xa3\x66\x31\x52\xe3\x09\x49\x7d\xc1\x13\x5a\x25\xb4\x8a\xfb\x11\xbe\x0f\x37\x8d\x88\xf2\xfa\x6c\x93\xdc\xa8\x1c\x73\x3b\xd1\x7d\xca\xb2\xb4\x73\xfa\x62\xb3\x26\xa6\xf7\xbd\x66\x64\x87\x32\xdd\xa4\x74\xe7\x21\xd5\xc1\x4a\x71\xae\x92\xfb\x52\x93\xbd\x2e\xb4\x73\x21\xf7\x99\x8e\xc1\x90\xfa\x75\xb7\x50\x68\x24\xb9\x2f\x34\x61\x6b\x94\xbe\xcf\xe4\x69\x0e\xbc\x1b\xbc\xdd\x15\x63\x48\xdf\x87\xe4\x01\x03\xee\xfd\x49\x97\x24\xf4\x20\x4a\xef\xa1\x7f\x01\x07\xb6\x6f\x2b\xde\xe5\x17\x1f\xe4\xf5\xdf\xb4\xc9\x2e\xcf\xea\x2e\x83\xf2\xa1\x09\xf7\x4e\xd7\x0e\xa6\xca\x78\x83\x7d\x34\xef\x4d\x76\x39\x55\xfa\x41\x2c\xda\xef\x6a\x6f\xc6\xd9\xe5\x19\x0b\x5a\xc8\x67\xf0\x50\xb2\xb7\xf3\x77\xa9\x4f\x4d\xb1\x96\x51\xa8\x5b\xda\xc5\x60\x4e\x56\x25\x3f\xef\xfd\x5f\x0f\x68\xcc\x3b\x91\xf4\x21\xfc\x79\xe0\x23\xe7\xa5\xaf\x7f\xc0\xd8\x7b\x7f\x7a\xe7\x8f\x6d\xb9\xf5\x7c\x4b\x92\x5d\x51\xc5\xd5\x5f\x36\x03\xcb\x2c\x83\xca\x43\xdb\xa4\x6f\x35\x53\x6b\x3d\x11\xff\xf6\x6f\xed\x3f\x2a\x5d\x5b\xa9\x57\xff\xcc\x4c\xd9\x31\x10\xf7\x42\x7c\xff\xfd\x49\x37\x2a\xe4\xab\x8a\x69\xdd\x1f\xff\x7f\x00\x00\x00\xff\xff\x71\xfe\xc5\x57\xfc\x5b\x03\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\xdb\x72\xdb\x48\xb2\xe0\xbb\xbf\xa2\xe2\xc4\x79\xb0\x4f\x07\xbd\x33\x7b\x66\x27\xf6\xf8\xa5\xc3\x23\xd9\x6e\x87\x6f\x5c\xcb\xf6\x3c\x78\xfa\x6c\x94\x80\x24\x59\x2b\x00\x85\xa9\x2a\x50\xe2\x44\x7f\xfc\x06\x00\x52\xa4\x6e\x44\x65\x66\x11\x20\xa4\xca\xa7\xb6\x9a\xa8\x6b\x56\xde\x2f\xcf\x26\x93\xc9\x33\x59\xaa\x1f\x60\xac\xd2\xc5\x2b\x21\x4b\x05\x57\x0e\x8a\xfa\x5f\xf6\xe5\xc5\xff\xb6\x2f\x95\xfe\x1f\xcb\x3f\x3f\xbb\x50\x45\xfa\x4a\x9c\x54\xd6\xe9\xfc\x2b\x58\x5d\x99\x04\x4e\x61\xa6\x0a\xe5\x94\x2e\x9e\xe5\xe0\x64\x2a\x9d\x7c\xf5\x4c\x08\x59\x14\xda\xc9\xfa\xcf\xb6\xfe\xa7\x10\x89\x2e\x9c\xd1\x59\x06\x66\x32\x87\xe2\xe5\x45\x75\x0e\xe7\x95\xca\x52\x30\xcd\xe0\x9b\xa9\x97\x7f\x7a\xf9\xbf\x5e\xfe\xe9\x99\x10\x89\x81\xe6\xf3\x6f\x2a\x07\xeb\x64\x5e\xbe\x12\x45\x95\x65\xcf\x84\x28\x64\x0e\xaf\x84\x81\x04\x54\xfd\xd9\xcb\x5c\x17\xca\x69\xa3\x8a\xf9\xcb\x73\x59\xfc\x4b\xaa\x24\xd3\x55\xfa\x52\xe9\x67\xb6\x84\xa4\x9e\x7d\x6e\x74\x55\xbe\x12\x0f\xff\xb0\x1d\x74\xbd\xd2\x76\x97\x5f\xd7\xe3\x37\x7f\xca\x94\x75\x1f\x6e\xfc\xf9\xa3\xb2\xae\xf9\x5f\x65\x56\x19\x99\xed\xac\xa7\xf9\xab\x55\xc5\xbc\xca\xa4\xd9\xfe\xfd\x99\x10\x36\xd1\x25\xbc\x12\x9f\xeb\xa9\x4a\x99\x40\xfa\x4c\x88\xf5\xc6\x9b\xa9\x27\xeb\xad\x2d\xff\x2c\xb3\x72\x21\xff\xdc\x8e\x94\x2c\x20\x97\xed\xca\x84\xd0\x25\x14\xaf\xa7\xef\x7f\xfc\xe7\xd9\x8d\x3f\x0b\x51\x1a\x5d\x82\x71\x6a\xb3\x89\x16\x76\x2e\x75\xe7\xaf\x42\xb8\x55\xbd\x10\xeb\xea\xb3\xd8\xf9\x1f\xcd\xce\x7d\x7e\xb8\x7b\xd3\xb7\x7f\xac\xcf\xff\x1f\x24\x6e\xe7\x7f\x6c\x6e\x61\x0b\xf7\x2f\xb6\x86\xcd\x69\xbd\xab\x6f\xec\xce\xff\x15\x42\x39\xc8\xef\xf9\xf3\xbe\x21\x5b\x48\x74\x31\x53\xf3\xfb\xff\x5f\xf7\xd7\xcd\x9e\x75\x55\xb8\xb7\x46\xe7\x0f\xff\xc4\x6f\xa0\x1a\x2c\x24\x06\xdc\x07\x58\x7d\x85\xd9\xfe\x5f\xfa\x8f\x59\xc3\x05\xac\xba\x7f\xf4\xe0\xb5\xde\x0f\x0d\x52\x86\x1e\x54\x97\xf5\xe3\x96\x99\xff\xc0\xe7\x5a\x67\x20\x8b\x8e\xdf\x1b\xf8\x67\xa5\x0c\xa4\x5d\xe3\x4e\xea\xa3\xea\xf8\xcd\x03\xf8\x4c\xfa\xd9\x52\x66\xd5\xde\x53\xf4\x3a\xbd\x66\x94\x88\x83\x81\x06\x7d\x5a\x38\xd8\xf9\x93\x9a\xa0\xff\xd0\x59\xf5\xf0\x49\xfb\x60\x01\xe4\xa5\x5b\x9d\x2a\x13\x02\x43\x73\x48\x55\xb5\x17\xd7\x05\xe6\xce\xad\xfa\x17\x7c\x54\xb9\x72\x5d\x23\xca\x62\xf5\xa5\xf3\x49\x4c\xd6\x13\xab\xc2\xc1\x7c\x2d\x27\x74\xff\xda\x0b\x35\x4b\xe9\x1c\x98\xe2\x95\xf8\xef\xe7\xff\xf8\xe5\x8f\xc9\x8b\x5f\x9f\x3f\xff\xf9\xa7\xc9\x7f\xfd\xfe\xcb\xf3\x7f\xbc\x6c\xfe\xe3\x3f\x5e\xfc\xfa\xe2\x8f\xcd\x3f\x7e\x79\xf1\xe2\xf9\xf3\x9f\x1f\x3e\xbd\xfb\x36\x7d\xf3\xbb\x7a\xf1\xc7\xcf\xa2\xca\x2f\xda\x7f\xfd\xf1\xfc\x27\xbc\xf9\xdd\x73\x90\x17\x2f\x7e\xfd\xf7\x8e\x85\x5d\x4d\x6a\xb9\xcd\x14\xe0\xc0\x4e\x54\xe1\x26\xda\x4c\xda\x1d\xbd\x12\xce\x54\xc0\xa5\x92\x0b\x6d\xdd\xff\x2d\xa5\x5b\x84\xc0\x9e\xae\x71\x04\x06\x77\x9a\x1f\x86\x19\xcc\x87\x3c\x4c\x9a\xd5\x87\x38\xce\x69\x3c\xcd\x40\xa7\x59\x2e\x93\x20\x6c\xb7\x51\x9b\x42\x32\xdc\x24\x93\x2a\xff\x7c\x08\x0e\x69\x40\xa6\x5f\x8a\x0c\xc1\xcf\x43\x73\xc8\xeb\xbd\x85\xe1\x93\xf7\x69\x23\x77\x01\x73\xf8\x32\x49\xc0\xda\x4f\x3a\xf5\xf9\xf1\x1e\x05\xe6\x2e\xa0\x6e\x6a\xf3\x73\x69\x8c\xec\x92\x29\x5a\x56\x7f\xe6\x85\x87\x02\x79\x1c\xa2\xd5\x3a\x1b\xfd\xcd\xef\xd7\xe8\x8d\xde\xa7\xa7\x06\x1c\xdc\x57\xd4\x24\x0c\xee\x8b\xf6\xa2\x15\x0e\x55\x91\x7a\xfd\xb0\xe8\x7e\x1e\x02\xf3\x44\xc4\x0d\x0c\xf1\xd0\x0e\x44\x44\x92\x70\x83\x8f\x08\x49\xcc\xda\x06\xe8\x75\xe5\x58\x04\xc9\x6a\x49\xdd\xf3\xb7\x42\xc8\x34\x55\xad\x36\x37\x45\xce\x23\x7c\x05\xfe\x2d\xe0\x44\xff\xbb\xdf\x21\x10\x4d\x1c\xb3\x3a\xb0\x05\x86\x62\xb0\x0b\x28\xec\x13\xeb\xc7\x02\x36\xa2\x89\x88\x68\x12\xe8\xe7\x16\x32\x48\x9c\xde\x6b\xbf\xd8\x00\x96\xa4\xe5\xd2\x25\x8b\x37\x57\xa5\x01\x6b\xb7\x9e\x91\x6e\x40\x08\x8d\x94\x65\xb5\xe0\x69\xb6\xdb\x02\x09\x49\x1b\x17\x86\x91\x9e\x07\xcc\x9e\xac\x31\x98\xa2\x8e\x01\x7d\xda\xac\xf5\xe1\xc4\xf6\x0d\x60\x44\x84\x16\x7c\x4c\x8d\xbb\xbf\xde\x5c\x92\xf7\x27\x68\xca\x8d\xdf\x79\xf3\x7a\x3e\xca\x73\xc8\x7a\x22\xf7\x84\x3b\x3d\x28\x65\x72\xda\xc8\x39\x9c\x64\xd2\xda\x83\x68\xfb\xcb\xc6\xf8\x5b\xab\xb2\x07\x1a\xfa\x00\xab\xee\xd1\x3e\x3e\x37\x65\xf2\x3a\x4d\x6b\xe2\xfd\xd0\x26\x3a\x17\x5e\x8f\xf1\xce\xc8\x04\xa6\x60\x94\x7e\xf0\x01\x7b\x8d\xf3\xbe\x98\xef\x5b\x8b\x0f\x17\x48\xea\x1f\xcc\x54\x22\x1d\xdf\x37\xb5\xd0\x76\xaf\x61\xdd\x6b\x10\xd5\xee\xe9\xcb\x12\x8c\x51\x1d\x26\x15\x7f\x2f\xc2\x7d\xce\x6a\xfa\x78\x42\xdc\x13\xde\xd0\xf1\x73\x32\x1d\x22\x19\x81\x3c\x09\x4a\xe6\x4d\x4b\x8f\x71\xfd\x83\x59\xfc\xce\x65\x72\x01\x7e\xb6\x05\xac\x24\xb6\x51\xa8\x7d\x79\x14\x45\xd2\xc3\x1a\x5e\x04\x55\xba\xc1\x18\x60\xc8\x93\x60\x0c\x31\xc4\x49\xb0\xd2\x96\xb7\x51\x46\x60\x0c\x33\x82\x22\x64\x59\x30\x4b\x95\x78\xf3\x5d\x41\x39\xa0\xf5\x1c\x53\x6d\x3a\xfd\xaa\x1b\x40\xe9\xd1\x34\x2d\x9a\xa4\x43\x07\x50\x4f\x51\x57\xb4\xe6\x76\x87\x93\xe8\x4c\x95\x05\x77\x4b\xe0\x69\x4e\x97\x64\x70\x13\x08\xf7\xb6\x70\x0e\x41\xce\x68\xea\x71\x29\xdd\xa2\x0f\x45\x92\xb6\xba\x16\x10\x9c\x29\xe4\xb4\x82\xc0\xb9\x42\xcf\x2f\x88\x9c\xed\x36\x90\xf5\xf8\x5d\xc0\x72\xbe\x83\x2c\x02\xcb\x19\x0f\xb0\x08\xbc\x9d\xe2\x26\xa0\x38\xe9\xdd\x8f\x11\x9c\xf5\x36\x10\xcc\x19\x37\x81\xc0\x79\xef\x5f\x03\xe3\x02\x08\x9c\xf9\x36\x20\x2d\xde\x37\x81\x6a\xff\xbe\x7f\x14\x16\x26\x06\x32\x3c\xef\x02\x0b\x45\x7c\xa2\x69\x1e\x9e\x94\x78\x14\xf5\xa4\xdf\x3c\x22\x6f\x02\x4f\x4c\xa5\x02\x93\x0d\x3f\x23\x99\x62\x09\x17\xd3\x97\x29\xb6\x11\x25\x0e\x67\x59\x25\xd9\x20\xfd\x76\xed\xfc\xcc\x05\x07\x97\x26\x11\x42\x02\x5a\x08\x23\x61\x3a\x1e\x75\xda\xe8\x6b\x1c\x7f\x40\x2f\xed\x60\xa8\x10\x32\x34\xbe\x8b\x16\x7a\xec\xda\xcb\x76\x7b\x06\x66\x09\xe6\xa4\xdb\xe4\xd9\x39\xe1\xc2\x95\xc9\x49\xa6\xa0\x70\x61\x46\x73\x25\xd7\xae\x5c\x8f\x11\x76\x45\x21\xac\xd4\xf5\x38\xd1\x4a\x1d\xad\xd4\xf7\xff\x3c\x5a\xa9\x77\x21\x5a\xa9\x6f\x40\xb4\x52\x47\x2b\x75\xe7\x1c\xd1\x4a\x1d\xad\xd4\x0f\x40\xb4\x52\xfb\x42\xb4\x52\xf7\x37\xbf\x88\x56\xea\x5b\x10\xad\xd4\xd1\x4a\x1d\xad\xd4\x6b\x88\x56\xea\x68\xa5\xf6\xfc\x30\x5a\xa9\xf7\xfc\x36\x5a\xa9\xf7\x7d\x14\xad\xd4\x94\x9f\xf5\x61\xa5\xae\x35\x84\x70\x56\xea\xfd\x86\x33\x9c\xb1\x2c\xc4\xee\x32\x3d\xff\x08\x4b\x78\xb0\xdc\x4a\xe7\x1c\x39\x38\xd9\x69\x73\xf5\x79\xaa\x9e\x76\x51\xbc\x3d\xd1\x13\xf5\xbd\x10\xae\xdb\xee\x39\xe4\xfa\x3a\x7f\x92\x83\x33\x2a\x61\x5d\x53\x2d\x91\x99\xe5\xfe\xfa\x3c\x5e\x3b\x0a\xf0\x76\x85\x28\x3b\x04\xd4\x99\x36\xb9\x74\x8d\x1c\xf9\x9f\xff\xb3\x73\xb2\x2e\x69\xb3\x34\x3a\x07\xb7\x80\xca\xbe\xf6\x43\xd6\x76\xd8\xae\xf2\x0b\x6b\x61\xfb\x53\x5b\x09\x8f\x3f\x9e\x53\x39\xe8\x8a\xeb\x51\xe9\x44\xa6\x7d\x5a\x62\xe7\xf8\xeb\x9a\x72\xa7\x30\x93\x55\xe6\xbe\x41\x21\x0b\xf7\x9e\xee\xd4\x5a\x0f\xf7\x9b\xb4\x8b\xfa\x37\xf6\xad\xca\xe0\x2b\xcc\x0c\xd8\xc5\xfb\x0e\x84\xf5\x1d\xfb\x2b\x94\x99\x4a\xe4\x6f\x20\x53\x78\xf0\x92\x90\x83\xd5\x08\xf4\x56\xee\xcb\x6c\xec\x46\xcc\xf5\x88\xed\x11\x86\x59\x5d\x3b\x56\x93\xd5\xb5\x4f\xca\xf0\x18\x2e\xd7\x0e\xfe\x6e\x94\x03\xae\x2f\x75\x67\xa8\xd6\xa5\xda\xb2\x64\xe6\xf2\x9a\x4b\x78\x70\x51\x3e\xc4\xa3\xfb\x7e\xd6\xaf\x3b\x08\x8f\xf4\xf1\x47\xfa\x8a\xc5\x08\x3f\x24\xcd\x87\x17\x3e\x61\xcc\xd7\xef\x78\x2c\xeb\xf5\xfa\x59\x97\x8f\xd1\xfb\x3e\xb3\x4c\xd7\xa2\xe9\x47\x2d\xd3\xbf\xc9\x4c\x16\x09\x98\xcf\x3a\x6d\x6c\x38\x9d\xbb\xf7\x63\x2c\xa2\xa9\x6b\x54\x59\x07\xe6\xfd\xd4\x6f\x48\x8f\xe3\xbc\x1e\xb1\x73\x95\x9e\x0a\x19\xfa\x22\x7d\xd4\x96\x1b\x66\xa0\x4c\x59\x37\x59\x7f\xeb\x74\xae\x92\xbd\x1f\xc3\x95\x03\x53\xc8\xec\xa8\x77\xb8\x59\xa4\x8f\x5a\xe9\x3d\xfd\x66\xd0\x6f\x46\xce\x66\x2a\x99\xea\x4c\x25\x9d\x09\xed\xde\xa3\x2f\x40\x66\x6e\x71\xb2\x80\xe4\x62\x83\xe8\x5d\x63\xfb\xca\x83\xc2\x5b\x26\x14\x1b\x99\xf8\x60\xdb\x54\xe5\x5b\x99\xab\xcc\x83\x86\x8d\xf4\x7d\xac\x37\xb8\x0a\x7c\x6e\xd9\x0e\x21\x6c\xfc\xa4\x07\x19\x39\x20\x21\xdc\x1d\x76\x5d\xe6\x49\x16\xf3\x63\xbe\xf6\xd2\x87\xb7\x78\x2e\x0f\x67\xce\x93\x65\x39\x35\xda\xe9\x44\x7b\x55\x8a\x45\x1b\xc0\xfc\x5d\x60\xd8\x81\x3d\x29\x55\x0b\x18\x7a\xb5\xbb\x1c\x7f\xbf\x49\x97\x06\xdd\xeb\x5a\x50\x37\x9a\xb6\xba\xe3\x2b\xf1\xed\x64\x7a\x88\x9b\x72\xd2\xcc\xc1\xf9\xdf\x15\xc2\xe1\x45\x71\x6f\x11\x9c\x59\x6c\xd7\x95\xbf\x8b\x62\xd2\x20\x92\x27\x0d\x42\x04\xe9\xd1\x58\x4f\x2e\xcb\xc9\x05\xac\x3a\x29\x89\xd7\xaa\x27\xd7\x78\x49\x64\x81\xb9\x2c\xf7\x53\xd1\xea\x3c\x53\x76\xf1\x59\xbb\xaf\x20\xd3\xd5\x5a\x55\xee\xa6\x83\xfe\x42\xbb\x6f\xfd\xa4\x63\x51\x9c\xc4\xed\xd3\xac\x2f\xd4\x5b\x9e\xb0\x6d\x25\xa7\xd7\xb3\xa6\x09\x46\x38\x81\xe2\xd6\xb8\x27\x7b\xbb\x17\x6c\x00\x57\x33\x56\x41\xe1\xba\x25\x0a\xec\xb8\x62\x6b\x14\x3c\x83\x44\x17\xa9\xb7\x57\x0b\x4f\xf3\xf1\x54\xff\x10\x81\xbb\xce\xc3\x57\xdd\xa3\xdd\xdd\x3a\xe9\x60\x56\x65\x67\xe0\xa2\x1d\xa8\xf3\xa7\xd1\x0e\x74\x1f\x78\xd7\x04\xd7\xe9\x27\x59\xc8\x39\xe4\x50\xb8\xc0\x2a\x55\x97\xc5\x74\x03\x87\x51\xb3\x0d\x2c\x55\x4d\x80\x7f\x53\xd6\x69\xb3\xf2\xea\x1a\x70\x98\x95\xf8\xf2\x53\x0c\x91\xa6\xd4\x21\x3c\x68\xb4\x04\xaa\xf6\x20\x21\xf4\x01\x5f\x73\x90\x30\x09\xb6\xd6\xe0\x71\xc6\x7c\xe0\x42\x85\xfc\xeb\x0a\x22\x6b\x0a\x1e\x30\x3c\x08\x59\x47\x70\xdc\x59\x45\xfe\x01\x9e\xde\xab\x75\x90\x97\x59\x47\x2e\x9e\xc0\x52\x24\xcf\xec\x37\xec\xb8\x02\x9f\x05\x27\x46\x50\x37\x12\x93\x15\x27\x46\xb0\x1f\xd4\xcf\x7d\x32\xe5\x04\x05\x4f\x12\xd7\x84\x09\xc8\x34\x53\x05\xd0\xb5\x97\xbf\xfe\xe5\x40\xda\x8b\x10\xd2\x53\xcf\xdc\x00\x25\x5f\xa1\xd0\x29\xf8\xea\xb3\xdc\xb9\xda\xef\x60\x06\xc6\x40\x7a\x5a\xd5\x08\x76\x96\x2c\x20\xad\x32\x55\xcc\xdf\xcf\x0b\x7d\xfd\xe7\x37\x57\x90\x54\xee\x4e\x23\xc3\x6e\x20\xa5\xb7\x70\x33\x3d\xda\x3d\x41\x41\xcd\x34\xe1\xe7\x99\x50\x4b\x4d\xdf\x05\xe2\x01\x6e\x21\x44\xd2\x8c\xa0\x14\xa8\xbe\x0b\x41\x52\x56\x04\xb9\x88\xf5\x01\x17\x44\x29\x74\x7d\x17\xd8\x77\xdd\x42\xb0\x5d\xd1\xa2\xdd\xef\x02\x37\xc5\x47\xa0\x4b\x68\xdf\xf7\x3d\xba\xa8\xf6\x5d\x60\x67\xfc\x88\x20\x67\xda\x50\x97\xb7\x0a\x32\x7f\x06\x79\x17\x22\x61\xb9\x07\x22\x61\xd9\x07\x91\xb0\xdc\xfb\xfd\x63\x21\x2c\xcc\x45\x5c\x82\x9a\x2f\x88\x49\x84\x14\xef\xc3\x4d\xe0\x65\x11\xd2\x11\x69\xb2\x23\x6d\x12\x3e\x6e\x0f\x0d\xfd\x21\xe3\xaa\xa8\x58\xb2\x39\xa2\xc3\xe8\x09\x1c\x66\x52\xab\x4c\x67\x6b\x3b\xed\x37\x30\x34\x4a\xc7\x20\x91\x51\x5d\xb8\x07\x22\x57\xdf\x03\x91\xab\xef\x83\xc8\xd5\xef\x0e\x12\xd5\x85\x0d\x44\xc2\xb2\x07\x22\x61\xd9\x07\x91\xb0\xdc\x1d\x64\x30\x75\x81\x3e\x3d\xbd\x56\xc4\x1d\x49\x91\x24\x3b\xa3\xb7\x4c\xfa\xac\xd4\x69\xf4\x03\x30\xfd\x00\xdb\x23\xac\x6f\x7b\x28\xe9\xbe\x71\x16\x9e\x21\x1a\x5b\x1e\x6a\x21\x22\xa8\xaa\x21\x42\x71\x8a\x50\x92\x81\x08\x23\x1d\x88\xb0\xac\x2b\x9c\x94\x10\x7c\x61\x61\xa4\x05\x11\x4e\x62\x10\xa1\x77\x18\x4a\x72\x10\x81\xa4\x07\x11\x40\x82\x10\xa1\xa4\x08\x11\x4a\x92\x10\xc1\xce\x99\xd0\x64\xf4\x7e\xe0\x85\x5c\xdc\x0f\xc1\x30\x33\xa0\xf8\xc6\x1a\xa4\x90\x39\xd8\x52\x26\x10\x99\xd3\x83\x10\x99\xd3\x40\x0b\x8b\xcc\x09\x03\x91\x39\x75\x0f\x14\x99\x93\xff\x40\x47\xc4\x9c\x86\x34\x5a\x06\x39\x55\x3e\xf6\x39\x5d\xea\x4c\xcf\x57\x1f\x38\x0c\x84\xbd\x17\x1e\x8d\x99\xec\xee\x22\xfa\xa7\x71\xc0\xf2\x4f\xdf\xb4\x82\x44\x27\xf5\xb8\x8c\x58\x01\xac\x47\xd1\x41\x7d\x0f\x44\x3f\xd2\x1e\x88\x7e\xa4\x7d\x10\xfd\x48\x77\x07\x61\x3b\xa8\xb9\x82\x75\x68\xa1\x3a\xa0\xe8\xc7\x38\x60\xe6\x00\x81\x2c\x3c\x91\x81\xdc\x03\x91\x81\xec\x81\xc8\x40\xf6\x41\x64\x20\x77\x07\x89\x0c\xe4\xe1\x41\x8e\x80\x81\x10\x8f\x82\xf5\x82\xd9\x27\xc8\xc3\x2c\xb6\xd5\x85\xb5\x7e\x8e\xca\xcf\xb1\xb4\xf4\xae\xb5\x93\xa3\x63\x0a\xa7\x62\x84\x4c\x8c\x90\x09\xb9\x10\x11\x9d\x90\x9e\x10\x9d\x90\x38\x88\x4e\x48\x7f\x88\x4e\xc8\x87\x21\x3a\x21\xfb\x1c\x24\x46\xc8\x74\x43\x64\x4e\x03\x2d\x2c\x32\x27\x0c\x44\xe6\xd4\x3d\x50\x64\x4e\xfe\x03\x1d\x11\x73\x8a\x11\x32\x31\x42\xa6\x81\x18\x21\x13\x23\x64\x3a\x20\x46\xc8\x84\x5f\x80\x88\x0e\xce\x07\x20\x3a\x38\xf7\x43\x74\x70\x3e\x0c\xd1\xc1\xb9\x85\xe8\xe0\x3c\xd4\x00\x31\x42\xe6\x2e\x44\x06\xd2\xc3\x82\x22\x03\xd9\x07\x91\x81\xdc\x1d\x24\x32\x90\x87\x07\x39\x02\x06\x12\x23\x64\xa8\xd3\xc7\x08\x99\xe0\x13\xa2\x3f\x91\x95\xd3\xb9\xae\xda\x76\xeb\x2a\x81\xd7\x49\x52\xff\xeb\x9b\xbe\x00\x6f\x2b\x40\x3b\xa9\x4f\x9b\xba\x0d\x24\xba\x70\x52\x15\x60\xbc\x5f\x00\xf2\xb9\xd0\x44\x19\x69\xe6\xc8\x27\x49\x7a\xc5\x64\xec\xa7\xa1\x51\xa2\xf3\x5c\x16\xc8\xe7\x32\x86\x8d\x41\xb1\xec\x61\x53\xac\x12\xa5\xde\x4d\x66\x6f\x02\x8b\x3e\x36\x12\xe6\x30\xb3\xbe\x35\x9a\x14\x4c\xc6\xd5\x3c\x92\xa6\x53\xe3\x27\x59\x7e\x80\xd5\x57\xf0\xec\xd1\x1a\x7e\x19\x82\xaf\xfc\x04\x91\x8d\xa8\x68\x17\x74\x11\xba\x6c\x65\x46\xfe\x42\x30\x9c\xe5\x2e\x70\x55\x0a\x8e\x3a\xc1\x16\x52\x67\x0a\xb2\x74\x60\x8c\x96\xa5\xfa\x01\xc6\x12\xdc\x02\xbb\x10\x04\xa7\x9a\xe3\x98\x4a\xb7\x18\x78\x25\x7c\x9c\xba\xde\xc9\x50\x98\x65\xc0\x36\x1d\xe8\xdf\x1e\x01\x86\x5d\x8b\x83\x3e\x1d\xd3\xf6\x41\x10\x24\x4b\xd5\x52\x59\x9e\xc5\x08\xd1\x29\xfc\x7e\xa0\xf4\x0f\xdf\x3f\x12\xdb\xc8\x53\x4a\xe7\xc0\x14\xaf\xc4\x7f\x3f\xff\xc7\x2f\x7f\x4c\x5e\xfc\xfa\xfc\xf9\xcf\x3f\x4d\xfe\xeb\xf7\x5f\x9e\xff\xe3\x65\xf3\x1f\xff\xf1\xe2\xd7\x17\x7f\x6c\xfe\xf1\xcb\x8b\x17\xcf\x9f\xff\xfc\xf0\xe9\xdd\xb7\xe9\x9b\xdf\xd5\x8b\x3f\x7e\x16\x55\x7e\xd1\xfe\xeb\x8f\xe7\x3f\xe1\xcd\xef\x9e\x83\xbc\x78\xf1\xeb\xbf\x33\x16\xcd\x6e\x90\xfe\x10\x6c\x9e\xcf\xe8\x09\xd1\x66\x23\x43\xd1\x21\x0b\x89\x01\x17\xe5\x36\x11\xe5\xb6\x9b\x30\x62\xb9\x8d\xf1\x39\xa3\xc8\xb1\xcc\xb1\x8f\x98\xbc\x4e\xb2\xbe\x8e\x57\x10\x7b\xd7\xd9\xaf\x75\x49\x22\x41\xe2\x12\x23\x0e\x11\x60\x13\x00\xee\xe3\xe7\x3e\x7c\xd6\xc3\x2b\x0d\xcc\xd4\x55\xef\x96\x8f\x96\x83\x45\x6c\xa1\x2e\x60\x10\x6c\xe9\x99\xf4\xa9\x5c\xce\x91\xf7\x44\xbc\x9d\x66\xa6\x69\x95\x65\x53\x9d\xa9\x04\x29\xd3\x10\xe7\xcc\xd4\x0c\x92\x55\x92\x21\x77\x48\xc7\xfd\x52\x5b\x77\xe6\xa4\x21\x04\xad\xf2\x1e\x1c\x5c\xf9\x75\x41\x0e\x3d\xaf\xa0\xda\xf1\x77\xe1\x71\x04\x7d\x33\x65\xb3\x85\x73\xe5\x3b\x20\x46\x3b\xf3\x2f\x71\xa1\x2d\x71\x6e\x11\xe6\x02\xea\xfd\xff\x06\x32\x45\xf8\xde\xee\xc2\xd1\x84\x1a\x71\x35\x26\x11\x3c\xb4\xe7\x48\x56\x13\x26\x90\x86\xa0\x53\xdc\x1c\xa0\x39\x12\x36\xc5\x19\x3c\x8c\xa6\x64\x99\x9c\x03\x5c\x69\xa9\x29\xbc\x6e\x03\x4c\x73\x64\x28\x63\x64\x20\x53\xe4\x81\x6c\x7a\x36\x59\x00\x87\x98\x0c\x9e\x45\x54\xe3\xc8\x10\x1c\xd5\x25\xe5\x99\x4e\x2e\x9e\x30\x4f\x8d\xaf\x73\x0b\x07\x79\x9d\xe3\x7c\x1a\x8c\x8f\x4b\x03\x67\x4e\x97\x51\xbd\x41\x40\x54\x6f\xa2\x7a\x13\xd5\x9b\x3b\x10\xd5\x9b\x07\x20\xaa\x37\x1b\x88\xea\xcd\x63\x17\xa0\xa2\x7a\x13\xd5\x9b\xf8\x3a\x8f\xf5\x75\x8e\xf3\x69\x30\x5d\x68\xe8\x0f\x33\xb5\x84\x02\xac\x9d\x1a\x7d\xde\x9b\xa7\x89\xa6\x11\xf1\x1e\x3d\x4b\x13\x1a\x6f\x5e\x19\x03\x19\x67\x52\x65\x95\x81\x6f\x0b\x03\x76\xa1\x33\xc2\xd1\xf1\xea\xd8\x70\x48\x14\x59\x63\xe3\x21\x19\x9d\xab\x30\x91\x84\xad\xa1\xb1\x30\x3c\x84\x66\x76\x14\x61\x7a\x6c\x6d\xec\x28\xa2\x4f\x19\x1a\x18\x4f\xfb\x0a\x94\x3e\x4c\xd5\xba\xe8\x1a\x17\xf3\xda\xe8\xb2\x1c\x43\x8e\x0b\x21\xc3\x05\x90\xdf\x0e\x20\xbb\x71\xb4\xaa\xc1\x92\xa0\x49\xe2\x22\xe3\xc1\xa8\x42\x39\x25\xb3\x53\xc8\xe4\xea\x0c\x12\x5d\xa4\x04\xe2\x3b\x1c\x83\x2e\xc1\x28\x9d\x8e\x70\xe1\xb6\x4a\x12\xb0\x76\x94\x52\x11\x43\xeb\x1e\xa9\x5c\x14\x29\x73\x40\xca\x3c\x26\xf2\xe8\xc0\xe4\xaa\x90\x4e\xe9\xe2\x9d\x91\x09\x4c\x83\xd1\x9b\xbf\xfe\xa5\xdf\x37\xab\x72\xd0\x95\x1b\x1d\xa5\x24\xde\x1d\x5e\x0d\x20\xbe\x93\x1a\x21\xfb\xa8\x4b\xc1\xcc\x9a\x68\x53\x38\xa7\x44\x32\xc6\x2d\x24\xcb\xa3\x63\x35\xd5\x7f\x3f\xed\x3d\x75\xa0\x9e\x76\x9c\x07\x36\x48\x65\x8b\xd2\x68\xa7\x13\x4d\xca\x37\x48\x61\x26\xab\xcc\xbd\x12\xdf\x4e\xa6\xfd\xae\x9b\x9e\xd2\x75\xe3\x51\x61\x89\x71\xbf\x09\x0e\xb7\x78\x78\xa6\xac\x9b\xe4\xb2\x9c\x5c\xc0\x0a\x49\x4d\x38\xdb\x9e\x5c\xa3\x08\x73\xe9\xed\x21\xe4\xb2\x44\x8c\x63\x40\xa6\x2a\x1a\xa8\xbb\x20\x1a\xa8\x47\xa6\x8a\x45\x03\x35\x12\xa2\x81\x5a\x44\x03\x75\x34\x50\x47\x33\x08\x16\xa2\x81\x5a\x44\x03\x75\x34\x50\x23\x20\x1a\xa8\x11\x10\x29\xf3\xf1\x50\xe6\x31\x91\xc7\x68\xa0\x5e\xc3\xc8\x0c\xd4\x9b\xd2\x5e\xe8\x86\xe7\x54\xf2\x94\xa9\x5c\x61\x2d\xd5\x22\x60\x81\x79\x32\x9d\xe1\x53\x19\x36\x8d\x19\x55\x79\xbd\xe0\xe4\x90\x59\x31\x0b\x6c\x44\xbb\x88\x76\x3d\xa2\x1d\xf1\x43\x0b\x49\x65\x94\x5b\x9d\xe8\xc2\xc1\x15\x52\x9a\xa2\xd3\x65\x99\x65\xfa\x72\x6a\xd4\x52\x65\x30\x87\x37\x36\x91\x99\xa4\xb4\xf9\xe3\x55\x6c\x4a\x64\x29\xcf\x55\xa6\x68\xcf\x8c\x27\x34\xcb\xf4\xc9\x59\xab\x85\x48\x0d\x25\x83\x58\x8c\x7a\xd7\xac\x9c\xeb\xf5\x03\x21\xa0\x0a\xe7\x5d\x94\x46\x27\x9f\x74\x55\x10\x94\x2b\x96\x57\x52\xa6\x5f\x8a\x6c\xf5\x55\x6b\xf7\x56\x65\x60\x57\xd6\x01\xa1\x78\x3f\x67\xe7\xa6\x2a\x5e\xdb\x77\x46\x57\x04\x34\x1d\x4e\x8b\x68\x56\xfd\x59\x17\xf5\xc9\x0d\x70\x5e\xdf\x2d\x10\x6a\x53\x0f\x77\x5c\x16\x3e\xaa\xa2\xba\xfa\xd2\xd4\x0a\xec\xbf\x49\x2c\x2c\x81\x58\x9f\x90\x49\xc7\x8c\xc6\xd6\xc3\x0b\x34\x71\xf3\xf9\x10\x13\x57\x24\xcc\x64\x4f\xcc\x20\xf9\x16\x92\x44\xe7\xe5\xd4\xe8\x99\xa2\xdc\x16\x13\x37\x75\x22\xb3\x26\x04\x88\x3a\xbf\x18\x2d\xb6\xb0\x9a\x78\xad\xca\x5e\x35\xcc\x4b\x55\xa4\xfa\xd2\x0e\x44\xc1\xe6\xb9\x95\x27\x06\x52\x28\x9c\x92\xd9\x59\x49\xad\xd0\xc2\xc4\x93\xbb\xcb\xa0\x37\x6b\xe0\x3a\xe8\xdb\x27\x93\x80\x25\xca\xa8\x1c\x1e\x2c\x76\xf9\xf0\x40\x47\xd0\xbb\xda\xea\xa4\x71\x55\x19\xe3\x9a\xf6\xc1\x93\xd4\x99\x62\x5c\x13\x1a\x62\x5c\x13\x71\x84\x18\xd7\x74\x0d\x31\xae\x29\xc6\x35\xf9\xc0\x63\xf5\x9e\xc7\xb8\x26\x2f\x88\x71\x4d\x31\xae\x29\xc6\x35\x75\x41\xa4\xcc\x31\xae\x29\xc6\x35\x8d\x28\xae\xc9\xba\x54\x21\x7d\xd7\x54\x8b\x4f\x33\xd5\x97\x02\xdb\xe7\x91\x3a\xdd\x0e\x46\x7e\x02\x6b\xe5\x1c\xf0\xcd\x6e\x89\x34\xe1\x9e\xa9\xfb\x6b\x20\xe4\x1c\x69\x1e\xfc\x01\x2f\x75\x56\xe5\x70\x0a\x4b\x85\x0e\x8b\xeb\x3d\xa5\x3a\x6d\x56\x49\xed\x76\xcc\x62\x0d\x03\x64\xf7\xd2\xb3\x64\xb7\xe7\x84\xfe\xf4\xf8\x7b\x26\xb6\x08\xdb\x84\x07\x1c\x3b\xbe\xe6\xf5\x22\x07\x41\xd7\x76\x66\xa3\x4b\x39\x27\xc6\x35\x8d\xef\xbd\x6c\x23\x38\xe8\x13\x53\x3d\x20\xb6\x3a\x1f\xe4\x9e\xd7\xf3\xbe\xb9\x2a\x49\x7e\xe6\x41\xa8\xd3\xf5\xab\x78\x84\xc4\xe9\x52\x9b\x0b\x55\xcc\x4f\x15\xf2\x3a\x48\x17\x81\xbf\x02\xe4\x11\x12\x0e\x0f\x7b\x6c\x69\x61\x4f\x9a\xf6\xb2\xbe\x9b\xa0\xd0\xe3\x7a\xd3\x16\xcc\x12\x69\xe7\x27\xf0\x0b\xaa\xb4\x47\x40\x36\x8d\x77\xbe\x13\x36\x44\x67\x7f\x34\x0e\xc0\xa0\x48\x44\x37\x04\x79\x46\x22\x69\xa1\xdc\xb5\x05\x69\x92\x05\xee\x0e\x8e\x19\x7b\xd1\x47\x97\x16\x16\xa7\x7c\xa1\xb7\x02\x85\x3c\xcf\xe0\x0c\x4c\x2d\x3a\x7f\x54\xc5\x85\xf7\xd9\xe1\x25\x07\x28\x17\x90\x83\x91\xd9\xc9\xa6\xae\x8b\xf7\x64\xc8\x5b\xa5\x3d\x5f\x69\xe6\x7d\x88\xd6\xcc\x97\x87\xe5\xcd\xa4\x58\x86\x31\x6c\x0c\x8a\xe5\x91\x2b\x42\x83\x68\x03\x64\xb7\x34\x7f\x56\x7c\x53\xff\x16\xb8\x21\x01\xd7\x9d\xfa\x3f\xc0\x8a\xd8\x7e\x3d\xc4\x32\x6a\xb8\x00\x92\x1a\xb6\x81\x20\x81\x09\x47\x11\x1d\xc1\x6d\x09\x2f\x02\x84\xe7\x89\x20\x11\x12\x17\x40\x6d\xa7\xc4\x0e\x71\x98\x29\xc8\xd2\x81\x31\x5a\x96\xea\x07\x18\x4b\xb4\xa6\x6c\x20\x08\x4e\x35\xc7\x41\x35\x38\x04\x5c\x09\x1f\xa7\xae\x77\x32\x14\x66\x6d\x52\xc2\xdf\x1e\x01\x86\x5d\x97\xf9\xa3\x47\xd1\xb6\x10\x04\xc9\x52\xb5\x54\x56\x13\xf3\x17\x5a\x60\x76\x3a\x0a\xd7\xeb\x28\x58\xb7\xa3\x91\xe5\x07\x6f\xe0\x40\x2d\xd4\xb6\xcf\x67\xf4\x84\x68\xb3\x91\xa1\xe8\x90\x85\xc4\x80\x8b\x72\x9b\x88\x72\xdb\x4d\x18\xb1\xdc\xc6\xac\x61\x41\x73\x2f\x1c\xbf\x93\x00\x8a\x25\x5e\x41\x1c\xa2\x7e\x79\xab\x4b\x12\x09\x12\x97\x18\x71\x88\x00\x9b\x00\x70\x1f\x3f\xf7\xe1\xb3\x1e\x5e\x69\x60\xa6\xae\xfa\xf7\x45\x36\x1c\x2c\x62\x0b\x75\x01\x83\x60\x4b\xcf\xa4\x4f\xe5\x72\xde\x4f\x8b\x88\x66\xa6\x69\x95\x65\x3d\x06\x6d\x65\x6a\x06\xc9\x2a\xc1\xe6\x2d\xd3\x71\xbf\xd4\xd6\x9d\x39\x49\x89\xd6\xe5\x3d\x38\x5a\x2e\x22\x7f\x5e\xc1\xcd\x49\x14\x21\x9a\xd9\x07\x91\x2f\x79\x59\x3b\x6c\xd9\x8c\x9c\xeb\x27\x1e\x47\x0b\x67\x76\xee\x9f\x08\x81\x49\x21\x34\x36\x11\x40\x63\x12\xa1\xb0\x5a\x84\xc8\x07\x0c\xb8\x1a\xae\xf6\x24\xb8\xb9\x81\x82\x9d\x1f\x28\x42\x98\x17\x44\x00\x8a\xc3\xc9\x15\x14\x61\xae\x34\x36\x5e\xdf\xc2\x81\x6c\x7a\x9c\x3c\x42\x11\xe2\x96\xc7\xd9\xfb\x9d\x95\x27\x26\x1e\x07\x4f\x8d\xaf\x73\x0b\x07\x79\x9d\xe3\x7c\x1a\x8c\x8f\x4b\x03\x67\x8e\x52\xb3\x31\xaa\x37\xd4\xcf\xa3\x7a\xf3\x18\x48\x71\x54\x6f\x6e\x43\x54\x6f\x1e\x80\xa8\xde\x6c\x20\xaa\x37\x8f\x5d\x80\x8a\xea\x4d\x54\x6f\xe2\xeb\x3c\xd6\xd7\x39\xce\xa7\xd1\x77\xed\xc9\x4c\x2d\x21\x36\xd5\xed\x82\x58\x7c\x72\x64\x65\x96\x62\xf1\x49\x24\xc4\xe2\x93\x22\x16\x9f\x8c\xc5\x27\x63\x89\x33\x2c\xc4\xe2\x93\x22\x16\x9f\x8c\xc5\x27\x11\x10\x8b\x4f\x22\x20\x52\xe6\xe3\xa1\xcc\x63\x22\x8f\xb1\xf8\xe4\x1a\x46\x56\x7c\x12\xaf\x06\x10\xdf\x49\x8d\x90\xc7\x5e\xf2\xed\x3a\x85\x73\x4a\x24\x63\xbc\xcb\xe7\x21\x6e\x4b\xf5\xdf\x4f\x7b\x4f\x1d\x68\xfa\xd7\x8c\xf2\xc0\x06\xa9\x6c\x51\x1a\xed\x74\xa2\x49\xf9\x06\x29\xcc\x64\x95\xb9\x57\xe2\xdb\xc9\xb4\xdf\x75\xd3\x53\xba\x6e\x3c\x2a\x2c\x31\xee\x37\xc1\xc1\x80\x4c\x55\xb4\xce\x76\x41\xb4\xce\x8e\x4c\x0f\x89\xd6\x59\x24\x44\xeb\xac\x88\xd6\xd9\x68\x9d\x8d\x36\x00\x2c\x44\xeb\xac\x88\xd6\xd9\x68\x9d\x45\x40\xb4\xce\x22\x20\x52\xe6\xe3\xa1\xcc\x63\x22\x8f\xd1\x3a\xbb\x86\x91\x59\x67\x37\x75\xad\x7a\xab\xfb\x9d\xa9\x5c\x61\xcd\xb4\x35\xc8\x34\x55\x6d\x19\x8d\x29\x8b\x34\x92\xe9\x0c\x9f\xca\xb0\x69\xcc\xa8\x6a\xcb\x05\x27\x87\xcc\x72\x51\x60\x23\xda\x45\xb4\xeb\x11\xed\x88\x1f\x5a\x48\x2a\xa3\xdc\xea\x44\x17\x0e\xae\x90\xd2\x14\x9d\x2e\xcb\x2c\xd3\x97\x53\xa3\x96\x2a\x83\x39\xbc\xb1\x89\xcc\x88\xad\x81\x38\xe5\x8a\x12\x59\xca\x73\x95\x29\xda\x33\xe3\x09\xcd\x32\x7d\x72\xd6\x6a\x21\x52\x43\x49\x9f\x15\xa3\xde\x35\x2b\xe1\x78\xfd\x40\x08\xa8\xc2\x79\x17\xa5\xd1\x49\xd3\xd3\x8c\x3a\x2d\xd1\x25\xd7\x36\xcc\xfa\xaa\xb5\x7b\xab\x32\xb0\x2b\xeb\x80\x50\xb9\x9e\xb3\x73\x53\x15\xaf\xed\x3b\xa3\x2b\x02\x9a\x0e\xa7\x45\x34\xab\xfe\xac\x8b\xfa\xe4\x06\x38\xaf\xef\x16\x08\x85\x99\x87\x3b\x2e\x0b\x1f\x55\x51\x5d\x7d\xc1\xf7\x2c\x6a\x81\x47\xf8\x33\x58\x02\xb1\x38\x1f\x93\x8e\x19\x8d\x2d\x06\x17\x68\xe2\xe6\xf3\x21\x26\xae\x48\x98\xc9\x9e\x98\x41\xf2\x2d\x24\x89\xce\xcb\xa9\xd1\x33\x45\xb9\x2d\x26\x6e\xea\x44\x66\x4d\xfc\x0b\x75\x7e\x31\x5a\x6c\xe1\xd8\xbf\xea\x89\xfb\xc4\x92\x4b\x55\xa4\xfa\xd2\x0e\x44\xc1\xe6\xb9\x95\x27\x06\x52\x28\x9c\x92\xd9\x59\x49\x2d\x4f\xc2\xc4\x93\xbb\xcb\xa0\x77\x2a\xe0\x3a\xe8\xdb\x27\x93\x80\x25\xca\xa8\x1c\x1e\x2c\x76\xf9\xf0\x40\x47\xd0\xbb\xda\xea\xa4\x71\x55\x19\xe3\x9a\xf6\xc1\x93\xd4\x99\x62\x5c\x13\x1a\x62\x5c\x13\x71\x84\x18\xd7\x74\x0d\x31\xae\x29\xc6\x35\xf9\xc0\x63\xf5\x9e\xc7\xb8\x26\x2f\x88\x71\x4d\x31\xae\x29\xc6\x35\x75\x41\xa4\xcc\x31\xae\x29\xc6\x35\x8d\x28\xae\xc9\xba\x54\x21\x7d\xd7\x54\x8b\x4f\x33\xd5\x97\x02\xdb\xe4\x90\x3a\x9d\x93\x66\x0e\xee\x84\xde\x0b\x94\x48\x10\x76\x5e\xc2\x27\xb0\x56\xce\x01\xdf\x61\x36\xdc\xd4\xfd\x75\xed\x71\x8e\x34\x0f\xfe\x62\x97\x3a\xab\x72\x38\x85\xa5\x42\x87\xe3\xf5\x9e\xc7\x9c\x36\xab\xa4\xb6\x18\x66\xb1\xa4\x01\x52\x6a\xe9\xa9\xa9\xdb\x73\x42\x7f\x7a\xfc\x8d\x0a\x5b\x84\x6d\xc2\x12\x8e\x1d\x5f\xf3\x7a\x91\x83\xa0\x6b\x3b\xb3\xd1\xa5\x9c\x13\xe3\xa9\xc6\xf7\x5e\xb6\x91\x23\xf4\x89\xa9\x9e\x17\x5b\x9d\x0f\x72\xcf\xeb\x79\xdf\x5c\x95\x24\xff\xf6\x20\xd4\xe9\xfa\x55\x3c\x42\xe2\x74\xa9\xcd\x85\x2a\xe6\xa7\x0a\x79\x1d\xa4\x8b\xc0\x5f\x01\xf2\x08\x09\x87\x87\x3d\xb6\x5a\xb7\x7e\x9d\x29\x69\xfd\xe9\x2b\x92\x8c\xd3\x08\x78\xbd\xae\xfa\xac\xfa\x60\x31\xe4\x57\x48\xc3\x51\x85\x8c\x69\x23\x2d\xaf\x27\xd4\x79\x3f\x3d\xf1\xdd\x0c\x9e\xc0\xd7\x13\x7c\x06\x57\xbf\xe9\xc3\x4e\x32\x7d\x7f\x7a\xd8\x09\x30\xdc\x18\x7d\xdd\xd7\x4d\x4d\xcf\x9a\x5e\xbb\xc7\xf5\x8e\x7b\xaa\x03\xd5\x03\xba\xab\x42\x6d\xf5\xef\xe3\x3a\x64\x69\xe6\x8f\x90\x4e\x92\x62\x2e\xc6\xb0\x31\x28\x96\x47\xae\x38\x0d\xa2\x3d\x90\xdd\xe7\xfc\x59\xf1\x9d\xf7\x5b\xe0\x86\x2e\x5c\xb7\xd3\xff\x00\x2b\x62\x8f\xf4\x10\xcb\xa8\xe1\x02\x48\x6a\xdb\x06\x82\x04\x50\x1c\x45\x14\x07\xb7\x6f\xbb\x08\x10\x46\x28\x82\x44\x72\x5c\x00\xb5\xe7\x11\x3b\x14\x63\xa6\x20\x4b\x07\xc6\x68\x59\xaa\x1f\x60\x2c\xd1\xfa\xb2\x81\x20\x38\xd5\x1c\x07\xd5\x40\x11\x70\x25\x7c\x9c\xba\xde\xc9\x50\x98\xb5\x49\x5d\x7f\x7b\x04\x18\x96\xd0\xdd\x31\x37\x21\x08\x92\xa5\x6a\xa9\xac\x26\xe6\x59\xb4\xc0\x6c\x47\x14\xae\x21\x51\xb0\x96\x44\x23\xcb\x63\xde\xc0\x81\xfa\x9c\x6d\x9f\xcf\xe8\x09\xd1\x66\x23\x43\xd1\x21\xdb\x28\xdb\x51\x6e\x13\x51\x6e\xbb\x09\x23\x96\xdb\x98\xb5\x36\x68\xee\x88\xe3\x77\x2a\x40\xb1\xc4\x2b\x88\x43\x14\x19\x6f\x75\x49\x22\x41\xe2\x12\x23\x0e\x11\x60\x13\x00\xee\xe3\xe7\x3e\x7c\xd6\xc3\x2b\x0d\xcc\xd4\x55\xff\xbe\xcb\x86\x83\x45\x6c\xa1\x2e\x60\x10\x6c\xe9\x99\xf4\x35\xbe\x85\x5e\x02\xae\xae\xbd\x18\x3d\x06\x79\x65\x6a\x06\xc9\x2a\xc1\xe6\x57\xd3\x71\xbf\xd4\xd6\x9d\x39\x49\x89\x2a\xe6\x3d\x38\x5a\xce\x24\x7f\x5e\xc1\xcd\x9d\x14\x21\x3a\xce\x07\x91\x2f\x79\xd9\x45\x6c\xd9\x8c\x9c\x93\x28\x1e\x47\x9f\x65\x76\x8e\xa2\x08\x81\x49\x21\x34\x36\x11\x40\x63\x12\xa1\xb0\x5a\x84\xc8\x5b\x0c\xb8\x1a\xae\xf6\x24\xb8\x39\x8c\x82\x9d\xc7\x28\x42\x98\x17\x44\x00\x8a\xc3\xc9\x69\x14\x61\xae\x34\x76\x47\xdf\xc2\x81\x6c\x7a\x9c\x7c\x47\x11\xe2\x96\xc7\xd9\xa0\x9d\x95\xcf\x26\x1e\x07\x4f\x8d\xaf\x73\x0b\x07\x79\x9d\xe3\x7c\x1a\x8c\x8f\x4b\x03\x67\x8e\x52\x5b\x32\xaa\x37\xd4\xcf\xa3\x7a\xf3\x18\x48\x71\x54\x6f\x6e\x43\x54\x6f\x1e\x80\xa8\xde\x6c\x20\xaa\x37\x8f\x5d\x80\x8a\xea\x4d\x54\x6f\xe2\xeb\x3c\xd6\xd7\x39\xce\xa7\xc1\x74\xa1\xa1\x3f\xcc\xd4\x12\x62\xf3\xdf\x2e\x88\x45\x32\x47\x56\x0e\x2a\x16\xc9\x44\x42\x2c\x92\x29\x62\x91\xcc\x58\x24\x33\x96\x62\xc3\x42\x2c\x92\x29\x62\x91\xcc\x58\x24\x13\x01\xb1\x48\x26\x02\x22\x65\x3e\x1e\xca\x3c\x26\xf2\x18\x8b\x64\xae\x61\x64\x45\x32\x7b\x2a\xc9\xd1\x52\x86\x63\x2f\x11\x77\x9d\xc2\x39\x25\x92\x31\xde\xe5\xf3\x10\x77\x53\x83\xa7\xf7\xd4\x81\xa6\x68\xce\x28\x0f\x6c\x90\xca\x16\xa5\xd1\x4e\x27\x9a\x94\x6f\x90\xc2\x4c\x56\x99\x7b\x25\xbe\x9d\x4c\xfb\x5d\x37\x3d\xa5\xeb\xc6\xa3\xc2\x12\xe3\x7e\x13\x1c\x6e\xf1\xf0\x4c\x59\x37\xc9\x65\x39\xb9\x80\x15\x92\x9a\x70\xb6\x3d\xb9\x46\x11\xe6\xd2\xdb\x43\xc8\x65\x89\x18\xc7\x80\x4c\x55\x34\x50\x77\x41\x34\x50\x8f\x4c\x15\x8b\x06\x6a\x24\x44\x03\xb5\x88\x06\xea\x68\xa0\x8e\x66\x10\x2c\x44\x03\xb5\x88\x06\xea\x68\xa0\x46\x40\x34\x50\x23\x20\x52\xe6\xe3\xa1\xcc\x63\x22\x8f\xd1\x40\xbd\x86\x91\x19\xa8\x37\xa5\xbd\x90\x3b\xa5\x93\xa7\x4c\xe5\x0a\x6b\xa9\xae\x41\xa6\xa9\x6a\x2b\x89\x4c\x59\xa4\x91\x4c\x67\xf8\x54\x86\x4d\x63\x46\x55\x5e\x2f\x38\x39\x64\x56\xcc\x02\x1b\xd1\x2e\xa2\x5d\x8f\x68\x47\xfc\xd0\x42\x52\x19\xe5\x56\x27\xba\x70\x70\x85\x94\xa6\xe8\x74\x59\x66\x99\xbe\x9c\x1a\xb5\x54\x19\xcc\xe1\x8d\x4d\x64\x46\xec\xa6\xc4\xa9\xd8\x94\xc8\x52\x9e\xab\x4c\xd1\x9e\x19\x4f\x68\x96\xe9\x93\xb3\x56\x0b\x91\x1a\x4a\x06\xb1\x18\xf5\xae\x59\x39\xd7\xeb\x07\x42\x40\x15\xce\xbb\x28\x8d\x4e\x9a\x36\x70\xd4\x69\x89\x5e\xc9\xb6\xc7\xd8\x57\xad\xdd\x5b\x95\x81\x5d\x59\x07\x84\xe2\xfd\x9c\x9d\x9b\xaa\x78\x6d\xdf\x19\x5d\x11\xd0\x74\x38\x2d\xa2\x59\xf5\x67\x5d\xd4\x27\x37\xc0\x79\x7d\xb7\x40\xa8\x4d\x3d\xdc\x71\x59\xf8\xa8\x8a\xea\xea\x4b\x53\x2b\xb0\x77\xc2\x9f\xc1\x12\x88\xf5\x09\x99\x74\xcc\x68\x6c\x3d\xbc\x40\x13\x37\x9f\x0f\x31\x71\x45\xc2\x4c\xf6\xc4\x0c\x92\x6f\x21\x49\x74\x5e\x4e\x8d\x9e\x29\xca\x6d\x31\x71\x53\x27\x32\x6b\x42\x80\xa8\xf3\x8b\xd1\x62\x0b\xc7\xfe\x55\x4f\xdc\x27\x96\x5c\xaa\x22\xd5\x97\x76\x20\x0a\x36\xcf\xad\x3c\x31\x90\x42\xe1\x94\xcc\xce\x4a\x6a\x85\x16\x26\x9e\xdc\x5d\x06\xbd\x59\x03\xd7\x41\xdf\x3e\x99\x04\x2c\x51\x46\xe5\xf0\x60\xb1\xcb\x87\x07\x3a\x82\xde\xd5\x56\x27\x8d\xab\xca\x18\xd7\xb4\x0f\x9e\xa4\xce\x14\xe3\x9a\xd0\x10\xe3\x9a\x88\x23\xc4\xb8\xa6\x6b\x88\x71\x4d\x31\xae\xc9\x07\x1e\xab\xf7\x3c\xc6\x35\x79\x41\x8c\x6b\x8a\x71\x4d\x31\xae\xa9\x0b\x22\x65\x8e\x71\x4d\x31\xae\x69\x44\x71\x4d\xd6\xa5\x0a\xe9\xbb\xa6\x5a\x7c\x9a\xa9\xbe\x14\xd8\x3e\x8f\xd4\xe9\x76\x30\xf2\x13\x58\x2b\xe7\x80\x6f\x76\x4b\xa4\x09\xf7\x4c\xdd\x5f\x03\x21\xe7\x48\xf3\xe0\x0f\x78\xa9\xb3\x2a\x87\x53\x58\x2a\x74\x58\x5c\xef\x29\xd5\x69\xb3\x4a\x6a\xb7\x63\x16\x6b\x18\x20\xbb\x97\x9e\x25\xbb\x3d\x27\xf4\xa7\xc7\xdf\x33\xb1\x45\xd8\x26\x3c\xe0\xd8\xf1\x35\xaf\x17\x39\x08\xba\xb6\x33\x1b\x5d\xca\x39\x31\xae\x69\x7c\xef\x65\x1b\xc1\x41\x9f\x98\xea\x01\xb1\xd5\xf9\x20\xf7\xbc\x9e\xf7\xcd\x55\x49\xf2\x33\x0f\x42\x9d\xae\x5f\xc5\x23\x24\x4e\x97\xda\x5c\xa8\x62\x7e\xaa\x90\xd7\x41\xba\x08\xfc\x15\x20\x8f\x90\x70\x78\xd8\x63\x2b\x74\x0a\x18\x9f\x21\xfa\xa0\xea\x09\xce\x20\x83\xc4\xf9\x37\xb0\xe7\x85\x41\x13\xee\x12\x7d\xd0\x7a\x09\x66\x01\xd2\xfb\xea\x79\x3b\x42\x6a\xf5\x54\x4d\x9e\xa8\xbd\x8f\x20\x60\x3b\x90\x51\x01\x8d\x26\xa5\x01\xc8\x9b\x20\x0d\x9c\xea\x82\xbe\x87\xd2\x28\x6d\x94\xbf\xce\x42\xd1\xaf\xf1\x48\xb5\x59\xd5\x49\x26\xad\x3d\x28\x95\xb9\xae\x74\xf2\x4e\x3a\xff\x97\x85\x14\x48\x69\xa2\x68\xa2\x8b\xf6\xed\x7f\x43\xc7\x35\xf5\xc6\x95\x6e\xac\xf1\x98\xd8\x93\x81\x26\xd2\xe3\xc0\xaf\xc7\x54\x85\x53\x39\x1c\x1e\x4d\x6d\xb2\x80\xb4\xca\x70\x61\x3a\xf8\x59\x68\x39\x1d\x14\xf4\x9e\xe1\x83\xa5\xa9\x46\x49\x1a\x4f\x5b\x2f\xf0\x64\x21\x0b\x8a\xfd\x88\xf6\x02\x49\x41\xe4\xfd\x9e\x0b\x35\x64\x9c\xa6\xa6\x91\xc2\xc4\xfb\x3d\x10\x7a\x50\x38\xd5\x42\x41\x0a\x04\x27\x6b\x8c\x94\xe0\x6f\xf2\x64\x94\x10\x5e\xf2\x64\x94\x20\x6f\xaa\x55\x98\xa2\xcd\xd2\x43\xba\xc9\x98\xc5\x0c\xe3\x1e\xc3\xbd\x53\xec\x1f\xe8\x40\x6d\xda\x7d\x57\x65\x99\x41\x0e\x85\x93\x59\xc3\x05\x50\xb7\x47\x30\x92\xd2\xdd\x7c\x54\x47\x19\xc5\x38\x63\x57\x36\x71\xd9\xa1\xcf\x82\x6e\x2e\xa6\x59\x4c\x19\x16\x3c\x62\xd8\x1e\x9d\x03\x90\x2c\x86\x04\xab\x1f\x25\x1c\x8f\x68\x27\xa4\x20\x22\x3d\x79\x82\x8a\x5c\xfc\x84\x09\xf2\xa5\x87\x49\x92\x20\x4f\xcf\x48\x8c\xa0\x3b\x04\x58\xc9\x10\xfd\x49\x06\xe8\x4f\x2c\x98\xa5\x4a\xe0\x75\x92\xe8\xaa\x70\x07\x56\x21\xdd\x6f\xda\xba\xfa\xe9\xbf\xb6\x6f\xff\xcf\xe9\x67\xdc\x4c\x98\x5b\xb3\x0b\x69\x60\x8d\x23\xf5\x9e\x6c\x29\xfd\x83\x1b\x08\xd3\x55\xe7\xa9\xce\xa5\x7f\xb8\x06\xfa\xec\x82\x04\xf1\x50\x78\x3a\x9e\x9b\x3b\x9d\x81\x91\x28\x3a\xd8\x8b\xcd\x0c\x66\x33\x48\x90\x21\x70\xc4\x87\x7b\x01\xfd\x04\x94\xd4\xc7\x20\x11\x3e\x10\xd6\x64\xdb\x7b\x25\x45\x60\xf5\x2f\x50\x12\x64\x21\xd2\xd1\xf4\x60\xb2\x74\xba\xd4\x99\x9e\xaf\xce\x4a\x03\x32\x3d\xd1\x85\x75\x46\x2a\x44\xb0\x44\x2f\x2f\x2c\x93\xe7\x90\x61\xfd\x72\x9c\x09\x6b\xc8\xa5\x4b\x1a\x5f\x39\x58\x4b\x4b\x5c\x25\x27\xfc\x70\x93\x7d\xd0\x64\x62\x0b\xec\x90\x58\x1a\xe9\x08\xb8\x80\xe6\x75\x92\xb3\xa4\x98\xbd\xeb\x03\x24\x27\xf1\x12\x74\x38\xa9\x4d\x93\x1a\x71\x48\xdf\x6d\x2e\x9d\xf0\x31\x2b\xa1\x89\x7e\x56\xcd\xeb\xfe\x58\xd3\x95\x01\x2b\x9f\x8d\x2a\x8b\x39\x97\x57\x67\x17\x70\x49\x66\xce\xc8\xd0\x68\xb2\xb5\x67\xcd\xd1\x3e\xf4\x24\x2a\x5d\x2e\xa0\xf8\x5e\x58\xe9\x94\x9d\x29\x79\x8e\xb5\x5f\xf6\xe6\x35\x5d\x5f\x1f\xe2\x8b\x9d\x93\x44\x7c\x75\xe7\x3c\x8e\x49\xdc\x09\xd1\x66\x85\x72\x30\xf4\x63\xe1\xf6\x56\x69\x03\x60\x8f\x4b\x9c\x93\x97\xf6\x4d\x26\xad\x53\xc9\xdf\x32\x9d\x5c\x9c\x39\x6d\x7a\xab\x8b\x30\xb3\xf8\xc8\x06\xc1\x23\xd5\xa5\x34\x4e\xd1\xe2\x6a\x87\xcb\x63\xa3\x47\xc7\x72\x62\x63\x5b\x6c\x7d\x7f\x3a\x02\x43\xf3\x66\xa9\x7d\xb0\x5e\xf9\xaf\xca\xc0\xa9\xb2\x17\x7d\xbd\x92\x44\x26\x0b\x55\xcc\x3f\xe9\xb4\xdf\xa7\x92\x2a\x7b\x41\x2b\x0a\xc3\x9c\xf4\xfb\xd7\xf7\xbd\xce\x39\x00\x19\xba\x50\x94\xd2\x2c\xac\xa0\xef\xfe\x49\x08\xf5\x35\x6f\x10\x8f\xf0\xd9\xf7\xaf\xef\x7b\xa3\x01\x6f\xd1\xfe\x71\x3a\x0d\x18\x86\x03\x58\x48\x0c\xa0\xdc\x05\xb7\xe7\x25\xe1\x6a\x63\xd7\xef\x79\x56\x2a\xae\x6e\x8f\x08\xfb\xe1\x66\x93\x7d\xe0\x6b\x02\xe5\x62\xd6\x9b\x3f\x3c\xd7\x85\x72\x9a\x52\x99\x87\x6c\xf0\x09\xa0\xbc\x53\x0c\x17\xb4\x0a\x2c\x23\x23\xe3\x1b\x3a\x80\xa7\x77\x82\x49\x07\x9a\x69\xbf\x02\xa1\x2c\x01\xcf\x68\x4b\xaf\xcd\x34\x8c\x11\x89\x5a\xae\xb4\x77\x6a\xb9\xa1\x0c\xbd\xd0\x3c\x55\xa4\xd8\x43\x19\x95\x2a\x3b\x24\x2d\x88\x8f\xd2\x03\xa2\x02\x7d\x2f\x24\xba\x98\xa9\xf9\x27\x89\x2c\x94\x4e\xc7\x9e\x75\xbb\x6c\x9a\x02\x3d\x9c\xd5\x87\x28\x0c\x3d\x49\x47\x67\x4e\xba\xdb\x16\xb8\xcd\xe7\x05\xf3\x9e\x5b\xa0\x17\xf3\x63\x1f\xdf\x30\x6e\xca\x12\x9f\x47\x2e\x86\x73\x51\xf6\x1e\xe3\xab\xcb\xd6\xa9\xd9\x27\x77\xa7\x12\x74\xab\x7a\x23\xe5\x46\x2d\x7b\x95\x74\x07\x91\xec\x0a\x9d\xc2\xb4\x3a\xcf\x94\x5d\x9c\x45\x71\xcb\x17\x86\xf4\x92\xbc\x76\xce\xa8\xf3\x0a\x91\x41\xbc\x85\x71\x07\x30\x90\x8d\xbc\xcd\x4b\xee\x83\x3c\xa5\xfa\xb2\xb8\x94\x26\x7d\x3d\x45\xba\x15\xa2\xc4\x79\xd0\xcf\xf8\x12\xe7\x4c\x41\x96\x92\x68\x63\x98\xf9\x6b\x90\xa5\xfa\x01\xc6\x12\x2b\x35\x6d\x20\x40\xa8\xda\xfa\x38\xa8\xc5\x8c\x02\xae\x84\x5f\xd1\xfb\x7a\x27\x2c\x81\x98\x51\x98\x3b\xea\x13\x2c\x1c\xd8\x74\xeb\x7d\x7b\x04\x0f\x34\xd1\x85\x93\xaa\xe0\x34\x38\x69\x21\xc8\x1b\x4d\xd5\x52\x59\x7a\x40\xae\xe0\x55\xea\x6d\x21\x44\xbd\xde\x9b\x23\x31\x0f\x65\x14\x95\x80\xee\xc2\x01\x4a\xc1\xb7\xb0\x79\x3e\xa3\xa7\xe3\x9b\x8d\x0c\x43\xc6\x79\x76\x8d\x31\xd9\x27\x88\x93\x42\x5e\xba\x15\xba\xe2\x1d\xc3\x31\x0c\xa9\xaa\xc8\x7d\x39\x69\x3e\x44\xf5\x2f\xf8\xa8\x72\x45\xa8\x8a\x4e\xa4\xb3\x5c\xea\xca\xa4\xa9\x23\xa2\xa4\x41\xe9\x27\xf5\x09\x94\x0b\xc8\xc1\x60\xed\x6c\xf4\x37\xd0\xda\x0b\x4e\x32\xa9\xf2\x6f\x90\x97\x99\x74\xbd\xf7\x6a\xcc\xc1\xc9\x54\x3a\xc9\x31\xef\x90\x89\xb2\x25\x37\xfd\xe3\x0b\x83\xb2\x69\x65\x51\x6b\xe5\x0c\x79\x92\x99\x94\x14\x48\x8e\xe4\x25\x26\xd5\x50\x63\xc0\x19\x53\xcc\x08\x21\x9f\x37\x2a\x34\xb1\x71\xf2\x2e\x04\x92\x44\x69\x91\x99\x07\x58\x08\xb7\x41\x58\xa0\x85\x70\x85\xc0\xc6\x45\xa4\x8a\x94\xf1\x39\xa3\xbf\x57\x00\x53\xc0\xee\x4b\x61\xa8\xb2\xf1\xb1\x1c\x72\x21\xf1\xb1\x6c\x3e\x1f\xfa\xb1\x6c\x54\x3e\x06\x92\x87\x79\x28\x59\x2d\xf5\xb3\x46\x08\xe7\x9a\xb9\x31\x26\xd7\x7c\x23\x82\x9a\x70\x44\x48\x33\x8e\x18\x97\x02\x72\x13\x0e\x66\xce\x11\x61\x5e\x96\x58\x13\x18\xb0\x11\xad\x51\xa3\x45\xb4\x3e\x6e\xb4\x0e\x30\x88\x25\xd5\x23\xd9\x85\x30\x4c\x87\x5f\xa7\x64\x17\xd8\xaa\xa6\x08\xb6\xb1\x16\x18\x21\x7e\xbb\x10\xf0\x59\xf2\x6b\x9c\x1c\x6c\x61\xbc\xda\x27\xbb\x10\x04\x0f\x5a\x08\xba\xc3\x10\x66\x88\x0d\xf0\x45\xe7\x16\xa8\x01\x89\x37\xc7\x60\xd4\x50\xd9\x85\x40\x5c\x3f\xd4\x39\xb3\xea\xac\xec\xc2\x21\x04\x88\x60\x98\x79\x34\x3c\xc9\x69\x23\xe7\xf8\xde\x00\x0f\x2d\x86\x75\x34\x9b\xde\x6b\xf4\xb0\x86\x80\xcb\x18\xf8\x34\x58\x77\xcb\x69\x0a\x6b\x4b\x48\x88\xce\xaf\xfe\x4a\x0b\xcd\x90\xe6\xf9\x51\xe5\x4c\x65\x55\x2c\xfc\xd1\xfd\xad\x34\x73\x70\x7f\xff\xfb\xe7\x27\x90\xc1\x7b\x79\xa9\x28\x5d\x86\xc7\xb5\x4d\x2a\x25\xc8\xe0\xea\x47\x43\xb0\x63\x78\x7f\xc8\x29\x35\xbe\x7e\x78\x0b\xe3\x8e\x14\x8f\x19\xab\xde\x10\x43\xf9\xef\x87\x59\xa6\x93\x8b\xfe\x92\xba\x53\xe9\xa4\x1d\xa0\x00\xca\x7a\xde\xef\xdf\x7b\xcd\x1d\x26\xde\xc9\xbc\xa9\x53\x6e\x95\x75\x50\xb8\x3e\xeb\x62\xc5\xea\x71\x7e\x50\xa6\xbd\x23\xf0\x98\xaa\x4d\xb5\xc7\xd3\xcb\x4b\x51\xee\x2b\x94\xba\x37\xea\xa5\x4c\x63\x13\x27\xdf\x02\xf1\xea\x4b\x6d\xd5\x00\xd3\x2e\x15\x2d\x09\xa7\xf7\x5a\x0b\xdb\x13\xea\x05\xe9\xb2\xca\x3a\x30\xfd\x55\x7f\x82\x22\x2d\x35\xa6\x6a\xfd\x16\x58\x94\xf9\x09\x54\x62\xa2\x62\xdc\xf5\x95\x60\x49\x23\x36\x04\x9e\x88\xa3\x4d\xaf\x1f\xf4\x05\xd2\x51\xb4\x77\x64\x71\xfd\x0a\x2a\x64\x56\xd8\xd3\x7d\x2b\xdb\x63\xc9\x80\x64\x21\xcb\xd7\x95\x5b\x9c\x2a\x9b\xe8\x25\xd0\xf9\x12\x4d\xfb\xdc\x4c\x7f\xd6\x7a\x84\xfb\x9d\x7c\x00\x11\x59\x15\xca\x29\xe9\x34\x31\xdd\x8e\x33\xf3\x3f\xfb\xe4\xfe\x6b\x2c\x7e\x5f\xd4\xcc\x15\xd1\x77\x2a\xc8\xd4\x23\x33\x63\x97\xda\x38\x49\xf1\x39\x8e\xcb\xcc\x1a\x0d\x5c\xde\x30\x94\x05\xb2\x75\x6d\x4c\x1b\x7c\x1c\x01\x43\x56\xff\xc4\xe1\xc2\xa4\xa6\x0c\xc8\x2f\x76\x8f\xa4\x0f\xe6\x8f\x47\x1a\xe2\xb1\x17\xfd\xe9\x3c\x4f\x42\xfb\x68\xdb\x48\x8e\xa2\xce\x28\x5a\x90\x9d\xac\xf7\xd6\xc7\x03\x28\xaf\xad\xa5\x3f\xb6\xb9\x80\xbd\x49\xc3\xf5\x64\xd1\x1e\xf8\x20\x4c\xb6\x27\xd4\x0b\x2e\x2c\xb4\xd3\xc5\xd3\xb1\x9f\xa7\xa3\xa8\x86\x5a\x2f\xb3\x97\xdb\xd7\xc6\x5d\x6a\xd3\xb3\x93\xfd\xc9\x94\x2a\x8e\xf5\x77\xef\x85\xd2\xe8\xfa\x0b\xec\x22\x9f\x5c\x35\x34\x72\x1e\xdb\x60\xf5\xd0\x88\x95\x95\xc3\x2d\x40\x84\x08\x56\x0f\x10\xed\x1e\x2e\xe7\x21\x48\xc6\x43\xc0\xa0\x7b\x4e\x61\xb2\x2d\x84\x28\x51\xb6\x85\x90\x39\x5b\x9c\xb2\x65\xb7\x57\x14\xe0\xc0\xc3\x64\x25\xf0\x73\x12\xc8\xe5\x88\xb6\x10\x28\x17\x21\x44\x26\x02\x37\x5b\x3b\xc8\xf5\xd2\x0b\x2c\xdf\x5e\x08\x4d\x3a\xb9\x39\x06\xe3\x5e\xc8\xf5\x4d\xb7\x10\xe9\xfe\x6d\xe0\x96\x16\x3d\xc4\x9a\x44\xb0\x72\xa3\x5b\x08\x9c\x0f\x16\xa4\x04\xe9\x81\x56\x17\x2a\xc3\x2c\x44\x81\xd2\x2d\x04\x4b\x11\x8b\xb2\x01\x66\x45\x41\x70\x2a\x54\x99\xd3\x2d\x84\x25\x16\xc1\x4a\x9f\x6e\x21\x30\xbd\x08\x50\x0e\x75\x0b\x41\x4a\x10\xb4\x10\xb6\x10\xc1\xcd\x31\x83\x1d\xde\x88\x8b\x12\xb4\x70\xd0\xd2\x04\x2d\x84\x28\xa5\xba\x85\xa3\xe5\x47\xcc\x42\xab\x5b\x08\xc6\x8e\x42\x69\x4e\x8f\x47\xef\x61\x2f\xa4\xf5\xf3\x47\x19\x3f\xda\x76\xf6\x41\x94\xdf\x3c\x21\xda\x76\xee\x1f\x26\xda\x76\x76\x16\x32\xb0\x6d\xc7\x82\x59\xaa\x04\x5e\x27\x89\xae\x0a\xf7\x4d\x5f\x00\x59\xef\x0f\xd2\xec\xa4\x4a\x15\x14\x83\x17\xa6\x17\x02\xae\x4a\x65\x64\x7d\xc9\x67\x90\xe8\x82\x92\xc2\xbd\x85\x1d\x8a\xf9\xd7\xbf\xb0\x77\xc6\xa5\x95\x5c\x2a\x19\xe0\x7c\xf9\x85\xff\x19\x14\x8d\xf9\x66\x58\x9f\xf7\x9c\x60\xff\xcf\x4a\x9f\xaf\xb0\xf5\xbf\xe9\xef\x78\x4e\xab\x1b\x3b\x3a\xbf\xbf\x81\xb9\xb2\xae\xe7\x04\x34\x07\x85\x2c\x08\xc2\x39\x63\xca\x9e\x9b\x7e\x6f\x02\x2a\x46\x10\x4e\xb1\xc1\x00\x52\x14\x46\x1f\x2f\xdf\x9c\xf7\x16\x7d\x31\x44\x0e\x48\x2e\xe7\xfd\xce\x78\x01\xab\xc6\x6c\xd4\xe7\x9c\x9b\x66\xf6\x8f\x3f\xad\xa1\xd4\xba\xcf\x68\xf9\x98\x47\xe1\x0d\x43\xe5\x51\xf4\xcc\x7a\xc8\xf9\x13\x35\x21\x42\x7e\xb3\x79\xd6\x7d\xb0\x01\x9b\xc8\x0c\xde\x7f\x79\xc4\xac\x60\x2e\x1d\x5c\xca\x7e\x45\xb1\xd2\x68\x07\x49\xad\x1c\x9e\xea\x5c\xaa\x7e\xb3\x02\x23\xe9\xf2\x84\xa1\x48\x97\xb5\xd9\x9b\x42\x9e\x67\x14\xf5\x96\x75\x45\x6d\x39\x50\x5a\x14\x2c\xe3\xb0\xd6\xf3\x4e\xfb\xe6\xe1\x76\x65\x1d\xf4\xdb\xec\x8d\x53\x5d\xb4\x77\xde\xb4\xa6\x8c\xc8\xaf\xae\x1f\x3a\xf6\xbb\xe6\x36\x7a\xe1\x69\x04\x2f\xd5\x93\x8b\x2d\x1f\x5b\xa7\x6d\x86\xab\x8c\x6d\x8f\x8c\xbd\x98\x19\xc7\xc7\xeb\x81\x4a\x73\x6d\x8d\xab\x77\x2a\xc7\x5b\xc4\x17\xd9\x7a\x66\x56\x54\x9a\xde\xca\x10\xba\xb7\x84\xea\x27\x93\xa3\x16\x05\x77\x6f\x18\x44\xba\xdb\x9d\xd6\x96\xfd\xd6\x79\x21\x9e\xd5\xd2\x96\x0b\x30\xf0\xe8\x93\x4a\xaf\x15\x9b\x4c\x25\xab\x5e\xb3\x3c\x6f\xcd\x3d\x10\x4a\xd2\xc2\xec\x07\x4a\x6d\x45\xc7\xca\x93\x90\x1f\xbf\x46\x64\xc3\x44\xc2\xaa\x70\x72\x09\x62\x02\xef\x9f\x56\x65\x2a\x1d\x9c\x39\x23\x1d\xcc\x3b\xf9\x1b\x86\x06\x18\x9d\x65\xaa\x98\x7f\x6f\x26\xf0\x39\x74\x2c\x81\x41\x17\xdc\xa5\x08\xfc\x58\x01\x1f\x85\x04\xbe\xa5\xff\x10\xef\xd2\x7b\xfe\x7b\x7a\x8d\x77\x9e\xbb\xa7\x8a\x89\xbb\x48\x5c\xc7\x71\x3c\x17\x92\x45\xa1\x9d\x44\x56\xd5\xe7\x56\xd3\x27\x51\x52\x02\x01\xc9\x90\x0d\x9b\xc6\xb2\x2f\x9c\x04\x8a\x5e\x15\x72\x45\xfe\x7d\xe9\x09\xe8\x49\xe9\x3b\x8f\xb6\xf5\x30\xee\x0d\xa3\x35\x53\xfa\xc6\xd3\xe4\x4a\x5a\xab\x6b\xa2\x80\x83\x6f\x65\x4d\x2d\x4b\xd6\x4f\xfd\x33\x8a\x28\x84\x6a\x3d\x7d\x78\xc9\x89\xd8\x77\x3d\x22\xdb\x16\x22\xb2\xf9\x22\x1b\xa1\x6f\x39\x0d\xd1\x28\x7d\xc9\x43\x34\xfe\x21\x65\x47\xf2\xf2\x20\x59\x19\x8f\xa3\xc9\x6d\x0c\x9a\xc5\x48\x8d\x27\x24\xf5\x05\x8f\x68\x15\xd1\x2a\xec\x47\xf8\x3e\xdc\x34\x22\xca\xeb\xb3\x4d\x72\xa3\x72\xcc\xed\x44\xf7\x29\xcb\xd2\xce\xe9\x8b\xcd\x9a\x98\xde\xf7\x9a\x91\x1d\xca\x74\x93\xd2\x9d\x87\x54\x07\x2b\xc5\xb9\x4a\xee\x4b\x4d\xf6\xba\xd0\xce\x85\xdc\x67\x3a\x04\x43\xea\xd7\xdd\x42\xa1\x91\xe4\xbe\xd0\x84\xad\x51\xfa\x3e\x93\xa7\x39\xf0\x6e\xf0\x76\x57\x8c\x21\xbd\x0b\xc9\x3d\x06\xec\xfc\x49\x9b\x24\xf4\x20\x4a\x77\xd0\x3f\x8f\x03\xeb\xda\x8a\xb3\xe9\xf9\x27\x79\xf5\xb7\x4c\x27\x17\xa7\x55\x9b\x41\xf9\xd0\x84\x9d\xd3\x35\x83\xa9\x22\xdc\x60\x9f\xf5\x47\x9d\x5c\xcc\x54\xf6\x20\x16\x75\xbb\xda\xeb\x71\xf6\x79\xc6\xbc\x16\xf2\x15\x1c\x14\xec\xed\xfc\x5d\x66\x27\x3a\xdf\xc8\x28\xd4\x2d\xed\x63\x30\x93\x75\xc9\xcf\x7b\xff\xd7\x03\x1a\xf3\x5e\x24\x7d\x08\x7f\x1e\xf8\xc8\x3a\xe9\xaa\x5b\x18\x7b\xef\x4f\xef\xfc\xb1\x29\xb7\x9e\xee\x48\xb2\x6b\xaa\xb8\xfe\xcb\x76\x60\x99\x24\x50\x3a\x68\x9a\xf4\xad\x67\x6a\xac\x27\xe2\xdf\xfe\xad\xf9\x47\x99\x55\x46\x66\xeb\x7f\x26\xba\x68\x19\x88\x7d\x25\x7e\xfe\xfe\xac\x1d\x15\xd2\x75\xc5\xb4\xf6\x8f\xff\x3f\x00\x00\xff\xff\x4d\xf3\x55\x81\x3d\x5c\x03\x00"), }, "/monitoring.banzaicloud.io_storeendpoints.yaml": &vfsgen۰CompressedFileInfo{ name: "monitoring.banzaicloud.io_storeendpoints.yaml", From 0927011c9327c01f9118691cac3bcc05312b27d3 Mon Sep 17 00:00:00 2001 From: Sandor Szilard Magyari Date: Sat, 16 Jul 2022 13:29:31 +0200 Subject: [PATCH 3/3] set default log level --- .../crds/monitoring.banzaicloud.io_receivers.yaml | 1 + config/crd/bases/monitoring.banzaicloud.io_receivers.yaml | 1 + 2 files changed, 2 insertions(+) diff --git a/charts/thanos-operator/crds/monitoring.banzaicloud.io_receivers.yaml b/charts/thanos-operator/crds/monitoring.banzaicloud.io_receivers.yaml index 135412fb..d427fe76 100644 --- a/charts/thanos-operator/crds/monitoring.banzaicloud.io_receivers.yaml +++ b/charts/thanos-operator/crds/monitoring.banzaicloud.io_receivers.yaml @@ -421,6 +421,7 @@ spec: type: object logLevel: type: string + default: debug metaOverrides: properties: annotations: diff --git a/config/crd/bases/monitoring.banzaicloud.io_receivers.yaml b/config/crd/bases/monitoring.banzaicloud.io_receivers.yaml index 135412fb..d427fe76 100644 --- a/config/crd/bases/monitoring.banzaicloud.io_receivers.yaml +++ b/config/crd/bases/monitoring.banzaicloud.io_receivers.yaml @@ -421,6 +421,7 @@ spec: type: object logLevel: type: string + default: debug metaOverrides: properties: annotations: