From cdd75b2e53a337af2cbfc454676464ab3716a98b Mon Sep 17 00:00:00 2001 From: nicolaferraro Date: Tue, 21 Dec 2021 11:02:20 +0100 Subject: [PATCH] Fix #1107: fix linter --- addons/keda/duck/v1alpha1/duck_types.go | 16 +++++------ addons/keda/keda.go | 37 ++++++++++++------------- addons/keda/keda_test.go | 12 ++++---- docs/modules/traits/pages/keda.adoc | 4 +-- pkg/client/serverside.go | 4 ++- pkg/cmd/kit_create.go | 2 +- pkg/cmd/run.go | 6 ++-- pkg/install/kamelets.go | 8 +----- pkg/resources/resources.go | 4 +-- pkg/util/uri/uri.go | 2 +- pkg/util/util.go | 5 ++-- resources/traits.yaml | 4 +-- 12 files changed, 48 insertions(+), 56 deletions(-) diff --git a/addons/keda/duck/v1alpha1/duck_types.go b/addons/keda/duck/v1alpha1/duck_types.go index 90a20bf050..a278ead475 100644 --- a/addons/keda/duck/v1alpha1/duck_types.go +++ b/addons/keda/duck/v1alpha1/duck_types.go @@ -27,7 +27,7 @@ import ( // +genclient:noStatus // +kubebuilder:object:root=true -// ScaledObject is a specification for a ScaledObject resource +// ScaledObject is a specification for a ScaledObject resource. type ScaledObject struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` @@ -35,7 +35,7 @@ type ScaledObject struct { Spec ScaledObjectSpec `json:"spec"` } -// ScaledObjectSpec is the spec for a ScaledObject resource +// ScaledObjectSpec is the spec for a ScaledObject resource. type ScaledObjectSpec struct { ScaleTargetRef *v1.ObjectReference `json:"scaleTargetRef"` // +optional @@ -52,7 +52,7 @@ type ScaledObjectSpec struct { Triggers []ScaleTriggers `json:"triggers"` } -// ScaleTriggers reference the scaler that will be used +// ScaleTriggers reference the scaler that will be used. type ScaleTriggers struct { Type string `json:"type"` // +optional @@ -65,7 +65,7 @@ type ScaleTriggers struct { } // ScaledObjectAuthRef points to the TriggerAuthentication or ClusterTriggerAuthentication object that -// is used to authenticate the scaler with the environment +// is used to authenticate the scaler with the environment. type ScaledObjectAuthRef struct { Name string `json:"name"` // Kind of the resource being referred to. Defaults to TriggerAuthentication. @@ -87,7 +87,7 @@ type ScaledObjectList struct { // +genclient:noStatus // +kubebuilder:object:root=true -// TriggerAuthentication defines how a trigger can authenticate +// TriggerAuthentication defines how a trigger can authenticate. type TriggerAuthentication struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` @@ -95,13 +95,13 @@ type TriggerAuthentication struct { Spec TriggerAuthenticationSpec `json:"spec"` } -// TriggerAuthenticationSpec defines the various ways to authenticate +// TriggerAuthenticationSpec defines the various ways to authenticate. type TriggerAuthenticationSpec struct { // +optional SecretTargetRef []AuthSecretTargetRef `json:"secretTargetRef,omitempty"` } -// AuthSecretTargetRef is used to authenticate using a reference to a secret +// AuthSecretTargetRef is used to authenticate using a reference to a secret. type AuthSecretTargetRef struct { Parameter string `json:"parameter"` Name string `json:"name"` @@ -110,7 +110,7 @@ type AuthSecretTargetRef struct { // +kubebuilder:object:root=true -// TriggerAuthenticationList contains a list of TriggerAuthentication +// TriggerAuthenticationList contains a list of TriggerAuthentication. type TriggerAuthenticationList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata"` diff --git a/addons/keda/keda.go b/addons/keda/keda.go index c446ea3c47..0c972abf7e 100644 --- a/addons/keda/keda.go +++ b/addons/keda/keda.go @@ -27,7 +27,6 @@ import ( kedav1alpha1 "github.com/apache/camel-k/addons/keda/duck/v1alpha1" camelv1 "github.com/apache/camel-k/pkg/apis/camel/v1" - "github.com/apache/camel-k/pkg/apis/camel/v1alpha1" camelv1alpha1 "github.com/apache/camel-k/pkg/apis/camel/v1alpha1" "github.com/apache/camel-k/pkg/kamelet/repository" "github.com/apache/camel-k/pkg/metadata" @@ -46,18 +45,18 @@ import ( ) const ( - // kameletURNMetadataPrefix allows binding Kamelet properties to KEDA metadata + // kameletURNMetadataPrefix allows binding Kamelet properties to KEDA metadata. kameletURNMetadataPrefix = "urn:keda:metadata:" - // kameletURNAuthenticationPrefix allows binding Kamelet properties to KEDA authentication options + // kameletURNAuthenticationPrefix allows binding Kamelet properties to KEDA authentication options. kameletURNAuthenticationPrefix = "urn:keda:authentication:" - // kameletURNRequiredTag is used to mark properties required by KEDA + // kameletURNRequiredTag is used to mark properties required by KEDA. kameletURNRequiredTag = "urn:keda:required" - // kameletAnnotationType indicates the scaler type associated to a Kamelet + // kameletAnnotationType indicates the scaler type associated to a Kamelet. kameletAnnotationType = "camel.apache.org/keda.type" - // kameletAnnotationMetadataPrefix is used to define virtual metadata fields computed from Kamelet properties + // kameletAnnotationMetadataPrefix is used to define virtual metadata fields computed from Kamelet properties. kameletAnnotationMetadataPrefix = "camel.apache.org/keda.metadata." - // kameletAnnotationAuthenticationPrefix is used to define virtual authentication fields computed from Kamelet properties + // kameletAnnotationAuthenticationPrefix is used to define virtual authentication fields computed from Kamelet properties. kameletAnnotationAuthenticationPrefix = "camel.apache.org/keda.authentication." ) @@ -66,9 +65,9 @@ const ( // via markers in the Kamelets. // // For information on how to use KEDA enabled Kamelets with the KEDA trait, refer to -// xref:kamelets/kamelets-user.adoc#kamelet-keda-user[the KEDA section in the Kamelets user guide]. +// xref:ROOT:kamelets/kamelets-user.adoc#kamelet-keda-user[the KEDA section in the Kamelets user guide]. // If you want to create Kamelets that contain KEDA metadata, refer to -// xref:kamelets/kamelets-dev.adoc#kamelet-keda-dev[the KEDA section in the Kamelets development guide]. +// xref:ROOT:kamelets/kamelets-dev.adoc#kamelet-keda-dev[the KEDA section in the Kamelets development guide]. // // The KEDA trait is disabled by default. // @@ -287,14 +286,12 @@ func (t *kedaTrait) hackControllerReplicas(e *trait.Environment) error { return err } } - } else { - if e.Integration.Spec.Replicas == nil { - one := int32(1) - e.Integration.Spec.Replicas = &one - // Update the Integration directly as the spec section is not merged by default - if err := e.Client.Update(e.Ctx, e.Integration); err != nil { - return err - } + } else if e.Integration.Spec.Replicas == nil { + one := int32(1) + e.Integration.Spec.Replicas = &one + // Update the Integration directly as the spec section is not merged by default + if err := e.Client.Update(e.Ctx, e.Integration); err != nil { + return err } } return nil @@ -302,7 +299,7 @@ func (t *kedaTrait) hackControllerReplicas(e *trait.Environment) error { func (t *kedaTrait) getTopControllerReference(e *trait.Environment) *v1.ObjectReference { for _, o := range e.Integration.OwnerReferences { - if o.Kind == v1alpha1.KameletBindingKind && strings.HasPrefix(o.APIVersion, v1alpha1.SchemeGroupVersion.Group) { + if o.Kind == camelv1alpha1.KameletBindingKind && strings.HasPrefix(o.APIVersion, camelv1alpha1.SchemeGroupVersion.Group) { return &v1.ObjectReference{ APIVersion: o.APIVersion, Kind: o.Kind, @@ -349,7 +346,7 @@ func (t *kedaTrait) populateTriggersFromKamelets(e *trait.Environment) error { } sortedKamelets := make([]string, 0, len(kameletURIs)) - for kamelet, _ := range kameletURIs { + for kamelet := range kameletURIs { sortedKamelets = append(sortedKamelets, kamelet) } sort.Strings(sortedKamelets) @@ -495,7 +492,7 @@ func (t *kedaTrait) evaluateTemplateParameters(e *trait.Environment, kamelet *ca return paramValues, authenticationParam, nil } -func (t *kedaTrait) getKameletPropertyValue(e *trait.Environment, kamelet *v1alpha1.Kamelet, kameletURI, prop string) (string, error) { +func (t *kedaTrait) getKameletPropertyValue(e *trait.Environment, kamelet *camelv1alpha1.Kamelet, kameletURI, prop string) (string, error) { // From top priority to lowest if v := uri.GetQueryParameter(kameletURI, prop); v != "" { return v, nil diff --git a/addons/keda/keda_test.go b/addons/keda/keda_test.go index ae49b4a961..08a627e9d4 100644 --- a/addons/keda/keda_test.go +++ b/addons/keda/keda_test.go @@ -133,17 +133,17 @@ func TestKameletAutoDetection(t *testing.T) { Spec: camelv1alpha1.KameletSpec{ Definition: &camelv1alpha1.JSONSchemaProps{ Properties: map[string]camelv1alpha1.JSONSchemaProp{ - "a": camelv1alpha1.JSONSchemaProp{ + "a": { XDescriptors: []string{ "urn:keda:metadata:a", }, }, - "b": camelv1alpha1.JSONSchemaProp{ + "b": { XDescriptors: []string{ "urn:keda:metadata:bb", }, }, - "c": camelv1alpha1.JSONSchemaProp{ + "c": { XDescriptors: []string{ "urn:keda:authentication:cc", }, @@ -248,17 +248,17 @@ func TestKameletBindingAutoDetection(t *testing.T) { Spec: camelv1alpha1.KameletSpec{ Definition: &camelv1alpha1.JSONSchemaProps{ Properties: map[string]camelv1alpha1.JSONSchemaProp{ - "a": camelv1alpha1.JSONSchemaProp{ + "a": { XDescriptors: []string{ "urn:keda:metadata:a", }, }, - "b": camelv1alpha1.JSONSchemaProp{ + "b": { XDescriptors: []string{ "urn:keda:metadata:bb", }, }, - "c": camelv1alpha1.JSONSchemaProp{ + "c": { XDescriptors: []string{ "urn:keda:authentication:cc", }, diff --git a/docs/modules/traits/pages/keda.adoc b/docs/modules/traits/pages/keda.adoc index 1d5bbcbefd..340e150a52 100644 --- a/docs/modules/traits/pages/keda.adoc +++ b/docs/modules/traits/pages/keda.adoc @@ -6,9 +6,9 @@ The trait can be either manually configured using the `triggers` option or autom via markers in the Kamelets. For information on how to use KEDA enabled Kamelets with the KEDA trait, refer to -xref:kamelets/kamelets-user.adoc#kamelet-keda-user[the KEDA section in the Kamelets user guide]. +xref:ROOT:kamelets/kamelets-user.adoc#kamelet-keda-user[the KEDA section in the Kamelets user guide]. If you want to create Kamelets that contain KEDA metadata, refer to -xref:kamelets/kamelets-dev.adoc#kamelet-keda-dev[the KEDA section in the Kamelets development guide]. +xref:ROOT:kamelets/kamelets-dev.adoc#kamelet-keda-dev[the KEDA section in the Kamelets development guide]. The KEDA trait is disabled by default. diff --git a/pkg/client/serverside.go b/pkg/client/serverside.go index bca029d9dd..50be4a76df 100644 --- a/pkg/client/serverside.go +++ b/pkg/client/serverside.go @@ -30,6 +30,7 @@ import ( "github.com/pkg/errors" k8serrors "k8s.io/apimachinery/pkg/api/errors" "k8s.io/apimachinery/pkg/apis/meta/v1/unstructured" + "k8s.io/apimachinery/pkg/runtime" "k8s.io/apimachinery/pkg/types" ctrl "sigs.k8s.io/controller-runtime/pkg/client" ) @@ -49,6 +50,7 @@ func (c *defaultClient) ServerOrClientSideApplier() ServerOrClientSideApplier { func (a *ServerOrClientSideApplier) Apply(ctx context.Context, object ctrl.Object) error { once := false var err error + // nolint: ifshort needsRetry := false a.tryServerSideApply.Do(func() { once = true @@ -80,7 +82,7 @@ func (a *ServerOrClientSideApplier) Apply(ctx context.Context, object ctrl.Objec return nil } -func (a *ServerOrClientSideApplier) serverSideApply(ctx context.Context, resource ctrl.Object) error { +func (a *ServerOrClientSideApplier) serverSideApply(ctx context.Context, resource runtime.Object) error { target, err := patch.PositiveApplyPatch(resource) if err != nil { return err diff --git a/pkg/cmd/kit_create.go b/pkg/cmd/kit_create.go index 4e3e7c212a..4c16aba493 100644 --- a/pkg/cmd/kit_create.go +++ b/pkg/cmd/kit_create.go @@ -196,7 +196,7 @@ func (command *kitCreateCommandOptions) run(_ *cobra.Command, args []string) err return nil } -func (*kitCreateCommandOptions) configureTraits(kit *v1.IntegrationKit, options []string, catalog *trait.Catalog) error { +func (*kitCreateCommandOptions) configureTraits(kit *v1.IntegrationKit, options []string, catalog trait.Finder) error { traits, err := configureTraits(options, catalog) if err != nil { return err diff --git a/pkg/cmd/run.go b/pkg/cmd/run.go index 18194053f2..d2d260f01c 100644 --- a/pkg/cmd/run.go +++ b/pkg/cmd/run.go @@ -417,7 +417,7 @@ func (o *runCmdOptions) waitForIntegrationReady(cmd *cobra.Command, c client.Cli return watch.HandleIntegrationStateChanges(o.Context, c, integration, handler) } -func (o *runCmdOptions) syncIntegration(cmd *cobra.Command, c client.Client, sources []string, catalog *trait.Catalog) error { +func (o *runCmdOptions) syncIntegration(cmd *cobra.Command, c client.Client, sources []string, catalog trait.Finder) error { // Let's watch all relevant files when in dev mode var files []string files = append(files, sources...) @@ -480,7 +480,7 @@ func (o *runCmdOptions) syncIntegration(cmd *cobra.Command, c client.Client, sou } // nolint: gocyclo -func (o *runCmdOptions) createOrUpdateIntegration(cmd *cobra.Command, c client.Client, sources []string, catalog *trait.Catalog) (*v1.Integration, error) { +func (o *runCmdOptions) createOrUpdateIntegration(cmd *cobra.Command, c client.Client, sources []string, catalog trait.Finder) (*v1.Integration, error) { namespace := o.Namespace name := o.GetIntegrationName(sources) @@ -738,7 +738,7 @@ func (o *runCmdOptions) GetIntegrationName(sources []string) string { return name } -func (o *runCmdOptions) configureTraits(integration *v1.Integration, options []string, catalog *trait.Catalog) error { +func (o *runCmdOptions) configureTraits(integration *v1.Integration, options []string, catalog trait.Finder) error { // configure ServiceBinding trait for _, sb := range o.Connects { bindings := fmt.Sprintf("service-binding.services=%s", sb) diff --git a/pkg/install/kamelets.go b/pkg/install/kamelets.go index fc64e2517b..4ff45728d0 100644 --- a/pkg/install/kamelets.go +++ b/pkg/install/kamelets.go @@ -28,14 +28,12 @@ import ( "golang.org/x/sync/errgroup" - "k8s.io/apimachinery/pkg/runtime" - logf "sigs.k8s.io/controller-runtime/pkg/log" - "github.com/apache/camel-k/pkg/apis/camel/v1alpha1" "github.com/apache/camel-k/pkg/client" "github.com/apache/camel-k/pkg/util" "github.com/apache/camel-k/pkg/util/defaults" "github.com/apache/camel-k/pkg/util/kubernetes" + "k8s.io/apimachinery/pkg/runtime" ) const ( @@ -43,10 +41,6 @@ const ( defaultKameletDir = "/kamelets/" ) -var ( - log = logf.Log -) - // KameletCatalog installs the bundled Kamelets into the specified namespace. func KameletCatalog(ctx context.Context, c client.Client, namespace string) error { kameletDir := os.Getenv(kameletDirEnv) diff --git a/pkg/resources/resources.go b/pkg/resources/resources.go index 414e4d8b38..80a8c6d0fe 100644 --- a/pkg/resources/resources.go +++ b/pkg/resources/resources.go @@ -555,9 +555,9 @@ var assets = func() http.FileSystem { "/traits.yaml": &vfsgen۰CompressedFileInfo{ name: "traits.yaml", modTime: time.Time{}, - uncompressedSize: 49560, + uncompressedSize: 49570, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\xfd\x73\x5b\xb9\x91\xe0\xef\xf3\x57\xa0\xb4\x57\x65\x49\x45\x52\x9e\xc9\x26\x3b\xa7\xbb\xd9\x94\xc6\x76\x12\xcd\xf8\x43\x67\x3b\xb3\x97\x9a\x9b\x0a\xc1\xf7\x9a\x24\xcc\x47\xe0\x05\xc0\x93\xcc\xdc\xde\xff\x7e\x85\xee\xc6\xc7\x7b\x24\x25\xca\xb6\x66\xa3\xad\xdd\x54\xed\x58\xd2\x03\xd0\x68\x34\xfa\xbb\x1b\xde\x4a\xe5\xdd\xf9\x57\x63\xa1\xe5\x1a\xce\x85\x9c\xcf\x95\x56\x7e\xf3\x95\x10\x6d\x23\xfd\xdc\xd8\xf5\xb9\x98\xcb\xc6\x41\xf8\x8d\x35\x73\xd5\x80\x3b\xff\x4a\x88\xb1\xf8\xb1\x9b\x81\xd5\xe0\xc1\xd1\x8f\x5a\x7a\x75\x0d\xf8\xef\x37\x2d\xe8\x77\x4b\x35\xf7\x5f\x09\x51\x83\xab\xac\x6a\xbd\x32\xfa\x5c\x5c\x34\x8d\xb9\x71\xa2\x32\xda\x85\x95\xb5\xd2\x0b\x71\xb3\x54\xd5\x52\x68\x53\x83\x13\x7e\x09\x42\x69\x0f\x0b\x2b\xc3\x00\xd1\x9a\xfa\xd8\x9d\x08\x69\x41\x40\xa3\x16\x6a\xd6\x84\x05\x84\xf0\x46\xcc\x40\xb8\x6a\x09\x75\xd7\x40\x2d\x8c\x1e\x89\x99\x74\xf8\x2f\xd1\xc8\x19\x34\x2e\xfc\x2b\x4c\x17\x26\x1e\x09\x63\xc5\x8d\xf2\x4b\x9c\xdc\x8e\x5b\x53\xa7\x9d\x0a\xa9\x6b\x9c\x53\x6a\xaf\xc6\xf1\xb7\x3b\xa7\x6b\x4d\x1d\x40\x94\x1e\x01\x92\x8d\x05\x59\x6f\x84\xed\x34\xee\xa3\x58\xcf\x4d\x70\xc6\x4b\xff\xc4\x89\x5a\x39\x39\x0b\x30\xce\x36\xa2\x86\xb9\xec\x1a\x3f\x21\x5c\xb6\x60\xbd\x8a\xd8\x24\xf4\x83\xc6\x6f\x69\x8f\x9b\x16\xce\xc5\xcc\x98\x06\x7f\xec\xe1\xf1\x99\xd4\x01\x01\x5d\x00\xd1\x1b\x1e\x16\x36\xc9\xab\x09\x29\xf0\x64\x27\x01\xe3\xf4\x4f\x27\xdc\x32\x80\xed\x97\x2a\x1c\xc0\x7a\x6d\x34\xce\x9b\x40\xd9\x4c\x0a\x40\x5a\x53\x8f\x0b\x5a\xb8\x1d\x9a\x8b\xe6\x46\x6e\xc2\xa4\xe3\xc6\x54\xd2\x83\x13\xeb\xae\xf1\xaa\x6d\x40\x58\x68\x1b\x55\x49\x27\xcc\x7c\xeb\x70\x15\x21\xcc\xc9\x35\x30\x24\x01\x77\xe2\x98\xb1\x24\x4e\x91\xee\x4e\x4f\xb6\xe0\x2a\x0f\xea\x4e\xe0\x5e\xc3\x35\xd8\x5f\x05\xb6\xf0\x45\x82\x6b\x4c\x64\x53\x80\xf7\xe4\xe7\x5f\x9c\xb7\x4a\x2f\x9e\x6c\x03\xf9\x1c\xe6\x4a\x83\x13\x52\x38\xf0\x01\x9e\x83\xaf\x03\x5d\x05\x86\xf1\xe0\x0b\xb1\xef\xa8\x3f\x13\x6a\xbc\x20\xc7\x61\xda\x66\x23\xfc\xd2\x38\x10\x6b\xe9\xab\x65\xb8\x1e\x61\x69\x9c\x5d\x38\x68\xa0\xf2\xc6\x8e\x18\x6a\x0b\x0d\xb2\x8e\xb0\x95\xf0\xd5\x42\x5d\x83\x46\xe0\x5c\x2b\x2b\x38\xa1\x2b\xe7\x97\xb0\x03\x15\x6e\x69\xba\xa6\x0e\x77\x21\x9d\x70\xcd\xd3\x86\xfb\x7e\x2b\xe9\x3c\xd6\xcd\x6a\xe3\x6f\xd9\x70\xdc\xee\xac\x53\x4d\x0d\xb6\xc7\xc8\xbd\xed\xbe\x0c\x1f\x7f\xbf\x84\xb8\x00\x71\x17\xa1\x1c\xf1\x56\x2d\x9b\x66\x93\x18\x53\x0d\x1e\xec\x5a\x69\xc0\xbd\xce\xc0\x79\x11\x18\xbf\x87\xc5\x26\xf1\xf1\x30\x4d\x60\xc2\x41\x2a\xcc\xd5\xa2\xb3\x20\x2e\xf3\xde\x7f\x54\xde\x3d\x02\x7e\x79\x0d\x76\x66\x1c\xdc\x09\xc8\x0b\x5a\x99\x3f\x17\x8d\x59\x2c\x58\x76\x10\x1e\x2a\xb3\x6e\x8d\x06\xed\x59\xd0\xb8\xae\x6d\x8d\xf5\x42\x79\x71\x0c\x93\xc5\x84\x41\xf8\x51\x6a\xb5\x8a\xb8\x6b\x4d\xdd\xe7\x91\x09\x55\x07\x92\xf6\x85\x68\x94\x23\x9a\x4e\x43\x59\xc4\xb6\xd6\x5c\xab\x9a\xb0\xe6\xe3\xa1\x0b\x2f\xdd\x2a\x11\x5a\x15\x6e\xc0\xc3\x91\xd9\xb3\x30\x3d\x13\x59\xd5\x3f\xc6\x4c\x30\xd7\x60\x9d\x32\x1a\x59\xf9\x45\x2b\xab\x34\xee\x47\xdc\xad\xed\xb4\x57\x6b\x40\x2a\xc3\x0b\x08\xb5\x68\xd4\xcc\x4a\xab\xc0\x8d\x04\xcd\xcc\xd7\x2a\xca\xeb\x47\x40\x74\xbc\xad\x31\xef\xbe\x00\x88\x8e\x7a\x1b\xa4\x80\x50\x3c\xaf\xf1\x6a\x1c\x91\xc2\xa3\x03\x88\x9d\x03\x31\x37\x76\x28\x77\x26\xe2\xd2\x0b\x73\x0d\xd6\xaa\x9a\x89\x4a\xe0\x37\x51\x1a\xc6\x29\x02\x67\x64\xc9\x59\x5c\x61\x71\xc5\x94\xf1\x6b\x11\x69\xb9\x36\xef\x32\x53\xab\xd1\x5e\x2a\xfd\x50\x8c\xf1\x09\x92\x6c\x5c\xe3\x2e\xb2\x2d\x76\xc2\x3a\x48\x09\x9e\x10\x37\x4b\xb0\xb0\xa5\x05\xdc\xa8\xa6\x09\xfb\xc2\x63\x91\x8d\x33\x11\x01\x2e\x4d\x4d\x1f\x86\xa3\x7c\x07\xf6\x5a\x55\x41\x6e\x39\x67\x2a\x95\xc4\x05\xa3\x2a\xad\x37\x11\xda\x34\x4a\xfb\x73\xe1\xe5\xa2\x09\xdf\x35\x0d\x3c\xf9\xc7\xbf\x03\xb2\xf3\xe6\x4e\x28\x8e\x8e\xca\x5b\x03\x7f\xeb\xc0\xf9\x71\xd5\x76\x07\xde\x98\xb5\xd2\x6a\xdd\xad\x85\x5c\x9b\x4e\x23\x09\x3e\xbb\xfa\x33\xce\xa3\x2c\x31\x8a\xe1\xdc\x6b\x58\x1b\xbb\xf9\xe4\xe9\x69\xf8\xce\x15\x1a\xb5\x56\xf7\x82\x5d\x7e\x3c\x10\x76\x9a\xf9\x7e\x90\x6f\x4d\x7e\x0b\xe4\xf0\xb1\x3d\x44\x42\xee\xa4\x98\xb3\x48\x2e\x38\x09\x72\x7c\x25\xc5\x2a\x5d\xd0\x48\xe6\x7d\x7d\xcf\xfa\x62\x35\xa5\xfd\x8e\x4d\x94\xb7\x51\x8a\x5a\xcd\xe7\x60\x41\x7b\x1c\xcc\x10\xa3\xe5\xd6\xbb\x2b\xd9\x0c\x98\x7e\xfb\xf4\xdb\xa7\xd3\x93\xe1\xb2\x63\x1d\xed\x86\x3b\x70\x78\xeb\xf2\x61\x92\xc4\x8e\x6f\x05\x28\xaa\x05\x97\x3e\xb2\x64\x64\x8d\xd3\xa5\xf7\xed\x54\x18\xdd\x6c\x02\x2b\x21\xc6\x3c\xa5\x49\xa6\xa2\x95\x56\xae\x83\x7e\x16\x74\xb7\xc0\x00\xcb\x5d\x38\xc2\xe7\xf8\xde\x48\xec\x74\xd0\x09\xc9\xa6\xe7\x49\x08\xf6\x3e\x06\x49\xa9\x71\x3d\xeb\x25\xee\xae\xc4\x6e\x1f\xb7\x25\x54\x9f\x84\xe3\xbd\xd0\x21\xae\x77\x82\x18\xc5\x1d\x4a\x9a\x6d\x10\x11\xc5\x7d\x33\xf0\x40\xb8\xf0\xfe\x28\x5d\xac\x18\x46\x4e\xc8\x6b\x10\xfe\x59\x8b\x69\xc1\xf6\xa7\x03\x07\x42\x5c\x4e\xad\xe5\xe2\x13\xd7\x8b\x43\x7b\x53\x8d\xdb\xae\x69\xc6\xad\x69\x54\x55\xb2\x81\xab\xae\x69\xae\xf2\x2f\xb7\x85\x5e\x18\x26\x68\x58\xf4\x08\xfc\x3b\xda\xde\xff\x7e\x39\x7f\x6d\xfc\x95\x05\x07\xda\x3f\xe9\xab\x00\x33\x70\xe3\x43\x45\xc9\x93\xe7\xd0\x5a\x40\x83\xe7\x0a\x47\x92\x2e\x5d\x0f\x59\x04\x4d\x1b\xad\xdd\xed\x4b\xcb\x07\x3a\x45\x0b\x7e\x7a\x92\x67\x3d\x47\x8f\x80\xac\xf2\x05\x5b\x82\x6c\xfc\x92\x25\xd4\x93\x1e\xaf\xbc\x06\x0d\xce\x8d\x83\xc5\x7d\xd0\x71\x3f\x79\x87\x5f\x46\x2d\x0b\xaf\x63\x65\xb4\x86\xca\x2b\xbd\x98\x04\xf3\x32\xdd\xdb\x3f\xbd\x7f\x7f\x35\x11\x17\x6d\xdb\xb0\x8e\xe3\x97\xf1\x8e\xc4\x85\x69\x97\x93\xcf\x03\x3e\x58\xc1\x4a\x36\xe3\x1a\x1a\xb9\xe9\xdf\xf2\xdf\x7c\xb3\x63\x0b\xaf\xbb\xf5\x0c\x6c\x60\xf3\x0e\x2a\xa3\x6b\x27\xe4\x3c\xf0\x8f\x3e\x9e\x97\xd2\x09\xe7\xa5\x0d\x4a\xf6\x0c\xe6\xc6\x42\x5a\x31\xcb\xf1\x70\x42\x41\xc8\x13\x08\x1e\xea\xcf\xdc\x4a\xd0\xf1\x4c\xe7\x3f\x63\x13\xc4\x14\x90\xd5\x06\xf0\x44\x98\xd1\x09\xd3\xf9\x5f\xe3\x24\x5a\xb0\xca\xd4\x07\x40\xff\x27\x73\x23\xcc\xdc\x03\xaa\xeb\x2d\xd8\xa0\xbe\x66\xa0\x87\xa0\xde\x02\x64\x72\x47\xdc\x9b\xe2\xbb\xaa\x42\x8c\x2f\x2d\xb8\xa5\x69\x0e\x81\xfa\x15\x6b\x38\x95\xd1\x0e\xaa\x0e\xfd\x1f\x3c\x0f\xb8\x2c\xe2\x08\xef\x86\x9c\x1b\xda\xa9\x1a\x2c\xd4\xf1\xc3\x79\xd7\x30\xcc\x74\x5e\x4b\x79\x1d\x2c\xe7\xb9\x54\xc1\x58\x3b\x78\xdf\xc3\x1d\xf3\x9c\x77\xef\x3b\x2c\xd4\x59\xf8\xec\x7d\xf3\x3c\x77\x6e\x9b\x36\xb6\x6b\xcb\x88\x10\xa8\x3f\x75\xd7\x85\xfd\xb6\x77\xd7\x16\x64\xad\xfe\x43\x18\x5c\x5a\xf9\x73\xee\x55\x06\xff\x57\x63\x71\x69\xc9\x2f\xce\xe3\xf2\x66\x7e\x7d\x26\xf7\x85\x4f\xe3\xa1\xd8\xdc\x2d\x60\xde\x97\xcf\x15\x94\xff\x18\x18\xdd\x3d\x0e\xe8\x2e\x4e\x97\x77\xfe\x08\x58\xdd\x81\xfb\xde\xcf\xeb\x92\x3f\xc8\xa2\x7b\xe1\x21\x82\x9d\xe4\x0b\xb2\x41\x11\xdd\xe9\x06\xea\x9c\x37\x6b\xf5\xf7\xe8\x1b\x0f\x5b\x36\x1d\x5e\x5a\xba\x27\xaa\x22\xbc\xab\x35\xd8\xb3\x00\x27\x47\x74\x0a\xa3\xc0\x4d\xc4\xbf\x2d\x55\x03\x42\x1b\xbb\x46\xcf\xbb\xd4\x3d\x5f\x11\x1b\xe2\x4e\x48\xd1\x9a\xb0\x2c\x4e\x39\x03\x21\x29\x66\xd7\xb5\xe4\x14\xa5\x18\xe6\x48\x38\xb3\x86\xb4\x3c\xfa\x79\xdd\x28\x9c\xc2\x52\x48\x27\x66\xd2\x57\x4b\xf1\xc1\xcc\xdc\x28\x4e\x5c\xce\x58\x79\x75\x8d\xae\x55\xe9\x85\x6b\xa1\x52\x73\x55\x89\xa5\xe9\x6c\xf2\x6e\xd5\x72\x93\x22\xb1\x32\x2f\x83\xcc\x19\xbd\x07\x4a\x77\x3e\x46\x4f\xff\x60\x2c\xad\xcc\x50\x20\x0b\xee\x63\x73\x2d\x3d\x58\x25\x9b\x88\xc4\x72\xe7\x32\xec\xb9\x77\x6c\x02\x0f\xe3\x07\x33\x13\x4a\x3b\x0f\xb2\x0e\x4b\xca\xc0\xc8\x75\x2d\x6d\x2d\x6a\x68\x1b\xb3\x59\x83\xf6\x23\xa1\xb4\x30\x16\xa3\x1b\x46\x38\x79\x1d\x08\xce\x99\xce\x56\xe0\x92\x25\x8d\x33\x96\x2b\xd6\x06\x1c\x06\x67\x34\xd0\x09\xa3\xc1\x18\x2e\x03\xd4\x93\xd2\x29\x19\x7d\xfb\x41\x82\x88\xb9\x35\xc4\xda\xe6\xa6\x69\xcc\x4d\x94\xad\x45\x20\x00\xc3\x7d\xd7\xb2\xe9\x10\xb9\xd1\xf6\x4f\x98\x38\x17\x53\x24\x91\xe9\x48\x4c\xc3\x6f\xc3\x7f\xff\xd6\x49\xeb\xff\x3e\x9d\xa0\xd5\x67\xbb\x86\xf7\x1f\xee\x61\xe7\xc2\xc5\x2a\x51\x93\xd0\x22\xd9\xd9\x98\x20\x39\x17\xe3\x38\xf9\x39\xed\x9b\xce\xcc\x05\xec\xc7\x73\xbf\xb1\xca\x07\x4e\x2d\x1d\x01\x05\x1f\x5b\x0b\xce\x11\x75\xbe\x98\x2c\x26\x3c\xc5\xb9\x57\xd5\xea\xf7\x34\xc1\x77\xbf\x7b\xfa\xf4\xe9\xd3\xe9\x24\xcc\x3f\x80\xf9\x3c\x7a\x3e\x75\xde\x67\x9e\x32\x23\x99\xa5\x71\x12\x70\xc7\xcc\x63\x8e\xf8\x17\x47\xa2\x95\xe4\x63\x70\xe0\xa3\xcb\xf3\xe9\x49\x04\x29\xcc\x7b\xee\xe5\xec\xf7\x31\x66\xfa\xdd\xd3\xb3\x6f\xfe\xdb\xff\x6d\x9b\xce\xfd\xbf\xd3\x5d\xff\xf9\xfd\x34\x90\x2e\x43\x79\xee\xad\x5a\x2c\xc0\xfe\x3e\x4c\xf3\xdd\x53\xfa\xe2\xe9\xd9\x37\xb7\x8e\x9f\x3c\x02\x77\x6a\xc4\xc6\x81\x0e\x85\x48\x39\x71\x58\xe2\xf4\x37\x4b\xd3\x0c\x63\x08\xf3\x22\xf4\x6e\x3a\x9f\x22\x09\x01\xba\x1a\xaa\x46\x5a\xa8\xf1\x9a\x6f\xc4\xba\x73\x3e\xc8\x00\x48\x51\xf8\xe1\x12\xca\xad\xa1\x5a\x4a\xad\xdc\x3a\x60\xe2\xc6\xd8\x95\xa8\x8c\xb5\x50\xf9\xa6\xb7\xa3\x7c\x91\x0e\x51\x62\x2f\x10\x45\x52\x38\x68\xa5\xe5\x38\x11\x45\x1d\x7c\x8a\x29\x0d\x63\x74\xc5\x75\x4f\x3c\x3d\x4a\xb3\xc4\x47\x18\x31\x19\xd8\x44\xe1\x69\x63\xe8\x86\x43\xb2\x82\x5a\xc0\xc7\x14\x4c\x9d\x6d\x8a\xcb\x3a\xb9\x88\xb1\xfe\xc8\x61\xd3\x9a\xe8\xc8\xcb\x5c\x38\xac\x08\xb2\x5a\xc6\x2f\xa1\x88\x2e\xf2\x2d\x60\xa0\xa2\x47\x84\x6e\x7a\xfe\x8a\x78\x2e\x5e\x95\x71\xfc\x5b\xb9\x58\x5e\xeb\x58\xf9\x27\x4f\x82\x2c\x46\x27\x8f\x50\xba\x10\xbc\x53\x63\x17\x13\x89\x41\xb9\x09\xc6\x9e\x26\xab\xf3\x18\x83\xc2\xbb\xcf\xa1\xb8\xcd\xc9\xe4\x1d\x45\x3b\xa1\x1e\xb2\xbf\xaa\xb3\x16\xb4\x6f\x36\x51\x9f\x4b\x5c\x83\xe1\x0a\x42\x2c\x71\xbd\x52\xab\x99\xcb\xa6\x99\xc9\x6a\x75\xe7\xd5\xfa\xb3\x83\x5e\x4c\x8b\xce\x5a\xad\xdb\x06\x82\x48\x20\x16\xcf\x74\x40\xab\x0b\xd0\x75\x6b\x94\xf6\xe2\x38\x2e\x7d\x92\x8e\x3d\x09\x18\x6f\x37\x98\x11\x60\x6e\x93\x56\xd2\xed\xe0\xc7\x7d\x2a\xd6\x84\x83\x6a\xb3\xed\x9b\xdb\x6f\x92\xf1\xc9\x3b\xb1\x34\x37\xa8\x3a\x59\x90\x3e\x4f\xe6\x59\x3e\xc5\xd0\xa9\x14\x61\xd9\x9f\x64\xa3\x6a\x11\x04\x4e\x79\x45\xcf\xc7\xe2\x08\xd3\xb7\x8e\xce\x85\xa4\x34\x2e\x86\x13\x95\x32\xdb\xe9\x62\xde\x66\xf3\x3f\xc6\xe2\xe8\x0f\xc6\xce\x54\x7d\x94\x3c\x6f\x27\xe7\x81\xe2\x66\xaa\x8e\xd3\x16\x80\xd8\x4e\x07\x4d\x63\xa5\xda\x36\xa0\x4b\xc3\x47\xfc\x9d\x50\xf3\x40\x55\x41\x33\x72\xf8\xf3\x52\x3a\xfd\xe4\x89\x17\x73\xa5\x95\x5b\x42\x2d\x36\xe0\xc3\x5a\x6f\x49\xe9\x3b\x8a\x04\x52\x49\x5d\x41\xe3\x32\xe5\xa4\x3c\xad\x0f\x41\xd2\x61\x20\x18\x47\x38\xa1\x7c\xd4\x48\x34\xdc\x08\xa3\xe1\xc9\x7d\xe3\x4b\x17\x9d\x37\x6b\xe9\x55\x85\xf7\x95\xf4\x88\x5d\x0a\x49\x64\x97\x78\xf7\x65\xd3\x30\x1f\x0c\xe8\x05\xe5\x97\x1c\xf5\x13\xa4\x19\xa0\xd2\x1f\x94\x83\x42\x53\x0a\x4a\x73\xb7\x06\x2b\x8e\xd1\xa9\x7f\xdb\x2d\xc0\x7b\xe3\xe2\x85\x8a\x84\x69\x6c\x98\x4e\x3a\x17\xf4\xf3\x3c\x1b\xa0\x4c\xac\x55\x60\x9f\x53\x64\x23\x5b\x1f\x9d\x4c\xd0\x31\x1d\x23\x3b\xc8\xfa\x22\x75\x34\xcd\x36\x88\x6e\xc0\xbf\xe9\x03\x04\x31\xeb\xc2\x2c\xd8\x83\xce\xe8\xa2\x2a\x2e\x8a\x44\xa6\x08\xd9\xd7\xeb\xe9\xce\x21\xd3\xa7\x67\x5f\x8b\x53\xfa\xdf\x74\x74\x83\xaa\xf0\xf4\x37\xbf\x5d\x93\xac\xfe\xed\x53\x37\xe5\xc8\x7e\x3f\x8c\xc0\xe8\x1d\xd7\x20\xeb\x46\x69\x18\xb3\xce\xd0\xb7\x73\x7e\xf7\xcf\xdb\x27\xfd\x06\xff\x2b\x1b\x11\x87\x8a\x42\x05\x09\xec\x34\x1d\x5d\xd8\x78\x20\x35\x35\x0f\xfb\x5d\x2b\xb4\x00\x53\x82\x16\xc6\xa4\x69\xaf\x61\x94\xd4\x9b\x60\xd2\xb8\x20\x27\xc5\x2b\x85\xdb\x0b\x7a\x76\x79\x3f\x31\xec\x8b\x86\x53\xa7\x3d\x6d\x9f\x0c\xa7\x40\xb2\xae\x17\x13\x0d\x7c\x19\x3e\x61\x77\x99\x5f\x20\x27\xec\x72\x32\x1c\x4f\x31\xda\xca\x5f\x22\x25\x36\x6c\x67\x54\x92\x04\xef\x7e\x2d\x37\x6c\xeb\x79\xa5\x3b\xd3\xb9\x60\xa1\x20\x74\xd1\x6f\x42\xa9\x43\x85\x31\x48\x82\x94\xad\xdd\x22\xa0\x95\xe3\x30\xbf\x7b\xda\xdb\x6d\xe0\xee\x66\x3e\x1f\x63\xfc\xf2\x6e\x4b\xb5\xbf\x47\x9d\x1c\x25\x16\xbc\x0d\xbf\x65\xb8\xd6\xd2\xae\xca\x63\x4c\x00\x31\x1c\x65\x9c\xed\x9b\x9c\x75\x55\x43\x0b\xba\x06\x5d\x51\x62\xc3\x03\xe5\xc4\x3c\x2f\x56\xb9\x35\xff\x4a\xf6\x18\x93\xac\xeb\x94\x0f\x41\x7b\x28\xa6\x49\xd9\x82\x43\xbe\x15\x13\xd2\xc2\xa4\x56\xdc\x48\xed\x23\xc3\x1f\xa4\xc8\x88\x9f\x7f\x29\xf1\xd0\x98\xcd\x43\xa6\x9f\xc5\x15\xf2\xfe\x2d\xb8\x36\xd0\xd1\x8c\x95\x44\xfa\x22\x1e\x62\x36\xe0\xcc\x8d\x66\xfd\x6c\xb6\xc5\xa5\x47\x94\x89\x36\x50\xb3\x3f\xb6\x8d\xaa\x54\x10\x22\x94\xce\x47\xe8\xd0\x35\xd8\x06\xe7\x0f\xf4\x6d\x4d\xd3\x30\x03\x47\x8c\xe1\x75\x5d\x4b\x2d\x17\xdb\xb6\x69\x6b\xea\xc7\x90\xd4\xb6\x52\xba\x3e\x40\xcd\xe0\xa4\xee\xbd\x88\xaa\xc1\xa1\xc4\xc8\xf6\x35\xce\x2c\x66\xe0\x6f\x00\xb4\x98\xe6\x3f\x4c\x47\xa5\x7e\x37\xfe\x60\x66\xc4\xc9\x57\x44\x15\x63\x8e\xd9\x4e\xd9\xbd\x1c\xb4\x99\xed\xf3\x0d\x67\x1f\x85\x7d\xd6\x6e\x4b\x5b\x64\x40\xa6\x61\xe5\x07\xbd\xac\x71\xdb\x7b\x49\x75\x01\x1a\x6c\xde\x4b\xa1\x0b\xf6\x20\xec\x93\xd6\x2a\xc8\xf7\x5b\xf2\x83\x62\x2a\x56\xd5\x74\xce\x53\x92\xc0\x3f\x38\xc1\xb5\xd6\x2c\x82\x70\xbf\x43\x74\xed\x62\xeb\x65\x3a\x0a\xa6\xb5\x0d\xe4\xb2\x4f\x2c\x83\x4e\xc2\x10\x02\xe3\x8a\xcc\xf6\x23\xad\xf8\x5b\x64\xd2\x30\xcb\x02\xc5\x51\x46\xe5\xb5\xb2\x46\x3f\x2c\x45\x15\x8b\x64\x92\xea\xa2\x6b\x90\x45\x80\x37\x42\xe9\x0f\xe1\x0e\x26\x07\x57\x1f\x38\x21\xae\xa5\x55\xe1\xdc\x5c\xa4\x94\x92\x8a\x52\xb4\x23\xfb\xff\xa6\xaf\x2f\x5e\xbd\x78\x77\x75\xf1\xec\x45\xd0\x39\xaf\xde\x3c\xff\x6b\xf8\x05\xa9\x9d\x26\xa8\xaf\x8f\x81\xa9\xa5\x7d\x8d\xd7\xe0\xe5\x9d\xf0\x50\x92\x81\x63\x5c\xb2\x0d\x58\x20\x82\x74\xee\x8c\x8b\xf2\x6c\x12\x7e\x19\x9c\x9c\x35\x12\xc8\x01\x8d\xc5\x94\x3f\x2c\xed\xfd\x13\x21\xf3\xf9\xb1\xf7\x21\xf0\xc3\x2c\xc4\xaf\x4c\x3d\x11\xaf\x92\x27\xe5\xc7\x17\x7f\xf9\xee\xa7\x8b\x97\x7f\x7e\x11\x75\xec\x8d\xf6\xf2\xa3\x38\x56\x30\x12\xaf\xfe\xf2\xd7\x9f\x2e\xde\x7e\x77\xb4\xde\x90\xdd\x77\x74\x52\x90\xb4\xb5\xc6\x8e\x97\x52\xd7\xcd\x43\xca\xf3\xde\x32\x6c\x82\xf0\x4a\x4c\xe4\x91\x26\x98\xac\x5f\x84\x01\xe2\x4f\x09\x2e\x21\x48\x00\x04\x2a\x36\x5b\xe4\xcc\x7a\xcf\x23\x20\x50\x0b\xf3\x03\xbd\x6f\x88\x32\x11\x51\x66\x61\x4e\x69\x4c\x29\x1d\xd6\x58\x31\x37\x5d\x30\xb8\xb4\x90\x2d\x16\xbb\x90\xfa\x91\x73\x6f\xe3\xa2\x8b\xea\x81\x82\x20\x01\xce\x3f\x3e\x13\xef\xf1\x04\x17\xd2\xce\xe4\x02\xc6\x55\xd0\x95\x2a\xef\xc8\x06\x4e\x82\x3b\x95\x56\x69\x23\x1a\xa3\x17\x60\x85\x86\x0a\x9c\x93\x9c\x91\xd8\xb5\xa6\x1f\xde\xe8\xda\x5a\x72\xc0\xe0\x1f\xfc\x54\x6b\xe5\x2a\x73\x0d\x76\x33\xae\x64\xb5\x2c\xfd\xab\x0b\xe5\x97\xdd\x6c\x52\x99\xf5\x19\x79\xc9\xce\xd8\x3b\x76\xd6\xae\x16\x67\xb4\x6a\x1a\xfd\x2c\x7c\xf0\x7e\xd3\xc2\xf6\x16\x9e\xc7\x6f\x44\xd5\xa8\xc0\x7e\x70\x21\x66\x0d\x61\x63\x23\x41\x4e\x86\x60\xe8\x53\x8e\x7b\x60\xe3\xb5\x72\x2b\x52\xb2\x28\x77\x73\xba\xc5\xac\xf8\xf7\x27\x89\x58\x28\x94\xf6\x80\x04\x53\xc6\xea\x76\xa9\x4b\x31\xa1\x2f\xea\x4b\xfc\x7d\xca\xfc\xfa\x2a\x9a\xa0\x3b\x05\xda\xe4\x31\x17\xe6\xe5\x94\xa1\xb0\xd9\x83\x93\xe7\x9e\xc5\x14\x48\xb7\x23\x53\x64\x57\xce\xff\xdd\x89\x73\x3b\xa1\x3a\x38\x5d\xe4\xd6\x6c\x91\xdd\x09\x2d\x05\x49\xfe\xe9\xfd\xfb\xab\x3d\x10\xdc\x33\xe3\xe3\x93\x13\x3e\x4a\xf8\xca\x9c\x0f\xb2\xc4\x63\xc6\xc7\x67\xe5\xaa\xdd\x9d\xc5\x31\x40\x50\x4e\xe7\xf8\x9c\x24\xb3\xbd\xc9\x17\x83\xfc\xa2\x2f\x94\x1d\x76\x58\xce\xc4\x70\xa7\x83\x1c\x82\xa8\xd3\xa4\x14\x8a\x9d\xc9\x13\x5f\x28\xaf\xeb\xa0\x5c\x87\xc3\x00\x66\x0f\xde\x9e\xa4\x87\xdd\x49\x34\x9f\x73\xf1\x07\x79\x13\xf7\xbc\xf9\xa4\xb6\xee\x06\xeb\xcb\xde\xfc\x21\x9c\xb7\x5d\xfd\x4f\xce\xf6\xfa\xac\xbb\xbf\x33\xe1\x6b\xef\xe5\xff\x84\x24\xae\xbb\x6f\xff\x10\x49\x3b\xaf\xff\xfd\xb3\xaf\xf6\xde\xff\x61\xd2\xcd\x97\x4a\x9b\x3a\x8c\x03\x6c\xed\xf6\x73\x59\xc0\x67\x25\x3c\x1d\xc4\x03\x0e\x04\xf9\x0e\x26\x90\xd2\xf3\x35\xba\x2a\xee\xab\x77\x6d\x69\x57\x97\x34\xcf\xee\xac\x24\xaa\x70\x20\xd7\x3e\x17\x48\xe4\xca\x31\x8c\x93\xed\x54\xae\xf8\xda\x9a\xce\x87\xad\x89\x1b\x63\x9b\x3a\x46\xd5\x0a\x6f\x16\x2f\xcd\x1a\x18\xf3\xb0\x98\xa7\x15\xaf\x78\x60\x09\x58\xb4\x2f\x63\x59\x0f\x9a\x83\x75\x51\xe1\x57\x2e\x7d\xec\x97\xd6\x74\x0b\xba\x12\xd3\xe8\x21\x24\x28\xc3\x0e\x4f\x1e\x81\x56\xb7\x34\xce\x1f\x12\xd0\x3d\x3d\x7d\xcb\xf1\xb7\xd3\xd3\x49\xbf\xb4\x05\xf5\x60\xe3\xb6\x8a\x84\x98\x6a\x26\xf7\x0e\x6a\xbe\xdf\x15\x3e\xc0\xf4\x32\x22\x9f\x74\x4c\xc3\x03\xe9\x1c\xe6\x9b\x05\x46\xcd\x5b\x4e\x81\xf2\x18\x1c\x2c\x88\xda\x79\x65\x1e\xd0\x94\xb8\x0c\xf3\x33\xa9\xcb\xd4\x7d\x24\x59\x0f\x45\x05\x66\x2c\x0c\x8e\x45\xa4\x0c\x98\x48\xf7\x60\x0d\x6e\x99\x9d\x61\x81\xce\x2b\x69\x0b\xc7\x10\xba\xc1\x3a\x3f\x43\x93\xfb\xf2\x4a\x58\xa9\x17\x8f\xc2\x36\x45\xbc\x1c\x40\x7e\x85\x2e\x21\xc5\x31\x26\xca\x8c\x53\xa2\xcc\x49\x72\x4b\x3d\xbb\x7c\xfe\x56\xb8\x6e\xa6\x21\x55\xb1\xa7\xc6\x05\x0c\xc5\x8c\x28\xc6\x56\xd0\x16\x39\x6d\x74\x56\xad\x35\x1f\x37\xe2\x78\xfa\xf5\xd3\x09\xfe\xef\xec\xdb\xd1\xd7\xff\xf2\xcd\xe4\xeb\xdf\xe1\x0f\x5f\x7f\x33\xfa\xfa\xbf\x87\x9f\xbe\xa5\x1f\x7f\x17\xed\xd5\x6c\xc5\xf5\x94\x03\x3a\x9e\x3b\x71\xfc\x07\xc3\x1e\x08\x20\x07\x18\xb2\x70\xee\x9b\x31\xe5\xa3\x9e\x20\xad\x4e\x94\x39\xa3\x49\xa7\x13\xf1\x7d\x5a\xb4\x88\x7b\x52\xe3\x07\x4a\x3c\xc3\x32\x3c\x54\x9b\x84\xd1\xa5\x03\x3a\x10\x8b\x36\x9e\x9a\x49\xe8\x48\xcf\xb9\x8e\x31\xc2\xff\xc1\x34\x66\xa5\xe4\x43\xa6\xa8\xfe\x40\x4b\xc4\x4b\xc2\x49\x3d\xae\xdf\x93\x81\x70\x13\x3f\xfd\x41\x5e\x4b\x21\x17\xa0\x3d\xe5\x6a\xbe\x03\x10\x4b\xef\x5b\x77\x7e\x76\xc6\x10\x4f\x8c\x5d\x9c\x59\xc0\x82\xc6\x0a\xce\x96\x7e\xdd\x9c\xe1\x08\x37\x09\xff\x7e\xa4\xe5\xc6\x95\x1c\x57\x60\x0f\xe1\xd5\x01\xb3\x57\x2f\x5e\x09\xd0\x95\x09\x92\xeb\xd9\x85\x08\x23\xd5\x3c\x7a\xe1\xc2\xd1\x89\x56\xfa\xe5\x28\xc1\x7b\x0d\x56\xcd\xa3\xff\x26\x26\xb2\xa4\x41\xe0\x46\xec\xc5\x0b\x3b\x41\xc5\x79\xda\x5a\xe3\x4d\x65\x1a\x4c\xda\xc0\x62\x44\xc7\x2e\xe9\xce\xc1\xd8\xb9\x66\x4c\x93\x8d\x65\xe7\x97\xa0\x3d\x2f\x1e\x2f\x4d\x18\x84\xd4\x99\xf5\xeb\xb3\x6b\x69\xcf\x6c\xa7\xcf\x1c\x54\x16\xbc\x3b\xcb\x55\xb6\x81\xf4\x99\x19\xca\x0a\xd3\x10\xe2\x8f\xe3\x4a\x4e\x2a\xeb\xa7\x45\x4a\x43\xa2\xb9\xde\x75\x64\x68\x5a\xab\x74\xa5\x5a\xd9\x1c\xe8\xf3\xc6\x02\xc3\x38\xe6\xd8\x9d\xb0\x12\x8c\x69\x82\xb3\xd8\x44\x45\x69\x21\x93\xef\x2b\x63\x0d\xe3\xe0\x89\xc3\x09\x21\x51\x3f\x8c\x6c\x3e\x52\x74\x14\x51\xbf\x06\x8a\xe9\xfb\xab\xb8\x9f\xef\x2a\xfd\x9d\xdb\x38\x0f\xeb\xf3\xb5\x74\xd8\x9f\x2a\xb0\x40\xcc\xe7\xd5\xdf\x2d\xe5\x8d\x57\x66\x6c\x74\xa3\x34\x4c\xe8\xa7\x89\xbb\xae\xe2\xfc\x08\x49\xa5\xbf\x9b\x07\x68\x82\x7c\x35\x0d\x4c\xc2\x0f\xf8\xd1\x2d\x47\x91\x3d\x92\x87\xde\xae\x97\xca\x05\xab\x20\x4c\x89\x99\x9c\x95\x74\x3e\x96\xbc\xbb\xc2\x44\x63\x07\x51\xaf\xf6\xdb\x83\xae\xa1\x8e\xa8\xaa\x96\x70\x40\x4a\xde\x2b\xa9\x6b\x3c\x40\x0c\x62\x6e\x9d\x2b\x9b\x68\x2e\x9f\xfa\xbc\x91\x8b\x18\xcb\x8a\x4b\x32\x9a\x56\xb0\x11\x9d\x93\x8b\xa0\xd6\xa2\xb8\xfe\x35\x0e\x9a\x18\xff\xfe\x23\x38\x50\xed\x0b\xd4\xff\xa7\xa0\xda\xc9\xba\xb6\x4c\xbb\xd9\x0a\x8c\x14\x8c\xcc\x35\x35\x44\x52\x3a\x70\x14\xcc\xba\x9d\x1e\xfd\x9f\xd3\xa3\x08\xa5\xb1\x62\x7a\xc4\x92\xf5\x08\x77\x8a\x97\x67\x14\x15\x7e\xb0\x0e\x07\x53\x3c\x1f\xdd\xc9\x1a\x3c\x66\xac\xa2\xc4\x9e\xcb\x0a\xb6\xfc\x02\x47\xa7\x47\x83\x22\x78\xe9\xdc\x8d\xb1\x87\x64\x0f\xe0\xd5\xe6\xcf\x89\x11\x62\x42\x54\x0f\xc5\x23\x31\x3c\x2c\xd4\xf5\x3b\x07\x36\xed\xab\xa5\x54\x25\x94\xba\xf7\x6e\x03\xb0\x83\x11\x50\xfd\x77\x51\x8b\xfe\x2f\xff\xf2\xed\x74\xd8\x67\x07\xe9\xe5\xd0\x4d\xf2\xe7\xec\xf9\xc8\xde\x78\xae\xd2\xb7\x89\xe6\xfa\xd5\xe5\x0e\x29\x88\xb7\x99\xe9\xa8\x00\x24\xe0\xe1\x40\x20\x30\x87\x27\x87\x04\x76\xe0\xba\x3f\xef\x7e\xb2\xbf\xf3\xf6\xfe\xdb\x12\x70\x7f\xdb\x37\xd7\x15\x6d\xbb\xf6\x40\xb1\xdb\xf5\x74\xcb\x55\xa2\xf3\xbf\x7f\x0c\x55\xd6\xb5\xe2\x94\xbe\x48\x01\x3c\x55\x50\xf2\x6b\x6c\xfa\x55\x2b\x7d\x4f\xed\xe6\x9f\xf0\xdf\xe3\x0f\xd7\xeb\x31\x69\x50\x3f\xff\xf0\xd3\xab\xc8\xb0\xf1\x9e\xf6\x3b\xb5\xf0\x92\x39\x7f\xea\xc3\xf5\xfa\xe1\x42\xad\x3f\xfc\xf4\x6a\x90\x37\xe0\x87\x96\x24\x7e\x12\x54\x77\xdb\xe9\xad\x3e\x74\x8f\xc0\xa4\xa9\x61\xd6\x2d\xee\x04\xe3\x22\xe9\xba\x16\xd6\xc6\x03\x0d\x5b\x70\x25\x14\xc7\x23\xf9\x97\x81\x92\x09\x6a\xe9\xbd\xac\x96\x90\xaa\xa9\x44\xc4\xd8\x48\xc0\x64\x31\x19\x71\x89\x0d\x36\xa9\x98\x1b\x7b\x23\x6d\x4d\xf7\xb1\x07\xdc\xd8\x75\xae\x05\x7d\x37\xae\xde\xd1\x77\x74\x0a\x5e\xda\x05\x78\x3c\x1e\xb5\x5e\x43\x8d\x9a\xf3\xa6\xf4\x4b\x52\x8f\x87\x46\x3a\x17\x4e\xb7\x31\x92\x64\x60\x66\x5a\x2a\xc8\xdf\x60\xbb\x1d\xb0\x76\xd0\x51\xbc\x63\x87\x28\x0e\xe1\x33\xcb\x99\x9f\x4c\x2c\x6a\xd8\x6e\xa1\x31\x0b\xb7\xc7\x81\xbc\x85\x0a\x96\x6b\x87\xf0\x30\x2b\xb5\x43\xce\x1c\x65\xa1\xf4\x51\x16\x1a\xbc\xd4\xac\xa0\x60\x72\x27\xdc\x34\x1b\xd1\xc8\x4e\xe3\x71\x05\x30\x87\x00\x9d\x9e\xff\xf6\xe9\xd3\xdf\xf6\x40\xfa\x54\x4e\x12\xa6\xcf\x63\xb3\xc2\x2b\x9d\x0b\x5a\xfe\x01\x9b\xbb\x28\x78\xd1\x4f\xaf\xf2\x50\x71\xdc\x39\x10\xd3\x97\x4a\x77\x1f\xa7\xc5\xaf\xd9\xf6\x36\x36\x87\x66\x57\x72\x0d\x0d\xf8\x07\xcc\x3d\x8d\x2b\x64\x0e\x72\x57\xa2\xc6\x8f\x71\x84\xd2\xd1\xed\xf4\x68\x93\x33\x3e\xa1\x1c\x80\xb1\x40\xa9\x0e\x2c\x30\xea\x8c\x94\x70\xa7\xfc\x12\x94\x4d\xfe\xcf\x9e\x68\x88\xd1\xf8\xec\x2b\x4d\x6e\x8e\x5e\x34\xeb\x20\x45\xf2\xd9\x9e\xda\x26\x06\x86\xda\x50\xe2\x45\x32\xb2\xce\x79\x34\xb1\x46\xa3\x38\xb2\x4c\x70\x50\x3f\x94\x73\x22\x50\xdb\x8f\x2f\x9e\x5f\xec\x70\x54\xb3\xc2\x40\x58\x1e\x24\x3f\xfa\x25\x8d\x0a\x7f\x77\x95\x6c\x38\x2d\x4d\xe0\x7c\xbd\xa9\x58\x01\x5b\x4b\xdd\xe1\x49\x25\x11\x58\x33\x0b\x47\x2d\x93\x6b\xb2\xdc\x34\xea\x98\xe5\xda\x61\x1c\x4e\x5e\x8c\xbd\x56\x12\xd3\xc7\x83\x2a\xcd\x6c\x31\x9e\xf6\x04\xab\x5a\x95\x0e\xa8\x62\xc9\xaf\x63\x6d\x4e\xb8\xe3\x08\x78\x49\xec\x89\x4c\x70\x5f\xbe\x87\x91\x11\xd1\x53\x18\xfb\xd1\xc2\xfc\x3c\xde\xcc\xb3\xf8\x8f\x71\xd0\xf6\x26\xb2\x36\xd5\x3f\xf1\xaf\xc6\xe1\xb8\xf0\xd7\x3f\xc7\xcc\x58\x9c\x8f\x6d\xa2\x21\xb8\xa4\x2e\x2e\x3a\x55\xc3\x2f\x68\x4a\x6c\x4c\x87\x19\xe0\xa8\x30\x60\xb6\x59\xfe\x36\x65\xff\xc7\xca\x4c\x9c\x79\x0d\x5e\xd6\xd2\xcb\xbb\x81\xad\xe1\x7a\x07\xac\x35\x5c\x1f\x06\x6a\x0d\xd7\xd0\x98\x16\x9d\x6b\x11\xe2\x01\x05\xa9\x5e\xd2\x47\x19\x73\xf8\xcf\xc2\x79\x62\xb6\x62\xbe\x1b\x03\x3d\x93\xea\xd7\x32\x24\x98\xb8\x9d\xee\x45\x52\x68\x94\x0e\x67\xc5\xa8\x23\xf2\xcf\x85\xca\x89\x98\x7b\x7e\xb1\x35\x34\xe3\x4a\x92\x0f\x62\xbb\x21\xe5\xde\xe0\xf4\x35\x58\x9f\x88\x64\xd0\xda\x11\x27\x7d\x26\x1d\x88\x63\x8d\xb1\x30\x31\x83\x4a\x86\x7b\x52\x36\xf7\xe4\x30\x4f\x39\x36\x7c\xb2\x82\x99\x9c\x21\x44\x04\x79\xd4\x5f\x1a\xa5\xe1\x64\x22\x9e\xef\xce\xfe\x49\x96\xb9\xac\x56\xe3\x9c\xd6\x3f\x8e\xbd\xa2\xef\xd6\xd6\x80\x74\x22\xd7\x42\x35\xfe\xd7\xd4\x62\x7a\xae\xa0\x49\x89\x99\xde\xb4\xa2\x09\xe4\x5a\x14\x0e\xa0\x97\x4a\xa7\x0c\x7a\xde\x19\xf9\xa2\xd5\x1c\xeb\x87\x50\x2d\x8d\xce\x2c\x3e\x1c\x23\x2c\x54\x66\xa1\xd5\xdf\xb1\x94\x06\x8b\xde\x03\xd3\x43\x92\x8b\x99\x75\x7d\x73\xb8\x69\x94\x5e\x8c\xd1\x98\xbf\xee\x39\xe0\xf6\x44\x3a\x2f\xf9\x4b\x71\xcc\x71\xe8\x13\x3c\x9b\x25\x54\x2b\xaa\x2f\x65\x0a\x09\xbb\x3b\x8e\xbd\x0c\xbf\x7e\x1a\xa3\xd6\x7d\xf7\x9f\x31\x4d\x6d\x6e\xf4\xc1\xb1\xe8\x70\x83\x6f\xf0\x74\xa9\x7c\x2c\xd6\x0c\x90\x9f\xdd\xf9\x58\x4d\x14\x61\xb0\xc0\x05\xa4\xe1\xa8\x03\x22\xa2\x1c\x14\xbd\x22\x01\x2c\x1a\xc2\x82\xf0\x5e\xac\xa0\x6e\x20\x9e\xf4\x18\xfd\x9b\x77\x03\x88\x37\x8e\x64\x85\x72\xe9\xe2\xc6\x50\x53\x3c\x24\x94\x43\x7d\x08\x02\x1a\xfa\x16\x44\xae\xd3\x2d\xab\x92\x88\x80\x4a\x30\xd7\x4a\xdf\x17\xca\x18\xad\xbe\x63\x62\xf9\xf1\xde\x13\x73\xca\xfd\xed\x13\x47\x1e\xd2\xd7\xa9\xf7\x27\x3e\xca\xba\x36\xda\x9d\x05\x01\x30\x09\xff\xef\x3d\x8d\xdf\xd7\x95\x5b\x25\xde\x16\x79\x95\xac\x2a\x83\x56\x57\x74\xf3\xe2\x41\x90\xd4\x9d\x88\x17\x05\xd5\x32\xfe\xd1\x93\x1c\x05\xd7\x34\x80\x38\xe5\x3b\x8b\x45\xe5\xae\x35\x3a\x4c\xc7\xb3\x61\x9a\x2d\xd6\xcb\x0e\x34\x8d\xf4\x98\x80\x10\x52\xac\x60\x73\x46\x17\x78\x2d\xdb\xd8\xd1\x2f\xb2\xba\x69\x5c\x0d\x83\xfd\xb1\x96\x3b\x5d\x25\xb2\x23\x26\x17\xd1\x35\x20\x63\x4f\x98\x69\xdf\x4f\x32\x26\x2f\x7d\xaa\x8e\x8c\x75\xf4\xe1\xbe\xa4\xd9\x58\xc5\x14\x81\x36\x83\xb9\x40\x15\x22\x8d\xd2\xab\x18\x9f\x0d\x08\x01\xed\xed\x46\x98\x39\x79\x02\xc3\xac\xc8\x6c\xd2\x16\x4b\xef\x4c\xea\x1d\x99\x03\x55\x83\x12\x9d\x43\x74\xc2\xa4\x04\x6e\xab\x7d\xfd\x70\xd8\xfe\xf8\x6d\xf4\xd5\xa0\x53\x70\x58\xf4\x73\xb9\xd5\x0e\x84\xa7\x65\x18\x47\x7b\x1a\x81\x14\x09\x0b\xb9\x78\x87\x74\xc8\xb7\xbc\x84\xd4\xfb\x67\x8f\x40\x43\x21\x8c\xc7\xcc\x8b\xc4\x71\xc1\x98\xc6\xde\x8c\xff\x0e\xd6\x9c\x50\xd5\xd3\xac\xf3\xdc\x47\x7e\x0e\xd2\x53\x98\xd5\x02\xb5\xef\xb4\xd0\xc0\x75\x50\xbc\x92\xf7\x93\x44\x20\x16\x10\x1f\xbb\x93\x20\xf2\xf0\x69\x00\x8d\x71\xf7\xe4\xc5\x8c\x0a\x19\x47\xdd\x1f\x85\x96\x13\xb1\x83\x86\xee\xfd\xc2\xd2\xbe\xa0\x9d\x62\x2a\xf6\x87\x24\xee\x4c\x55\xc5\x81\x2f\x83\x17\xd3\x65\x2b\x27\xc5\xc7\x13\xa6\xe4\x49\x0d\xd7\xa5\xd7\x7c\x75\xcb\x67\xe5\x62\x27\x93\xb7\x51\xd3\x2d\xc1\xa9\x4d\xd5\xa5\x46\x02\x45\x9c\x6c\x8d\x55\xb0\xd9\x22\xd8\x87\x8d\x35\x78\x1b\x3b\x02\x7d\x2e\x3a\x68\xae\x7d\xf8\x28\x7a\x0d\xa4\xe0\x3a\x15\x87\x5a\x31\xad\xda\x6e\xca\x3f\xde\x73\xcf\x69\xb7\x59\xc7\xbc\x6b\xcf\xe4\xed\xba\xcb\x7b\xff\x0e\xd8\x45\x85\xfc\x01\x9b\x47\xa4\x0d\xb0\x9e\x65\x2c\xb6\x3d\x6e\xc1\x56\x01\x9c\x05\x86\x30\x5a\x40\x9e\x2e\x4c\xd9\xad\x62\x1b\x4d\x27\xb9\x93\xc6\x95\xa9\x0f\xdc\x68\x14\x2b\xb7\x1c\x6e\x10\xe3\x28\x35\x0e\x89\x4e\xac\xb7\x04\xf8\x55\x7a\x8c\x26\x3b\xd3\x23\x03\x94\x1e\x2b\xca\xb1\x0e\x2e\x03\x33\xf4\xe2\x52\x12\xd6\xe9\x69\x60\x41\xa7\xa7\x85\x22\x3c\x12\x6b\x90\xcc\x49\xa5\x1f\x3a\x6b\x94\x23\x75\x26\x0a\x3a\x56\x64\x44\x98\x86\xd8\x93\x36\xbe\x30\xd3\x4b\xd3\x38\x37\x8a\x46\x7f\xcf\x2e\x5c\xa6\x59\x77\x91\xce\x5e\x5c\xca\x8f\x87\xe1\xf2\x42\x8b\xae\x0d\xb2\x91\xb2\x74\x92\xa7\x70\x07\x5a\x59\xa2\x46\x9c\x2a\x92\x7a\x4d\x03\x4d\x71\x7b\x87\x38\x8d\x04\xb1\x94\x4e\x04\xde\x17\x70\x53\xc9\x96\x15\x79\x9c\x97\x08\xcf\xe5\x52\x6b\xe7\x65\xd3\xd0\x70\x44\x48\x3c\xae\x43\xee\xd2\x3e\x84\x04\xa3\xc2\x74\x7e\x5c\x97\x6e\xa4\xdb\xf9\x46\xb4\x1d\xbd\x11\x0b\x2b\x6b\x72\x89\xb8\xa5\x9a\x63\x91\xe1\x1c\xd5\x13\x4e\xcb\x97\x1e\x9c\x17\x6f\xe1\x5a\xb9\x98\xf8\xe4\xc0\x97\x2f\x03\xf0\xfa\xa9\x87\xc0\x64\x5f\xc9\x05\x0e\x8e\x71\xfc\x5e\x6f\x07\x29\xfe\x68\x1a\x99\xd4\x77\xec\x71\x31\x79\xde\xc5\x6e\xc8\xb4\x8d\xa0\x6e\x52\xd3\x19\x0a\x14\xda\x70\xac\x5c\xfb\xce\x16\x88\x68\x2d\x54\x08\xe8\x67\x3a\xf2\xf6\xf7\xf5\x18\xe8\x15\xa9\xbf\x07\x83\x1e\xa0\x50\xa4\xa7\x2c\x4d\x53\x9f\x9f\xf6\x74\x07\x8c\xc1\xa4\xca\x5f\x9e\x89\x35\xa5\x53\x94\xa3\xb9\x4b\x88\xb8\xb5\x4d\x08\x4a\x7e\xe2\xcd\xa9\xb5\xc7\x81\x0d\x3f\x92\xd2\xba\xd5\xf6\x63\xa8\xe0\x7d\x19\xc5\x8e\x15\xba\x3e\x7e\x39\x21\xc1\x45\xdf\x3e\x3d\x8b\x10\x87\xa4\x3a\x31\x84\x15\xfb\x88\x90\x67\x15\xdb\x2a\x25\x67\x65\xbe\xaf\x05\xa7\x0b\x4b\xcf\xbb\xa6\x49\x93\xf5\xdd\x22\xbc\x7f\x9a\x0f\xcb\x68\x49\xc5\xba\x78\xf5\xe2\xe5\x5f\x7f\x7c\x7d\xf1\xfe\xf2\xa7\x17\x7f\x7d\xf6\xe6\xf5\x1f\x2e\xff\xf8\xe7\xb7\x17\xef\x2f\xdf\xbc\x0e\x9f\xfc\xf0\xee\xcd\xeb\x64\x53\xe4\xa7\x4a\x4a\x3e\x96\xda\x18\x91\xca\x1d\x74\x68\x74\x4e\xf8\x08\x4f\x1f\x8e\xad\x30\x1c\x9d\xfc\x24\xbb\x2e\x09\xce\x32\x75\xb6\x97\x36\xbb\x8b\x86\x52\x57\xa8\xc7\xe0\x5f\xdf\xf6\x7d\xdf\xa1\xec\xf4\x01\x8a\xbe\xf6\xe2\x9c\xd7\x6d\x03\x7e\xeb\xc0\xfb\xa7\x57\x02\xb0\x94\x5a\x43\x33\x2e\x69\xed\xee\x28\xd0\x4b\x76\xa4\xf3\x68\x8e\xaa\x4a\x17\x4b\x52\xcd\xbc\x1f\xef\xa0\x63\x0d\xc0\xb3\x15\x18\x6f\x34\xf6\x9b\x8a\xd3\xb0\x3f\xde\x58\xa2\x15\x22\xaf\x3f\xbf\xbd\x74\x3b\x01\x56\x7a\xf5\xd9\xe0\xd6\xe0\xbc\xd2\xc9\x57\xf8\x50\x30\x47\xeb\xe4\x57\xc1\xf2\xce\x75\x3f\x01\x59\x71\xf0\x17\xc1\x56\xca\x32\x39\x08\x5d\xd7\xf0\xc9\xb8\xc2\xb1\xf8\xbd\xcb\x9d\x5c\xb6\xba\x45\xcc\x40\xb8\x6e\x16\x86\xcf\xf0\x22\x05\xc0\xb3\xf0\xa2\x3e\x8b\x0c\x78\x31\xdf\x36\xd4\xe2\x98\x03\x19\x32\xfb\x34\x66\xd6\xac\xc0\xe6\xc7\x2d\xa2\xf6\x14\x64\xd6\x11\x33\xaf\xa3\x93\x1d\xfb\xfd\x94\x33\x3a\x68\xb7\xad\x35\x75\x57\xc1\x2d\xa7\xf3\x89\x9b\xec\xed\x62\xae\x1a\x0f\x96\x8f\x6d\x1c\x69\xf6\x60\x17\x3e\x0d\xe7\xc7\xc1\x10\xa0\x41\x8f\x9e\x25\xc8\x1a\xac\x38\xaa\x60\xcc\xa2\x79\xa9\x9c\x37\x76\x73\x14\x9f\x03\x79\xa7\x74\xc5\x8c\x97\x3f\x0e\x6a\xe9\x0c\x40\x63\xbe\xc3\x35\x49\x3a\x0d\x37\x60\xcb\x17\xb4\x98\x77\x8e\x0a\x10\x92\x82\xb0\xa7\x68\x36\x75\xd6\x52\x7a\x35\x9e\x29\x5d\x47\x66\x7d\xab\x76\x45\xee\x1c\xfe\x7c\x57\x49\x89\xc4\x09\x31\xa0\x56\xb8\x57\x94\x5e\x7d\x5f\x2c\x21\xb2\x9f\xfb\x3d\xca\x98\x42\x24\x24\x99\xd8\x9b\x18\xad\x4a\x47\xb3\x2f\x1a\xc0\x45\x26\x65\x45\x4a\xb4\x7a\x77\x08\xd7\x3b\x27\x3a\x86\x8f\x15\xb4\xbb\x47\x44\xcb\x97\x7b\x10\x85\x05\x0a\xa7\x14\xee\xe1\xe4\x13\x63\x3e\x45\xc8\x27\x25\x76\xa2\x5b\x2b\xca\xe1\x42\xf2\x67\xa7\x1d\xbf\x3f\xf7\x80\x01\xdc\x97\xfc\xc2\xdd\x2d\xf9\x46\x3b\x9e\xeb\x2a\x00\x13\xc9\xc7\x77\x1c\x4b\x2f\x2a\xd3\x18\xf2\x6a\x92\xfc\x3e\x21\x05\x29\x3e\xa6\x37\x93\xd5\x0a\x82\x7a\xe8\x72\x2b\x84\xd9\x46\xfc\xaf\x4e\xda\x55\xe7\xc8\xd7\x76\x83\x7e\xb6\xa1\x16\x98\x8c\x2c\x6a\x62\x1c\x73\xbe\xfe\x46\x23\x27\xca\x9c\x61\x64\xd1\x9d\xf1\x52\x8f\x42\xa1\x6a\x8c\x3d\x20\x10\xd7\x18\x1b\xfb\x52\x36\x66\x21\x4c\xe7\x5b\x2c\x52\x4c\xdc\x0c\x31\x7d\x80\x46\xf6\xd2\x2c\x9c\x58\x83\xc3\x5c\xdb\x34\x2a\x11\x1c\x5c\xc3\x21\x09\x93\x17\xf5\x87\x60\x13\xfa\xe2\x58\xc9\x93\x73\x5c\xb6\xde\xb9\x7c\xfd\x87\x37\x65\x1a\xc4\x07\x77\x40\xd0\xf1\x0d\x6e\x2d\x4e\xed\xa2\x2e\x38\x98\x66\xdc\x5a\xf0\x7e\x83\x99\xea\x77\x97\x8f\xf0\x1d\x3c\xa2\x41\x94\x64\xa5\xf4\xe2\x28\x06\x5c\x51\xd9\x0c\xab\x7d\x95\x3d\x16\xce\x0f\xda\xa9\x7c\xe1\xb2\x8e\x57\xb8\x42\xdf\x75\xbe\x65\x60\x0c\x19\xee\x56\x5e\x43\xc0\xba\x0d\x47\x59\x38\xc5\xfb\xad\xb6\x6a\x43\xa7\x83\x02\x06\xbb\x7e\x25\x9f\x40\xb4\x4f\x4f\x69\xb7\xa7\x38\x23\x5b\xb3\xe8\xd6\x36\x1a\xf3\x42\x83\x7e\x81\x7e\x10\x5d\x01\x15\x07\x3e\x29\x3b\xd9\xf6\xcd\xc4\x1b\x32\xa2\x4a\x47\x3f\x4d\x9f\x95\x2a\xac\x04\xc0\x75\x28\x25\x4f\x4c\x83\xb6\x71\x7c\x44\xdf\x9d\x37\xa6\x5a\xe1\x29\x78\x68\xc2\xee\xd7\xe7\x33\xe3\xdd\xd1\xc9\x64\x32\x99\x4e\xc4\xeb\x37\xef\x5f\x50\x17\x51\xbc\x61\x8c\xbf\xba\x76\x24\xed\x25\xf6\xba\xc4\x78\x2c\x76\xf2\xde\x2e\x48\x4c\x75\x93\x54\x23\x91\x7a\x00\x7f\xc5\x5e\x1d\x0b\xb2\x3e\xbb\xb1\x2a\x59\x25\x6b\xd9\x3a\x6e\x49\x2a\x6b\x6a\x0e\xc7\x38\xb0\x10\x2e\x38\x44\x97\x06\x29\x1d\xf9\x99\xb0\x1c\x6b\x11\x69\x35\xbf\x94\x3a\xeb\x55\x5b\x81\x91\x9e\x5d\xfc\x08\x0a\x6e\xbe\x7c\xda\x43\xaf\x38\xac\x6a\xba\x1a\xc6\x75\xa0\x03\xe9\xc3\x3f\x7a\xed\x1b\xef\x4c\x70\xd6\xb4\x0b\xaa\x3b\x88\x66\xf6\xa8\x1f\x6c\x93\x5a\x36\x9b\xbf\xb3\x37\x9e\x2d\x95\xca\xd4\x90\x83\xbf\xb2\xae\xfb\xbd\x18\x53\x93\x55\xd4\x40\x08\xb6\x6c\x7f\x4c\xb0\x77\x73\x71\x0d\xa6\x5b\x74\x4d\xfd\xe0\xb3\x3f\x4e\x8b\x29\xc6\x56\xf9\x2f\x08\xeb\xb0\xb6\x33\x97\x3e\xf2\x03\xc7\x25\x48\xb7\xab\x47\xdb\x16\xfc\x5a\xb6\x07\x70\xf9\x27\xaf\x39\x90\xca\xa9\xa3\x34\xb0\x68\x72\x57\x90\x56\x50\x6d\xa3\x7c\xaa\x56\xf9\x3d\x99\xec\x2d\x3d\xfa\x9f\x05\x6d\xe3\xf3\x70\xff\x3a\x0e\xdf\x1e\xed\x7d\x15\xe3\x28\x72\x32\xfc\xfa\x68\xf0\x1c\x46\xf1\xa7\x03\xf6\xb2\x73\x2b\x67\x0d\x48\x57\x04\xfd\x6f\xdf\x19\x6f\xa5\xbf\xbf\xdb\x77\xb6\x0b\x60\x1f\xdb\x03\xdd\x91\x4a\xbb\x69\x11\xe0\x1d\x8c\x5d\x14\x6f\xc1\x86\x75\x30\x70\x79\x44\x81\xa5\x57\xb2\x3d\x0a\x17\xfc\xe8\x65\xd8\x1a\x19\x6e\xe1\xff\x7a\xf0\xd2\xdf\x7a\xfd\x36\xe4\x0c\x9a\xf1\x0a\x0e\xe9\x5b\xfd\x12\x0b\x28\x77\xe2\x4a\xd5\xa0\xbd\x9a\x6f\xa8\xe7\x30\xbe\x44\x60\xb4\x87\x6c\x41\x20\xf2\x76\x81\x44\xad\xc7\xb9\x0f\xb9\xb1\x8b\xb3\x02\xa5\x3b\x20\x45\x87\xfd\xc1\xb0\x16\xee\xfd\xfb\x42\xbc\xf7\xd0\x87\x62\x25\x40\x97\x35\x77\xd3\x82\x96\xad\x7a\xb8\x3c\xdf\xf0\xc7\x8b\xab\x4b\xf1\xfc\xdd\xcb\xdb\x5b\xcc\x62\x36\x52\x6a\xc5\x59\x3e\x4e\xf2\x55\xb2\xf3\x65\x9a\x2e\xc8\xd0\x61\x4d\x74\xd9\x38\x36\x18\x46\x0f\xd8\x65\xee\xcd\x4d\x7e\x96\x17\xb4\xe3\x28\xa9\xa4\xf4\xdc\xd8\x3f\x2f\xeb\x37\x33\x68\x4c\x4e\x22\x19\x5a\x72\x33\xc0\xd8\x32\x8f\xc2\x2c\x0b\x2b\xb5\x9b\xa3\x0b\x5b\x6b\xe3\xf9\xb5\x0f\x4c\x3b\xeb\xbd\xc1\x5f\x9e\xab\x61\xcf\x35\xbf\x8d\x4a\x96\x61\x02\xe1\x11\x98\x18\x64\x06\x8f\x8b\x1d\x1f\xe8\xb5\x79\x9f\x65\x4d\x89\x2e\x2a\x4f\x8a\xa8\xb4\xbd\xf2\x05\x5e\xeb\x5e\x2f\xf7\x17\xcb\xf0\x29\x6c\xaf\x90\xd2\xe3\xea\xd9\x03\x1a\xc3\x57\xcf\xbf\xbf\x43\x1f\xbf\x32\xf5\x73\xe5\x6c\x87\x83\xbe\xef\xea\x05\xf8\x44\x0b\x74\x9d\x38\xe8\x78\xf9\xf8\xda\x09\xaf\x95\x1e\xcb\x6b\xa9\x30\x39\xf1\x10\x01\xd5\x0b\xcc\x22\xeb\xdc\xb5\x7b\xbc\xbe\x18\x41\x74\x9e\x79\x6f\x7f\x95\xf8\xa6\x94\xd4\x02\xae\x55\xc5\xe1\xc8\x41\x12\xb8\xd4\x42\xce\x9c\x69\x3a\x9f\x17\xb5\xd4\x7a\x9f\x53\x06\x26\x6f\xc8\x62\x89\x93\x9a\xb9\x98\xf6\xb6\xc4\xc5\xa2\x6b\xf9\x71\xdc\xe9\xe2\xb7\xbc\x50\x4a\xef\x1b\x06\xae\x8b\x8f\xbf\x30\x56\xa2\x2b\x2c\x2f\x40\xa8\x88\x68\xf9\x3c\x84\x14\x75\x8a\x5f\xa7\x22\xd8\x6d\xa4\x04\x5d\xb3\x71\x26\x76\x3b\x38\x49\x78\x24\x0c\x0e\xb1\x45\x38\xec\x4d\x11\x3d\xd1\x5b\x78\x4c\xb7\x96\xef\xeb\xc3\xc9\x8d\x41\x85\x0b\x56\xbd\xcc\x82\x6a\xc7\x89\xd3\x01\xdb\x85\x73\x4b\x3a\xa7\x16\x7a\xf0\x18\x17\x6e\x23\x4f\x64\x06\x7f\x9e\x88\x4b\x2d\x30\x5f\xd9\x97\x0b\x2a\x57\x24\xff\xa6\x4c\x6d\x44\x2a\x66\xbb\x44\xab\x92\xd3\xf1\x65\x72\x59\xc6\x19\x26\x02\xdd\xa2\x9c\x53\x86\xc1\x43\x36\x64\x49\x8a\xcf\xbb\x46\xf0\xb3\xc0\xf0\xd1\x3b\x7a\x74\x9e\xed\x5f\xb0\xf0\xc4\x09\x6d\xd2\x1b\x37\xec\x50\x13\x92\x5f\x82\xd9\xf1\xe2\x7c\x0f\x7a\x0a\x34\x1b\xdd\xc3\x2e\xa5\x08\x44\x38\x1d\xf8\xa0\x39\x38\x7c\x16\x67\x24\x1c\x3b\xad\x69\xe9\x40\xa2\xeb\x19\xa0\x75\x32\x78\xb8\x58\x58\x58\x28\xe7\xed\xe6\x31\x34\xf8\xa1\xd3\x19\x97\xd5\x67\x77\xf4\xde\xd9\x3a\xcf\x63\x58\xb7\x7e\x73\x92\x71\x9b\x3c\xcc\x3b\x68\xa5\x5c\x7b\xd1\x98\x59\x2f\xd1\x7b\xf7\x9a\x97\xba\xe6\xea\x5c\x35\xef\x4f\x9b\x13\x8c\xa2\xae\x43\x53\x62\x71\x13\x19\x3c\xd2\x15\x6c\x91\xfe\x9a\x2d\xe0\xc4\x27\xc2\x95\xbc\xbf\x83\x7b\xab\x11\x51\x0d\x1e\xaa\xe2\xe5\xb4\xb2\xe7\xb2\x9a\xef\xb8\x02\x7d\x06\x12\x37\x71\xac\xb2\xb6\x5e\xb4\x4e\x4e\x94\x8a\x2e\xaa\xa2\x11\x72\x8b\x09\xeb\x0f\xa5\x1b\xe0\xf3\x7c\x3d\xdd\x60\x99\xdf\x93\xea\xb9\x31\xb6\x44\xbf\xe0\x57\x29\x64\x7c\x23\x71\x09\x62\x7a\x65\xea\x77\x2d\x54\xef\x61\x1d\x20\x06\x4c\x98\xe9\xaa\x94\xe4\x9c\xb3\x1c\xca\xe9\xa6\x93\xc0\x1a\x26\xad\xa9\xd3\x38\xd2\x3a\x14\x34\xf5\x28\x27\x59\x94\x63\x8a\xa6\x36\x94\x3c\xc5\x23\x63\x1d\xac\xf3\x56\x7a\x58\xa8\x4a\xac\xc1\x2e\xb0\xe5\x49\xb5\x8c\x15\x59\x83\x78\xcd\xd6\xb3\x88\xf9\xce\x23\x5b\x2a\xb3\x5e\xe3\xe3\x28\x30\x0a\xa6\x3c\xae\x95\x78\x4b\xff\xe1\xf4\xc1\x0b\xeb\xfb\x8d\x8f\xd6\x9a\x35\xf8\x25\x74\xf7\x6e\xb2\x76\x1f\xc7\xec\x55\x5a\x25\x96\xa3\x95\x7d\x95\xf2\x5f\xc7\x95\x59\xb7\xd2\x63\xd7\xdb\xe8\xfc\x21\xbc\x5d\x7a\x12\xa9\x44\xb5\x61\x54\x38\xee\x57\x46\x2b\x6f\xec\x34\x29\x8c\xb9\x88\x99\x6e\x49\x6c\xc2\xc5\x72\xb4\xb2\xb2\x1d\x7a\x57\x63\x74\xa4\x74\xb1\x96\x00\xc7\x3b\x4d\x11\x17\x4a\x90\xe4\xcc\x24\x6e\x3b\x46\xc3\x5e\xa9\xca\x9a\x2b\xc2\x17\x4e\xf9\x8a\x3e\x9d\x88\x7f\xbb\x78\xfb\xfa\xf2\xf5\x1f\x89\xe8\xc9\x6c\x2c\x1e\xd6\xda\xb5\x8d\xfc\x88\x25\x86\x3d\x39\x28\x53\x54\x0f\x54\xc6\x82\x71\x67\xf9\xf4\xc6\x11\xcc\x9f\xaf\xca\x13\xc5\xf6\x09\xf8\xfb\x5f\xa2\xf8\xca\xe5\x18\xb9\x90\x80\xac\x03\xce\xcb\x83\x7a\x22\xfe\x62\x3a\x44\x1a\x66\xc7\xb6\xa6\x1e\xaf\x19\xc4\x28\x7b\xb9\xe3\x49\x12\x7f\x5b\x27\x9c\x1e\x7d\x53\x7e\x69\x38\xf8\x50\x7c\xf4\xa6\xc4\x2a\x4e\xba\x35\x83\xda\xdd\xb0\xf8\x11\x78\x70\x0b\x84\x1d\xe2\x52\x25\xe5\x73\x0f\x25\x84\xf5\x22\xf7\x1e\x34\xd3\xdf\xb3\xe4\xfd\x4d\xc5\xdd\x2b\xd3\x34\xdb\x8d\x48\x7a\xf4\x90\xe3\xe4\x04\x54\x21\x3b\xba\xa6\xe1\x5a\x8d\x87\xb4\x2f\xbb\xa6\x11\xef\xb8\x76\x03\xc9\xc6\x51\x7c\x3a\x2c\x1f\x8b\x3a\xd8\x05\xd1\x9a\xba\xac\x26\xeb\x3f\x94\x8a\x51\x0a\x6f\x15\x5c\x0f\xd9\x30\xa9\x5e\xe4\xd4\xd1\xe9\x95\xc2\xa4\x8b\x11\x5f\x28\x97\x2b\x5e\x0a\xcd\x05\x4e\xa9\xe4\xd6\x58\x7c\x6b\x15\xd5\xde\x8d\xe9\x9e\x14\xa9\x79\xc4\x9a\xca\xaa\x13\x7a\x29\x2b\x2d\x8a\xd3\x66\xc8\x22\x08\x71\x83\xd3\x42\x48\x5d\x31\xc2\xa7\xa4\x43\xd3\x83\x92\x04\x5f\xa1\xb5\x07\xb0\x71\x52\xdc\xe4\x76\x97\xca\xed\x0e\x95\x9b\xc0\x19\x92\x01\xff\x49\xe0\x22\x93\xc6\xd2\x3d\xd7\xad\xa3\x37\x6a\x88\x57\xc5\xe9\x9f\xad\xc5\x90\x58\xac\xc5\xa5\x0b\x95\x36\xde\x7f\x80\x76\x07\x34\x61\x83\xe8\xa4\xc3\xfd\x8d\x08\x7c\xa9\xd3\x55\x0f\x17\x9a\xce\x3f\x46\x4a\xfe\xc1\x79\x0b\x9d\xe1\xa1\x2e\xfa\x21\x69\x62\x19\x17\x57\x3d\x94\x6f\x66\x5c\xce\x45\x03\x73\x2f\x50\xe1\x26\x48\x86\x01\x93\x18\x75\x90\x2b\xd0\x59\x11\xdd\x49\x72\xf9\x7c\x7a\xb6\x52\x2f\x0e\x15\xce\x63\x1c\x40\x03\x1b\x83\x51\x07\xb6\xd8\xd1\xe9\x41\xdf\xa1\xd6\xcd\xdd\x57\x11\x9d\x75\x62\x39\x23\xda\x0f\xd7\x26\xc5\xac\x9e\xb4\x64\x12\xc4\xdc\x90\xac\x84\x6c\x1a\x5f\x12\x12\xd6\x84\x63\xd4\xfd\x38\x17\x66\xb2\xb5\xb2\x82\x1c\x91\xb9\x23\x32\xfa\x99\xf9\xd8\x83\xde\x84\xc9\x5c\x49\xf8\xde\x62\x78\xd9\x49\x41\x12\x35\x6c\x76\xd3\x82\x98\xf6\x7b\xdc\xd5\xa6\x5a\x81\xa5\xe9\x3f\x38\xa3\x0b\x3e\xce\xa9\x20\x0f\xe3\x68\x40\xed\x90\xd3\x54\xb6\x55\x43\x5f\xfc\x31\x36\xcc\xe0\x30\xf1\xee\x46\xba\x1c\xca\x16\xcf\xcc\xba\x55\x0d\x17\x43\x4a\xc1\xe9\x46\xa4\x3c\x87\x71\x23\xa1\x26\xd0\x0f\x28\xb6\xb2\x5a\x85\x83\x0f\xd8\xf9\x8e\x06\x70\x38\x51\x71\xe4\x3e\xbd\x2c\x89\x8c\x25\x16\xf1\x8f\x84\x74\xe2\x06\x9a\x26\xfc\xf7\x2f\x17\xaf\x5e\xa2\x3b\xe7\x7f\xbf\x7a\x39\x78\xb4\x9c\x15\x58\x66\x5f\xf1\x89\x72\x2f\x1a\x90\xce\x8b\x7f\xfe\xa3\xfa\x1e\x9f\x03\xc7\x87\x27\x58\x8b\xc5\xbb\xd9\x8b\x64\xf3\x46\x66\x9d\x6a\xea\x51\x74\xc1\xe0\x94\xec\xc2\xea\x91\xe7\x55\x90\x77\xac\x9f\xe1\x10\x9c\xaf\x57\x06\x54\xfc\x8d\x8d\x96\xb2\x27\x44\xcf\xfd\x1a\x4f\xff\x64\x54\xbc\x55\x0c\x1a\xfb\x10\x13\xd8\xd9\x09\xf9\x28\x94\xb4\xe2\xc0\xfb\xba\xd2\x21\xcf\x93\xf0\xad\xb8\xa2\x49\xde\x6f\x5a\xd8\xa3\x5b\x45\xfa\xe5\xe5\x28\xc5\x32\x77\x42\x9b\x4b\xe7\xc7\x1f\xa4\xa5\x6e\x68\x4c\x77\x3b\xde\x9f\xe0\xaf\x4e\x26\xd1\x63\x36\x33\x7e\x59\x0e\x47\x27\x62\x1c\x8f\x0f\xa1\x46\xd5\x63\x24\xfc\x8d\xe9\x31\xea\x1f\x55\xea\x5b\x99\x03\x3f\xf8\xe8\x30\x69\x9a\xa3\xd4\x7a\x23\xcd\xb8\x52\x3e\xf6\xe9\x6e\x2d\x54\x50\x83\xae\x40\x98\xd8\x0c\x39\x03\x12\x7d\x22\x3a\xb0\xcb\x8a\x1a\x82\x6f\x26\x01\x13\xf4\x2a\xb4\xd2\xf3\xa6\x0b\x83\x5d\x2a\x0e\x6f\xba\x92\x0f\xc7\xd6\x2b\x61\xc5\xfe\x6b\xcd\xa5\xe7\x10\xfb\xf2\x20\xb7\x28\x6a\x95\x23\x03\x9e\x2b\xeb\x7c\x0f\xe3\xc9\xeb\x41\x6e\xca\x14\xd0\xa7\x01\xbd\x5a\x2f\xc6\xaf\x36\x02\x3e\x2a\x87\x11\xbe\x55\xf4\x77\xae\x83\x21\x0f\x5b\xdd\xc1\xe8\xcb\x22\xc9\x10\xad\xf5\x03\xb4\xde\xdb\xf9\xe2\xdb\x30\xcb\xee\x9e\xe5\xfd\x10\x4a\x69\x53\xf6\xbd\x8e\xec\x36\xd8\x55\xb7\x45\xd6\x68\xd1\x5c\x32\x50\xd0\x0a\x36\x1c\xac\xf5\x4e\xf0\x53\xa6\x44\x20\x75\x59\x88\x93\xc4\x7f\x63\x2a\xd9\x60\x5f\x57\x92\x9e\x02\x7b\xbd\x70\xf0\x93\x2a\xa9\xa6\xb1\x5e\xdb\xcc\x3e\x40\xc5\x75\x23\xd8\x65\x25\xcc\xdf\xb9\xe4\x78\xcd\x25\xd6\x81\xbd\xd7\x5c\x81\x36\x4d\xf5\xde\xc7\xf0\x51\xae\xdb\x06\xce\xc5\xd4\x37\x6e\x5c\x80\x1e\x3f\x39\x21\x2d\x9e\x3b\x0e\x91\x83\xa8\xb7\x45\xcc\x3b\xa0\xc7\xa1\x12\x5c\x13\x71\x75\xfb\xba\xc8\xe8\x96\x6a\x11\x37\xdf\x5a\x65\xac\xc2\xae\x1b\x54\x92\x93\x5d\xd8\xa8\x65\x23\xce\xf3\x66\xb8\x41\xe3\x88\x6a\x2a\x7b\x5b\x58\xc1\x26\xae\x42\xc0\x86\x3b\xcc\x7f\x20\xbd\x5d\x6f\x7d\x18\xb5\x77\xc2\x63\x99\x2d\x25\xdb\xd6\x1a\x49\x6d\xc1\x1c\x64\xaf\x73\x38\x53\x6c\x6c\x5c\xb6\x23\x54\x2e\x66\x3c\x30\x1e\xdc\xb4\x97\x98\xa1\x6c\xa6\x03\xee\x81\x96\x6e\xe2\xdc\x04\x03\x0a\x59\x41\xc6\x5c\x89\x79\xac\x4f\xda\x7f\x4c\xa3\xad\x4d\x91\xa0\xa5\xef\xe5\x2d\x43\x8a\xf2\x83\x3d\x1f\x62\x5f\x66\xf4\xfd\x10\xa6\x49\x3a\xc6\x0e\x3a\xd9\x2f\x44\xdc\x46\x05\xbe\xbc\x60\x8d\x38\x3e\x01\xe0\xbb\x36\x75\x23\x78\xa4\x3d\x9b\x0f\xed\xb2\x7a\x48\x37\x7d\x24\xe7\x5e\xf0\xbb\x71\x63\x0f\x76\xcd\x07\x71\xa0\x15\xf2\xfe\xe5\x3b\x51\x8c\xc2\x11\x23\xd1\xa8\x15\x88\x29\xd4\x0b\x08\x47\xdc\x4a\xe7\xf8\x69\x03\x92\x87\x16\x40\x57\x76\xd3\xfa\xe9\xae\x3a\xd1\xec\xb6\xa6\x2b\xb7\x5d\x2f\x5a\xb4\xba\xdc\x53\x35\x3a\x20\xd1\x7b\x6c\x66\xd8\x97\x17\x3b\x61\xf6\xca\x7b\x6f\x85\x8f\xb7\xf2\x49\x50\x66\xb7\xca\x21\xc0\x96\xa6\x5f\xe4\xf1\xc5\x55\x25\x58\x07\x3b\xe2\xfa\xc1\x9c\x01\x8d\x6a\xf0\x51\x61\x7c\xfe\x7c\x16\xee\x6f\xf8\xd7\x2f\x47\xe4\x62\xa0\x8c\xa0\x54\x9d\xca\xd9\x7f\x79\xf1\x11\x47\x59\x72\x39\x7c\x4a\x89\x25\x26\xc5\xde\xf9\xe8\xa5\xc8\xa1\x8a\xa0\x43\x8c\xe8\xbd\xcd\x1b\x45\x6e\x93\xe4\x9d\xc4\xa6\x23\x22\x99\xc3\xa2\xe8\xf5\xc6\xe6\xe0\xd1\xd9\xd1\x3d\xce\x65\x70\x22\x49\xf5\xd8\x7b\x2e\x87\x25\x78\xed\xa2\x9a\x52\xd8\x3e\x24\xe5\x64\x46\xfb\x80\x14\x13\x3e\xca\xce\x5c\xc1\xb4\xf3\x65\xa8\x26\x5e\x7b\x8c\x87\x7c\x19\xaa\xe1\x29\x23\xed\x7c\x09\xaa\x89\x29\x06\x87\xdd\x66\xf9\x89\x6c\xa7\xd7\x54\xff\x57\xe2\x3c\xbb\x24\xed\x97\x26\xa5\xfe\xbe\xfe\x8b\x92\x0e\xa6\xa4\xfd\x3a\xd1\x81\x47\x54\xd6\x74\x0e\xa8\x8b\x73\x1f\x5c\xf2\x88\x23\x5e\xa3\xa1\xd6\xd3\xad\x73\x2c\x9c\x2c\xb0\x00\x75\x31\xf3\x44\x94\xae\xbb\x24\xd7\x7b\x1a\x01\xe6\x6c\xa8\x06\x38\xfa\xce\x33\xce\x8a\xe7\x5d\x63\x5d\x41\xc0\x24\xaa\xe5\x88\x40\x4b\xed\xef\xd8\x5e\xe4\x97\x31\xb1\x5b\x5b\xca\x3e\x74\x50\x75\x49\xee\xc4\xb7\xd7\x8c\x9e\x5c\xce\xe3\xb2\xd0\x60\xf9\x14\xa6\xec\x14\x96\x73\x54\x80\xc8\x5a\x89\xb9\x20\xb1\xcf\x45\xb1\x41\x9e\xfb\xd9\x05\x92\x79\x7c\x43\x2c\x28\x54\x48\x15\xd7\xb2\x51\x75\x7c\x2c\x48\xe9\x05\x02\xb5\x34\x36\x55\x34\x10\xf1\x1c\xf3\x4f\x93\xe4\x5a\x9c\xb8\xeb\xea\x24\xe6\xb5\x53\xdb\x5f\x8e\x96\x2b\x3d\xb7\x92\x42\xdc\x41\x7f\xe3\x07\xd5\x61\xa0\xe8\x0f\x4b\x5c\xe8\xc1\x8d\x87\x54\xa7\xee\x54\xd2\xbf\x24\xeb\xd8\x4f\xbc\x31\x25\x3a\x2b\x32\x5f\x80\x85\x64\x77\xea\x97\x63\x21\xf1\xb6\xff\xc7\xb1\x10\xa5\xe9\x7e\x8c\x83\x22\x5e\xea\xf6\xe3\xd6\x34\xaa\x3a\x48\xbf\x29\x4d\x09\x6e\xef\x5a\x83\x6c\x68\x07\x71\x81\xd8\x56\x25\xd6\x28\x61\x3d\x6c\xd0\xfc\xb9\x37\x65\xd9\x7c\xea\x2d\xc4\x5e\x1d\x3c\xe8\xcb\x2a\x71\x39\x9e\x42\xcf\xb9\xe4\x12\xde\x07\xcb\x82\x88\x5d\xd2\xbe\x8f\xe5\xbf\x65\xee\x4b\xe7\xd8\x8a\x66\xee\x14\xfe\xc9\x03\xb0\x60\x2f\xaf\x4a\x95\x5a\x3b\x92\x02\x56\xdf\xba\xf1\x60\x3b\xee\x2c\x30\xb3\x7f\x1a\xfc\x56\x5c\x30\x65\x73\x2d\x77\x66\x60\xca\x71\x4a\x29\x5c\x9b\xe6\x3a\x35\x79\x0c\xbf\xee\x66\x1f\x18\xac\x6a\x29\xf5\xe2\x31\x98\xc1\xbc\xed\xfb\x96\xd4\x97\x68\xf7\xcc\x3d\xc4\xcf\x3f\xcb\x56\x2d\xac\xe9\xda\xb3\x5f\xb8\x72\xfc\xfc\x97\x95\xd2\xf5\xf9\xcf\x89\x57\x9f\xfd\x82\x76\xc8\x60\xf9\xfb\x93\xd4\xad\x11\xef\x7e\x83\x40\x32\xd6\xb7\x3d\x92\xcc\x38\xe2\xc7\x29\xa8\xef\x62\x3b\x72\x89\xec\x29\xf6\xf7\xa7\x97\x27\xd1\xe6\x37\x94\x8e\x90\x1f\x4f\x77\xe2\x18\xbd\x7a\x39\x9a\x71\x92\xf8\x5c\xe0\x56\x59\x54\x71\xa6\xce\xee\x08\x32\xa7\xd8\xa9\x7e\x1e\x55\xec\x0b\x25\x39\xcf\x29\xb7\x8f\x89\xe9\xbc\x14\xde\xa0\x37\x1a\x65\xbf\xd5\xdf\x23\x08\xd7\x7e\x99\x74\x3f\x2c\x9e\xc3\x3c\xbf\x78\xa0\x1a\xa0\x8e\x59\xfd\xec\xb5\x2f\x97\xd5\xa6\x86\xf1\xe0\x1d\x98\x5b\xeb\x78\x13\x55\x19\xee\x4a\x65\xb8\xe3\xc7\x6b\x53\xc3\x55\x98\x28\x4e\xfd\x9b\xd8\x75\xec\xa1\x52\x3a\x7e\xc3\xad\x63\x77\xf9\xbd\xfb\x68\x8a\x09\xa3\x65\x25\x45\x6c\xc9\x4d\x49\x1e\x71\x2e\x93\x5a\x04\x20\x3e\xb3\xae\x94\xe2\xb3\xba\x16\x6b\xb9\xa2\x96\xc2\x29\x75\x3c\x88\x91\x8b\xab\x4b\xb1\x96\x5a\x2e\x20\xf7\xc4\xdc\x02\x73\x4f\xae\xd2\x7f\x12\xfa\xfc\xd4\x62\xd3\x83\x1f\x48\x46\x75\xaf\xf7\x48\x32\x09\x42\x2f\x2b\xee\x2d\xcd\xc7\xd4\x7f\x27\xa8\xf7\x88\xc5\x81\x2f\x4e\xd0\xe3\x4b\x7e\xc9\xd9\x95\x61\xf2\x70\xc2\xca\x89\xb6\x9b\x35\xca\x2d\x7b\x89\x56\x67\xfd\x25\x0e\x7c\x58\x09\x5f\xeb\xc8\xf3\xbb\xfc\xa4\x6b\xbc\x58\xc5\x23\x4b\x4f\x07\xaf\x83\xa4\xb9\xc6\x9f\xbe\xa3\x70\xbf\xc6\xb1\xf6\x2c\xbf\xbf\xb7\x6f\x93\x5c\x59\x37\xc1\xc8\x7f\x6e\x7f\xe6\x4d\x03\x29\x8f\xff\x81\xb4\xa2\x54\x6e\x8e\x69\x5b\xef\xd3\x8a\x8e\x62\x8b\xdb\x89\xbf\xe5\x27\xf9\x8d\xbb\xe3\x59\xe7\x45\x4d\x15\x17\x1c\x5d\x3f\x89\x29\x10\x8e\xda\x51\x2f\xa1\xee\x30\x87\xc3\x1b\x64\x8f\xfc\xc0\x00\x86\xf4\x50\xd1\x91\x58\x69\x2c\xde\x01\xf4\x14\xac\xad\x44\x09\x77\x56\x19\x5d\x41\xeb\xdd\x19\xcf\xaa\xf4\x62\x1c\xcb\x4a\xce\x70\x9e\xb1\xd4\xf5\x38\xe3\xef\x2c\x45\xd2\xb1\x83\x61\x0d\x5e\xaa\x26\x36\x39\x4b\x5f\x15\x59\xe7\xb9\x2d\x20\xc6\xaa\x9c\x5a\xab\x46\xe2\xbb\x0d\x58\xcc\x17\x99\x5c\xb8\x78\x08\x36\x25\x34\x8c\xc4\xf4\x47\xd8\xfc\xfc\xdd\x4f\xc1\x8c\xf9\xe5\xfc\xc5\x7c\x0e\x95\xff\xf9\xfc\x1d\xb5\x25\xff\x65\x3a\x62\x12\x41\x33\x07\xd5\x1b\xf7\xb7\x2e\xf0\x8a\x99\x95\xd5\x2a\xb6\x33\xc4\x0e\xbc\xdc\x82\x99\x5e\x6f\x88\xb1\x94\x73\x31\x16\x53\x14\x2d\xd6\x34\x30\xe9\x63\x86\x2b\xb2\x5f\x9b\x77\x8c\xea\x69\xfc\x7a\xf0\x21\x3f\xae\x56\xd6\xc0\x9c\xbf\x36\x2f\x28\xb3\xf9\xfc\x37\x4f\x9f\x3e\x25\x33\x60\x2c\xa6\xb5\x72\x2b\x4c\xc8\x70\xae\x3e\xbf\x42\xe3\xaf\x9c\x9f\x52\x41\x1e\x69\x92\x28\x1d\xdc\x81\xaa\x29\x36\x7b\x61\xf5\x94\x06\xa2\x1d\x44\xa4\x83\x5d\x9d\xb3\xa6\x7a\x3b\x0d\xe4\xdb\x6d\x65\xf5\xb0\x8d\x70\xde\xd3\x0a\x87\x48\x72\x66\x4b\x11\xa8\xd2\x54\xfb\x8a\x5d\x14\x92\xea\x14\xe2\xa4\x45\xa6\x78\x65\x9a\x06\xaa\x94\xa2\x9d\xcb\x85\x66\x24\xfa\x77\xf7\x5c\x4c\xf1\xd1\xb8\x66\xca\x16\xcf\xf2\x9f\xd1\x9a\x34\x5c\x71\xcc\x49\x40\x4e\x9c\x9e\xfe\x20\x61\x01\xf6\xf4\x94\x7b\xf1\xbc\x4f\xf8\x14\xff\xa5\x14\x0c\x94\x82\x11\xf7\x9d\xc0\xb4\xbd\xf8\x3d\x03\xd0\xeb\xdd\xb4\xeb\x3c\x76\x58\x74\xf7\x49\x7f\xd4\x45\x97\x82\x28\x89\xd1\xb6\x88\xa2\xd0\xa5\x15\xf1\x41\x8e\xb2\xdd\x4e\x76\x17\x6f\xd5\xa5\x9f\xec\x68\xb2\x77\x20\x44\xfc\xa2\x59\xa2\x37\x06\xae\xa4\xee\xa4\xef\xec\xa6\xdd\x1d\x0d\x29\x4a\x78\x1c\xb2\x6b\x7b\x70\x5b\x04\xb2\xe4\x5a\x7c\x93\x63\xd3\x16\x5a\xd6\x51\x65\xb4\xf3\x47\xbb\xe6\xc6\xd0\xff\x3d\x27\x4f\xbd\xe3\x70\x70\xb1\xcc\xd7\x47\x27\x5f\xfd\xff\x00\x00\x00\xff\xff\x85\x0b\x23\x47\x98\xc1\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\xfd\x73\x5b\xb9\x91\xe0\xef\xf3\x57\xa0\xb4\x57\x65\x49\x45\x52\x9e\xc9\x26\x3b\xa7\xbb\xd9\x94\xc6\x76\x12\xcd\xf8\x43\x67\x3b\xb3\x97\x9a\x9b\x0a\xc1\xf7\x9a\x24\xcc\x47\xe0\x05\xc0\x93\xcc\xdc\xde\xff\x7e\x85\xee\xc6\xc7\x7b\x24\x25\xca\xb6\x66\xa3\xad\xdd\x54\xed\x58\xd2\x03\xd0\x68\x34\xfa\xbb\x1b\xde\x4a\xe5\xdd\xf9\x57\x63\xa1\xe5\x1a\xce\x85\x9c\xcf\x95\x56\x7e\xf3\x95\x10\x6d\x23\xfd\xdc\xd8\xf5\xb9\x98\xcb\xc6\x41\xf8\x8d\x35\x73\xd5\x80\x3b\xff\x4a\x88\xb1\xf8\xb1\x9b\x81\xd5\xe0\xc1\xd1\x8f\x5a\x7a\x75\x0d\xf8\xef\x37\x2d\xe8\x77\x4b\x35\xf7\x5f\x09\x51\x83\xab\xac\x6a\xbd\x32\xfa\x5c\x5c\x34\x8d\xb9\x71\xa2\x32\xda\x85\x95\xb5\xd2\x0b\x71\xb3\x54\xd5\x52\x68\x53\x83\x13\x7e\x09\x42\x69\x0f\x0b\x2b\xc3\x00\xd1\x9a\xfa\xd8\x9d\x08\x69\x41\x40\xa3\x16\x6a\xd6\x84\x05\x84\xf0\x46\xcc\x40\xb8\x6a\x09\x75\xd7\x40\x2d\x8c\x1e\x89\x99\x74\xf8\x2f\xd1\xc8\x19\x34\x2e\xfc\x2b\x4c\x17\x26\x1e\x09\x63\xc5\x8d\xf2\x4b\x9c\xdc\x8e\x5b\x53\xa7\x9d\x0a\xa9\x6b\x9c\x53\x6a\xaf\xc6\xf1\xb7\x3b\xa7\x6b\x4d\x1d\x40\x94\x1e\x01\x92\x8d\x05\x59\x6f\x84\xed\x34\xee\xa3\x58\xcf\x4d\x70\xc6\x4b\xff\xc4\x89\x5a\x39\x39\x0b\x30\xce\x36\xa2\x86\xb9\xec\x1a\x3f\x21\x5c\xb6\x60\xbd\x8a\xd8\x24\xf4\x83\xc6\x6f\x69\x8f\x9b\x16\xce\xc5\xcc\x98\x06\x7f\xec\xe1\xf1\x99\xd4\x01\x01\x5d\x00\xd1\x1b\x1e\x16\x36\xc9\xab\x09\x29\xf0\x64\x27\x01\xe3\xf4\x4f\x27\xdc\x32\x80\xed\x97\x2a\x1c\xc0\x7a\x6d\x34\xce\x9b\x40\xd9\x4c\x0a\x40\x5a\x53\x8f\x0b\x5a\xb8\x1d\x9a\x8b\xe6\x46\x6e\xc2\xa4\xe3\xc6\x54\xd2\x83\x13\xeb\xae\xf1\xaa\x6d\x40\x58\x68\x1b\x55\x49\x27\xcc\x7c\xeb\x70\x15\x21\xcc\xc9\x35\x30\x24\x01\x77\xe2\x98\xb1\x24\x4e\x91\xee\x4e\x4f\xb6\xe0\x2a\x0f\xea\x4e\xe0\x5e\xc3\x35\xd8\x5f\x05\xb6\xf0\x45\x82\x6b\x4c\x64\x53\x80\xf7\xe4\xe7\x5f\x9c\xb7\x4a\x2f\x9e\x6c\x03\xf9\x1c\xe6\x4a\x83\x13\x52\x38\xf0\x01\x9e\x83\xaf\x03\x5d\x05\x86\xf1\xe0\x0b\xb1\xef\xa8\x3f\x13\x6a\xbc\x20\xc7\x61\xda\x66\x23\xfc\xd2\x38\x10\x6b\xe9\xab\x65\xb8\x1e\x61\x69\x9c\x5d\x38\x68\xa0\xf2\xc6\x8e\x18\x6a\x0b\x0d\xb2\x8e\xb0\x95\xf0\xd5\x42\x5d\x83\x46\xe0\x5c\x2b\x2b\x38\xa1\x2b\xe7\x97\xb0\x03\x15\x6e\x69\xba\xa6\x0e\x77\x21\x9d\x70\xcd\xd3\x86\xfb\x7e\x2b\xe9\x3c\xd6\xcd\x6a\xe3\x6f\xd9\x70\xdc\xee\xac\x53\x4d\x0d\xb6\xc7\xc8\xbd\xed\xbe\x0c\x1f\x7f\xbf\x84\xb8\x00\x71\x17\xa1\x1c\xf1\x56\x2d\x9b\x66\x93\x18\x53\x0d\x1e\xec\x5a\x69\xc0\xbd\xce\xc0\x79\x11\x18\xbf\x87\xc5\x26\xf1\xf1\x30\x4d\x60\xc2\x41\x2a\xcc\xd5\xa2\xb3\x20\x2e\xf3\xde\x7f\x54\xde\x3d\x02\x7e\x79\x0d\x76\x66\x1c\xdc\x09\xc8\x0b\x5a\x99\x3f\x17\x8d\x59\x2c\x58\x76\x10\x1e\x2a\xb3\x6e\x8d\x06\xed\x59\xd0\xb8\xae\x6d\x8d\xf5\x42\x79\x71\x0c\x93\xc5\x84\x41\xf8\x51\x6a\xb5\x8a\xb8\x6b\x4d\xdd\xe7\x91\x09\x55\x07\x92\xf6\x85\x68\x94\x23\x9a\x4e\x43\x59\xc4\xb6\xd6\x5c\xab\x9a\xb0\xe6\xe3\xa1\x0b\x2f\xdd\x2a\x11\x5a\x15\x6e\xc0\xc3\x91\xd9\xb3\x30\x3d\x13\x59\xd5\x3f\xc6\x4c\x30\xd7\x60\x9d\x32\x1a\x59\xf9\x45\x2b\xab\x34\xee\x47\xdc\xad\xed\xb4\x57\x6b\x40\x2a\xc3\x0b\x08\xb5\x68\xd4\xcc\x4a\xab\xc0\x8d\x04\xcd\xcc\xd7\x2a\xca\xeb\x47\x40\x74\xbc\xad\x31\xef\xbe\x00\x88\x8e\x7a\x1b\xa4\x80\x50\x3c\xaf\xf1\x6a\x1c\x91\xc2\xa3\x03\x88\x9d\x03\x31\x37\x76\x28\x77\x26\xe2\xd2\x0b\x73\x0d\xd6\xaa\x9a\x89\x4a\xe0\x37\x51\x1a\xc6\x29\x02\x67\x64\xc9\x59\x5c\x61\x71\xc5\x94\xf1\x6b\x11\x69\xb9\x36\xef\x32\x53\xab\xd1\x5e\x2a\xfd\x50\x8c\xf1\x09\x92\x6c\x5c\xe3\x2e\xb2\x2d\x76\xc2\x3a\x48\x09\x9e\x10\x37\x4b\xb0\xb0\xa5\x05\xdc\xa8\xa6\x09\xfb\xc2\x63\x91\x8d\x33\x11\x01\x2e\x4d\x4d\x1f\x86\xa3\x7c\x07\xf6\x5a\x55\x41\x6e\x39\x67\x2a\x95\xc4\x05\xa3\x2a\xad\x37\x11\xda\x34\x4a\xfb\x73\xe1\xe5\xa2\x09\xdf\x35\x0d\x3c\xf9\xc7\xbf\x03\xb2\xf3\xe6\x4e\x28\x8e\x8e\xca\x5b\x03\x7f\xeb\xc0\xf9\x71\xd5\x76\x07\xde\x98\xb5\xd2\x6a\xdd\xad\x85\x5c\x9b\x4e\x23\x09\x3e\xbb\xfa\x33\xce\xa3\x2c\x31\x8a\xe1\xdc\x6b\x58\x1b\xbb\xf9\xe4\xe9\x69\xf8\xce\x15\x1a\xb5\x56\xf7\x82\x5d\x7e\x3c\x10\x76\x9a\xf9\x7e\x90\x6f\x4d\x7e\x0b\xe4\xf0\xb1\x3d\x44\x42\xee\xa4\x98\xb3\x48\x2e\x38\x09\x72\x7c\x25\xc5\x2a\x5d\xd0\x48\xe6\x7d\x7d\xcf\xfa\x62\x35\xa5\xfd\x8e\x4d\x94\xb7\x51\x8a\x5a\xcd\xe7\x60\x41\x7b\x1c\xcc\x10\xa3\xe5\xd6\xbb\x2b\xd9\x0c\x98\x7e\xfb\xf4\xdb\xa7\xd3\x93\xe1\xb2\x63\x1d\xed\x86\x3b\x70\x78\xeb\xf2\x61\x92\xc4\x8e\x6f\x05\x28\xaa\x05\x97\x3e\xb2\x64\x64\x8d\xd3\xa5\xf7\xed\x54\x18\xdd\x6c\x02\x2b\x21\xc6\x3c\xa5\x49\xa6\xa2\x95\x56\xae\x83\x7e\x16\x74\xb7\xc0\x00\xcb\x5d\x38\xc2\xe7\xf8\xde\x48\xec\x74\xd0\x09\xc9\xa6\xe7\x49\x08\xf6\x3e\x06\x49\xa9\x71\x3d\xeb\x25\xee\xae\xc4\x6e\x1f\xb7\x25\x54\x9f\x84\xe3\xbd\xd0\x21\xae\x77\x82\x18\xc5\x1d\x4a\x9a\x6d\x10\x11\xc5\x7d\x33\xf0\x40\xb8\xf0\xfe\x28\x5d\xac\x18\x46\x4e\xc8\x6b\x10\xfe\x59\x8b\x69\xc1\xf6\xa7\x03\x07\x42\x5c\x4e\xad\xe5\xe2\x13\xd7\x8b\x43\x7b\x53\x8d\xdb\xae\x69\xc6\xad\x69\x54\x55\xb2\x81\xab\xae\x69\xae\xf2\x2f\xb7\x85\x5e\x18\x26\x68\x58\xf4\x08\xfc\x3b\xda\xde\xff\x7e\x39\x7f\x6d\xfc\x95\x05\x07\xda\x3f\xe9\xab\x00\x33\x70\xe3\x43\x45\xc9\x93\xe7\xd0\x5a\x40\x83\xe7\x0a\x47\x92\x2e\x5d\x0f\x59\x04\x4d\x1b\xad\xdd\xed\x4b\xcb\x07\x3a\x45\x0b\x7e\x7a\x92\x67\x3d\x47\x8f\x80\xac\xf2\x05\x5b\x82\x6c\xfc\x92\x25\xd4\x93\x1e\xaf\xbc\x06\x0d\xce\x8d\x83\xc5\x7d\xd0\x71\x3f\x79\x87\x5f\x46\x2d\x0b\xaf\x63\x65\xb4\x86\xca\x2b\xbd\x98\x04\xf3\x32\xdd\xdb\x3f\xbd\x7f\x7f\x35\x11\x17\x6d\xdb\xb0\x8e\xe3\x97\xf1\x8e\xc4\x85\x69\x97\x93\xcf\x03\x3e\x58\xc1\x4a\x36\xe3\x1a\x1a\xb9\xe9\xdf\xf2\xdf\x7c\xb3\x63\x0b\xaf\xbb\xf5\x0c\x6c\x60\xf3\x0e\x2a\xa3\x6b\x27\xe4\x3c\xf0\x8f\x3e\x9e\x97\xd2\x09\xe7\xa5\x0d\x4a\xf6\x0c\xe6\xc6\x42\x5a\x31\xcb\xf1\x70\x42\x41\xc8\x13\x08\x1e\xea\xcf\xdc\x4a\xd0\xf1\x4c\xe7\x3f\x63\x13\xc4\x14\x90\xd5\x06\xf0\x44\x98\xd1\x09\xd3\xf9\x5f\xe3\x24\x5a\xb0\xca\xd4\x07\x40\xff\x27\x73\x23\xcc\xdc\x03\xaa\xeb\x2d\xd8\xa0\xbe\x66\xa0\x87\xa0\xde\x02\x64\x72\x47\xdc\x9b\xe2\xbb\xaa\x42\x8c\x2f\x2d\xb8\xa5\x69\x0e\x81\xfa\x15\x6b\x38\x95\xd1\x0e\xaa\x0e\xfd\x1f\x3c\x0f\xb8\x2c\xe2\x08\xef\x86\x9c\x1b\xda\xa9\x1a\x2c\xd4\xf1\xc3\x79\xd7\x30\xcc\x74\x5e\x4b\x79\x1d\x2c\xe7\xb9\x54\xc1\x58\x3b\x78\xdf\xc3\x1d\xf3\x9c\x77\xef\x3b\x2c\xd4\x59\xf8\xec\x7d\xf3\x3c\x77\x6e\x9b\x36\xb6\x6b\xcb\x88\x10\xa8\x3f\x75\xd7\x85\xfd\xb6\x77\xd7\x16\x64\xad\xfe\x43\x18\x5c\x5a\xf9\x73\xee\x55\x06\xff\x57\x63\x71\x69\xc9\x2f\xce\xe3\xf2\x66\x7e\x7d\x26\xf7\x85\x4f\xe3\xa1\xd8\xdc\x2d\x60\xde\x97\xcf\x15\x94\xff\x18\x18\xdd\x3d\x0e\xe8\x2e\x4e\x97\x77\xfe\x08\x58\xdd\x81\xfb\xde\xcf\xeb\x92\x3f\xc8\xa2\x7b\xe1\x21\x82\x9d\xe4\x0b\xb2\x41\x11\xdd\xe9\x06\xea\x9c\x37\x6b\xf5\xf7\xe8\x1b\x0f\x5b\x36\x1d\x5e\x5a\xba\x27\xaa\x22\xbc\xab\x35\xd8\xb3\x00\x27\x47\x74\x0a\xa3\xc0\x4d\xc4\xbf\x2d\x55\x03\x42\x1b\xbb\x46\xcf\xbb\xd4\x3d\x5f\x11\x1b\xe2\x4e\x48\xd1\x9a\xb0\x2c\x4e\x39\x03\x21\x29\x66\xd7\xb5\xe4\x14\xa5\x18\xe6\x48\x38\xb3\x86\xb4\x3c\xfa\x79\xdd\x28\x9c\xc2\x52\x48\x27\x66\xd2\x57\x4b\xf1\xc1\xcc\xdc\x28\x4e\x5c\xce\x58\x79\x75\x8d\xae\x55\xe9\x85\x6b\xa1\x52\x73\x55\x89\xa5\xe9\x6c\xf2\x6e\xd5\x72\x93\x22\xb1\x32\x2f\x83\xcc\x19\xbd\x07\x4a\x77\x3e\x46\x4f\xff\x60\x2c\xad\xcc\x50\x20\x0b\xee\x63\x73\x2d\x3d\x58\x25\x9b\x88\xc4\x72\xe7\x32\xec\xb9\x77\x6c\x02\x0f\xe3\x07\x33\x13\x4a\x3b\x0f\xb2\x0e\x4b\xca\xc0\xc8\x75\x2d\x6d\x2d\x6a\x68\x1b\xb3\x59\x83\xf6\x23\xa1\xb4\x30\x16\xa3\x1b\x46\x38\x79\x1d\x08\xce\x99\xce\x56\xe0\x92\x25\x8d\x33\x96\x2b\xd6\x06\x1c\x06\x67\x34\xd0\x09\xa3\xc1\x18\x2e\x03\xd4\x93\xd2\x29\x19\x7d\xfb\x41\x82\x88\xb9\x35\xc4\xda\xe6\xa6\x69\xcc\x4d\x94\xad\x45\x20\x00\xc3\x7d\xd7\xb2\xe9\x10\xb9\xd1\xf6\x4f\x98\x38\x17\x53\x24\x91\xe9\x48\x4c\xc3\x6f\xc3\x7f\xff\xd6\x49\xeb\xff\x3e\x9d\xa0\xd5\x67\xbb\x86\xf7\x1f\xee\x61\xe7\xc2\xc5\x2a\x51\x93\xd0\x22\xd9\xd9\x98\x20\x39\x17\xe3\x38\xf9\x39\xed\x9b\xce\xcc\x05\xec\xc7\x73\xbf\xb1\xca\x07\x4e\x2d\x1d\x01\x05\x1f\x5b\x0b\xce\x11\x75\xbe\x98\x2c\x26\x3c\xc5\xb9\x57\xd5\xea\xf7\x34\xc1\x77\xbf\x7b\xfa\xf4\xe9\xd3\xe9\x24\xcc\x3f\x80\xf9\x3c\x7a\x3e\x75\xde\x67\x9e\x32\x23\x99\xa5\x71\x12\x70\xc7\xcc\x63\x8e\xf8\x17\x47\xa2\x95\xe4\x63\x70\xe0\xa3\xcb\xf3\xe9\x49\x04\x29\xcc\x7b\xee\xe5\xec\xf7\x31\x66\xfa\xdd\xd3\xb3\x6f\xfe\xdb\xff\x6d\x9b\xce\xfd\xbf\xd3\x5d\xff\xf9\xfd\x34\x90\x2e\x43\x79\xee\xad\x5a\x2c\xc0\xfe\x3e\x4c\xf3\xdd\x53\xfa\xe2\xe9\xd9\x37\xb7\x8e\x9f\x3c\x02\x77\x6a\xc4\xc6\x81\x0e\x85\x48\x39\x71\x58\xe2\xf4\x37\x4b\xd3\x0c\x63\x08\xf3\x22\xf4\x6e\x3a\x9f\x22\x09\x01\xba\x1a\xaa\x46\x5a\xa8\xf1\x9a\x6f\xc4\xba\x73\x3e\xc8\x00\x48\x51\xf8\xe1\x12\xca\xad\xa1\x5a\x4a\xad\xdc\x3a\x60\xe2\xc6\xd8\x95\xa8\x8c\xb5\x50\xf9\xa6\xb7\xa3\x7c\x91\x0e\x51\x62\x2f\x10\x45\x52\x38\x68\xa5\xe5\x38\x11\x45\x1d\x7c\x8a\x29\x0d\x63\x74\xc5\x75\x4f\x3c\x3d\x4a\xb3\xc4\x47\x18\x31\x19\xd8\x44\xe1\x69\x63\xe8\x86\x43\xb2\x82\x5a\xc0\xc7\x14\x4c\x9d\x6d\x8a\xcb\x3a\xb9\x88\xb1\xfe\xc8\x61\xd3\x9a\xe8\xc8\xcb\x5c\x38\xac\x08\xb2\x5a\xc6\x2f\xa1\x88\x2e\xf2\x2d\x60\xa0\xa2\x47\x84\x6e\x7a\xfe\x8a\x78\x2e\x5e\x95\x71\xfc\x5b\xb9\x58\x5e\xeb\x58\xf9\x27\x4f\x82\x2c\x46\x27\x8f\x50\xba\x10\xbc\x53\x63\x17\x13\x89\x41\xb9\x09\xc6\x9e\x26\xab\xf3\x18\x83\xc2\xbb\xcf\xa1\xb8\xcd\xc9\xe4\x1d\x45\x3b\xa1\x1e\xb2\xbf\xaa\xb3\x16\xb4\x6f\x36\x51\x9f\x4b\x5c\x83\xe1\x0a\x42\x2c\x71\xbd\x52\xab\x99\xcb\xa6\x99\xc9\x6a\x75\xe7\xd5\xfa\xb3\x83\x5e\x4c\x8b\xce\x5a\xad\xdb\x06\x82\x48\x20\x16\xcf\x74\x40\xab\x0b\xd0\x75\x6b\x94\xf6\xe2\x38\x2e\x7d\x92\x8e\x3d\x09\x18\x6f\x37\x98\x11\x60\x6e\x93\x56\xd2\xed\xe0\xc7\x7d\x2a\xd6\x84\x83\x6a\xb3\xed\x9b\xdb\x6f\x92\xf1\xc9\x3b\xb1\x34\x37\xa8\x3a\x59\x90\x3e\x4f\xe6\x59\x3e\xc5\xd0\xa9\x14\x61\xd9\x9f\x64\xa3\x6a\x11\x04\x4e\x79\x45\xcf\xc7\xe2\x08\xd3\xb7\x8e\xce\x85\xa4\x34\x2e\x86\x13\x95\x32\xdb\xe9\x62\xde\x66\xf3\x3f\xc6\xe2\xe8\x0f\xc6\xce\x54\x7d\x94\x3c\x6f\x27\xe7\x81\xe2\x66\xaa\x8e\xd3\x16\x80\xd8\x4e\x07\x4d\x63\xa5\xda\x36\xa0\x4b\xc3\x47\xfc\x9d\x50\xf3\x40\x55\x41\x33\x72\xf8\xf3\x52\x3a\xfd\xe4\x89\x17\x73\xa5\x95\x5b\x42\x2d\x36\xe0\xc3\x5a\x6f\x49\xe9\x3b\x8a\x04\x52\x49\x5d\x41\xe3\x32\xe5\xa4\x3c\xad\x0f\x41\xd2\x61\x20\x18\x47\x38\xa1\x7c\xd4\x48\x34\xdc\x08\xa3\xe1\xc9\x7d\xe3\x4b\x17\x9d\x37\x6b\xe9\x55\x85\xf7\x95\xf4\x88\x5d\x0a\x49\x64\x97\x78\xf7\x65\xd3\x30\x1f\x0c\xe8\x05\xe5\x97\x1c\xf5\x13\xa4\x19\xa0\xd2\x1f\x94\x83\x42\x53\x0a\x4a\x73\xb7\x06\x2b\x8e\xd1\xa9\x7f\xdb\x2d\xc0\x7b\xe3\xe2\x85\x8a\x84\x69\x6c\x98\x4e\x3a\x17\xf4\xf3\x3c\x1b\xa0\x4c\xac\x55\x60\x9f\x53\x64\x23\x5b\x1f\x9d\x4c\xd0\x31\x1d\x23\x3b\xc8\xfa\x22\x75\x34\xcd\x36\x88\x6e\xc0\xbf\xe9\x03\x04\x31\xeb\xc2\x2c\xd8\x83\xce\xe8\xa2\x2a\x2e\x8a\x44\xa6\x08\xd9\xd7\xeb\xe9\xce\x21\xd3\xa7\x67\x5f\x8b\x53\xfa\xdf\x74\x74\x83\xaa\xf0\xf4\x37\xbf\x5d\x93\xac\xfe\xed\x53\x37\xe5\xc8\x7e\x3f\x8c\xc0\xe8\x1d\xd7\x20\xeb\x46\x69\x18\xb3\xce\xd0\xb7\x73\x7e\xf7\xcf\xdb\x27\xfd\x06\xff\x2b\x1b\x11\x87\x8a\x42\x05\x09\xec\x34\x1d\x5d\xd8\x78\x20\x35\x35\x0f\xfb\x5d\x2b\xb4\x00\x53\x82\x16\xc6\xa4\x69\xaf\x61\x94\xd4\x9b\x60\xd2\xb8\x20\x27\xc5\x2b\x85\xdb\x0b\x7a\x76\x79\x3f\x31\xec\x8b\x86\x53\xa7\x3d\x6d\x9f\x0c\xa7\x40\xb2\xae\x17\x13\x0d\x7c\x19\x3e\x61\x77\x99\x5f\x20\x27\xec\x72\x32\x1c\x4f\x31\xda\xca\x5f\x22\x25\x36\x6c\x67\x54\x92\x04\xef\x7e\x2d\x37\x6c\xeb\x79\xa5\x3b\xd3\xb9\x60\xa1\x20\x74\xd1\x6f\x42\xa9\x43\x85\x31\x48\x82\x94\xad\xdd\x22\xa0\x95\xe3\x30\xbf\x7b\xda\xdb\x6d\xe0\xee\x66\x3e\x1f\x63\xfc\xf2\x6e\x4b\xb5\xbf\x47\x9d\x1c\x25\x16\xbc\x0d\xbf\x65\xb8\xd6\xd2\xae\xca\x63\x4c\x00\x31\x1c\x65\x9c\xed\x9b\x9c\x75\x55\x43\x0b\xba\x06\x5d\x51\x62\xc3\x03\xe5\xc4\x3c\x2f\x56\xb9\x35\xff\x4a\xf6\x18\x93\xac\xeb\x94\x0f\x41\x7b\x28\xa6\x49\xd9\x82\x43\xbe\x15\x13\xd2\xc2\xa4\x56\xdc\x48\xed\x23\xc3\x1f\xa4\xc8\x88\x9f\x7f\x29\xf1\xd0\x98\xcd\x43\xa6\x9f\xc5\x15\xf2\xfe\x2d\xb8\x36\xd0\xd1\x8c\x95\x44\xfa\x22\x1e\x62\x36\xe0\xcc\x8d\x66\xfd\x6c\xb6\xc5\xa5\x47\x94\x89\x36\x50\xb3\x3f\xb6\x8d\xaa\x54\x10\x22\x94\xce\x47\xe8\xd0\x35\xd8\x06\xe7\x0f\xf4\x6d\x4d\xd3\x30\x03\x47\x8c\xe1\x75\x5d\x4b\x2d\x17\xdb\xb6\x69\x6b\xea\xc7\x90\xd4\xb6\x52\xba\x3e\x40\xcd\xe0\xa4\xee\xbd\x88\xaa\xc1\xa1\xc4\xc8\xf6\x35\xce\x2c\x66\xe0\x6f\x00\xb4\x98\xe6\x3f\x4c\x47\xa5\x7e\x37\xfe\x60\x66\xc4\xc9\x57\x44\x15\x63\x8e\xd9\x4e\xd9\xbd\x1c\xb4\x99\xed\xf3\x0d\x67\x1f\x85\x7d\xd6\x6e\x4b\x5b\x64\x40\xa6\x61\xe5\x07\xbd\xac\x71\xdb\x7b\x49\x75\x01\x1a\x6c\xde\x4b\xa1\x0b\xf6\x20\xec\x93\xd6\x2a\xc8\xf7\x5b\xf2\x83\x62\x2a\x56\xd5\x74\xce\x53\x92\xc0\x3f\x38\xc1\xb5\xd6\x2c\x82\x70\xbf\x43\x74\xed\x62\xeb\x65\x3a\x0a\xa6\xb5\x0d\xe4\xb2\x4f\x2c\x83\x4e\xc2\x10\x02\xe3\x8a\xcc\xf6\x23\xad\xf8\x5b\x64\xd2\x30\xcb\x02\xc5\x51\x46\xe5\xb5\xb2\x46\x3f\x2c\x45\x15\x8b\x64\x92\xea\xa2\x6b\x90\x45\x80\x37\x42\xe9\x0f\xe1\x0e\x26\x07\x57\x1f\x38\x21\xae\xa5\x55\xe1\xdc\x5c\xa4\x94\x92\x8a\x52\xb4\x23\xfb\xff\xa6\xaf\x2f\x5e\xbd\x78\x77\x75\xf1\xec\x45\xd0\x39\xaf\xde\x3c\xff\x6b\xf8\x05\xa9\x9d\x26\xa8\xaf\x8f\x81\xa9\xa5\x7d\x8d\xd7\xe0\xe5\x9d\xf0\x50\x92\x81\x63\x5c\xb2\x0d\x58\x20\x82\x74\xee\x8c\x8b\xf2\x6c\x12\x7e\x19\x9c\x9c\x35\x12\xc8\x01\x8d\xc5\x94\x3f\x2c\xed\xfd\x13\x21\xf3\xf9\xb1\xf7\x21\xf0\xc3\x2c\xc4\xaf\x4c\x3d\x11\xaf\x92\x27\xe5\xc7\x17\x7f\xf9\xee\xa7\x8b\x97\x7f\x7e\x11\x75\xec\x8d\xf6\xf2\xa3\x38\x56\x30\x12\xaf\xfe\xf2\xd7\x9f\x2e\xde\x7e\x77\xb4\xde\x90\xdd\x77\x74\x52\x90\xb4\xb5\xc6\x8e\x97\x52\xd7\xcd\x43\xca\xf3\xde\x32\x6c\x82\xf0\x4a\x4c\xe4\x91\x26\x98\xac\x5f\x84\x01\xe2\x4f\x09\x2e\x21\x48\x00\x04\x2a\x36\x5b\xe4\xcc\x7a\xcf\x23\x20\x50\x0b\xf3\x03\xbd\x6f\x88\x32\x11\x51\x66\x61\x4e\x69\x4c\x29\x1d\xd6\x58\x31\x37\x5d\x30\xb8\xb4\x90\x2d\x16\xbb\x90\xfa\x91\x73\x6f\xe3\xa2\x8b\xea\x81\x82\x20\x01\xce\x3f\x3e\x13\xef\xf1\x04\x17\xd2\xce\xe4\x02\xc6\x55\xd0\x95\x2a\xef\xc8\x06\x4e\x82\x3b\x95\x56\x69\x23\x1a\xa3\x17\x60\x85\x86\x0a\x9c\x93\x9c\x91\xd8\xb5\xa6\x1f\xde\xe8\xda\x5a\x72\xc0\xe0\x1f\xfc\x54\x6b\xe5\x2a\x73\x0d\x76\x33\xae\x64\xb5\x2c\xfd\xab\x0b\xe5\x97\xdd\x6c\x52\x99\xf5\x19\x79\xc9\xce\xd8\x3b\x76\xd6\xae\x16\x67\xb4\x6a\x1a\xfd\x2c\x7c\xf0\x7e\xd3\xc2\xf6\x16\x9e\xc7\x6f\x44\xd5\xa8\xc0\x7e\x70\x21\x66\x0d\x61\x63\x23\x41\x4e\x86\x60\xe8\x53\x8e\x7b\x60\xe3\xb5\x72\x2b\x52\xb2\x28\x77\x73\xba\xc5\xac\xf8\xf7\x27\x89\x58\x28\x94\xf6\x80\x04\x53\xc6\xea\x76\xa9\x4b\x31\xa1\x2f\xea\x4b\xfc\x7d\xca\xfc\xfa\x2a\x9a\xa0\x3b\x05\xda\xe4\x31\x17\xe6\xe5\x94\xa1\xb0\xd9\x83\x93\xe7\x9e\xc5\x14\x48\xb7\x23\x53\x64\x57\xce\xff\xdd\x89\x73\x3b\xa1\x3a\x38\x5d\xe4\xd6\x6c\x91\xdd\x09\x2d\x05\x49\xfe\xe9\xfd\xfb\xab\x3d\x10\xdc\x33\xe3\xe3\x93\x13\x3e\x4a\xf8\xca\x9c\x0f\xb2\xc4\x63\xc6\xc7\x67\xe5\xaa\xdd\x9d\xc5\x31\x40\x50\x4e\xe7\xf8\x9c\x24\xb3\xbd\xc9\x17\x83\xfc\xa2\x2f\x94\x1d\x76\x58\xce\xc4\x70\xa7\x83\x1c\x82\xa8\xd3\xa4\x14\x8a\x9d\xc9\x13\x5f\x28\xaf\xeb\xa0\x5c\x87\xc3\x00\x66\x0f\xde\x9e\xa4\x87\xdd\x49\x34\x9f\x73\xf1\x07\x79\x13\xf7\xbc\xf9\xa4\xb6\xee\x06\xeb\xcb\xde\xfc\x21\x9c\xb7\x5d\xfd\x4f\xce\xf6\xfa\xac\xbb\xbf\x33\xe1\x6b\xef\xe5\xff\x84\x24\xae\xbb\x6f\xff\x10\x49\x3b\xaf\xff\xfd\xb3\xaf\xf6\xde\xff\x61\xd2\xcd\x97\x4a\x9b\x3a\x8c\x03\x6c\xed\xf6\x73\x59\xc0\x67\x25\x3c\x1d\xc4\x03\x0e\x04\xf9\x0e\x26\x90\xd2\xf3\x35\xba\x2a\xee\xab\x77\x6d\x69\x57\x97\x34\xcf\xee\xac\x24\xaa\x70\x20\xd7\x3e\x17\x48\xe4\xca\x31\x8c\x93\xed\x54\xae\xf8\xda\x9a\xce\x87\xad\x89\x1b\x63\x9b\x3a\x46\xd5\x0a\x6f\x16\x2f\xcd\x1a\x18\xf3\xb0\x98\xa7\x15\xaf\x78\x60\x09\x58\xb4\x2f\x63\x59\x0f\x9a\x83\x75\x51\xe1\x57\x2e\x7d\xec\x97\xd6\x74\x0b\xba\x12\xd3\xe8\x21\x24\x28\xc3\x0e\x4f\x1e\x81\x56\xb7\x34\xce\x1f\x12\xd0\x3d\x3d\x7d\xcb\xf1\xb7\xd3\xd3\x49\xbf\xb4\x05\xf5\x60\xe3\xb6\x8a\x84\x98\x6a\x26\xf7\x0e\x6a\xbe\xdf\x15\x3e\xc0\xf4\x32\x22\x9f\x74\x4c\xc3\x03\xe9\x1c\xe6\x9b\x05\x46\xcd\x5b\x4e\x81\xf2\x18\x1c\x2c\x88\xda\x79\x65\x1e\xd0\x94\xb8\x0c\xf3\x33\xa9\xcb\xd4\x7d\x24\x59\x0f\x45\x05\x66\x2c\x0c\x8e\x45\xa4\x0c\x98\x48\xf7\x60\x0d\x6e\x99\x9d\x61\x81\xce\x2b\x69\x0b\xc7\x10\xba\xc1\x3a\x3f\x43\x93\xfb\xf2\x4a\x58\xa9\x17\x8f\xc2\x36\x45\xbc\x1c\x40\x7e\x85\x2e\x21\xc5\x31\x26\xca\x8c\x53\xa2\xcc\x49\x72\x4b\x3d\xbb\x7c\xfe\x56\xb8\x6e\xa6\x21\x55\xb1\xa7\xc6\x05\x0c\xc5\x8c\x28\xc6\x56\xd0\x16\x39\x6d\x74\x56\xad\x35\x1f\x37\xe2\x78\xfa\xf5\xd3\x09\xfe\xef\xec\xdb\xd1\xd7\xff\xf2\xcd\xe4\xeb\xdf\xe1\x0f\x5f\x7f\x33\xfa\xfa\xbf\x87\x9f\xbe\xa5\x1f\x7f\x17\xed\xd5\x6c\xc5\xf5\x94\x03\x3a\x9e\x3b\x71\xfc\x07\xc3\x1e\x08\x20\x07\x18\xb2\x70\xee\x9b\x31\xe5\xa3\x9e\x20\xad\x4e\x94\x39\xa3\x49\xa7\x13\xf1\x7d\x5a\xb4\x88\x7b\x52\xe3\x07\x4a\x3c\xc3\x32\x3c\x54\x9b\x84\xd1\xa5\x03\x3a\x10\x8b\x36\x9e\x9a\x49\xe8\x48\xcf\xb9\x8e\x31\xc2\xff\xc1\x34\x66\xa5\xe4\x43\xa6\xa8\xfe\x40\x4b\xc4\x4b\xc2\x49\x3d\xae\xdf\x93\x81\x70\x13\x3f\xfd\x41\x5e\x4b\x21\x17\xa0\x3d\xe5\x6a\xbe\x03\x10\x4b\xef\x5b\x77\x7e\x76\xc6\x10\x4f\x8c\x5d\x9c\x59\xc0\x82\xc6\x0a\xce\x96\x7e\xdd\x9c\xe1\x08\x37\x09\xff\x7e\xa4\xe5\xc6\x95\x1c\x57\x60\x0f\xe1\xd5\x01\xb3\x57\x2f\x5e\x09\xd0\x95\x09\x92\xeb\xd9\x85\x08\x23\xd5\x3c\x7a\xe1\xc2\xd1\x89\x56\xfa\xe5\x28\xc1\x7b\x0d\x56\xcd\xa3\xff\x26\x26\xb2\xa4\x41\xe0\x46\xec\xc5\x0b\x3b\x41\xc5\x79\xda\x5a\xe3\x4d\x65\x1a\x4c\xda\xc0\x62\x44\xc7\x2e\xe9\xce\xc1\xd8\xb9\x66\x4c\x93\x8d\x65\xe7\x97\xa0\x3d\x2f\x1e\x2f\x4d\x18\x84\xd4\x99\xf5\xeb\xb3\x6b\x69\xcf\x6c\xa7\xcf\x1c\x54\x16\xbc\x3b\xcb\x55\xb6\x81\xf4\x99\x19\xca\x0a\xd3\x10\xe2\x8f\xe3\x4a\x4e\x2a\xeb\xa7\x45\x4a\x43\xa2\xb9\xde\x75\x64\x68\x5a\xab\x74\xa5\x5a\xd9\x1c\xe8\xf3\xc6\x02\xc3\x38\xe6\xd8\x9d\xb0\x12\x8c\x69\x82\xb3\xd8\x44\x45\x69\x21\x93\xef\x2b\x63\x0d\xe3\xe0\x89\xc3\x09\x21\x51\x3f\x8c\x6c\x3e\x52\x74\x14\x51\xbf\x06\x8a\xe9\xfb\xab\xb8\x9f\xef\x2a\xfd\x9d\xdb\x38\x0f\xeb\xf3\xb5\x74\xd8\x9f\x2a\xb0\x40\xcc\xe7\xd5\xdf\x2d\xe5\x8d\x57\x66\x6c\x74\xa3\x34\x4c\xe8\xa7\x89\xbb\xae\xe2\xfc\x08\x49\xa5\xbf\x9b\x07\x68\x82\x7c\x35\x0d\x4c\xc2\x0f\xf8\xd1\x2d\x47\x91\x3d\x92\x87\xde\xae\x97\xca\x05\xab\x20\x4c\x89\x99\x9c\x95\x74\x3e\x96\xbc\xbb\xc2\x44\x63\x07\x51\xaf\xf6\xdb\x83\xae\xa1\x8e\xa8\xaa\x96\x70\x40\x4a\xde\x2b\xa9\x6b\x3c\x40\x0c\x62\x6e\x9d\x2b\x9b\x68\x2e\x9f\xfa\xbc\x91\x8b\x18\xcb\x8a\x4b\x32\x9a\x56\xb0\x11\x9d\x93\x8b\xa0\xd6\xa2\xb8\xfe\x35\x0e\x9a\x18\xff\xfe\x23\x38\x50\xed\x0b\xd4\xff\xa7\xa0\xda\xc9\xba\xb6\x4c\xbb\xd9\x0a\x8c\x14\x8c\xcc\x35\x35\x44\x52\x3a\x70\x14\xcc\xba\x9d\x1e\xfd\x9f\xd3\xa3\x08\xa5\xb1\x62\x7a\xc4\x92\xf5\x08\x77\x8a\x97\x67\x14\x15\x7e\xb0\x0e\x07\x53\x3c\x1f\xdd\xc9\x1a\x3c\x66\xac\xa2\xc4\x9e\xcb\x0a\xb6\xfc\x02\x47\xa7\x47\x83\x22\x78\xe9\xdc\x8d\xb1\x87\x64\x0f\xe0\xd5\xe6\xcf\x89\x11\x62\x42\x54\x0f\xc5\x23\x31\x3c\x2c\xd4\xf5\x3b\x07\x36\xed\xab\xa5\x54\x25\x94\xba\xf7\x6e\x03\xb0\x83\x11\x50\xfd\x77\x51\x8b\xfe\x2f\xff\xf2\xed\x74\xd8\x67\x07\xe9\xe5\xd0\x4d\xf2\xe7\xec\xf9\xc8\xde\x78\xae\xd2\xb7\x89\xe6\xfa\xd5\xe5\x0e\x29\x88\xb7\x99\xe9\xa8\x00\x24\xe0\xe1\x40\x20\x30\x87\x27\x87\x04\x76\xe0\xba\x3f\xef\x7e\xb2\xbf\xf3\xf6\xfe\xdb\x12\x70\x7f\xdb\x37\xd7\x15\x6d\xbb\xf6\x40\xb1\xdb\xf5\x74\xcb\x55\xa2\xf3\xbf\x7f\x0c\x55\xd6\xb5\xe2\x94\xbe\x48\x01\x3c\x55\x50\xf2\x6b\x6c\xfa\x55\x2b\x7d\x4f\xed\xe6\x9f\xf0\xdf\xe3\x0f\xd7\xeb\x31\x69\x50\x3f\xff\xf0\xd3\xab\xc8\xb0\xf1\x9e\xf6\x3b\xb5\xf0\x92\x39\x7f\xea\xc3\xf5\xfa\xe1\x42\xad\x3f\xfc\xf4\x6a\x90\x37\xe0\x87\x96\x24\x7e\x12\x54\x77\xdb\xe9\xad\x3e\x74\x8f\xc0\xa4\xa9\x61\xd6\x2d\xee\x04\xe3\x22\xe9\xba\x16\xd6\xc6\x03\x0d\x5b\x70\x25\x14\xc7\x23\xf9\x97\x81\x92\x09\x6a\xe9\xbd\xac\x96\x90\xaa\xa9\x44\xc4\xd8\x48\xc0\x64\x31\x19\x71\x89\x0d\x36\xa9\x98\x1b\x7b\x23\x6d\x4d\xf7\xb1\x07\xdc\xd8\x75\xae\x05\x7d\x37\xae\xde\xd1\x77\x74\x0a\x5e\xda\x05\x78\x3c\x1e\xb5\x5e\x43\x8d\x9a\xf3\xa6\xf4\x4b\x52\x8f\x87\x46\x3a\x17\x4e\xb7\x31\x92\x64\x60\x66\x5a\x2a\xc8\xdf\x60\xbb\x1d\xb0\x76\xd0\x51\xbc\x63\x87\x28\x0e\xe1\x33\xcb\x99\x9f\x4c\x2c\x6a\xd8\x6e\xa1\x31\x0b\xb7\xc7\x81\xbc\x85\x0a\x96\x6b\x87\xf0\x30\x2b\xb5\x43\xce\x1c\x65\xa1\xf4\x51\x16\x1a\xbc\xd4\xac\xa0\x60\x72\x27\xdc\x34\x1b\xd1\xc8\x4e\xe3\x71\x05\x30\x87\x00\x9d\x9e\xff\xf6\xe9\xd3\xdf\xf6\x40\xfa\x54\x4e\x12\xa6\xcf\x63\xb3\xc2\x2b\x9d\x0b\x5a\xfe\x01\x9b\xbb\x28\x78\xd1\x4f\xaf\xf2\x50\x71\xdc\x39\x10\xd3\x97\x4a\x77\x1f\xa7\xc5\xaf\xd9\xf6\x36\x36\x87\x66\x57\x72\x0d\x0d\xf8\x07\xcc\x3d\x8d\x2b\x64\x0e\x72\x57\xa2\xc6\x8f\x71\x84\xd2\xd1\xed\xf4\x68\x93\x33\x3e\xa1\x1c\x80\xb1\x40\xa9\x0e\x2c\x30\xea\x8c\x94\x70\xa7\xfc\x12\x94\x4d\xfe\xcf\x9e\x68\x88\xd1\xf8\xec\x2b\x4d\x6e\x8e\x5e\x34\xeb\x20\x45\xf2\xd9\x9e\xda\x26\x06\x86\xda\x50\xe2\x45\x32\xb2\xce\x79\x34\xb1\x46\xa3\x38\xb2\x4c\x70\x50\x3f\x94\x73\x22\x50\xdb\x8f\x2f\x9e\x5f\xec\x70\x54\xb3\xc2\x40\x58\x1e\x24\x3f\xfa\x25\x8d\x0a\x7f\x77\x95\x6c\x38\x2d\x4d\xe0\x7c\xbd\xa9\x58\x01\x5b\x4b\xdd\xe1\x49\x25\x11\x58\x33\x0b\x47\x2d\x93\x6b\xb2\xdc\x34\xea\x98\xe5\xda\x61\x1c\x4e\x5e\x8c\xbd\x56\x12\xd3\xc7\x83\x2a\xcd\x6c\x31\x9e\xf6\x04\xab\x5a\x95\x0e\xa8\x62\xc9\xaf\x63\x6d\x4e\xb8\xe3\x08\x78\x49\xec\x89\x4c\x70\x5f\xbe\x87\x91\x11\xd1\x53\x18\xfb\xd1\xc2\xfc\xfc\xed\x9b\x37\xef\xcf\xe3\xf5\x3c\x8b\xff\x18\x07\x95\x6f\x22\x6b\x53\xfd\x13\xff\x6a\x1c\xce\x0c\x7f\xfd\x73\x4c\x8f\xc5\x49\xd9\x30\x1a\xc2\x4c\x3a\xe3\xa2\x53\x35\xfc\x82\xf6\xc4\xc6\x74\x98\x06\x8e\x5a\x03\xa6\x9c\xe5\x6f\x53\x09\x40\x2c\xcf\xc4\x99\xd7\xe0\x65\x2d\xbd\x3c\x10\xe2\x1a\xae\x77\x00\x5c\xc3\xf5\x61\xf0\xd6\x70\x0d\x8d\x69\xd1\xcd\x16\xc1\x1e\xd0\x92\xea\xa5\x7f\x94\xd1\x87\xff\x2c\x3c\x28\xe6\x2d\xe6\x5b\x32\xd0\x38\xa9\x92\x2d\x43\x82\x29\xdc\xe9\x86\x24\xd5\x46\xe9\x70\x60\x8c\x3a\xba\x08\xb9\x64\x39\x91\x75\xcf\x43\xb6\x86\x66\x5c\x49\xf2\x46\x6c\xb7\xa6\xdc\x1b\xa6\xbe\x06\xeb\x13\xa5\x0c\x9a\x3c\xe2\xa4\xcf\xa4\x03\x71\xac\x31\x2a\x26\x66\x50\xc9\x70\x63\xca\x36\x9f\x1c\xf0\x29\xc7\x86\x4f\x56\x30\x93\x33\x84\x88\x20\x8f\x9a\x4c\xa3\x34\x9c\x4c\xc4\xf3\xdd\x79\x40\xc9\x46\x97\xd5\x6a\x9c\x13\xfc\xc7\xb1\x6b\xf4\xdd\x7a\x1b\x90\x76\xe4\x5a\xa8\xc6\xff\x9a\x9a\x4d\xcf\x15\x34\x29\x45\xd3\x9b\x56\x34\x81\x5c\x8b\x12\x02\xf4\x57\xe9\x94\x4b\xcf\x3b\x23\xaf\xb4\x9a\x63\x25\x11\x2a\xa8\xd1\xad\xc5\x87\x63\x84\x85\xca\x2c\xb4\xfa\x3b\x16\xd5\x60\xf9\x7b\x60\x7f\x48\x72\x31\xc7\xae\x6f\x18\x37\x8d\xd2\x8b\x31\x9a\xf5\xd7\x3d\x57\xdc\x9e\x98\xe7\x25\x7f\x29\x8e\x39\x22\x7d\x82\x67\xb3\x84\x6a\x45\x95\xa6\x4c\x21\x61\x77\xc7\xb1\xab\xe1\xd7\x4f\x63\xfc\xba\xef\x08\x34\xa6\xa9\xcd\x8d\x3e\x38\x2a\x1d\x6e\xf0\x0d\x9e\x2e\x15\x92\xc5\xea\x01\xf2\xb8\x3b\x1f\xeb\x8a\x22\x0c\x16\xb8\x94\x34\x1c\x75\x40\x44\x94\x88\xa2\x57\x2e\x80\xe5\x43\x58\x1a\xde\x8b\x1a\xd4\x0d\xc4\x93\x1e\xa3\xa7\xf3\x6e\x00\xf1\xc6\x91\xd4\x50\x2e\x5d\xdc\x18\x74\x8a\x87\x84\x12\xa9\x0f\x41\x40\x43\xdf\x96\xc8\x15\xbb\x65\x7d\x12\x11\x50\x09\xe6\x5a\xe9\xfb\x42\x19\xe3\xd6\x77\x4c\x2c\x3f\xde\x7b\x62\x4e\xbe\xbf\x7d\xe2\xc8\x43\xfa\xda\xf5\xfe\x14\x48\x59\xd7\x46\xbb\xb3\x20\x00\x26\xe1\xff\xbd\xa7\xf1\xfb\xfa\x73\xab\xc4\xdb\x22\xaf\x92\x55\x65\xd0\xfe\x8a\x0e\x5f\x3c\x08\x92\xbf\x13\xf1\xa2\xa0\x5a\xc6\x3f\xfa\x94\xa3\xf4\x9a\x06\x10\xa7\x7c\x67\xb1\xbc\xdc\xb5\x46\x87\xe9\x78\x36\x4c\xb8\xc5\xca\xd9\x81\xce\x91\x9e\x15\x10\x42\x8a\x15\x6c\xce\xe8\x02\xaf\x65\x1b\x7b\xfb\x45\x56\x37\x8d\xab\x61\xd8\x3f\x56\x75\xa7\xab\x44\x16\xc5\xe4\x22\x3a\x09\x64\xec\x0e\x33\xed\x7b\x4c\xc6\xe4\xaf\x4f\x75\x92\xb1\xa2\x3e\xdc\x97\x34\x1b\x2b\x9b\x22\xd0\x66\x30\x1c\xa8\x56\xa4\x51\x7a\x15\x23\xb5\x01\x21\xa0\xbd\xdd\x08\x33\x27\x9f\x60\x98\x15\x99\x4d\xda\x62\xe9\xa7\x49\x5d\x24\x73\xc8\x6a\x50\xac\x73\x88\x76\x98\xd4\xc1\x6d\x05\xb0\x1f\x18\xdb\x1f\xc9\x8d\x5e\x1b\x74\x0f\x0e\xcb\x7f\x2e\xb7\x1a\x83\xf0\xb4\x0c\xe3\x68\x4f\x4b\x90\x22\x75\x21\x97\xf1\x90\x36\xf9\x96\x97\x90\x7a\xff\xec\x11\x68\x28\x84\xf1\x98\x79\x91\x38\x2e\x18\xd3\xd8\x9b\xf1\xdf\xc1\x9a\x13\xaa\x7f\x9a\x75\x9e\x3b\xca\xcf\x41\x7a\x0a\xb8\x5a\xa0\x46\x9e\x16\x1a\xb8\x0e\xda\x57\xf2\x83\x92\x08\xc4\x52\xe2\x63\x77\x12\x44\x1e\x3e\x12\xa0\x31\x02\x9f\xfc\x99\x51\x2b\xe3\xf8\xfb\xa3\xd0\x72\x22\x76\xd0\xe4\xbd\x5f\x80\xda\x17\xb4\x53\x4c\xc5\x9e\x91\xc4\x9d\xa9\xbe\x38\xf0\x65\xf0\x62\xba\x6c\xe5\xa4\xf8\x78\xc2\x94\x3c\xa9\xe1\xba\xf4\x9f\xaf\x6e\xf9\xac\x5c\xec\x64\xf2\x36\xaa\xbb\x25\x38\xb5\xa9\xba\xd4\x52\xa0\x88\x98\xad\xb1\x1e\x36\xdb\x06\xfb\xb0\xb1\x06\x6f\x63\x6f\xa0\xcf\x45\x07\xcd\xb5\x0f\x1f\x45\xd7\x81\x14\x66\xa7\x32\x51\x2b\xa6\x55\xdb\x4d\xf9\xc7\x7b\xee\x39\xed\x36\xeb\x98\x77\xed\x99\xfc\x5e\x77\xf9\xf1\xdf\x01\x3b\xab\x90\x3f\x60\x1b\x89\xb4\x01\xd6\xb3\x8c\xc5\x06\xc8\x2d\xd8\x2a\x80\xb3\xc0\x60\x46\x0b\xc8\xd3\x85\x29\xfb\x56\x6c\xa3\xe9\x24\xf7\xd4\xb8\x32\xf5\x81\x1b\x8d\x62\xe5\x96\xc3\x0d\x62\x1c\xa5\xc6\x21\x71\x8a\xf5\x96\x00\xbf\x4a\xcf\xd2\x64\xb7\x7a\x64\x80\xd2\x63\x6d\x39\x56\xc4\x65\x60\x86\xfe\x5c\x4a\xc7\x3a\x3d\x0d\x2c\xe8\xf4\xb4\x50\x84\x47\x62\x0d\x92\x39\xa9\xf4\x43\xb7\x8d\x72\xa4\xce\x44\x41\xc7\x8a\x8c\x08\xd3\x10\x7b\xd2\xc6\x17\x06\x7b\x69\x24\xe7\x96\xd1\xe8\xf9\xd9\x85\xcb\x34\xeb\x2e\xd2\xd9\x8b\x4b\xf9\xf1\x30\x5c\x5e\x68\xd1\xb5\x41\x36\x52\xbe\x4e\xf2\x19\xee\x40\x2b\x4b\xd4\x88\x53\x45\x52\xaf\x69\xa0\x29\x6e\xef\x10\xa7\x91\x20\x96\xd2\x89\xc0\xfb\x02\x6e\x2a\xd9\xb2\x22\x8f\xf3\x12\xe1\xb9\x5c\x74\xed\xbc\x6c\x1a\x1a\x8e\x08\x89\xc7\x75\xc8\x5d\xda\x87\x90\x60\x54\x98\xce\x8f\xeb\xd2\xa1\x74\x3b\xdf\x88\xb6\xa3\x37\x62\x61\x65\x4d\xce\x11\xb7\x54\x73\x2c\x37\x9c\xa3\x7a\xc2\x09\xfa\xd2\x83\xf3\xe2\x2d\x5c\x2b\x17\x53\xa0\x1c\xf8\xf2\x8d\x00\x5e\x3f\x75\x13\x98\xec\x2b\xbe\xc0\xc1\x31\xa2\xdf\xeb\xf2\x20\xc5\x1f\x4d\x23\x93\xfa\x8e\xdd\x2e\x26\xcf\xbb\xd8\x17\x99\xb6\x11\xd4\x4d\x6a\x3f\x43\x21\x43\x1b\x8e\x95\xab\xe0\xd9\x02\x11\xad\x85\x0a\x01\xfd\x4c\x97\xde\xfe\x0e\x1f\x03\xbd\x22\x75\xfa\x60\xd0\x03\x14\x8a\xf4\x94\xa5\x69\xea\xf3\xd3\x9e\xee\x80\xd1\x98\x54\x03\xcc\x33\xb1\xa6\x74\x8a\x72\x34\xf7\x0b\x11\xb7\x36\x0c\x41\xc9\x4f\xbc\x39\x35\xf9\x38\xb0\xf5\x47\x52\x5a\xb7\x1a\x80\x0c\x15\xbc\x2f\xa3\xd8\xb1\x42\xd7\xc7\x2f\xa7\x26\xb8\xe8\xe5\xa7\x07\x12\xe2\x90\x54\x31\x86\xb0\x62\x47\x11\xf2\xb1\x62\x83\xa5\xe4\xb6\xcc\xf7\xb5\xe0\x74\x61\xe9\x79\xd7\x34\x69\xb2\xbe\x5b\x84\xf7\x4f\xf3\x61\x41\x2d\xa9\x58\x17\xaf\x5e\xbc\xfc\xeb\x8f\xaf\x2f\xde\x5f\xfe\xf4\xe2\xaf\xcf\xde\xbc\xfe\xc3\xe5\x1f\xff\xfc\xf6\xe2\xfd\xe5\x9b\xd7\xe1\x93\x1f\xde\xbd\x79\x9d\x6c\x8a\xfc\x68\x49\xc9\xc7\x52\x43\x23\x52\xb9\x83\x0e\x8d\xce\x09\x1f\xe1\xe9\xc3\xb1\x15\x90\xa3\x93\x9f\x64\x27\x26\xc1\x59\x26\xd1\xf6\x12\x68\x77\xd1\x50\xea\x0f\xf5\x18\x3c\xed\xdb\x5e\xf0\x3b\x94\x9d\x3e\x40\xd1\xeb\x5e\x9c\xf3\xba\x6d\xc0\x6f\x1d\x78\xff\xf4\x4a\x00\x96\x52\x6b\x68\xc6\x25\xad\xdd\x1d\x0f\x7a\xc9\x2e\x75\x1e\xcd\xf1\x55\xe9\x62\x71\xaa\x99\xf7\x23\x1f\x74\xac\x01\x78\xb6\x02\xe3\x8d\xc6\xce\x53\x71\x1a\xf6\xcc\x1b\x4b\xb4\x42\xe4\xf5\xe7\xb7\x97\x6e\x27\xc0\x4a\xaf\x3e\x1b\xdc\x1a\x9c\x57\x3a\xf9\x0a\x1f\x0a\xe6\x68\x9d\xfc\x2a\x58\xde\xb9\xee\x27\x20\x2b\x0e\xfe\x22\xd8\x4a\xf9\x26\x07\xa1\xeb\x1a\x3e\x19\x57\x38\x16\xbf\x77\xb9\xa7\xcb\x56\xdf\x88\x19\x08\xd7\xcd\xc2\xf0\x19\x5e\xa4\x00\x78\x16\x5e\xd4\x71\x91\x01\x2f\xe6\xdb\x86\x5a\x1c\x73\x48\x43\x66\x9f\xc6\xcc\x9a\x15\xd8\xfc\xcc\x45\xd4\x9e\x82\xcc\x3a\x62\xe6\x75\x74\xb2\x63\xbf\x9f\x72\x46\x07\xed\xb6\xb5\xa6\xee\x2a\xb8\xe5\x74\x3e\x71\x93\xbd\x5d\xcc\x55\xe3\xc1\xf2\xb1\x8d\x23\xcd\x1e\xec\xc2\xa7\xe1\xfc\x4c\x18\x02\x34\xe8\xd6\xb3\x04\x59\x83\x15\x47\x15\x8c\x59\x34\x2f\x95\xf3\xc6\x6e\x8e\xe2\xc3\x20\xef\x94\xae\x98\xf1\xf2\xc7\x41\x2d\x9d\x01\x68\xcc\x7c\xb8\x26\x49\xa7\xe1\x06\x6c\xf9\x96\x16\xf3\xce\x51\x01\x42\x52\x10\xf6\x94\xcf\xa6\x1e\x5b\x4a\xaf\xc6\x33\xa5\xeb\xc8\xac\x6f\xd5\xae\xc8\x9d\xc3\x9f\xef\x2a\x2e\x91\x38\x21\x86\xd6\x0a\xf7\x8a\xd2\xab\xef\x8b\x25\x44\xf6\x73\xbf\x47\x19\x53\x88\x84\x24\x13\x7b\x13\xa3\x55\xe9\x68\xf6\x45\x03\xb8\xc8\xa4\xac\x4d\x89\x56\xef\x0e\xe1\x7a\xe7\x44\xc7\xf0\xb1\x82\x76\xf7\x88\x68\xf9\x72\x37\xa2\xb0\x40\xe1\x94\xc2\x3d\x9c\x7c\x62\xcc\xa7\x08\xf9\xa4\x14\x4f\x74\x6b\x45\x39\x5c\x48\xfe\xec\xb4\xe3\x97\xe8\x1e\x30\x94\xfb\x92\xdf\xba\xbb\x25\xf3\x68\xc7\xc3\x5d\x05\x60\x22\xf9\xf8\x8e\x63\x11\x46\x65\x1a\x43\x5e\x4d\x92\xdf\x27\xa4\x20\xc5\x67\xf5\x66\xb2\x5a\x41\x50\x0f\x5d\x6e\x8a\x30\xdb\x88\xff\xd5\x49\xbb\xea\x1c\xf9\xda\x6e\xd0\xcf\x36\xd4\x02\x93\x91\x45\xed\x8c\x63\xf6\xd7\xdf\x68\xe4\x44\x99\x33\x8c\x2c\xba\x33\x5e\xea\x51\x28\x54\x8d\xb1\x07\x04\xe2\x1a\x63\x63\x87\xca\xc6\x2c\x84\xe9\x7c\x8b\xe5\x8a\x89\x9b\x21\xa6\x0f\xd0\xc8\x5e\x9a\x85\x13\x6b\x70\x98\x75\x9b\x46\x25\x82\x83\x6b\x38\x24\x75\xf2\xa2\xfe\x10\x6c\x42\x5f\x1c\x2b\x79\x72\x8e\xcb\x26\x3c\x97\xaf\xff\xf0\xa6\x4c\x88\xf8\xe0\x0e\x08\x3a\xbe\xc1\xad\xc5\xa9\x5d\xd4\x05\x07\xd3\x8c\x5b\x0b\xde\x6f\x30\x67\xfd\xee\x42\x12\xbe\x83\x47\x34\x88\xd2\xad\x94\x5e\x1c\xc5\x80\x2b\x2a\x9b\x61\xb5\xaf\xb2\xc7\xc2\xf9\x41\x63\x95\x2f\x5c\xe0\xf1\x0a\x57\xe8\xbb\xce\xb7\x0c\x8c\x21\xc3\xdd\xca\x70\x08\x58\xb7\xe1\x28\x0b\xa7\x78\xbf\xe9\x56\x6d\xe8\x74\x50\xc0\x60\xff\xaf\xe4\x13\x88\xf6\xe9\x29\xed\xf6\x14\x67\x64\x6b\x16\xdd\xda\x46\x63\x86\x68\xd0\x2f\xd0\x0f\xa2\x2b\xa0\x32\xc1\x27\x65\x4f\xdb\xbe\x99\x78\x43\x46\x54\xe9\xe8\xa7\xe9\xb3\x52\x85\x35\x01\xb8\x0e\x25\xe7\x89\x69\xd0\x36\x8e\x8f\xe8\xbb\xf3\xc6\x54\x2b\x3c\x05\x0f\x4d\xd8\xfd\xfa\x7c\x66\xbc\x3b\x3a\x99\x4c\x26\xd3\x89\x78\xfd\xe6\xfd\x0b\xea\x27\x8a\x37\x8c\xf1\x57\xd7\x8e\xa4\xbd\xc4\xae\x97\x18\x8f\xc5\x9e\xde\xdb\xa5\x89\xa9\x82\x92\xaa\x25\x52\x37\xe0\xaf\xd8\xab\x63\x41\xd6\x67\x37\x56\x25\xab\x64\x2d\x5b\xc7\xcd\x49\x65\x4d\x6d\xe2\x18\x07\x16\xc2\x05\x87\xe8\xd2\x20\xa5\x23\x3f\x18\x96\x63\x2d\x22\xad\xe6\x97\x52\x67\xbd\x6a\x2b\x30\xd2\xb3\x8b\x1f\x41\xe9\xcd\x97\x4f\x7b\xe8\x95\x89\x55\x4d\x57\xc3\xb8\x0e\x74\x20\x7d\xf8\x47\xaf\x91\xe3\x9d\xa9\xce\x9a\x76\x41\x15\x08\xd1\xcc\x1e\xf5\x83\x6d\x52\xcb\x66\xf3\x77\xf6\xc6\xb3\xa5\x52\x99\x1a\x72\xf0\x57\xd6\x75\xbf\x2b\x63\x6a\xb7\x8a\x1a\x08\xc1\x96\xed\x8f\x09\x76\x71\x2e\xae\xc1\x74\x8b\xae\xa9\x33\x7c\xf6\xc7\x69\x31\xc5\xd8\x2a\xff\x05\x61\x1d\x56\x79\xe6\x22\x48\x7e\xea\xb8\x04\xe9\x76\xf5\x68\xdb\x82\x5f\xcb\xf6\x00\x2e\xff\xe4\x35\x07\x52\x39\x89\x94\x06\x16\xed\xee\x0a\xd2\x0a\xaa\x6d\x94\x4f\xd5\x2a\xbf\x2c\x93\xbd\xa5\x47\xff\xb3\xa0\x6d\x7c\x28\xee\x5f\xc7\xe1\xdb\xa3\xbd\xef\x63\x1c\x45\x4e\x86\x5f\x1f\x0d\x1e\xc6\x28\xfe\x74\xc0\x5e\x76\x6e\xe5\xac\x01\xe9\x8a\xa0\xff\xed\x3b\xe3\xad\xf4\xf7\x77\xfb\xce\x76\x01\xec\x63\xa3\xa0\x3b\x92\x6a\x37\x2d\x02\xbc\x83\xb1\x8b\xe2\x55\xd8\xb0\x0e\x06\x2e\x8f\x28\xb0\xf4\x4a\xb6\x47\xe1\x82\x1f\xbd\x0c\x5b\x23\xc3\x2d\xfc\x5f\x0f\x5e\xfa\x5b\xaf\xf3\x86\x9c\x41\x33\x5e\xc1\x21\x1d\xac\x5f\x62\x29\xe5\x4e\x5c\xa9\x1a\xb4\x57\xf3\x0d\x75\x1f\xc6\x37\x09\x8c\xf6\x90\x2d\x08\x44\xde\x2e\x90\xa8\x09\x39\x77\x24\x37\x76\x71\x56\xa0\x74\x07\xa4\xe8\xb0\x3f\x18\xd6\xc2\xbd\x7f\x5f\x88\xf7\x1e\xfa\x50\xac\x04\xe8\xb2\xe6\x6e\x5a\xd0\xb2\x55\x0f\x97\xf1\x1b\xfe\x78\x71\x75\x29\x9e\xbf\x7b\x79\x7b\xb3\x59\xcc\x46\x4a\x4d\x39\xcb\x67\x4a\xbe\x4a\x76\xbe\x4c\xd3\x05\x19\x3a\xac\x8e\x2e\x5b\xc8\x06\xc3\xe8\x01\xfb\xcd\xbd\xb9\xc9\x0f\xf4\x82\x76\x1c\x25\x95\x94\xa8\x1b\x3b\xe9\x65\xfd\x66\x06\x8d\xc9\x49\x24\x43\x4b\x6e\x06\x18\x5b\xe6\x51\x98\x65\x61\xa5\x76\x73\x74\x61\x6b\x6d\x3c\xbf\xfb\x81\x69\x67\xbd\xd7\xf8\xcb\x73\x35\xec\xb9\xe6\x57\x52\xc9\x32\x4c\x20\x3c\x02\x13\x83\xcc\xe0\x71\xb1\xe3\x03\xbd\x36\xef\xb3\xac\x29\xd1\x45\x85\x4a\x11\x95\xb6\x57\xc8\xc0\x6b\xdd\xeb\x0d\xff\x62\x19\x3e\x85\xed\x15\x52\x7a\x5c\x3d\x7b\x40\x63\xf8\xea\xf9\xf7\x77\xe8\xe3\x57\xa6\x7e\xae\x9c\xed\x70\xd0\xf7\x5d\xbd\x00\x9f\x68\x81\xae\x13\x07\x1d\x2f\x1f\x5f\x63\xe1\xb5\xd2\x63\x79\x2d\x15\x26\x27\x1e\x22\xa0\x7a\x81\x59\x64\x9d\xbb\x76\x8f\xd7\x17\x23\x88\xce\x33\xef\xed\xaf\x12\x5f\x97\x92\x5a\xc0\xb5\xaa\x38\x1c\x39\x48\x07\x97\x5a\xc8\x99\x33\x4d\xe7\xf3\xa2\x96\x9a\xf0\x73\xca\xc0\xe4\x0d\x59\x2c\x71\x52\x33\x17\xd3\xde\x96\xb8\x6c\x74\x2d\x3f\x8e\x3b\x5d\xfc\x96\x17\x4a\xe9\x7d\xc3\xc0\x75\xf1\xf1\x17\xc6\x4a\x74\x85\xe5\x05\x08\x15\x11\x2d\x9f\x87\x90\xa2\x62\xf1\xeb\x54\x0e\xbb\x8d\x94\xa0\x6b\x36\xce\xc4\xbe\x07\x27\x09\x8f\x84\xc1\x21\xb6\x08\x87\xbd\x29\xa2\x27\x7a\x0b\x8f\xe9\xd6\xf2\x7d\x7d\x38\xb9\x31\xa8\x75\xc1\xfa\x97\x59\x50\xed\x38\x71\x3a\x60\xbb\x70\x6e\x49\xe7\xd4\x42\x0f\x9e\xe5\xc2\x6d\xe4\x89\xcc\xe0\xcf\x13\x71\xa9\x05\xe6\x2b\xfb\x72\x41\xe5\x8a\xe4\xdf\x94\xa9\x8d\x48\xc5\x6c\x97\x68\x55\x72\x4e\xbe\x4c\x2e\xcb\x38\xc3\x44\xa0\x5b\x94\x73\xca\x30\x78\xc8\x86\x2c\x49\xf1\x79\xd7\x08\x7e\x20\x18\x3e\x7a\x47\xcf\xcf\xb3\xfd\x0b\x16\x9e\x38\xa1\x4d\x7a\xed\x86\x1d\x6a\x42\xf2\x9b\x30\x3b\xde\x9e\xef\x41\x4f\x81\x66\xa3\x7b\xd8\xa5\x14\x81\x08\xa7\x03\x1f\x34\x07\x87\x0f\xe4\x8c\x84\x63\xa7\x35\x2d\x1d\x48\x74\x3d\x03\xb4\x4e\x06\x4f\x18\x0b\x0b\x0b\xe5\xbc\xdd\x3c\x86\x56\x3f\x74\x3a\xe3\xb2\x0e\xed\x8e\x2e\x3c\x5b\xe7\x79\x0c\xeb\xd6\x6f\x4e\x32\x6e\x93\x87\x79\x07\xad\x94\x6b\x2f\x1a\x33\xeb\x25\x7a\xef\x5e\xf3\x52\xd7\x5c\xa7\xab\xe6\xfd\x69\x73\x82\x51\xd4\x75\x68\x4a\x2c\x73\x22\x83\x47\xba\x82\x2d\xd2\x5f\xb3\x05\x9c\xf8\x44\xb8\x92\xf7\x77\x70\x6f\xb5\x24\xaa\xc1\x43\x55\xbc\xa1\x56\x76\x5f\x56\xf3\x1d\x57\xa0\xcf\x40\xe2\x26\x8e\x55\xd6\xd6\x8b\x26\xca\x89\x52\xd1\x45\x55\xb4\x44\x6e\x31\x61\xfd\xa1\x74\x03\x7c\xa8\xaf\xa7\x1b\x2c\xf3\xcb\x52\x3d\x37\xc6\x96\xe8\x17\xfc\x3e\x85\x8c\xaf\x25\x2e\x41\x4c\xaf\x4c\xfd\xae\x85\xea\x3d\xac\x03\xc4\x80\x09\x33\x5d\x95\x92\x9c\x73\x96\x43\x39\xdd\x74\x12\x58\xc3\xa4\x35\x75\x1a\x47\x5a\x87\x82\xa6\x1e\xe5\x24\x8b\x72\x4c\xd1\xde\x86\x92\xa7\x78\x64\xac\x88\x75\xde\x4a\x0f\x0b\x55\x89\x35\xd8\x05\x36\x3f\xa9\x96\xb1\x36\x6b\x10\xaf\xd9\x7a\x20\x31\xdf\x79\x64\x4b\x65\xd6\x6b\x7c\x26\x05\x46\xc1\x94\xc7\xb5\x12\x6f\xe9\x3f\xa1\x3e\x78\x6b\x7d\xbf\xf1\xd1\x5a\xb3\x06\xbf\x84\xee\xde\xed\xd6\xee\xe3\x98\xbd\x4a\xab\xc4\xc2\xb4\xb2\xc3\x52\xfe\xeb\xb8\x32\xeb\x56\x7a\xec\x7f\x1b\x9d\x3f\x84\xb7\x4b\x4f\x22\x95\xa8\x36\x8c\x0a\xc7\xfd\xca\x68\xe5\x8d\x9d\x26\x85\x31\x97\x33\xd3\x2d\x89\xed\xb8\x58\x8e\x56\x56\xb6\x43\xef\x6a\x8c\x8e\x94\x2e\xd6\x12\xe0\x78\xa7\x29\xe2\x42\x09\x92\x9c\x99\xc4\x0d\xc8\x68\xd8\x2b\x55\x59\x73\x45\xf8\xc2\x29\x5f\xd1\xa7\x13\xf1\x6f\x17\x6f\x5f\x5f\xbe\xfe\x23\x11\x3d\x99\x8d\xc5\x13\x5b\xbb\xb6\x91\x9f\xb3\xc4\xb0\x27\x07\x65\x8a\xea\x81\xca\x58\x30\xee\x2c\x9f\xde\x38\x82\xf9\xf3\x55\x79\xa2\xd8\x48\x01\x7f\xff\x4b\x14\x5f\xb9\x1c\x23\x17\x12\x90\x75\xc0\x79\x79\x50\x4f\xc4\x5f\x4c\x87\x48\xc3\xec\xd8\xd6\xd4\xe3\x35\x83\x18\x65\x2f\xf7\x3e\x49\xe2\x6f\xeb\x84\xd3\xf3\x6f\xca\x2f\x0d\x07\x1f\x8a\x8f\xde\x94\x58\xc5\x49\xb7\x66\x50\xbb\x5b\x17\x3f\x02\x0f\x6e\x81\xb0\x43\x5c\xaa\xa4\x7c\xee\xa1\x84\xb0\x5e\xe4\xde\x83\xb6\xfa\x7b\x96\xbc\xbf\xa9\xb8\x7b\x65\x9a\x66\xbb\x25\x49\x8f\x1e\x72\x9c\x9c\x80\x2a\x64\x47\xd7\x34\x5c\xab\xf1\x90\xf6\x65\xd7\x34\xe2\x1d\xd7\x6e\x20\xd9\x38\x8a\x4f\x87\xe5\x63\x51\x07\xbb\x20\x5a\x53\x97\xd5\x64\xfd\x27\x53\x31\x4a\xe1\xad\x82\xeb\x21\x1b\x26\xd5\x8b\x9c\x3a\x3a\xbd\x57\x98\x74\x31\xe2\x0b\xe5\x72\xc5\x9b\xa1\xb9\xc0\x29\x15\xdf\x1a\x8b\xaf\xae\xa2\xda\xbb\x31\xdd\x93\x22\x35\x8f\x58\x53\x59\x75\x42\x6f\x66\xa5\x45\x71\xda\x0c\x59\x04\x21\x6e\x70\x5a\x08\xa9\x2b\x46\xf8\x94\x74\x68\x7a\x5a\x92\xe0\x2b\xb4\xf6\x00\x36\x4e\x8a\x9b\xdc\xee\x57\xb9\xdd\xab\x72\x13\x38\x43\x32\xe0\x3f\x09\x5c\x64\xd2\x58\xba\xe7\xba\x75\xf4\x46\x0d\xf1\xaa\x38\xfd\xb3\xb5\x18\x12\x8b\x05\xb9\x74\xa1\xd2\xc6\xfb\x4f\xd1\xee\x80\x26\x6c\x10\x9d\x74\xb8\xbf\x11\x81\x2f\x75\xba\xea\xe1\x42\xd3\xf9\xc7\x48\xc9\x3f\x38\x6f\xa1\x33\x3c\xd4\x45\x3f\x24\x4d\x2c\xe3\xe2\xaa\x87\xf2\xf5\x8c\xcb\xb9\x68\x60\xee\x05\x2a\xdc\x04\xc9\x30\x60\x12\xa3\x0e\x72\x05\x3a\x2b\xa2\x3b\x49\x2e\x9f\x4f\xcf\x56\xea\xc5\xa1\xc2\x79\x8c\x03\x68\x60\x63\x30\xea\xc0\x66\x3b\x3a\x3d\xed\x3b\xd4\xba\xb9\x0f\x2b\xa2\xb3\x4e\x2c\x67\x44\xfb\xe1\xda\xa4\x98\xd5\x93\x96\x4c\x82\x98\x5b\x93\x95\x90\x4d\xe3\x9b\x42\xc2\x9a\x70\x8c\xba\x1f\xe7\xc2\x4c\xb6\x56\x56\x90\x23\x32\x77\x44\x46\x3f\x33\x1f\x7b\xd0\xa5\x30\x99\x2b\x09\xdf\x5b\x0c\x2f\x3b\x29\x48\xa2\x86\xcd\x6e\x5a\x10\xd3\x7e\xb7\xbb\xda\x54\x2b\xb0\x34\xfd\x07\x67\x74\xc1\xc7\x39\x15\xe4\x61\x1c\x0d\xa8\x1d\x72\x9a\xca\xb6\x6a\xe8\x8b\x3f\xc6\xd6\x19\x1c\x26\xde\xdd\x52\x97\x43\xd9\xe2\x99\x59\xb7\xaa\xe1\x62\x48\x29\x38\xdd\x88\x94\xe7\x30\x6e\x24\xd4\x04\xfa\x01\xc5\x56\x56\xab\x70\xf0\x01\x3b\xdf\xd1\x00\x0e\x27\x2a\x8e\xdc\xa7\x37\x26\x91\xb1\xc4\x22\xfe\x91\x90\x4e\xdc\x40\xd3\x84\xff\xfe\xe5\xe2\xd5\x4b\x74\xe7\xfc\xef\x57\x2f\x07\xcf\x97\xb3\x02\xcb\xec\x2b\x3e\x56\xee\x45\x03\xd2\x79\xf1\xcf\x7f\x54\xdf\xe3\xc3\xe0\xf8\x04\x05\x6b\xb1\x78\x37\x7b\x91\x6c\xde\xc8\xac\x53\x4d\x3d\x8a\x2e\x18\x9c\x92\x5d\x58\x3d\xf2\xbc\x0a\xf2\x8e\xf5\x33\x1c\x82\xf3\xf5\xca\x80\x8a\xbf\xb1\xd1\x52\x76\x87\xe8\xb9\x5f\xe3\xe9\x9f\x8c\x8a\x57\x8b\x41\x63\x47\x62\x02\x3b\x3b\x21\x1f\x85\x92\x56\x1c\x78\x5f\x57\x3a\xe4\xa1\x12\xbe\x15\x57\x34\xc9\xfb\x4d\x0b\x7b\x74\xab\x48\xbf\xbc\x1c\xa5\x58\xe6\x9e\x68\x73\xe9\xfc\xf8\x83\xb4\xd4\x17\x8d\xe9\x6e\xc7\x4b\x14\xfc\xd5\xc9\x24\x7a\xcc\x66\xc6\x2f\xcb\xe1\xe8\x44\x8c\xe3\xf1\x49\xd4\xa8\x7a\x8c\x84\xbf\x31\x3d\x46\xfd\xa3\x4a\x1d\x2c\x73\xe0\x07\x9f\x1f\x26\x4d\x73\x94\x9a\x70\xa4\x19\x57\xca\xc7\x8e\xdd\xad\x85\x0a\x6a\xd0\x15\x08\x13\xdb\x22\x67\x40\xa2\x4f\x44\x07\x76\x59\x51\x6b\xf0\xcd\x24\x60\x82\xde\x87\x56\x7a\xde\x74\x61\xb0\x4b\xc5\xe1\x4d\x57\xf2\xe1\xd8\x84\x25\xac\xd8\x7f\xb7\xb9\xf4\x1c\x62\x87\x1e\xe4\x16\x45\xad\x72\x64\xc0\x73\x65\x9d\xef\x61\x3c\x79\x3d\xc8\x4d\x99\x02\xfa\x34\xa0\x57\xeb\xc5\xf8\xd5\x46\xc0\x47\xe5\x30\xc2\xb7\x8a\xfe\xce\x75\x30\xe4\x61\xab\x4f\x18\x7d\x59\x24\x19\xa2\xb5\x7e\x80\xd6\x7b\x3b\x5f\x7c\x1b\x66\xd9\xdd\xbd\xbc\x1f\x42\x29\x6d\xca\xbe\xd7\x91\xdd\x06\xbb\xea\xb6\xc8\x1a\x2d\xda\x4c\x06\x0a\x5a\xc1\x86\x83\xb5\xde\x09\x7e\xd4\x94\x08\xa4\x2e\x0b\x71\x92\xf8\x6f\x4c\x25\x1b\xec\xf0\x4a\xd2\x53\x60\xd7\x17\x0e\x7e\x52\x25\xd5\x34\xd6\x6b\x9b\xd9\x07\xa8\xb8\x6e\x04\x5b\xad\x84\xf9\x3b\x97\x1c\xaf\xb9\xc4\x3a\xb0\xf7\x9a\x2b\xd0\xa6\xa9\xde\xfb\x18\x3e\xca\x75\xdb\xc0\xb9\x98\xfa\xc6\x8d\x0b\xd0\xe3\x27\x27\xa4\xc5\x73\xef\x21\x72\x10\xf5\xb6\x88\x79\x07\xf4\x4c\x54\x82\x6b\x22\xae\x6e\x5f\x17\x19\xdd\x52\x2d\xe2\xe6\x5b\xab\x8c\x55\xd8\x75\x83\x4a\x72\xb2\x0b\x1b\xb5\x6c\xc4\x79\xde\x0c\xb7\x6a\x1c\x51\x4d\x65\x6f\x0b\x2b\xd8\xc4\x55\x08\xd8\x70\x87\xf9\x0f\xa4\xb7\xeb\xad\x0f\xa3\xf6\x4e\x78\x2c\xb3\xa5\x64\xdb\x5a\x23\xa9\x41\x98\x83\xec\x75\x0e\x67\x8a\x2d\x8e\xcb\xc6\x84\xca\xc5\x8c\x07\xc6\x83\x9b\xf6\x12\x33\x94\xcd\x74\xc0\xdd\xd0\xd2\x4d\x9c\x9b\x60\x40\x21\x2b\xc8\x98\x2b\x31\x8f\xf5\x49\xfb\x8f\x69\xb4\xb5\x29\x12\xb4\xf4\xbd\xbc\x65\x48\x51\x7e\xb0\xe7\x43\xec\xd0\x8c\xbe\x1f\xc2\x34\x49\xc7\xd8\x41\x27\xfb\x85\x88\xdb\xa8\xc0\x97\x17\xac\x11\xc7\xc7\x00\x7c\xd7\xa6\x6e\x04\x8f\xb4\x7b\xf3\xa1\xfd\x56\x0f\xe9\xab\x8f\xe4\xdc\x0b\x7e\x37\x6e\xec\xc1\xae\xf9\x20\x0e\xb4\x42\xde\xbf\x7c\x27\x8a\x51\x38\x62\x24\x1a\xb5\x02\x31\x85\x7a\x01\xe1\x88\x5b\xe9\x1c\x3f\x72\x40\xf2\xd0\x02\xe8\xca\x6e\x5a\x3f\xdd\x55\x27\x9a\xdd\xd6\x74\xe5\xb6\xeb\x45\x8b\xa6\x97\x7b\xaa\x46\x07\x24\x7a\x8f\xcd\x0c\x3b\xf4\x62\x4f\xcc\x5e\x79\xef\xad\xf0\xf1\x56\x3e\x09\xca\xec\x56\x39\x04\xd8\xd2\xf4\x8b\x3c\xbe\xb8\xaa\x04\xeb\x60\x47\x5c\x3f\x98\x33\xa0\x51\x0d\x3e\x2a\x8c\xcf\x9f\xcf\xc2\xfd\x0d\xff\xfa\xe5\x88\x5c\x0c\x94\x11\x94\xaa\x53\x39\xfb\x2f\x2f\x3e\xe2\x28\x4b\x2e\x87\x4f\x29\xb1\xc4\xa4\xd8\x3b\x1f\xbd\x14\x39\x54\x11\x74\x88\x11\xbd\xbc\x79\xa3\xc8\x6d\x92\xbc\x93\xd8\x74\x44\x24\x73\x58\x14\x5d\xdf\xd8\x1c\x3c\x3a\x3b\xba\xc7\xb9\x0c\x4e\x24\xa9\x1e\x7b\xcf\xe5\xb0\x04\xaf\x5d\x54\x53\x0a\xdb\x87\xa4\x9c\xcc\x68\x1f\x90\x62\xc2\x47\xd9\x99\x2b\x98\x76\xbe\x0c\xd5\xc4\x6b\x8f\xf1\x90\x2f\x43\x35\x3c\x65\xa4\x9d\x2f\x41\x35\x31\xc5\xe0\xb0\xdb\x2c\x3f\x91\xed\xf4\xda\xeb\xff\x4a\x9c\x67\x97\xa4\xfd\xd2\xa4\xd4\xdf\xd7\x7f\x51\xd2\xc1\x94\xb4\x5f\x27\x3a\xf0\x88\xca\x9a\xce\x01\x75\x71\xee\x83\x4b\x1e\x71\xc4\x6b\x34\xd4\x7a\xba\x75\x8e\x85\x93\x05\x16\xa0\x2e\x66\x9e\x88\xd2\x75\x97\xe4\x7a\x4f\x23\xc0\x9c\x0d\xd5\x00\x47\xdf\x79\xc6\x59\xf1\xd0\x6b\xac\x2b\x08\x98\x44\xb5\x1c\x11\x68\xa9\xfd\x1d\xdb\x8b\xfc\x46\x26\x76\x6b\x4b\xd9\x87\x0e\xaa\x2e\xc9\x9d\xf8\x0a\x9b\xd1\x93\xcb\x79\x5c\x16\x1a\x2c\x9f\xc2\x94\x9d\xc2\x72\x8e\x0a\x10\x59\x2b\x31\x17\x24\xf6\xb9\x28\x36\xc8\x73\x3f\xbb\x40\x32\x8f\xaf\x89\x05\x85\x0a\xa9\xe2\x5a\x36\xaa\x8e\xcf\x06\x29\xbd\x40\xa0\x96\xc6\xa6\x8a\x06\x22\x9e\x63\xfe\x69\x92\x5c\x8b\x13\x77\x5d\x9d\xc4\xbc\x76\x6a\x00\xcc\xd1\x72\xa5\xe7\x56\x52\x88\x3b\xe8\x6f\xfc\xb4\x3a\x0c\x14\xfd\x61\x89\x0b\x3d\xbd\xf1\x90\xea\xd4\x9d\x4a\xfa\x97\x64\x1d\xfb\x89\x37\xa6\x44\x67\x45\xe6\x0b\xb0\x90\xec\x4e\xfd\x72\x2c\x24\xde\xf6\xff\x38\x16\xa2\x34\xdd\x8f\x71\x50\xc4\x4b\xdd\x7e\xdc\x9a\x46\x55\x07\xe9\x37\xa5\x29\xc1\x8d\x5e\x6b\x90\x0d\xed\x20\x2e\x10\xdb\xaa\xc4\x1a\x25\xac\x87\x0d\x9a\x3f\xf7\xa6\x2c\x9b\x4f\xbd\x85\xd8\xab\x83\x07\x7d\x59\x25\x2e\xc7\x53\xe8\x61\x97\x5c\xc2\xfb\x60\x59\x10\xb1\x4b\xda\xf7\xb1\xfc\xb7\xcc\x7d\xe9\x1c\x5b\xd1\xcc\x9d\xc2\x3f\x79\x00\x16\xec\xe5\x55\xa9\x52\x6b\x47\x52\xc0\xea\x5b\x37\x1e\x6c\xc7\x9d\x05\x66\xf6\x4f\x83\xdf\x8a\x0b\xa6\x6c\xae\xe5\xce\x0c\x4c\x39\x4e\x29\x85\x6b\xd3\x5c\xa7\x26\x8f\xe1\xd7\xdd\xec\x03\x83\x55\x2d\xa5\x5e\x3c\x06\x33\x98\xb7\x7d\xdf\x92\xfa\x12\xed\x9e\xb9\x87\xf8\xf9\x67\xd9\xaa\x85\x35\x5d\x7b\xf6\x0b\x57\x8e\x9f\xff\xb2\x52\xba\x3e\xff\x39\xf1\xea\xb3\x5f\xd0\x0e\x19\x2c\x7f\x7f\x92\xba\x35\xe2\xdd\x6f\x10\x48\xc6\xfa\xb6\x47\x92\x19\x47\xfc\x38\x05\xf5\x5d\x6c\x4c\x2e\x91\x3d\xc5\x4e\xff\xf4\x06\x25\xda\xfc\x86\xd2\x11\xf2\x33\xea\x4e\x1c\xa3\x57\x2f\x47\x33\x4e\x12\x9f\x0b\xdc\x2a\x8b\x2a\xce\xd4\xd9\x1d\x41\xe6\x14\x3b\xd5\xcf\xa3\x8a\x7d\xa1\x24\xe7\x39\xe5\xf6\x31\x31\x9d\x97\xc2\x1b\xf4\x5a\xa3\xec\xb7\xfa\x7b\x04\xe1\xda\x2f\x93\xee\x87\xc5\x73\x98\xe7\x17\x0f\x54\x03\xd4\x31\xab\x9f\xbd\xf6\xe5\xb2\xda\xd4\x30\x1e\xbc\x08\x73\x6b\x1d\x6f\xa2\x2a\xc3\x5d\xa9\x0c\x77\xfc\x78\x6d\x6a\xb8\x0a\x13\xc5\xa9\x7f\x13\xbb\x8e\x3d\x54\x4a\xc7\x6f\xb8\x75\xec\x2e\xbf\x77\x1f\x4d\x31\x61\xb4\xac\xa4\x88\x7d\xb9\x29\xc9\x23\xce\x65\x52\x8b\x00\xc4\x67\xd6\x95\x52\x7c\x56\xd7\x62\x2d\x57\xd4\x52\x38\xa5\x8e\x07\x31\x72\x71\x75\x29\xd6\x52\xcb\x05\xe4\x9e\x98\x5b\x60\xee\xc9\x55\xfa\x4f\x42\x9f\x9f\x5a\x6c\x7a\xf0\x53\xc9\xa8\xee\xf5\x9e\x4b\x26\x41\xe8\x65\xc5\xbd\xa5\xf9\x98\xfa\x2f\x06\xf5\x9e\xb3\x38\xf0\xed\x09\x7a\x86\xc9\x2f\x39\xbb\x32\x4c\x1e\x4e\x58\x39\xd1\x76\xb3\x46\xb9\x65\x2f\xd1\xea\xac\xbf\xc4\x81\x4f\x2c\xe1\xbb\x1d\x79\x7e\x97\x1f\x77\x8d\x17\xab\x78\x6e\xe9\xe9\xe0\x9d\x90\x34\xd7\xf8\xd3\x77\x14\xee\xd7\x38\xd6\x9e\xe5\x97\xf8\xf6\x6d\x92\x2b\xeb\x26\x18\xf9\xcf\xed\xcf\xbc\x69\x20\xe5\xf1\x3f\x90\x56\x94\xca\xcd\x31\x6d\xeb\x7d\x5a\xd1\x51\x6c\x71\x3b\xf1\xb7\xfc\x24\xbf\x76\x77\x3c\xeb\xbc\xa8\xa9\xe2\x82\xa3\xeb\x27\x31\x05\xc2\x51\x3b\xea\x25\xd4\x1d\xe6\x70\x78\x83\xec\x91\x9f\x1a\xc0\x90\x1e\x2a\x3a\x12\x2b\x8d\xc5\x3b\x80\x9e\x82\xb5\x95\x28\xe1\xce\x2a\xa3\x2b\x68\xbd\x3b\xe3\x59\x95\x5e\x8c\x63\x59\xc9\x19\xce\x33\x96\xba\x1e\x67\xfc\x9d\xa5\x48\x3a\x76\x30\xac\xc1\x4b\xd5\xc4\x26\x67\xe9\xab\x22\xeb\x3c\xb7\x05\xc4\x58\x95\x53\x6b\xd5\x48\x7c\xc1\x01\x8b\xf9\x22\x93\x0b\x17\x0f\xc1\xa6\x84\x86\x91\x98\xfe\x08\x9b\x9f\xbf\xfb\x29\x98\x31\xbf\x9c\xbf\x98\xcf\xa1\xf2\x3f\x9f\xbf\xa3\xb6\xe4\xbf\x4c\x47\x4c\x22\x68\xe6\xa0\x7a\xe3\xfe\xd6\x05\x5e\x31\xb3\xb2\x5a\xc5\x76\x86\xd8\x81\x97\x5b\x30\xd3\x3b\x0e\x31\x96\x72\x2e\xc6\x62\x8a\xa2\xc5\x9a\x06\x26\x7d\xcc\x70\x45\xf6\x6b\xf3\x8e\x51\x3d\x8d\x5f\x0f\x3e\xe4\x67\xd6\xca\x1a\x98\xf3\xd7\xe6\x05\x65\x36\x9f\xff\xe6\xe9\xd3\xa7\x64\x06\x8c\xc5\xb4\x56\x6e\x85\x09\x19\xce\xd5\xe7\x57\x68\xfc\x95\xf3\x53\x2a\xc8\x23\x4d\x12\xa5\x83\x3b\x50\x35\xc5\x66\x2f\xac\x9e\xd2\x40\xb4\x83\x88\x74\xb0\xab\x73\xd6\x54\x6f\xa7\x81\x7c\xbb\xad\xac\x1e\xb6\x11\xce\x7b\x5a\xe1\x10\x49\xce\x6c\x29\x02\x55\x9a\x6a\x5f\xb1\x8b\x42\x52\x9d\x42\x9c\xb4\xc8\x14\xaf\x4c\xd3\x40\x95\x52\xb4\x73\xb9\xd0\x8c\x44\xff\xee\x9e\x8b\x29\x3e\x1a\xd7\x4c\xd9\xe2\x59\xfe\x33\x5a\x93\x86\x2b\x8e\x39\x09\xc8\x89\xd3\xd3\x1f\x24\x2c\xc0\x9e\x9e\x72\x2f\x9e\xf7\x09\x9f\xe2\xbf\x94\x82\x81\x52\x30\xe2\xbe\x13\x98\xb6\x17\xbf\x67\x00\x7a\xbd\x9b\x76\x9d\xc7\x0e\x8b\xee\x3e\xe9\x8f\xba\xe8\x52\x10\x25\x31\xda\x16\x51\x14\xba\xb4\x22\x3e\xc8\x51\xb6\xdb\xc9\xee\xe2\xad\xba\xf4\x93\x1d\x4d\xf6\x0e\x84\x88\xdf\x36\x4b\xf4\xc6\xc0\x95\xd4\x9d\xf4\x9d\xdd\xb4\xbb\xa3\x21\x45\x09\x8f\x43\x76\x6d\x0f\x6e\x8b\x40\x96\x5c\x8b\x6f\x72\x6c\xda\x42\xcb\x3a\xaa\x8c\x76\xfe\x68\xd7\xdc\x18\xfa\xbf\xe7\xe4\xa9\x77\x1c\x0e\x2e\x96\xf9\xfa\xe8\xe4\xab\xff\x1f\x00\x00\xff\xff\x00\x29\x2e\xf9\xa2\xc1\x00\x00"), }, } fs["/"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ diff --git a/pkg/util/uri/uri.go b/pkg/util/uri/uri.go index 210f169b9f..79a9f86642 100644 --- a/pkg/util/uri/uri.go +++ b/pkg/util/uri/uri.go @@ -57,7 +57,7 @@ func GetQueryParameter(uri string, param string) string { return res } -// GetPathSegment returns the path segment of the URI corresponding to the given position (0 based), if present +// GetPathSegment returns the path segment of the URI corresponding to the given position (0 based), if present. func GetPathSegment(uri string, pos int) string { match := pathExtractorRegexp.FindStringSubmatch(uri) if len(match) > 1 { diff --git a/pkg/util/util.go b/pkg/util/util.go index 69fa4cb3a8..05cdb80fa3 100644 --- a/pkg/util/util.go +++ b/pkg/util/util.go @@ -872,7 +872,7 @@ func ConfigTreePropertySplit(property string) []string { if len(cur) > 0 { tmp = append(tmp, cur) } - for i := len(tmp) - 1; i >= 0; i = i - 1 { + for i := len(tmp) - 1; i >= 0; i-- { res = append(res, tmp[i]) } } @@ -895,9 +895,8 @@ func NavigateConfigTree(current interface{}, nodes []string) (interface{}, error if isSlice(1) { slice := make([]interface{}, 0) return &slice - } else { - return make(map[string]interface{}) } + return make(map[string]interface{}) } switch c := current.(type) { case map[string]interface{}: diff --git a/resources/traits.yaml b/resources/traits.yaml index 8eac6f4a61..f1a813f106 100755 --- a/resources/traits.yaml +++ b/resources/traits.yaml @@ -579,9 +579,9 @@ traits: description: The KEDA trait can be used for automatic integration with KEDA autoscalers. The trait can be either manually configured using the `triggers` option or automatically configured via markers in the Kamelets. For information on how to use KEDA enabled - Kamelets with the KEDA trait, refer to xref:kamelets/kamelets-user.adoc#kamelet-keda-user[the + Kamelets with the KEDA trait, refer to xref:ROOT:kamelets/kamelets-user.adoc#kamelet-keda-user[the KEDA section in the Kamelets user guide]. If you want to create Kamelets that - contain KEDA metadata, refer to xref:kamelets/kamelets-dev.adoc#kamelet-keda-dev[the + contain KEDA metadata, refer to xref:ROOT:kamelets/kamelets-dev.adoc#kamelet-keda-dev[the KEDA section in the Kamelets development guide]. The KEDA trait is disabled by default. properties: