From 894054ee6f3f399d0e1c23c830a40ba2fc4be607 Mon Sep 17 00:00:00 2001 From: Katrina Rogan Date: Fri, 4 Jun 2021 14:27:35 -0700 Subject: [PATCH] Add workflow execution config matchable attribute (#182) --- clients/go/admin/config_flags.go | 9 + clients/go/admin/config_flags_test.go | 116 +- clients/go/events/config_flags.go | 9 + clients/go/events/config_flags_test.go | 34 +- .../flyteidl/admin/matchable_resource.pb.cc | 453 +++++- .../flyteidl/admin/matchable_resource.pb.h | 202 ++- .../admin/project_domain_attributes.pb.cc | 2 +- .../flyteidl/admin/workflow_attributes.pb.cc | 2 +- .../flyteidl/admin/matchable_resource.pb.go | 198 ++- .../admin/matchable_resource.pb.validate.go | 81 ++ gen/pb-go/flyteidl/service/admin.swagger.json | 34 +- .../flyteidl/service/flyteadmin/README.md | 1 + .../service/flyteadmin/api/swagger.yaml | 46 +- .../service/flyteadmin/api_admin_service.go | 6 +- .../model_admin_matchable_resource.go | 3 +- .../model_admin_matching_attributes.go | 1 + .../model_admin_workflow_execution_config.go | 16 + gen/pb-go/flyteidl/service/openapi.go | 4 +- .../admin/MatchableResourceOuterClass.java | 1259 +++++++++++++---- gen/pb-js/flyteidl.d.ts | 63 +- gen/pb-js/flyteidl.js | 145 +- .../flyteidl/admin/matchable_resource_pb2.py | 77 +- .../flyteidl/service/flyteadmin/README.md | 1 + .../service/flyteadmin/flyteadmin/__init__.py | 1 + .../flyteadmin/api/admin_service_api.py | 12 +- .../flyteadmin/flyteadmin/models/__init__.py | 1 + .../models/admin_matchable_resource.py | 1 + .../models/admin_matching_attributes.py | 33 +- .../models/admin_workflow_execution_config.py | 117 ++ .../test_admin_workflow_execution_config.py | 40 + .../flyteidl/admin/matchable_resource.proto | 11 + 31 files changed, 2423 insertions(+), 555 deletions(-) create mode 100644 gen/pb-go/flyteidl/service/flyteadmin/model_admin_workflow_execution_config.go create mode 100644 gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/admin_workflow_execution_config.py create mode 100644 gen/pb_python/flyteidl/service/flyteadmin/test/test_admin_workflow_execution_config.py diff --git a/clients/go/admin/config_flags.go b/clients/go/admin/config_flags.go index 395d21dd69..6482dde192 100755 --- a/clients/go/admin/config_flags.go +++ b/clients/go/admin/config_flags.go @@ -28,6 +28,15 @@ func (Config) elemValueOrNil(v interface{}) interface{} { return v } +func (Config) mustJsonMarshal(v interface{}) string { + raw, err := json.Marshal(v) + if err != nil { + panic(err) + } + + return string(raw) +} + func (Config) mustMarshalJSON(v json.Marshaler) string { raw, err := v.MarshalJSON() if err != nil { diff --git a/clients/go/admin/config_flags_test.go b/clients/go/admin/config_flags_test.go index 54414f0159..deeebfad37 100755 --- a/clients/go/admin/config_flags_test.go +++ b/clients/go/admin/config_flags_test.go @@ -84,7 +84,7 @@ func testDecodeJson_Config(t *testing.T, val, result interface{}) { assert.NoError(t, decode_Config(val, result)) } -func testDecodeSlice_Config(t *testing.T, vStringSlice, result interface{}) { +func testDecodeRaw_Config(t *testing.T, vStringSlice, result interface{}) { assert.NoError(t, decode_Config(vStringSlice, result)) } @@ -100,14 +100,6 @@ func TestConfig_SetFlags(t *testing.T) { assert.True(t, cmdFlags.HasFlags()) t.Run("Test_endpoint", func(t *testing.T) { - t.Run("DefaultValue", func(t *testing.T) { - // Test that default value is set properly - if vString, err := cmdFlags.GetString("endpoint"); err == nil { - assert.Equal(t, string(defaultConfig.Endpoint.String()), vString) - } else { - assert.FailNow(t, err.Error()) - } - }) t.Run("Override", func(t *testing.T) { testValue := defaultConfig.Endpoint.String() @@ -122,14 +114,6 @@ func TestConfig_SetFlags(t *testing.T) { }) }) t.Run("Test_insecure", func(t *testing.T) { - t.Run("DefaultValue", func(t *testing.T) { - // Test that default value is set properly - if vBool, err := cmdFlags.GetBool("insecure"); err == nil { - assert.Equal(t, bool(defaultConfig.UseInsecureConnection), vBool) - } else { - assert.FailNow(t, err.Error()) - } - }) t.Run("Override", func(t *testing.T) { testValue := "1" @@ -144,14 +128,6 @@ func TestConfig_SetFlags(t *testing.T) { }) }) t.Run("Test_maxBackoffDelay", func(t *testing.T) { - t.Run("DefaultValue", func(t *testing.T) { - // Test that default value is set properly - if vString, err := cmdFlags.GetString("maxBackoffDelay"); err == nil { - assert.Equal(t, string(defaultConfig.MaxBackoffDelay.String()), vString) - } else { - assert.FailNow(t, err.Error()) - } - }) t.Run("Override", func(t *testing.T) { testValue := defaultConfig.MaxBackoffDelay.String() @@ -166,14 +142,6 @@ func TestConfig_SetFlags(t *testing.T) { }) }) t.Run("Test_perRetryTimeout", func(t *testing.T) { - t.Run("DefaultValue", func(t *testing.T) { - // Test that default value is set properly - if vString, err := cmdFlags.GetString("perRetryTimeout"); err == nil { - assert.Equal(t, string(defaultConfig.PerRetryTimeout.String()), vString) - } else { - assert.FailNow(t, err.Error()) - } - }) t.Run("Override", func(t *testing.T) { testValue := defaultConfig.PerRetryTimeout.String() @@ -188,14 +156,6 @@ func TestConfig_SetFlags(t *testing.T) { }) }) t.Run("Test_maxRetries", func(t *testing.T) { - t.Run("DefaultValue", func(t *testing.T) { - // Test that default value is set properly - if vInt, err := cmdFlags.GetInt("maxRetries"); err == nil { - assert.Equal(t, int(defaultConfig.MaxRetries), vInt) - } else { - assert.FailNow(t, err.Error()) - } - }) t.Run("Override", func(t *testing.T) { testValue := "1" @@ -210,14 +170,6 @@ func TestConfig_SetFlags(t *testing.T) { }) }) t.Run("Test_useAuth", func(t *testing.T) { - t.Run("DefaultValue", func(t *testing.T) { - // Test that default value is set properly - if vBool, err := cmdFlags.GetBool("useAuth"); err == nil { - assert.Equal(t, bool(defaultConfig.DeprecatedUseAuth), vBool) - } else { - assert.FailNow(t, err.Error()) - } - }) t.Run("Override", func(t *testing.T) { testValue := "1" @@ -232,14 +184,6 @@ func TestConfig_SetFlags(t *testing.T) { }) }) t.Run("Test_clientId", func(t *testing.T) { - t.Run("DefaultValue", func(t *testing.T) { - // Test that default value is set properly - if vString, err := cmdFlags.GetString("clientId"); err == nil { - assert.Equal(t, string(defaultConfig.ClientID), vString) - } else { - assert.FailNow(t, err.Error()) - } - }) t.Run("Override", func(t *testing.T) { testValue := "1" @@ -254,14 +198,6 @@ func TestConfig_SetFlags(t *testing.T) { }) }) t.Run("Test_clientSecretLocation", func(t *testing.T) { - t.Run("DefaultValue", func(t *testing.T) { - // Test that default value is set properly - if vString, err := cmdFlags.GetString("clientSecretLocation"); err == nil { - assert.Equal(t, string(defaultConfig.ClientSecretLocation), vString) - } else { - assert.FailNow(t, err.Error()) - } - }) t.Run("Override", func(t *testing.T) { testValue := "1" @@ -276,21 +212,13 @@ func TestConfig_SetFlags(t *testing.T) { }) }) t.Run("Test_scopes", func(t *testing.T) { - t.Run("DefaultValue", func(t *testing.T) { - // Test that default value is set properly - if vStringSlice, err := cmdFlags.GetStringSlice("scopes"); err == nil { - assert.Equal(t, []string([]string{}), vStringSlice) - } else { - assert.FailNow(t, err.Error()) - } - }) t.Run("Override", func(t *testing.T) { testValue := join_Config("1,1", ",") cmdFlags.Set("scopes", testValue) if vStringSlice, err := cmdFlags.GetStringSlice("scopes"); err == nil { - testDecodeSlice_Config(t, join_Config(vStringSlice, ","), &actual.Scopes) + testDecodeRaw_Config(t, join_Config(vStringSlice, ","), &actual.Scopes) } else { assert.FailNow(t, err.Error()) @@ -298,14 +226,6 @@ func TestConfig_SetFlags(t *testing.T) { }) }) t.Run("Test_authorizationServerUrl", func(t *testing.T) { - t.Run("DefaultValue", func(t *testing.T) { - // Test that default value is set properly - if vString, err := cmdFlags.GetString("authorizationServerUrl"); err == nil { - assert.Equal(t, string(defaultConfig.DeprecatedAuthorizationServerURL), vString) - } else { - assert.FailNow(t, err.Error()) - } - }) t.Run("Override", func(t *testing.T) { testValue := "1" @@ -320,14 +240,6 @@ func TestConfig_SetFlags(t *testing.T) { }) }) t.Run("Test_tokenUrl", func(t *testing.T) { - t.Run("DefaultValue", func(t *testing.T) { - // Test that default value is set properly - if vString, err := cmdFlags.GetString("tokenUrl"); err == nil { - assert.Equal(t, string(defaultConfig.TokenURL), vString) - } else { - assert.FailNow(t, err.Error()) - } - }) t.Run("Override", func(t *testing.T) { testValue := "1" @@ -342,14 +254,6 @@ func TestConfig_SetFlags(t *testing.T) { }) }) t.Run("Test_authorizationHeader", func(t *testing.T) { - t.Run("DefaultValue", func(t *testing.T) { - // Test that default value is set properly - if vString, err := cmdFlags.GetString("authorizationHeader"); err == nil { - assert.Equal(t, string(defaultConfig.DeprecatedAuthorizationHeader), vString) - } else { - assert.FailNow(t, err.Error()) - } - }) t.Run("Override", func(t *testing.T) { testValue := "1" @@ -364,14 +268,6 @@ func TestConfig_SetFlags(t *testing.T) { }) }) t.Run("Test_pkceConfig.timeout", func(t *testing.T) { - t.Run("DefaultValue", func(t *testing.T) { - // Test that default value is set properly - if vString, err := cmdFlags.GetString("pkceConfig.timeout"); err == nil { - assert.Equal(t, string(defaultConfig.PkceConfig.BrowserSessionTimeout.String()), vString) - } else { - assert.FailNow(t, err.Error()) - } - }) t.Run("Override", func(t *testing.T) { testValue := defaultConfig.PkceConfig.BrowserSessionTimeout.String() @@ -386,14 +282,6 @@ func TestConfig_SetFlags(t *testing.T) { }) }) t.Run("Test_pkceConfig.refreshTime", func(t *testing.T) { - t.Run("DefaultValue", func(t *testing.T) { - // Test that default value is set properly - if vString, err := cmdFlags.GetString("pkceConfig.refreshTime"); err == nil { - assert.Equal(t, string(defaultConfig.PkceConfig.TokenRefreshGracePeriod.String()), vString) - } else { - assert.FailNow(t, err.Error()) - } - }) t.Run("Override", func(t *testing.T) { testValue := defaultConfig.PkceConfig.TokenRefreshGracePeriod.String() diff --git a/clients/go/events/config_flags.go b/clients/go/events/config_flags.go index 542bb0c170..36e047e0aa 100755 --- a/clients/go/events/config_flags.go +++ b/clients/go/events/config_flags.go @@ -28,6 +28,15 @@ func (Config) elemValueOrNil(v interface{}) interface{} { return v } +func (Config) mustJsonMarshal(v interface{}) string { + raw, err := json.Marshal(v) + if err != nil { + panic(err) + } + + return string(raw) +} + func (Config) mustMarshalJSON(v json.Marshaler) string { raw, err := v.MarshalJSON() if err != nil { diff --git a/clients/go/events/config_flags_test.go b/clients/go/events/config_flags_test.go index 30ea48beea..e054350031 100755 --- a/clients/go/events/config_flags_test.go +++ b/clients/go/events/config_flags_test.go @@ -84,7 +84,7 @@ func testDecodeJson_Config(t *testing.T, val, result interface{}) { assert.NoError(t, decode_Config(val, result)) } -func testDecodeSlice_Config(t *testing.T, vStringSlice, result interface{}) { +func testDecodeRaw_Config(t *testing.T, vStringSlice, result interface{}) { assert.NoError(t, decode_Config(vStringSlice, result)) } @@ -100,14 +100,6 @@ func TestConfig_SetFlags(t *testing.T) { assert.True(t, cmdFlags.HasFlags()) t.Run("Test_type", func(t *testing.T) { - t.Run("DefaultValue", func(t *testing.T) { - // Test that default value is set properly - if vString, err := cmdFlags.GetString("type"); err == nil { - assert.Equal(t, string(defaultConfig.Type), vString) - } else { - assert.FailNow(t, err.Error()) - } - }) t.Run("Override", func(t *testing.T) { testValue := "1" @@ -122,14 +114,6 @@ func TestConfig_SetFlags(t *testing.T) { }) }) t.Run("Test_file-path", func(t *testing.T) { - t.Run("DefaultValue", func(t *testing.T) { - // Test that default value is set properly - if vString, err := cmdFlags.GetString("file-path"); err == nil { - assert.Equal(t, string(defaultConfig.FilePath), vString) - } else { - assert.FailNow(t, err.Error()) - } - }) t.Run("Override", func(t *testing.T) { testValue := "1" @@ -144,14 +128,6 @@ func TestConfig_SetFlags(t *testing.T) { }) }) t.Run("Test_rate", func(t *testing.T) { - t.Run("DefaultValue", func(t *testing.T) { - // Test that default value is set properly - if vInt64, err := cmdFlags.GetInt64("rate"); err == nil { - assert.Equal(t, int64(defaultConfig.Rate), vInt64) - } else { - assert.FailNow(t, err.Error()) - } - }) t.Run("Override", func(t *testing.T) { testValue := "1" @@ -166,14 +142,6 @@ func TestConfig_SetFlags(t *testing.T) { }) }) t.Run("Test_capacity", func(t *testing.T) { - t.Run("DefaultValue", func(t *testing.T) { - // Test that default value is set properly - if vInt, err := cmdFlags.GetInt("capacity"); err == nil { - assert.Equal(t, int(defaultConfig.Capacity), vInt) - } else { - assert.FailNow(t, err.Error()) - } - }) t.Run("Override", func(t *testing.T) { testValue := "1" diff --git a/gen/pb-cpp/flyteidl/admin/matchable_resource.pb.cc b/gen/pb-cpp/flyteidl/admin/matchable_resource.pb.cc index 71e6ec7d3b..3b95d6f7b0 100644 --- a/gen/pb-cpp/flyteidl/admin/matchable_resource.pb.cc +++ b/gen/pb-cpp/flyteidl/admin/matchable_resource.pb.cc @@ -21,11 +21,12 @@ extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fadmin_2fmatchable_5fresource_2eproto extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fadmin_2fmatchable_5fresource_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_ExecutionQueueAttributes_flyteidl_2fadmin_2fmatchable_5fresource_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fadmin_2fmatchable_5fresource_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_PluginOverride_flyteidl_2fadmin_2fmatchable_5fresource_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fadmin_2fmatchable_5fresource_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_TaskResourceSpec_flyteidl_2fadmin_2fmatchable_5fresource_2eproto; +extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fadmin_2fmatchable_5fresource_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_WorkflowExecutionConfig_flyteidl_2fadmin_2fmatchable_5fresource_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fadmin_2fmatchable_5fresource_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_ClusterResourceAttributes_flyteidl_2fadmin_2fmatchable_5fresource_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fadmin_2fmatchable_5fresource_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_MatchableAttributesConfiguration_flyteidl_2fadmin_2fmatchable_5fresource_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fadmin_2fmatchable_5fresource_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_PluginOverrides_flyteidl_2fadmin_2fmatchable_5fresource_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fadmin_2fmatchable_5fresource_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_TaskResourceAttributes_flyteidl_2fadmin_2fmatchable_5fresource_2eproto; -extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fadmin_2fmatchable_5fresource_2eproto ::google::protobuf::internal::SCCInfo<6> scc_info_MatchingAttributes_flyteidl_2fadmin_2fmatchable_5fresource_2eproto; +extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fadmin_2fmatchable_5fresource_2eproto ::google::protobuf::internal::SCCInfo<7> scc_info_MatchingAttributes_flyteidl_2fadmin_2fmatchable_5fresource_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fexecution_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_QualityOfService_flyteidl_2fcore_2fexecution_2eproto; namespace flyteidl { namespace admin { @@ -61,6 +62,10 @@ class PluginOverridesDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed _instance; } _PluginOverrides_default_instance_; +class WorkflowExecutionConfigDefaultTypeInternal { + public: + ::google::protobuf::internal::ExplicitlyConstructed _instance; +} _WorkflowExecutionConfig_default_instance_; class MatchingAttributesDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed _instance; @@ -70,6 +75,7 @@ class MatchingAttributesDefaultTypeInternal { const ::flyteidl::admin::ExecutionClusterLabel* execution_cluster_label_; const ::flyteidl::core::QualityOfService* quality_of_service_; const ::flyteidl::admin::PluginOverrides* plugin_overrides_; + const ::flyteidl::admin::WorkflowExecutionConfig* workflow_execution_config_; } _MatchingAttributes_default_instance_; class MatchableAttributesConfigurationDefaultTypeInternal { public: @@ -199,6 +205,20 @@ ::google::protobuf::internal::SCCInfo<1> scc_info_PluginOverrides_flyteidl_2fadm {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 1, InitDefaultsPluginOverrides_flyteidl_2fadmin_2fmatchable_5fresource_2eproto}, { &scc_info_PluginOverride_flyteidl_2fadmin_2fmatchable_5fresource_2eproto.base,}}; +static void InitDefaultsWorkflowExecutionConfig_flyteidl_2fadmin_2fmatchable_5fresource_2eproto() { + GOOGLE_PROTOBUF_VERIFY_VERSION; + + { + void* ptr = &::flyteidl::admin::_WorkflowExecutionConfig_default_instance_; + new (ptr) ::flyteidl::admin::WorkflowExecutionConfig(); + ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); + } + ::flyteidl::admin::WorkflowExecutionConfig::InitAsDefaultInstance(); +} + +::google::protobuf::internal::SCCInfo<0> scc_info_WorkflowExecutionConfig_flyteidl_2fadmin_2fmatchable_5fresource_2eproto = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsWorkflowExecutionConfig_flyteidl_2fadmin_2fmatchable_5fresource_2eproto}, {}}; + static void InitDefaultsMatchingAttributes_flyteidl_2fadmin_2fmatchable_5fresource_2eproto() { GOOGLE_PROTOBUF_VERIFY_VERSION; @@ -210,14 +230,15 @@ static void InitDefaultsMatchingAttributes_flyteidl_2fadmin_2fmatchable_5fresour ::flyteidl::admin::MatchingAttributes::InitAsDefaultInstance(); } -::google::protobuf::internal::SCCInfo<6> scc_info_MatchingAttributes_flyteidl_2fadmin_2fmatchable_5fresource_2eproto = - {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 6, InitDefaultsMatchingAttributes_flyteidl_2fadmin_2fmatchable_5fresource_2eproto}, { +::google::protobuf::internal::SCCInfo<7> scc_info_MatchingAttributes_flyteidl_2fadmin_2fmatchable_5fresource_2eproto = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 7, InitDefaultsMatchingAttributes_flyteidl_2fadmin_2fmatchable_5fresource_2eproto}, { &scc_info_TaskResourceAttributes_flyteidl_2fadmin_2fmatchable_5fresource_2eproto.base, &scc_info_ClusterResourceAttributes_flyteidl_2fadmin_2fmatchable_5fresource_2eproto.base, &scc_info_ExecutionQueueAttributes_flyteidl_2fadmin_2fmatchable_5fresource_2eproto.base, &scc_info_ExecutionClusterLabel_flyteidl_2fadmin_2fmatchable_5fresource_2eproto.base, &scc_info_QualityOfService_flyteidl_2fcore_2fexecution_2eproto.base, - &scc_info_PluginOverrides_flyteidl_2fadmin_2fmatchable_5fresource_2eproto.base,}}; + &scc_info_PluginOverrides_flyteidl_2fadmin_2fmatchable_5fresource_2eproto.base, + &scc_info_WorkflowExecutionConfig_flyteidl_2fadmin_2fmatchable_5fresource_2eproto.base,}}; static void InitDefaultsMatchableAttributesConfiguration_flyteidl_2fadmin_2fmatchable_5fresource_2eproto() { GOOGLE_PROTOBUF_VERIFY_VERSION; @@ -272,13 +293,14 @@ void InitDefaults_flyteidl_2fadmin_2fmatchable_5fresource_2eproto() { ::google::protobuf::internal::InitSCC(&scc_info_ExecutionClusterLabel_flyteidl_2fadmin_2fmatchable_5fresource_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_PluginOverride_flyteidl_2fadmin_2fmatchable_5fresource_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_PluginOverrides_flyteidl_2fadmin_2fmatchable_5fresource_2eproto.base); + ::google::protobuf::internal::InitSCC(&scc_info_WorkflowExecutionConfig_flyteidl_2fadmin_2fmatchable_5fresource_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_MatchingAttributes_flyteidl_2fadmin_2fmatchable_5fresource_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_MatchableAttributesConfiguration_flyteidl_2fadmin_2fmatchable_5fresource_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_ListMatchableAttributesRequest_flyteidl_2fadmin_2fmatchable_5fresource_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_ListMatchableAttributesResponse_flyteidl_2fadmin_2fmatchable_5fresource_2eproto.base); } -::google::protobuf::Metadata file_level_metadata_flyteidl_2fadmin_2fmatchable_5fresource_2eproto[12]; +::google::protobuf::Metadata file_level_metadata_flyteidl_2fadmin_2fmatchable_5fresource_2eproto[13]; const ::google::protobuf::EnumDescriptor* file_level_enum_descriptors_flyteidl_2fadmin_2fmatchable_5fresource_2eproto[2]; constexpr ::google::protobuf::ServiceDescriptor const** file_level_service_descriptors_flyteidl_2fadmin_2fmatchable_5fresource_2eproto = nullptr; @@ -341,6 +363,12 @@ const ::google::protobuf::uint32 TableStruct_flyteidl_2fadmin_2fmatchable_5freso ~0u, // no _weak_field_map_ PROTOBUF_FIELD_OFFSET(::flyteidl::admin::PluginOverrides, overrides_), ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::flyteidl::admin::WorkflowExecutionConfig, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + PROTOBUF_FIELD_OFFSET(::flyteidl::admin::WorkflowExecutionConfig, max_parallelism_), + ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::flyteidl::admin::MatchingAttributes, _internal_metadata_), ~0u, // no _extensions_ PROTOBUF_FIELD_OFFSET(::flyteidl::admin::MatchingAttributes, _oneof_case_[0]), @@ -351,6 +379,7 @@ const ::google::protobuf::uint32 TableStruct_flyteidl_2fadmin_2fmatchable_5freso offsetof(::flyteidl::admin::MatchingAttributesDefaultTypeInternal, execution_cluster_label_), offsetof(::flyteidl::admin::MatchingAttributesDefaultTypeInternal, quality_of_service_), offsetof(::flyteidl::admin::MatchingAttributesDefaultTypeInternal, plugin_overrides_), + offsetof(::flyteidl::admin::MatchingAttributesDefaultTypeInternal, workflow_execution_config_), PROTOBUF_FIELD_OFFSET(::flyteidl::admin::MatchingAttributes, target_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::flyteidl::admin::MatchableAttributesConfiguration, _internal_metadata_), @@ -384,10 +413,11 @@ static const ::google::protobuf::internal::MigrationSchema schemas[] PROTOBUF_SE { 37, -1, sizeof(::flyteidl::admin::ExecutionClusterLabel)}, { 43, -1, sizeof(::flyteidl::admin::PluginOverride)}, { 51, -1, sizeof(::flyteidl::admin::PluginOverrides)}, - { 57, -1, sizeof(::flyteidl::admin::MatchingAttributes)}, - { 69, -1, sizeof(::flyteidl::admin::MatchableAttributesConfiguration)}, - { 79, -1, sizeof(::flyteidl::admin::ListMatchableAttributesRequest)}, - { 85, -1, sizeof(::flyteidl::admin::ListMatchableAttributesResponse)}, + { 57, -1, sizeof(::flyteidl::admin::WorkflowExecutionConfig)}, + { 63, -1, sizeof(::flyteidl::admin::MatchingAttributes)}, + { 76, -1, sizeof(::flyteidl::admin::MatchableAttributesConfiguration)}, + { 86, -1, sizeof(::flyteidl::admin::ListMatchableAttributesRequest)}, + { 92, -1, sizeof(::flyteidl::admin::ListMatchableAttributesResponse)}, }; static ::google::protobuf::Message const * const file_default_instances[] = { @@ -399,6 +429,7 @@ static ::google::protobuf::Message const * const file_default_instances[] = { reinterpret_cast(&::flyteidl::admin::_ExecutionClusterLabel_default_instance_), reinterpret_cast(&::flyteidl::admin::_PluginOverride_default_instance_), reinterpret_cast(&::flyteidl::admin::_PluginOverrides_default_instance_), + reinterpret_cast(&::flyteidl::admin::_WorkflowExecutionConfig_default_instance_), reinterpret_cast(&::flyteidl::admin::_MatchingAttributes_default_instance_), reinterpret_cast(&::flyteidl::admin::_MatchableAttributesConfiguration_default_instance_), reinterpret_cast(&::flyteidl::admin::_ListMatchableAttributesRequest_default_instance_), @@ -408,7 +439,7 @@ static ::google::protobuf::Message const * const file_default_instances[] = { ::google::protobuf::internal::AssignDescriptorsTable assign_descriptors_table_flyteidl_2fadmin_2fmatchable_5fresource_2eproto = { {}, AddDescriptors_flyteidl_2fadmin_2fmatchable_5fresource_2eproto, "flyteidl/admin/matchable_resource.proto", schemas, file_default_instances, TableStruct_flyteidl_2fadmin_2fmatchable_5fresource_2eproto::offsets, - file_level_metadata_flyteidl_2fadmin_2fmatchable_5fresource_2eproto, 12, file_level_enum_descriptors_flyteidl_2fadmin_2fmatchable_5fresource_2eproto, file_level_service_descriptors_flyteidl_2fadmin_2fmatchable_5fresource_2eproto, + file_level_metadata_flyteidl_2fadmin_2fmatchable_5fresource_2eproto, 13, file_level_enum_descriptors_flyteidl_2fadmin_2fmatchable_5fresource_2eproto, file_level_service_descriptors_flyteidl_2fadmin_2fmatchable_5fresource_2eproto, }; const char descriptor_table_protodef_flyteidl_2fadmin_2fmatchable_5fresource_2eproto[] = @@ -432,38 +463,42 @@ const char descriptor_table_protodef_flyteidl_2fadmin_2fmatchable_5fresource_2ep "r\"2\n\025MissingPluginBehavior\022\010\n\004FAIL\020\000\022\017\n\013" "USE_DEFAULT\020\001\"D\n\017PluginOverrides\0221\n\tover" "rides\030\001 \003(\0132\036.flyteidl.admin.PluginOverr" - "ide\"\322\003\n\022MatchingAttributes\022J\n\030task_resou" - "rce_attributes\030\001 \001(\0132&.flyteidl.admin.Ta" - "skResourceAttributesH\000\022P\n\033cluster_resour" - "ce_attributes\030\002 \001(\0132).flyteidl.admin.Clu" - "sterResourceAttributesH\000\022N\n\032execution_qu" - "eue_attributes\030\003 \001(\0132(.flyteidl.admin.Ex" - "ecutionQueueAttributesH\000\022H\n\027execution_cl" - "uster_label\030\004 \001(\0132%.flyteidl.admin.Execu" - "tionClusterLabelH\000\022=\n\022quality_of_service" - "\030\005 \001(\0132\037.flyteidl.core.QualityOfServiceH" - "\000\022;\n\020plugin_overrides\030\006 \001(\0132\037.flyteidl.a" - "dmin.PluginOverridesH\000B\010\n\006target\"\242\001\n Mat" - "chableAttributesConfiguration\0226\n\nattribu" - "tes\030\001 \001(\0132\".flyteidl.admin.MatchingAttri" - "butes\022\016\n\006domain\030\002 \001(\t\022\017\n\007project\030\003 \001(\t\022\020" - "\n\010workflow\030\004 \001(\t\022\023\n\013launch_plan\030\005 \001(\t\"Z\n" - "\036ListMatchableAttributesRequest\0228\n\rresou" - "rce_type\030\001 \001(\0162!.flyteidl.admin.Matchabl" - "eResource\"k\n\037ListMatchableAttributesResp" - "onse\022H\n\016configurations\030\001 \003(\01320.flyteidl." - "admin.MatchableAttributesConfiguration*\251" - "\001\n\021MatchableResource\022\021\n\rTASK_RESOURCE\020\000\022" - "\024\n\020CLUSTER_RESOURCE\020\001\022\023\n\017EXECUTION_QUEUE" - "\020\002\022\033\n\027EXECUTION_CLUSTER_LABEL\020\003\022$\n QUALI" - "TY_OF_SERVICE_SPECIFICATION\020\004\022\023\n\017PLUGIN_" - "OVERRIDE\020\005B7Z5github.com/flyteorg/flytei" - "dl/gen/pb-go/flyteidl/adminb\006proto3" + "ide\"2\n\027WorkflowExecutionConfig\022\027\n\017max_pa" + "rallelism\030\001 \001(\005\"\240\004\n\022MatchingAttributes\022J" + "\n\030task_resource_attributes\030\001 \001(\0132&.flyte" + "idl.admin.TaskResourceAttributesH\000\022P\n\033cl" + "uster_resource_attributes\030\002 \001(\0132).flytei" + "dl.admin.ClusterResourceAttributesH\000\022N\n\032" + "execution_queue_attributes\030\003 \001(\0132(.flyte" + "idl.admin.ExecutionQueueAttributesH\000\022H\n\027" + "execution_cluster_label\030\004 \001(\0132%.flyteidl" + ".admin.ExecutionClusterLabelH\000\022=\n\022qualit" + "y_of_service\030\005 \001(\0132\037.flyteidl.core.Quali" + "tyOfServiceH\000\022;\n\020plugin_overrides\030\006 \001(\0132" + "\037.flyteidl.admin.PluginOverridesH\000\022L\n\031wo" + "rkflow_execution_config\030\007 \001(\0132\'.flyteidl" + ".admin.WorkflowExecutionConfigH\000B\010\n\006targ" + "et\"\242\001\n MatchableAttributesConfiguration\022" + "6\n\nattributes\030\001 \001(\0132\".flyteidl.admin.Mat" + "chingAttributes\022\016\n\006domain\030\002 \001(\t\022\017\n\007proje" + "ct\030\003 \001(\t\022\020\n\010workflow\030\004 \001(\t\022\023\n\013launch_pla" + "n\030\005 \001(\t\"Z\n\036ListMatchableAttributesReques" + "t\0228\n\rresource_type\030\001 \001(\0162!.flyteidl.admi" + "n.MatchableResource\"k\n\037ListMatchableAttr" + "ibutesResponse\022H\n\016configurations\030\001 \003(\01320" + ".flyteidl.admin.MatchableAttributesConfi" + "guration*\310\001\n\021MatchableResource\022\021\n\rTASK_R" + "ESOURCE\020\000\022\024\n\020CLUSTER_RESOURCE\020\001\022\023\n\017EXECU" + "TION_QUEUE\020\002\022\033\n\027EXECUTION_CLUSTER_LABEL\020" + "\003\022$\n QUALITY_OF_SERVICE_SPECIFICATION\020\004\022" + "\023\n\017PLUGIN_OVERRIDE\020\005\022\035\n\031WORKFLOW_EXECUTI" + "ON_CONFIG\020\006B7Z5github.com/flyteorg/flyte" + "idl/gen/pb-go/flyteidl/adminb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fadmin_2fmatchable_5fresource_2eproto = { false, InitDefaults_flyteidl_2fadmin_2fmatchable_5fresource_2eproto, descriptor_table_protodef_flyteidl_2fadmin_2fmatchable_5fresource_2eproto, - "flyteidl/admin/matchable_resource.proto", &assign_descriptors_table_flyteidl_2fadmin_2fmatchable_5fresource_2eproto, 1875, + "flyteidl/admin/matchable_resource.proto", &assign_descriptors_table_flyteidl_2fadmin_2fmatchable_5fresource_2eproto, 2036, }; void AddDescriptors_flyteidl_2fadmin_2fmatchable_5fresource_2eproto() { @@ -511,6 +546,7 @@ bool MatchableResource_IsValid(int value) { case 3: case 4: case 5: + case 6: return true; default: return false; @@ -3094,6 +3130,266 @@ ::google::protobuf::Metadata PluginOverrides::GetMetadata() const { } +// =================================================================== + +void WorkflowExecutionConfig::InitAsDefaultInstance() { +} +class WorkflowExecutionConfig::HasBitSetters { + public: +}; + +#if !defined(_MSC_VER) || _MSC_VER >= 1900 +const int WorkflowExecutionConfig::kMaxParallelismFieldNumber; +#endif // !defined(_MSC_VER) || _MSC_VER >= 1900 + +WorkflowExecutionConfig::WorkflowExecutionConfig() + : ::google::protobuf::Message(), _internal_metadata_(nullptr) { + SharedCtor(); + // @@protoc_insertion_point(constructor:flyteidl.admin.WorkflowExecutionConfig) +} +WorkflowExecutionConfig::WorkflowExecutionConfig(const WorkflowExecutionConfig& from) + : ::google::protobuf::Message(), + _internal_metadata_(nullptr) { + _internal_metadata_.MergeFrom(from._internal_metadata_); + max_parallelism_ = from.max_parallelism_; + // @@protoc_insertion_point(copy_constructor:flyteidl.admin.WorkflowExecutionConfig) +} + +void WorkflowExecutionConfig::SharedCtor() { + max_parallelism_ = 0; +} + +WorkflowExecutionConfig::~WorkflowExecutionConfig() { + // @@protoc_insertion_point(destructor:flyteidl.admin.WorkflowExecutionConfig) + SharedDtor(); +} + +void WorkflowExecutionConfig::SharedDtor() { +} + +void WorkflowExecutionConfig::SetCachedSize(int size) const { + _cached_size_.Set(size); +} +const WorkflowExecutionConfig& WorkflowExecutionConfig::default_instance() { + ::google::protobuf::internal::InitSCC(&::scc_info_WorkflowExecutionConfig_flyteidl_2fadmin_2fmatchable_5fresource_2eproto.base); + return *internal_default_instance(); +} + + +void WorkflowExecutionConfig::Clear() { +// @@protoc_insertion_point(message_clear_start:flyteidl.admin.WorkflowExecutionConfig) + ::google::protobuf::uint32 cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + max_parallelism_ = 0; + _internal_metadata_.Clear(); +} + +#if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER +const char* WorkflowExecutionConfig::_InternalParse(const char* begin, const char* end, void* object, + ::google::protobuf::internal::ParseContext* ctx) { + auto msg = static_cast(object); + ::google::protobuf::int32 size; (void)size; + int depth; (void)depth; + ::google::protobuf::uint32 tag; + ::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end; + auto ptr = begin; + while (ptr < end) { + ptr = ::google::protobuf::io::Parse32(ptr, &tag); + GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); + switch (tag >> 3) { + // int32 max_parallelism = 1; + case 1: { + if (static_cast<::google::protobuf::uint8>(tag) != 8) goto handle_unusual; + msg->set_max_parallelism(::google::protobuf::internal::ReadVarint(&ptr)); + GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); + break; + } + default: { + handle_unusual: + if ((tag & 7) == 4 || tag == 0) { + ctx->EndGroup(tag); + return ptr; + } + auto res = UnknownFieldParse(tag, {_InternalParse, msg}, + ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx); + ptr = res.first; + GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr); + if (res.second) return ptr; + } + } // switch + } // while + return ptr; +} +#else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER +bool WorkflowExecutionConfig::MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) { +#define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure + ::google::protobuf::uint32 tag; + // @@protoc_insertion_point(parse_start:flyteidl.admin.WorkflowExecutionConfig) + for (;;) { + ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); + tag = p.first; + if (!p.second) goto handle_unusual; + switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { + // int32 max_parallelism = 1; + case 1: { + if (static_cast< ::google::protobuf::uint8>(tag) == (8 & 0xFF)) { + + DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< + ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>( + input, &max_parallelism_))); + } else { + goto handle_unusual; + } + break; + } + + default: { + handle_unusual: + if (tag == 0) { + goto success; + } + DO_(::google::protobuf::internal::WireFormat::SkipField( + input, tag, _internal_metadata_.mutable_unknown_fields())); + break; + } + } + } +success: + // @@protoc_insertion_point(parse_success:flyteidl.admin.WorkflowExecutionConfig) + return true; +failure: + // @@protoc_insertion_point(parse_failure:flyteidl.admin.WorkflowExecutionConfig) + return false; +#undef DO_ +} +#endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER + +void WorkflowExecutionConfig::SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const { + // @@protoc_insertion_point(serialize_start:flyteidl.admin.WorkflowExecutionConfig) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // int32 max_parallelism = 1; + if (this->max_parallelism() != 0) { + ::google::protobuf::internal::WireFormatLite::WriteInt32(1, this->max_parallelism(), output); + } + + if (_internal_metadata_.have_unknown_fields()) { + ::google::protobuf::internal::WireFormat::SerializeUnknownFields( + _internal_metadata_.unknown_fields(), output); + } + // @@protoc_insertion_point(serialize_end:flyteidl.admin.WorkflowExecutionConfig) +} + +::google::protobuf::uint8* WorkflowExecutionConfig::InternalSerializeWithCachedSizesToArray( + ::google::protobuf::uint8* target) const { + // @@protoc_insertion_point(serialize_to_array_start:flyteidl.admin.WorkflowExecutionConfig) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // int32 max_parallelism = 1; + if (this->max_parallelism() != 0) { + target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(1, this->max_parallelism(), target); + } + + if (_internal_metadata_.have_unknown_fields()) { + target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( + _internal_metadata_.unknown_fields(), target); + } + // @@protoc_insertion_point(serialize_to_array_end:flyteidl.admin.WorkflowExecutionConfig) + return target; +} + +size_t WorkflowExecutionConfig::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:flyteidl.admin.WorkflowExecutionConfig) + size_t total_size = 0; + + if (_internal_metadata_.have_unknown_fields()) { + total_size += + ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( + _internal_metadata_.unknown_fields()); + } + ::google::protobuf::uint32 cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + // int32 max_parallelism = 1; + if (this->max_parallelism() != 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::Int32Size( + this->max_parallelism()); + } + + int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); + SetCachedSize(cached_size); + return total_size; +} + +void WorkflowExecutionConfig::MergeFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_merge_from_start:flyteidl.admin.WorkflowExecutionConfig) + GOOGLE_DCHECK_NE(&from, this); + const WorkflowExecutionConfig* source = + ::google::protobuf::DynamicCastToGenerated( + &from); + if (source == nullptr) { + // @@protoc_insertion_point(generalized_merge_from_cast_fail:flyteidl.admin.WorkflowExecutionConfig) + ::google::protobuf::internal::ReflectionOps::Merge(from, this); + } else { + // @@protoc_insertion_point(generalized_merge_from_cast_success:flyteidl.admin.WorkflowExecutionConfig) + MergeFrom(*source); + } +} + +void WorkflowExecutionConfig::MergeFrom(const WorkflowExecutionConfig& from) { +// @@protoc_insertion_point(class_specific_merge_from_start:flyteidl.admin.WorkflowExecutionConfig) + GOOGLE_DCHECK_NE(&from, this); + _internal_metadata_.MergeFrom(from._internal_metadata_); + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + if (from.max_parallelism() != 0) { + set_max_parallelism(from.max_parallelism()); + } +} + +void WorkflowExecutionConfig::CopyFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_copy_from_start:flyteidl.admin.WorkflowExecutionConfig) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +void WorkflowExecutionConfig::CopyFrom(const WorkflowExecutionConfig& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:flyteidl.admin.WorkflowExecutionConfig) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +bool WorkflowExecutionConfig::IsInitialized() const { + return true; +} + +void WorkflowExecutionConfig::Swap(WorkflowExecutionConfig* other) { + if (other == this) return; + InternalSwap(other); +} +void WorkflowExecutionConfig::InternalSwap(WorkflowExecutionConfig* other) { + using std::swap; + _internal_metadata_.Swap(&other->_internal_metadata_); + swap(max_parallelism_, other->max_parallelism_); +} + +::google::protobuf::Metadata WorkflowExecutionConfig::GetMetadata() const { + ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_flyteidl_2fadmin_2fmatchable_5fresource_2eproto); + return ::file_level_metadata_flyteidl_2fadmin_2fmatchable_5fresource_2eproto[kIndexInFileMessages]; +} + + // =================================================================== void MatchingAttributes::InitAsDefaultInstance() { @@ -3109,6 +3405,8 @@ void MatchingAttributes::InitAsDefaultInstance() { ::flyteidl::core::QualityOfService::internal_default_instance()); ::flyteidl::admin::_MatchingAttributes_default_instance_.plugin_overrides_ = const_cast< ::flyteidl::admin::PluginOverrides*>( ::flyteidl::admin::PluginOverrides::internal_default_instance()); + ::flyteidl::admin::_MatchingAttributes_default_instance_.workflow_execution_config_ = const_cast< ::flyteidl::admin::WorkflowExecutionConfig*>( + ::flyteidl::admin::WorkflowExecutionConfig::internal_default_instance()); } class MatchingAttributes::HasBitSetters { public: @@ -3118,6 +3416,7 @@ class MatchingAttributes::HasBitSetters { static const ::flyteidl::admin::ExecutionClusterLabel& execution_cluster_label(const MatchingAttributes* msg); static const ::flyteidl::core::QualityOfService& quality_of_service(const MatchingAttributes* msg); static const ::flyteidl::admin::PluginOverrides& plugin_overrides(const MatchingAttributes* msg); + static const ::flyteidl::admin::WorkflowExecutionConfig& workflow_execution_config(const MatchingAttributes* msg); }; const ::flyteidl::admin::TaskResourceAttributes& @@ -3144,6 +3443,10 @@ const ::flyteidl::admin::PluginOverrides& MatchingAttributes::HasBitSetters::plugin_overrides(const MatchingAttributes* msg) { return *msg->target_.plugin_overrides_; } +const ::flyteidl::admin::WorkflowExecutionConfig& +MatchingAttributes::HasBitSetters::workflow_execution_config(const MatchingAttributes* msg) { + return *msg->target_.workflow_execution_config_; +} void MatchingAttributes::set_allocated_task_resource_attributes(::flyteidl::admin::TaskResourceAttributes* task_resource_attributes) { ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); clear_target(); @@ -3234,6 +3537,20 @@ void MatchingAttributes::set_allocated_plugin_overrides(::flyteidl::admin::Plugi } // @@protoc_insertion_point(field_set_allocated:flyteidl.admin.MatchingAttributes.plugin_overrides) } +void MatchingAttributes::set_allocated_workflow_execution_config(::flyteidl::admin::WorkflowExecutionConfig* workflow_execution_config) { + ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); + clear_target(); + if (workflow_execution_config) { + ::google::protobuf::Arena* submessage_arena = nullptr; + if (message_arena != submessage_arena) { + workflow_execution_config = ::google::protobuf::internal::GetOwnedMessage( + message_arena, workflow_execution_config, submessage_arena); + } + set_has_workflow_execution_config(); + target_.workflow_execution_config_ = workflow_execution_config; + } + // @@protoc_insertion_point(field_set_allocated:flyteidl.admin.MatchingAttributes.workflow_execution_config) +} #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int MatchingAttributes::kTaskResourceAttributesFieldNumber; const int MatchingAttributes::kClusterResourceAttributesFieldNumber; @@ -3241,6 +3558,7 @@ const int MatchingAttributes::kExecutionQueueAttributesFieldNumber; const int MatchingAttributes::kExecutionClusterLabelFieldNumber; const int MatchingAttributes::kQualityOfServiceFieldNumber; const int MatchingAttributes::kPluginOverridesFieldNumber; +const int MatchingAttributes::kWorkflowExecutionConfigFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 MatchingAttributes::MatchingAttributes() @@ -3278,6 +3596,10 @@ MatchingAttributes::MatchingAttributes(const MatchingAttributes& from) mutable_plugin_overrides()->::flyteidl::admin::PluginOverrides::MergeFrom(from.plugin_overrides()); break; } + case kWorkflowExecutionConfig: { + mutable_workflow_execution_config()->::flyteidl::admin::WorkflowExecutionConfig::MergeFrom(from.workflow_execution_config()); + break; + } case TARGET_NOT_SET: { break; } @@ -3338,6 +3660,10 @@ void MatchingAttributes::clear_target() { delete target_.plugin_overrides_; break; } + case kWorkflowExecutionConfig: { + delete target_.workflow_execution_config_; + break; + } case TARGET_NOT_SET: { break; } @@ -3447,6 +3773,19 @@ const char* MatchingAttributes::_InternalParse(const char* begin, const char* en {parser_till_end, object}, ptr - size, ptr)); break; } + // .flyteidl.admin.WorkflowExecutionConfig workflow_execution_config = 7; + case 7: { + if (static_cast<::google::protobuf::uint8>(tag) != 58) goto handle_unusual; + ptr = ::google::protobuf::io::ReadSize(ptr, &size); + GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); + parser_till_end = ::flyteidl::admin::WorkflowExecutionConfig::_InternalParse; + object = msg->mutable_workflow_execution_config(); + if (size > end - ptr) goto len_delim_till_end; + ptr += size; + GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( + {parser_till_end, object}, ptr - size, ptr)); + break; + } default: { handle_unusual: if ((tag & 7) == 4 || tag == 0) { @@ -3543,6 +3882,17 @@ bool MatchingAttributes::MergePartialFromCodedStream( break; } + // .flyteidl.admin.WorkflowExecutionConfig workflow_execution_config = 7; + case 7: { + if (static_cast< ::google::protobuf::uint8>(tag) == (58 & 0xFF)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( + input, mutable_workflow_execution_config())); + } else { + goto handle_unusual; + } + break; + } + default: { handle_unusual: if (tag == 0) { @@ -3606,6 +3956,12 @@ void MatchingAttributes::SerializeWithCachedSizes( 6, HasBitSetters::plugin_overrides(this), output); } + // .flyteidl.admin.WorkflowExecutionConfig workflow_execution_config = 7; + if (has_workflow_execution_config()) { + ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( + 7, HasBitSetters::workflow_execution_config(this), output); + } + if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); @@ -3661,6 +4017,13 @@ ::google::protobuf::uint8* MatchingAttributes::InternalSerializeWithCachedSizesT 6, HasBitSetters::plugin_overrides(this), target); } + // .flyteidl.admin.WorkflowExecutionConfig workflow_execution_config = 7; + if (has_workflow_execution_config()) { + target = ::google::protobuf::internal::WireFormatLite:: + InternalWriteMessageToArray( + 7, HasBitSetters::workflow_execution_config(this), target); + } + if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); @@ -3725,6 +4088,13 @@ size_t MatchingAttributes::ByteSizeLong() const { *target_.plugin_overrides_); break; } + // .flyteidl.admin.WorkflowExecutionConfig workflow_execution_config = 7; + case kWorkflowExecutionConfig: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize( + *target_.workflow_execution_config_); + break; + } case TARGET_NOT_SET: { break; } @@ -3781,6 +4151,10 @@ void MatchingAttributes::MergeFrom(const MatchingAttributes& from) { mutable_plugin_overrides()->::flyteidl::admin::PluginOverrides::MergeFrom(from.plugin_overrides()); break; } + case kWorkflowExecutionConfig: { + mutable_workflow_execution_config()->::flyteidl::admin::WorkflowExecutionConfig::MergeFrom(from.workflow_execution_config()); + break; + } case TARGET_NOT_SET: { break; } @@ -4977,6 +5351,9 @@ template<> PROTOBUF_NOINLINE ::flyteidl::admin::PluginOverride* Arena::CreateMay template<> PROTOBUF_NOINLINE ::flyteidl::admin::PluginOverrides* Arena::CreateMaybeMessage< ::flyteidl::admin::PluginOverrides >(Arena* arena) { return Arena::CreateInternal< ::flyteidl::admin::PluginOverrides >(arena); } +template<> PROTOBUF_NOINLINE ::flyteidl::admin::WorkflowExecutionConfig* Arena::CreateMaybeMessage< ::flyteidl::admin::WorkflowExecutionConfig >(Arena* arena) { + return Arena::CreateInternal< ::flyteidl::admin::WorkflowExecutionConfig >(arena); +} template<> PROTOBUF_NOINLINE ::flyteidl::admin::MatchingAttributes* Arena::CreateMaybeMessage< ::flyteidl::admin::MatchingAttributes >(Arena* arena) { return Arena::CreateInternal< ::flyteidl::admin::MatchingAttributes >(arena); } diff --git a/gen/pb-cpp/flyteidl/admin/matchable_resource.pb.h b/gen/pb-cpp/flyteidl/admin/matchable_resource.pb.h index 541172fae1..ce9aac3c3b 100644 --- a/gen/pb-cpp/flyteidl/admin/matchable_resource.pb.h +++ b/gen/pb-cpp/flyteidl/admin/matchable_resource.pb.h @@ -46,7 +46,7 @@ struct TableStruct_flyteidl_2fadmin_2fmatchable_5fresource_2eproto { PROTOBUF_SECTION_VARIABLE(protodesc_cold); static const ::google::protobuf::internal::AuxillaryParseTableField aux[] PROTOBUF_SECTION_VARIABLE(protodesc_cold); - static const ::google::protobuf::internal::ParseTable schema[12] + static const ::google::protobuf::internal::ParseTable schema[13] PROTOBUF_SECTION_VARIABLE(protodesc_cold); static const ::google::protobuf::internal::FieldMetadata field_metadata[]; static const ::google::protobuf::internal::SerializationTable serialization_table[]; @@ -91,6 +91,9 @@ extern TaskResourceAttributesDefaultTypeInternal _TaskResourceAttributes_default class TaskResourceSpec; class TaskResourceSpecDefaultTypeInternal; extern TaskResourceSpecDefaultTypeInternal _TaskResourceSpec_default_instance_; +class WorkflowExecutionConfig; +class WorkflowExecutionConfigDefaultTypeInternal; +extern WorkflowExecutionConfigDefaultTypeInternal _WorkflowExecutionConfig_default_instance_; } // namespace admin } // namespace flyteidl namespace google { @@ -107,6 +110,7 @@ template<> ::flyteidl::admin::PluginOverride* Arena::CreateMaybeMessage<::flytei template<> ::flyteidl::admin::PluginOverrides* Arena::CreateMaybeMessage<::flyteidl::admin::PluginOverrides>(Arena*); template<> ::flyteidl::admin::TaskResourceAttributes* Arena::CreateMaybeMessage<::flyteidl::admin::TaskResourceAttributes>(Arena*); template<> ::flyteidl::admin::TaskResourceSpec* Arena::CreateMaybeMessage<::flyteidl::admin::TaskResourceSpec>(Arena*); +template<> ::flyteidl::admin::WorkflowExecutionConfig* Arena::CreateMaybeMessage<::flyteidl::admin::WorkflowExecutionConfig>(Arena*); } // namespace protobuf } // namespace google namespace flyteidl { @@ -140,12 +144,13 @@ enum MatchableResource { EXECUTION_CLUSTER_LABEL = 3, QUALITY_OF_SERVICE_SPECIFICATION = 4, PLUGIN_OVERRIDE = 5, + WORKFLOW_EXECUTION_CONFIG = 6, MatchableResource_INT_MIN_SENTINEL_DO_NOT_USE_ = std::numeric_limits<::google::protobuf::int32>::min(), MatchableResource_INT_MAX_SENTINEL_DO_NOT_USE_ = std::numeric_limits<::google::protobuf::int32>::max() }; bool MatchableResource_IsValid(int value); const MatchableResource MatchableResource_MIN = TASK_RESOURCE; -const MatchableResource MatchableResource_MAX = PLUGIN_OVERRIDE; +const MatchableResource MatchableResource_MAX = WORKFLOW_EXECUTION_CONFIG; const int MatchableResource_ARRAYSIZE = MatchableResource_MAX + 1; const ::google::protobuf::EnumDescriptor* MatchableResource_descriptor(); @@ -1137,6 +1142,118 @@ class PluginOverrides final : }; // ------------------------------------------------------------------- +class WorkflowExecutionConfig final : + public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:flyteidl.admin.WorkflowExecutionConfig) */ { + public: + WorkflowExecutionConfig(); + virtual ~WorkflowExecutionConfig(); + + WorkflowExecutionConfig(const WorkflowExecutionConfig& from); + + inline WorkflowExecutionConfig& operator=(const WorkflowExecutionConfig& from) { + CopyFrom(from); + return *this; + } + #if LANG_CXX11 + WorkflowExecutionConfig(WorkflowExecutionConfig&& from) noexcept + : WorkflowExecutionConfig() { + *this = ::std::move(from); + } + + inline WorkflowExecutionConfig& operator=(WorkflowExecutionConfig&& from) noexcept { + if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { + if (this != &from) InternalSwap(&from); + } else { + CopyFrom(from); + } + return *this; + } + #endif + static const ::google::protobuf::Descriptor* descriptor() { + return default_instance().GetDescriptor(); + } + static const WorkflowExecutionConfig& default_instance(); + + static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY + static inline const WorkflowExecutionConfig* internal_default_instance() { + return reinterpret_cast( + &_WorkflowExecutionConfig_default_instance_); + } + static constexpr int kIndexInFileMessages = + 8; + + void Swap(WorkflowExecutionConfig* other); + friend void swap(WorkflowExecutionConfig& a, WorkflowExecutionConfig& b) { + a.Swap(&b); + } + + // implements Message ---------------------------------------------- + + inline WorkflowExecutionConfig* New() const final { + return CreateMaybeMessage(nullptr); + } + + WorkflowExecutionConfig* New(::google::protobuf::Arena* arena) const final { + return CreateMaybeMessage(arena); + } + void CopyFrom(const ::google::protobuf::Message& from) final; + void MergeFrom(const ::google::protobuf::Message& from) final; + void CopyFrom(const WorkflowExecutionConfig& from); + void MergeFrom(const WorkflowExecutionConfig& from); + PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; + bool IsInitialized() const final; + + size_t ByteSizeLong() const final; + #if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER + static const char* _InternalParse(const char* begin, const char* end, void* object, ::google::protobuf::internal::ParseContext* ctx); + ::google::protobuf::internal::ParseFunc _ParseFunc() const final { return _InternalParse; } + #else + bool MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) final; + #endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER + void SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const final; + ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( + ::google::protobuf::uint8* target) const final; + int GetCachedSize() const final { return _cached_size_.Get(); } + + private: + void SharedCtor(); + void SharedDtor(); + void SetCachedSize(int size) const final; + void InternalSwap(WorkflowExecutionConfig* other); + private: + inline ::google::protobuf::Arena* GetArenaNoVirtual() const { + return nullptr; + } + inline void* MaybeArenaPtr() const { + return nullptr; + } + public: + + ::google::protobuf::Metadata GetMetadata() const final; + + // nested types ---------------------------------------------------- + + // accessors ------------------------------------------------------- + + // int32 max_parallelism = 1; + void clear_max_parallelism(); + static const int kMaxParallelismFieldNumber = 1; + ::google::protobuf::int32 max_parallelism() const; + void set_max_parallelism(::google::protobuf::int32 value); + + // @@protoc_insertion_point(class_scope:flyteidl.admin.WorkflowExecutionConfig) + private: + class HasBitSetters; + + ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; + ::google::protobuf::int32 max_parallelism_; + mutable ::google::protobuf::internal::CachedSize _cached_size_; + friend struct ::TableStruct_flyteidl_2fadmin_2fmatchable_5fresource_2eproto; +}; +// ------------------------------------------------------------------- + class MatchingAttributes final : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:flyteidl.admin.MatchingAttributes) */ { public: @@ -1176,6 +1293,7 @@ class MatchingAttributes final : kExecutionClusterLabel = 4, kQualityOfService = 5, kPluginOverrides = 6, + kWorkflowExecutionConfig = 7, TARGET_NOT_SET = 0, }; @@ -1185,7 +1303,7 @@ class MatchingAttributes final : &_MatchingAttributes_default_instance_); } static constexpr int kIndexInFileMessages = - 8; + 9; void Swap(MatchingAttributes* other); friend void swap(MatchingAttributes& a, MatchingAttributes& b) { @@ -1296,6 +1414,15 @@ class MatchingAttributes final : ::flyteidl::admin::PluginOverrides* mutable_plugin_overrides(); void set_allocated_plugin_overrides(::flyteidl::admin::PluginOverrides* plugin_overrides); + // .flyteidl.admin.WorkflowExecutionConfig workflow_execution_config = 7; + bool has_workflow_execution_config() const; + void clear_workflow_execution_config(); + static const int kWorkflowExecutionConfigFieldNumber = 7; + const ::flyteidl::admin::WorkflowExecutionConfig& workflow_execution_config() const; + ::flyteidl::admin::WorkflowExecutionConfig* release_workflow_execution_config(); + ::flyteidl::admin::WorkflowExecutionConfig* mutable_workflow_execution_config(); + void set_allocated_workflow_execution_config(::flyteidl::admin::WorkflowExecutionConfig* workflow_execution_config); + void clear_target(); TargetCase target_case() const; // @@protoc_insertion_point(class_scope:flyteidl.admin.MatchingAttributes) @@ -1307,6 +1434,7 @@ class MatchingAttributes final : void set_has_execution_cluster_label(); void set_has_quality_of_service(); void set_has_plugin_overrides(); + void set_has_workflow_execution_config(); inline bool has_target() const; inline void clear_has_target(); @@ -1320,6 +1448,7 @@ class MatchingAttributes final : ::flyteidl::admin::ExecutionClusterLabel* execution_cluster_label_; ::flyteidl::core::QualityOfService* quality_of_service_; ::flyteidl::admin::PluginOverrides* plugin_overrides_; + ::flyteidl::admin::WorkflowExecutionConfig* workflow_execution_config_; } target_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::uint32 _oneof_case_[1]; @@ -1366,7 +1495,7 @@ class MatchableAttributesConfiguration final : &_MatchableAttributesConfiguration_default_instance_); } static constexpr int kIndexInFileMessages = - 9; + 10; void Swap(MatchableAttributesConfiguration* other); friend void swap(MatchableAttributesConfiguration& a, MatchableAttributesConfiguration& b) { @@ -1541,7 +1670,7 @@ class ListMatchableAttributesRequest final : &_ListMatchableAttributesRequest_default_instance_); } static constexpr int kIndexInFileMessages = - 10; + 11; void Swap(ListMatchableAttributesRequest* other); friend void swap(ListMatchableAttributesRequest& a, ListMatchableAttributesRequest& b) { @@ -1653,7 +1782,7 @@ class ListMatchableAttributesResponse final : &_ListMatchableAttributesResponse_default_instance_); } static constexpr int kIndexInFileMessages = - 11; + 12; void Swap(ListMatchableAttributesResponse* other); friend void swap(ListMatchableAttributesResponse& a, ListMatchableAttributesResponse& b) { @@ -2390,6 +2519,24 @@ PluginOverrides::overrides() const { // ------------------------------------------------------------------- +// WorkflowExecutionConfig + +// int32 max_parallelism = 1; +inline void WorkflowExecutionConfig::clear_max_parallelism() { + max_parallelism_ = 0; +} +inline ::google::protobuf::int32 WorkflowExecutionConfig::max_parallelism() const { + // @@protoc_insertion_point(field_get:flyteidl.admin.WorkflowExecutionConfig.max_parallelism) + return max_parallelism_; +} +inline void WorkflowExecutionConfig::set_max_parallelism(::google::protobuf::int32 value) { + + max_parallelism_ = value; + // @@protoc_insertion_point(field_set:flyteidl.admin.WorkflowExecutionConfig.max_parallelism) +} + +// ------------------------------------------------------------------- + // MatchingAttributes // .flyteidl.admin.TaskResourceAttributes task_resource_attributes = 1; @@ -2632,6 +2779,47 @@ inline ::flyteidl::admin::PluginOverrides* MatchingAttributes::mutable_plugin_ov return target_.plugin_overrides_; } +// .flyteidl.admin.WorkflowExecutionConfig workflow_execution_config = 7; +inline bool MatchingAttributes::has_workflow_execution_config() const { + return target_case() == kWorkflowExecutionConfig; +} +inline void MatchingAttributes::set_has_workflow_execution_config() { + _oneof_case_[0] = kWorkflowExecutionConfig; +} +inline void MatchingAttributes::clear_workflow_execution_config() { + if (has_workflow_execution_config()) { + delete target_.workflow_execution_config_; + clear_has_target(); + } +} +inline ::flyteidl::admin::WorkflowExecutionConfig* MatchingAttributes::release_workflow_execution_config() { + // @@protoc_insertion_point(field_release:flyteidl.admin.MatchingAttributes.workflow_execution_config) + if (has_workflow_execution_config()) { + clear_has_target(); + ::flyteidl::admin::WorkflowExecutionConfig* temp = target_.workflow_execution_config_; + target_.workflow_execution_config_ = nullptr; + return temp; + } else { + return nullptr; + } +} +inline const ::flyteidl::admin::WorkflowExecutionConfig& MatchingAttributes::workflow_execution_config() const { + // @@protoc_insertion_point(field_get:flyteidl.admin.MatchingAttributes.workflow_execution_config) + return has_workflow_execution_config() + ? *target_.workflow_execution_config_ + : *reinterpret_cast< ::flyteidl::admin::WorkflowExecutionConfig*>(&::flyteidl::admin::_WorkflowExecutionConfig_default_instance_); +} +inline ::flyteidl::admin::WorkflowExecutionConfig* MatchingAttributes::mutable_workflow_execution_config() { + if (!has_workflow_execution_config()) { + clear_target(); + set_has_workflow_execution_config(); + target_.workflow_execution_config_ = CreateMaybeMessage< ::flyteidl::admin::WorkflowExecutionConfig >( + GetArenaNoVirtual()); + } + // @@protoc_insertion_point(field_mutable:flyteidl.admin.MatchingAttributes.workflow_execution_config) + return target_.workflow_execution_config_; +} + inline bool MatchingAttributes::has_target() const { return target_case() != TARGET_NOT_SET; } @@ -2985,6 +3173,8 @@ ListMatchableAttributesResponse::configurations() const { // ------------------------------------------------------------------- +// ------------------------------------------------------------------- + // @@protoc_insertion_point(namespace_scope) diff --git a/gen/pb-cpp/flyteidl/admin/project_domain_attributes.pb.cc b/gen/pb-cpp/flyteidl/admin/project_domain_attributes.pb.cc index 4c5b9479f0..29eec5885c 100644 --- a/gen/pb-cpp/flyteidl/admin/project_domain_attributes.pb.cc +++ b/gen/pb-cpp/flyteidl/admin/project_domain_attributes.pb.cc @@ -16,7 +16,7 @@ // @@protoc_insertion_point(includes) #include -extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fadmin_2fmatchable_5fresource_2eproto ::google::protobuf::internal::SCCInfo<6> scc_info_MatchingAttributes_flyteidl_2fadmin_2fmatchable_5fresource_2eproto; +extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fadmin_2fmatchable_5fresource_2eproto ::google::protobuf::internal::SCCInfo<7> scc_info_MatchingAttributes_flyteidl_2fadmin_2fmatchable_5fresource_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fadmin_2fproject_5fdomain_5fattributes_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_ProjectDomainAttributes_flyteidl_2fadmin_2fproject_5fdomain_5fattributes_2eproto; namespace flyteidl { namespace admin { diff --git a/gen/pb-cpp/flyteidl/admin/workflow_attributes.pb.cc b/gen/pb-cpp/flyteidl/admin/workflow_attributes.pb.cc index cf65d7fa9a..d44955d811 100644 --- a/gen/pb-cpp/flyteidl/admin/workflow_attributes.pb.cc +++ b/gen/pb-cpp/flyteidl/admin/workflow_attributes.pb.cc @@ -16,7 +16,7 @@ // @@protoc_insertion_point(includes) #include -extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fadmin_2fmatchable_5fresource_2eproto ::google::protobuf::internal::SCCInfo<6> scc_info_MatchingAttributes_flyteidl_2fadmin_2fmatchable_5fresource_2eproto; +extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fadmin_2fmatchable_5fresource_2eproto ::google::protobuf::internal::SCCInfo<7> scc_info_MatchingAttributes_flyteidl_2fadmin_2fmatchable_5fresource_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fadmin_2fworkflow_5fattributes_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_WorkflowAttributes_flyteidl_2fadmin_2fworkflow_5fattributes_2eproto; namespace flyteidl { namespace admin { diff --git a/gen/pb-go/flyteidl/admin/matchable_resource.pb.go b/gen/pb-go/flyteidl/admin/matchable_resource.pb.go index 3b229f67a7..2d71547bf2 100644 --- a/gen/pb-go/flyteidl/admin/matchable_resource.pb.go +++ b/gen/pb-go/flyteidl/admin/matchable_resource.pb.go @@ -38,6 +38,8 @@ const ( MatchableResource_QUALITY_OF_SERVICE_SPECIFICATION MatchableResource = 4 // Selects configurable plugin implementation behavior for a given task type. MatchableResource_PLUGIN_OVERRIDE MatchableResource = 5 + // Adds defaults for customizable workflow-execution specifications and overrides. + MatchableResource_WORKFLOW_EXECUTION_CONFIG MatchableResource = 6 ) var MatchableResource_name = map[int32]string{ @@ -47,6 +49,7 @@ var MatchableResource_name = map[int32]string{ 3: "EXECUTION_CLUSTER_LABEL", 4: "QUALITY_OF_SERVICE_SPECIFICATION", 5: "PLUGIN_OVERRIDE", + 6: "WORKFLOW_EXECUTION_CONFIG", } var MatchableResource_value = map[string]int32{ @@ -56,6 +59,7 @@ var MatchableResource_value = map[string]int32{ "EXECUTION_CLUSTER_LABEL": 3, "QUALITY_OF_SERVICE_SPECIFICATION": 4, "PLUGIN_OVERRIDE": 5, + "WORKFLOW_EXECUTION_CONFIG": 6, } func (x MatchableResource) String() string { @@ -424,6 +428,47 @@ func (m *PluginOverrides) GetOverrides() []*PluginOverride { return nil } +// Adds defaults for customizable workflow-execution specifications and overrides. +type WorkflowExecutionConfig struct { + // Can be used to control the number of parallel nodes to run within the workflow. This is useful to achieve fairness. + MaxParallelism int32 `protobuf:"varint,1,opt,name=max_parallelism,json=maxParallelism,proto3" json:"max_parallelism,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *WorkflowExecutionConfig) Reset() { *m = WorkflowExecutionConfig{} } +func (m *WorkflowExecutionConfig) String() string { return proto.CompactTextString(m) } +func (*WorkflowExecutionConfig) ProtoMessage() {} +func (*WorkflowExecutionConfig) Descriptor() ([]byte, []int) { + return fileDescriptor_1d15bcabb02640f4, []int{7} +} + +func (m *WorkflowExecutionConfig) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_WorkflowExecutionConfig.Unmarshal(m, b) +} +func (m *WorkflowExecutionConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_WorkflowExecutionConfig.Marshal(b, m, deterministic) +} +func (m *WorkflowExecutionConfig) XXX_Merge(src proto.Message) { + xxx_messageInfo_WorkflowExecutionConfig.Merge(m, src) +} +func (m *WorkflowExecutionConfig) XXX_Size() int { + return xxx_messageInfo_WorkflowExecutionConfig.Size(m) +} +func (m *WorkflowExecutionConfig) XXX_DiscardUnknown() { + xxx_messageInfo_WorkflowExecutionConfig.DiscardUnknown(m) +} + +var xxx_messageInfo_WorkflowExecutionConfig proto.InternalMessageInfo + +func (m *WorkflowExecutionConfig) GetMaxParallelism() int32 { + if m != nil { + return m.MaxParallelism + } + return 0 +} + // Generic container for encapsulating all types of the above attributes messages. type MatchingAttributes struct { // Types that are valid to be assigned to Target: @@ -433,6 +478,7 @@ type MatchingAttributes struct { // *MatchingAttributes_ExecutionClusterLabel // *MatchingAttributes_QualityOfService // *MatchingAttributes_PluginOverrides + // *MatchingAttributes_WorkflowExecutionConfig Target isMatchingAttributes_Target `protobuf_oneof:"target"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` @@ -443,7 +489,7 @@ func (m *MatchingAttributes) Reset() { *m = MatchingAttributes{} } func (m *MatchingAttributes) String() string { return proto.CompactTextString(m) } func (*MatchingAttributes) ProtoMessage() {} func (*MatchingAttributes) Descriptor() ([]byte, []int) { - return fileDescriptor_1d15bcabb02640f4, []int{7} + return fileDescriptor_1d15bcabb02640f4, []int{8} } func (m *MatchingAttributes) XXX_Unmarshal(b []byte) error { @@ -492,6 +538,10 @@ type MatchingAttributes_PluginOverrides struct { PluginOverrides *PluginOverrides `protobuf:"bytes,6,opt,name=plugin_overrides,json=pluginOverrides,proto3,oneof"` } +type MatchingAttributes_WorkflowExecutionConfig struct { + WorkflowExecutionConfig *WorkflowExecutionConfig `protobuf:"bytes,7,opt,name=workflow_execution_config,json=workflowExecutionConfig,proto3,oneof"` +} + func (*MatchingAttributes_TaskResourceAttributes) isMatchingAttributes_Target() {} func (*MatchingAttributes_ClusterResourceAttributes) isMatchingAttributes_Target() {} @@ -504,6 +554,8 @@ func (*MatchingAttributes_QualityOfService) isMatchingAttributes_Target() {} func (*MatchingAttributes_PluginOverrides) isMatchingAttributes_Target() {} +func (*MatchingAttributes_WorkflowExecutionConfig) isMatchingAttributes_Target() {} + func (m *MatchingAttributes) GetTarget() isMatchingAttributes_Target { if m != nil { return m.Target @@ -553,6 +605,13 @@ func (m *MatchingAttributes) GetPluginOverrides() *PluginOverrides { return nil } +func (m *MatchingAttributes) GetWorkflowExecutionConfig() *WorkflowExecutionConfig { + if x, ok := m.GetTarget().(*MatchingAttributes_WorkflowExecutionConfig); ok { + return x.WorkflowExecutionConfig + } + return nil +} + // XXX_OneofWrappers is for the internal use of the proto package. func (*MatchingAttributes) XXX_OneofWrappers() []interface{} { return []interface{}{ @@ -562,6 +621,7 @@ func (*MatchingAttributes) XXX_OneofWrappers() []interface{} { (*MatchingAttributes_ExecutionClusterLabel)(nil), (*MatchingAttributes_QualityOfService)(nil), (*MatchingAttributes_PluginOverrides)(nil), + (*MatchingAttributes_WorkflowExecutionConfig)(nil), } } @@ -582,7 +642,7 @@ func (m *MatchableAttributesConfiguration) Reset() { *m = MatchableAttri func (m *MatchableAttributesConfiguration) String() string { return proto.CompactTextString(m) } func (*MatchableAttributesConfiguration) ProtoMessage() {} func (*MatchableAttributesConfiguration) Descriptor() ([]byte, []int) { - return fileDescriptor_1d15bcabb02640f4, []int{8} + return fileDescriptor_1d15bcabb02640f4, []int{9} } func (m *MatchableAttributesConfiguration) XXX_Unmarshal(b []byte) error { @@ -650,7 +710,7 @@ func (m *ListMatchableAttributesRequest) Reset() { *m = ListMatchableAtt func (m *ListMatchableAttributesRequest) String() string { return proto.CompactTextString(m) } func (*ListMatchableAttributesRequest) ProtoMessage() {} func (*ListMatchableAttributesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_1d15bcabb02640f4, []int{9} + return fileDescriptor_1d15bcabb02640f4, []int{10} } func (m *ListMatchableAttributesRequest) XXX_Unmarshal(b []byte) error { @@ -690,7 +750,7 @@ func (m *ListMatchableAttributesResponse) Reset() { *m = ListMatchableAt func (m *ListMatchableAttributesResponse) String() string { return proto.CompactTextString(m) } func (*ListMatchableAttributesResponse) ProtoMessage() {} func (*ListMatchableAttributesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_1d15bcabb02640f4, []int{10} + return fileDescriptor_1d15bcabb02640f4, []int{11} } func (m *ListMatchableAttributesResponse) XXX_Unmarshal(b []byte) error { @@ -729,6 +789,7 @@ func init() { proto.RegisterType((*ExecutionClusterLabel)(nil), "flyteidl.admin.ExecutionClusterLabel") proto.RegisterType((*PluginOverride)(nil), "flyteidl.admin.PluginOverride") proto.RegisterType((*PluginOverrides)(nil), "flyteidl.admin.PluginOverrides") + proto.RegisterType((*WorkflowExecutionConfig)(nil), "flyteidl.admin.WorkflowExecutionConfig") proto.RegisterType((*MatchingAttributes)(nil), "flyteidl.admin.MatchingAttributes") proto.RegisterType((*MatchableAttributesConfiguration)(nil), "flyteidl.admin.MatchableAttributesConfiguration") proto.RegisterType((*ListMatchableAttributesRequest)(nil), "flyteidl.admin.ListMatchableAttributesRequest") @@ -740,66 +801,71 @@ func init() { } var fileDescriptor_1d15bcabb02640f4 = []byte{ - // 970 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x56, 0xdd, 0x92, 0xda, 0x46, - 0x13, 0x45, 0x0b, 0xcb, 0x07, 0xcd, 0x67, 0x90, 0x27, 0xde, 0x5d, 0x79, 0xb7, 0xe2, 0x25, 0xaa, - 0xfc, 0x6c, 0x52, 0x65, 0x48, 0x91, 0xa4, 0xe2, 0xa4, 0x92, 0x0b, 0xc0, 0x22, 0x50, 0xd1, 0x9a, - 0xdd, 0x01, 0x5c, 0x76, 0x6e, 0x54, 0x42, 0x0c, 0x42, 0x41, 0x68, 0xb4, 0xd2, 0x68, 0x1d, 0x2a, - 0x2f, 0x91, 0xd7, 0xc8, 0x03, 0xe4, 0x51, 0x72, 0x91, 0x77, 0xc8, 0x43, 0xa4, 0x46, 0x3f, 0x08, - 0x64, 0x70, 0xf9, 0x4e, 0xdd, 0xea, 0xee, 0xd3, 0xd3, 0x73, 0xfa, 0xd4, 0xc0, 0x67, 0x73, 0x7b, - 0xcd, 0x88, 0x35, 0xb3, 0x9b, 0xfa, 0x6c, 0x65, 0x39, 0xcd, 0x95, 0xce, 0x8c, 0x85, 0x3e, 0xb5, - 0x89, 0xe6, 0x11, 0x9f, 0x06, 0x9e, 0x41, 0x1a, 0xae, 0x47, 0x19, 0x45, 0xd5, 0x24, 0xb0, 0x11, - 0x06, 0x9e, 0x7f, 0xb8, 0x49, 0x34, 0xa8, 0x47, 0x9a, 0xe4, 0x37, 0x62, 0x04, 0xcc, 0xa2, 0x4e, - 0x14, 0x2e, 0x2f, 0x40, 0x1c, 0xeb, 0xfe, 0x12, 0xc7, 0x45, 0x46, 0x2e, 0x31, 0x90, 0x08, 0x79, - 0xc3, 0x0d, 0x24, 0xa1, 0x2e, 0x5c, 0x95, 0x31, 0xff, 0xe4, 0x1e, 0xd3, 0x0d, 0xa4, 0xa3, 0xc8, - 0x63, 0xba, 0x01, 0x3a, 0x85, 0xe2, 0x8a, 0xac, 0xa8, 0xb7, 0x96, 0xf2, 0xa1, 0x33, 0xb6, 0x90, - 0x04, 0xff, 0xf3, 0x19, 0xf5, 0x74, 0x93, 0x48, 0x85, 0xf0, 0x47, 0x62, 0xca, 0x7f, 0x08, 0x70, - 0xba, 0x0d, 0xd5, 0x66, 0xcc, 0xb3, 0xa6, 0x01, 0x23, 0x3e, 0xfa, 0x01, 0x4a, 0x33, 0x32, 0xd7, - 0x03, 0x9b, 0xf9, 0x21, 0x6a, 0xa5, 0x55, 0x6f, 0xec, 0x1e, 0xa3, 0x91, 0x6d, 0x12, 0x6f, 0x32, - 0xd0, 0x33, 0x28, 0xda, 0xd6, 0xca, 0x62, 0x7e, 0xd8, 0xdf, 0xfb, 0xe4, 0xc6, 0xf1, 0xf2, 0x5f, - 0x02, 0x3c, 0xee, 0xda, 0x81, 0xcf, 0x88, 0xb7, 0xa7, 0xab, 0xd7, 0x00, 0xfa, 0xc6, 0x92, 0x84, - 0x7a, 0xfe, 0xaa, 0xd2, 0xfa, 0x2e, 0x5b, 0xfb, 0x60, 0x7a, 0x23, 0xfd, 0x54, 0x1c, 0xe6, 0xad, - 0xf1, 0x56, 0xb1, 0xf3, 0x1f, 0xa1, 0x96, 0xf9, 0xcd, 0x47, 0xbc, 0x24, 0xeb, 0x64, 0xe8, 0x4b, - 0xb2, 0x46, 0x8f, 0xe0, 0xf8, 0x5e, 0xb7, 0x03, 0x12, 0x8f, 0x3d, 0x32, 0xbe, 0x3f, 0x7a, 0x26, - 0xc8, 0x0d, 0x90, 0x94, 0xe4, 0x1e, 0x6f, 0x03, 0x12, 0x6c, 0x77, 0x8d, 0xa0, 0xc0, 0x74, 0x33, - 0xea, 0xb7, 0x8c, 0xc3, 0x6f, 0xf9, 0x29, 0x9c, 0x6c, 0xe2, 0xe3, 0x86, 0x55, 0x7d, 0x4a, 0xec, - 0x14, 0x42, 0xd8, 0x82, 0x90, 0xff, 0x15, 0xa0, 0x7a, 0x63, 0x07, 0xa6, 0xe5, 0x0c, 0xef, 0x89, - 0xe7, 0x59, 0x33, 0x82, 0x2e, 0xa0, 0xcc, 0x74, 0x7f, 0xa9, 0xb1, 0xb5, 0x9b, 0x04, 0x97, 0xb8, - 0x63, 0xbc, 0x76, 0xc3, 0x9f, 0x6e, 0x18, 0xae, 0x59, 0x33, 0xe9, 0x28, 0xc4, 0x2d, 0x45, 0x8e, - 0xc1, 0x0c, 0xd9, 0x70, 0xb6, 0xb2, 0x7c, 0xdf, 0x72, 0x4c, 0x2d, 0x0e, 0x9a, 0x92, 0x85, 0x7e, - 0x6f, 0x51, 0x2f, 0x24, 0x48, 0xb5, 0xf5, 0x75, 0x76, 0xa4, 0xbb, 0xd0, 0x8d, 0xeb, 0x28, 0x3b, - 0xf2, 0x76, 0xe2, 0x5c, 0x7c, 0xb2, 0xda, 0xe7, 0x96, 0x5b, 0x70, 0xb2, 0x37, 0x1e, 0x95, 0xa0, - 0xd0, 0x6b, 0x0f, 0x54, 0x31, 0x87, 0x6a, 0x50, 0x99, 0x8c, 0x14, 0xed, 0xb9, 0xd2, 0x6b, 0x4f, - 0xd4, 0xb1, 0x28, 0xc8, 0x43, 0xa8, 0xed, 0x42, 0x72, 0x42, 0x96, 0x69, 0x62, 0xc4, 0x37, 0xff, - 0xe4, 0xdd, 0x6d, 0xe2, 0x34, 0x41, 0xfe, 0xa7, 0x00, 0xe8, 0x9a, 0xef, 0xa7, 0xe5, 0x98, 0x5b, - 0x37, 0x33, 0x05, 0x29, 0x9c, 0x61, 0xb2, 0xb0, 0xda, 0x0e, 0xbb, 0x38, 0x73, 0x3f, 0x7d, 0x17, - 0x73, 0xd3, 0x4a, 0xfd, 0x1c, 0x3e, 0x65, 0xfb, 0x37, 0x69, 0x09, 0x17, 0x46, 0x74, 0xc1, 0x7b, - 0x61, 0xa2, 0x05, 0xf9, 0xfc, 0xbd, 0x49, 0xdc, 0xcf, 0xe1, 0xc7, 0xc6, 0xc1, 0x05, 0x59, 0xc0, - 0xf9, 0x46, 0x4e, 0xb4, 0x3b, 0xce, 0xc3, 0x6d, 0xac, 0x7c, 0x88, 0x75, 0x95, 0xc5, 0x3a, 0x44, - 0xdc, 0x7e, 0x0e, 0x4b, 0xe4, 0x10, 0xa9, 0x35, 0x38, 0x4b, 0x91, 0x92, 0x03, 0xda, 0x9c, 0xc2, - 0x21, 0x89, 0x2a, 0xad, 0x4f, 0x0e, 0xc2, 0x6c, 0xf3, 0xbd, 0x9f, 0xc3, 0x27, 0x64, 0xef, 0x22, - 0x0c, 0x01, 0xdd, 0x05, 0xba, 0x6d, 0xb1, 0xb5, 0x46, 0xe7, 0x9a, 0x4f, 0xbc, 0x7b, 0xcb, 0x20, - 0xd2, 0x71, 0x58, 0xfb, 0x32, 0xad, 0xcd, 0x25, 0xb4, 0x71, 0x1b, 0x05, 0x0e, 0xe7, 0xa3, 0x28, - 0xac, 0x9f, 0xc3, 0xe2, 0x5d, 0xc6, 0x87, 0x54, 0x10, 0x63, 0xba, 0xa7, 0x44, 0x2a, 0x66, 0xcb, - 0xed, 0x23, 0x12, 0x1f, 0x44, 0xcd, 0xdd, 0x75, 0x75, 0x4a, 0x50, 0x64, 0xba, 0x67, 0x12, 0x26, - 0xff, 0x2d, 0x40, 0xfd, 0x3a, 0xd1, 0xfe, 0x74, 0x42, 0x5d, 0xea, 0xcc, 0x2d, 0x33, 0xf0, 0x74, - 0x7e, 0x32, 0xd4, 0xc9, 0x28, 0x17, 0x87, 0x95, 0xb3, 0xb0, 0x6f, 0x33, 0x74, 0x5b, 0xa2, 0xb8, - 0xc0, 0xcf, 0xe8, 0x4a, 0xb7, 0x9c, 0x58, 0x7e, 0x62, 0x8b, 0x0b, 0xbc, 0xeb, 0xd1, 0x5f, 0x89, - 0xc1, 0x62, 0xe5, 0x4f, 0x4c, 0x74, 0x0e, 0xa5, 0x37, 0xd4, 0x5b, 0xce, 0x6d, 0xfa, 0x26, 0xd6, - 0xfe, 0x8d, 0x8d, 0x2e, 0xa1, 0x62, 0xeb, 0x81, 0x63, 0x2c, 0x34, 0xd7, 0xd6, 0x9d, 0x70, 0xb0, - 0x65, 0x0c, 0x91, 0xeb, 0xc6, 0xd6, 0x1d, 0x79, 0x01, 0x4f, 0x54, 0xcb, 0x67, 0x7b, 0x8e, 0x86, - 0xc9, 0x5d, 0x40, 0x7c, 0x86, 0x7a, 0xf0, 0x60, 0x43, 0xe9, 0x8d, 0x0c, 0x55, 0x5b, 0x1f, 0xed, - 0x3d, 0x17, 0x2f, 0x91, 0x30, 0x16, 0xff, 0x3f, 0xc9, 0xe3, 0x6a, 0x25, 0xff, 0x0e, 0x97, 0x07, - 0x91, 0x7c, 0x97, 0x3a, 0x3e, 0x41, 0xaf, 0xa0, 0x6a, 0x6c, 0x0f, 0x34, 0xd1, 0x80, 0x2f, 0x0f, - 0x62, 0x1d, 0xb8, 0x09, 0x9c, 0xa9, 0xf3, 0xc5, 0x9f, 0x02, 0x3c, 0x7c, 0xab, 0x41, 0xf4, 0x10, - 0x1e, 0x8c, 0xdb, 0xa3, 0x9f, 0x35, 0xac, 0x8c, 0x86, 0x13, 0xdc, 0x55, 0xc4, 0x1c, 0x7a, 0x04, - 0x62, 0x57, 0x9d, 0x8c, 0xc6, 0x0a, 0x4e, 0xbd, 0x02, 0xfa, 0x00, 0x6a, 0xca, 0x2b, 0xa5, 0x3b, - 0x19, 0x0f, 0x86, 0x2f, 0xb4, 0xdb, 0x89, 0x32, 0x51, 0xc4, 0x23, 0x74, 0x01, 0x67, 0xa9, 0x33, - 0x49, 0x52, 0xdb, 0x1d, 0x45, 0x15, 0xf3, 0xe8, 0x63, 0xa8, 0xdf, 0x4e, 0xda, 0xea, 0x60, 0xfc, - 0x5a, 0x1b, 0xf6, 0xb4, 0x91, 0x82, 0x5f, 0x0e, 0xba, 0x8a, 0x36, 0xba, 0x51, 0xba, 0x83, 0xde, - 0xa0, 0xdb, 0xe6, 0x39, 0x62, 0x81, 0xd7, 0xbd, 0x51, 0x27, 0x3f, 0x0d, 0x5e, 0x68, 0xc3, 0x97, - 0x0a, 0xc6, 0x83, 0xe7, 0x8a, 0x78, 0xdc, 0xf9, 0xf6, 0x97, 0x6f, 0x4c, 0x8b, 0x2d, 0x82, 0x69, - 0xc3, 0xa0, 0xab, 0x66, 0x78, 0x72, 0xea, 0x99, 0xcd, 0xcd, 0x7b, 0xc2, 0x24, 0x4e, 0xd3, 0x9d, - 0x3e, 0x35, 0x69, 0x73, 0xf7, 0x6d, 0x32, 0x2d, 0x86, 0x4f, 0x8b, 0xaf, 0xfe, 0x0b, 0x00, 0x00, - 0xff, 0xff, 0x50, 0x1b, 0x14, 0x0c, 0xb4, 0x08, 0x00, 0x00, + // 1051 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x56, 0xdb, 0x6e, 0xdb, 0x46, + 0x13, 0x16, 0x7d, 0x50, 0xe4, 0xf1, 0x1f, 0x89, 0xd9, 0x3f, 0x8e, 0x69, 0x07, 0x89, 0x5d, 0xa2, + 0xad, 0xdd, 0x02, 0x91, 0x0a, 0xb5, 0x45, 0xd3, 0xa2, 0xbd, 0x90, 0x14, 0x2a, 0x12, 0x42, 0x9b, + 0xf6, 0x4a, 0x8a, 0x93, 0xde, 0x10, 0x2b, 0x6a, 0x45, 0xb1, 0xe2, 0xc9, 0xe4, 0xd2, 0xb6, 0xd0, + 0x97, 0xe8, 0xcb, 0xf4, 0xbe, 0x97, 0x7d, 0x81, 0xbe, 0x45, 0x1f, 0xa2, 0xe0, 0x49, 0xa4, 0x19, + 0x29, 0xc8, 0x1d, 0x67, 0x76, 0x66, 0xbe, 0xd9, 0x99, 0x6f, 0x66, 0x09, 0x27, 0x53, 0x73, 0xc1, + 0xa8, 0x31, 0x31, 0x1b, 0x64, 0x62, 0x19, 0x76, 0xc3, 0x22, 0x4c, 0x9b, 0x91, 0xb1, 0x49, 0x55, + 0x8f, 0xfa, 0x4e, 0xe0, 0x69, 0xb4, 0xee, 0x7a, 0x0e, 0x73, 0x50, 0x35, 0x35, 0xac, 0x47, 0x86, + 0x87, 0xcf, 0x96, 0x8e, 0x9a, 0xe3, 0xd1, 0x06, 0xbd, 0xa3, 0x5a, 0xc0, 0x0c, 0xc7, 0x8e, 0xcd, + 0xc5, 0x19, 0xf0, 0x43, 0xe2, 0xcf, 0x71, 0x12, 0x64, 0xe0, 0x52, 0x0d, 0xf1, 0xb0, 0xa9, 0xb9, + 0x81, 0xc0, 0x1d, 0x73, 0xa7, 0x3b, 0x38, 0xfc, 0x0c, 0x35, 0xba, 0x1b, 0x08, 0x1b, 0xb1, 0x46, + 0x77, 0x03, 0xf4, 0x04, 0xca, 0x16, 0xb5, 0x1c, 0x6f, 0x21, 0x6c, 0x46, 0xca, 0x44, 0x42, 0x02, + 0x3c, 0xf0, 0x99, 0xe3, 0x11, 0x9d, 0x0a, 0x5b, 0xd1, 0x41, 0x2a, 0x8a, 0x7f, 0x70, 0xf0, 0x24, + 0x0f, 0xd5, 0x62, 0xcc, 0x33, 0xc6, 0x01, 0xa3, 0x3e, 0xfa, 0x19, 0x2a, 0x13, 0x3a, 0x25, 0x81, + 0xc9, 0xfc, 0x08, 0x75, 0xb7, 0x79, 0x5c, 0xbf, 0x7f, 0x8d, 0x7a, 0x31, 0x49, 0xbc, 0xf4, 0x40, + 0x2f, 0xa1, 0x6c, 0x1a, 0x96, 0xc1, 0xfc, 0x28, 0xbf, 0x4f, 0xf1, 0x4d, 0xec, 0xc5, 0x3f, 0x39, + 0x38, 0xe8, 0x98, 0x81, 0xcf, 0xa8, 0xb7, 0x22, 0xab, 0xf7, 0x00, 0x64, 0x29, 0x09, 0xdc, 0xf1, + 0xe6, 0xe9, 0x6e, 0xf3, 0xc7, 0x62, 0xec, 0xb5, 0xee, 0xf5, 0xec, 0x53, 0xb2, 0x99, 0xb7, 0xc0, + 0xb9, 0x60, 0x87, 0xbf, 0x40, 0xad, 0x70, 0x1c, 0x96, 0x78, 0x4e, 0x17, 0x69, 0xd1, 0xe7, 0x74, + 0x81, 0x1e, 0xc3, 0xf6, 0x0d, 0x31, 0x03, 0x9a, 0x94, 0x3d, 0x16, 0x7e, 0xda, 0x78, 0xc9, 0x89, + 0x75, 0x10, 0xa4, 0xb4, 0x8f, 0x97, 0x01, 0x0d, 0xf2, 0x59, 0x23, 0xd8, 0x62, 0x44, 0x8f, 0xf3, + 0xdd, 0xc1, 0xd1, 0xb7, 0xf8, 0x02, 0xf6, 0x96, 0xf6, 0x49, 0xc2, 0x32, 0x19, 0x53, 0x33, 0x83, + 0xe0, 0x72, 0x10, 0xe2, 0xbf, 0x1c, 0x54, 0x2f, 0xcc, 0x40, 0x37, 0x6c, 0xe5, 0x86, 0x7a, 0x9e, + 0x31, 0xa1, 0xe8, 0x29, 0xec, 0x30, 0xe2, 0xcf, 0x55, 0xb6, 0x70, 0x53, 0xe3, 0x4a, 0xa8, 0x18, + 0x2e, 0xdc, 0xe8, 0xd0, 0x8d, 0xcc, 0x55, 0x63, 0x22, 0x6c, 0x44, 0xb8, 0x95, 0x58, 0xd1, 0x9f, + 0x20, 0x13, 0xf6, 0x2d, 0xc3, 0xf7, 0x0d, 0x5b, 0x57, 0x13, 0xa3, 0x31, 0x9d, 0x91, 0x1b, 0xc3, + 0xf1, 0x22, 0x82, 0x54, 0x9b, 0xdf, 0x15, 0x4b, 0x7a, 0x1f, 0xba, 0x7e, 0x16, 0x7b, 0xc7, 0xda, + 0x76, 0xe2, 0x8b, 0xf7, 0xac, 0x55, 0x6a, 0xb1, 0x09, 0x7b, 0x2b, 0xed, 0x51, 0x05, 0xb6, 0xba, + 0xad, 0xbe, 0xcc, 0x97, 0x50, 0x0d, 0x76, 0x47, 0x03, 0x49, 0x7d, 0x25, 0x75, 0x5b, 0x23, 0x79, + 0xc8, 0x73, 0xa2, 0x02, 0xb5, 0xfb, 0x90, 0x21, 0x21, 0x77, 0x9c, 0x54, 0x48, 0x3a, 0xff, 0xfc, + 0xe3, 0x69, 0xe2, 0xcc, 0x41, 0x6c, 0xc3, 0xfe, 0x95, 0xe3, 0xcd, 0xa7, 0xa6, 0x73, 0x9b, 0x95, + 0xdd, 0xb1, 0xa7, 0x86, 0x8e, 0x4e, 0xa0, 0x66, 0x91, 0x3b, 0xd5, 0x25, 0x1e, 0x31, 0x4d, 0x6a, + 0x1a, 0xbe, 0x15, 0x55, 0x73, 0x1b, 0x57, 0x2d, 0x72, 0x77, 0x91, 0x69, 0xc5, 0xbf, 0xb6, 0x01, + 0x9d, 0x85, 0x33, 0x6e, 0xd8, 0x7a, 0xae, 0xbb, 0x63, 0x10, 0xa2, 0x3e, 0xa4, 0x43, 0xaf, 0xde, + 0x63, 0x68, 0xc8, 0xfe, 0x2f, 0x3f, 0xc6, 0xfe, 0x2c, 0x52, 0xaf, 0x84, 0x9f, 0xb0, 0xd5, 0xd3, + 0x38, 0x87, 0xa7, 0x5a, 0x4c, 0x92, 0x95, 0x30, 0xf1, 0x90, 0x7d, 0xf5, 0xc9, 0x83, 0xd0, 0x2b, + 0xe1, 0x03, 0x6d, 0xed, 0x90, 0xcd, 0xe0, 0x70, 0xb9, 0x92, 0xd4, 0xeb, 0x90, 0xcb, 0x79, 0xac, + 0xcd, 0x08, 0xeb, 0xb4, 0x88, 0xb5, 0x8e, 0xfc, 0xbd, 0x12, 0x16, 0xe8, 0xba, 0xc1, 0x50, 0x61, + 0x3f, 0x43, 0x4a, 0x2f, 0x68, 0x86, 0x63, 0x10, 0x11, 0x71, 0xb7, 0xf9, 0xc5, 0x5a, 0x98, 0xfc, + 0xcc, 0xf4, 0x4a, 0x78, 0x8f, 0xae, 0x1c, 0x26, 0x05, 0xd0, 0x75, 0x40, 0x4c, 0x83, 0x2d, 0x54, + 0x67, 0xaa, 0xfa, 0xd4, 0xbb, 0x31, 0x34, 0x2a, 0x6c, 0x47, 0xb1, 0x8f, 0xb2, 0xd8, 0xe1, 0x1a, + 0xae, 0x5f, 0xc6, 0x86, 0xca, 0x74, 0x10, 0x9b, 0xf5, 0x4a, 0x98, 0xbf, 0x2e, 0xe8, 0x90, 0x0c, + 0x7c, 0x32, 0x32, 0x19, 0x19, 0xcb, 0xc5, 0x70, 0xab, 0xc8, 0x18, 0x16, 0xa2, 0xe6, 0x16, 0x38, + 0x4d, 0xe1, 0xe0, 0x36, 0x61, 0xa5, 0x9a, 0x2b, 0x44, 0xc4, 0x4b, 0xe1, 0x41, 0x14, 0xf6, 0xa4, + 0x18, 0x76, 0x0d, 0x8d, 0x7b, 0x25, 0xbc, 0x7f, 0xbb, 0xfa, 0xa8, 0x5d, 0x81, 0x32, 0x23, 0x9e, + 0x4e, 0x99, 0xf8, 0x0f, 0x07, 0xc7, 0x67, 0xe9, 0x33, 0x95, 0x35, 0x22, 0xb6, 0x0b, 0x3c, 0x12, + 0x3a, 0xa1, 0x76, 0x61, 0xc9, 0x86, 0x69, 0x88, 0xc5, 0x34, 0x3e, 0x1c, 0x84, 0xfc, 0x36, 0x0d, + 0xdf, 0xa2, 0x89, 0x63, 0x11, 0xc3, 0x4e, 0x36, 0x65, 0x22, 0x85, 0x6f, 0x91, 0xeb, 0x39, 0xbf, + 0x51, 0x8d, 0x25, 0x8f, 0x54, 0x2a, 0xa2, 0x43, 0xa8, 0xa4, 0xf9, 0x27, 0xcf, 0xd4, 0x52, 0x46, + 0x47, 0xb0, 0x6b, 0x92, 0xc0, 0xd6, 0x66, 0xaa, 0x6b, 0x12, 0x3b, 0xea, 0xdf, 0x0e, 0x86, 0x58, + 0x75, 0x61, 0x12, 0x5b, 0x9c, 0xc1, 0x73, 0xd9, 0xf0, 0xd9, 0x8a, 0xab, 0x61, 0x7a, 0x1d, 0x50, + 0x9f, 0xa1, 0x2e, 0x3c, 0x5c, 0x4e, 0xce, 0x72, 0x63, 0x56, 0x9b, 0x9f, 0xad, 0xbc, 0x57, 0x18, + 0x22, 0x1d, 0x0c, 0xfc, 0xbf, 0xd4, 0x2f, 0x5c, 0xac, 0xe2, 0xef, 0x70, 0xb4, 0x16, 0xc9, 0x77, + 0x1d, 0xdb, 0xa7, 0xe8, 0x1d, 0x54, 0xb5, 0x7c, 0x41, 0xd3, 0x75, 0xf5, 0xcd, 0x5a, 0xac, 0x35, + 0x9d, 0xc0, 0x85, 0x38, 0x5f, 0xff, 0xcd, 0xc1, 0xa3, 0x0f, 0x12, 0x44, 0x8f, 0xe0, 0xe1, 0xb0, + 0x35, 0x78, 0xa3, 0x62, 0x69, 0xa0, 0x8c, 0x70, 0x47, 0xe2, 0x4b, 0xe8, 0x31, 0xf0, 0x1d, 0x79, + 0x34, 0x18, 0x4a, 0x38, 0xd3, 0x72, 0xe8, 0xff, 0x50, 0x93, 0xde, 0x49, 0x9d, 0xd1, 0xb0, 0xaf, + 0x9c, 0xab, 0x97, 0x23, 0x69, 0x24, 0xf1, 0x1b, 0xe8, 0x29, 0xec, 0x67, 0xca, 0xd4, 0x49, 0x6e, + 0xb5, 0x25, 0x99, 0xdf, 0x44, 0x9f, 0xc3, 0xf1, 0xe5, 0xa8, 0x25, 0xf7, 0x87, 0xef, 0x55, 0xa5, + 0xab, 0x0e, 0x24, 0xfc, 0xb6, 0xdf, 0x91, 0xd4, 0xc1, 0x85, 0xd4, 0xe9, 0x77, 0xfb, 0x9d, 0x56, + 0xe8, 0xc3, 0x6f, 0x85, 0x71, 0x2f, 0xe4, 0xd1, 0xeb, 0xfe, 0xb9, 0xaa, 0xbc, 0x95, 0x30, 0xee, + 0xbf, 0x92, 0xf8, 0x6d, 0xf4, 0x0c, 0x0e, 0xae, 0x14, 0xfc, 0xa6, 0x2b, 0x2b, 0x57, 0x6a, 0x0e, + 0x40, 0x39, 0xef, 0xf6, 0x5f, 0xf3, 0xe5, 0xf6, 0x0f, 0xbf, 0x7e, 0xaf, 0x1b, 0x6c, 0x16, 0x8c, + 0xeb, 0x9a, 0x63, 0x35, 0xa2, 0xc2, 0x38, 0x9e, 0xde, 0x58, 0xfe, 0x19, 0xe9, 0xd4, 0x6e, 0xb8, + 0xe3, 0x17, 0xba, 0xd3, 0xb8, 0xff, 0x97, 0x35, 0x2e, 0x47, 0x3f, 0x49, 0xdf, 0xfe, 0x17, 0x00, + 0x00, 0xff, 0xff, 0xb1, 0xf6, 0x8e, 0x82, 0x7e, 0x09, 0x00, 0x00, } diff --git a/gen/pb-go/flyteidl/admin/matchable_resource.pb.validate.go b/gen/pb-go/flyteidl/admin/matchable_resource.pb.validate.go index 5681a03383..8e24c0d83c 100644 --- a/gen/pb-go/flyteidl/admin/matchable_resource.pb.validate.go +++ b/gen/pb-go/flyteidl/admin/matchable_resource.pb.validate.go @@ -550,6 +550,75 @@ var _ interface { ErrorName() string } = PluginOverridesValidationError{} +// Validate checks the field values on WorkflowExecutionConfig with the rules +// defined in the proto definition for this message. If any rules are +// violated, an error is returned. +func (m *WorkflowExecutionConfig) Validate() error { + if m == nil { + return nil + } + + // no validation rules for MaxParallelism + + return nil +} + +// WorkflowExecutionConfigValidationError is the validation error returned by +// WorkflowExecutionConfig.Validate if the designated constraints aren't met. +type WorkflowExecutionConfigValidationError struct { + field string + reason string + cause error + key bool +} + +// Field function returns field value. +func (e WorkflowExecutionConfigValidationError) Field() string { return e.field } + +// Reason function returns reason value. +func (e WorkflowExecutionConfigValidationError) Reason() string { return e.reason } + +// Cause function returns cause value. +func (e WorkflowExecutionConfigValidationError) Cause() error { return e.cause } + +// Key function returns key value. +func (e WorkflowExecutionConfigValidationError) Key() bool { return e.key } + +// ErrorName returns error name. +func (e WorkflowExecutionConfigValidationError) ErrorName() string { + return "WorkflowExecutionConfigValidationError" +} + +// Error satisfies the builtin error interface +func (e WorkflowExecutionConfigValidationError) Error() string { + cause := "" + if e.cause != nil { + cause = fmt.Sprintf(" | caused by: %v", e.cause) + } + + key := "" + if e.key { + key = "key for " + } + + return fmt.Sprintf( + "invalid %sWorkflowExecutionConfig.%s: %s%s", + key, + e.field, + e.reason, + cause) +} + +var _ error = WorkflowExecutionConfigValidationError{} + +var _ interface { + Field() string + Reason() string + Key() bool + Cause() error + ErrorName() string +} = WorkflowExecutionConfigValidationError{} + // Validate checks the field values on MatchingAttributes with the rules // defined in the proto definition for this message. If any rules are // violated, an error is returned. @@ -632,6 +701,18 @@ func (m *MatchingAttributes) Validate() error { } } + case *MatchingAttributes_WorkflowExecutionConfig: + + if v, ok := interface{}(m.GetWorkflowExecutionConfig()).(interface{ Validate() error }); ok { + if err := v.Validate(); err != nil { + return MatchingAttributesValidationError{ + field: "WorkflowExecutionConfig", + reason: "embedded message failed validation", + cause: err, + } + } + } + } return nil diff --git a/gen/pb-go/flyteidl/service/admin.swagger.json b/gen/pb-go/flyteidl/service/admin.swagger.json index 44c0206a24..abda61049c 100644 --- a/gen/pb-go/flyteidl/service/admin.swagger.json +++ b/gen/pb-go/flyteidl/service/admin.swagger.json @@ -1144,7 +1144,7 @@ "parameters": [ { "name": "resource_type", - "description": " - TASK_RESOURCE: Applies to customizable task resource requests and limits.\n - CLUSTER_RESOURCE: Applies to configuring templated kubernetes cluster resources.\n - EXECUTION_QUEUE: Configures task and dynamic task execution queue assignment.\n - EXECUTION_CLUSTER_LABEL: Configures the K8s cluster label to be used for execution to be run\n - QUALITY_OF_SERVICE_SPECIFICATION: Configures default quality of service when undefined in an execution spec.\n - PLUGIN_OVERRIDE: Selects configurable plugin implementation behavior for a given task type.", + "description": " - TASK_RESOURCE: Applies to customizable task resource requests and limits.\n - CLUSTER_RESOURCE: Applies to configuring templated kubernetes cluster resources.\n - EXECUTION_QUEUE: Configures task and dynamic task execution queue assignment.\n - EXECUTION_CLUSTER_LABEL: Configures the K8s cluster label to be used for execution to be run\n - QUALITY_OF_SERVICE_SPECIFICATION: Configures default quality of service when undefined in an execution spec.\n - PLUGIN_OVERRIDE: Selects configurable plugin implementation behavior for a given task type.\n - WORKFLOW_EXECUTION_CONFIG: Adds defaults for customizable workflow-execution specifications and overrides.", "in": "query", "required": false, "type": "string", @@ -1154,7 +1154,8 @@ "EXECUTION_QUEUE", "EXECUTION_CLUSTER_LABEL", "QUALITY_OF_SERVICE_SPECIFICATION", - "PLUGIN_OVERRIDE" + "PLUGIN_OVERRIDE", + "WORKFLOW_EXECUTION_CONFIG" ], "default": "TASK_RESOURCE" } @@ -1568,7 +1569,7 @@ }, { "name": "resource_type", - "description": " - TASK_RESOURCE: Applies to customizable task resource requests and limits.\n - CLUSTER_RESOURCE: Applies to configuring templated kubernetes cluster resources.\n - EXECUTION_QUEUE: Configures task and dynamic task execution queue assignment.\n - EXECUTION_CLUSTER_LABEL: Configures the K8s cluster label to be used for execution to be run\n - QUALITY_OF_SERVICE_SPECIFICATION: Configures default quality of service when undefined in an execution spec.\n - PLUGIN_OVERRIDE: Selects configurable plugin implementation behavior for a given task type.", + "description": " - TASK_RESOURCE: Applies to customizable task resource requests and limits.\n - CLUSTER_RESOURCE: Applies to configuring templated kubernetes cluster resources.\n - EXECUTION_QUEUE: Configures task and dynamic task execution queue assignment.\n - EXECUTION_CLUSTER_LABEL: Configures the K8s cluster label to be used for execution to be run\n - QUALITY_OF_SERVICE_SPECIFICATION: Configures default quality of service when undefined in an execution spec.\n - PLUGIN_OVERRIDE: Selects configurable plugin implementation behavior for a given task type.\n - WORKFLOW_EXECUTION_CONFIG: Adds defaults for customizable workflow-execution specifications and overrides.", "in": "query", "required": false, "type": "string", @@ -1578,7 +1579,8 @@ "EXECUTION_QUEUE", "EXECUTION_CLUSTER_LABEL", "QUALITY_OF_SERVICE_SPECIFICATION", - "PLUGIN_OVERRIDE" + "PLUGIN_OVERRIDE", + "WORKFLOW_EXECUTION_CONFIG" ], "default": "TASK_RESOURCE" } @@ -2363,7 +2365,7 @@ }, { "name": "resource_type", - "description": " - TASK_RESOURCE: Applies to customizable task resource requests and limits.\n - CLUSTER_RESOURCE: Applies to configuring templated kubernetes cluster resources.\n - EXECUTION_QUEUE: Configures task and dynamic task execution queue assignment.\n - EXECUTION_CLUSTER_LABEL: Configures the K8s cluster label to be used for execution to be run\n - QUALITY_OF_SERVICE_SPECIFICATION: Configures default quality of service when undefined in an execution spec.\n - PLUGIN_OVERRIDE: Selects configurable plugin implementation behavior for a given task type.", + "description": " - TASK_RESOURCE: Applies to customizable task resource requests and limits.\n - CLUSTER_RESOURCE: Applies to configuring templated kubernetes cluster resources.\n - EXECUTION_QUEUE: Configures task and dynamic task execution queue assignment.\n - EXECUTION_CLUSTER_LABEL: Configures the K8s cluster label to be used for execution to be run\n - QUALITY_OF_SERVICE_SPECIFICATION: Configures default quality of service when undefined in an execution spec.\n - PLUGIN_OVERRIDE: Selects configurable plugin implementation behavior for a given task type.\n - WORKFLOW_EXECUTION_CONFIG: Adds defaults for customizable workflow-execution specifications and overrides.", "in": "query", "required": false, "type": "string", @@ -2373,7 +2375,8 @@ "EXECUTION_QUEUE", "EXECUTION_CLUSTER_LABEL", "QUALITY_OF_SERVICE_SPECIFICATION", - "PLUGIN_OVERRIDE" + "PLUGIN_OVERRIDE", + "WORKFLOW_EXECUTION_CONFIG" ], "default": "TASK_RESOURCE" } @@ -3637,10 +3640,11 @@ "EXECUTION_QUEUE", "EXECUTION_CLUSTER_LABEL", "QUALITY_OF_SERVICE_SPECIFICATION", - "PLUGIN_OVERRIDE" + "PLUGIN_OVERRIDE", + "WORKFLOW_EXECUTION_CONFIG" ], "default": "TASK_RESOURCE", - "description": "Defines a resource that can be configured by customizable Project-, ProjectDomain- or WorkflowAttributes\nbased on matching tags.\n\n - TASK_RESOURCE: Applies to customizable task resource requests and limits.\n - CLUSTER_RESOURCE: Applies to configuring templated kubernetes cluster resources.\n - EXECUTION_QUEUE: Configures task and dynamic task execution queue assignment.\n - EXECUTION_CLUSTER_LABEL: Configures the K8s cluster label to be used for execution to be run\n - QUALITY_OF_SERVICE_SPECIFICATION: Configures default quality of service when undefined in an execution spec.\n - PLUGIN_OVERRIDE: Selects configurable plugin implementation behavior for a given task type." + "description": "Defines a resource that can be configured by customizable Project-, ProjectDomain- or WorkflowAttributes\nbased on matching tags.\n\n - TASK_RESOURCE: Applies to customizable task resource requests and limits.\n - CLUSTER_RESOURCE: Applies to configuring templated kubernetes cluster resources.\n - EXECUTION_QUEUE: Configures task and dynamic task execution queue assignment.\n - EXECUTION_CLUSTER_LABEL: Configures the K8s cluster label to be used for execution to be run\n - QUALITY_OF_SERVICE_SPECIFICATION: Configures default quality of service when undefined in an execution spec.\n - PLUGIN_OVERRIDE: Selects configurable plugin implementation behavior for a given task type.\n - WORKFLOW_EXECUTION_CONFIG: Adds defaults for customizable workflow-execution specifications and overrides." }, "adminMatchingAttributes": { "type": "object", @@ -3662,6 +3666,9 @@ }, "plugin_overrides": { "$ref": "#/definitions/adminPluginOverrides" + }, + "workflow_execution_config": { + "$ref": "#/definitions/adminWorkflowExecutionConfig" } }, "description": "Generic container for encapsulating all types of the above attributes messages." @@ -4517,6 +4524,17 @@ "adminWorkflowCreateResponse": { "type": "object" }, + "adminWorkflowExecutionConfig": { + "type": "object", + "properties": { + "max_parallelism": { + "type": "integer", + "format": "int32", + "description": "Can be used to control the number of parallel nodes to run within the workflow. This is useful to achieve fairness." + } + }, + "description": "Adds defaults for customizable workflow-execution specifications and overrides." + }, "adminWorkflowExecutionEventRequest": { "type": "object", "properties": { diff --git a/gen/pb-go/flyteidl/service/flyteadmin/README.md b/gen/pb-go/flyteidl/service/flyteadmin/README.md index 5b57872ef0..6eebe85552 100644 --- a/gen/pb-go/flyteidl/service/flyteadmin/README.md +++ b/gen/pb-go/flyteidl/service/flyteadmin/README.md @@ -172,6 +172,7 @@ Class | Method | HTTP request | Description - [AdminWorkflowClosure](docs/AdminWorkflowClosure.md) - [AdminWorkflowCreateRequest](docs/AdminWorkflowCreateRequest.md) - [AdminWorkflowCreateResponse](docs/AdminWorkflowCreateResponse.md) + - [AdminWorkflowExecutionConfig](docs/AdminWorkflowExecutionConfig.md) - [AdminWorkflowExecutionEventRequest](docs/AdminWorkflowExecutionEventRequest.md) - [AdminWorkflowExecutionEventResponse](docs/AdminWorkflowExecutionEventResponse.md) - [AdminWorkflowExecutionGetDataResponse](docs/AdminWorkflowExecutionGetDataResponse.md) diff --git a/gen/pb-go/flyteidl/service/flyteadmin/api/swagger.yaml b/gen/pb-go/flyteidl/service/flyteadmin/api/swagger.yaml index 2c6cc6ea22..f29cece06b 100644 --- a/gen/pb-go/flyteidl/service/flyteadmin/api/swagger.yaml +++ b/gen/pb-go/flyteidl/service/flyteadmin/api/swagger.yaml @@ -997,7 +997,8 @@ paths: \ K8s cluster label to be used for execution to be run\n - QUALITY_OF_SERVICE_SPECIFICATION:\ \ Configures default quality of service when undefined in an execution spec.\n\ \ - PLUGIN_OVERRIDE: Selects configurable plugin implementation behavior\ - \ for a given task type." + \ for a given task type.\n - WORKFLOW_EXECUTION_CONFIG: Adds defaults for\ + \ customizable workflow-execution specifications and overrides." required: false type: "string" default: "TASK_RESOURCE" @@ -1008,6 +1009,7 @@ paths: - "EXECUTION_CLUSTER_LABEL" - "QUALITY_OF_SERVICE_SPECIFICATION" - "PLUGIN_OVERRIDE" + - "WORKFLOW_EXECUTION_CONFIG" x-exportParamName: "ResourceType" x-optionalDataType: "String" responses: @@ -1366,7 +1368,8 @@ paths: \ K8s cluster label to be used for execution to be run\n - QUALITY_OF_SERVICE_SPECIFICATION:\ \ Configures default quality of service when undefined in an execution spec.\n\ \ - PLUGIN_OVERRIDE: Selects configurable plugin implementation behavior\ - \ for a given task type." + \ for a given task type.\n - WORKFLOW_EXECUTION_CONFIG: Adds defaults for\ + \ customizable workflow-execution specifications and overrides." required: false type: "string" default: "TASK_RESOURCE" @@ -1377,6 +1380,7 @@ paths: - "EXECUTION_CLUSTER_LABEL" - "QUALITY_OF_SERVICE_SPECIFICATION" - "PLUGIN_OVERRIDE" + - "WORKFLOW_EXECUTION_CONFIG" x-exportParamName: "ResourceType" x-optionalDataType: "String" responses: @@ -2069,7 +2073,8 @@ paths: \ K8s cluster label to be used for execution to be run\n - QUALITY_OF_SERVICE_SPECIFICATION:\ \ Configures default quality of service when undefined in an execution spec.\n\ \ - PLUGIN_OVERRIDE: Selects configurable plugin implementation behavior\ - \ for a given task type." + \ for a given task type.\n - WORKFLOW_EXECUTION_CONFIG: Adds defaults for\ + \ customizable workflow-execution specifications and overrides." required: false type: "string" default: "TASK_RESOURCE" @@ -2080,6 +2085,7 @@ paths: - "EXECUTION_CLUSTER_LABEL" - "QUALITY_OF_SERVICE_SPECIFICATION" - "PLUGIN_OVERRIDE" + - "WORKFLOW_EXECUTION_CONFIG" x-exportParamName: "ResourceType" x-optionalDataType: "String" responses: @@ -5189,6 +5195,8 @@ definitions: tier: {} spec: queueing_budget: "queueing_budget" + workflow_execution_config: + max_parallelism: 0 cluster_resource_attributes: attributes: key: "attributes" @@ -5230,6 +5238,8 @@ definitions: tier: {} spec: queueing_budget: "queueing_budget" + workflow_execution_config: + max_parallelism: 0 cluster_resource_attributes: attributes: key: "attributes" @@ -5302,6 +5312,8 @@ definitions: tier: {} spec: queueing_budget: "queueing_budget" + workflow_execution_config: + max_parallelism: 0 cluster_resource_attributes: attributes: key: "attributes" @@ -5344,7 +5356,8 @@ definitions: \ Configures the K8s cluster label to be used for execution to be run\n - QUALITY_OF_SERVICE_SPECIFICATION:\ \ Configures default quality of service when undefined in an execution spec.\n\ \ - PLUGIN_OVERRIDE: Selects configurable plugin implementation behavior for\ - \ a given task type." + \ a given task type.\n - WORKFLOW_EXECUTION_CONFIG: Adds defaults for customizable\ + \ workflow-execution specifications and overrides." enum: - "TASK_RESOURCE" - "CLUSTER_RESOURCE" @@ -5352,6 +5365,7 @@ definitions: - "EXECUTION_CLUSTER_LABEL" - "QUALITY_OF_SERVICE_SPECIFICATION" - "PLUGIN_OVERRIDE" + - "WORKFLOW_EXECUTION_CONFIG" default: "TASK_RESOURCE" adminMatchingAttributes: type: "object" @@ -5368,6 +5382,8 @@ definitions: $ref: "#/definitions/coreQualityOfService" plugin_overrides: $ref: "#/definitions/adminPluginOverrides" + workflow_execution_config: + $ref: "#/definitions/adminWorkflowExecutionConfig" description: "Generic container for encapsulating all types of the above attributes\ \ messages." example: @@ -5375,6 +5391,8 @@ definitions: tier: {} spec: queueing_budget: "queueing_budget" + workflow_execution_config: + max_parallelism: 0 cluster_resource_attributes: attributes: key: "attributes" @@ -8860,6 +8878,8 @@ definitions: tier: {} spec: queueing_budget: "queueing_budget" + workflow_execution_config: + max_parallelism: 0 cluster_resource_attributes: attributes: key: "attributes" @@ -8920,6 +8940,8 @@ definitions: tier: {} spec: queueing_budget: "queueing_budget" + workflow_execution_config: + max_parallelism: 0 cluster_resource_attributes: attributes: key: "attributes" @@ -13167,6 +13189,8 @@ definitions: tier: {} spec: queueing_budget: "queueing_budget" + workflow_execution_config: + max_parallelism: 0 cluster_resource_attributes: attributes: key: "attributes" @@ -13231,6 +13255,8 @@ definitions: tier: {} spec: queueing_budget: "queueing_budget" + workflow_execution_config: + max_parallelism: 0 cluster_resource_attributes: attributes: key: "attributes" @@ -16155,6 +16181,18 @@ definitions: description: "Represents a request structure to create a revision of a workflow." adminWorkflowCreateResponse: type: "object" + adminWorkflowExecutionConfig: + type: "object" + properties: + max_parallelism: + type: "integer" + format: "int32" + description: "Can be used to control the number of parallel nodes to run within\ + \ the workflow. This is useful to achieve fairness." + description: "Adds defaults for customizable workflow-execution specifications\ + \ and overrides." + example: + max_parallelism: 0 adminWorkflowExecutionEventRequest: type: "object" properties: diff --git a/gen/pb-go/flyteidl/service/flyteadmin/api_admin_service.go b/gen/pb-go/flyteidl/service/flyteadmin/api_admin_service.go index d8e89e24c8..97e9b1c68b 100644 --- a/gen/pb-go/flyteidl/service/flyteadmin/api_admin_service.go +++ b/gen/pb-go/flyteidl/service/flyteadmin/api_admin_service.go @@ -1588,7 +1588,7 @@ Retrieve the customized resource attributes associated with a project-domain com * @param project Unique project id which this set of attributes references. * @param domain Unique domain id which this set of attributes references. * @param optional nil or *GetProjectDomainAttributesOpts - Optional Parameters: - * @param "ResourceType" (optional.String) - - TASK_RESOURCE: Applies to customizable task resource requests and limits. - CLUSTER_RESOURCE: Applies to configuring templated kubernetes cluster resources. - EXECUTION_QUEUE: Configures task and dynamic task execution queue assignment. - EXECUTION_CLUSTER_LABEL: Configures the K8s cluster label to be used for execution to be run - QUALITY_OF_SERVICE_SPECIFICATION: Configures default quality of service when undefined in an execution spec. - PLUGIN_OVERRIDE: Selects configurable plugin implementation behavior for a given task type. + * @param "ResourceType" (optional.String) - - TASK_RESOURCE: Applies to customizable task resource requests and limits. - CLUSTER_RESOURCE: Applies to configuring templated kubernetes cluster resources. - EXECUTION_QUEUE: Configures task and dynamic task execution queue assignment. - EXECUTION_CLUSTER_LABEL: Configures the K8s cluster label to be used for execution to be run - QUALITY_OF_SERVICE_SPECIFICATION: Configures default quality of service when undefined in an execution spec. - PLUGIN_OVERRIDE: Selects configurable plugin implementation behavior for a given task type. - WORKFLOW_EXECUTION_CONFIG: Adds defaults for customizable workflow-execution specifications and overrides. @return AdminProjectDomainAttributesGetResponse */ @@ -2217,7 +2217,7 @@ Retrieve the customized resource attributes associated with a project, domain an * @param domain Unique domain id which this set of attributes references. * @param workflow Workflow name which this set of attributes references. * @param optional nil or *GetWorkflowAttributesOpts - Optional Parameters: - * @param "ResourceType" (optional.String) - - TASK_RESOURCE: Applies to customizable task resource requests and limits. - CLUSTER_RESOURCE: Applies to configuring templated kubernetes cluster resources. - EXECUTION_QUEUE: Configures task and dynamic task execution queue assignment. - EXECUTION_CLUSTER_LABEL: Configures the K8s cluster label to be used for execution to be run - QUALITY_OF_SERVICE_SPECIFICATION: Configures default quality of service when undefined in an execution spec. - PLUGIN_OVERRIDE: Selects configurable plugin implementation behavior for a given task type. + * @param "ResourceType" (optional.String) - - TASK_RESOURCE: Applies to customizable task resource requests and limits. - CLUSTER_RESOURCE: Applies to configuring templated kubernetes cluster resources. - EXECUTION_QUEUE: Configures task and dynamic task execution queue assignment. - EXECUTION_CLUSTER_LABEL: Configures the K8s cluster label to be used for execution to be run - QUALITY_OF_SERVICE_SPECIFICATION: Configures default quality of service when undefined in an execution spec. - PLUGIN_OVERRIDE: Selects configurable plugin implementation behavior for a given task type. - WORKFLOW_EXECUTION_CONFIG: Adds defaults for customizable workflow-execution specifications and overrides. @return AdminWorkflowAttributesGetResponse */ @@ -2929,7 +2929,7 @@ AdminServiceApiService Retrieve a list of MatchableAttributesConfiguration objects. * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param optional nil or *ListMatchableAttributesOpts - Optional Parameters: - * @param "ResourceType" (optional.String) - - TASK_RESOURCE: Applies to customizable task resource requests and limits. - CLUSTER_RESOURCE: Applies to configuring templated kubernetes cluster resources. - EXECUTION_QUEUE: Configures task and dynamic task execution queue assignment. - EXECUTION_CLUSTER_LABEL: Configures the K8s cluster label to be used for execution to be run - QUALITY_OF_SERVICE_SPECIFICATION: Configures default quality of service when undefined in an execution spec. - PLUGIN_OVERRIDE: Selects configurable plugin implementation behavior for a given task type. + * @param "ResourceType" (optional.String) - - TASK_RESOURCE: Applies to customizable task resource requests and limits. - CLUSTER_RESOURCE: Applies to configuring templated kubernetes cluster resources. - EXECUTION_QUEUE: Configures task and dynamic task execution queue assignment. - EXECUTION_CLUSTER_LABEL: Configures the K8s cluster label to be used for execution to be run - QUALITY_OF_SERVICE_SPECIFICATION: Configures default quality of service when undefined in an execution spec. - PLUGIN_OVERRIDE: Selects configurable plugin implementation behavior for a given task type. - WORKFLOW_EXECUTION_CONFIG: Adds defaults for customizable workflow-execution specifications and overrides. @return AdminListMatchableAttributesResponse */ diff --git a/gen/pb-go/flyteidl/service/flyteadmin/model_admin_matchable_resource.go b/gen/pb-go/flyteidl/service/flyteadmin/model_admin_matchable_resource.go index 1837603736..0790a1483c 100644 --- a/gen/pb-go/flyteidl/service/flyteadmin/model_admin_matchable_resource.go +++ b/gen/pb-go/flyteidl/service/flyteadmin/model_admin_matchable_resource.go @@ -8,7 +8,7 @@ */ package flyteadmin -// AdminMatchableResource : Defines a resource that can be configured by customizable Project-, ProjectDomain- or WorkflowAttributes based on matching tags. - TASK_RESOURCE: Applies to customizable task resource requests and limits. - CLUSTER_RESOURCE: Applies to configuring templated kubernetes cluster resources. - EXECUTION_QUEUE: Configures task and dynamic task execution queue assignment. - EXECUTION_CLUSTER_LABEL: Configures the K8s cluster label to be used for execution to be run - QUALITY_OF_SERVICE_SPECIFICATION: Configures default quality of service when undefined in an execution spec. - PLUGIN_OVERRIDE: Selects configurable plugin implementation behavior for a given task type. +// AdminMatchableResource : Defines a resource that can be configured by customizable Project-, ProjectDomain- or WorkflowAttributes based on matching tags. - TASK_RESOURCE: Applies to customizable task resource requests and limits. - CLUSTER_RESOURCE: Applies to configuring templated kubernetes cluster resources. - EXECUTION_QUEUE: Configures task and dynamic task execution queue assignment. - EXECUTION_CLUSTER_LABEL: Configures the K8s cluster label to be used for execution to be run - QUALITY_OF_SERVICE_SPECIFICATION: Configures default quality of service when undefined in an execution spec. - PLUGIN_OVERRIDE: Selects configurable plugin implementation behavior for a given task type. - WORKFLOW_EXECUTION_CONFIG: Adds defaults for customizable workflow-execution specifications and overrides. type AdminMatchableResource string // List of adminMatchableResource @@ -19,4 +19,5 @@ const ( AdminMatchableResourceEXECUTION_CLUSTER_LABEL AdminMatchableResource = "EXECUTION_CLUSTER_LABEL" AdminMatchableResourceQUALITY_OF_SERVICE_SPECIFICATION AdminMatchableResource = "QUALITY_OF_SERVICE_SPECIFICATION" AdminMatchableResourcePLUGIN_OVERRIDE AdminMatchableResource = "PLUGIN_OVERRIDE" + AdminMatchableResourceWORKFLOW_EXECUTION_CONFIG AdminMatchableResource = "WORKFLOW_EXECUTION_CONFIG" ) diff --git a/gen/pb-go/flyteidl/service/flyteadmin/model_admin_matching_attributes.go b/gen/pb-go/flyteidl/service/flyteadmin/model_admin_matching_attributes.go index 54963c1a0f..4ef7fc8b21 100644 --- a/gen/pb-go/flyteidl/service/flyteadmin/model_admin_matching_attributes.go +++ b/gen/pb-go/flyteidl/service/flyteadmin/model_admin_matching_attributes.go @@ -17,4 +17,5 @@ type AdminMatchingAttributes struct { ExecutionClusterLabel *AdminExecutionClusterLabel `json:"execution_cluster_label,omitempty"` QualityOfService *CoreQualityOfService `json:"quality_of_service,omitempty"` PluginOverrides *AdminPluginOverrides `json:"plugin_overrides,omitempty"` + WorkflowExecutionConfig *AdminWorkflowExecutionConfig `json:"workflow_execution_config,omitempty"` } diff --git a/gen/pb-go/flyteidl/service/flyteadmin/model_admin_workflow_execution_config.go b/gen/pb-go/flyteidl/service/flyteadmin/model_admin_workflow_execution_config.go new file mode 100644 index 0000000000..bbc97f92dd --- /dev/null +++ b/gen/pb-go/flyteidl/service/flyteadmin/model_admin_workflow_execution_config.go @@ -0,0 +1,16 @@ +/* + * flyteidl/service/admin.proto + * + * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) + * + * API version: version not set + * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) + */ + +package flyteadmin + +// Adds defaults for customizable workflow-execution specifications and overrides. +type AdminWorkflowExecutionConfig struct { + // Can be used to control the number of parallel nodes to run within the workflow. This is useful to achieve fairness. + MaxParallelism int32 `json:"max_parallelism,omitempty"` +} diff --git a/gen/pb-go/flyteidl/service/openapi.go b/gen/pb-go/flyteidl/service/openapi.go index e5e80fc11f..d1df8dd8f3 100644 --- a/gen/pb-go/flyteidl/service/openapi.go +++ b/gen/pb-go/flyteidl/service/openapi.go @@ -78,7 +78,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _adminSwaggerJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xfd\x7d\x73\x23\xb9\x91\x27\x8e\xff\xef\x57\x81\x6b\x5f\xc4\x4c\xdb\x12\x35\x33\xde\x75\x78\xb5\x71\xf1\xfb\xb1\x25\x76\x0f\x6f\xd4\x92\x2c\x51\xdd\x3b\x77\xdc\xe0\x81\x55\x20\x09\xab\x08\x70\x00\x94\xd4\xb4\xc3\xef\xfd\x1b\xc8\x04\x50\xa8\x62\x15\x9f\xa5\x96\xda\xdc\x8d\xf0\xb4\x58\x55\x78\x4c\x24\xf2\xf1\x93\xff\xf8\x1d\x21\x6f\xf4\x23\x1d\x8f\x99\x7a\x73\x4a\xde\xfc\xd4\xfa\xe1\xcd\x91\xfd\x8d\x8b\x91\x7c\x73\x4a\xec\x73\x42\xde\x18\x6e\x32\x66\x9f\x8f\xb2\xb9\x61\x3c\xcd\x4e\x34\x53\x0f\x3c\x61\x27\x34\x9d\x72\xd1\x9a\x29\x69\x24\x7c\x48\xc8\x9b\x07\xa6\x34\x97\xc2\xbe\xee\xfe\x49\x84\x34\x44\x33\xf3\xe6\x77\x84\xfc\x13\x9a\xd7\xc9\x84\x4d\x99\x7e\x73\x4a\xfe\x2f\x7e\x34\x31\x66\xe6\x1b\xb0\xff\xd6\xf6\xdd\xff\x86\x77\x13\x29\x74\x5e\x7a\x99\xce\x66\x19\x4f\xa8\xe1\x52\x9c\xfc\x4d\x4b\x51\xbc\x3b\x53\x32\xcd\x93\x35\xdf\xa5\x66\xa2\x8b\x39\x9e\xd0\x19\x3f\x79\xf8\xf1\x84\x26\x86\x3f\xb0\x41\x46\x73\x91\x4c\x06\xb3\x8c\x0a\x7d\xf2\x0f\x9e\xda\x39\xfe\x8d\x25\xe6\x9f\xf0\x47\x2a\xa7\x94\x0b\xfc\xb7\xa0\x53\xf6\xcf\xd0\x0e\x21\x6f\xc6\xcc\x44\x7f\x12\xf2\x26\x65\x3a\x51\x7c\x66\xdc\xaa\xdc\x30\xa3\x38\x7b\x60\xc4\x4c\x18\xc1\xee\x08\x76\x47\x6c\x77\xc4\xaf\x9a\x9e\xb1\x84\x8f\x38\x4b\xc9\x70\x4e\xb8\x98\xe5\x86\x28\xf6\x5b\xce\xb4\x21\x23\x9e\x19\xa6\x74\xcb\x2d\x19\xf4\x22\x67\x4c\xc1\x3c\xbb\xa9\xed\xe5\x03\x33\x6d\x68\xfb\x02\x9a\xbe\xce\xa8\x88\xdf\x56\x4c\xcf\xa4\xd0\x4c\x97\x86\x4a\xc8\x9b\x9f\x7e\xf8\xa1\xf2\xd3\xe2\x0c\xda\x44\xe7\x49\xc2\xb4\x1e\xe5\x19\xf1\x2d\xc5\x83\x81\x8f\x60\x93\xe9\x42\x63\x84\xbc\xf9\x9f\x8a\x8d\x6c\x3b\xbf\x3f\x49\xd9\x88\x0b\x6e\xdb\xd5\x48\x4b\xd1\x68\x4b\x5f\xfd\xf3\x77\x75\xff\xfe\x67\x34\xa3\x19\x55\x74\xca\xec\xb2\x84\xdd\xc7\xff\xab\xcc\xc5\xee\x97\xed\xbc\xd8\xd3\xea\xc0\x2b\xb3\xbd\xa4\x53\x46\xe4\x08\xb6\xcb\x7d\x01\xff\x56\x4c\xcb\x5c\x25\x8c\x0c\x59\x26\xc5\x58\x13\x23\x17\xd6\x80\x43\x0b\x96\xd4\xaa\x4f\xec\x56\x72\xc5\xec\x5e\x19\x95\xb3\xca\x53\x33\x9f\xc1\x20\xb5\x51\x5c\x8c\xe3\xa5\xf8\xe7\xd1\x5a\x53\x43\x0a\xdd\x60\x66\xf8\x41\xe3\xc4\xfa\xa2\xed\x5f\x49\xa8\x20\x43\x46\xec\xb9\xe4\x29\x53\x2c\x25\x54\x13\x4a\x74\x3e\xd4\xcc\x90\x47\x6e\x26\x5c\xd8\xbf\x91\x7c\x13\xbf\x66\x2f\x67\x6d\xe0\x9f\xcb\x57\xe6\x4e\x33\x65\x07\xfe\xc0\x53\x96\x92\x07\x9a\xe5\x8c\x8c\xa4\x2a\x2d\x4f\xab\x2f\x7a\x13\xbb\x0e\xd3\x21\x17\x70\xf2\xec\x5a\x7a\x0a\xf9\xa3\x5f\xae\x3f\x12\xdb\x1f\xc9\x05\xff\x2d\x67\xd9\x9c\xf0\x94\x09\x63\xcf\xb5\xae\xb6\xf6\x47\x09\xfd\xd3\x8c\x1c\x13\xbb\xce\x4c\x19\x58\x6f\x29\x0c\xfb\x62\x34\x39\x26\x19\xbf\x67\xe4\xbb\x0b\xae\x0d\x69\x5f\x77\xbf\x3b\x22\xdf\x5d\x14\x8c\x43\x7f\xf7\x0c\x2b\x1c\xfe\xfd\xdf\xd1\xd1\x33\x74\x5c\x3d\x74\x6f\xda\xf6\x34\xdf\xe2\x35\x51\xb4\xf0\xdf\xbf\x8b\xdb\x71\xfb\xb5\x9c\xf7\x16\x8c\xd7\x71\xdd\x4d\x78\xed\x7b\x66\x92\xc9\x0a\x46\xab\x77\xe4\xb4\x76\x3b\xaa\xac\x56\xbf\x2e\x5e\x6b\xa7\xf0\xd4\xfc\x76\x17\x66\x4b\x0d\x9c\x02\xca\x05\x1e\x9a\x70\x86\xca\x3b\x43\xbe\x1e\x5b\xd9\x85\xdf\x46\xb3\x89\x58\xae\xe7\xa4\xd1\x4a\xbc\x90\xb9\x66\x7c\xca\x57\xed\x63\x57\xa4\x56\xec\x72\x4c\x4e\xe4\xd3\x21\x53\x76\xea\x9e\xdd\xc1\x0c\x87\x96\xfd\x99\x5c\x09\x96\x36\x4c\xed\xb7\x9c\xa9\xf9\x92\xb9\x8d\x68\xa6\x9b\x26\xc7\x85\x61\x56\xae\xad\x3c\x1e\x49\x35\xa5\xc6\xbd\xf0\xe7\x7f\xdb\x74\xf2\x46\xde\xb3\x55\xfb\xdc\xc5\x5d\x4b\xa8\x86\xed\x9e\xe6\x99\xe1\xb3\x8c\x91\x19\x1d\x33\xed\x56\x21\xcf\x8c\x3e\x82\xd7\xac\x2c\xcd\xd4\x71\xb8\x6d\xa0\x07\x7f\xcb\xe6\x1a\x7e\x21\xa3\xc0\xc8\x04\xfb\x62\xa0\xa5\xbe\x80\x7b\x16\x96\x28\xbe\x3d\x9e\x60\x29\xb7\xa3\x13\x2d\x95\x19\x0c\xe7\xad\x7b\xb6\xd0\x6f\x23\xb5\x50\x41\xa8\x31\x8a\x0f\x73\xc3\xec\xbc\x6d\x1b\xfe\x9e\x04\xd6\x87\x97\xb1\xb6\x97\xef\xd5\xf9\xd5\xf7\xf7\xd4\x28\x39\xa6\xe2\xed\x29\x69\xa7\x29\xc1\x81\xda\x77\x78\x8a\x57\xf2\x84\x29\xd6\x22\xbd\x09\xd7\x44\x4f\x64\x9e\xa5\x44\xb0\x07\xa6\xec\xda\xb2\xe9\xcc\xcc\x5f\xdc\x6a\xa5\x5c\xb1\x04\x16\x66\x93\x13\x16\xbe\xb2\x8b\x66\x95\x9e\x39\x2e\xdd\x3d\x9b\x83\xe0\xb2\xb8\x7c\xcf\x40\x2f\x95\xa7\x4c\xe4\xd3\xca\x5d\x01\xbf\x9f\x77\x6e\xcf\x3a\x97\xe7\xdd\xcb\x0f\x95\x2f\xac\x18\x11\x1e\x95\x9e\xfc\xf7\xc2\xda\x8c\x68\x9e\xc1\xa9\x8e\x5a\x7b\x36\xc1\x25\x99\xf0\x2c\x55\x4c\x9c\x18\xaa\xef\x07\xec\x0b\x4b\x72\xbc\x67\xff\x51\xfe\x61\x60\xa5\x4f\x99\xb2\xf2\x2f\xa5\x3f\x0a\x71\x67\xe3\x4f\x83\x56\xba\xf1\x97\xa0\xc3\xae\xf7\x1d\xfc\xc2\xd3\xda\xb7\xe1\x97\x15\x73\xf0\xef\x2c\x19\xac\x7f\xa5\x71\x54\xfe\x05\x27\xc0\xd5\xbe\xa3\x98\x51\xf3\x01\x35\xc6\x9e\xf2\x2d\x64\x46\xd8\x52\x62\x67\x4b\x8a\xfd\x74\xe2\x23\x0a\x8a\xc0\xbb\x83\xe4\x68\x47\x50\xbc\xb9\x4a\x5e\xbc\x94\x29\xeb\x84\x66\xdf\x4b\xd5\xa3\xfa\xfe\x35\xc8\x8c\xa5\x81\x3f\x87\xd8\xb8\xed\x01\xfa\xe6\x94\xfa\x2d\xd9\xc1\xc1\x04\xb0\xfb\x4a\xae\x6b\x30\x90\x8a\xe8\xb9\x36\x6c\xba\xd2\x74\xf0\x7a\x16\xc2\xf1\xfb\x97\x3a\xe0\xca\x95\xf3\x2f\x70\xea\xcb\x17\xe8\xe1\x78\x6f\xb0\x64\xfb\x32\xfc\xbd\xf4\x79\x7a\x17\xcc\xf2\xa9\xde\xfa\xed\xf3\x0e\x07\x47\x27\x2f\x7e\x9a\x25\xd1\x6e\xdf\x83\x7c\x22\xab\x41\xe3\x5e\xf9\xd5\x1e\xc0\x00\x56\xa8\x7c\x65\xd3\x71\x38\x7f\xf6\xd3\xd8\xb8\x82\x16\x33\x63\x75\x5e\x67\x5b\x62\x8a\x24\x52\xa1\x28\x98\xba\xe3\xde\x17\xe4\x98\x9c\xb7\x7b\xed\xdb\x4e\xef\x94\xb4\x49\x4a\x0d\xb5\xe7\x5b\xb1\x99\x62\x9a\x09\x03\xda\xb8\xfd\xdc\xcc\xc9\x54\xa6\x2c\x63\x29\xe1\x82\xbc\xcf\xe6\x86\x91\x73\x6a\xe8\x19\x35\x34\x93\xe3\x16\x69\xc3\x9f\xf6\x63\xae\x09\xcd\xb4\x24\xd4\x53\x15\x4b\x7d\x13\x54\xa4\x9e\xb3\x50\x92\xc8\xe9\x8c\x67\xc1\x6a\x1e\x4c\x24\x5c\xa4\xfc\x81\xa7\x39\xcd\x88\x1c\x5a\xa6\x62\x55\xd5\xce\x03\x13\x26\xa7\x59\x36\x27\x34\xcb\x88\xeb\xd6\xbf\xe0\xf5\xfa\x21\x0b\xa3\xd4\x7c\xca\x33\xaa\xac\x2e\x8c\xa3\xbd\x72\x6d\x91\xde\x84\x85\xb1\xc2\xb8\xec\x62\x4e\xe9\x3d\xd3\x84\x1b\x32\x93\x5a\xf3\x61\x56\x1c\xf9\xbb\x2e\x81\x71\x9f\x5d\x74\x41\xb1\x4e\x0c\x91\xc8\x42\x7d\xe7\xce\x0a\xe3\x7b\x9c\x52\x21\x18\x74\x2c\xcd\x84\x29\xd7\xbd\x7b\xf9\x6b\x2b\xda\x77\x97\xb7\xd7\x9d\xb3\xee\xfb\x6e\xe7\x7c\x51\xd3\xee\xb5\x6f\x7f\x59\xfc\xf5\xf3\xd5\xcd\x2f\xef\x2f\xae\x3e\x2f\x3e\xb9\x68\xdf\x5d\x9e\xfd\x3c\xb8\xbe\x68\x5f\x2e\x3e\x74\x64\xb5\xb6\xd2\x1e\x8f\x6c\xc3\xa3\x75\xb0\x46\xee\xd3\x1a\x79\xf4\xed\x9a\x23\x9d\x2b\x67\x7d\x53\x24\xc9\xb8\x36\x76\x81\xdc\x97\x64\x46\xb5\x46\x61\x08\x47\xd0\xea\x8b\x8f\x52\x59\xa6\x35\x92\x96\x2f\x58\x81\xc9\xa8\x3c\x31\x5c\x8c\xc3\x47\xa7\xa4\x9f\xff\xf0\xc3\x9f\x92\x0b\x2e\xee\xe1\x5f\xec\x25\x2e\xce\xc1\x56\xbb\xcd\x6a\x1d\x6c\xb5\xf1\xb3\xd7\x61\xab\xb5\x62\xce\x49\x6c\xa2\x7d\x9a\xe0\x1e\x74\x23\x5b\xd9\x41\xe6\xc6\xfe\xd3\xf6\x4b\x46\x4a\x4e\x41\xaa\xfa\xc2\x35\x70\x89\x47\xa9\xee\x47\x99\x7c\x5c\xcf\x74\xf8\x81\x99\x60\x7c\xb3\x52\xcc\x6b\xb0\x18\x7e\x76\x33\x0c\x03\xff\xc0\x8c\x1d\xfb\x8d\xeb\xe5\x10\xe7\x73\x88\xf3\xf9\xba\x71\x3e\x2f\xca\x6c\xf7\xf4\xbc\xaf\x6c\xe3\x43\x06\xd8\xe0\x82\x6a\xf4\x30\x35\x38\x90\x22\xff\xd0\x53\x32\xcd\xb2\x57\x66\x05\xc3\x2c\x79\x2c\x5e\x0b\xd3\x2c\x0d\xfa\xf9\x19\xe6\xbf\x84\x43\xe5\xe0\x2f\xd9\x72\xa1\x5e\x25\x5f\x5d\xf3\xca\x78\x36\x6f\xc7\xd3\xf3\xf9\x85\x58\x84\x4d\x82\x0f\x36\x88\x36\x58\x3b\xbc\x60\x45\x3c\x41\x6d\x00\x41\x5d\xc4\xc0\x62\x88\x40\x6d\x4c\xc0\x4e\x41\x00\x9b\x5e\x49\xeb\xbb\xff\x3f\x30\xd3\xa3\xfa\xfe\xd5\x5d\x49\xa5\x41\x3f\xff\x95\xf4\x2f\xea\xf5\x3f\xb8\xf9\x9f\x70\xe9\xbe\xf5\x8b\xec\xe5\x3a\xf2\xff\x05\x3c\xf7\x07\x57\xfd\x46\x6b\xf4\x6d\xf9\xe6\xbf\x55\x67\xfc\xeb\xf4\xbe\x1f\xdc\xed\x07\x77\xfb\xc1\xdd\xbe\x86\xbb\xfd\x49\x95\x52\x66\xc9\x4a\x83\xf9\x31\xd6\x6d\xde\xcc\xa4\x5e\xae\x8b\x9d\x29\x46\x8d\xa5\xe2\xb2\xdd\x8f\x40\x83\x44\xb1\x44\xaa\xd4\xea\x60\x94\xcc\x26\x54\x33\x62\x14\x15\x9a\xaf\xd2\xc3\xb0\x55\x30\xb4\xd9\x76\x5e\x83\x0a\x56\xb2\x0a\xc2\xa8\x9f\x4b\x01\x1b\xca\x74\xe1\xcc\xe0\x71\xaa\x7b\xb2\x9c\xd7\xef\x6d\xea\x90\xa1\xb9\xce\xcc\x9f\x90\x9a\xed\xbd\xb2\x25\x35\x97\x4d\x06\x7b\xa1\x66\xd0\xd1\x5f\x0b\x35\x97\x0c\x0a\xff\x5a\xd4\x5c\x37\xf5\x97\x40\xcd\xde\x1b\xbd\x25\x45\x2f\x3a\xb3\xf7\x42\xd5\xc1\x83\xfc\x5a\x28\x7b\xc1\xe5\xfd\xaf\x45\xdd\x4d\xd3\xff\xba\x14\x1e\x0c\xe1\xfb\xa2\xed\xd5\x84\x1b\x16\xe0\x35\x10\x6d\x18\x2c\x8e\xfd\x5f\x86\x5a\x17\xe6\xfd\x42\xc8\xf4\x44\x31\xcc\x36\xdc\x88\x5e\x6f\xdc\x47\x1b\x53\xac\xff\xf0\x40\xb3\xaf\x89\x66\xfd\xae\xbd\x1c\xaa\x6d\x0a\xa7\xdb\x3c\x03\x77\x49\x8c\x9c\x26\x53\x6a\x92\x89\x7d\x88\xfe\xb9\x35\x61\x5a\x8a\x94\xdb\x57\x45\xdd\xcf\x91\x67\xfb\x6d\x5b\xe2\x0f\x16\xf8\x7f\x41\x38\xac\x17\x13\x2e\x7e\x48\x51\xd9\x63\x8a\x0a\xd7\x87\x14\x95\x43\x8a\xca\xba\x0b\x74\x48\x51\x39\xa4\xa8\x44\xcf\x5e\x47\x8a\xca\xd3\x67\xa7\xec\x27\x05\xe5\x55\x09\xd1\x07\x01\xfa\x20\x40\x1f\xf2\x4c\xc2\xd4\xf6\xc5\xc0\xfc\xd7\x6f\x52\x96\x31\xc3\x96\xb2\x9f\x1e\x53\x53\xab\x1b\x94\xa0\xaf\x6b\x9c\x06\x05\xaa\x56\xa0\x20\x30\x6f\x2c\xe3\x4b\xa1\xed\xd7\xc9\x9d\xc2\xf0\x0f\x69\x71\x07\x76\x75\x60\x57\xdb\x4c\xed\xe5\x58\x65\xa3\xc3\xfc\x55\xcd\xb2\x11\x90\xf6\x80\xa7\xfb\xc1\xd2\x0e\x62\x63\x8c\xa4\x5d\x2c\x45\x09\xcc\x78\x3b\x23\x6d\x01\x4b\xdd\x4d\x5f\x85\x9d\xd6\xf2\x91\xb4\x03\x51\x77\x21\x64\x50\x1d\x20\xb5\x0f\x90\xda\xeb\xcf\xf5\x60\x21\xdc\xa3\x85\xf0\x00\xa9\x7d\xb0\x81\x1d\x6c\x60\x4f\x6f\x03\xfb\x5a\x06\xed\x67\x3e\x96\xcf\x25\xa2\x6d\x17\x98\x24\x52\xa2\xd8\x98\x6b\xc3\x94\x5d\xbd\x5a\xa1\x6c\x75\xa4\xd2\x6b\x2d\x12\xb5\x76\xdc\x47\xdc\xed\x9b\x7f\x5b\x63\xf8\x37\xee\x16\x85\xa3\x3e\xa4\x69\xa8\x08\x03\xa2\xd3\x94\xce\xc9\x84\x3e\x30\x32\xa2\x3c\x43\xc5\xc8\x71\xc7\x25\x33\x5c\x36\xa0\xff\xd8\x6c\x40\xb4\x3c\x1c\xc5\x46\x4c\x31\x91\x20\xb7\x47\xe1\x27\xa1\x99\x4f\x05\x81\x77\x26\x56\x4d\xcd\x14\xa3\xe9\x9c\x0c\x19\x13\x81\x6c\x6a\x24\x85\x86\x31\xef\x45\x68\xfd\xea\x6a\xda\x22\xf5\xbc\x14\x25\xed\x49\xa2\x67\xea\x59\xc2\xee\xca\x99\xfe\xe9\x75\xb1\x8a\x43\x10\xcd\xc1\xa8\xf6\xf5\x8d\x6a\x87\x20\x9a\x83\x8a\xfc\x02\x54\xe4\x43\x10\xcd\x21\x88\xe6\x60\x40\x58\x7b\xb5\x0e\x06\x84\xf8\xd9\xeb\x08\xa2\x79\xc2\x0a\xce\xcf\x25\x61\x1f\x04\x6c\xff\xde\x41\xc0\x3e\x08\xd8\xdf\xa8\x80\xfd\x32\x56\xf8\x20\x5d\x1f\xa4\xeb\x83\x74\x7d\x90\xae\x0f\xd2\xf5\x41\xba\x76\x5f\xed\x53\xba\x86\x7f\x79\x68\xd6\x9d\x23\xd6\x37\xf7\x72\x7d\x60\xe6\xb5\xba\xb8\x0e\x22\xf5\x41\xa4\x7e\xd9\x22\xf5\x8b\x99\xd0\xb7\x07\xb5\x78\x00\x2b\x3c\x80\x15\x1e\xc0\x0a\x9f\x16\xac\xd0\x7f\xfd\x66\x96\x2f\x97\x45\xee\x66\xa9\xcf\x5d\xd1\x86\x9a\x1c\xd4\xbe\x35\xe4\x12\xd2\x36\x64\x2a\xad\x12\x24\x58\xe9\x1d\xcf\x80\x30\xa2\x63\xcc\x1f\x98\x20\x3e\x46\xfb\xc8\x5d\x33\x47\x60\x89\xf8\x67\x38\x1d\x98\x34\x43\x0d\xa1\xc4\xf0\x29\x6b\x91\xee\x08\x4f\x73\x62\xc9\x5f\x33\xa3\x2b\x61\x40\x48\x9a\xf0\x91\x48\x8b\xb1\xfa\xbe\x79\x11\x15\x82\xaf\x1d\x79\x66\x98\x67\x06\x59\xa3\x6f\xfc\x91\x67\x99\x1d\x83\xe3\x20\x70\x12\xa6\x4c\x65\xfe\xcb\x52\xb7\xfe\xe5\x29\x4d\xed\xc9\x8d\x86\x50\x64\xf7\xc4\xef\xc3\x9d\xcb\x75\x88\x6b\x29\x7d\x8f\x5f\xb7\x88\x53\xc2\x11\x54\x6c\xad\x61\x4c\x68\x6a\x4f\x60\x32\x61\x69\x9e\x31\x42\xb5\x96\x09\xa7\xc6\x72\x2b\xbc\xa3\x09\x37\x5e\x65\xf7\x2f\xf9\xae\x53\xae\xe9\x30\x63\xa9\x5b\x63\x56\x84\xd9\x2c\x1d\x39\xd7\x64\xc8\xec\x12\x5b\x3e\x52\x5e\xfd\x09\x4a\x08\x35\xa3\x89\x86\xc2\x16\x47\xc2\x04\x0e\x64\x89\x84\x8b\xc4\xf9\x5a\x85\x5c\x1c\xfd\x21\xf7\xe9\x20\xf2\x1e\x44\xde\x8d\x26\xf4\x4d\x89\xbc\x2f\x28\x34\xd0\x33\xa4\xaf\x1a\x1a\x08\x0e\x44\xcb\xf9\x07\xc1\x42\xa8\xb7\x33\x9e\x04\x23\xec\x47\xdf\x64\x3b\xb4\x78\x26\xc5\x88\x8f\x73\xe5\x04\x6e\x27\x0d\xaf\xf0\x52\xd6\xb4\xf3\x2a\x6e\x9c\xfa\xa1\x3f\xd7\xc5\xb3\x89\x42\x47\x8e\x89\x15\xbb\x07\x37\x9d\xdb\xab\xbb\x9b\xb3\xce\x29\x69\xcf\x66\x19\x47\x2f\x4b\x92\x6b\x23\xa7\xfc\xef\x76\x1a\x08\x24\x1c\x38\xb7\x13\x43\x34\x08\x1c\xe0\xd6\xb1\x6a\x12\x39\x26\x67\x17\x77\xb7\xbd\xce\x4d\x43\x83\x8e\x08\xa0\x96\x11\x9b\xce\x32\x90\x4a\xee\xf3\x21\x53\x82\x19\xa6\x49\x92\xe5\x10\x63\x1e\x9c\x3d\xd8\x68\xe7\xbf\x3a\x67\x77\xbd\xee\xd5\xe5\xe0\xaf\x77\x9d\xbb\xce\x29\xf1\xd4\x64\x9b\xb5\xe3\xb2\xa3\x48\xe7\x82\x4e\xad\x2e\x5a\x46\x3c\xfe\x2d\x67\x39\x08\x41\x7c\x2c\xa6\x4c\x98\x6a\x8b\x7e\xc0\x17\xed\x77\x9d\x8b\x72\xcb\x13\x46\x7e\xf9\x4b\x31\xa8\x8c\x0e\x59\xe6\xbc\x4f\xe0\x5c\xb1\x0c\xbb\xe8\xc8\xb9\xa5\x72\x54\x6b\xff\x7a\xd7\xbe\xe8\xf6\x7e\x1d\x5c\xbd\x1f\xdc\x76\x6e\x3e\x75\xcf\x3a\x03\xa7\x60\x9c\xb5\x6d\xbf\xa5\x9e\x9c\x1e\x42\x7e\xcb\x69\x66\x15\x55\x39\x02\xd7\x0e\x4f\x18\x79\x9c\x30\x41\x72\x01\x34\x86\xda\x2f\xe8\x02\x71\x12\x3b\xce\xe8\xfa\xe2\xee\x43\xf7\x72\x70\xf5\xa9\x73\x73\xd3\x3d\xef\x9c\x92\x5b\x96\x81\x7e\xe8\x17\x1d\x76\x71\x96\xe5\x63\x2e\x08\x9f\xce\x32\x66\x57\x03\x8f\xe3\x90\x4d\xe8\x03\x97\xaa\xa4\x23\xc0\x3a\x5a\x12\xfa\xea\x86\xec\x12\x85\x2e\xaa\x7a\x55\x92\x5b\x7c\xa3\x42\x3f\xcb\x5e\x28\x91\xc3\xe2\x8b\xab\xb6\x75\xf1\x8b\xca\xbe\xac\xad\x90\x96\x27\xfd\x6c\xb7\x81\x65\x22\xe9\xc0\x1b\x26\x4e\xfe\x51\x62\x26\xff\x7c\x32\xa4\x18\x12\xa5\xb7\xba\xdb\x61\x55\xc5\xcd\xe2\x83\xd7\x70\x27\xc4\xc3\xfd\x9a\xfc\x7f\x4f\x32\xd7\x2b\xb1\xf7\x6c\x2e\xea\x1e\x54\xb6\x83\xca\x56\xbf\x32\x87\xc0\x9f\x86\x15\xde\xd7\x7d\xb4\x8d\x89\x74\xc4\x59\x96\xea\x05\x1b\x57\xe9\x3e\x59\x69\xcf\x7a\xbd\x57\xc9\xf3\x5a\xb4\x36\x51\x2c\x6e\x82\x27\xc8\xb9\x86\xec\x6e\x4d\x99\xa1\x50\xd9\xd4\x48\x92\xc3\xd0\x0f\xd7\x93\xfb\xbf\xc3\xf5\x74\xb8\x9e\x0e\xd7\xd3\xbf\xaa\x49\xb0\x86\xa5\x7f\x55\x9b\xe0\x2a\x2d\x70\x27\x88\xa7\x1a\x83\xe1\xa2\xf6\xa7\x89\x9e\x50\x85\xc5\x7c\x12\x39\x9d\x4a\x11\x05\x17\xcc\x67\xec\x88\x04\x17\x26\x18\x7f\x60\x18\xab\xec\x89\x45\x37\xfc\x75\x58\x12\xa3\x75\x79\x8e\xc4\x87\x83\xe6\xe8\xff\x6f\xd3\xab\xf9\x00\x92\x75\x00\xc9\x3a\xe4\x28\x1c\x40\xb2\x96\x53\xcb\x21\x0a\xff\x10\x85\x1f\x3f\x3b\x80\x64\xbd\x20\x90\x2c\x21\x53\x36\xa8\x80\xe2\x87\x3f\x07\x55\xbf\x47\xe9\x49\xec\x04\x29\x3d\x28\xd2\x12\xa0\x75\x9e\xee\x9e\x96\x50\x2e\x4f\xbc\xca\x49\x12\x17\xb4\x7d\xe1\x02\xef\x28\x9b\x1b\xc6\xd3\x6c\xb1\x12\xef\x33\x44\x6a\xd5\x6d\xf4\xb7\x68\x64\xa9\x21\xdb\x83\xc5\x65\xe5\x42\x7d\xab\x60\xd6\x05\x5f\x7a\x45\x6e\x82\xf5\x98\xb7\x07\xfc\x1f\x34\xb0\xf0\xfa\xe7\x81\x91\xd7\x3f\xde\x15\xc3\xa1\xcc\xbb\xb7\xc5\x6e\x28\xf1\xc6\xd7\x61\xc6\x88\x47\xfc\x1c\x86\x8c\xa5\xbb\xff\xcd\xf1\xf5\x65\xb4\x7c\xe0\xee\x6b\x2e\xd7\xb7\xca\xe3\x0f\xf6\x8c\x7d\xda\x33\x8e\xbe\x5d\x83\xc6\x01\x73\x61\xc9\xe2\x1c\xac\x3d\xdb\xac\xd6\xc1\xda\x13\x3f\x7b\x4e\x6b\x0f\xfa\x6e\x07\x33\xaa\x98\x30\x35\xf2\x7d\xf5\x66\x83\xd7\x23\x5b\x7d\x10\x80\xa0\x01\x14\x5c\x9d\x6c\x10\x6e\xcd\x6f\xcb\xfc\xe3\x64\x94\x01\x8a\x38\x51\x2e\xc4\xc9\x3f\x8a\x7f\x47\x0a\x44\xf4\x63\x8d\x0f\x74\x83\x10\x26\x1f\x65\xcf\xd2\x42\xec\x2a\x1a\xaf\x09\x6d\x72\x63\x38\xf6\xc2\x58\xe1\xcd\x5f\x19\xe9\x74\x8d\x9f\x9e\xc3\x97\xaf\x2b\xa9\xa2\x61\xe8\xcf\x1b\x01\xb5\x48\x09\xeb\x1d\x2c\xaf\x47\x70\x4c\x1a\x78\x9c\x70\x10\x0f\x00\xc2\x09\xae\xd0\x68\xc3\x7d\x3a\x26\x85\xbc\x89\x26\x59\xeb\xb9\xc5\xc8\x05\x72\x5f\x6f\xe2\x8e\x46\x5f\xef\xbc\xbf\x7a\x68\xc8\x0a\xba\xff\xaa\x61\x22\x4b\x78\xe6\x7e\x22\x44\x9e\x8f\x3f\x7e\x60\xe6\xdb\x63\x8e\x1f\x98\x79\x2e\xce\xb8\x2d\x3b\x5c\xca\x12\x8a\x8a\x13\x2f\x84\x1b\x6c\xc7\xfa\x5e\xd7\x1c\x0f\xe9\x83\x87\xf4\xc1\x43\xfa\x60\xfc\xc6\x21\x7d\x70\xd7\x9a\xcc\xe7\xf0\xca\x33\x5e\xe7\xd8\xe1\xb7\x77\xa3\xe3\xbc\x0e\x97\xfa\xe1\x52\xdf\x6c\x8e\x2f\x55\x8d\xf1\xf4\xfc\x12\xd4\x98\x8d\x50\x2f\xd0\xb3\x5b\x54\x37\xf3\xe4\xbf\xd2\x7b\x7b\xed\x3b\x7b\x3d\x4c\x48\x3f\x35\x9f\xd9\xc5\x47\xe5\xd7\xfd\xe0\xa2\x3a\xc0\x82\x1f\x5c\x54\x07\x17\xd5\xc1\x45\xe5\x9e\x7e\x13\xb0\xe0\x41\xc9\x58\x59\xaa\xf6\xa6\xa8\x4f\x5b\x13\x6e\x52\xbd\x89\xfd\xdb\xd7\x0b\x12\xee\x4b\xbf\x8c\xfd\xc8\x9f\x4b\x07\x78\x29\x92\x63\x31\xef\x17\x21\x2b\x9e\xfc\xa3\x12\xcc\xbd\xe0\xf1\xd3\xf9\x74\x4a\xd5\x1c\xee\x2d\x17\xda\xdc\x82\x09\xb5\xdc\x8c\x22\xd8\x60\x77\x2d\x0d\x73\x13\x45\x62\x69\x4b\xc8\x33\xa6\xcc\x3c\x7a\x13\xb8\xe8\x7f\xf6\x05\x2f\xc0\x4b\xf9\x58\x48\x85\xc6\x1d\xfb\xf1\x84\x8a\x34\xb3\xe7\x40\x87\x76\x12\x2a\x84\x34\x70\xfb\x83\xdb\x20\x25\x0f\x9c\xa2\xac\xd0\xbe\xee\x96\xce\x49\xbd\x9f\x72\xad\x33\x55\x72\x31\xbe\xa2\x13\xf5\xdc\xb0\xa0\x07\x8d\x30\x5e\xfd\xaf\x75\x90\x0d\xd5\xf7\xd5\x74\x8f\x72\x14\xf1\x60\x69\x02\xc8\x8a\x77\x4b\xb8\x58\xcb\x5f\xad\x24\x89\x94\x9f\xb9\xb4\x11\x78\x0c\x43\xae\x8e\xc3\xff\x18\x77\xe8\x7f\x2b\x5a\xf6\xbf\xf8\xea\x18\xf0\xa3\x62\x46\xcd\x07\xd4\x18\xcb\x54\x76\xcf\x4c\x29\x5b\xce\x57\x64\xa6\xf4\xa8\xbe\x7f\x95\x99\x29\xe5\x81\x3f\x39\xb3\x58\x93\x26\xbf\xb9\x98\xe6\x75\x4f\xd8\x21\xbe\x79\x8b\xa5\xfb\x56\x63\x9d\x97\xb1\xd0\x17\x33\xc2\x0a\x17\xff\x16\x4f\x6e\xf9\x4e\x3a\x1c\xd1\x65\x6b\xf4\xcd\x81\x85\x57\x44\x8d\x15\x73\x7b\x25\xa0\xe1\x55\x69\x69\xdf\xa3\x7a\x1a\xdb\x72\xb4\x1b\x87\x2a\x3f\x87\x2a\x3f\x87\x2a\x3f\x4f\x5d\xe5\x67\x3d\x4d\x73\x6d\x35\x73\x5d\x1d\x73\x3d\x05\xb3\x59\xbb\xdc\x21\xa5\xb5\xac\xf4\x6d\x9b\xd2\x5a\x52\xaa\x5e\x85\x6b\xb4\x34\xe2\xe7\x48\x69\xfd\x17\xd5\x03\x0f\x4a\xe0\x93\xac\xdb\xb7\xaa\x01\xbe\x70\xf5\xef\x90\x8c\xbb\xc7\x48\x87\x6f\x18\x5c\xec\x10\xe8\xb0\x64\x71\x0e\x81\x0e\xdb\xac\xd6\x21\xd0\x21\x7e\xf6\xe2\x02\x1d\x9a\x35\x07\x9e\xee\x9a\x4e\x55\x27\xb2\x17\x02\x6d\x09\xa1\x73\x7b\xf1\xbd\x9b\xbe\x0a\xb9\x3d\x42\xd4\x0d\x66\x0e\xf5\x1c\xf2\xfb\x01\x21\xf6\x80\x10\x7b\x10\xe2\xfe\x95\x84\xb8\x83\x9c\xb2\xcd\x6a\x1d\xe4\x94\xf8\xd9\x01\x21\xf6\x05\x41\x84\x58\xc1\xa9\x94\x24\xb2\x32\x28\xf5\x4c\x31\x08\x9f\x13\x69\x48\x15\x21\xb4\x2a\x80\x2d\x93\xae\xb0\x01\x2b\x5f\xbd\x06\xe1\xca\x8e\x13\x47\xbc\x46\x34\x5d\xdc\xe1\x9b\x7f\x5b\x63\xe0\x37\xee\xae\x84\x03\x3d\xa4\x69\xa8\x85\x0e\x02\xd2\x94\xce\xc9\x84\x3e\x30\x32\xa2\x3c\x43\x33\x95\xe3\x81\x4b\xe6\xb6\x6c\x40\xff\xb1\xd9\x80\x68\x79\x38\x45\x06\x98\xe5\xe9\x28\xe2\x24\x34\xf3\x4e\x2a\x78\x07\x0a\xb5\xbb\xb2\xf8\x43\xc6\x44\x94\x4e\xb4\xee\x98\xf7\x22\x9a\x7e\xf5\x50\xc0\x98\x6e\xbe\x6a\x74\x2f\x9c\xf0\xc6\x22\x97\xfb\xd3\xb9\x76\x51\xb4\xf4\x4f\xaf\x85\x15\x3c\x87\x5a\xf5\x0d\xbb\x3e\x0e\xee\x8d\x7f\xcd\x9a\x58\x2f\x46\x24\x3f\x28\xba\x7b\x54\x74\x0f\x79\x99\x07\x77\xc5\xc1\x0c\xb0\xf6\x6a\x1d\xcc\x00\xf1\xb3\xd7\xe3\xae\x68\x96\x9e\xb7\x2b\x11\xff\x84\x72\xf4\x41\x8c\x3e\x88\xd1\x07\x31\xfa\x9b\x15\xa3\x5f\xc6\x0a\x1f\x64\xe8\x83\x0c\x7d\x90\xa1\x0f\x32\xf4\x41\x86\x3e\xc8\xd0\xee\xab\xbd\xc8\xd0\xf0\x2f\x9f\xcd\xbd\x9f\xd4\xed\xf5\x3c\x52\x2e\x77\xfb\xb5\x08\xcf\x07\xc1\xf9\x20\x38\xbf\x6c\xc1\xf9\xc5\x4c\xe8\xdb\x4b\xd8\x3c\xa4\x3c\x1e\x52\x1e\x0f\x29\x8f\x5f\x21\xe5\xd1\xb3\x92\x6d\x6b\x3e\x7c\x72\xbc\xe5\x7b\x2e\x92\x2c\x4f\x41\x44\x99\x30\xf2\x2e\xe7\x59\x4a\x40\xa1\xb1\x7a\x29\x97\xe2\x2d\xd0\x13\x90\x02\x8c\xd3\x03\x9f\x2f\x17\x60\x3e\x2d\x70\xba\x17\x2b\xc3\x14\xa3\xdd\x16\xa0\x6a\x5f\x7b\x1a\xca\x26\x6e\x51\x1a\xa9\xf4\x9b\x6f\xe8\xb9\x0b\x26\x1d\x79\xd1\xc3\xb2\x1d\x3f\x88\x8d\xca\x27\x7d\x76\x1f\xbd\x2e\x28\xf1\xc5\x51\x1f\x8a\x26\x91\x68\xd7\x0e\x45\x93\x9e\x70\xde\xfe\x9c\xad\x98\xb9\xa7\x51\x34\x0f\xbf\xd2\x69\x7f\xf5\x38\xba\xe6\x93\xfe\x55\xa3\xea\x6a\x6f\x8e\x85\x8c\xa6\xa2\xe8\xf6\xf3\xd7\x8a\xda\xe5\x6a\xf8\xc0\xcc\xb7\x72\x2f\x1c\xea\x45\x1d\x4a\x4b\x6c\x5d\x4e\x7b\x23\x0e\xff\xba\xa6\x78\x28\x89\x75\x28\x89\x75\x28\x89\x15\xbf\x71\x28\x89\xf5\x02\x4a\x62\xed\x22\xb5\x60\xf7\xdf\x8a\xe0\x72\x28\x8b\x75\x90\x5d\x0e\xb2\x4b\xed\x14\x5f\xa0\x52\xfa\x22\x8a\x7e\x05\xa5\x74\x5f\xf8\x1a\xb1\x3f\x3d\x30\xe3\xbd\xc2\x6c\xf8\x95\x3c\x40\x6d\xb8\xff\x3b\x40\x6d\xac\x33\xb9\x03\xd4\xc6\x21\x7a\xf2\x00\xb5\x71\x88\x0f\x3c\xc4\x07\x1e\xa0\x36\x5e\x0b\xd4\x86\x17\xa0\xf6\x01\xb7\x51\x23\x8c\xad\x86\xdc\xf8\xbc\xa8\x19\xbc\x58\x41\xcb\x8f\xf5\x00\xbd\x71\x80\xde\xd8\x95\x76\x5e\x84\x4e\xf6\x24\x10\x1c\x35\x6c\x60\x57\x45\xec\x75\x40\x71\xf8\xd1\x1e\xf2\x08\x0f\xe1\xd0\x2f\x3f\x1c\xfa\xc5\xe5\x11\xbe\x18\xb1\xfd\xa0\x0c\xef\x51\x19\x3e\xa4\x12\x1e\x52\x09\x0f\xa6\x82\xb5\x57\xeb\x60\x2a\x88\x9f\xbd\x8e\x54\xc2\xd5\xd2\xf4\x5e\x20\x39\x9e\x42\xae\x3e\x88\xd5\xf8\xde\x41\xac\x3e\x88\xd5\xdf\xa8\x58\xfd\x32\x56\xf8\x20\x53\x1f\x64\xea\x83\x4c\x7d\x90\xa9\x0f\x32\xf5\x41\xa6\x76\x5f\xed\x4d\xa6\xde\x2f\x44\xc7\x86\x5e\xac\x28\x2b\xe5\x35\x09\xd3\x07\x41\xfa\x20\x48\xbf\x6c\x41\xfa\xc5\x4c\xe8\x00\xd7\x71\x80\xeb\x38\xc0\x75\x1c\xe0\x3a\xb6\x91\x6a\x7e\xe7\x4e\xe5\x9b\xe8\x22\x0e\x37\xf6\x9b\x77\x99\x1c\xf6\xe6\x33\x66\xff\x7b\xce\xa7\x4c\x68\x10\x1f\xb9\x99\xc7\x52\x4c\xc3\xca\x2f\xae\xf9\x9b\xdb\xee\xe5\x87\x8b\x38\x47\xe8\xcd\xc7\xbb\x8b\x5e\xf7\xba\x7d\x13\xd6\x25\xcc\x2a\x5e\x0b\xf7\x5d\x49\x10\x3b\x93\xd3\x19\x55\x5c\x4b\xd1\xf9\x62\x4f\xa7\x1d\xda\x15\x88\x3e\x52\x6d\x37\xba\xce\x5f\xe3\x91\x5d\x96\xff\xfc\xd0\x2b\xff\x55\x9a\xc5\x45\xaf\xfc\x57\x67\xe9\x6c\xa2\x86\xab\xec\xec\x98\x7c\xe8\x9d\x92\x0f\x10\x82\xa1\x48\x6f\x42\x91\x25\x5d\xf4\x4e\xc9\x05\xd3\x1a\x7e\x29\x3e\x36\xdc\x64\x30\xb7\x77\x5c\x50\x35\x27\x7e\xfa\x98\x3d\x47\xc1\x36\xeb\x97\xa6\xba\x78\xe2\x6f\xb9\x00\xed\xa1\x58\xbd\x0b\x39\xe6\x09\xcd\x76\x5b\xc4\xf6\x65\x7c\x90\xde\x5c\xdd\x2c\x5d\x8a\xf8\xed\xc5\xb5\x68\x5f\x9e\x43\x2e\x9f\x1f\x6a\xcd\xcc\x2f\x99\x36\x2c\xb5\xd2\x48\x8a\xc4\x0b\xfc\x6c\x1e\x49\x29\x7f\x93\x90\xdd\x97\x6b\x2b\x3b\xb7\x2f\xcf\xc9\x09\xb9\xba\xe9\x8b\x2b\x95\xa2\xf1\x86\xd9\xeb\x1d\xb9\x2e\xd7\x44\x48\x43\xf8\x74\x26\x95\xa1\xc2\x58\xc9\x06\x18\x9b\x5b\x11\x4d\xa8\x62\xe4\x4c\x4e\xa7\xb9\xa1\x86\x3f\xb0\x85\x45\x15\xa8\x91\xdd\x32\xd3\x4d\xc1\x1c\x5c\xb3\x86\xc8\xf9\x8a\xb9\xcc\x94\x6d\xdf\x72\xdd\xb2\x2e\xc0\xd3\x05\xd9\xdc\x37\x41\x95\xa2\x65\xfe\xf8\x86\x1b\x36\xad\xbe\xbf\x66\xd8\xde\x3f\x6b\x15\x1d\x7b\x25\x5c\x48\x9a\x72\x31\xc6\x74\xca\x0b\x6e\x98\xa2\xd9\x47\x3a\x7b\xef\xad\x4d\x5b\xd0\xc7\xff\xbe\x2d\x65\xf2\xbd\xf9\xb5\xfd\x31\xce\x05\x7c\x73\x7d\x73\xd5\xbb\x5a\x4a\x33\xa5\x16\x16\x89\xc6\x3e\x3e\x85\xff\x25\x27\xc4\xb6\x1e\x6e\xae\x29\x33\xd4\xde\xe8\xe4\x7b\x4c\xdc\x09\xe1\xfd\x5c\x64\x40\x23\x33\xc5\xa7\xdc\xee\xab\x53\x99\xdf\xe2\xe5\x18\x6e\xff\x40\x25\xf8\x01\x26\xe1\x81\xd8\x61\xa8\x48\xa9\x4a\xc9\xdf\xb4\x4b\x1c\xb5\x42\x08\xbe\x4e\xb5\xff\x81\xa5\xe4\x98\x4c\x8c\x99\xe9\xd3\x93\x93\xc7\xc7\xc7\x96\x7d\xbb\x25\xd5\xf8\xc4\xfe\xe3\x98\x89\xd6\xc4\x4c\x33\xcc\x38\xb5\xab\x70\x4a\xae\x95\x34\x12\x04\x08\xa2\x99\xe2\x34\x83\xd4\xc0\x21\x9e\x76\x39\x22\xff\x2f\x91\x8a\xb5\x8a\x8d\xf9\x7f\x24\x4a\x66\x1d\xd9\x7b\x96\xa7\xd9\x89\x7d\xa9\xe6\xe8\x54\xf7\x93\xa4\x2c\xe1\xa9\x13\xa4\x98\x48\x24\xa0\x2d\xa1\x65\xd1\xb6\xe7\xb3\x9d\x98\x73\xe5\x84\xe5\x8c\x84\x0d\x9a\x32\x42\x1f\x28\xcf\x30\xaf\x59\xa2\xc9\x10\xd7\x99\x29\x2b\xb8\x74\x51\xea\xcc\xad\x84\x0d\xb1\x77\xa0\x47\xfa\x57\x67\x76\xc2\x89\xcc\xc8\x30\x1f\x59\x09\x2d\xba\x95\x8e\xac\x34\xc2\x35\x51\x2c\x91\xd3\x29\x13\x68\x54\xb4\x0d\xc1\x97\xb0\x62\x6e\xb4\xad\xbe\x80\xfd\xb7\x62\x0a\x50\x40\x2a\xe1\x60\x0b\x66\xb5\x15\x31\xc7\x6e\x86\xf9\xa8\xe4\xa9\x32\x92\x28\x46\x53\xc2\x4d\x5f\xb4\x33\xab\xd7\x4e\xa5\x61\x71\x10\x21\x98\xb5\x4b\x0b\x0e\x0c\x41\xb1\x59\x46\x13\x9f\x94\x99\xc9\x84\x66\x64\xc4\x33\xe6\xea\xe5\x47\x0d\x7c\x0f\xaa\x96\x5d\x33\xae\x49\x2a\x1f\x45\x26\xa9\x9b\x47\xf5\xb3\xb7\x65\xde\xd2\xf1\x69\xc9\x1d\xa5\xa4\x82\xff\xf9\x85\x8b\x74\xbb\x33\x78\x77\xf9\xcb\xe5\xd5\xe7\xd2\x31\xbc\xbb\xed\xdc\xc4\x7f\xdf\xfe\x7a\xdb\xeb\x7c\x5c\x7a\x0e\xab\xad\x14\x94\x05\xc3\x03\x11\xfc\x94\xdc\xe2\x22\x48\x45\xac\x52\xd5\x30\xa9\x8f\x8e\x94\x8a\x1f\x64\xca\xb6\x9b\xdb\xc7\xf6\xe5\x5d\xbb\xc4\x51\x6e\xcf\x7e\xee\x9c\xdf\x5d\x94\x04\x3c\x3f\xbf\xe8\x97\x9b\x0e\x8a\x6f\xf1\x6f\x67\x3f\x77\x2f\xce\x07\x41\xe0\x5b\xb6\x1a\x95\x7e\xab\x7c\xa9\x87\xfc\x67\x22\x53\x32\x9c\xc7\x89\x83\x45\xbe\xf9\x23\xd5\x24\x03\xc7\x08\x4b\xbd\x2e\x82\xad\x9e\x02\x1b\xf2\x99\xec\xc5\x17\x56\xb6\x3f\x72\xef\x40\xde\x39\xaa\x41\xd4\x94\x13\xd9\xe3\x86\x6d\xef\x54\x44\x3a\x05\x66\xb8\x87\x35\xb2\x5a\x8f\xb6\x2f\xe6\xf6\xfc\x2a\x3e\x1e\x83\x8a\x5f\x19\x2a\xb6\xe6\x3e\x85\x95\x84\xef\x70\xab\x67\x4a\xc2\x91\xb6\xdd\x3a\xdb\x50\x50\x20\xf0\x43\x44\x71\x2b\xb5\xa8\x28\xe8\x06\x35\x43\xf3\xfb\x72\x8a\x16\xdd\x86\x69\xc1\xd1\x2b\x22\x7c\x81\x43\x69\xb4\x4c\xcc\x14\x7b\xe0\x32\x8f\x3e\x75\x70\x0a\xa5\xcd\xad\x6d\xbe\x58\x00\x58\x36\xd4\x5f\x8a\x66\xca\xd4\xdc\xbd\xba\x35\x8a\x1a\x36\x9e\x9f\xbb\x93\xbd\x3d\x15\x9f\x5f\x7d\xbe\xbc\xb8\x6a\x9f\x0f\x3a\xed\x0f\xe5\x83\x19\x9e\xdc\xf6\x6e\x3a\xed\x8f\xe5\x47\x83\xcb\xab\xde\xc0\xbf\xb1\x94\x5c\x1b\x3a\x58\xbc\x4e\xcb\x2f\x9e\x12\xcb\x19\x81\x83\x79\xe4\xa5\x88\x8d\x0d\xd9\x48\x2a\x64\xc7\x53\xef\x03\x04\xc6\x4f\xc2\xca\xb2\x14\x75\xec\xf2\x2c\x4e\x41\x01\xad\x6b\x12\x6d\x4b\x46\x31\x3a\x05\x76\x4e\x05\xe9\x88\xf4\xf8\x6a\x74\x7c\x8b\x3f\x4e\xa9\xba\x67\x2a\x7c\xfa\xa8\xb8\x31\x0c\x4c\xe2\xdc\x59\xcb\x41\x41\x86\x21\xdb\xfb\x06\x62\xbc\x8b\x0e\x5a\xe4\xc6\xb2\x67\xfb\x7e\xb8\x7b\x2c\xa1\xa6\xcc\x50\x9e\x69\x37\xd8\xd2\xba\x9e\x92\x0b\xaa\xc6\x85\xba\xfb\xbd\x1c\x8d\xb0\xb1\xb7\x38\x0c\x7b\xd5\x94\x66\x51\xc3\x22\x2d\x69\xf8\xeb\x0b\xfa\x73\x2f\x07\x21\x6d\x91\xaa\xee\x66\xbb\xd1\xd4\xdd\x35\xac\xf8\xd5\xe5\xa0\xf3\x5f\xdd\x92\xc2\xe2\x9e\xd4\xd0\x1a\x4c\x1c\x1f\x2f\xbf\x0b\xea\xdb\x5e\x24\xa7\xf2\x8b\x35\xe4\x94\xcf\xfc\xce\x8f\xac\x0a\x54\x43\x4b\xec\x0b\x37\xb8\x31\xf1\xb8\x2b\x24\x54\x34\x03\x56\x0c\x3a\x9b\x31\xaa\x74\xdd\x6e\x97\xa5\xb5\x86\xbd\xc7\x9e\xe2\x3e\xdc\x26\xfb\x7e\x8e\x88\x14\xd9\x3c\xbe\xeb\x2b\x14\xb9\x06\x0d\x60\x5b\x0b\x14\x70\x0d\xb8\x22\x57\x0f\x4c\x29\x9e\xb2\x8f\x5c\x5b\x4d\x06\x7f\x7c\xe7\xc0\x45\xb6\x23\x88\xf7\xed\xee\x45\x45\x06\x18\x9c\x77\xde\xb7\xef\x2e\x96\x6b\xe3\xa5\xef\x6a\x50\x6f\xa2\x76\x4e\xed\xad\xef\x4c\x73\x70\x3b\x1c\x7b\xc8\x14\x96\x86\x0b\xad\x8c\x98\x52\xe1\xaa\xd7\x68\x3e\x76\xff\xb9\x35\xd4\x6c\x49\xfe\xed\xb3\x5e\xf7\x53\x49\x6b\x6f\xdf\x9c\xfd\xdc\xfd\x54\x27\x17\x0c\x3e\x74\x2e\x3b\x37\xed\x5e\x67\x39\xd5\x57\x9a\xac\xbb\xf3\xb5\x1d\x70\xd5\x7d\xc0\x75\xf0\x80\x5b\xb2\x56\x32\x23\xdc\x68\xf2\xc0\x35\x1f\x72\x40\xa9\x71\xa6\xf8\xbb\x2e\x30\x3d\xf0\x6d\x72\x33\xf7\x52\x01\xf6\x7b\x4a\xde\xcd\xfd\x1a\x1e\x01\x93\x73\xed\xa3\x9a\x1a\x1b\xe8\x13\xab\xd4\xe0\xad\xe7\x27\x7d\x4a\xda\x2a\x99\xf0\x07\x50\x7b\xa2\xcf\x84\x15\x45\xc5\x98\x29\x1c\x0e\xd8\x1f\xe3\xb1\x44\xcf\xed\xa8\x62\x19\xa0\x58\xb5\x20\xf6\x8d\x99\xb0\xaa\x73\xdc\x09\xca\x27\x8a\x89\xef\xac\x28\x33\xcb\x78\xc2\x4d\x36\x27\x09\xd8\x3c\x52\x2b\x28\x4e\xa9\xa0\x63\x77\xe7\x82\xa2\x50\x21\x89\xbf\x22\x94\xcf\xd5\xc8\x19\xb7\x7a\x9c\x6d\x79\x02\xee\x2e\xcf\x3b\xef\xbb\x97\x65\x12\xf8\xb9\xfb\xa1\x24\x04\x7e\xec\x9c\x77\xef\x4a\x17\xed\x2a\x59\x70\xb1\xd9\xba\x53\xe2\x5f\x3a\x25\xe7\xf8\xe9\xa9\x5d\xdc\x1a\x9c\xa2\xa0\x3e\x56\xd6\xe1\xc6\x87\x9d\xf8\x7f\x74\x84\x51\xb5\x96\xb9\x75\x4d\x0e\xce\x08\x5f\xb2\x39\xd4\xfb\xea\x16\xfa\xbe\xac\x7a\x55\x16\x7d\x99\xce\x12\x6f\x3b\x69\x15\x96\x88\xd8\x89\x07\x6a\x77\x93\xd1\xa3\xc6\xb0\x5b\xf0\xd2\x4f\xe0\xa3\x99\xe6\xda\xa0\x31\x1d\x88\x93\xdc\xff\x45\xdb\x05\x05\x63\x7b\x8b\xdc\x32\xd6\x17\x5e\xff\x1e\x73\x33\xc9\x87\xad\x44\x4e\x4f\x0a\x90\xac\x13\x3a\xe3\x53\x6a\x05\x54\xa6\xe6\x27\xc3\x4c\x0e\x4f\xa6\x54\x1b\xa6\x4e\x66\xf7\x63\xf0\xfc\x7a\x7f\xc2\x49\x68\x76\x2c\x7f\x7f\xf1\xa7\x1f\x8e\x2f\xfe\xf2\xc3\x9b\x45\x8b\x4a\xd3\xfe\x77\x44\x42\x67\x3a\xcf\x5c\x84\x88\x8a\xd7\xc6\x1f\xf9\x9c\xad\xda\xef\xcb\xf2\x76\xed\xa6\x01\x9e\x5d\xdf\x95\x2c\x9c\xe5\x3f\x3f\x76\x3e\x5e\xdd\xfc\x5a\xe2\x94\xbd\xab\x9b\xf6\x87\xe5\x96\xce\x05\x15\xb1\xb2\x0c\xbf\x08\xf9\x28\xca\xb3\xd7\xd5\x49\xe7\xc2\xf0\x29\xf3\x1a\xa2\xfb\xb3\x87\x33\xdd\x62\xe6\x57\xbd\x9f\xcb\x42\xce\xfb\x8b\x5f\x7b\x9d\xc1\xed\xf9\x2f\x4b\x67\x82\x9f\x95\x46\x76\x0b\xee\xed\x33\x99\xe5\x53\x11\xff\x7b\xfb\xb1\x75\x2f\x7b\x9d\x0f\xd5\xd1\x5d\xb5\x7b\xe5\x65\xbf\x29\x47\x4d\xbc\x79\x77\x75\x75\xd1\x29\x79\x1c\xde\x9c\xb7\x7b\x9d\x5e\xf7\x63\xe9\xb6\x3b\xbf\xbb\x41\x18\xad\x65\xd3\xf4\x23\xa8\x99\xa8\x9d\x56\x3c\xcd\x7d\xf3\x99\xb5\x8e\x79\xdb\x45\x24\xe2\x41\x39\x8e\xe0\x2a\x30\xd8\x00\x8c\x0e\xc7\xc1\xe2\x97\xe0\x48\x6b\x79\x8d\x29\x6f\x13\x69\xe6\x75\x4b\x37\x7a\x19\xcb\xeb\x85\x21\x20\xd8\x1b\xaa\x98\x34\xcb\xe4\x23\xc6\x85\x4d\xb9\xbd\xf2\x1c\x76\x90\x7d\x45\x93\x24\x57\x8a\x09\x93\xcd\x5b\x35\xec\xa4\xbc\x2d\x2c\x51\xcc\x7c\x94\xb9\x30\xdb\x93\x5c\xfb\xb2\x74\xa8\x3b\x97\x9f\x06\x9f\xda\x65\x0a\xec\x5e\x2c\x3f\xe4\x71\x13\x35\xf7\x5c\xfb\xf2\xd7\x70\xc3\x41\xf4\xe0\x51\xd0\xcc\x50\x30\x4c\x32\xce\x84\x01\x8b\xbd\x91\x19\x88\x0b\x84\x71\x50\xb5\xa7\x76\x72\x5c\x8c\x09\x06\x2e\x79\xc8\x42\x1c\xe4\xa9\xff\x47\xa5\x3d\x0d\xeb\x02\xc6\x3e\x1f\x90\x09\xed\x38\x6d\x52\x10\x26\x1e\xb8\x92\x80\x58\x48\x1e\xa8\xe2\x74\x98\x39\xe1\xc8\xce\xf5\x14\xfe\x77\xb3\x36\xc1\x6e\x57\x61\x5c\xb7\x52\x99\xf3\x10\xd8\xb5\x9d\x15\xa0\x2e\x4a\x6a\x31\x3e\xaa\x5e\xc1\xaf\xc4\x44\xf9\x61\xf5\xa8\xbe\x5f\xb0\xbb\x75\x85\x36\x54\x24\xec\x2c\xa3\x5a\x6f\x3b\x56\x54\x1c\x8e\xca\xec\xec\xe6\xe6\xee\xba\xd7\x7d\xb7\x82\x84\xaa\x1f\x2f\x06\xbe\x25\x59\xee\x4d\xd3\x43\x25\x69\x4a\xec\xde\xc8\x31\x9a\xc1\xdd\x95\x5d\x20\x47\x62\x04\x6a\x88\x05\x28\xa1\x56\x06\x37\xbf\xd7\x50\x62\xdb\x1a\x77\x0b\x41\x12\xbb\x12\x24\x52\x56\x3c\x4b\x01\xab\x3a\xc2\x4d\x3b\x95\x71\x96\x51\x33\x92\x6a\x8a\x24\x54\x9a\x34\x36\xbe\xbc\x51\x2e\x0c\x53\x2a\x9f\x19\xee\xa1\x40\xab\x57\x20\x94\xfe\x94\xe3\x8f\x4c\x6b\x3a\x66\xbb\x38\x5f\xea\xae\xfd\xdb\x4f\xf1\x9f\xe0\x5c\x59\xe7\x4a\x2f\x8d\xd0\x07\x6d\x79\x7a\xba\x12\xef\x29\xcf\x72\xc5\xae\x65\xc6\x93\x2d\x9d\xc5\x56\xcd\x1c\x74\x3f\x5a\xf1\xbb\xdd\xeb\x5c\x94\xf8\x14\x3c\x6b\xbf\xef\x75\x6e\x06\x88\x2f\xd9\x7e\x77\xd1\x19\x5c\x5e\x9d\x77\x6e\x07\x67\x57\x1f\xaf\x2f\x3a\x2b\x7c\xb0\x8d\x8d\x2f\x9a\x2c\xaa\xaf\x9e\x2e\xfc\x02\x3b\xac\x72\xd4\x6e\xbc\xa6\x0b\xf1\xcd\x94\x67\xe0\x00\x92\xe8\x08\xa2\x44\x58\x9d\xdf\xfe\xac\xbd\x5e\xe5\xc3\xf9\x5a\xa4\x6b\xbe\xcb\x32\x42\x73\x23\xa7\x14\xcc\x98\xd9\xbc\x2f\xe8\x50\x2a\x03\xda\x5d\xb8\x19\x88\xca\x85\xb0\x5c\xd1\x36\x86\x30\xb1\x49\xc6\xa8\x20\xf9\x2c\x0a\x45\x77\xc6\xb8\x11\x17\x10\x25\x32\xa5\xea\xde\x57\xcf\x08\x11\x84\xe1\x50\x68\x42\x75\x5f\x20\x6a\x83\x63\x85\x6b\xac\xf0\xe9\x5a\x6f\x35\xae\xce\x94\xde\x33\xbb\x2a\xd3\x3c\x99\x58\xfd\x70\xac\x98\xd6\xce\x60\x93\x50\x81\xce\x37\xf7\xfa\x23\xcf\xb2\xbe\x10\xd2\x2e\x85\xb7\x0b\xa5\x6c\xc6\x44\xca\x44\xc2\x31\x00\x1d\xfc\x56\xc1\x7e\x3b\x56\x74\x36\x21\x5a\x82\xc3\x07\x96\x1d\x34\x4f\xfc\xc8\x87\xac\x38\x9c\x0a\x78\x1c\x9b\x75\x54\x6e\xf9\xc4\x15\x5c\x42\xb8\xca\xf0\xb1\xb7\xe9\x78\x5b\x26\x6a\xf0\xd3\x59\xc6\x0c\x62\xbd\xc2\x92\xc3\x66\xd8\xb5\x2e\xed\x87\xdd\xa6\xba\x4d\xe8\x8b\x62\xcc\x54\xbb\x11\xb5\x6a\xcc\x45\xee\x48\x91\x9f\xa9\x48\x33\xdb\x8a\x37\x0c\x96\xcf\x22\x44\x51\xb6\x2d\xd5\xf8\xd3\xb8\x8b\xa4\x96\xd0\x5c\x6f\x24\xaa\x2d\xcf\x1a\x40\x7d\xfe\xb8\x70\x88\x02\x79\xbb\x94\x01\x58\xdd\x99\x65\x91\x34\x93\x6e\x95\xf0\xf5\x1c\xd1\xfd\x09\x8c\xa6\x41\x77\x9c\x29\x2e\x12\x3e\xa3\xd9\x56\x82\x65\x25\x8e\xcc\xc5\x67\x7d\xcf\x47\x96\x7c\xde\x2e\xf8\x31\x0c\x53\x53\x48\x9f\x71\xc3\x0c\x5b\xb8\x4a\x68\xc3\xdd\xb1\x84\x4c\xcb\xb1\x36\x5b\xec\x0d\x3a\xa9\x9b\xa6\x5b\x69\xc5\xf5\x8e\x51\x12\x34\xbb\xae\x6f\xb3\x6e\xc1\xa2\x87\xff\x5c\xb6\xd5\x1f\xe9\xcc\x6e\x31\x62\xd8\x12\x5a\xcc\xd1\x09\x4c\xae\x44\x83\x77\xf5\x46\xbe\x9f\x10\x81\xb8\xbe\x02\x5d\x2c\xa1\xf3\xd5\x2f\x76\x52\xf2\x81\x45\x09\x4b\x8e\x24\x47\xb9\xb1\xa7\x89\x82\x17\x8d\x7c\xcf\x5a\xe3\x16\xf1\x48\xc2\x47\xa4\x7d\x7d\xdd\xb9\x3c\x3f\x22\xcc\x24\x6f\x7d\x30\x89\xf3\xad\xf7\x85\x91\x4e\xb8\x98\x93\x89\x7c\x04\x56\xc6\xd4\x98\x95\xe6\xec\x1d\xf1\x00\x43\x33\xe6\xda\x28\x17\x0e\x20\xd2\x18\xd8\x9a\x4f\xab\x72\x23\x52\x48\x6e\x26\xbb\x90\x06\xd5\x3a\x9f\x5a\xb9\x76\xc0\xe9\x74\xa0\x64\xb6\xcb\x19\x3e\x87\xa9\x80\xe8\x1c\x72\xbd\x38\x9d\x12\xdb\xac\x73\x65\x06\xb3\x7b\x90\xc0\xac\x1c\x63\xd9\xa8\xbd\xe6\xa2\x6b\xc6\x9b\xf9\x5c\xe8\x04\xf7\x2e\x3c\xc8\x05\x6b\x38\xd9\x85\x7d\x66\xe0\x4c\x62\x03\x9a\x24\x56\xfc\xde\xf3\xa4\x22\xb4\x74\x6f\x7b\x73\x1d\x3d\xd9\x34\x57\xd1\xb9\x1f\xe6\xcc\x32\x1c\x88\xd2\x5a\x84\x81\xae\xe9\x77\x38\x5f\xe8\xd5\xe3\x99\xdf\xe9\xa0\x5e\xe1\x9d\xa9\x19\xec\xa4\x46\x3c\x74\x33\x61\x0e\xc3\x29\xee\xd2\xc7\x5e\xda\x86\xe7\x32\x57\x35\x22\x44\xab\x2f\xce\xd9\x4c\x31\x2b\x98\x57\x2d\x95\x81\xa6\x6f\xca\x94\x78\xa0\xeb\x03\x5d\xbf\x7a\xba\x3e\xc3\x1a\x06\xde\x28\x1b\x21\xa8\xef\x42\xe8\x75\xad\x2c\x6b\x89\x3c\xf9\xfd\x7e\x86\x17\x7b\x1d\x30\x7d\x99\x8a\xfc\x1d\xcc\xc5\x42\xd1\x09\xdc\x48\x28\xe8\x07\x17\xee\x6f\xb9\x34\x54\xbf\x6d\xf5\x85\x95\x1e\xee\xd9\x1c\x9d\x50\xf6\x7e\xfe\x83\x95\x19\x8f\x35\x13\x1a\x42\xf2\xfe\x80\xd6\x61\xbb\xb7\xde\x66\x83\x2a\x14\xd6\xba\x28\x63\xe6\x43\x18\x95\x6b\xd4\x89\x07\x45\x90\x5a\x01\xb4\xef\x9f\xe1\xf0\xc7\xcc\x40\x16\x8b\xe1\x06\x64\xfb\x14\x8b\x69\x2c\x0c\x7d\xa5\x61\x0e\xa9\x42\x49\x30\x16\xa6\xf9\x6e\x1c\x4f\x2f\xb6\xb1\x92\x25\x04\xa9\xf6\xd6\xc5\x25\x9e\x78\xfb\x46\xa2\xe4\x42\x85\x0a\x6a\x85\x15\xbb\xd3\x43\x3c\x07\xde\x43\xc2\x44\xeb\x91\xdf\xf3\x19\x4b\x39\x85\x28\x45\xfb\xd7\x89\x9d\xd7\xef\xcf\x6e\xae\x2e\x07\x45\x6c\xf1\x7f\xf6\x45\x3b\xd3\x92\x58\x39\x5d\x2a\xa3\x89\x90\x22\x84\x44\xce\x14\xf3\xb2\x90\x9b\x8b\x5d\xd5\xc8\xbe\xda\x17\x4d\x23\x48\x65\xa2\x5b\xf4\x51\xb7\xe8\x94\xfe\x5d\x0a\x70\xd6\xb4\xe1\x9f\x67\x99\xcc\xd3\xcf\xd4\x24\x93\x13\xf0\xa1\x98\x13\xf6\xc0\x84\x41\x5b\xad\x5d\xae\x14\x12\x24\x34\x44\x54\xfe\xde\x8e\xb9\x08\x73\xd6\x56\xe3\x4a\xd8\xcc\x90\xff\xbf\x62\x43\x29\x4d\x3d\x77\x96\xa3\x91\x66\x1b\x71\xe2\x42\x99\xb8\xbd\x22\x7f\xf9\xf3\x0f\x3f\x5a\x12\xda\x66\x8d\xbb\xb7\x57\x03\xfb\xfd\xef\xcf\xdd\xf7\x7a\x2d\x92\x3b\xc7\xa4\xaf\x9d\x42\x8e\x57\xcc\xb7\x76\xa5\x36\xb5\xe6\x57\xaf\x02\xae\x67\x19\x9d\x2f\xf8\x05\x57\x5d\x21\x97\x96\x1f\xcc\x68\xc2\x8a\xa4\x33\xef\x60\x4f\xe4\x74\x0a\xf1\x18\xde\xcd\x9e\xf2\x11\x04\x66\x18\x7b\xbd\x90\x21\x33\x8f\x10\x06\xe4\x7f\x0d\xd7\xa2\x37\xd5\x59\xe6\x01\x0c\xaa\x6f\xd7\x2a\xcd\xc1\x88\xdb\x7f\x73\x44\xfa\x6f\x52\xf6\xc0\x32\x39\xb3\xe7\xc7\xfe\xc0\x4c\x52\x77\x29\x74\xa6\x94\x67\x97\xd2\x84\xc8\x92\x5d\xb6\x45\xb1\x84\xcf\xb8\xa5\xe7\x01\xb3\xed\x3e\x69\x58\xf8\x2a\x87\x86\xcf\x66\x87\x91\x10\x9a\xa6\xf6\x58\x41\xbd\x03\x3f\xc8\xc2\x04\x2b\xa2\x05\x58\x8f\x6d\x06\xd3\xf4\x7e\xc9\xb8\xde\xb1\x93\x48\x15\xe0\x5d\x43\xc7\x05\x42\xfd\x52\xaa\x75\xf5\x2e\x0a\x1c\x75\x6f\x81\xaa\x91\x20\xea\x8f\x8d\x95\x5b\xd6\x1b\x67\x79\x65\x6e\xed\x77\x4b\x87\xa6\x63\xe0\x85\x50\xa3\x28\xa8\x9f\x2e\x38\xb2\x1a\x8f\xc9\x56\x8e\x38\xc9\xa4\xce\xd5\x9a\x5e\xb3\xf2\xa0\xcf\xdc\xa7\xcb\xc6\xdd\x89\xb5\xf5\x3c\x33\x7a\x23\x83\x40\xcd\xc2\x57\xf2\xf6\xf0\x70\x1b\x27\x61\xba\xb7\x8f\x48\x51\x59\x98\x66\x45\xe4\xa8\x48\x49\x21\x4d\xf5\x45\x08\x76\xa7\x9a\x3c\xb2\x0c\xac\xba\x89\x9c\xce\x40\x52\x70\xc3\x75\x2d\xd9\x8b\xce\x50\xc3\x8e\x88\xcc\x8d\x6d\xec\x08\x6b\x68\xb9\x2d\x38\x1e\x52\x40\x7f\x28\x2a\x63\x82\xec\xea\x1c\x49\x21\x69\x1f\x69\x1d\x19\x18\x17\xe4\x03\x33\xd0\x0a\xa0\xa8\xc4\x13\xc4\x5a\x61\xb5\x2c\xa8\xba\xf6\x3b\x9c\x28\x37\x93\x0d\x76\xbe\x88\x91\x7f\x97\xc9\xe1\xd2\x7d\x6f\x93\x29\x9a\x8e\x5c\x2f\xde\x32\x5e\x18\x0d\xa3\x6c\xf3\x55\x34\xca\x94\x2a\xc5\xc3\xad\x38\xfe\xe5\xb8\xfa\xe5\xe4\x09\x51\xed\x51\xc9\xe9\xc5\x71\x3a\x73\xf2\xaa\x31\x82\xd1\x73\xf0\x7a\x4c\xab\x38\xde\xe9\xa2\x39\x79\x15\x11\x94\xcd\xd0\x4f\x3d\x19\x38\x20\x66\xc2\xb8\x22\x6b\x4d\xcb\x9f\xdf\x01\x9e\xf9\xf5\x89\xa6\xa0\xed\x26\x01\x10\x99\x48\x60\x10\x76\x60\x0e\xf5\xa5\x54\xd8\xae\xd5\x17\x95\x41\x38\xff\x84\x26\x40\x5e\xfe\x34\x94\x78\xff\x11\x19\xf1\x2f\xae\xd1\xc2\x6f\xe9\x5f\x8d\x34\xe3\x06\x3b\xf9\x84\x2e\x92\xdd\x06\xf7\xe3\x35\x7c\xbf\xd4\x10\x2c\xb5\xb1\xe2\x80\x15\xac\x14\x4b\xa4\xb2\x2c\x11\xba\x0d\x5e\xd4\x95\x77\xa3\xa1\xca\x2e\x0a\xdd\x48\x00\x2f\x50\x90\x52\x6a\xd8\xb1\xe1\x2b\x43\xd2\xac\xba\x62\x19\xec\xd4\xaa\xb3\x51\x86\x53\xc1\x61\x87\x6c\x4c\x85\xf7\xb8\x35\x8c\xd6\xb3\xf6\x1d\x0e\xb3\x95\xac\x28\x84\x14\x80\x1c\x61\x07\x54\x1e\x87\x9e\xc1\x72\x2e\x1d\x87\xb3\x92\x3c\xd7\xaa\x99\x25\xcb\xf6\x48\x83\xd1\xa6\x61\xb0\x39\x14\x24\x7e\x31\x83\xcd\xa8\x36\xc4\x8d\xa9\x61\xc4\xb1\x34\xbb\x87\xd4\xcc\x65\x05\x93\x62\xc5\x61\x13\xe1\x3c\x1e\x22\xd1\xcc\x18\xee\x0a\xfb\xe4\x9a\xb9\x88\xfa\x29\x53\x63\x2f\xf0\x21\xd6\x7b\x38\xda\x0e\xf4\xdd\xf3\xd1\x98\x97\x80\xef\x75\xb1\xe9\x16\x69\x8b\x85\xbc\x20\x6f\xbf\x2b\xad\x17\x72\x6d\x9a\x3d\xd2\xb9\x26\x33\x85\x61\xf8\xe8\x90\xf5\x93\x07\xc7\x4a\xf9\xa3\x60\x39\x30\xde\x23\x0e\x65\x3a\xd7\x30\xae\x46\x55\xbd\xd6\x67\x76\x6b\xca\xfe\x15\x67\x61\x5d\x8d\xaf\xa0\x02\xd5\x72\xba\x05\x61\xb6\x48\x9d\x8b\x03\x43\x1d\x3c\x07\xc8\x96\x4e\xbb\xe8\x94\x1d\x8d\x4d\x02\x1f\x58\xdd\x2e\xe8\x90\x65\x3b\x3b\x18\xb7\xb2\x80\x40\xd7\x0e\x38\xc5\xaa\xdf\x0c\x1d\xa6\x50\x73\x55\x55\x59\x9b\xb7\x1b\xaa\x7c\x3d\xf7\x69\x31\xcf\x52\xa9\x82\x1d\x26\xea\x91\x80\xb6\xe7\xdf\x4d\x28\x41\xf1\x45\x52\xc0\x04\xd5\xdf\x22\x55\xf3\xcd\x2e\x63\x88\xf0\x7c\x6a\x87\xb0\x0f\x40\x9f\xbd\x18\x83\x02\xc9\xac\x09\x5e\xd9\x1d\x11\x21\x05\x23\x5c\x17\x2f\x9b\x72\x9c\x48\xc8\x3a\xb0\x62\x24\xaa\xe9\x8b\xa5\x71\x9e\x59\x27\x6f\x07\x5d\x92\x8c\x38\xcb\x52\x4d\x04\xb3\x2a\x0d\x55\x73\xc8\xfe\x45\x7e\xb6\x8e\x68\xb4\x2f\x61\xb5\xe6\xf6\x70\x52\x64\x70\x8a\x18\x49\x40\x10\xab\x8c\x8b\x60\x76\xb4\x7b\xc9\x7d\xe4\x42\xef\xfb\x22\x28\xc1\x40\x7e\x5c\x5b\xe5\xae\x45\x60\xdb\x4c\xf1\x15\xa6\x92\x98\xb0\x87\x47\x5e\x94\xd5\x08\x65\xb7\x89\xea\xef\xaf\xad\x62\x1d\xcb\xe9\xaf\x3e\x4b\x1f\x6b\x2f\xd7\x95\xcc\xf5\x44\x91\x95\xac\x90\xcb\x99\x8e\xab\xad\xf3\x02\xcc\x54\xeb\xaf\x94\xdd\xe4\x7c\xc1\x70\x85\x95\x73\x0a\x1d\x3b\xca\xc6\x89\x35\x15\x97\xb9\x8f\x95\x4f\xa9\x26\x7f\x10\xd2\xfc\x21\xc2\x36\xf0\xda\x30\x96\x5e\x72\x96\x89\xa3\x12\xe6\x12\xf7\x99\x9a\x8e\x48\x08\x8d\x32\x84\x56\xae\xfc\xae\x80\x1a\x85\x3f\xf1\x49\x85\xb7\xce\x62\x2c\x50\x13\x68\x1d\xe2\xae\xee\xcd\x04\xf0\x1c\x45\xff\x08\x92\x81\x62\x3e\x5b\x6c\x2a\x15\xab\x60\xbf\x22\xf3\x0e\xc1\x72\x88\xb9\xb9\x3e\x95\xd6\x58\xc3\x10\xcf\xb2\x38\xe6\x25\x2b\xd8\x72\xeb\xd7\x3e\xa2\xe0\xa6\xe5\xa4\xdb\x25\x14\xb0\x02\xd2\xa0\x5e\x23\xdf\x26\x72\xad\x49\x24\x0d\x76\xe8\xb8\xc8\x55\x53\x22\x7f\xab\x2f\xde\x4b\xe5\xee\x4e\xed\x30\x72\x86\x34\xb9\x3f\x66\x22\x25\x34\x37\x13\x4c\xa8\x77\xa6\xe3\xb9\xdb\x59\x2b\x17\x00\x09\x84\x84\x6d\xae\x13\xaa\x1c\xd3\x1f\xd1\x07\xe9\x47\xd1\x17\x51\x23\x80\xc2\x03\xb0\x6b\x00\x0d\xdd\x24\x40\x30\x80\xb9\x6c\x5a\x8b\x3a\x00\xe4\x05\xf8\xe3\xe5\x67\xa6\x04\xe2\x0c\xf8\x41\x82\x69\x27\x61\x57\x56\xa7\xeb\x4d\x51\x5e\xb5\xd1\x71\x19\xb9\xf0\xe6\x91\x8b\x47\x45\x63\x8c\x9b\x81\x15\x51\x7e\xf0\x7c\xb3\x04\x2d\x30\xca\x15\xc4\x29\xd4\xb5\xf9\x7d\x32\xe1\x59\x61\x9e\x7e\x7b\x14\x86\x69\x9b\xcc\xd8\x03\xcb\x10\x81\x26\x51\xe0\xc3\x45\x7f\xe2\x0f\xe4\x7f\x21\x28\x30\xf9\xb1\x2f\x3e\x00\x4b\xcd\xb2\xf9\x11\xe1\xa3\xa2\x65\x6a\x2a\xcd\xdc\xd7\x0e\xc0\xb8\x68\x09\x52\x1e\x08\xee\xf5\x84\x3e\xb0\xbe\xf0\xcd\xfc\x2f\x72\x4f\xfe\x48\x7e\x6c\xb2\xe1\x78\x57\xec\x13\xab\xf8\x40\xc1\xbe\xaf\x88\x2b\x1c\x39\xd1\x11\xb8\x86\xb7\x00\x94\xcc\x6f\x35\xb9\x02\x01\xfb\x82\x8b\x07\xb9\xe8\xb8\x8a\x4f\x2d\x55\x4c\x98\x81\x90\x29\x1b\xb0\x1a\xaf\xd5\x12\x26\x61\x2f\xf4\x4b\x99\xb2\x95\x3e\xa7\x20\x1c\x7f\x06\xab\x85\xce\x87\x61\x3b\x20\x64\x39\xe8\xdb\x65\x02\xab\x1f\x70\xc8\x4d\xdf\x66\xb8\xdb\xba\xc9\xae\x9c\x64\x75\x04\xdc\xdc\x0d\xa0\xde\x55\x93\x51\xe3\xa3\x43\xab\xa7\xb0\x6a\x1c\xb6\x2f\xdb\x99\xbb\xfb\x26\xca\xba\x07\xb8\x2e\xc5\xc7\xdc\x4a\xda\xeb\xbb\xe2\x80\x01\x6e\x63\xe1\xc6\x3c\xe7\xb5\x4c\xdc\xc5\x52\xf8\x8c\x91\xe3\x40\x76\x85\x7b\x69\x28\xf3\xaa\xbc\xed\x16\x80\xeb\x38\x6e\xd5\x89\xd6\x73\xcb\x7e\xc7\x18\x1b\xc5\x26\x1c\x11\x32\xda\x67\x17\xc4\x1e\x0a\x39\x65\x08\x09\x6d\x17\x2d\x37\x13\xa9\xf8\xdf\x1b\x7d\xb1\xcd\xd2\x75\xe1\x43\x2b\x22\x7e\x70\x9c\x65\x39\x1b\x68\x14\xa5\x02\x53\x52\x22\xea\xb4\x1b\x32\xcc\x21\x0d\xdc\x72\xd7\x51\x9e\x21\xfa\x52\x22\x55\x8a\x05\x0a\x74\x29\xbe\xc8\xbe\x47\xb5\xe6\x63\x17\x51\xeb\x1b\xe4\x2e\x5b\xd6\xe1\x3b\x25\x13\x2a\xc6\xcb\x65\xc8\xbf\xe6\x2c\xdf\x53\x88\x96\xc3\x5c\xfc\x4a\x9e\x78\x3a\xd6\x45\xb8\x1e\xae\x8d\x65\xc9\xc5\xfa\xfe\x66\x67\xaa\xa3\x68\x3e\x6f\x4b\x0b\x49\x93\xa8\x42\x57\x75\xf9\x35\xec\x2e\x37\xee\xf8\xed\xc1\xf2\xf2\x1c\xae\xfa\x45\xd9\xa8\x86\xff\x00\xfd\x39\x5c\xa3\x67\xb5\x6c\x04\x1e\x5e\x91\x3b\xf6\x6d\xe5\xd8\x40\x8b\xf6\x83\x72\x23\x74\xcc\x75\xd1\xaf\x59\x4f\x1d\xb7\x65\x1b\xca\xc6\x24\x81\x7d\x0f\xc0\x83\xb5\xb3\xe5\x36\xb2\x48\x16\x11\xa3\x98\x2a\xe0\x93\x78\x9e\xd6\xcc\x52\xf6\x09\x96\x93\x15\x22\x97\x60\x53\x12\x49\x34\xa2\x2d\x6e\xa7\x45\x25\xa8\x7e\x6c\xfe\xf1\xba\x43\x59\xea\x09\x59\xd3\xaf\x01\xda\xfc\xb2\x63\x7b\xe1\x02\x8d\xca\x1e\x01\x8c\x9e\x90\x91\x4f\x14\x9c\x03\xb9\x26\x46\x51\x88\x15\x85\x08\xbf\xcf\x28\xc5\x72\x8d\xba\xa2\x43\xf6\x04\x55\xd4\xe1\x08\x02\xf3\x74\xb0\x63\x66\x42\x85\xcb\x13\xab\xf3\x3e\x04\x60\xf4\x70\x12\x62\xff\x43\x5d\x67\xd0\x91\x13\xdd\x6b\x9b\xf4\x0b\x1d\x07\x32\x57\xe2\x67\x9b\xcc\xc4\x5c\x43\x00\x3c\xcd\x1a\xf5\xc5\xa1\x94\x19\xa3\xa2\x49\xac\xae\x7d\xbc\x60\x29\xe2\x71\xcc\xac\xd5\xf8\xac\x64\xa6\x72\x66\x75\x0a\x8a\x99\x72\xd1\xbc\x28\xd4\x2f\x31\x01\x96\x11\x95\x42\x3b\xd0\x74\x85\x2f\xe4\x28\x3e\xf9\x43\x96\x6d\x14\x64\x82\x1f\x2c\xa5\x22\x78\xa5\x28\x91\xb1\x56\xf6\x51\x1c\xfb\x50\x9b\xab\xb5\x6a\x60\x71\x86\xd7\x52\xb3\x70\x39\x4b\x6a\xbb\x21\x6a\x96\xe4\x8a\x9b\xf9\xc0\x29\xd6\xeb\x33\xad\x5b\xf7\xe5\x99\xfb\x70\x1d\xf1\xf5\x94\xf8\xfe\xbc\x22\x4f\xa4\xc3\xa6\x8a\xa6\xb0\xce\x76\x5b\x91\xb4\x36\x87\x63\xd9\xc2\xfa\x24\x92\xf5\x86\x6a\xbb\xd8\x76\x78\x0e\x89\x67\x20\x47\x3e\x3d\x63\xfd\x85\xad\x42\x14\x6d\x60\x91\x50\x88\x70\x42\x66\x8a\x4b\xe5\x90\x80\x1a\xfd\x02\xab\x2e\xf5\x76\x25\x76\x04\x70\x5d\xa7\x70\xef\xe8\x02\x17\xcf\xdb\xfe\xc2\xad\x5f\x5a\x1d\x48\xc3\x85\x8f\x53\xc9\x74\x24\x68\xc3\xc2\x22\x17\xe3\x23\x66\x07\xdd\x17\x56\xd3\x88\x95\x02\xcc\xe6\xf5\xc9\xbd\xb6\xd3\x44\x49\xad\x5d\x38\x08\xb6\xa3\x5b\x4b\xe5\x89\x9e\xcb\xb5\xdc\x87\xa3\xef\xf9\x22\x43\x17\x6b\xa6\x45\x38\xfe\xf5\xf2\xe7\x90\x85\xbc\xd2\x46\xee\xbf\x6b\xd0\x98\x3f\x1a\x44\x31\xaa\x9d\x05\x04\x62\xab\x2a\x51\x25\x1b\x48\x8b\x61\xcc\x18\x63\x79\x1c\x32\xb9\x23\x12\x72\xc8\x27\x58\xae\x88\x6b\xc2\x95\x62\x50\x0d\x01\xa1\x37\xba\x15\xaa\xe1\x45\x4d\xfe\x62\x45\x82\xb2\x8f\x3d\xc3\x6d\xa9\xf9\xd4\x9e\x67\x80\x7c\x12\xf2\x58\xce\x40\x7b\xac\xbe\x05\x69\xf8\x7c\x64\x29\x31\x32\x15\xd8\x2f\xc4\x31\x94\xd5\x61\xc2\xd4\xb9\x3a\x7c\x23\xe0\x1a\x01\xe4\x8f\x09\x73\x94\xdb\x7f\xd3\x7e\x77\x75\xd3\xeb\x9c\xf7\xdf\x14\xfe\x6b\x1f\xeb\xe4\x2f\xf7\x90\x25\x2c\x45\x5f\x04\x37\x54\x48\xcb\x82\xbd\x24\x34\x4d\x8b\xa4\x58\x8c\x80\x1c\xa0\x39\x7d\xdd\x53\xb1\xd2\x13\xb5\xd8\xcc\x7b\xfe\x85\xa5\x37\x0d\x58\x7a\x7b\x09\x0f\x58\xcb\x4e\x5b\x4b\xe2\xb9\xe0\x6b\x5e\x61\xe5\xa9\xdc\xd9\xef\xd6\xa7\x60\x3c\x09\xb0\x57\xde\xe8\x87\x19\x6f\xd4\x10\x1a\xca\x18\x8e\x80\x06\x44\x32\x27\x90\x0e\x60\x89\x76\x4e\x7e\x22\x53\x2e\x20\x74\x77\xd9\xd2\xde\x95\xe7\xb1\x09\x86\x71\xf7\xf2\xae\x5c\x60\xe0\xe7\xab\xbb\x32\x32\x67\xfb\xd7\xe5\x68\xc4\xe5\x16\x96\xd9\x74\xa2\x29\x16\xe1\x51\x12\x57\x22\xac\x4c\xdd\x44\x3f\x30\xf3\x09\x0b\x9a\xec\xc3\x19\xea\x80\x10\x41\xed\x63\x03\x5f\xd2\x66\x7d\x32\xf8\x54\x53\x04\xa7\x50\x70\x7a\x0e\x86\x5c\xc9\x0c\x64\x6d\x16\xaa\xe0\x44\xf1\xbc\x2d\x2c\x4d\x02\x75\x33\xc0\xac\xe4\x6d\x92\xf6\xca\x94\xc2\x2e\x57\x1f\xde\x0e\xa8\xe6\x45\x73\x72\x84\x1f\xaf\x15\xe4\x73\x13\xbb\xb5\x6c\x5b\xc5\x52\x92\xf6\x75\xb7\x66\xad\x2f\xaa\x92\xf1\xb7\x05\x16\x90\x05\x21\x7d\xdf\x38\x01\x51\x20\xd2\x8b\x80\x08\x70\x33\xdd\x0d\x1d\x00\x6d\x19\xd7\x65\x03\xc9\x93\xca\x42\xb5\xd1\x06\xdb\xc7\xcd\x14\x13\x00\x63\x51\xbd\xa4\xb3\x71\xb2\x49\xd1\xaa\xcf\x78\xd8\x40\x50\x26\xc5\xd7\xde\xe4\xe6\xe0\xc9\xe8\x8c\x3a\x54\x56\x10\x76\x7c\xba\x69\x1d\x8a\x4e\xab\x2f\xe2\xd2\xb6\x28\x9e\x58\x1a\xf0\xa9\xcd\x80\x65\x66\xd9\x85\x42\xbf\x79\xb8\x79\x8e\xe2\xc4\x93\x6a\xe0\xa4\x99\x94\x93\x93\x17\xfa\x71\xd4\xa7\x27\xd4\xc7\xd6\x78\x91\xde\x79\x7e\xe3\x5c\x6a\x68\x2f\xca\xca\x74\x1d\xb3\x07\x26\x30\x55\x9a\x46\xd8\x34\x51\x48\xa3\x95\xfe\xc5\x77\x26\x04\x2e\xf1\xcc\x25\x54\xd3\xe0\xf9\x2c\x6c\x9b\x9a\x72\xd7\xf2\x72\x02\xde\x43\x6e\x8a\xae\x60\x02\x6f\x40\x7c\xf0\x65\x93\xb9\xce\xa1\x87\x5b\x1a\x88\x8d\x87\x18\x3f\x5f\x4b\xb2\xec\xcb\x8c\x25\xdb\x24\x14\x5c\xfb\xe2\x85\xcb\xcc\x87\x65\x3c\x3a\x30\x8d\xb9\xad\x33\xd2\x1b\x33\xab\xa3\x5d\x31\xce\x8d\xd2\x7a\xec\x40\x3f\xb9\xd4\xeb\x0d\xc7\xe9\x13\x7b\x46\x4a\x4e\xd7\x1b\xe2\xf3\x84\xb2\xf7\x16\x82\xc2\x4b\xf6\xb8\x17\x12\xc3\xbe\x7a\x94\x4d\xc1\xeb\xab\xb8\xde\x27\xbc\x17\x43\x9e\x0a\xc0\x2b\x78\x8c\x3b\xef\xa5\x74\x71\xe3\x71\x9f\xf1\x9d\x15\xfc\x75\x3e\xa6\xab\x72\x0a\x4a\x9e\xc0\x21\x23\x4e\xf2\xc4\x38\xee\xfa\x00\x74\xb8\x3e\xeb\x5c\x10\x51\x30\x83\x4b\xc3\xb3\x8b\xa7\x0d\x9d\x86\x3c\xff\x2a\x88\x44\x65\xb9\x56\x70\xa3\x7d\x05\x14\x3f\x41\xd0\x79\x9d\x59\xa1\x14\x08\xef\x22\x7e\xf6\x93\x6d\x5a\xb9\xa1\x97\x0e\xac\x94\x6e\x1a\x0f\xc8\x01\xe9\xc7\x29\x96\x8b\x5b\x59\xba\xf9\xb0\xc2\x86\xf7\x74\x6c\x69\x90\x40\xea\x64\xaa\x92\x27\x40\xe2\x3b\x1e\xec\x59\x53\x3a\x8f\x22\x11\x1d\x90\x1b\x5c\xce\x5c\x84\xbf\xca\xac\xd6\x13\x73\x4c\xa2\x75\x11\x41\xad\x08\x9c\x1d\x0c\x6d\x59\x7c\x5f\x63\xd5\x20\x1c\x25\xfa\x17\x10\x27\xbe\x7b\x89\xd0\xee\x10\x65\x37\x97\x39\x79\xe4\xda\x6a\x63\x7d\x01\x06\xf8\x80\x27\x6f\xa4\xc3\x80\x3f\x82\xb7\x20\xf6\x56\xe7\xc3\x29\xb7\xaa\x6b\x31\xc9\x3b\xe0\x08\x37\x3e\x12\x13\xcf\xb1\xfd\x00\xae\x6d\x1f\xe3\x59\x97\x4d\xb1\xe2\x7c\x6c\x61\x71\x28\x1a\xd9\x35\x8c\x33\xf2\x0f\x3e\x6d\x20\x67\x24\x66\xc7\x6a\x4d\xed\xf1\x3a\x44\x72\xd6\x1f\xca\x72\x36\x33\xa4\x9c\x73\x6d\x2a\x97\x49\x73\x0e\x73\xb1\x05\xfb\x08\xe3\x6c\xc2\x52\x59\x16\xdf\xe3\x3f\xa9\x97\x76\x6e\x43\xa9\xa4\x5a\x11\xec\xba\x51\xbe\x79\x69\xb9\x64\x51\x55\xb8\xad\xbd\xae\x9b\xa8\x5b\x45\x3a\x44\x4c\x0a\x51\xc8\x4f\x39\x8d\x80\x55\x59\xb7\x90\x06\xc2\x1d\x12\xc0\x43\x5d\x88\x35\xea\x8b\x7a\xb9\x61\x39\x8d\xed\x1a\xb9\xb0\xd7\x9c\xb3\xc8\x5a\xe4\x67\xe1\x2c\x22\x9f\x43\xa8\x26\x2a\xa3\xa1\xb8\x31\xab\x9c\x2b\x6f\xea\x6e\xd0\x02\x40\x5c\xd8\x26\xe8\xad\xe6\x54\xae\x19\x57\xb0\xf2\x5c\xb8\x2b\xf3\x69\x34\xa8\x1d\x03\x30\x20\xed\x7a\xff\xc9\xe2\x60\x30\x3e\x02\x67\x84\xf3\x54\x52\x2c\xbb\x12\x50\x3a\xd6\x5a\xb9\x4d\xc1\xf0\x22\x90\x28\xc0\xb9\x8a\x2b\x66\xc1\xe1\x91\x59\xa8\x4e\x54\xe1\x6e\x41\xdc\xc9\x45\xca\x94\x60\xd4\x4c\x9e\xcf\xa1\x7f\xb6\xab\xc9\xf0\xd9\x9c\xfb\x67\x7b\x41\x42\xad\x38\xcc\x37\xf4\x95\x6f\xe0\x78\x2e\x70\xf1\x16\x94\xa8\x3a\xc0\xe8\x22\xa7\x60\x13\xcc\xc3\x9d\x7c\xfe\xf5\x8a\xcd\xd3\x44\x3f\xd4\x18\x34\x16\xe2\x1e\xec\xd9\x8c\xd1\x04\x57\x2c\xc9\xeb\x0d\x33\x88\xd9\x0c\x7d\x74\x66\xa3\x81\xe5\xec\x03\x84\x17\xda\x60\x37\x6f\xe8\xe3\x15\x7c\x0f\xe5\xf2\xf1\xeb\xf5\x05\x87\x65\xca\x66\xb0\x54\x02\x22\x7a\x09\xf6\x08\xb9\xfe\x8a\xdb\x7f\xfb\xda\x62\x5e\x6f\x8b\x5d\x74\xee\x17\xf7\x43\x43\xb5\x95\x15\x15\xc4\x62\x1d\x52\xcc\xab\x26\x18\xaa\xd2\xcc\x25\xae\xa0\x5a\x58\x51\x00\x96\xa9\xa7\x7d\xf1\xb3\x7c\x64\x0f\x4c\x1d\x11\x6a\xc8\x54\x5a\xa1\x2f\xf2\x8a\x41\x94\x7d\x29\xfd\x1f\xbd\x1f\x94\x5c\xd2\x29\x4b\x3b\x20\x3a\x44\x71\xb5\x4e\x49\x76\x06\xe8\xba\x14\x4b\x48\x1b\x74\x65\x95\xdd\x40\xfb\x02\x0b\x93\xa1\xc7\x15\xa8\x91\xfb\x89\x01\xab\xfc\x43\x30\x8f\xff\xa1\x45\x7a\x56\xc6\xe1\xba\x3c\xde\x28\x5d\xa3\x69\x6c\x7d\x31\x56\x32\x9f\x05\x25\x46\x0e\x41\x7b\x42\x33\x79\x8d\x79\x1c\x06\xe3\x6d\xe3\x09\x4d\xad\x04\xb5\x9c\x70\x4a\x6a\xf6\x0b\xb3\x1a\x95\x63\x9f\x63\x02\xb2\xcc\x2b\x78\x7b\x5d\x40\x0f\x90\x51\x33\x24\xcb\xfe\xcc\xec\x0b\x68\xb0\x1a\xe4\xf7\x60\xdd\x28\x05\xc2\x6d\x09\x31\x1b\x59\x84\xbc\xf5\xa4\x3e\x82\xb3\xe8\xd6\xf9\x75\x7d\x79\x8e\xba\x22\x5c\x0d\x7b\xbf\xbe\x03\xbc\x32\xca\xeb\x5c\xcd\x24\xa4\x40\x64\x73\x1f\x36\xea\xd2\x3a\x66\x72\x96\xa3\x03\x9a\xc7\xfe\xc8\xda\x01\x71\x6d\x3e\x52\x93\x4c\xac\xe8\x58\xa4\x37\xec\xc9\x31\x5f\x30\xd2\xa7\x55\x55\x6b\x66\x70\x16\xf7\xde\x60\x86\x59\xdb\x0a\x81\x89\xce\x3e\xaa\x07\xfe\xca\x32\x32\xb5\xbd\x96\x90\x5e\x23\x6c\xb6\xda\xb5\x2e\x21\x9b\xed\xdd\x27\xbf\x83\x2a\x01\xe5\x49\xb9\x20\x51\x81\x72\xe7\x6c\xa8\x3d\xd2\xb9\xe2\x5b\x69\x0c\xce\x58\x05\x90\xab\x85\xee\x39\xa5\x33\xc2\x2d\xdf\xb6\x37\x8f\x1a\xb3\x23\xf2\x68\x4f\x9c\xc9\x95\xe5\xcd\xb9\xe2\xfe\x84\x81\xc2\xb8\x64\xfb\xca\x1a\xdb\x09\x4a\x1b\x18\xa9\x98\xd0\x08\xd4\xcf\x95\x88\x4c\x4c\x4e\x83\x8b\x1f\x76\x38\xe3\xe2\xde\x76\x86\x60\x23\xde\x31\xa0\x2c\x7f\x93\xca\x07\xfc\x97\xf6\x74\x25\xe5\xed\xb0\xcb\xcd\x50\xce\xab\x8e\x02\x17\xe3\x28\x55\xa9\x5e\x5f\x5e\x07\x34\xa4\xf6\xcb\xf5\x30\x4f\x6a\x3f\xf5\xf2\xc4\x36\xdf\x2e\xc9\xee\x68\xfc\x7c\xf5\x01\x8f\xc2\x99\x5c\x48\x89\x93\x48\xe2\x24\x32\xa7\x75\x41\x0a\x28\x02\x85\x53\x27\xa1\xfc\x67\xf8\x17\x42\xb5\xe1\xd2\xfc\x27\x91\xaa\x2f\xf0\xf7\xa3\x80\xea\x62\x5f\x28\xb2\x30\x1b\x30\x0b\x02\x3d\x79\x54\xf0\xed\xe4\xca\x5e\xfb\xf6\x97\xc1\x4d\xe7\xf6\xea\xee\xe6\xac\x24\x5c\x9e\x5d\xdc\xdd\xf6\x3a\x37\xb5\xcf\xb0\x10\x4f\xf7\xea\x72\xf0\xd7\xbb\xce\x5d\xc3\x23\xdf\xc0\x45\xfb\x5d\xa7\x54\x04\xf8\xaf\x77\xed\x8b\x6e\xef\xd7\xc1\xd5\xfb\xc1\x6d\xe7\xe6\x53\xf7\xac\x33\xb8\xbd\xee\x9c\x75\xdf\x77\xcf\xb0\x7c\x60\xf4\xee\xf5\xc5\xdd\x87\xee\xe5\xc0\x87\xc4\x2c\x95\x75\xeb\xa7\xd2\x88\x5e\x5f\x30\x63\xe0\x2f\x05\x46\x8d\xbf\x9b\x87\x73\xb7\xd3\xfc\xef\x60\x2e\x71\x05\x82\x8f\x8f\xfc\xbf\x10\x0d\xf9\xd8\x72\x04\x6f\x30\x2b\x0e\x53\x5f\x04\x8b\x66\x60\xff\x86\x8e\xb5\x2f\x0e\x56\x1a\xed\x29\x69\xcf\x5c\x6d\x7d\x59\xee\x14\x2a\x8b\x85\x91\x7a\x43\x36\x90\x08\x14\xf7\x73\x05\xeb\xaa\xbb\x55\x6e\xd0\xcd\x09\x86\xe0\x0c\x7a\x69\x0c\xd9\x5f\xc5\x50\xf7\x55\xf0\xca\xdb\x7c\x4a\x3c\xc3\xb2\xcd\xda\x71\x41\x62\xe4\x5c\xd0\xe9\x42\x09\x34\xcc\x0d\x74\x59\x83\x53\x26\x4c\xb5\xc5\x12\x75\x94\x5b\x9e\x30\xf2\xcb\x5f\x8a\x41\x81\x19\xc6\x99\x35\xf2\x05\x7c\x43\xf7\x40\xe5\xb8\xaa\xab\x68\xab\xd4\x93\x57\x7c\x6a\x0a\xe2\x42\x94\x4a\x2e\xa2\xf4\x9c\x52\x20\x97\x2b\x08\x40\x8e\x49\x85\x40\x4f\xc9\x2d\xcb\xa0\x08\x71\x10\x6a\xec\x2e\xce\xa0\x96\x76\x15\x16\x7d\xe8\x6a\x6b\x3b\xa9\x01\xc1\x63\x60\x1d\xa1\x96\x63\xd3\xa1\x2f\xf3\xec\x9d\xd2\x4b\xf5\xfd\xc0\xef\xf9\x60\xab\x4b\xa4\x47\xf5\x7d\x4d\x59\x82\x5a\xbe\xec\x36\x74\xc7\x1e\x9b\x6b\x21\xd4\x76\x1a\xf6\x6c\x00\x14\xb9\x5d\x9f\x8d\xb9\xbd\x2b\xba\xf4\x33\xce\x2a\x30\x69\x6b\xf7\x57\x82\x59\x7b\x7a\xdb\x4e\xfd\x2d\x0e\xb4\x3b\xf0\x29\x2e\x9b\xac\x5b\xb9\xae\xfc\x26\xde\x1b\x00\x98\xe0\x49\x54\x93\x1f\x4e\x7d\x80\xae\xf3\x58\xca\x58\xd1\xd4\x19\x96\xe8\x50\x3e\x94\x92\xba\xa7\x58\xcf\xb0\x56\xc6\x8e\x34\xf9\x5d\xce\x50\x20\xe6\xf5\x8b\xbd\xda\xa5\xf7\xe4\x0b\x65\x55\x6b\x97\x7d\x5d\x4d\xbd\x3a\x99\x55\x71\x94\x5b\x38\x63\xa2\xd6\x83\x37\x66\x1d\xe1\xfa\xdc\xd5\x23\xd0\x25\x48\x63\x44\xce\x07\x15\x3c\x36\xa7\x1c\x15\x51\x27\xae\x2e\xbb\x17\x87\x4e\xbc\x84\x44\x4e\xd0\xc6\x73\x12\x5d\xdd\xf3\x99\xbd\xb3\xa7\x43\x97\x04\xb1\x7c\xa3\xa3\xb5\xd9\x61\xcb\x9f\x0e\xca\x2f\x4c\xeb\xab\x21\xf9\xd5\x8d\xe0\xd5\x02\xf9\x61\x48\x7e\xa0\x0d\x3b\x5d\xbf\xda\x7f\xf4\x33\xfa\x23\x92\x54\xde\x90\x51\x15\xb5\x16\x32\xde\xc9\x31\xd4\x9d\x71\xe9\x1b\xce\x52\xaf\xc9\x31\xc9\xf8\x3d\x23\xdf\x81\x7b\xbb\x7d\xdd\xfd\xee\x88\x7c\x17\x87\xd0\x7e\xb7\x01\xfb\x2b\x30\x3a\xdd\xb8\x1d\xa2\x1f\x48\xaa\xa5\xe8\x2c\x48\x09\x88\x87\xd9\x8e\xca\xc9\x40\xb6\x94\x61\x0a\x71\xe7\x20\x24\x27\x84\x7d\x38\x3b\xec\x2a\xde\x58\x1c\x99\x9d\xb1\xd1\x6c\x7b\x8b\x01\xfe\x7b\x0e\x45\x58\xce\x08\x57\xa4\x0c\xb4\x43\xe9\x89\x02\x4d\x4e\x37\x10\xef\x21\x1c\xa7\x6e\x56\x25\x3d\xd9\x2f\x66\xed\xa6\xac\x22\xbc\xd7\x46\x6e\x6b\x04\xbe\xb4\xeb\x56\xc4\x05\x2e\x35\xc8\x92\x07\x2a\x7b\x5a\x2a\xdb\x47\xcc\x57\x79\x70\x9b\xdf\x66\x67\x28\x10\x45\xcd\xf8\x14\x66\x2b\xe1\x7a\x3e\x5d\x06\xdd\x5b\x0d\x33\xbb\xa1\x2f\x25\x5a\x93\xd5\xce\x94\x5b\x74\xc2\xa1\x53\x63\x71\xac\xd5\xa1\xb6\x8d\x83\x02\x92\x1c\xa3\xb2\x0d\x9f\xb2\x23\x02\xe5\x93\x0a\xc7\xa1\x3b\xaf\x40\x6e\x70\x55\xb9\x3a\x0b\xd8\x89\x4a\x26\xfc\xa1\x3e\xf4\x7c\xe9\x06\xef\xe0\x72\xbd\x6c\x7f\xec\x9c\x0f\x3a\x97\xbd\x6e\xef\xd7\xc1\xa2\xf7\xb5\xfc\xf8\xe6\xec\xe7\xee\xa7\xce\x79\xfc\xc2\xed\xaf\xb7\xbd\xce\xc7\xc1\x87\xce\x65\xe7\xa6\xdd\xeb\x9c\x2f\x35\x5e\x2d\xeb\xac\x0e\x63\xd5\xc5\xc6\xc9\x02\x31\x35\xf5\x78\x8c\x1e\x79\x04\x2d\x3f\x90\x41\xc8\x8d\x26\x0f\x5c\x73\x97\x65\xe4\x84\xbd\xbb\xae\x37\x46\xd5\xf4\x7e\x1a\x85\x17\x1f\x21\x1c\x47\xd1\x09\x77\xd6\xee\x58\x10\x74\x8e\x56\x91\x62\xcc\x0e\x89\xaa\x58\xb5\x6a\x3a\x71\x0b\x76\x4a\xda\x6e\x6b\xeb\xda\x17\x92\x58\x31\x94\x29\x1c\x3d\x7a\x61\xc3\xd0\xc9\x31\xa9\xae\xf1\x29\x41\xb8\xb4\x08\xf4\x35\x34\x08\xc2\x13\x55\x4c\x7c\x67\x08\xfb\x32\xcb\x78\xc2\x4d\x04\x44\x2b\x15\x99\x52\x41\xc7\x5e\xfd\xc8\x35\x53\x2b\xb8\xc7\xde\xdc\xb2\xfb\xd0\x22\x9b\x42\xfb\x62\x4d\xc9\x91\x4b\xc0\x82\x33\xd2\xe5\x74\x3c\x99\x0e\xda\xe0\xde\x59\xc0\xcb\x5a\x77\x48\x7b\x52\x5f\x57\x04\x13\xba\x60\x62\xe7\xd7\xa5\x1e\xc8\xf3\x11\x2f\xae\x97\xe1\x21\xae\xa1\xc3\xaf\xec\x22\x2e\x01\x4e\xee\xad\x24\xd4\x60\xb5\x0f\xb1\x96\x52\xf6\x58\xa6\xa9\xa8\x9d\xb0\x50\xa0\xc9\xab\x9d\x97\xcd\xd8\xbb\x9b\x55\xc3\x29\x2d\xe2\xea\x4a\x38\x50\x2f\x8f\xea\x86\x32\x38\x00\x4a\x95\xbe\x94\x62\x38\x8b\x59\x66\xe5\xc1\x7d\xe5\x4a\x38\x95\xc1\xbc\x9c\x72\x38\x2b\xd7\xed\xe5\xa6\x11\xd6\x0c\x74\x8d\x32\x38\x21\xca\x1d\xa0\x6f\x37\x63\xf9\x90\x59\xc8\xd3\x0c\x38\x92\x77\xcb\xd9\x43\x55\x63\xba\x8c\x15\x2d\xaa\xef\x77\xee\xae\x47\xf5\x7d\x43\x57\xab\x2e\x8a\xb3\x92\xa1\xbb\xb2\x6c\x2e\xcb\xcd\x21\x46\xc4\x85\x0b\x9b\xf9\x2f\x54\xa7\xdd\x8b\x68\x02\x4d\xd4\x24\x1c\xac\x67\xaa\x43\xdc\xc8\xee\x79\xc1\x91\x02\xca\x7a\xe4\x76\x35\x8a\x26\x00\x30\x8b\x65\x53\x9d\x2b\xa3\xc9\xc1\x62\xa7\xb6\xde\xf6\xc0\xab\x8b\xeb\xb2\x22\x54\xcc\xad\x76\x01\x94\x5b\x84\xa1\xc8\x24\xc9\x95\xda\x2c\x07\xb6\x24\x04\x88\x14\x60\x81\xa2\x4a\x47\x28\x97\x56\xf7\x1c\xfb\x9c\x50\x5d\xed\x72\xe5\x96\x6f\x91\x3a\x57\x6a\xe6\x03\x83\xc0\xd9\xbd\xd4\x9f\xd8\x20\x93\x01\x06\x72\xa7\xb2\x95\xc5\x1c\x6f\x11\xa4\x37\x57\x59\x61\x8e\xa0\xc4\xde\x9d\xad\x28\x2a\x09\x12\x8c\x4a\x2b\x8a\x83\x69\x60\x39\x9b\x97\x9f\x7c\xca\xa1\xba\xd1\x34\x8c\xd5\x8a\x69\x7b\x4b\x12\x69\x84\x90\x8e\x7a\x41\x4b\x0d\xe8\xeb\x65\x89\x10\x64\xf7\x39\x82\x2c\x83\xd2\x47\x63\xd1\x55\xf3\xbf\xdb\x9b\x55\x31\x3d\x91\x59\x13\xaf\x87\x6e\x36\x46\x09\xd8\x6e\x36\x1e\x24\xe0\x09\xa7\xe3\xc2\x21\x06\x4d\x01\x4c\x6b\xdc\x22\xe7\xd8\x44\xed\xdd\xb5\xce\x64\x8b\xec\x2d\x07\x70\xe2\xe2\x0b\xdc\xd0\xc0\x17\x50\xa8\xc7\x71\x92\x74\x61\x2b\x2c\x44\xc7\x39\x7a\x1e\xc2\xe7\x11\x5c\x7f\x88\xbd\xe3\x46\x13\x6d\x54\x9e\x00\x98\xcd\x84\xa9\x8d\x00\x74\x42\xf0\x64\xd1\x84\x1d\x70\x3d\x4f\x72\x98\x6b\x20\x60\x38\xe7\xb0\x2e\xa5\x77\x7b\x1c\x08\x98\x72\xad\xf0\xdb\xcc\xf9\x76\xb5\x39\x97\x91\xfa\x9f\xcc\xf4\x5c\xa2\x96\xd2\x04\x0e\x59\xc4\xdb\x1a\x94\x1d\x0c\x5f\xa0\x40\x48\xf2\x37\x8a\x33\x40\x9f\xc9\x42\xca\x6a\xf9\x8e\x76\xa6\xa5\x95\x84\x65\xcf\xef\xf9\x8e\x66\x66\x3b\x9c\xf9\x00\x32\x0d\x76\xf1\xfb\x96\x66\x80\x56\x36\x68\x93\xa5\xae\x30\x2c\x02\x08\xb9\xd9\x07\x0b\x23\xd6\xa2\xe8\x8b\x1b\x3b\x0a\xfc\x02\x0c\x8d\x28\xde\x05\xc0\x77\x56\x20\xb6\x8e\x08\x75\x5f\xc1\xb2\x35\xd5\x1a\xd3\x83\xa8\xcc\x45\xd3\xc4\xb6\x81\x1b\x0e\x22\xe8\x3b\x7c\x4a\x46\x19\x1d\xfb\x04\x44\x28\x9e\x32\x2a\x54\x14\x2b\x67\x61\x35\x12\xfb\xa7\x76\xec\x9f\x37\x44\x35\xeb\x19\x4b\x50\x59\xd8\x52\x2a\x86\x5d\xe0\x69\x30\xdf\xc2\x9f\xa2\xbe\xb4\x84\x83\x9b\x9c\xd2\x19\x04\xf3\x21\xa5\xcb\x51\xe0\xf2\x3d\x17\xd1\xd7\x82\x91\xff\xdf\xff\xfa\xef\x16\x4f\xd7\xc4\x88\x2b\xbc\x28\x45\xb2\x74\x14\x3e\x13\x15\xcc\xa0\xc0\x8e\x97\xd6\x86\x2c\x65\x81\xef\x12\x5e\x31\xa1\xfa\xe9\xdc\x76\x4b\x0a\x0e\xc7\xbc\x73\x3d\x2f\x31\x0e\x15\xe3\xc0\xed\x85\x94\x6b\xa6\xd0\x81\x11\xd2\x1b\x6b\x00\xba\x1b\x83\x3a\xd8\x94\xf2\x8d\xc2\xc4\xec\xfb\xf5\xc9\xf7\x25\x03\x14\x1d\x33\x35\x48\xf3\x52\xa0\xd3\xaa\xb6\xaf\xed\x47\xe7\xb9\x99\xaf\x6e\x5f\x67\x34\xb9\xdf\x04\xf0\xc0\xbe\xdf\xd0\xec\x6a\x46\x1d\x79\xfe\xca\xf2\x42\x03\x9c\x00\xab\xc0\x09\xb8\xb8\x90\xb8\x7f\xe4\x59\x02\x60\xd5\x23\x79\xcf\x31\x35\x00\x6b\x6c\x91\xf7\x88\xd4\x07\x72\x27\x76\x91\xc8\x3c\x4b\xfb\x82\x7d\x99\x49\xcd\x4a\x41\xb6\x35\xe8\x6a\x2e\x66\xdc\xf5\x54\x7f\x61\x54\x90\xeb\x77\x12\x44\xbe\x3a\xf6\xc3\xe2\x9e\x2e\x4e\xb9\x9e\xc8\x76\xba\x23\x13\x3e\xe3\x96\x3c\x06\xb5\x87\xe9\xd9\x8a\xa7\x9c\x59\x8d\x5d\x98\x6c\x7e\x44\xc2\x24\x2b\x64\x91\xb1\x07\xa6\xe8\xd8\x4a\x2b\x94\x67\x31\x92\x5e\xd9\x3e\xb0\x9e\xcb\xb3\x1c\x6a\xb9\x73\x54\x70\x9d\x1f\x6a\x03\x29\xa3\x1d\xa3\xff\xcd\x99\x21\xec\x8b\x61\x02\x3d\x78\x3d\x1f\xe0\x1c\x05\xd9\x34\x15\xc0\xc2\xd0\xd3\xe6\x4b\xf6\xc9\xf7\xb1\xed\xb3\x3c\x7c\x04\x77\xaa\x1d\xaf\x77\x95\x0b\x26\x54\xa4\x2e\x4c\xbf\xa8\xef\x86\xb3\x13\xda\x30\x1a\xee\x78\x1f\x6c\x1e\x81\x32\x61\x9b\x88\x7e\x0e\x57\x8a\x97\x5f\xad\xe4\x05\xfe\x16\xa9\xac\x18\x92\x0b\xc3\x33\x2b\x4d\xb9\x31\x58\xed\x26\x17\x21\x05\x1c\x42\xc2\x1a\x56\x10\x12\xc7\xc5\x78\xe0\x56\xd2\x47\x9c\xaf\xc7\xad\xcb\x34\xf5\x11\x9b\xc2\x1f\xdf\xf9\x86\x96\x1b\xd2\x30\xd5\xc2\x4e\x3f\xc4\xba\x43\x64\xbd\x90\x7e\x32\x01\xaf\x2f\xec\x75\xa9\x9c\x06\x4c\x74\x13\x49\x1e\x64\xa5\xc5\x5c\xab\x82\xaf\x6b\xa2\x21\x42\x1f\x23\x88\x21\x38\xce\x34\x04\xe8\xeb\x86\xc0\x7c\x40\x6f\xf5\x22\x93\x03\x79\x0d\x15\x00\x2a\x31\xfe\xd4\x77\xe7\xe2\xf8\x68\x96\x0d\x69\x72\x1f\x00\x35\x83\x6a\x24\x95\x87\x26\xb3\x62\x1c\xa0\x00\x23\x71\xd9\x81\x26\x20\x67\x14\x95\xad\x53\x97\xcd\xea\x86\x5d\x74\xee\x8a\x90\x08\x2c\x8b\x01\x4a\x14\x8e\x1e\xe3\x04\x53\x36\xcb\xe4\x7c\xda\x70\x03\x55\xc3\xb5\x77\x71\xdd\x35\x45\x8b\xef\xf5\xf2\xa9\x30\xbd\x8d\xaf\x9f\x85\x40\xde\x3d\xe4\x53\xaf\xe3\x9a\xdc\x34\xf0\xb5\x7a\xae\xb8\x9e\x65\xb4\x54\x48\xb8\xda\x03\x46\xb7\x3e\xed\xea\x63\xfa\xd3\x6a\x93\xc3\xfa\xf1\x51\xb5\x9f\x3f\x49\xc9\x16\x7f\xf7\xba\xda\x2d\xc0\x85\x9c\x59\x85\x65\x2d\x68\xa6\x85\x81\xea\xad\x99\x92\xf6\x6e\x96\x7d\x61\xe8\xd8\x07\x10\x3b\xa9\x4e\x3e\x0a\xa6\xf4\x84\xcf\x4a\x20\xdf\x3b\x47\x64\x39\xc2\x74\xff\xc1\x10\xa6\x0d\x58\xa0\x9c\x1d\x63\xf9\x4d\x4b\x20\x7a\x46\x93\xc2\xd6\x92\x64\x54\x6b\x3e\x9a\x93\x94\x8f\x20\x0c\xc1\x14\xf1\x31\x10\xbe\x1c\x00\x80\xcb\x40\xd1\xb5\x26\x8e\x52\x1a\xdc\x7e\x52\x92\x76\x8f\xad\x77\x0e\x27\x1f\xe8\xcd\xd3\x18\x86\x00\x4a\x0e\x2d\xa4\x6d\xae\x59\x15\x69\xd7\x90\x7b\x37\x32\x17\x78\xbe\xbf\x81\xf9\xf4\xc2\xed\x72\x9b\x96\xa6\x01\xaf\xe4\x9d\xd5\xbd\x3f\x67\x19\xdb\x4b\x44\xd4\x53\x10\xc2\xd2\xb5\x2e\xb0\xcc\x9e\x6d\xff\x77\x1b\xcf\x16\x31\x63\x0d\x89\xc3\x7b\xd8\xef\xaf\x1c\x79\xd4\x30\xba\x0f\x6c\x1d\x77\xe8\x4a\x5a\xdc\xea\x5c\x35\x31\xc7\x1d\x16\x7b\x6f\xe1\x86\x4f\x3c\xa1\xa6\xbd\xbe\x65\x46\x7b\x43\x48\x44\xe9\x28\x64\xbb\x73\x7a\xec\x33\x8d\x8a\xbc\x9d\x0d\x36\xfc\x85\x04\xc2\xb9\xd1\xdd\x38\x55\xef\xe9\xd8\xe1\xea\xed\xda\x84\xde\x8a\xf1\x6e\x11\x42\xe0\xda\x58\x7b\x07\x1a\x5b\xd8\x87\xfc\xf0\xc4\x6a\x47\x75\x69\x0f\xce\xb6\xf5\x8c\x54\x75\xc0\x6c\xbb\xc7\x87\x66\xae\x8a\xfa\x60\xa6\xd8\x88\x7f\xd9\xca\x21\x73\x0d\x9f\x3a\x89\xcc\xce\x5e\x8e\x46\x99\xa4\x76\x19\x11\x5d\xd4\x2a\x08\x50\xa5\xbf\x10\x90\xfd\x02\x3c\x2a\x6e\x0c\x13\x7d\x01\xf8\x65\xfa\x4f\xa7\x27\x27\xc3\x3c\xb9\x67\xe6\xe4\x9e\xcd\xa1\x4a\x76\xf4\xd3\x56\x49\x80\x4c\x63\xdf\x9a\x19\xc3\xc5\x58\x93\x19\x26\x1f\x3a\x50\xcd\xca\x58\xbf\xe7\x2d\xd6\x22\xef\x32\x39\xd4\x47\xe4\x36\x99\xb0\x29\x3d\xc2\xdd\x85\xe7\x50\x4e\xa6\xf5\xb6\xd5\x17\xb7\x8c\x91\x89\x31\x33\x7d\x7a\x72\x32\xe6\x66\x92\x0f\xad\xce\x83\xee\x65\xa9\xc6\xf8\x8f\x13\xae\x75\xce\xf4\xc9\x4f\x3f\xfe\x08\xcb\x03\xf4\x30\xa4\xc9\xfd\x58\x81\x11\x6a\x51\xf1\x29\x6d\xf9\xed\x22\x20\xf2\xe6\xf8\x50\x4a\x8a\x01\xfb\x32\x53\x4c\xd7\x95\x6c\x5a\x37\x65\x54\x93\xf6\xe7\x5b\xa2\xe7\xc2\xd0\x2f\xa7\xe4\x23\xd6\xd7\x22\x3f\xcb\x5c\x69\x72\x4e\xe7\xc7\x72\x74\x3c\x95\xc2\x4c\xc8\x47\xf8\x5f\xf7\xd3\x23\x63\xf7\xe4\x57\x46\x95\xdb\x5f\xbc\xad\x02\x2a\x1c\x98\xdf\x54\x2e\xb4\x2b\xdc\xf5\xe3\xbf\xfb\xca\x5d\xa7\xe4\x87\x93\x1f\xff\x9d\xfc\x01\xfe\xff\xff\x47\xfe\xd0\x04\x76\xb8\x51\x9a\x4e\x51\x55\xad\xb6\x35\x58\xa9\x2d\x30\xa8\xcf\x94\x2c\x76\xaa\xb6\xe5\x7b\x9e\xdc\xcb\xd1\x68\x60\xf8\x94\x61\x54\xd0\x80\xaa\x05\x50\xc6\x2d\x13\x90\xb9\xc3\xcd\xc5\xca\x1f\x05\xde\x93\xeb\x14\x43\x74\xfd\x71\xd3\x79\x81\x6d\xfa\x88\x65\x71\x23\xbc\x58\xae\xe1\x2b\x96\xda\x53\xb1\x89\xe1\xd0\x1b\x2b\x17\x51\xf9\x8b\x60\xef\x18\x05\x3a\x18\xeb\x63\x17\x93\x5c\x55\xd1\x6c\xd1\xf7\xf5\x8d\x79\x3b\x60\x82\x4f\xea\xe9\xb8\x95\x6a\x27\x51\xea\x9e\x2d\xf8\x41\x37\xba\x92\x3d\xc4\x69\x0c\x26\x0e\xa1\x9d\x52\x85\x2c\x7e\x8c\x67\x72\x90\xa0\x7d\xd1\xbb\x3a\xbf\xfa\xfe\x9e\x1a\x25\xc7\x54\xbc\x3d\x25\xed\x34\x75\x95\xd4\xed\x3b\x3c\x45\xea\x82\xb8\x29\x12\x97\x45\x16\x76\xe1\x6a\xef\xd8\x58\x2f\xe5\x0a\xed\xcb\xeb\x9d\x77\xbb\x7c\xe7\xe1\x93\x7a\x66\x59\xc6\x71\x0d\x1d\x14\xb0\x89\x30\x57\x7b\xbb\x59\x6e\xb8\x38\xdf\x6d\x8a\xc3\xdf\xce\x58\xc2\x99\xc6\xa6\xc1\xef\x01\x31\x1a\xc2\x47\xdf\xb8\xa8\xe1\xda\x43\x05\x29\x5f\xfb\x48\xe5\x5c\x80\x6e\xd9\x81\x52\x3e\x83\x76\x5f\xf0\x06\x8f\x67\x54\xae\x7d\x4b\x14\xb5\x6c\x63\xcb\xec\x57\x57\xac\x3f\xae\x31\x6e\x05\x85\xe3\x11\x4d\xec\xea\x85\xa4\x2a\x0c\x65\x8e\x59\x55\xdd\x3a\xf6\xa8\xbe\xdf\xaf\x31\x7c\x67\x70\x51\x9e\x16\x60\x7c\x48\x8d\x2e\xe2\x88\x2f\x64\x90\x19\xaa\xef\x9b\xd2\x34\x36\x2e\xf4\x66\x97\xc2\x67\x30\x2d\x1b\x9f\x8f\xb0\x64\xb1\xac\x06\xc0\x34\x56\x41\x8c\x40\x1b\x7c\xf8\x0e\x16\x81\xe1\x19\x4b\xab\xd9\xb2\xd5\xf1\xaf\x22\x03\xf4\xe8\x44\xf6\x5a\xc8\xc7\x9c\x5a\xf5\x15\x9c\x8e\x53\x2a\xe6\x78\x90\xec\x85\x45\xf5\xbd\x0e\x08\xb7\x44\x4f\x69\x96\x1d\x11\xc5\x72\x28\xa0\x7e\x44\x34\xcb\x46\xc7\x1e\x6c\x27\x25\x99\x1c\xf3\x84\x66\x64\x98\xc9\xe4\x5e\xf7\x85\xbd\x41\xc4\x18\x2f\xbe\x99\x92\x09\xd3\x3a\xba\x72\x8b\xe8\xcb\x99\x92\x69\x9e\x60\xbd\x36\x2c\x4d\xcb\xb5\xe1\x49\xa5\x48\x97\xe5\x88\xe0\x2f\xb5\xba\x49\x22\x11\x94\x17\x86\x6b\x45\x00\x86\xc9\x9a\xb9\xaf\x61\x0f\x60\x22\x34\xe3\x7f\x87\xfc\x00\xf4\x22\x36\x51\xef\x1e\x92\xce\xfc\xf6\x0c\x4c\xf9\x34\xac\xa0\xe7\x33\xf7\x19\x9c\xa1\x65\x14\x73\x53\x26\xe7\x40\x0d\x81\xcc\x03\xe6\x87\x27\x8a\xc2\x47\xea\x71\x55\xf0\x15\xaf\xe8\xbd\xb0\xdc\x24\x18\x72\x43\x46\xd2\x2a\x9a\x3e\xc3\x32\x61\x0e\x5d\x2e\x32\x84\x43\xeb\xbe\x90\x92\x83\xdb\xb4\x57\xc4\x83\x25\x12\xbf\x3c\x76\xed\xed\x35\x72\x14\x6a\x77\x51\xed\x5c\xa4\xc7\x01\x92\xc6\xf2\xc3\xbe\x00\x64\x66\xdb\x49\xa5\x10\xd4\x22\x45\xbd\xe0\x7a\x5d\xfb\x61\x8e\x1b\x96\xed\xf2\x8b\xbc\x09\x91\x97\xe9\x16\x12\x81\x36\x64\x76\xa5\xb8\x2f\x55\x17\xad\x8b\xd4\x06\x4f\x1f\x78\x81\x30\x1e\x75\xd4\xb8\xb7\x5b\x5b\x0b\x2b\xa3\x5a\x08\x63\xe7\x23\x24\x32\x18\x1b\x84\xa0\xb9\x32\xdf\x4d\x23\xfa\x2a\xd9\xb3\xcb\x36\xf2\x9a\x1a\xac\xd5\xcc\xa6\xd2\x20\xae\x2e\x42\xdc\x7a\x33\x09\x22\xe7\x0e\x33\x39\x84\x7b\x05\xd0\x6f\x7d\x64\x6d\x14\x7a\x87\xf3\x66\x29\xf9\x3e\xba\x26\x42\xb4\xfe\xdb\xa6\x80\xc8\xfd\xa5\xf0\x56\x6d\x2b\x8d\x89\xbc\x65\x1c\xcb\x16\xb9\xae\xa4\x87\x44\xb3\x1a\x51\xcb\xb9\x9b\x62\x97\x36\x4b\xfb\x2d\xed\xfe\x1e\xd2\x7e\x2b\xd3\x68\x70\xad\xcb\xf1\x93\x06\xda\xda\x49\x5d\xc8\xf5\xf5\x48\xcc\xbc\x43\xf9\xa3\xb4\x39\x9e\xcc\xe6\x75\x5b\xf4\xb2\x52\x9a\x2b\x38\xa8\x5f\x37\xa5\xb9\x32\x98\x97\x9c\xd2\x5c\x19\xea\xcb\x4d\x69\xae\x19\xe8\x1a\x29\xcd\xe8\xf6\x1a\x58\xa2\x5e\x8f\x29\x40\xd8\xc9\x30\x1f\xdd\xc2\x6d\xb2\x74\x8c\xae\x0a\x10\x32\x67\x2f\xe7\x38\x24\x09\x18\xad\x0b\x34\x6c\xf2\x23\x53\xbd\x13\xed\x05\x8f\x01\xd7\xa8\x62\xce\x32\x2a\xca\x4c\x15\xaa\x69\x28\x96\x58\xf2\x43\x46\x55\x14\x75\x3b\x72\x46\x13\x3b\x0a\x34\xf2\x25\x74\xe6\x62\xad\x9b\xb0\xd7\x5e\x4e\x88\xea\x66\xd9\xe2\x90\xd4\x5b\x62\xf5\x6b\x65\xf6\x05\x5c\x12\x8a\x36\xf7\x89\x7c\x74\xa2\x0d\x90\x9f\x2b\x9c\xb5\xa1\xa4\x1d\xe7\x9b\x57\x68\x7a\xcd\x7c\xf3\xd2\x44\x0e\xf9\xe6\xf5\x1b\xfc\x62\xf3\xcd\x2b\x7b\xbe\x5e\xbe\x79\xdd\x96\x6f\xe1\xea\x2d\x35\xf3\xcd\xe4\x9b\x57\x56\xf4\x25\xe7\x9b\x57\x86\x7a\xc8\x37\x7f\x92\xd9\x3c\x55\xbe\xf9\x6a\x06\x50\x9b\x51\x5d\x7f\xea\x36\xcb\xa8\xae\x95\xbd\x9b\xcf\xf6\xae\x89\x4c\x70\xd3\x3f\x73\x46\x75\x69\x02\x87\x20\x8f\x1d\xeb\x32\x97\x49\xd0\x8d\x00\x6a\xc7\xb9\x24\xca\xea\x3d\xb4\x24\xa7\x1a\xf4\xc9\x3d\x50\xd4\xd3\x86\x07\x81\x09\x78\x5d\x95\xb7\x5d\x5a\x07\xed\x10\x15\xac\x68\xe2\x13\x18\x51\x3a\x8e\x9d\x5f\x07\x0a\xdc\xd8\x64\xd8\xb0\xc8\xc1\x74\x8c\x11\xff\x0d\x24\x57\x53\x6b\x62\x07\x02\x74\x89\x60\xdb\x56\xd9\x00\xdb\x6b\xbd\x35\x07\xea\xc1\xec\xa7\xd9\xdf\xc5\xff\x6d\x5c\x90\x5d\xab\x59\x27\xb3\x7c\x9b\x8c\x90\xf1\x76\x9f\x4d\xd9\x54\xaa\x55\xbe\xff\xda\x2f\xb5\x91\x8a\x8e\x57\x69\x9b\xeb\xae\xde\xae\xab\xe6\x4b\xf8\x6c\x66\x5c\xf4\x30\x01\xcb\xad\x1d\xbe\xdc\x77\xec\x7e\x02\x7d\xa1\xd6\xc1\x19\xfc\xcb\x5b\xba\x30\x1b\xb2\xb9\x17\x3b\x04\xdf\x86\x66\xea\x38\x16\x8f\x4a\x4e\x85\xc5\x11\x94\xd6\xdd\x0b\xcf\x3b\x2c\x7b\xae\x1a\x03\x6c\xd6\x31\x37\x60\x0d\x39\x2b\x99\xc7\x88\x9e\x55\x4a\x1b\xce\x6b\x82\xb2\xd7\xb3\x67\x71\x61\xfe\xfc\x6f\x1b\x79\x65\xac\x7c\xe9\xd6\x6d\xc4\x33\x46\x68\x92\x30\x8d\x16\x10\x17\x80\x85\x15\x55\x72\x95\xed\xb2\xab\x5c\x8c\x61\xde\x56\x98\x8c\xca\x3e\x07\xe2\xc1\x3b\x63\xa2\x64\x3e\x9e\x78\x0d\xd8\x52\xa1\x9d\x5a\xdd\x5e\x7e\x42\xbf\xf9\x2e\x7b\xf9\x2e\xe7\xd9\x76\xf6\x85\x5b\xa4\x3a\x47\x93\x1f\xba\x3d\xa2\x27\x81\xfe\x87\xd0\x6c\xed\xc6\x2e\x0e\x7a\xfd\x3e\xdd\xb7\xc1\x9a\x06\xdd\x1c\xf9\x20\xa1\x91\xcc\x32\xb0\x07\x69\x36\x7d\x68\xaa\xfa\x02\x13\xee\xf1\x2d\xeb\x6d\xc0\xd7\x60\x55\xd6\x86\x4e\x67\x6b\xa1\x8b\x5c\xa3\x7c\xa0\x89\x1f\x7d\xd5\xd9\x82\x91\x10\x52\x30\x51\x67\x21\xf8\xbc\x88\x9f\xf5\xca\x5c\xae\x3e\x3e\x62\x6f\x31\x29\x7e\x49\x9e\x39\x2e\xa5\x6e\x1e\x1b\xb0\x80\x52\x74\x66\xc1\xe3\xbd\xa7\x10\x45\x4f\xc0\xd8\xe8\x8b\x76\x29\x8e\xd3\x03\x73\x0f\xe7\x45\x3c\x18\xca\x6f\x31\x27\x01\xb8\x22\xa7\xa2\x1a\xe9\x14\x57\x90\x35\x31\x79\x1e\x23\x56\x7c\x54\x0a\x84\xb2\xb1\xf4\x98\x26\xf3\x24\xe3\x49\xa4\x77\x8c\x15\x9d\x4d\xea\xd8\xcd\x62\x69\xbf\x97\x96\xd7\xf6\xad\x27\x38\xae\x59\x0c\x74\x69\x30\x5e\x5c\x4e\xf3\x55\x27\x5e\x2e\x92\xe3\x21\xe7\x72\x03\x92\xdc\x6d\x3c\x7b\xa7\xc4\xd7\x94\x02\xda\x4c\x79\x5f\x39\xdd\x6e\x71\x60\x5f\x33\xf1\xb3\xe6\xbe\xd8\x6e\x75\xbf\x6e\xba\xe7\x5a\xd3\x68\xda\xd7\x75\x32\x3d\x8f\xe2\x7a\xc8\xe1\xde\x5f\x91\xf7\xd9\xbc\x4a\x2f\x84\x06\xf7\x19\x81\xba\x19\x86\x6c\x1c\x85\xba\x89\xa8\xb8\x59\x40\x6a\xd8\xa8\xd7\x15\x94\x5a\x80\xd6\x6e\x17\x98\xda\x8e\x2a\x91\x4e\x64\x06\x20\x99\xa5\xd5\x0a\x1d\x84\xd8\xb6\xb0\x40\x7e\x33\xac\xea\x88\xa2\x6b\x81\xb6\xb8\x2c\xfc\x34\x6c\xe2\xb7\x11\x82\xba\x42\x1f\xda\x30\x0c\x35\x5e\xd4\xdd\x42\x51\x77\xd4\x6f\x36\x0b\x47\xad\x74\xb6\x74\xbf\xb7\xf0\xab\x2f\x20\x5b\x1e\xa2\x32\x42\x54\x46\xfd\xda\xbc\xc4\xc8\x8c\xa2\x26\xda\x86\xd1\x19\x4d\xdb\xbf\x0f\x4a\xda\x63\x94\xc6\x57\x8e\x7d\x58\x37\xec\xe1\xeb\x06\x93\xac\x19\x47\x72\x88\xcd\xf8\x36\x62\x33\x9a\xcf\xdb\x46\xf1\x19\x2b\x32\xfc\x7c\x2f\xbb\x3a\xd1\x43\xd6\xd9\x93\x3a\xd2\x83\x0d\x38\xfa\x62\x4d\x67\x7a\x91\x16\x77\x70\xa8\x3f\xa9\x43\xbd\x66\xa1\x57\x3b\xd5\x4b\xc2\xdb\xb3\x7a\x42\xab\xa0\xe9\x4f\xe9\x0d\x5d\x25\xf0\xe6\xc3\xc1\x93\x9f\xa3\xda\x39\xaf\x7b\x9c\x3e\x87\xbd\xf5\xa5\x33\x09\x9b\x0e\x59\x9a\x82\x42\x6c\xa4\x03\x2c\x2d\x48\x40\x30\x24\x56\xcb\x49\xa9\xb6\x94\x4b\xa1\x8a\x3c\x4f\x59\x54\x44\xa0\x90\x6f\x30\x46\xbd\x2f\x60\x7f\xb3\x8c\x29\xaf\x4f\x29\xf2\xbd\xe6\x22\x61\xb1\x8e\xa5\x48\x2a\x99\x16\xdf\x19\xac\x0e\x4b\xc5\x9c\xdc\x0b\xf9\x98\xb1\x74\x0c\x3b\x54\x1d\xcc\x31\xe1\xec\x88\x70\x13\x3e\x53\x8c\x26\x13\xcb\x2e\xfb\x76\xec\xe0\x72\x40\x41\x8c\xb9\x6f\x23\x68\xde\xd0\xcc\xdb\x16\x21\x5d\x41\x46\x34\x31\x47\x44\xe7\xc3\xa2\xfd\x54\x22\xd6\xea\x03\x13\xf1\xc4\x8b\x46\x9e\xcc\x13\x5e\xeb\xf9\x6e\xd0\x2c\x2c\x01\xb4\x33\x4e\x77\x72\x5a\x3c\xd0\x5d\x12\xe1\x3f\xe6\xda\x10\xb0\x95\x13\x29\xc2\x61\x72\x29\x3d\x01\xf4\x03\xb0\x2a\x11\x40\x63\x49\xb9\x08\x5a\x99\xca\xa6\x63\x29\x3c\x4c\x0e\x22\xd3\xa9\xab\xd0\x2e\x2e\x77\x2a\x1f\x85\x36\x8a\xd1\xa9\xab\x05\x61\x39\x31\x98\x62\xd1\xbf\xe4\xea\x12\xc3\x0d\xbc\xc9\x16\x5f\x70\x71\x6f\x77\xb7\x80\x39\x01\xe0\x60\xe8\xb9\x66\xd3\xde\x71\x41\x4b\xd1\x2a\x5b\xec\x5a\x96\x6f\xe4\xef\x8d\x0a\x6a\xcc\x9b\x10\x66\x0c\x5d\x05\xfa\xb2\x89\x51\x45\x03\x5a\x32\xb1\xdd\x11\x60\x75\x08\xab\x4a\x89\xa1\x80\x6c\x34\x61\xd9\x2c\x82\x2a\x9d\x51\x65\x42\x45\x12\x87\x7d\x90\xc8\xe9\x34\x17\x00\x57\xe1\xf4\xb4\x47\x97\xe4\xee\x6c\x76\x45\xe3\xad\xbe\xe8\x9a\xef\xa0\x54\x91\x14\xe3\x6c\x4e\x68\xfa\xc0\x75\x01\x39\x93\x48\xa1\xf3\x29\x53\x15\x20\x6f\x4c\x12\x21\xd4\xd3\x8a\x1d\x9b\x15\xbc\x1c\x74\x87\xcf\xb4\x1a\x93\x21\x1b\xd9\x4b\x77\x46\x95\xf6\xf6\xa1\x1a\xdb\x8e\xdb\xdc\xd4\xae\xd5\x57\x3b\x93\x9f\xe2\x63\x47\xa6\xc5\x09\xa5\x4e\xdf\x38\xa9\x9e\xcf\xa8\x54\x49\x53\xec\xca\xc2\xa4\xc8\xf2\x8b\xc9\xad\xc2\xf9\xaa\xf4\x97\x73\x5f\x17\x58\xc3\xa1\xb1\xfd\x78\x81\x06\x07\xb7\x91\x25\xaf\x32\x41\x37\x6a\x34\xcf\xc4\x67\x93\x71\xb8\x14\xb4\xa1\x86\x27\xbe\xec\x4a\x28\x2a\x85\x5f\x37\x6f\xed\xae\xd5\x7e\x74\x42\xb3\xc5\x1d\x6e\x5e\xcb\x5b\x7c\x7f\x39\xef\x73\xc7\x0d\xdb\x5e\x1a\x87\x94\xc8\x2c\xdb\x04\x55\xa6\x32\xf3\xb3\xe2\xf3\xe5\x23\x2a\xfa\xb1\x1b\xe0\xf7\x02\x4e\x0d\x22\xe1\xd0\xcc\x49\x16\xda\xb8\x5d\x8a\x5f\x42\x1e\x3a\x27\x22\x9f\x0e\x99\xea\x0b\x39\x02\xb0\xa1\xac\x49\x5b\x9e\x29\x39\xe5\x9b\xa4\xe5\x22\x5c\xdd\x8d\x77\xc4\xad\xb0\x34\x7a\x77\x1d\x00\xc2\x23\x79\xb9\x1e\xb1\xa6\xb8\x40\x39\x63\xc9\x19\x9a\xd2\x85\xe2\x4e\x6b\x2d\xf8\x2a\xe5\xb7\x4d\xa6\x68\x56\x70\xab\xa7\xb1\xea\xc0\x3d\x83\x72\xf1\x34\x7b\xa4\xf3\x22\x5a\x6b\x93\xe3\x54\xc4\x43\xb9\xf3\x42\x3d\x95\x45\x27\x26\x38\x32\x71\xbf\x70\x15\xd6\x39\x41\x67\x75\x64\xb8\xf1\x59\xf2\x73\x7e\x4a\x21\x3b\x3e\xf6\xb1\x7c\xbd\xc9\x6d\x58\x3e\x0c\x51\x8b\x04\x86\xb3\x7c\xa9\x3e\x96\x28\x67\xef\x6b\x54\x69\x87\xa0\x2e\xe7\xfd\x18\xd7\xf5\xad\x3e\xc3\x9a\x39\xb2\x5e\x6b\xb1\x76\x0c\x00\xdd\x2c\xd5\xd3\xf7\xb8\xbc\xec\xf0\x26\xb5\xcd\x57\xeb\x10\x23\x2b\xbb\xb8\x7a\x14\x01\x13\xd2\xc5\x15\x8c\x78\xc6\x74\x8b\x74\x6b\xf4\x09\x90\x72\xbc\x54\x05\xe0\x0e\xe0\xa5\xf2\xf2\x4e\xae\x78\x04\x8c\xe9\xa5\x1a\xc2\x5d\x29\xa5\xc2\xe4\xa0\x98\x1d\x33\x10\x30\x48\xf2\x13\xab\xe2\x4d\xb0\x01\x28\x5a\x62\xc5\x4b\x03\xd6\x33\xcb\x0b\xb8\x2b\x78\x82\x65\xe7\xc2\x07\x56\xc6\x36\x4c\xd1\xc4\xf8\x02\x27\x6e\x54\x0d\x5b\xba\x0f\xdc\xaf\xf5\xe3\x27\x7c\xaf\x3d\xfb\xc5\xe2\xde\xd4\x8e\xb0\x57\x6e\x7d\xe3\xd1\x05\xb9\x7c\x73\xc7\xcb\x7b\xf8\xd4\x1b\x93\x28\x19\x29\x06\xf6\xc6\x69\x08\xcc\x15\x29\x53\xda\x48\x09\x37\xd4\xed\xf9\x2f\x27\x77\x5d\xc2\x4c\x02\xd5\x00\xfa\x22\xd1\x0f\x47\x56\xa0\xfd\x2d\x67\xc6\xfe\xdc\x04\x41\x37\x65\x42\x03\x27\xe0\xeb\x56\x19\xf3\x0b\x63\xff\x7b\x5e\xfe\x7e\x09\xc9\x87\x89\x85\xda\x32\x96\x76\x43\x71\x19\x4b\xa6\x80\x45\x82\x4b\xab\x6b\x28\x06\x8b\x01\x76\xea\xd0\x44\xb7\xf0\xd4\x8b\xbf\xe5\x62\x43\x31\xe9\xac\xf8\x28\x1a\x45\x83\x14\x36\x9d\x51\xc5\x6b\xd2\xf3\x97\x87\x00\xe0\x37\xb5\xad\xaf\x62\x22\x7e\x5d\x29\x71\x45\x15\x49\x01\xbc\x4a\x8c\x62\x0c\x58\x48\xa0\x27\x77\xd7\xbb\x70\xde\x30\xb1\xe8\xa3\x56\x5f\x7c\xf4\xf6\xcf\xe2\xd7\x50\xff\x06\xe3\x3d\x58\x4a\x72\xd0\x99\xca\xad\x60\xd9\x5a\xae\xc3\x0f\x80\x44\xa3\xf3\xcc\x20\x30\xe0\x08\x0a\x25\xfa\x81\xe2\x93\x3a\x2e\xa1\xa8\x48\x26\x97\x72\xb7\xba\x58\x7c\x34\x60\xd9\x26\xb2\x63\x77\xd4\xc9\xb4\xa5\xef\xe4\xbe\xe1\x74\xfe\xd1\x03\x8a\x6e\xb0\x41\xc5\x64\x40\x72\xf3\xf0\x68\xa8\x95\xa0\x9d\x2e\x43\x98\x41\x46\xc0\xc8\x56\x0d\xdc\xc0\x40\x57\xbb\x8b\x4e\xb6\xf6\x55\x3b\x95\xcc\x88\x37\xcb\x0d\xa1\x17\x42\x4d\x5f\xa8\x5c\x00\x9e\x48\xb0\x9f\x53\xa2\x99\x2f\x0d\x9a\x48\x81\x32\x80\x33\x9e\x8c\x2d\x9b\xb0\x92\x1f\x38\x51\xa4\x00\x8d\x4a\xe6\xda\xf2\x10\x3a\x65\xc6\x5e\x50\xdf\x03\x8e\x2e\x7a\x30\x8e\xc8\x4c\xf1\xa9\xe1\x0f\x2c\x80\x00\xc5\x3b\x77\x46\x0d\xcd\xe4\xb8\xad\x0c\x1f\xd1\xc4\xf4\xe8\x4e\x2a\x33\x75\xcd\x6c\xeb\xc5\xf6\xc3\x20\xdd\x73\xbb\xf6\x45\x0d\x65\xa8\xe7\x53\x7b\x82\x37\xad\xf4\x53\x30\x6e\x40\xf7\x4b\x10\x0f\x4d\x07\x13\x03\xcd\x8d\x9c\x5a\x85\x94\x66\xd9\x1c\x70\xce\xec\x93\x09\xd5\x13\xbf\xcf\x08\x8e\xb6\xce\xd5\xe4\x16\xf7\x8c\x26\x13\x76\x0b\xb5\x11\xeb\x16\xb7\x32\xca\x37\x4c\xe4\xd3\x37\xa7\xe4\xff\x16\x73\x3c\x6b\x9f\xfd\xdc\x19\x9c\x77\x6f\xdb\xef\x2e\x3a\xe7\xd1\x7c\xdc\x93\x8f\xdd\xdb\xdb\xc5\x5f\x7f\xee\xf6\x16\x7f\xbc\xbe\xba\xbe\xbb\x68\xf7\xea\x5a\xb9\xb8\xba\xfa\xe5\xee\x7a\xf0\xbe\xdd\xbd\xb8\xbb\xe9\xd4\x7c\x7a\xd7\x0b\x0f\xdd\xb3\xff\x8e\xce\x10\xe4\xdc\xd9\xf9\x34\x8c\xb6\x7a\xcc\x8e\x49\xf9\xc5\x53\x72\xe7\x3c\x31\xae\x82\xac\xb7\x19\x51\x08\xe2\x85\xb8\xa2\x14\x8d\x49\x69\x5f\x10\xff\xb9\x9d\x7b\xd3\xa7\xe8\x22\x4a\x26\x8c\x64\x52\xde\xe7\x33\xc7\xc0\x30\xda\x4c\x48\x34\xc8\x30\x1d\xb5\xf6\x73\xb7\x77\x1a\x3c\x42\x8b\x8d\x45\xc9\x35\x9e\xd4\x61\x5c\xd4\x33\x4d\xac\xc9\xab\xd8\x03\x1c\xc9\xe0\x29\x8c\x7a\x08\x1b\xb0\xac\x1f\x6c\x8d\x0a\x53\xe9\x26\x4d\x1d\x34\xb2\x9f\x58\xd4\x70\x79\xfb\x96\xad\x66\x58\x0e\x84\xd7\x22\x43\x96\xd0\x1c\x1d\x69\xf6\x36\x52\x4a\xaa\x78\xc0\xc5\xb6\xef\xd8\xe8\x9b\x45\x21\xa3\x8c\x83\x8b\xf5\x43\xed\x27\xd1\xc9\xb1\xea\x32\xa8\xd2\x1e\xc0\x66\x32\x47\xdb\x94\x2f\xc5\x36\x1d\x32\xf4\x97\x40\xfa\x7d\x5c\xcc\x9d\x70\x70\xcc\x51\x43\x1e\x19\x44\x1c\xe6\x0e\xc0\x0b\xf5\x63\x7b\x00\xb5\x2f\x3a\xad\x03\xa4\x61\x29\x12\xb1\x91\x63\xee\x43\x28\xb6\xdf\x6b\x56\xc7\x2d\x37\x0f\x1b\x2b\xe4\x36\x6c\x14\x58\xa8\xf7\x92\xc2\x88\x1b\xec\xfd\x9e\x65\xd7\xd8\x9d\x97\xc8\x40\x8b\xd7\xc6\x0a\x8e\x6e\xa0\x34\xf4\xea\xf1\xf8\x78\xeb\x12\x2c\xc1\x66\x89\x98\xc1\xc3\xbf\x72\xad\x7a\x32\xa5\x73\x4b\x1c\x10\x9e\xa0\xf3\xd9\x4c\x2a\x43\x1a\xda\x20\x70\xd0\x71\x7c\x70\x31\xb8\x79\x04\x0e\x05\x8d\x58\x29\x40\xd7\x40\xfe\x2c\x0d\xee\x0d\x03\x72\xeb\x5a\x1c\xfb\x38\xa7\x0b\x94\xb5\x00\x3f\x35\x2d\xa9\xbd\x25\x0a\xad\x13\x50\x77\x89\x26\x9a\xd9\x5b\x78\x5d\x9c\xc0\xba\xde\xaf\x7c\x0b\xb5\x5b\x9e\xb1\x91\x19\xd4\xfa\x52\x96\x98\x0d\x6d\x8b\xa2\x21\x15\x50\xf1\xf1\x64\x0f\x2d\xae\x2f\xc9\xff\xe4\x7c\x5d\x56\x7c\x8f\xb4\x78\x25\xa5\x41\x19\xb2\xd0\x33\x88\x5f\x4d\x30\x01\xb8\x4e\x11\x5b\xd8\x0a\x6a\x1c\x24\x35\x2b\x97\xdf\x0b\xf9\x28\x82\xbd\x5c\xb7\xfa\xa2\x43\x01\xee\x3a\x28\x0b\x2e\xf6\x00\x25\xf5\x95\x32\x7a\x09\x3f\xf7\x85\x24\x47\x17\x74\xef\x6a\x02\x64\x73\x52\x60\x24\x97\xbe\x5b\xe7\xf4\xa0\x2d\xd9\xcb\x69\x38\x61\x07\x0b\x6a\xd8\xcc\xd9\xbb\x71\x9e\x45\x50\x2d\xb8\x4c\x6d\x57\x2d\xf2\xd9\x5b\x67\x20\xb4\xa3\xc0\xf6\x36\x78\xe1\x64\x74\xee\xb3\x3f\xeb\x16\x76\x1f\x09\x95\xfb\x8e\xb7\x58\xbe\xc0\x21\x53\xa6\x66\x95\x4b\x4a\xb2\x10\x68\x35\xdd\x20\x66\xec\x2c\x7c\x74\xcb\x96\xc7\x80\xbe\x07\x9c\x50\xa8\x13\x9b\xc1\x0d\x6d\xf9\xe8\xff\xc0\xcd\x82\x44\x4a\x7b\x84\x72\x67\xe1\x8f\xfc\x92\xf6\xfc\x80\x5f\xcd\x4a\x01\x43\xc8\xb0\xc6\x92\xac\x2d\xd2\x06\xa4\x6b\xc0\x30\xb6\x57\xa1\x0f\xc8\xe1\x63\x21\x57\x85\x0d\x34\x10\x53\x12\x11\xd3\x6d\x33\x31\x69\xa0\xa6\x10\x29\xb0\x27\x8a\xda\x43\xca\x83\xe5\x2d\x74\x11\x9b\x61\xfd\x44\x87\x0d\x14\xec\xaf\x11\x82\xb3\x30\xdc\xe8\xc3\x7f\xd6\x0f\xfd\x43\x4e\x15\x15\x06\x02\x4b\x9c\xe0\xad\x58\x14\xad\xc8\xbe\x40\x04\x96\x40\x63\x2d\xfc\x14\x6f\xae\x77\xa4\x63\xf5\x5f\x9e\x1e\x11\xde\x62\xad\x23\x57\xa5\x46\xe7\xc3\xe2\xcd\x89\x95\x1c\xfa\x62\x21\x70\xbf\x45\xda\x99\x96\xee\x0b\x26\x92\x0c\x90\xe5\xa3\x18\x98\x40\xf9\xce\xf5\x33\x9c\x83\x7a\x01\x5b\x59\x34\x2f\xdd\x83\xe8\xc3\xbe\xa0\x1a\x3d\xcd\x19\x9c\xf4\xe2\xf7\xba\xca\x11\xa5\xe8\x83\x27\x04\xef\x59\xb8\x86\x9e\x6c\x93\x10\xb9\x71\xd9\x06\xc1\x1b\xb0\x31\x45\x42\x45\x5f\x04\x72\x26\xdf\x53\x93\x31\xaa\x0d\xf9\xf1\xed\x46\x01\x17\x7e\x7e\x05\x73\x75\xa7\xb7\x08\x2d\xf5\xe1\x6c\x4d\x85\x6f\x00\x58\x97\x50\x22\x58\x14\xa0\x7e\x64\xb7\xd9\x48\xf2\xc0\x75\x0e\x58\xfd\x51\x18\x3b\xa2\xad\x73\xa3\x3d\xae\x24\x2a\x4c\x0d\x6c\xc4\xc3\x1a\x38\x9f\xa4\x1b\x56\x0d\x61\x39\xdd\x89\xa3\x72\x06\x99\x64\x45\x60\xd9\x84\x9a\xbe\x70\x8c\xd5\xc7\x62\x44\xa0\xce\xed\x2c\x2b\x07\x73\x59\x01\x27\x65\xc2\x4e\x18\x2a\x0d\xb4\xc2\x02\x5d\x82\xf6\x15\xe2\x7f\xca\xc5\x86\xc2\x59\xb1\x8a\x5a\x5f\x84\x6c\xa0\xb8\xed\x5a\x61\xa7\xce\x04\xfc\x8c\x32\x70\x4d\xf7\x17\x58\xf2\x61\x0d\x59\xb8\xb9\x12\xd7\x12\x97\xc9\x82\xd9\x7d\x89\x68\xbc\xef\x0e\xd6\x97\x94\xeb\x4d\xd8\x70\xcb\x3e\xca\x1a\x8b\x78\xc3\xe6\x46\xa2\xc5\x2e\xfa\x77\x08\x44\x7b\x2e\xa7\x6c\x69\xe8\xdd\x14\xa2\xc4\x57\x33\xc1\x22\xea\xda\xb3\x0e\xb0\x45\xf3\x34\x8a\x1b\x8d\x82\xea\x20\x3c\xd8\xf3\x3d\xf7\x66\x83\x73\x74\xf6\xba\xa7\x7f\x54\xcc\xdf\x4f\x25\x44\x96\x2d\x4e\xbc\x59\xd6\x6b\xa7\x7f\xa3\x09\x13\xc9\x1c\x7b\xf2\x30\x30\x85\x1c\xd7\x73\x06\x27\x8f\x98\x41\xc1\xde\x5e\x2b\x1d\xba\xea\x2d\x2d\xd2\x81\x7b\xc6\x17\x73\xa1\x23\xef\x33\x88\x5e\xee\x0b\xab\x98\xd8\x2b\x5e\xe3\xa0\x7d\xfb\x65\x12\xaf\x3b\x01\x98\x2a\xb9\x93\xbb\x65\xba\x1a\x71\xab\x49\x99\xf0\x99\x9a\xd0\x06\xc0\x17\x91\xce\xf8\x94\xa4\x32\xb9\x67\xea\x44\xb1\x94\xeb\x53\x70\x7f\x9b\x46\xbf\xdb\xd4\x2a\xdb\x3b\x0b\x1a\xdb\xd6\x53\xc3\xfe\x5d\x44\xb1\x87\x77\x3e\x22\x7c\x04\xda\x84\xcf\x14\xc0\xf4\x01\x67\xdb\x26\x4c\x18\x35\x9f\x49\x2e\x4c\xb0\x64\x55\x16\xc2\x2b\x1a\x56\x66\x6b\x8a\xaf\x55\xfb\x08\x93\xd9\x72\xda\xbd\x09\xd3\xcc\xc7\x04\xe0\xa4\x8c\x24\xe8\x09\x41\x76\x31\xa3\x66\xa2\x21\xd7\xa1\xbc\x06\x4e\xe7\x82\x4f\xed\x0a\xd1\x19\x84\x14\xa0\x91\xa2\xf8\x28\x04\xf1\x6b\xc3\xb3\xac\x2f\x04\x63\xa9\xc6\xba\xff\xdf\xd5\xe6\xd4\xd8\x4f\x8f\x08\x4d\x53\xf2\x3f\xbf\x7f\x7f\xf1\x6b\xaf\x33\xe8\x5e\x82\xc5\xb9\x7b\xd1\x79\x7b\x14\x7e\xbc\xba\xeb\x85\x5f\xd1\xc0\xf2\xc0\x14\x99\xd2\x7b\xd0\xf0\x84\x46\xf1\x0f\x42\xdd\xe3\x91\xfa\x6c\x23\xfb\x44\x33\x1f\x3e\xea\xc4\x94\x90\x60\xec\xf6\x70\x05\x04\xc4\x06\xba\xef\x4d\xf8\x64\x39\x0d\x7a\xe2\x09\x5d\x78\x31\x70\xca\x84\xb1\x3c\xc6\x19\xfb\x0a\xd5\xb7\x20\x38\x26\xc6\x5c\x34\x05\xb9\x31\xf1\xf0\x94\x32\xfc\x2f\x6c\xfe\xc9\x6a\xd7\xd7\x94\xab\xb5\x69\xaf\x23\x1e\xb8\x92\x02\xa6\x16\xac\x5a\x45\xcd\x49\x66\xbc\xaf\x2d\x3a\x54\x1a\x65\x61\x08\xa3\x98\x35\x06\x52\x56\xaa\xdc\xbe\x8c\xe9\xb6\xd1\xf5\xcb\xbe\x18\xe5\xf3\xda\xb4\x63\x37\xf4\x81\xf2\x0c\x82\x60\xfd\x45\x53\xd0\x20\x96\x32\x3c\x25\x2c\xa3\x43\xa9\x20\x35\x06\xa3\x76\x7c\x13\x6e\xc1\xa0\xa8\x57\x68\xa8\xd5\x17\xe7\x6c\xa6\x58\x42\x81\x8b\xcd\xac\xe6\x02\x5c\xa8\x64\x43\x6b\x61\x1b\x84\xdb\x5b\x87\x36\x96\x55\x91\xea\xe9\xaa\x3b\x97\x2e\xaf\x6b\xa9\xd6\xb9\xfe\xed\x6b\xb0\x74\x72\x66\xf5\xb8\x0a\xe7\x75\x77\xf3\x88\x51\xac\x68\x80\x4e\x21\x67\xca\x77\x51\xa1\x59\x56\x82\xbf\xb5\x07\x47\xb7\x9c\x97\xbc\x78\x53\x0a\xf2\xcb\x5f\x34\x19\xe6\xa6\x2f\xca\x6d\x48\x01\x85\x6d\xdf\x51\x93\x4c\xde\xf6\xc5\x95\xd5\x32\x7f\xf9\x4b\x43\xd6\x74\x4a\x0d\x1d\xd4\x13\x65\xf3\x9a\x9c\x53\x43\x2f\x24\x4d\xb9\x18\xbb\xaa\xcd\xf5\x6b\xf1\xae\xd3\x6b\x9f\x12\x9f\x68\x19\xf2\x25\x8b\x5c\xfb\xa8\x21\x60\xc8\x30\x11\xcf\x45\x80\x95\x8b\xc0\xfa\x9d\x85\x0c\xa4\x27\x7b\x61\xf5\x05\x2c\x25\x72\x55\x6e\xc8\x4c\x3a\xac\x42\xab\x95\x49\xa2\x72\xe1\x2c\xd9\xce\x90\x68\x57\x07\xc8\x38\x6c\x86\x93\xc7\x40\x9e\x59\x64\xf6\x7d\x01\xfa\x79\xc8\x5e\xcb\x64\x42\x33\x08\x9b\x3b\x8e\x4c\x7a\x56\x6b\x97\x39\xe4\x20\x41\xbc\x8a\x98\x97\xa3\x5b\x3d\x92\x74\x21\x94\xc5\x1b\x05\xfa\x3f\xec\xa3\x73\xa5\x4e\xa5\xe5\x38\xad\xbe\xe8\x8e\x30\xaa\x2e\xc3\xd5\xb1\x1f\x32\x01\xde\x64\xbf\x2c\xf6\xa9\xe7\x47\x50\xe9\x05\xbd\x8a\x34\x01\xeb\xbd\x98\x43\x4c\x34\xe0\x9b\x49\x88\xce\x28\xb8\xb3\x23\xca\x85\x5d\x0c\x77\x62\xf4\x59\x5f\x60\x30\x5f\x69\x5f\xe2\xcc\xdf\xa8\x77\x29\x20\xd6\xb0\xb8\x2e\x83\x80\x31\x73\xb1\x87\x4e\xd6\x9f\x29\x76\xec\x0b\x02\xda\x5f\xa3\x35\xb5\x37\x6c\x8b\xdc\xc4\xea\x75\x2a\x93\x7c\xea\x71\x47\x20\x57\xcb\x05\xa9\xb9\x4b\x34\x50\x08\x5e\xec\xb5\x14\xff\xbb\xf8\xbf\xb5\xb2\xe9\xf5\x8e\x65\x64\x03\x55\x0d\x66\xe5\x96\x4a\xad\x71\x61\xd8\xb8\xea\xe0\xdb\x04\xb3\xf3\x12\x22\xdb\xad\x24\x0f\xce\x3f\x23\xad\xf6\x29\xc1\x0c\x8d\x29\x75\x32\xfd\x4e\x93\xee\xb5\x15\x52\xac\x52\x1a\x8e\x49\xae\x0d\x86\x68\x41\x9a\x0a\x7e\x8d\x61\xf2\x47\xe4\x07\xd2\xcf\x7f\xf8\xe1\x4f\x09\xf9\xe2\xff\xf1\xe7\x7f\xff\xf7\x3f\xfd\x79\x9b\x72\xc9\xd0\x6e\xb1\x46\x01\xd9\xb1\x2c\xb5\xc4\x3b\xb0\xc8\x4c\x76\xd8\x05\x77\x46\x9a\x96\xdf\x69\xec\x8d\x69\x4e\x75\x8f\xa3\x10\x1c\x3a\x76\x87\x50\xc7\x87\x87\x94\x4e\x4f\xe1\xea\xd7\xcc\x1c\x95\x0f\x71\x90\x47\x9d\xd0\xfd\x3f\x96\x00\x0d\x0c\x2c\x35\x6f\x17\x2a\xc4\xb3\x20\x01\xdb\x46\xc8\xf7\xce\x44\x67\xc0\xc5\xf7\xd6\xdf\x41\x32\x4b\x99\x72\x15\x76\xbc\x55\x2d\xd8\xfa\xe0\xfc\xb2\x2f\xb3\x4c\xba\x20\x0e\x4a\x34\x9b\x51\xb8\xe3\xed\x79\x6d\xf5\x45\xe7\x0b\xb5\xcc\xf5\xc8\x17\x42\xc3\xaa\xdd\xe0\x1b\x19\xd1\x84\x11\x94\xa6\xbf\xff\x72\x6a\x7f\x3b\x22\xf3\x53\x08\xc5\x3c\x22\x7f\x3f\x75\x19\xd0\x54\x99\x81\xfd\xe9\xad\x17\x87\x5d\x13\x30\x68\xae\x49\xff\xcd\xc9\x03\x55\xbe\xec\x3c\x02\x39\xbe\x71\xec\x2f\x80\xd4\xc6\x02\x74\x26\xe5\xbd\x0b\x54\x5d\xf8\xd2\xfd\xa7\x85\x04\x1e\x7c\x1b\xb8\xf9\x2e\xe6\xd8\x0a\x7b\xc7\xf0\x02\x23\xad\xd9\x90\xb4\xfe\xa6\xa5\x20\xad\x39\x9d\x66\xee\x57\xff\xd4\xc5\xd1\x52\x4d\x7c\xc9\x20\x1f\x46\x93\xcd\xd1\x9c\xf9\x2e\x93\x43\x98\xd7\x47\x3f\x57\x8c\x44\x85\x81\x16\x57\x44\x71\xab\xb8\x89\x38\x71\x07\xb3\xc2\xa1\xc8\x9e\x7d\x05\xee\xde\xba\x59\x7d\x09\x43\xfa\x2f\xf4\xdd\xc2\xa2\xf8\xf4\x35\xb4\xe0\x86\x30\x30\xdb\xe8\x17\xf2\xbd\x63\x42\x6f\xed\x45\xe0\xc2\x7e\x71\x19\xea\x3a\x98\x87\x0e\x7e\x8d\x3a\xe0\x82\x60\x42\xe2\x92\x2f\xff\x7e\xd2\x6a\xb5\xc2\xd7\x97\x76\x2a\xff\x87\x70\xa3\x59\x36\xc2\x96\xfc\x35\x33\xef\x8b\x8f\x56\xd3\x89\x2d\xcc\x05\xc4\x0a\x14\xbe\x4a\x64\x46\x8e\x0b\xab\x6b\x2a\x13\x4d\x7e\x6f\x65\xcf\x68\x29\xe1\x47\xab\x6c\xd5\x9f\x2a\x57\xff\xf0\x99\x8e\x95\xb3\x5a\x57\x0f\x56\x0c\xce\x10\xb4\x4f\xaa\x21\x42\xe9\x81\xa7\xb9\xa7\x05\x4b\x39\x27\x0e\xc0\x01\x4a\x13\x1a\xf6\xc5\xc0\xa3\x06\xa4\x8c\xda\x90\xf0\x7a\x09\x6e\x81\xe1\x16\x80\x19\x48\xd6\x0d\x0b\xe0\x50\x0c\x1c\x6f\xc0\x79\x1e\xc5\x2e\x0e\x7b\xbd\x88\x18\xcd\x4a\xe7\xd3\x29\x55\xf3\x93\xe2\xb4\x2d\x12\x67\x01\x6a\x08\x5c\x26\xf3\x0b\x00\x6e\xd6\xcc\x1d\x2d\x17\x69\x10\x55\x50\x9f\x84\x04\x02\x92\xb2\x04\x80\x85\x21\xe4\x0d\x61\xb5\x99\x48\x64\xea\xe8\xba\xc8\xbb\x2c\x8b\x15\xe1\x9d\x45\x81\xc2\x47\xad\xe8\xc2\x62\x26\x0c\x26\x63\xbb\x37\xfc\xc7\x0d\x0c\x5c\x0e\xb4\xb1\xac\x72\xbc\x81\x0b\xb3\x7b\x75\xeb\xbf\x59\xff\xda\x85\x75\x28\xcb\xd5\xd4\xab\x72\xde\x6c\xa0\xe8\x63\x71\x01\x43\xfc\x05\x9a\x50\xf2\x90\x95\x8a\x7f\x9f\xc9\x6b\x9e\xd9\x7b\x0b\x68\xbc\xd5\x17\xa5\x9f\x8f\x08\xcb\xf8\x94\x8b\x10\xfe\x86\xec\x5d\x8e\x50\xc4\xbd\xe7\xc6\x6e\x99\x4e\xef\x2d\x07\xf3\x09\xfe\x91\xde\xd3\x16\x73\x4f\x3a\xc1\x7b\xe4\xcc\x04\xb9\xb6\xe3\x2a\x14\x69\x2b\x71\xda\x26\x8e\x9d\xd4\xc8\x23\xc2\x83\xf3\xdb\x17\xb6\x35\x7f\x96\x8a\xb8\xdb\xa8\xbd\xa8\xb9\x63\x10\xd2\xb9\x4f\xc1\x83\x16\xa0\x8f\x52\xf0\x6c\x10\x52\x6b\x44\x94\x4e\xa5\xee\xe8\xe6\x19\x1b\x10\x65\x38\x10\x32\x65\x1b\x06\x1b\xd7\xd4\x75\x74\xa6\x62\xef\x61\x54\x0c\xb3\x6a\x80\x4f\x34\x56\xa5\xd3\x7a\x43\xf3\x69\x6d\x81\x54\xd7\x0e\xa0\xb3\x3f\x6e\x5b\xa4\xbe\xe0\x69\xd0\x8a\x57\x0a\xa2\x2c\xc8\xd2\xda\x97\x8b\xb8\xee\x24\xa1\xa7\xdb\x19\x90\x71\xee\x09\x2c\x7b\x88\x00\xa5\x64\xac\x64\x3e\x0b\xa9\xc2\x3e\x69\x0a\xb7\xc1\xdd\x68\x5d\x31\x92\xa7\x4e\xa6\xbe\xe0\xe2\x1e\xef\xc2\xa7\xda\xa3\x50\x2e\x35\xfa\xdd\x73\x30\x5c\xf1\x63\x57\x33\xdb\x8e\x5a\x1b\x9a\xdc\x23\xc4\xda\xb2\x72\xbb\x9b\x16\x0c\x2e\xee\xcb\x3c\xcb\x5c\xb7\x05\xfb\x2c\x2a\x0a\x3c\x70\x4a\x28\xb9\xbb\xe9\xd6\xf7\x7d\xcf\x17\xed\xed\xf5\xbc\xb3\x4c\x20\xf0\x3f\xbf\xf0\x8d\x22\xe3\x2a\x90\x80\xac\x44\xea\x41\xff\x6f\x02\x52\xaa\xf0\xee\x1d\x1d\x7c\x96\x07\x0d\xa6\x35\x94\x5a\x3f\xf9\xa2\xe3\x73\xf7\xf1\x47\xfb\x6d\xfd\x8e\x7c\x84\x94\x90\x90\x37\x3f\xa5\xc2\x4e\xd0\xf7\xda\x60\x20\x42\xb6\xb8\xd5\x90\xee\x66\x5b\x0d\x08\x7b\x5c\x2f\x02\xd5\x77\xe5\x5b\x79\x44\x8b\x11\xcd\x50\xdd\x32\x13\x90\xc3\x8f\xc8\x6d\x32\x61\x53\x0a\x51\x09\xd3\xb2\x3c\x0e\x72\xc9\xf7\x19\x55\x63\x94\x12\x34\x33\xfa\x6d\xcd\x0e\x17\xc1\xb9\x3b\xec\xf0\x16\x00\xcd\xb1\x85\x1e\x12\x07\x97\x71\x80\x30\xca\x32\x30\x4c\x60\x4e\xbe\x7f\x7f\x77\x58\x65\x15\x3f\x81\x1b\x53\x61\xcd\xf2\xd4\x8a\x62\xcd\x19\xf3\x3b\x62\x82\x5f\xd2\x69\xc8\x2e\xf5\xc0\xe0\x2e\x8b\x00\xc7\x36\x64\x00\x12\xd4\x3c\x86\x9d\x51\xc0\xe3\x21\x38\xd0\xe1\xa6\x11\xf4\x45\xdb\xbf\x12\x32\xd4\x40\xbe\x51\xe8\x57\x85\x38\x26\x8c\xda\x03\x19\x23\xaa\xb8\xeb\x26\xd7\x30\x89\x4d\x33\x81\xaa\x40\xe6\x56\xc6\x09\x10\x61\xa8\xdd\x79\x61\xd7\xcf\xa3\xa1\xe7\x87\xcd\x4b\x8f\xd4\x27\xf9\x27\xd5\xd2\x10\x75\x1d\xaf\x62\xbe\x9d\x90\x7d\xec\x1a\x8a\xab\x51\x60\xac\x53\x36\x2f\x22\x6b\xec\x8a\xa3\x5c\x5a\xe9\x6c\xf1\xb0\x9a\x9d\x98\x31\xa7\xd3\x81\x92\xd9\x2e\x7b\xe4\x9b\x28\xe9\x38\x90\xab\x61\xe5\xcd\xdf\x72\x9a\xa1\x3d\x56\x38\x72\xf4\xc3\x06\x81\xe1\xa7\x3f\x93\x36\xdc\x96\xe4\x23\xb0\x45\xf0\x44\x41\x6b\x46\x12\x3e\x9d\x31\xa5\xa5\x15\xc6\x1b\x36\xf9\xfe\x2f\x7a\xe0\xf0\x52\x07\x34\x49\x64\xbe\x88\x8d\xba\xc1\x4c\x6a\x5a\x8b\x27\x45\xc9\x7d\x3e\x64\x4a\x30\x03\x0e\x4e\x78\x8f\xf8\xf7\xd6\x1a\xae\xa4\xb9\x99\xfc\x34\x48\x32\xbe\x36\x88\x2b\x44\xc1\xb7\xed\x67\x67\xf8\xd5\xb2\x09\x94\xda\x2f\x0d\x5d\x10\x7c\x46\xf0\x59\x8b\xbc\xa3\xc9\x3d\x13\xa9\x2b\x92\x8d\x89\xa9\x70\x41\x01\xb7\x8c\x4c\x14\xe5\x89\xa1\xbe\x83\xed\xdb\x5b\xa8\x2f\xa6\xf4\xde\xde\x42\xec\x8b\x0b\x16\xb6\x6a\x86\xde\xe4\x68\x04\x7a\x58\xc8\xd0\xf7\x59\x94\x9a\x25\xb9\xb2\x6f\xe0\xf9\x30\x78\x3e\xc0\xa8\x90\x60\x99\x79\x42\x21\xc9\xff\x3b\x4d\xf2\x99\xd7\x7c\x41\xdb\xcd\xc0\x41\x80\x93\x84\xa2\x28\xdc\x4a\x83\x13\xd6\x17\x10\x74\xe5\x5b\x9c\x07\xae\x12\xfb\xa4\x82\x6f\xb4\xee\xf0\x8d\x30\xc5\x75\x37\x5b\x3a\xda\x10\xf6\x1e\x50\x66\x26\x4c\x80\x1a\xb6\x7e\xcb\x90\x27\xbc\xfe\xa6\x95\x82\xc7\x70\x16\x85\xd5\x20\x2c\x61\x2e\xb8\x83\x0d\x76\x86\xa2\x28\xae\xc3\xdb\x53\x8b\xef\xb9\x26\x9a\x1a\xae\x47\xbc\x56\x3d\x8d\x13\x8b\x77\x59\x75\xba\x59\x36\x73\x4d\x26\x73\x65\x2d\x42\x7c\x6a\x8b\xbc\xe7\x4a\x9b\x68\x4a\x46\x86\xbc\xe0\x26\x96\x60\x26\xac\x11\xd2\x6a\x1f\x9e\x5d\x3f\x83\xe8\xfd\xa5\x3e\xf2\x10\x8b\xdc\x22\xed\xc2\xc6\x85\x99\xd1\x68\xbd\x5a\x31\x23\x96\x69\xb6\x0d\xf1\xad\x65\x10\x00\x4f\x10\x10\x10\x01\x59\x45\xdb\xdf\x0b\x78\xbd\x30\xcc\x47\x48\xf7\xa1\xf7\xac\xa9\xfe\x3f\xab\xe8\xd9\x2b\x46\xd8\x29\xe5\x4a\xd6\x0d\xb1\x1d\xf4\x7d\x89\x2a\xff\x36\x03\x5c\xff\xd8\x15\xc9\xe8\x7c\x74\x62\x97\xdc\xca\xf9\xc9\xbd\x8b\x32\x1e\x01\x1d\xba\x74\xf6\xc7\x89\xd4\xf1\x39\xf3\xfb\x07\x9b\x69\x54\xce\x7c\x34\x31\x04\x69\x87\x05\x46\xf7\xac\x90\x71\xb6\x3b\x8c\x3a\x1c\x52\x8c\x42\x0a\xfb\x4d\x3c\x0b\x85\x65\x00\x5b\xa9\x6f\x6a\xf1\x34\xff\xf2\x17\x7d\x05\x27\x76\x1f\x39\x9b\x19\x1d\xb2\xec\x09\x40\x7c\xb6\x8c\xe8\x0a\xa1\x00\x38\x2e\xb0\xf8\xa6\x21\x47\x78\x26\x53\x52\x90\x57\x53\x44\x9a\x10\x12\x5d\xc1\x2f\x70\x5a\xd1\xe0\xd6\x9e\xdb\x2a\xca\xfe\x18\xb9\xaa\xb0\xd4\x1f\x02\x63\x44\x22\x97\xcb\xeb\x01\xe5\xd7\x5d\xff\x5c\x87\xfb\xa4\x9e\xc6\xae\x65\xfa\xbc\xe0\x47\x8b\x74\xbd\x46\xb8\x99\xae\x2b\x8e\xb1\x64\x25\x66\xb2\x39\x50\x28\x1d\xac\x5f\x53\x02\x9c\x4e\xc3\x7c\x74\x0b\xd0\xab\x4d\xb9\xcb\x1e\x73\x66\xc2\x42\x36\x82\xdd\x67\xdb\x4d\x88\x8d\x6d\xda\x14\xe7\xc3\x28\xae\x7f\x4a\xfe\xf7\xed\xd5\xe5\xf1\x94\x2a\x3d\xa1\x90\x1b\xe6\xdb\x3a\xf2\x68\xdf\xa8\x80\x7a\x8f\x23\x17\xa4\x2f\x8e\xc9\x58\x1e\xa1\x29\xff\x94\x4c\x8c\x99\xe9\xd3\x93\x93\x31\x37\x93\x7c\xd8\x4a\xe4\xf4\xa4\x58\x9b\x13\x3a\xe3\x27\xc3\x4c\x0e\x4f\x14\x83\x88\xab\xe3\x1f\x5b\x3f\xfd\x08\x5b\x73\xf2\xf0\xe3\x09\xa4\x97\xb7\xc6\xf2\xf7\x17\x3f\xfd\xc7\x9f\xfe\x6c\x1b\x9e\xcd\xcd\x44\x8a\x53\xe7\x27\x58\xda\xf6\x31\x0a\xbe\x27\xf8\x49\xa5\x97\xff\x68\xfd\x10\x0f\xc3\xbd\x3a\x95\x29\xcb\xf4\xc9\xc3\x8f\x03\xbf\x33\xad\xd9\x26\x9e\x8f\x82\xe1\x87\x25\xaf\xd4\x52\xb1\xbf\x07\x92\xf1\xb9\x21\xab\xb6\xa5\xe6\xac\xc4\xf1\x74\x3b\x9c\x98\x7b\xb6\xaa\xd6\xf0\xb2\xf3\x10\x24\xa9\x06\x9d\x7e\x53\x6c\xd7\x46\xd9\x66\xa3\xf4\x21\x70\xbd\xf0\x04\x70\x03\xd1\x06\x31\xa3\xbc\x2e\xc8\xc3\xb9\x18\x77\x59\xbf\xa7\x44\xc0\xdc\x37\xf4\xa5\x9b\xee\x96\xb0\x97\x19\x7e\xed\x1d\xa2\xf2\xd1\xc3\x5d\xee\x03\x24\x72\xcd\xea\x08\x01\x49\x0f\x89\x47\x63\x85\x7e\x1c\xd7\x66\x34\x52\x5a\x62\xf4\x91\xbb\x10\x38\x0d\xe1\x72\x98\x8b\x2e\x47\x01\xd3\x13\x23\x1d\x11\xfe\x57\x8e\x6a\xfe\xf1\x2e\x93\x43\xfd\x36\x20\x60\x50\xed\xfb\x28\x52\xd2\x9b\x49\x70\x3f\x10\x92\x7e\x29\x9e\x52\x3f\xf1\x67\x26\x96\x42\x36\x59\xf8\x7a\xa2\x2a\x02\x11\x31\x23\x8f\x2a\x99\x0b\x0f\xc1\x27\x05\x93\x23\x70\x11\xc3\x05\xe8\x9d\x20\x60\x04\x11\xd2\x44\xd9\x77\x8a\xcd\x90\x91\x82\xb9\xae\x79\xb9\x77\x84\xa1\x5c\xb5\xce\x4f\x01\x43\xb9\xeb\xba\xbb\x83\xf3\x95\x16\x7c\x57\x70\x41\x3c\x4a\x1b\xb0\x59\x78\x7f\xa5\x67\x22\xf0\x01\x70\x45\xc4\x45\x9e\x10\x6c\x02\xc2\x47\xd9\xb1\x91\xc7\x90\xb5\x0c\xb9\xb0\x08\x0c\xdb\x54\x2e\x01\x3c\x3a\x9b\x5c\x07\xf6\xfd\x35\xc6\x89\x21\xc3\x5f\xa2\x81\xba\xbb\x57\x13\x5f\xe0\x15\x94\x4b\x21\x98\x72\xc6\xea\x95\x37\xc7\x86\xfe\x9e\x78\x2b\x97\x3b\x7c\x0b\x01\x34\x06\xed\x0c\xc1\x5e\x34\x62\x02\x2d\x02\x71\xb1\x13\x39\x95\xf6\xda\x96\xb9\x8e\x1e\x62\x5c\x35\x5c\x36\x4b\xca\xdb\xce\x10\xa5\xe4\xeb\xcd\xc6\x1e\x2d\xfb\x08\x75\xf9\xf8\xa5\xd5\xc8\xc5\xd1\x4c\x86\x65\xe4\xd7\x15\xe3\x0f\x90\x9d\xcb\xe9\x06\xbc\x89\x53\xb0\x9d\x42\x41\x0a\x07\xc4\xc7\xff\x6e\x45\x75\x4b\x52\x21\x86\xd9\xe7\x3d\xbb\xa8\x43\x04\xe3\xa9\x2b\x85\xdf\x18\xcd\xb1\x89\xee\xb5\x4c\x95\xa9\x8b\x26\x42\x10\x8b\x22\x78\xd0\x2e\xf2\x82\x18\x1d\x3e\x7c\x28\xaa\xa1\xcc\x67\xec\x88\x0c\x73\x78\x7e\x79\xd5\x8b\x1d\x65\x5c\xc0\xe3\xe3\x64\xc2\x92\x7b\x08\xf6\x47\xa6\x88\xcb\xe5\xcb\xda\x0c\xe7\x7d\x51\x60\xee\x1b\xe9\xbd\x3e\xf3\x00\x6a\x18\x80\x3d\xa5\x22\x29\xd7\xb3\x8c\xce\xc1\xbe\x2e\x30\x4c\xa8\x5c\x50\xde\x0f\x6a\x4b\x33\x12\x14\x05\x70\x5c\xc0\xcb\x61\xf0\x97\x9f\x44\xa8\x4b\x17\x42\x5e\xeb\xc4\x8e\x9d\x61\x26\x77\x09\x17\x6a\x2a\x6f\x11\x55\x63\xc4\x1d\x8d\xfd\xc6\x21\x1b\x55\x54\xd2\x4a\xfb\x6f\x7c\x10\x2e\xa8\x5a\x7d\x5f\xb8\xcd\xfe\x8d\xc5\x85\x98\x7a\x60\x69\x5f\x94\xf3\x7d\xdd\x55\x56\xec\x32\x29\x60\xcf\x9b\x58\xe7\xe6\xe6\x85\x18\x49\x6d\x79\x24\x13\xe4\x38\x15\xe0\x26\x21\xd0\x74\x09\x0c\x7b\x7d\x41\xb5\x27\xc0\x0b\x5f\xdb\xe4\x54\xe0\xac\x3b\x90\x64\x57\x05\xa1\xe4\xdd\x09\x84\x19\xb2\x19\x11\xea\x20\x04\xe0\xb9\x80\xbc\x85\xd4\x90\xba\x36\xfa\xc2\xe7\x10\x8c\xf2\x2c\x43\xf8\x9a\x86\xe5\xf2\xd9\xcd\x3e\xe0\xed\xeb\xa5\x90\x06\xbd\x96\x44\xc0\xf4\xc1\x0b\x93\xb2\x59\x0a\x61\xdf\xc9\xbc\x28\x44\x09\xc4\xcb\x84\xce\x21\x30\xda\x83\x52\x43\xae\xce\x98\x19\x62\xe5\x8e\x34\xcf\x30\x28\x1e\x1c\x6c\x90\x2a\x4d\xb3\x8c\x70\xa3\xfb\x22\x64\x76\x23\x4c\x1f\x5c\x05\x3e\x0b\x29\x75\xb2\x20\x74\x01\xcd\xba\xd2\x45\x70\x41\xf0\x84\x9b\xd2\x90\xc0\x73\x34\x8f\x91\x5c\x67\x33\x46\x31\x84\xd3\x9d\x44\x11\x4b\x83\xd5\x6d\x70\xf1\x8e\x50\x51\x66\x31\x21\x74\x9f\xd4\x8b\x15\x85\x36\xde\x94\x16\x69\xe3\xec\xac\x28\xe8\xcb\xaa\xe0\x68\x5d\xe2\x88\x0b\xae\xb0\xf2\x96\xd1\xa1\x3e\x63\x90\xa8\x67\x54\x19\x9e\xe4\x19\x55\x19\xc0\x25\x8e\xf2\x8c\xf0\x51\x54\x21\x06\x36\x01\x13\x7b\xa1\x0a\xab\x84\x3b\xc2\x1b\x65\x35\x9d\xb2\x28\x61\xc1\x29\x9e\x59\xe4\xd4\x41\xb0\x32\xf4\x16\xd8\xb6\xde\xb6\xc8\x79\xb5\x1e\x10\x1c\x8b\x08\x10\x84\x6b\xe4\x80\x61\xbc\x51\xa4\x2d\xd6\x15\xe2\x23\x2b\xec\x7e\x17\x1d\xbc\xa6\xc2\x73\x54\xdf\x6f\xe8\x31\xf2\xa8\x92\xcb\xe3\x84\x6a\x23\xed\x7b\x50\xcf\xac\xe4\x47\x0a\x27\x62\x45\x01\xfc\x0d\x07\x19\x83\xa9\x6c\x31\xd0\xcf\x51\xc1\xb0\xea\x60\xa7\x4b\x0a\xd2\xc0\x3e\x6e\x38\xd4\x08\x2c\x7a\xf3\x81\x46\x94\x13\xfb\x07\x1b\x57\x76\xb5\x72\xf9\xb9\x04\xdb\x4c\xec\xb8\xac\x60\xcf\xd0\xa3\x5c\xa9\x13\x0a\x63\x70\xf8\xce\x00\xc7\x17\x0e\xdb\x90\x91\x8c\x8b\x7b\x9f\xda\x63\x77\xfe\x88\xd0\xa2\x75\x38\x7c\x38\x7a\x24\xe6\x06\xc9\xa6\x0e\xbc\x72\x07\x61\x67\xbd\x00\xe9\xda\xcd\x0d\xf3\xde\x08\x9f\x74\xa1\xcc\x66\x34\x8f\xf5\xb7\x65\x69\x0c\x53\x10\x62\x7d\xe0\x12\x5e\x30\x51\x34\x85\xe1\xa1\xf0\x62\xe3\xfa\x5e\x4f\x68\x7d\x91\xdd\xd5\x78\xcc\x77\x97\xe7\x9d\xf7\xdd\xcb\x32\x88\xf2\x5f\xef\x3a\x77\xe5\x5f\x6e\xee\x2e\x2f\xbb\x97\x1f\xe2\x9f\x6e\xef\xce\xce\x3a\x9d\xf3\xf2\x7b\xef\xdb\xdd\x8b\xca\x7b\xf6\xa7\xf2\x4b\xed\x77\x57\x37\x15\xd8\xe6\xdb\x5f\xba\xd7\xd7\xe5\x9f\x7a\xdd\x8f\x9d\xf3\xc1\xd5\x5d\x09\xf9\xf9\xfc\xd7\xcb\xf6\xc7\xee\xd9\xc0\x8f\xc7\x3d\xa9\x05\x6f\x2e\xa6\x56\xbb\x7a\xfb\xf0\xa0\x6e\x8d\xd8\xdd\x26\x23\xc5\x99\x48\xb3\x39\x06\x78\x79\x95\xa4\x12\x4f\x12\x73\x7b\x3e\x65\x32\xdf\x25\x4e\xcb\x6a\xc5\xf2\xc1\x6a\xdb\x19\x71\xad\xb9\xe8\x74\xaa\xef\x1b\x11\x23\x8c\x5a\xb4\x90\x2d\x8d\x46\x35\x6a\x1e\xe2\x9d\x97\xc6\x59\x86\x64\x55\xd7\x09\x99\x31\xb5\x6c\x2c\x70\x17\xab\x7c\x66\xf8\xb0\x39\xf2\x6e\xcd\x24\xce\xcd\x95\x3e\x44\x3f\xa8\xcf\x42\xbb\xac\xe7\x81\xa5\x00\xb4\x5d\x62\x6f\xa0\x85\x6d\x81\xe8\xc3\xd7\x3e\x5e\x61\x96\x0f\x33\x9e\x10\x9e\x16\x98\x0d\x18\x99\x86\x61\xd2\x68\x3e\xa9\x82\xa4\xcc\x98\x02\xe1\xc8\xca\x9c\x33\xc5\x8e\x69\x6e\x26\xbe\xa8\x5d\xa8\x46\x8e\xa0\x25\x2c\x51\xcc\xf8\xa2\xb9\x2c\xf5\xd0\xe4\x51\x4f\x30\x18\x97\x2c\x91\x42\x56\x5e\x2b\xc2\xab\x6b\xb0\x97\xe1\x97\xd8\xfa\x06\x96\x3d\x7c\x7f\xe9\xd2\xb8\x11\x73\x5d\xad\x3e\x05\x62\x20\x3e\xf4\x00\xe7\x76\xde\x96\x29\x27\x3e\xaa\x0f\x37\xd9\x07\x08\xd6\x4f\x63\x15\x8d\xc5\x84\x52\x8e\xe7\x73\xad\xbb\x47\x67\x8a\xc1\x7d\xe1\xdc\x3f\x5e\x69\x06\x77\xa5\x0b\x28\x84\x38\x42\xab\x1c\x0c\xd9\x84\x66\x23\xb4\xbf\xd8\xad\x29\xce\xd5\x22\x89\xf6\xe4\x3d\x13\x7b\x28\xfc\xbf\x35\x3b\x14\x28\x6b\x17\xe9\x33\xc1\x14\x51\x18\x6b\xa0\xd0\xb1\xf2\x15\xae\x31\xa0\x1a\xeb\x2e\xa2\x64\x1a\x3d\xc6\xa8\xc6\x02\xbf\xc8\xc7\x62\x8f\x46\xfc\x8b\x6d\xb0\x2f\x58\x2d\x82\x0b\xf8\x88\x7d\x1a\x6b\xe0\xcb\x80\x60\x80\xb9\x80\xf7\x4c\x00\xb8\x3a\xd6\x47\x5a\x49\xb3\x9b\x99\x42\x17\xf7\x62\xd1\xb0\x18\x56\x0c\x8c\x4d\xbc\x04\x39\x1f\x5b\x3c\xfd\x3a\x41\xe2\xc4\x3d\x6b\x91\x73\xbc\x17\x81\x6e\xce\x2e\xba\x9d\xcb\xde\xe0\xec\xa6\x73\xde\xb9\xec\x75\xdb\x17\xb7\xeb\x1e\xbf\x7d\x04\xdf\x56\x4e\x5f\x35\xfe\x39\x70\x88\x13\x77\xf2\x8a\x14\x90\x30\xa9\xe2\xd8\xc1\x96\xac\x1e\x3d\x4f\x67\x83\x94\xeb\xc4\x5e\x7f\xf3\x01\x13\x29\x40\x5f\x6d\x45\xaa\xf5\x4d\x55\x67\x11\xde\x20\xe1\x0d\xcf\x41\xf0\xb6\x7b\xf0\x14\x1d\x9e\x03\x36\x86\x2b\x2d\x0c\x65\xe5\xfb\x22\xba\x6d\x5a\xab\xe1\x4e\x6d\x73\xbb\xcd\xad\xdc\x44\x75\x4e\x38\x5e\xae\x75\x4e\x2d\x7f\xf4\xaf\x01\xb4\x41\xc3\xaa\x38\xb0\x83\x18\x7f\x8b\x47\xe5\x5d\x88\xd5\x86\xa7\x54\xa4\xd4\x48\x35\x6f\x98\xe2\x7a\xcc\x33\x3e\x36\x65\x16\x1a\x5f\xd9\x56\xd5\xf7\xbb\x80\xaf\x52\x51\x25\x25\x44\xe9\xea\x5d\xfd\xd2\xb9\xbc\x1d\x74\x2e\x3f\x0d\xae\x6f\x3a\xef\xbb\xff\x15\xb2\x98\x5d\xb1\xea\x72\xe5\x08\x66\x2f\x45\xcb\x5d\x7c\x46\x5d\x2d\x7f\xc1\xfa\x0d\xbe\x1d\x87\xd9\xcd\x47\x7d\xe1\x39\x8b\x2a\x9a\x9f\x28\x99\x8f\x27\xf5\x0d\x55\x47\x79\xdd\xee\xfd\xbc\xd5\x30\x21\xdb\x15\x41\xde\xf1\xb4\x2d\xe2\xb6\xf0\x91\xe3\x7b\x08\xf6\x52\x19\x1e\xe4\x6c\xc3\xab\x75\xe6\xed\x06\x8e\xb6\x95\xa2\xb2\xc8\xb4\x96\x0a\xff\x35\xaf\x37\x11\x50\x2f\xe2\x9b\xa5\x6b\x04\x02\xb1\xb0\x7c\xc8\x42\x6b\xa7\x35\xbf\x95\x6e\xb0\x9f\x8e\x33\x36\x1e\xb3\x14\xc9\xab\xda\xb0\xb3\xfa\x38\x16\x98\x14\xf7\x7a\xdd\x2a\x3a\x34\xff\x1d\x2e\xe6\x10\xfb\xb0\x3e\x03\xbf\x0e\x9f\xd4\xf3\x8a\x33\x5f\xd5\x2b\x91\x42\x1b\x2a\x1a\xd0\x11\x37\xac\x3c\x5c\x40\x96\xab\xa2\xfe\xb7\xb3\x85\x78\x3b\x75\x71\x0e\xb6\xf1\xdd\xb8\xaa\x05\xc2\x19\x37\xa2\x6a\x06\x51\x19\xb2\x9a\x4d\xa8\xd4\x76\x7d\x72\x3b\xc6\x52\xd5\xc9\x25\x79\x83\x71\x11\x61\xa3\x1d\x44\x14\x1a\x7e\x00\x8b\xbd\x31\x18\x6c\xcf\xa5\xa0\x83\x71\xb3\xa8\x63\x1b\x2a\x23\x7b\xe1\x6d\x73\x53\x56\xa5\x0a\x6c\x54\x21\x37\xcd\x13\x87\x85\x86\xcd\x16\xde\x5e\x67\xbb\xf2\x17\x6c\x4a\x8e\xe3\xca\xdb\xe9\x31\xa4\xeb\xf6\x45\x93\x0f\xa3\xa6\x6a\x75\x4c\x01\xd7\xfe\xd6\xda\x65\xef\x6b\x56\xbf\xf9\x08\xfa\xc5\x5e\x2f\x8d\x82\xf8\xd7\x41\xd8\x6b\x70\x96\xbb\x7d\x19\x52\x74\x52\x96\xaf\xe3\xa6\x8c\xca\xc0\x55\x37\xf3\xe9\xaf\xe5\xcf\xa7\x65\x08\x37\xbc\x22\x27\x54\xa3\xe4\x6a\x92\x49\x79\xe0\xa6\xa8\xb1\xde\x64\x16\x0f\x92\xe0\x1e\x61\x9e\x9a\x7c\x14\x47\xa8\x53\x43\x75\x71\x3b\xfa\x18\xfa\x3c\x94\x71\xd8\x8c\xf0\x63\xe1\x28\x28\x2f\xc8\xf7\x80\x61\x65\x34\x17\xc9\x84\xcc\x32\x8a\xa9\x43\x13\xaa\x91\xa4\xbd\x1b\x9c\x0e\x79\xc6\x0d\x24\x3d\xa3\x03\xa9\xb2\xc2\x56\xa3\xa1\xea\xde\x83\xed\xd0\x02\x72\x63\x19\xd1\xef\x18\xaa\x55\x54\xf4\x7b\xce\x60\xad\xe2\xc8\x46\x5f\x2c\xf5\x3e\x15\x64\xe9\x02\xb5\x8a\xed\xb0\x1c\x0f\xc8\xb2\x98\xcb\x66\x3b\xeb\x5a\xbc\xae\x7e\x5e\x5a\xef\x9a\x8b\x7a\xf3\xa8\x00\x87\x23\xb7\x01\x9b\xaf\xa2\xcc\xd5\x9e\xac\x51\x26\x69\x43\x2d\x22\xdf\x36\x82\xc6\x35\xb5\x9d\xca\x7c\xd8\x04\x52\x84\xa3\x5a\xde\xfa\x32\x13\xbf\x3f\xb7\xfb\xb2\x0b\xc6\x0c\x90\x1a\x66\xf8\x66\xa6\x8d\x68\xd2\xd4\xb0\x63\xf8\xbc\xbe\x71\x07\xcd\xb3\xf6\x9c\x17\x08\xad\x40\x17\x0d\x50\x48\x56\xa4\xad\xa9\x67\xfb\xd7\x1c\x6a\xe6\x5e\x8d\x6e\x31\x0d\x77\x17\x22\x33\x7c\x91\xc2\xea\x4f\x62\xb5\xd7\x5e\xd9\x7f\x12\xd3\xc0\xda\x29\x18\x75\xb3\xb9\xb5\x5f\xaf\x7f\x20\xcb\xf5\xfa\x66\x8a\x4b\x48\x96\x75\x45\xfe\x96\xe0\x79\xd4\xf6\xbb\xc3\x4a\xfe\x96\xb3\x9c\x59\xda\x1f\xe6\xe9\x78\xd1\xb6\xb9\x81\x74\x56\x4c\x69\x22\x1f\xc9\x34\x4f\x26\xc4\x37\x4e\x52\x96\xd1\x79\x69\x6a\x20\x2f\x19\x99\x01\x3e\xd2\x96\x70\x3d\x49\xae\x8d\x9c\x42\x18\x5b\xd1\xae\xca\x05\x10\x3c\xa1\xc6\x28\x3e\xcc\x4d\x6d\xec\x53\x09\xb7\x62\x4b\xdf\xd5\xed\x75\xe7\xac\xfb\xbe\x5b\x71\x1c\xb5\x6f\x7f\x89\xff\xfe\x7c\x75\xf3\xcb\xfb\x8b\xab\xcf\xf1\x6f\x17\xed\xbb\xcb\xb3\x9f\x07\xd7\x17\xed\xcb\x92\x7b\xa9\xdd\x6b\xdf\x76\x7a\x2b\xdc\x4a\x8b\xbd\x36\x6f\x04\x8d\x60\x35\xac\xec\xe2\x0c\x97\xe0\xec\xf3\xda\xa5\xeb\xf5\x94\xb4\x3d\xc8\x48\x5c\x85\x89\x7a\x2f\x20\x78\xaf\xb1\x2c\x94\x73\x16\x9e\x53\x43\x5d\x99\xbd\x16\x69\x13\x5f\x2e\x11\x42\x1d\xb5\x15\x16\x1c\x04\x83\xdd\x1d\x6c\xc2\x4a\x0c\x49\xa1\xb9\x15\x50\xff\x72\xe4\xb0\x4f\x32\x16\xe3\xcd\xb9\xd2\xd8\xad\xbe\xe8\x3c\x30\x61\x72\x00\xc3\xa2\x59\xe6\xab\x5a\xfa\x17\xa2\x54\x25\x3f\x4a\xcd\xa7\x3c\xa3\xaa\x40\x65\xbf\x72\x6d\x81\xc0\xee\xc7\x1a\x32\xd3\x17\xa1\x7a\xbd\xf2\x70\xd7\x25\x30\xee\xb3\x8b\x2e\x88\x40\x89\xf1\x78\xa6\xbe\xf3\xbe\x40\x70\x0d\xd7\xe3\x94\x42\xf8\xad\x91\xce\x9e\x86\xdd\x37\x56\xf9\xbe\xa9\x41\x45\xdf\x02\xbc\x05\x2d\xcf\x4f\x15\x48\x13\x06\xe9\xff\xd1\x11\x46\xcd\xd7\x96\x6b\x7a\x80\x84\xab\x41\x36\x75\x31\x33\x65\xa4\x76\x34\x77\x10\xdf\xfa\x25\x08\x3b\x3e\xa6\xcb\x59\xe3\x83\xd1\x9d\x41\x6d\x89\x06\xf9\x3b\xb3\x97\xd0\x4b\x5d\x87\x38\x13\x18\x56\x61\x28\x73\x91\xfa\x32\xd3\x53\x2e\x4e\xa6\xf4\xcb\x5b\x3f\x53\xcc\xac\x0b\x50\x8c\x80\x9a\xc0\x32\xab\x89\xcc\x2d\x93\x5b\xbe\x5c\x7d\xb1\x64\xbd\x56\x4b\x8b\x9e\xb3\x82\xda\x53\xe8\xa8\x18\xa7\xf4\xc0\xe6\x75\xfb\xb7\x00\xa8\x8b\xb1\x50\xee\xc0\x43\x23\x33\xc5\x8c\x7d\x33\x44\x41\x65\x18\xdd\x16\xfe\x86\x28\xdb\x12\x30\x7f\x3d\xf3\x8e\xdd\xbc\x3b\x9d\x9b\x5a\x07\xf3\x13\x40\x22\xbb\x9e\xec\xa6\xa1\xbb\xd9\x5b\x3a\x5d\x54\xb1\xf3\xa3\xd9\xdd\xfa\x9b\x1c\x42\xed\x5f\xed\xeb\x6e\x29\x06\x96\x6d\xd8\x0b\x8f\xe1\x06\xc9\xf5\x0b\x3e\x6c\x4f\x03\x19\xd3\x60\xef\x85\xba\xf4\xec\xb7\xdc\xb9\xec\x7e\xfc\x61\xb3\x8b\xd6\xa8\x39\xf1\x68\x91\x71\x10\xb8\xcb\x81\x70\x97\x2e\x8c\x2b\x17\xbc\x0e\x71\xe3\x06\x2b\xb2\xef\x23\xda\x61\x7d\x77\x56\xa5\x53\xf7\xe7\xca\x38\x79\x6f\x89\x75\x55\xe4\x9f\x0c\xa2\xe8\x53\x05\x99\xc8\x75\x07\xe1\xaf\xae\xf5\xf8\x46\x1b\xd2\xe4\xfe\x91\xaa\x14\x8d\x85\x10\x7e\xd0\x22\x3f\xcb\x47\xf6\xc0\xd4\x11\x49\x98\x32\xd4\x81\x16\x68\xf0\xbf\xc2\x81\x72\xed\xf4\x05\x44\x84\x23\x02\x84\x80\x9a\x65\x86\x8f\x27\x56\xa1\x8c\xbc\xe7\x52\x59\x7e\x64\x10\x11\x66\xc6\x12\x97\x26\xde\xb0\x00\xa3\x8c\x3e\x2c\xa2\x30\x6c\x93\xd0\x49\xba\x21\xd3\xc6\xbb\xa7\x9c\xaf\x66\x69\xbc\x83\xaf\xf2\x8f\x5c\x13\xf3\x7a\x8f\xc8\x58\x66\x54\x8c\x5b\xad\x16\x61\x26\x69\xbd\xdd\x88\xd0\x5d\x83\xb1\xc3\x2b\xc4\x71\x66\x52\xb3\x6c\x1e\x32\x9b\x43\xbc\xbd\x5d\x65\x88\xef\xd7\x1c\x4d\x1e\x35\xd4\x7f\x5b\xcd\x0b\x7d\x5e\xd3\x79\xbd\xa6\xba\x71\x82\x49\x43\x3b\x80\xb1\xbc\x41\x4b\xf8\x7e\xbd\xe6\xb5\x41\xc2\x94\xaf\x5a\x50\x24\x4e\x35\x80\x98\x49\xb1\x69\x36\xd0\x27\xd9\x54\xde\x6b\x2b\xe0\x91\xda\x96\x5c\x5a\xf2\x56\xf9\x31\x8b\x14\x5d\x43\x71\x21\x95\x6c\x97\x90\x1f\x99\xe5\xd3\x66\x10\x8b\x5d\xa5\xa8\x62\x90\xf8\xaf\x33\xe8\x6e\x6d\x29\xaa\xa8\x62\x26\x15\xe6\xf0\xb8\xf1\xa2\x2d\x14\x89\x09\xb8\xa5\xe2\x1a\xe0\x56\xb6\x49\xb3\x09\xcd\x60\xd3\xe0\xb2\x81\x32\xf7\x50\x57\x52\x49\x31\xce\xe6\x98\x39\xe4\x4d\xfc\xee\x13\x8d\xa2\x0e\xf8\x79\x9a\x39\x43\x35\x90\x68\xe3\x3d\x02\x88\xd7\xad\x9c\x5b\x20\x3a\x44\x30\x83\x2e\xd2\x01\x1a\xf4\x35\xb7\x25\x19\xf9\xa4\x8d\x7b\x16\xd5\x0d\x49\x01\x80\xf0\xb1\x45\xde\x4b\x05\xc5\x41\x9c\xe3\xd6\xf9\xd6\x8b\x5b\xcb\x14\x9d\xa0\x81\xf8\xe1\x47\x1f\x52\x81\x33\xc4\x26\x00\xe5\x3b\xa5\xc2\xd4\x36\x50\x44\x1c\x41\x5b\xf8\xc9\x27\xab\x0a\xd7\xbe\xee\xda\x87\x57\xfb\xc2\xbe\xdb\xfe\x7c\x4b\x70\xa9\x1d\x54\x9d\x5a\x36\xd0\xa8\x91\xd5\x41\x1d\xb0\x5c\x83\x2d\xa4\x81\xd2\x3e\xe0\xa2\x7b\xac\x42\xbb\xec\xcc\x24\x93\xe2\xf6\x29\x97\xcf\x71\x68\xed\x6e\x9e\xd3\x02\x7c\x0f\xe3\xe5\xe2\xc0\x23\x57\xa1\x39\xa8\xb1\x52\x30\xb0\xd4\x53\x43\x52\x19\x37\x4b\xb8\x59\x1d\xdd\xb1\x21\x40\xc4\x2a\x52\x33\x12\xbd\xf6\x6e\x9e\x25\x87\x0b\x88\x95\x1c\xd3\xed\x7d\x68\x1c\xca\xc5\x0e\xfc\xbb\x0a\x19\x57\x4e\x60\xec\x8b\x72\x57\x0b\x8b\xe4\xc3\x2f\xb8\x62\x88\xf4\xa4\xed\x15\x6e\xf8\x83\x3d\xa8\x8b\x64\x1d\x08\x14\x38\xc0\x22\xed\xf5\x05\x0e\x3b\x82\x8b\xba\x67\x73\x1d\x23\x8d\x3b\x8a\x22\x4d\x04\xc9\xed\x7c\x7c\x45\xed\x95\x5b\x01\x0b\x37\x88\xca\x9b\xad\x77\x95\x60\xa7\x1f\xed\xc7\x4b\xe2\xba\x16\x1a\xb7\x34\x58\xa4\xc4\x14\x86\xa5\xa2\x34\xbf\x5b\x67\xb7\x87\x45\xe8\x46\x4d\xe9\xbb\xc2\x46\x07\xca\x8f\xd5\x71\xfa\xc2\x21\xca\x45\x2e\x51\xcb\x70\x16\xb7\xcd\xa5\xea\x21\x8e\xd5\xbc\x94\xfd\x0c\x68\x7f\xbe\x46\x53\x7d\xc5\x41\x5f\xa8\xc2\x55\xda\xc5\xec\x56\x6f\xc8\xa9\xed\x70\xcb\x78\x20\xb7\xb9\x8d\x31\x40\x85\x18\xeb\x16\xce\x01\xbd\x20\x64\x3d\x4a\xc0\x09\xb3\xcb\xd7\x16\xb5\xe1\x37\x3e\xf8\xe6\xb6\x73\x76\xd3\xe9\x3d\x5b\x8c\x90\x0f\xd0\xd9\x38\x48\xc8\x8f\xf3\xbc\xf3\xbe\x7d\x77\xd1\x1b\x9c\x77\x6f\x9e\x22\x4a\xc8\x3d\xda\x22\x4c\xe8\xd6\x01\x55\x9e\x49\x61\xd8\x97\x9d\xee\x64\x95\x8b\x01\xdd\x20\x5c\x3d\x80\xc1\x2e\x13\x77\xb0\xd1\x45\xa0\xcd\x80\x82\xe9\x60\x86\xf0\x46\x0b\xb8\x9a\x51\x09\xc9\x11\xcf\x32\xc8\x17\x0b\x36\x56\x97\x04\x62\x17\x15\xf8\x8f\xaf\x85\xe5\x78\x6a\x5f\x0c\x4b\x48\xa3\x60\xf7\x99\x48\xa9\x71\x7f\xe8\xcc\x2e\x80\xe2\x90\x2e\xb4\x0c\x8b\x73\xcc\x05\x2b\x86\x81\xe5\x65\x72\x41\x1a\x01\xd4\xdc\x26\x3e\x65\x3a\xa0\x13\xbc\xd6\x95\x35\x3d\xc5\x95\xe8\xd3\x8b\x9f\xfe\x61\x98\x21\x1e\x62\x2e\x50\x30\x2d\x9d\xe6\xdb\x7a\xd2\x3d\x29\x8e\x00\xac\xbb\xdd\x49\x0a\x86\x68\xa8\xe0\x52\x6c\xa4\xdb\x08\x44\xc1\x2e\x2c\xd4\xf7\x1c\x43\x29\xe4\xa8\xb2\xce\x96\x15\xda\xb5\xe6\x60\xae\xa6\x58\x09\x83\x24\x59\xae\xad\xf2\x8f\xaa\x73\xfb\xf3\x6d\x5f\x60\x2d\x3e\x77\x0b\x39\xa4\x64\xec\x02\x1d\xf9\xb2\xd4\xbf\x97\x50\x62\x0e\xf6\x3d\x1a\x2a\xa7\x8c\x0a\x8d\xf5\xb5\xb2\x8c\xa9\x82\x32\x70\x3c\x8c\xa5\x0e\x63\x1f\xea\xa4\x15\xdf\xbb\x12\x4b\x12\x4e\xad\x1d\xaf\x7b\xea\x4a\x0c\x55\xe9\xa9\x29\x1d\x11\xa2\x04\x9f\x92\x72\x6a\x82\xd5\xd7\xa5\x22\x17\x60\x59\x4b\x44\xe5\xd0\xf1\xb5\x68\xa9\x87\xcd\x1d\x48\x69\x8f\xa4\xb4\xc6\xbd\x1e\xdf\x12\x64\x22\x2d\x03\x0d\x20\xc7\x85\xaf\x31\xa4\x43\x67\x10\x04\x63\x97\xb1\xf6\xd6\x29\xb0\x69\xb6\xf2\x3e\x5e\x5e\x5d\x76\x62\xdf\x61\xf7\xb2\xd7\xf9\xd0\xb9\x29\xa5\xbe\x5d\x5c\xb5\x4b\xe9\x6b\xb7\xbd\x9b\x4a\x76\xdc\xbb\xab\xab\x8b\xce\x82\x13\xb2\xd3\xeb\x7e\x2c\x35\x7e\x7e\x77\xd3\xee\x75\xaf\x4a\xef\xbd\xeb\x5e\xb6\x6f\x7e\x8d\x7f\xe9\xdc\xdc\x5c\xdd\x54\xfa\xbb\x3b\x5b\xee\xce\x2c\x4d\xa3\x5e\x15\x2f\xbc\x25\x11\x4c\x4f\xdd\x92\xf6\xa8\xbe\xdf\x73\xd2\x27\x24\x39\x6f\x92\xb4\x59\x9b\xa3\x59\xb2\x4a\xa5\x6c\xb0\x5d\x3e\x68\x53\x4e\x6b\x6d\x3f\x8a\x19\x35\x1f\x50\x63\xd8\x74\xb6\x5b\xc5\xc7\xf5\x8f\xc8\x66\xa9\xa6\xc0\x5f\xd6\x48\x35\x2d\xed\xea\xcb\x49\x35\xad\xc9\x22\x5d\x4c\x35\xed\x5e\x76\x7b\xdd\xf6\x45\xf7\xff\x54\x5a\xfc\xdc\xee\xf6\xba\x97\x1f\x06\xef\xaf\x6e\x06\x37\x9d\xdb\xab\xbb\x9b\xb3\xce\xf2\x80\xf2\xc5\xd1\x17\x4a\xdb\x31\x89\xfb\x39\x25\xbd\x48\x9c\x46\xb7\x80\xd3\xd6\x1c\xa0\x24\x50\x15\xcd\xf8\xdf\xb9\x18\x1f\x41\x4d\xc2\x53\xd2\x51\xaa\x3b\xa5\x63\x76\x9d\x67\x19\x28\xbd\xe8\x83\x3b\x53\x8c\x1a\x78\xed\x5a\xa6\xdd\xe8\x3b\x88\x1c\xa8\x9d\x06\xf4\xef\x2a\x7c\x62\xf7\x47\xae\xff\x48\xc5\x0b\x51\x09\xce\xc4\x11\xea\x2f\x9f\x02\xc6\xbd\x1c\xb9\x62\x45\x47\xc1\xc7\x49\x7e\xcb\xa5\xa1\x84\x7d\x49\x20\x89\xa2\x9e\x4e\x2e\xe4\x4e\x15\x3a\x57\x97\x13\xaa\x3f\xd3\xab\xf3\xce\xea\x35\x79\x04\x54\x1b\x6c\x52\x20\xcf\xcd\xf2\x23\x7e\xea\x6a\xe2\xd5\x0b\x44\x26\xdb\x43\x50\xd7\x85\x1c\xd7\x83\x17\x41\xd6\x9b\x43\x5c\x2a\x6a\xb9\x40\x88\xa8\x1c\x13\xcd\xc5\x7d\x5f\x7c\x9e\x30\x41\x64\xae\xf0\x27\x23\x15\xe0\x60\x8d\xb2\x5c\x4f\x18\x54\xe2\x3d\x22\x8f\x8c\x4c\xe9\x1c\x43\x45\xa7\x52\x45\x70\x4e\x40\x32\x96\x38\xe1\xeb\x8c\x0b\xcb\x2d\x66\xdc\xbb\x10\xaa\x5b\xbf\x0f\x0f\xa3\x4f\x21\xa2\xbb\x67\xf8\xae\x17\x27\xf5\x38\x61\x10\x22\x52\x58\xb7\xbc\x1a\xe7\x38\x37\x40\x5b\x4a\x79\x6f\x35\x33\x9f\x6c\xf8\x9d\x07\xef\x80\xe5\x7e\x90\x3c\x25\x69\x3e\xcb\x78\x12\xf8\xee\xa3\x54\x8d\x19\xd5\xe8\xea\xda\x20\xa3\xba\xe2\xc0\x5d\x36\xb1\x1a\x3f\x5a\x64\xef\x58\x92\x5b\xfd\xc4\xd9\xe5\x51\x65\xb1\x5c\x33\x75\x6c\x14\x1f\x8f\xc1\x71\xe0\xbd\xf2\x2f\x3f\xfd\xbc\x48\x6f\xdb\xdd\x01\x1d\xc7\x87\x65\x72\xcc\x13\x9a\xc5\x26\xe8\x42\x76\x0d\xf9\xad\xfe\xd8\xcf\x72\x85\x15\x9d\x47\x45\x8e\x61\x63\xdc\xbe\x2f\xa3\x3f\xc0\x62\x6d\xbb\x17\x91\xeb\x8e\xb0\x70\xb1\x2b\x77\x52\x04\x50\xfa\x82\x51\xfe\x86\x2b\xfa\xf6\x68\x6e\x08\x6c\x0f\x05\x92\x89\x7c\x84\x62\x93\x56\x1b\xb1\xc2\xb9\x9d\xa9\x90\x20\x9b\x04\x84\xb7\x60\x45\xf6\x18\x78\xa3\x60\x2e\xc7\x20\x97\x31\x7f\x60\xe2\x05\xc0\x05\x14\x96\x76\x3b\xf5\x70\x4a\x6b\x59\xe4\xae\x70\x6f\xc1\x09\xb4\xad\x44\xbc\xdc\xa9\x37\xce\xe4\x10\xab\x5d\x2e\x00\xc1\xc5\xb7\xce\x66\x11\x2c\x23\x07\xd7\x57\xbe\xb3\x3c\x6a\x02\xe4\x4f\xc8\x25\x05\x0f\xec\xb2\xf5\xd8\x74\x96\x51\xb3\x67\xa4\xbc\xdd\x17\x2c\x37\x32\xaa\x2f\x6a\x27\xd7\x0d\x65\x46\xbd\xab\x04\xa8\xa2\x9b\xd6\x16\xab\x2a\x4e\x8c\x5f\xf9\x26\xee\x5c\xe3\x44\xdf\x08\xe8\x6f\xa6\x98\x0f\x9f\x98\x33\x13\xa2\x26\x32\x0f\xeb\x04\xc9\xe4\x61\xd6\xe5\xb0\x31\x1f\x18\x12\x42\x7d\x01\x03\x22\xd4\xbe\x9d\xce\xa4\x60\xc2\x19\x37\x84\xec\x0b\xd7\xb8\x87\x0d\x0d\x65\xc8\x4a\x3e\xa4\x23\xa7\x83\xb8\x82\xd7\x5a\x66\x0f\xce\x4e\x19\x65\xf4\x03\xac\x97\x1d\xe0\x99\x65\xe7\x56\x78\xa1\x22\x0d\x0e\x05\x30\xb1\x54\xb0\x33\x15\x1b\x73\x6d\x58\xec\x76\x8b\xbf\xdf\x1b\x9e\x60\x49\xde\x59\xb6\xf4\x8d\x78\x82\xab\x18\xd7\x88\x26\x9b\xe0\x7a\xcd\x67\x2c\xed\x86\xef\x96\x13\x43\xc9\x77\x9e\x46\xb1\x85\xa5\x43\x8e\x34\xe0\x2b\xda\x43\x20\xad\x0e\xb9\xf8\x61\x93\x42\x61\x3b\x8f\xf5\x05\x5b\x34\xa6\x39\x55\x54\x18\xc6\x74\x5f\x60\x94\x31\xa6\x40\x94\x62\x9e\x46\x25\x04\xc9\x42\x96\x4a\xa4\x36\x18\x60\x09\x9f\x8c\x28\xcf\x72\xd5\x28\x22\x20\x59\x6e\x15\xcd\xb1\x6c\x99\xce\xa0\x59\x52\xb7\x6b\xc1\x35\x1c\x1d\xa3\x10\x94\xe4\x8b\x6f\xf9\x02\x61\x65\xcf\x69\x13\x14\xb0\x53\xf6\xd6\xdf\xf0\xa0\x1f\x36\x78\x8b\xff\xa2\x07\x33\xb9\x01\xcb\x73\x35\x3f\xea\xb9\x0f\xd5\xf7\x10\xc7\xb3\x4a\xf0\x59\x6d\xcd\xf8\xd3\x4f\xab\x21\x66\x1b\xd9\x0e\x10\xdc\x84\x8a\x14\xea\x77\x52\x13\xd9\x2e\x90\x50\x1c\xf9\x02\x70\x9f\xf1\x7c\xad\xd9\xd1\x01\x76\xc3\x41\xb2\xe0\x74\x5a\xb1\x54\x55\x6f\xd5\x0a\xe7\x45\xa9\x97\xb2\x0f\xa9\xce\x76\x59\xc4\xf2\x3a\x04\xc9\x70\xd6\x9a\x89\x67\xc4\xc7\xfb\xcf\xaa\x5b\x17\x53\xb3\xa8\xd7\xba\xc8\xe4\x12\x77\x88\xdc\xd5\x13\x50\x34\x77\x3c\x46\x60\x73\xb6\x7c\x28\xce\x5d\xec\x0b\x07\x31\x0b\x2f\x22\x4e\x31\x86\xe7\x6a\xf2\x63\x70\x44\xfe\xf8\xef\x3e\x38\x73\x4e\x46\xb0\xd6\x10\x01\x2d\x93\x24\x57\x00\xe9\xe9\x2b\xfb\x32\xbc\x56\x36\x49\x31\x6f\xe3\x65\xaa\x81\xb9\x40\xa0\x67\x73\x95\x4a\xa7\x14\x95\x26\xd5\x03\x59\x18\xc1\x72\xc3\x35\xe6\xe0\x68\x94\x36\x44\x1b\x36\xab\xe5\x27\x25\x79\xa9\x7c\x13\xec\x94\x45\x58\x07\x6b\xbb\x3a\x5b\xf9\x23\x9d\x2d\x43\x1c\xdd\xb9\xc5\x55\xdb\x10\xc2\xc7\xaa\xd7\x1c\xa0\x6d\x02\xca\x8a\x43\x0a\x5d\x5c\xbd\x90\x71\xfd\x2c\x51\xd2\x9b\xe0\x9f\x87\xc4\x7b\x57\x39\x60\x19\x6f\x2b\x7f\xba\x79\xcc\x50\x11\x1e\x8c\xaf\x39\x40\xef\x21\x66\xcb\xc7\x09\xfe\xdb\x00\x30\x54\x37\xc6\xb7\xb5\x64\x3b\x76\x4c\x3e\x2e\xf0\x22\x9e\x31\xf7\xf8\xd3\xc2\x12\x6d\x9a\x7a\xfc\x10\x63\x2d\x80\xec\x55\xc4\x76\xac\xa5\x91\x86\x94\xe3\x4f\x65\xc0\x8c\xd2\x12\x4b\xbe\x16\xb2\xc8\x62\x85\x61\xb8\xa1\x52\x26\xa4\x61\x84\x12\xc1\xb3\x13\x91\x67\xd9\xc9\xa5\x14\x96\x31\x6b\x3e\xc6\x78\x14\xb0\x48\x62\x79\x9e\xa2\xcc\x4b\xc9\x14\x1d\x1d\x01\x60\xce\x76\x48\x68\x25\x37\x96\x63\xda\x2d\xc8\xe6\x7d\x61\xbf\xc0\x7b\x04\xab\x63\xf0\x10\xba\x8e\xbd\x79\xb8\x52\xd7\x17\xe4\x71\xce\xe3\xc6\x6b\x08\x6c\x19\xc2\xe7\x4e\x31\xe3\x87\x3a\xd8\x2f\xa6\x0e\xb6\x54\xde\xb2\xbb\x41\x45\xec\xe6\x43\xb5\x75\x49\xea\xa0\xe8\x04\xb1\x75\x0d\x7a\xfc\x9a\xee\xb6\xa7\xc4\x7b\x2d\xc0\x5d\xdd\x6f\x9b\x22\xb8\xfa\x95\xda\x87\xd7\xe1\x37\x4c\xe8\x1e\xc8\x91\xaf\x63\xbd\x7d\x12\xfa\x9a\x66\xdf\x38\x8b\x26\x4e\x3d\x5f\x24\x92\x26\xbd\x57\x8a\x81\xd3\x8c\xd7\x1b\x6c\x75\xc1\xae\xc4\x7b\xfc\xfc\x5a\x66\x3c\x59\x6e\x2b\xf7\x57\x13\x54\x13\x58\xf0\x94\x40\xdd\x0d\xe6\x8b\xe6\xb9\x41\xa1\x11\xd8\xb0\xc4\x14\xa6\x9f\xc5\xc9\x6d\x62\x4a\xf4\xea\x42\x68\x05\x50\x8e\x8a\x72\x28\xf6\x5a\x81\x60\x62\xc8\xa3\x42\x41\x1a\x80\xf9\xe9\x0c\x7c\x33\x4e\xbf\x28\x0d\x04\x78\xd3\xe3\x44\x66\xec\x08\x6d\x4b\x60\x88\xee\x8b\xff\x8f\xbd\x6b\xeb\x71\xdb\xb8\xfe\xef\xf9\x14\x83\xbc\xd8\x06\xb8\x0a\xf0\xff\xa3\x2f\x79\xdb\x7a\x1d\x64\x03\xd7\xdd\x7a\xe3\xa4\x40\x18\x68\x47\xe4\x48\x62\x33\x1a\xaa\x43\x72\x37\x0a\xd0\xef\x5e\xcc\x39\x67\x6e\xbc\x88\xa4\xa4\x75\xdc\xc4\x0f\x41\x00\xaf\xc8\xb9\x70\xe6\xdc\xcf\xef\xb7\x17\x3a\x2b\x8d\x93\xc6\xf2\xf2\x89\x8a\xef\x0a\x99\xfb\x6e\xe5\x97\x90\x17\x83\xe8\xf5\x2b\x82\x64\x11\x2e\xf6\xe7\x48\x31\xc6\x8f\xad\x85\x65\x3c\x17\xee\xe3\x52\x81\xee\x63\xa7\xe0\x47\xca\x95\xe1\x56\x10\x88\x7d\x2b\x88\x63\x36\x3d\x9a\xcf\xbc\x2f\x2c\x5c\x1f\x2a\x28\x18\x64\x50\xa9\x5b\xdf\x95\xba\x22\xda\x5b\x09\x05\xf6\x88\xc7\x83\x01\x66\xe3\x20\x42\x3e\x93\xa3\x19\xe2\xcb\x5d\xe9\xa3\xa6\xca\xc7\xad\x5e\x54\xa1\x49\xd2\xfb\x9d\xb1\x7e\xbc\x00\xb4\xb3\x4c\x24\xec\x45\xb4\xd0\x17\x50\x80\xad\x4a\x18\x8f\x02\x14\xd1\xd6\xc0\x71\x4d\x58\x51\xa7\xaa\xa8\xf0\x64\x6a\x21\xc5\x23\x57\x31\x39\x2b\xc5\xc2\xa9\x4f\xde\x2d\x1b\xb2\xb1\x9c\x4a\xbe\x73\x87\xe6\x09\xa5\x4e\x3a\x2c\xe4\xe5\x50\x30\x06\xcc\x06\x8d\x82\x36\x54\xf1\x2b\xf2\x47\x18\x47\xf7\x51\x68\x5d\xe4\xb9\x19\xce\x13\x9b\x10\x60\x18\x30\x17\x1f\xca\x06\xe9\x9e\x72\x22\x50\xb5\x8d\x89\xae\xaa\xaa\x40\x63\x74\x55\xd6\xdb\xe8\x43\x10\xa2\x10\xde\x24\x61\x5c\xec\x1a\xf8\xb0\x60\x5f\x95\xe0\xf5\x96\x15\x75\x02\xe5\x70\x56\x70\xa4\x8a\xe7\x04\xc8\x48\xaf\x2b\x1c\x61\xed\xf0\x77\xa6\xbf\xaf\xca\xc7\x63\x36\xdd\xb9\xc9\x16\xbc\xd5\x7b\xc9\xd5\x12\x05\xea\xef\x90\x6e\x09\xc0\x9e\x86\xe2\x58\xcd\x6a\xe9\x78\x16\x2e\x32\x4f\x67\xe9\xbc\x8f\x20\xd8\x8c\x09\x67\x07\x4a\xda\xec\xf4\xd6\x32\x87\xb6\x64\x9b\x17\x28\xa4\x11\x16\x14\x25\x9b\x2e\x05\x7c\xca\x88\xb7\x02\xc4\xf6\xb4\x8e\xe5\x8c\xec\x09\xf8\x54\xf3\x46\x53\xbe\x7c\x4b\x87\xb4\x3f\xfb\xfc\x94\x45\xc7\x60\x3a\x29\x6d\x31\x32\xad\xe7\x4d\x5d\x0c\x86\x10\xba\x29\x8c\x1f\x1d\x2f\x95\x8b\x29\x63\x09\x82\x60\x55\x69\xfc\x1a\x1b\xe1\xe8\x07\xf3\x6a\xd5\x0b\x3e\x6b\x55\x73\x0c\xf9\x3f\xb9\xf3\x12\x09\xb2\xd8\xad\x72\xac\xc6\x09\x4b\xbf\xc4\x93\x55\xa5\x5f\x22\x9a\xb9\xc5\x84\xb3\xec\x5b\x74\x7f\xf2\x88\x63\xd1\x45\xda\x31\xf7\xee\x2f\x1c\xb1\x42\xcd\x8a\xe6\xfd\x9e\xb4\x57\x41\x5b\x2a\x96\xe7\xac\xf0\x05\xa4\x26\xd1\xe7\x3c\x58\x4e\x2c\xc0\x2d\xd5\x4d\x56\xfb\x05\x3b\x0a\xa1\xbf\xda\x07\xcd\x16\xed\x1b\xd2\xa8\x8e\xb2\xa7\xd4\xa9\xb2\x6f\xf3\x4c\x9e\xd7\x52\x76\x5e\xd5\x65\xcf\x0a\xce\x2a\xc4\xa8\x2d\x60\x04\x00\x91\xf8\x6a\xf3\xb6\x1c\x80\x98\xf7\x4a\x78\x34\xcb\x05\xf3\xfc\x6d\x60\x7a\xb4\x88\xa2\x42\x9e\x28\x29\x2d\x49\x12\x5a\x6d\x01\x33\x4e\xd5\x40\x19\xf7\xba\x31\xe2\x28\xa8\x75\x4f\x15\x70\x86\xad\x0b\x73\x49\xec\xbe\xa4\xea\x6f\x25\xd5\xcc\x83\x79\x65\x17\x69\xeb\xe0\x69\xdb\x5e\x38\xdc\x0c\xfa\x87\x1b\x50\xdb\x6b\xcc\x33\xb7\x90\x54\xa1\x3e\x04\xaa\xd8\x12\x63\x7b\x68\xbf\xa8\x8c\xab\x54\xfd\xcb\x6c\x8f\x25\xc2\xa2\xcf\x5a\xae\xf1\x12\x5b\xe4\x59\xf6\xf2\x01\x5f\xfa\xf2\x2f\xaf\x1e\x5e\x21\xcd\x60\x53\x01\x56\x51\x12\xab\x10\xd7\xf6\xd4\x48\x09\x35\x94\x76\x05\x6b\x5d\xee\xb0\x4b\xd3\x0d\x71\x94\x17\x83\xbc\x9c\x99\x74\x41\xa3\x44\x41\x3e\xf2\x7a\xcd\x32\x5e\x67\xdb\x2b\x6b\xcd\x85\xe4\x60\x01\x25\x39\x58\x8e\xc6\xd6\xea\xef\xfc\x31\x1e\x98\xde\x39\x2c\xd0\xe8\xbc\x98\x25\x10\xd5\xbc\x68\x83\xa0\xda\x91\xe0\x70\x7a\x18\x4e\x6f\xe9\xb9\x9f\x5b\x20\x92\x80\x5a\x1d\x43\xc4\x8a\xef\x44\xce\x52\x6c\xdc\x4f\xbf\xb4\x9f\x3f\x55\xfb\xd5\x42\x1e\xd6\xf5\x02\x9a\x18\x16\x66\x5b\x16\xd0\xad\x3f\xa2\xe9\x96\x79\xd7\x55\x1a\xd9\xee\x41\x67\xab\xdf\xde\x71\xbb\xe3\x46\x9a\x6e\xb4\x60\x88\xc7\xed\xcf\x7d\x9c\x03\x8a\x3b\xc7\x80\x4e\x89\xc8\x9f\x8c\x91\x1b\x18\x56\xfe\x7e\x22\xd9\x06\xab\x6a\x5e\x17\x19\xa2\x6e\x29\x2e\x0f\x00\x07\x94\xa4\x2a\x2f\x34\xba\xd6\x3c\x3b\x64\xb2\xc8\x88\xc8\x29\xb6\x85\xc4\xa3\x50\xf5\x9b\x5f\x6b\xa1\x15\x97\xb6\x8c\xf7\x56\xad\xcb\x73\x0c\x22\x41\xef\x3b\x0f\xc1\xf8\x36\xb6\x78\xa0\xe5\x18\xdf\xeb\x03\x8c\x96\x8d\x1f\xbc\x6a\x5b\x70\xe0\x8e\x78\x42\xf8\x1f\x1c\x3a\x12\xfe\xd1\xac\x4a\x29\xd8\xbf\x1b\xa1\x0f\xec\xf6\x86\x95\x1a\x7a\x27\xeb\x92\xfe\xa9\xc8\x67\x81\x75\x22\xff\x28\xa5\x02\x1d\xdb\x69\xcb\x1e\xea\xcc\xb8\xf2\xf0\xc4\xa5\x76\x7c\x96\x41\xb0\x33\x5e\x41\xdf\xd7\x8a\x5a\x0c\x00\x72\xed\x63\x19\xaf\x43\xcd\x0d\xfd\x77\xe5\xc3\x80\xe1\xea\x28\x12\xe3\x18\x67\xfb\x52\xd3\x3e\xe9\x53\x39\x6d\xb0\xfb\xd2\x46\x1f\x4a\x5d\x6c\x0a\xc5\xeb\x52\xb3\x97\x77\xb6\x65\xe9\x95\x6b\xb3\x85\x5d\xec\x9f\x46\x2b\xba\x3a\x67\x8b\x30\x32\xdb\x6f\x1a\x41\x36\x59\xe4\xcb\x6e\x4d\xf9\x5c\xc8\xd0\xd1\x6a\x09\xf3\xab\xaa\xe6\xbb\x7d\x08\x19\xe8\x80\xac\x68\x67\x24\x6e\x02\xb3\x13\x03\x27\xbc\xa8\x7c\xf1\x5a\xaa\x28\x74\x85\xdf\xad\xd4\x3d\x58\xd8\xed\x55\x82\x98\x5f\x9e\x58\xb1\x4f\xec\x93\xe3\x4f\x1f\x0d\xef\xbf\x7f\x6b\x23\x7a\x5e\x6d\x47\x7a\x10\x16\x2a\x54\x06\x52\x15\x2a\x93\xb7\x51\x71\x74\xaa\x7c\x61\xf2\x6b\x59\x36\x39\x23\xd9\x43\xa9\x02\xbd\x60\x85\x58\x24\xac\xfa\xff\xaf\xbf\xfa\x6a\xb1\x18\xd8\x89\xb9\xd8\x34\xee\x7e\xc3\x73\xfd\x27\x1c\xfe\xd6\x5b\xf8\x3f\x72\xb5\x22\xd2\xc5\xe5\x3c\x3f\xd1\x22\xfb\xc0\x69\x09\xe3\x28\x71\x59\x6b\x7b\x48\x47\x44\x79\xce\x70\xb6\x3e\xf6\xf8\x50\x7b\xae\x85\xaa\x97\x30\xe2\xbc\xc1\x60\x90\x3b\x78\x3c\x6a\x68\x9a\xe4\x0f\xff\xf4\x7d\x89\x61\x0e\x5b\xd5\xfc\x73\x40\x19\x4b\x28\x81\x46\xb6\xbf\x2c\x20\xeb\x18\x84\x84\xc7\x38\x32\x69\x41\x27\xec\x5e\xb0\xa0\x48\x30\x4d\x5a\x90\x9f\x3d\x36\xf8\x3b\x3e\x54\x57\xd8\x69\x04\x85\xfd\x37\xaf\xb2\xb0\x68\xd7\x27\x27\x18\xaf\x19\x92\x47\xff\x26\x74\xe9\xbb\x55\x09\x79\x3c\x78\xf1\x91\x0a\xff\xc3\xf2\x74\x28\x1d\x84\xc8\x43\x10\x97\x10\xc5\x00\xfe\x85\x0a\xc7\xd1\xa8\x5a\x1d\x6c\xa5\xff\x30\xf8\xf0\xf2\x04\x6e\x06\x37\x95\xc0\xa6\x09\xa4\xa7\xf5\xfb\x9c\x28\xb6\x17\xf4\x2b\x30\xd9\x8c\xf9\x6d\x6c\x0d\xbe\xa7\x0c\x3f\xd1\xd9\xb7\x63\x58\x0b\x58\xc4\x4f\xff\xfc\x79\x31\x84\x90\x05\x53\x3f\x99\x81\xeb\x1b\x4b\x47\xa8\x05\xcf\x3d\xc3\x43\x48\xe0\x30\x86\x7e\x35\x7a\x20\xcf\xb0\x64\xce\xf9\x2e\x5d\x5b\xc5\xe1\x5a\xf8\x23\x5e\xe4\x21\xbc\xa9\x3b\xe0\xf4\x79\x1c\xc0\x7f\xb9\x66\xe0\xb1\x0c\x58\x4b\x0b\x9a\x67\xcf\x08\x33\x76\xaf\x5f\x3e\x7d\x24\x3b\x70\xa8\x87\x77\xca\xf4\xad\x8f\x71\x57\x96\xf2\x5c\x3f\x83\x4b\x8b\x18\xb3\x84\x06\xfd\x73\xec\x04\x3c\x00\xce\xb1\xb8\xbd\x71\x31\x2f\xd7\x14\x0b\x72\x3a\x80\xc7\x81\x84\x0c\x4d\x01\xd2\x20\x48\x0f\x35\x5c\xa6\x50\xed\x7b\xc2\x9e\x33\xcb\x2d\xe0\x1d\x98\x2f\x71\xd8\xb3\x1d\xc7\x27\x28\x11\xe5\x7e\x8e\xd0\x38\xd4\x9a\xe1\x2c\x2f\x07\xdb\xe9\x5b\x43\x39\x8f\x27\x6c\x30\x74\xfb\x18\x8c\x6d\xf7\x13\x41\x7c\x8c\xcb\x44\x0a\x24\x55\x81\xb2\xc0\xce\x1d\x5b\xcf\xe2\x76\xad\xcf\x11\x8a\x8e\xe1\xd9\x8e\xd0\x39\x5d\xe4\x47\xdd\xd8\x9b\x10\xac\x01\xa2\xb1\x59\xb9\x5b\x19\x67\x04\x41\x96\x28\x1d\x02\x5a\xee\xda\x76\x14\xba\x76\x28\xab\xad\x10\x9f\xad\xb5\xf7\xae\x96\x24\xec\x77\x0a\x45\x56\x6f\x16\x7d\xc0\xb4\xb8\x6c\xc3\x7b\xbf\x9c\xbd\x6e\xaf\x00\x70\xc8\x9f\xf8\xa1\x02\x64\x0b\xe3\x15\xaf\xd7\x9e\xb8\x27\xb4\xd2\x9d\x9f\xe6\x1a\xc0\x08\x26\xaa\x21\xc0\x1b\x5a\x4b\x41\xdc\x6d\xd2\x62\x78\xf8\x4e\x91\x17\x55\xff\xe6\x3c\x77\x77\x7e\xff\x5e\xc0\xfb\x5d\x0f\x29\xc1\x04\x47\xf5\xcf\x09\x7a\x16\xff\xe7\xcb\xd6\x45\x56\x2a\xd7\x77\x7a\x11\x87\xb5\xa7\x73\xbf\x7f\xba\xf0\xb7\x0e\xbe\xf0\x98\xf7\x7c\xa6\x13\x1f\xa8\x49\x5d\x66\x84\x97\x5c\x33\x00\xbc\x42\x71\x6c\xc6\x4e\xd8\x8e\x17\x8a\xae\x41\xad\x8d\x80\xcc\xc5\xaa\xd9\x6c\x06\x7d\x4b\x59\x6e\x9e\x35\x2d\x61\xfb\xdc\x83\xdf\x0f\x94\xc4\xcb\x63\xbd\xdb\x23\x27\xf4\x0f\x14\x44\x38\xda\xeb\x74\x89\x30\xc0\xad\x1d\x09\x43\xcf\xeb\x42\x8a\x8f\xe3\xf9\x5f\x28\x8c\x71\x3b\x25\x8c\x61\x73\x17\x50\x3f\x89\xeb\x70\xd1\xe5\x3f\x51\x7c\x03\x7b\x4a\x96\x45\x6c\x5e\x1e\x99\xd2\x89\x4d\x5f\xae\x4d\x15\x2e\x2b\x21\x26\x55\x42\xe5\x15\xe0\x81\x5f\xbe\x0b\x0c\x64\xfb\xf9\x2d\x56\x23\x78\xf8\xf7\xe5\x4e\x30\x18\xaa\x42\xe4\x11\x46\x05\xa0\x09\xe4\x3a\xcd\x02\x3d\x48\x1d\x5c\x78\x4a\xe6\x65\x5b\xae\x36\x22\xf7\x26\xe1\x4b\x25\x9e\x98\x91\xb5\x49\x98\xfc\x09\x3e\x4f\xc2\x44\x9d\xbd\x22\xc8\x53\x5f\x2b\xa2\x45\x56\xea\x1c\x5a\xff\x37\x5c\xe7\x50\xa1\x44\x07\x5e\xf2\xec\x17\x20\xdd\x02\x75\x84\x23\x52\x82\xca\x76\xc7\x63\xd2\xd4\xbf\xad\x50\x19\xc2\x4f\x3a\x1e\x6c\x3b\x3f\x7c\xbc\x62\x3c\xd3\x65\x45\xac\xbc\xc4\xb5\x44\x24\x3f\x01\xcf\x09\x8c\x38\x18\xa2\xe0\xd5\x59\xdd\xfe\xd7\xca\xd7\x1b\x88\x5f\xf7\x92\xab\xf8\xc4\xe3\x72\x6b\xcd\x01\x06\x75\xd0\x9e\x73\x7d\x78\x1f\xb5\x15\x38\x84\x31\xf4\xd7\x0a\x6d\x3b\x2d\x78\x7e\x08\xbb\x95\x0a\x45\xd8\x64\x3c\xdf\x15\xca\x7c\x7a\xa3\x5d\x90\xf7\x86\xa4\x57\x8e\xec\xe9\x12\xd3\xb4\x00\x3d\x63\xe4\x56\xa4\x11\x2b\xa6\x84\x31\x08\xb8\x2e\xe4\x01\x6c\xc0\xbd\x16\x57\xc1\x38\xc1\xfd\xa6\x3a\xb1\xa2\x4a\x15\xce\x1d\x58\xf3\xd6\x8d\x44\x4b\x11\x7c\x29\xb7\x00\xba\x87\x1f\x6e\x13\xa3\x24\x6a\x02\x7c\x08\x06\x86\x33\x7b\x91\x9a\x9b\xae\x17\x33\x29\x30\xe7\xbb\xe8\x34\x14\x04\x6c\xcb\x27\x5b\x18\xf8\xc4\x7d\xde\x77\x8e\x9b\x77\x47\xb2\xcb\xba\x70\x41\x96\x18\x14\x7a\x04\xba\xff\x4d\xa9\x09\x94\x01\x84\xc3\x1d\x61\xfb\x7f\x5b\x3c\x8a\x84\xdd\xef\xb9\xfe\x25\x61\x37\x07\xc5\x77\x45\xf6\x5d\xb9\x1a\xf5\xdc\x2e\x11\xbd\x70\x06\xc6\xec\xe8\x56\x6f\x1c\x20\x09\x7a\xf6\x83\x18\x57\xd7\xcf\xb6\x09\x3c\x73\x62\x08\x8d\x73\x48\x41\xda\x9c\xa8\xee\xa1\x12\x62\x97\xb4\x3f\x87\x53\xba\x83\xd6\x68\x5b\x02\x78\x59\x4d\x55\xb3\x7d\x89\x4c\x23\x23\xa1\xd8\xd7\x2c\xfc\x0a\xb4\x5e\xa9\xd9\x5e\xf2\xda\x9c\x15\xcb\x97\x83\xa7\x02\x73\xaf\x28\xed\x5b\xb5\xd0\x9d\x4d\x1d\x14\xb1\x38\xf0\x72\x5f\x96\xb2\x57\xb7\x5f\x74\x03\x3b\x71\xaa\xa9\x9b\x77\x8b\x35\x64\x55\xa8\xf1\xec\x2e\xfa\x98\x87\x8f\x90\x04\x98\xc6\x70\x9a\xf2\x46\x23\xc7\x87\xdd\x8e\x85\x0f\x30\x72\x63\x7c\x63\xc6\x1b\x95\xdc\x4a\x64\x1c\xba\x5c\xad\xf5\x81\xfc\x43\xc8\x5b\xee\x74\x74\x4f\x34\xa6\xea\x8e\x33\x60\x72\xc0\x7b\x97\x45\x5f\xd3\xd3\xdc\xcb\xf5\xfd\xb6\x37\xc4\x8a\x33\xb7\xe1\x21\x5b\x75\x34\xd6\xd4\x6c\x8b\xac\x97\x99\xe4\xd5\xc4\x8a\x8f\x5e\xb9\x73\x4b\x2f\x7a\x0d\xef\x99\x2e\x33\xbf\x85\x68\xd8\x6e\xa2\x30\x4e\xd5\xb5\x6b\xea\xf5\x6a\xdc\x99\x1e\x28\x66\xd1\xe8\xea\x7c\x1a\x2c\x65\xf2\x1d\xe0\x09\xab\x9a\x6c\x0b\xc5\x5a\xb1\x9c\x0a\xe5\x56\xf7\xc6\x26\xa9\x32\x8a\x10\x11\xbc\x38\x64\x44\x9e\x8c\xba\xab\x8a\xdf\x84\xd3\xb4\x68\x12\x45\xca\x75\xc5\xcd\xa7\x21\x18\xee\xb6\x21\x62\xeb\xe6\xb8\xfe\x45\xe4\x41\x90\xa6\xd9\x1b\xe7\x72\x91\xba\x6d\xc6\xf3\xeb\x89\xa3\xc8\xb2\xa9\xc2\x85\x85\x86\x58\x4b\xd2\xca\x62\x2d\xb2\x43\xd6\xe9\x01\x8d\xf2\x90\x97\x8b\x06\x9e\x16\x0c\x3b\xd6\x2b\xd8\xef\xe3\xfc\xd8\xe9\x77\x61\x43\xc9\x9b\xff\xcd\x82\x88\x81\x76\xb5\x3f\x7a\x3c\x63\xa4\x08\xfa\x73\x6d\xc3\x45\x7d\xff\x2f\xc2\xff\x5b\xc9\x60\x4b\x07\xc0\xcf\x20\x7b\xb4\xb7\x60\xe1\xd3\x2a\xfd\x2f\xf2\xf0\x44\xd6\x5b\xd1\xd3\x01\x30\xed\x90\x51\x83\x45\xee\x9a\x3f\xe6\x60\xc7\xe0\xa3\x76\xbf\x5e\xcb\xb2\x6a\xf4\xf1\x6b\xf5\x3e\x9e\xb5\x1d\xdd\xaf\x26\xc2\xf4\x11\xbb\x95\x80\xbe\x9e\x1c\xbf\x4c\xef\x62\xc6\x54\xb0\xf1\x44\xda\xcf\x53\x2a\xff\x49\xb0\x8c\xef\xa1\xbe\xb2\x1f\xe9\xb0\xf3\x5c\xe0\xb9\x82\x4e\xdb\x88\x50\xbf\xb6\xd4\x4e\x74\xb8\xa2\x1c\xc8\x27\x55\x8c\xd7\xeb\xdd\xb4\x7a\x8f\xa3\x20\xc7\xa4\xac\xd1\x25\x22\xb2\x77\xbc\xde\xa2\xfb\x0d\xa8\xdf\x98\x41\xac\x8d\x69\x82\x38\xb4\x18\xa6\x5d\xc9\x72\x05\xe0\xa5\x75\xa9\x07\xd9\xfc\x33\x3a\x9c\x93\xb6\xae\xfb\xc1\xa6\x9c\x6d\x73\x1f\xa0\x96\x5a\x8b\x0a\x9a\xea\xba\x79\x90\x4e\x59\xe3\x45\x42\x04\xdd\xe9\x1a\xb1\x75\xd3\x09\x11\x74\x21\x76\x8c\xbc\x84\x4a\x9c\x37\x47\x04\xe6\xd0\xc5\x7a\x13\x56\x23\x73\xe0\x62\xa9\x81\xec\x12\x13\x8d\x55\xa1\x36\x52\xb4\xd6\x6b\xd1\xa1\x53\x75\x8d\x7f\x09\x09\x8a\x3d\x0a\x9c\x2b\x76\x21\x20\x50\x77\xff\xb0\x3c\x99\x5d\xdb\x76\x43\x68\x6b\xe3\x94\x08\x73\xbe\x0c\x04\x1e\x12\xcb\x78\xac\x8d\xa5\x5a\x81\x22\xae\x9a\xd5\x95\x6f\x3e\x2b\x35\xa8\x6e\xe8\x4d\xdc\x73\x0d\x28\xcb\xdb\x42\xe6\x57\x3d\x0d\xc6\x18\x3d\xf4\x90\x50\x16\x9f\x80\x4b\x12\x5f\xe0\x71\x61\xef\x83\x5b\xbb\x7b\x8f\x31\x9c\x05\xcf\xb6\xae\xee\x1e\xc5\xf5\x31\x79\x11\xb9\x21\xbf\x77\xd1\xc6\x84\xaa\x88\x01\x90\xc7\x3f\xbe\x9c\x88\xf6\x6c\x8a\x9c\xf8\x3e\x76\x5a\xec\xad\x31\x6e\x17\x49\x8e\xa1\xad\xaa\x96\x98\x9a\xfe\x08\xcd\xd9\x3e\xe6\x52\xed\xf9\x93\xa2\x96\xaf\x59\xc5\xef\xd3\xe4\x43\x3f\x7a\xbc\x91\x0f\x9d\x72\x95\x90\xca\x1c\x3d\xfb\xba\x70\x90\x99\x49\x80\x0d\xcc\xa5\x0c\x71\x9a\x7c\x90\x25\x55\xde\x15\x37\xea\x5f\x4a\xf3\xff\xac\x2d\xb8\xa9\xc5\x2f\x87\xb6\x09\x91\xd8\xfe\x24\xea\xed\xa7\xe0\xff\x15\xba\xbc\x83\xdc\xf4\x9d\xdb\x7c\x29\x7b\x32\xe3\xd9\x56\x2c\xcd\xd4\x9a\x19\x4d\x2c\x44\xb4\xfe\xda\x3c\x7c\x8f\xcf\x1e\x55\x66\x68\x17\xa1\x99\x86\x63\x41\xd1\x1a\xcf\xa0\x17\xdb\xc5\x3a\xc7\xae\x77\x86\xc3\x2e\x7b\x78\xe7\x46\xe7\xda\x1f\xe8\x0e\x28\xe9\xe0\x32\xdb\x0e\x99\x8c\x6b\x6d\x0b\x51\x69\x54\xc6\x75\x5d\xac\x79\x16\xc5\xa6\x27\xa1\xb3\x44\x1a\x12\xdf\x58\x41\xca\xd4\x53\x79\x5b\x51\xce\x99\x83\xe4\x1d\xfe\xfe\x97\xf6\x29\x84\x17\xd2\x97\x89\x3c\xcc\xde\x14\xce\xa2\x06\xf9\xde\xa5\x07\xcc\xae\x67\xac\xf5\xc4\xd6\x80\x79\xf8\x69\x01\xdd\xea\x74\x09\xd7\xc1\x40\x25\xaa\x51\x24\x67\xa4\x2e\xe3\xba\xdd\x16\x07\x5b\x88\x25\xc4\x8f\x22\xf7\x2d\x83\x01\x6e\x84\x51\x51\x7c\x23\xd8\x4e\xe4\x45\xd3\x86\xe7\x8b\xca\xdd\x3f\xfb\xac\x7f\x3e\x9f\x15\x92\xeb\xcf\xe9\xb0\xf6\x37\x52\x7c\x56\x59\x9f\x80\xca\x0a\xe6\x49\xdf\x7a\xe6\x2d\x98\x2c\x3d\x8e\xe7\xaf\xbc\x52\xf4\x96\xa2\xcb\xd9\xf1\xee\x39\x0c\x43\x2d\x75\xb8\x07\xc6\x40\xef\xbb\x1a\xc3\x07\xf3\xd9\x74\xe9\xc5\xc2\xf8\x53\x94\xa9\xb9\xe2\x2e\xb0\xff\xce\x5e\x6d\x60\x44\xab\xcb\x63\x57\x3c\xc0\x31\xe1\xf5\x8b\xca\xed\x7a\x7c\x95\x6d\xb5\xd2\xdb\xa2\xaa\x7f\xe0\xb2\x39\x0b\xbc\x04\x7a\x16\x9e\x2d\x17\x6d\xa7\x8a\xd3\x0c\x9e\x38\x9a\x42\x7d\x1f\x27\x39\x8d\x5e\xc5\x33\x07\x4d\xce\x16\x12\xd4\xcc\x7b\x8e\xe0\x7d\x70\xfb\xf5\x80\xb6\xdd\x93\xe6\xfb\xbd\xd0\x36\x73\xd7\x49\xae\x02\xbe\x26\x8c\x92\x2a\x8c\x11\x7c\x77\xff\xf7\x77\x6d\xdd\x60\x64\x4f\xeb\xd5\xf0\x33\xd8\xba\x45\xff\x97\x7b\xd7\x48\x39\xf8\xe5\x26\xd0\xca\x7d\x78\xfb\x76\xf9\xc3\xf5\xdb\x0f\x6f\x8e\x42\xe3\x05\x3f\x1b\xdc\x13\x37\x13\xda\x13\xf4\xdc\x6a\xf0\xd6\x9a\x9d\xd0\xb6\x6d\xc0\xaf\x1a\x0d\xe4\x46\xca\x18\x22\x31\x55\x0f\xf4\x1e\x28\xb1\x69\x14\x46\x56\x52\xc5\x8e\x6e\x5c\x3c\x3e\xfc\xec\xc1\xbc\xfc\x01\x9f\xbd\x62\x7e\x11\x5f\xb3\x77\x6e\xd4\x81\x7d\xa5\xfa\xbd\x33\xae\x03\x22\x35\x0e\x5d\x87\x4b\x83\xc0\x9e\x76\x3d\x3e\x28\x4b\xa9\x4f\xd8\xad\x17\xb9\x1d\xb8\x77\x0f\x71\xd4\xce\xc9\xf2\x1c\x4d\x5b\x78\x6f\x82\xd0\x9d\xc8\xfe\xed\xd0\x2d\x53\x45\xb4\x90\x1c\xba\xec\x06\xe7\xc4\x6e\x29\x9f\x2d\xb9\xda\x34\x7c\x23\xaa\x84\xd9\xc1\x53\xb5\x2b\x36\x5b\xc0\x3a\xf1\x7c\xea\xd8\x0d\xc0\xeb\xe2\x51\xb4\x8e\x10\x96\x22\x51\x7f\x7f\xc2\x0a\x95\x2a\x5a\x93\xda\xf8\xd7\x63\x95\xd2\x77\xf7\x6e\x39\xe6\xa4\xb9\x17\x11\xfa\xa8\x4a\x95\x65\xbc\x07\x88\x39\x0a\x67\x80\xe1\x07\x1c\xd6\xd1\xd1\xe5\x5a\x58\xc0\x63\x90\xe9\x1b\x08\xac\xa4\xca\x95\xc4\xc3\x87\x8d\xd8\x68\xb0\x76\x11\xa7\x34\x2e\x4f\xec\xc7\xb0\x77\x82\xe6\xd6\x7f\xea\xcf\xd6\x01\xe6\xc2\x2d\x1f\x5b\x6f\x99\x70\x6c\xbd\x18\x9b\x68\x63\xf3\x40\x70\x0c\xf5\x49\x41\x1f\x44\xff\x6c\xec\xba\xf0\x37\x83\x49\xe0\xb2\x59\xc9\x19\x53\xc2\xdf\x1f\x9d\x14\x8a\xe4\xe3\x93\x9a\x10\xcb\x7c\xdf\xba\x5a\xe6\x98\x1e\x1b\x76\x55\x96\x03\xdf\xe5\x82\x51\xc1\x68\x52\xf4\xc0\xd8\x66\x34\x59\x7d\xca\x79\x99\x50\x5e\xdd\xde\x22\x2b\x7d\x8e\x4d\x48\x16\xd5\x49\xd3\xf1\xf6\xd3\xe4\x19\x39\x0b\x81\x94\xdd\x2c\x09\x4b\x7a\x2e\x12\xb0\x03\x62\x92\x62\x51\x94\x89\x10\x05\x8a\x17\x05\xbc\x8f\x9c\x7a\x85\x12\x77\x88\x12\xff\xe5\x12\x98\x64\xd6\xe8\xca\x88\x4b\x92\x77\x24\xb5\x4b\xcd\x78\xaa\x2c\xfe\x95\x15\xc7\xd7\x16\x91\x44\xbb\x7f\xc5\x92\xf5\x3d\xa2\xc7\x80\xc5\x5a\xb3\x52\x09\x2b\x0d\x53\x05\x20\xe3\x0a\xa2\xa6\xab\x0a\xe0\xff\x08\x4a\x9b\xfe\x10\xf0\x7e\x71\x85\x24\x91\xe3\x32\xaf\x65\x06\x44\x7a\xfe\x0b\xf3\xdf\x7f\xbe\xf8\x6f\x00\x00\x00\xff\xff\x21\xaf\xd1\x1f\x8e\xa1\x03\x00") +var _adminSwaggerJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xfd\x7d\x73\x23\xb9\x91\x27\x8e\xff\xef\x57\x81\x6b\x5f\xc4\x4c\xdb\x12\x35\x33\xde\x75\x78\xb5\x71\xf1\xfb\xb1\x25\x76\x0f\x6f\xd4\x92\x2c\x51\xdd\x3b\x77\xdc\xe0\x81\x55\x20\x09\xab\x08\xd0\x00\x4a\x6a\xda\xe1\xf7\xfe\x0d\x64\x02\x28\x54\xb1\x8a\xcf\x52\x4b\x3d\xdc\x8d\xf0\xb4\x58\x55\x78\x4c\x24\xf2\xf1\x93\xff\xfc\x1d\x21\x6f\xf4\x23\x1d\x8f\x99\x7a\x73\x4a\xde\xfc\xd4\xfa\xe1\xcd\x91\xfd\x8d\x8b\x91\x7c\x73\x4a\xec\x73\x42\xde\x18\x6e\x32\x66\x9f\x8f\xb2\xb9\x61\x3c\xcd\x4e\x34\x53\x0f\x3c\x61\x27\x34\x9d\x72\xd1\x9a\x29\x69\x24\x7c\x48\xc8\x9b\x07\xa6\x34\x97\xc2\xbe\xee\xfe\x49\x84\x34\x44\x33\xf3\xe6\x77\x84\xfc\x0b\x9a\xd7\xc9\x84\x4d\x99\x7e\x73\x4a\xfe\x2f\x7e\x34\x31\x66\xe6\x1b\xb0\xff\xd6\xf6\xdd\xff\x86\x77\x13\x29\x74\x5e\x7a\x99\xce\x66\x19\x4f\xa8\xe1\x52\x9c\xfc\x4d\x4b\x51\xbc\x3b\x53\x32\xcd\x93\x35\xdf\xa5\x66\xa2\x8b\x39\x9e\xd0\x19\x3f\x79\xf8\xf1\x84\x26\x86\x3f\xb0\x41\x46\x73\x91\x4c\x06\xb3\x8c\x0a\x7d\xf2\x4f\x9e\xda\x39\xfe\x8d\x25\xe6\x5f\xf0\x47\x2a\xa7\x94\x0b\xfc\xb7\xa0\x53\xf6\xaf\xd0\x0e\x21\x6f\xc6\xcc\x44\x7f\x12\xf2\x26\x65\x3a\x51\x7c\x66\xdc\xaa\xdc\x30\xa3\x38\x7b\x60\xc4\x4c\x18\xc1\xee\x08\x76\x47\x6c\x77\xc4\xaf\x9a\x9e\xb1\x84\x8f\x38\x4b\xc9\x70\x4e\xb8\x98\xe5\x86\x28\xf6\xf7\x9c\x69\x43\x46\x3c\x33\x4c\xe9\x96\x5b\x32\xe8\x45\xce\x98\x82\x79\x76\x53\xdb\xcb\x07\x66\xda\xd0\xf6\x05\x34\x7d\x9d\x51\x11\xbf\xad\x98\x9e\x49\xa1\x99\x2e\x0d\x95\x90\x37\x3f\xfd\xf0\x43\xe5\xa7\xc5\x19\xb4\x89\xce\x93\x84\x69\x3d\xca\x33\xe2\x5b\x8a\x07\x03\x1f\xc1\x26\xd3\x85\xc6\x08\x79\xf3\x3f\x15\x1b\xd9\x76\x7e\x7f\x92\xb2\x11\x17\xdc\xb6\xab\x91\x96\xa2\xd1\x96\xbe\xfa\xd7\xef\xea\xfe\xfd\xaf\x68\x46\x33\xaa\xe8\x94\xd9\x65\x09\xbb\x8f\xff\x57\x99\x8b\xdd\x2f\xdb\x79\xb1\xa7\xd5\x81\x57\x66\x7b\x49\xa7\x8c\xc8\x11\x6c\x97\xfb\x02\xfe\xad\x98\x96\xb9\x4a\x18\x19\xb2\x4c\x8a\xb1\x26\x46\x2e\xac\x01\x87\x16\x2c\xa9\x55\x9f\xd8\xad\xe4\x8a\xd9\xbd\x32\x2a\x67\x95\xa7\x66\x3e\x83\x41\x6a\xa3\xb8\x18\xc7\x4b\xf1\xaf\xa3\xb5\xa6\x86\x14\xba\xc1\xcc\xf0\x83\xc6\x89\xf5\x45\xdb\xbf\x92\x50\x41\x86\x8c\xd8\x73\xc9\x53\xa6\x58\x4a\xa8\x26\x94\xe8\x7c\xa8\x99\x21\x8f\xdc\x4c\xb8\xb0\x7f\x23\xf9\x26\x7e\xcd\x5e\xce\xda\xc0\x3f\x97\xaf\xcc\x9d\x66\xca\x0e\xfc\x81\xa7\x2c\x25\x0f\x34\xcb\x19\x19\x49\x55\x5a\x9e\x56\x5f\xf4\x26\x76\x1d\xa6\x43\x2e\xe0\xe4\xd9\xb5\xf4\x14\xf2\x47\xbf\x5c\x7f\x24\xb6\x3f\x92\x0b\xfe\xf7\x9c\x65\x73\xc2\x53\x26\x8c\x3d\xd7\xba\xda\xda\x1f\x25\xf4\x4f\x33\x72\x4c\xec\x3a\x33\x65\x60\xbd\xa5\x30\xec\x8b\xd1\xe4\x98\x64\xfc\x9e\x91\xef\x2e\xb8\x36\xa4\x7d\xdd\xfd\xee\x88\x7c\x77\x51\x30\x0e\xfd\xdd\x33\xac\x70\xf8\xf7\x7f\x47\x47\xcf\xd0\x71\xf5\xd0\xbd\x69\xdb\xd3\x7c\x8b\xd7\x44\xd1\xc2\x7f\xff\x2e\x6e\xc7\xed\xd7\x72\xde\x5b\x30\x5e\xc7\x75\x37\xe1\xb5\xef\x99\x49\x26\x2b\x18\xad\xde\x91\xd3\xda\xed\xa8\xb2\x5a\xfd\xba\x78\xad\x9d\xc2\x53\xf3\xdb\x5d\x98\x2d\x35\x70\x0a\x28\x17\x78\x68\xc2\x19\x2a\xef\x0c\xf9\x7a\x6c\x65\x17\x7e\x1b\xcd\x26\x62\xb9\x9e\x93\x46\x2b\xf1\x42\xe6\x9a\xf1\x29\x5f\xb5\x8f\x5d\x91\x5a\xb1\xcb\x31\x39\x91\x4f\x87\x4c\xd9\xa9\x7b\x76\x07\x33\x1c\x5a\xf6\x67\x72\x25\x58\xda\x30\xb5\xbf\xe7\x4c\xcd\x97\xcc\x6d\x44\x33\xdd\x34\x39\x2e\x0c\xb3\x72\x6d\xe5\xf1\x48\xaa\x29\x35\xee\x85\x3f\xff\xdb\xa6\x93\x37\xf2\x9e\xad\xda\xe7\x2e\xee\x5a\x42\x35\x6c\xf7\x34\xcf\x0c\x9f\x65\x8c\xcc\xe8\x98\x69\xb7\x0a\x79\x66\xf4\x11\xbc\x66\x65\x69\xa6\x8e\xc3\x6d\x03\x3d\xf8\x5b\x36\xd7\xf0\x0b\x19\x05\x46\x26\xd8\x17\x03\x2d\xf5\x05\xdc\xb3\xb0\x44\xf1\xed\xf1\x04\x4b\xb9\x1d\x9d\x68\xa9\xcc\x60\x38\x6f\xdd\xb3\x85\x7e\x1b\xa9\x85\x0a\x42\x8d\x51\x7c\x98\x1b\x66\xe7\x6d\xdb\xf0\xf7\x24\xb0\x3e\xbc\x8c\xb5\xbd\x7c\xaf\xce\xaf\xbe\xbf\xa7\x46\xc9\x31\x15\x6f\x4f\x49\x3b\x4d\x09\x0e\xd4\xbe\xc3\x53\xbc\x92\x27\x4c\xb1\x16\xe9\x4d\xb8\x26\x7a\x22\xf3\x2c\x25\x82\x3d\x30\x65\xd7\x96\x4d\x67\x66\xfe\xe2\x56\x2b\xe5\x8a\x25\xb0\x30\x9b\x9c\xb0\xf0\x95\x5d\x34\xab\xf4\xcc\x71\xe9\xee\xd9\x1c\x04\x97\xc5\xe5\x7b\x06\x7a\xa9\x3c\x65\x22\x9f\x56\xee\x0a\xf8\xfd\xbc\x73\x7b\xd6\xb9\x3c\xef\x5e\x7e\xa8\x7c\x61\xc5\x88\xf0\xa8\xf4\xe4\xbf\x17\xd6\x66\x44\xf3\x0c\x4e\x75\xd4\xda\xb3\x09\x2e\xc9\x84\x67\xa9\x62\xe2\xc4\x50\x7d\x3f\x60\x5f\x58\x92\xe3\x3d\xfb\xcf\xf2\x0f\x03\x2b\x7d\xca\x94\x95\x7f\x29\xfd\x51\x88\x3b\x1b\x7f\x1a\xb4\xd2\x8d\xbf\x04\x1d\x76\xbd\xef\xe0\x17\x9e\xd6\xbe\x0d\xbf\xac\x98\x83\x7f\x67\xc9\x60\xfd\x2b\x8d\xa3\xf2\x2f\x38\x01\xae\xf6\x1d\xc5\x8c\x9a\x0f\xa8\x31\xf6\x94\x6f\x21\x33\xc2\x96\x12\x3b\x5b\x52\xec\xa7\x13\x1f\x51\x50\x04\xde\x1d\x24\x47\x3b\x82\xe2\xcd\x55\xf2\xe2\xa5\x4c\x59\x27\x34\xfb\x5e\xaa\x1e\xd5\xf7\xaf\x41\x66\x2c\x0d\xfc\x39\xc4\xc6\x6d\x0f\xd0\x37\xa7\xd4\x6f\xc9\x0e\x0e\x26\x80\xdd\x57\x72\x5d\x83\x81\x54\x44\xcf\xb5\x61\xd3\x95\xa6\x83\xd7\xb3\x10\x8e\xdf\xbf\xd4\x01\x57\xae\x9c\xdf\xc0\xa9\x2f\x5f\xa0\x87\xe3\xbd\xc1\x92\xed\xcb\xf0\xf7\xd2\xe7\xe9\x5d\x30\xcb\xa7\x7a\xeb\xb7\xcf\x3b\x1c\x1c\x9d\xbc\xf8\x69\x96\x44\xbb\x7d\x0f\xf2\x89\xac\x06\x8d\x7b\xe5\x57\x7b\x00\x03\x58\xa1\xf2\x95\x4d\xc7\xe1\xfc\xd9\x4f\x63\xe3\x0a\x5a\xcc\x8c\xd5\x79\x9d\x6d\x89\x29\x92\x48\x85\xa2\x60\xea\x8e\x7b\x5f\x90\x63\x72\xde\xee\xb5\x6f\x3b\xbd\x53\xd2\x26\x29\x35\xd4\x9e\x6f\xc5\x66\x8a\x69\x26\x0c\x68\xe3\xf6\x73\x33\x27\x53\x99\xb2\x8c\xa5\x84\x0b\xf2\x3e\x9b\x1b\x46\xce\xa9\xa1\x67\xd4\xd0\x4c\x8e\x5b\xa4\x0d\x7f\xda\x8f\xb9\x26\x34\xd3\x92\x50\x4f\x55\x2c\xf5\x4d\x50\x91\x7a\xce\x42\x49\x22\xa7\x33\x9e\x05\xab\x79\x30\x91\x70\x91\xf2\x07\x9e\xe6\x34\x23\x72\x68\x99\x8a\x55\x55\x3b\x0f\x4c\x98\x9c\x66\xd9\x9c\xd0\x2c\x23\xae\x5b\xff\x82\xd7\xeb\x87\x2c\x8c\x52\xf3\x29\xcf\xa8\xb2\xba\x30\x8e\xf6\xca\xb5\x45\x7a\x13\x16\xc6\x0a\xe3\xb2\x8b\x39\xa5\xf7\x4c\x13\x6e\xc8\x4c\x6a\xcd\x87\x59\x71\xe4\xef\xba\x04\xc6\x7d\x76\xd1\x05\xc5\x3a\x31\x44\x22\x0b\xf5\x9d\x3b\x2b\x8c\xef\x71\x4a\x85\x60\xd0\xb1\x34\x13\xa6\x5c\xf7\xee\xe5\xaf\xad\x68\xdf\x5d\xde\x5e\x77\xce\xba\xef\xbb\x9d\xf3\x45\x4d\xbb\xd7\xbe\xfd\x65\xf1\xd7\xcf\x57\x37\xbf\xbc\xbf\xb8\xfa\xbc\xf8\xe4\xa2\x7d\x77\x79\xf6\xf3\xe0\xfa\xa2\x7d\xb9\xf8\xd0\x91\xd5\xda\x4a\x7b\x3c\xb2\x0d\x8f\xd6\xc1\x1a\xb9\x4f\x6b\xe4\xd1\xb7\x6b\x8e\x74\xae\x9c\xf5\x4d\x91\x24\xe3\xda\xd8\x05\x72\x5f\x92\x19\xd5\x1a\x85\x21\x1c\x41\xab\x2f\x3e\x4a\x65\x99\xd6\x48\x5a\xbe\x60\x05\x26\xa3\xf2\xc4\x70\x31\x0e\x1f\x9d\x92\x7e\xfe\xc3\x0f\x7f\x4a\x2e\xb8\xb8\x87\x7f\xb1\x97\xb8\x38\x07\x5b\xed\x36\xab\x75\xb0\xd5\xc6\xcf\x5e\x87\xad\xd6\x8a\x39\x27\xb1\x89\xf6\x69\x82\x7b\xd0\x8d\x6c\x65\x07\x99\x1b\xfb\x4f\xdb\x2f\x19\x29\x39\x05\xa9\xea\x0b\xd7\xc0\x25\x1e\xa5\xba\x1f\x65\xf2\x71\x3d\xd3\xe1\x07\x66\x82\xf1\xcd\x4a\x31\xaf\xc1\x62\xf8\xd9\xcd\x30\x0c\xfc\x03\x33\x76\xec\x37\xae\x97\x43\x9c\xcf\x21\xce\xe7\xeb\xc6\xf9\xbc\x28\xb3\xdd\xd3\xf3\xbe\xb2\x8d\x0f\x19\x60\x83\x0b\xaa\xd1\xc3\xd4\xe0\x40\x8a\xfc\x43\x4f\xc9\x34\xcb\x5e\x99\x15\x0c\xb3\xe4\xb1\x78\x2d\x4c\xb3\x34\xe8\xe7\x67\x98\xbf\x09\x87\xca\xc1\x5f\xb2\xe5\x42\xbd\x4a\xbe\xba\xe6\x95\xf1\x6c\xde\x8e\xa7\xe7\xf3\x0b\xb1\x08\x9b\x04\x1f\x6c\x10\x6d\xb0\x76\x78\xc1\x8a\x78\x82\xda\x00\x82\xba\x88\x81\xc5\x10\x81\xda\x98\x80\x9d\x82\x00\x36\xbd\x92\xd6\x77\xff\x7f\x60\xa6\x47\xf5\xfd\xab\xbb\x92\x4a\x83\x7e\xfe\x2b\xe9\x37\xea\xf5\x3f\xb8\xf9\x9f\x70\xe9\xbe\xf5\x8b\xec\xe5\x3a\xf2\x7f\x03\x9e\xfb\x83\xab\x7e\xa3\x35\xfa\xb6\x7c\xf3\xdf\xaa\x33\xfe\x75\x7a\xdf\x0f\xee\xf6\x83\xbb\xfd\xe0\x6e\x5f\xc3\xdd\xfe\xa4\x4a\x29\xb3\x64\xa5\xc1\xfc\x18\xeb\x36\x6f\x66\x52\x2f\xd7\xc5\xce\x14\xa3\xc6\x52\x71\xd9\xee\x47\xa0\x41\xa2\x58\x22\x55\x6a\x75\x30\x4a\x66\x13\xaa\x19\x31\x8a\x0a\xcd\x57\xe9\x61\xd8\x2a\x18\xda\x6c\x3b\xaf\x41\x05\x2b\x59\x05\x61\xd4\xcf\xa5\x80\x0d\x65\xba\x70\x66\xf0\x38\xd5\x3d\x59\xce\xeb\xf7\x36\x75\xc8\xd0\x5c\x67\xe6\x4f\x48\xcd\xf6\x5e\xd9\x92\x9a\xcb\x26\x83\xbd\x50\x33\xe8\xe8\xaf\x85\x9a\x4b\x06\x85\xdf\x16\x35\xd7\x4d\xfd\x25\x50\xb3\xf7\x46\x6f\x49\xd1\x8b\xce\xec\xbd\x50\x75\xf0\x20\xbf\x16\xca\x5e\x70\x79\xff\xb6\xa8\xbb\x69\xfa\x5f\x97\xc2\x83\x21\x7c\x5f\xb4\xbd\x9a\x70\xc3\x02\xbc\x06\xa2\x0d\x83\xc5\xb1\xff\x66\xa8\x75\x61\xde\x2f\x84\x4c\x4f\x14\xc3\x6c\xc3\x8d\xe8\xf5\xc6\x7d\xb4\x31\xc5\xfa\x0f\x0f\x34\xfb\x9a\x68\xd6\xef\xda\xcb\xa1\xda\xa6\x70\xba\xcd\x33\x70\x97\xc4\xc8\x69\x32\xa5\x26\x99\xd8\x87\xe8\x9f\x5b\x13\xa6\xa5\x48\xb9\x7d\x55\xd4\xfd\x1c\x79\xb6\xdf\xb6\x25\xfe\x60\x81\xff\x0d\xc2\x61\xbd\x98\x70\xf1\x43\x8a\xca\x1e\x53\x54\xb8\x3e\xa4\xa8\x1c\x52\x54\xd6\x5d\xa0\x43\x8a\xca\x21\x45\x25\x7a\xf6\x3a\x52\x54\x9e\x3e\x3b\x65\x3f\x29\x28\xaf\x4a\x88\x3e\x08\xd0\x07\x01\xfa\x90\x67\x12\xa6\xb6\x2f\x06\xe6\xbf\x7e\x93\xb2\x8c\x19\xb6\x94\xfd\xf4\x98\x9a\x5a\xdd\xa0\x04\x7d\x5d\xe3\x34\x28\x50\xb5\x02\x05\x81\x79\x63\x19\x5f\x0a\x6d\xbf\x4e\xee\x14\x86\x7f\x48\x8b\x3b\xb0\xab\x03\xbb\xda\x66\x6a\x2f\xc7\x2a\x1b\x1d\xe6\xaf\x6a\x96\x8d\x80\xb4\x07\x3c\xdd\x0f\x96\x76\x10\x1b\x63\x24\xed\x62\x29\x4a\x60\xc6\xdb\x19\x69\x0b\x58\xea\x6e\xfa\x2a\xec\xb4\x96\x8f\xa4\x1d\x88\xba\x0b\x21\x83\xea\x00\xa9\x7d\x80\xd4\x5e\x7f\xae\x07\x0b\xe1\x1e\x2d\x84\x07\x48\xed\x83\x0d\xec\x60\x03\x7b\x7a\x1b\xd8\xd7\x32\x68\x3f\xf3\xb1\x7c\x2e\x11\x6d\xbb\xc0\x24\x91\x12\xc5\xc6\x5c\x1b\xa6\xec\xea\xd5\x0a\x65\xab\x23\x95\x5e\x6b\x91\xa8\xb5\xe3\x3e\xe2\x6e\xdf\xfc\xdb\x1a\xc3\xbf\x71\xb7\x28\x1c\xf5\x21\x4d\x43\x45\x18\x10\x9d\xa6\x74\x4e\x26\xf4\x81\x91\x11\xe5\x19\x2a\x46\x8e\x3b\x2e\x99\xe1\xb2\x01\xfd\xc7\x66\x03\xa2\xe5\xe1\x28\x36\x62\x8a\x89\x04\xb9\x3d\x0a\x3f\x09\xcd\x7c\x2a\x08\xbc\x33\xb1\x6a\x6a\xa6\x18\x4d\xe7\x64\xc8\x98\x08\x64\x53\x23\x29\x34\x8c\x79\x2f\x42\xeb\x57\x57\xd3\x16\xa9\xe7\xa5\x28\x69\x4f\x12\x3d\x53\xcf\x12\x76\x57\xce\xf4\x4f\xaf\x8b\x55\x1c\x82\x68\x0e\x46\xb5\xaf\x6f\x54\x3b\x04\xd1\x1c\x54\xe4\x17\xa0\x22\x1f\x82\x68\x0e\x41\x34\x07\x03\xc2\xda\xab\x75\x30\x20\xc4\xcf\x5e\x47\x10\xcd\x13\x56\x70\x7e\x2e\x09\xfb\x20\x60\xfb\xf7\x0e\x02\xf6\x41\xc0\xfe\x46\x05\xec\x97\xb1\xc2\x07\xe9\xfa\x20\x5d\x1f\xa4\xeb\x83\x74\x7d\x90\xae\x0f\xd2\xb5\xfb\x6a\x9f\xd2\x35\xfc\xcb\x43\xb3\xee\x1c\xb1\xbe\xb9\x97\xeb\x03\x33\xaf\xd5\xc5\x75\x10\xa9\x0f\x22\xf5\xcb\x16\xa9\x5f\xcc\x84\xbe\x3d\xa8\xc5\x03\x58\xe1\x01\xac\xf0\x00\x56\xf8\xb4\x60\x85\xfe\xeb\x37\xb3\x7c\xb9\x2c\x72\x37\x4b\x7d\xee\x8a\x36\xd4\xe4\xa0\xf6\xad\x21\x97\x90\xb6\x21\x53\x69\x95\x20\xc1\x4a\xef\x78\x06\x84\x11\x1d\x63\xfe\xc0\x04\xf1\x31\xda\x47\xee\x9a\x39\x02\x4b\xc4\xbf\xc2\xe9\xc0\xa4\x19\x6a\x08\x25\x86\x4f\x59\x8b\x74\x47\x78\x9a\x13\x4b\xfe\x9a\x19\x5d\x09\x03\x42\xd2\x84\x8f\x44\x5a\x8c\xd5\xf7\xcd\x8b\xa8\x10\x7c\xed\xc8\x33\xc3\x3c\x33\xc8\x1a\x7d\xe3\x8f\x3c\xcb\xec\x18\x1c\x07\x81\x93\x30\x65\x2a\xf3\x5f\x96\xba\xf5\x2f\x4f\x69\x6a\x4f\x6e\x34\x84\x22\xbb\x27\x7e\x1f\xee\x5c\xae\x43\x5c\x4b\xe9\x7b\xfc\xba\x45\x9c\x12\x8e\xa0\x62\x6b\x0d\x63\x42\x53\x7b\x02\x93\x09\x4b\xf3\x8c\x11\xaa\xb5\x4c\x38\x35\x96\x5b\xe1\x1d\x4d\xb8\xf1\x2a\xbb\x7f\xc9\x77\x9d\x72\x4d\x87\x19\x4b\xdd\x1a\xb3\x22\xcc\x66\xe9\xc8\xb9\x26\x43\x66\x97\xd8\xf2\x91\xf2\xea\x4f\x50\x42\xa8\x19\x4d\x34\x14\xb6\x38\x12\x26\x70\x20\x4b\x24\x5c\x24\xce\xd7\x2a\xe4\xe2\xe8\x0f\xb9\x4f\x07\x91\xf7\x20\xf2\x6e\x34\xa1\x6f\x4a\xe4\x7d\x41\xa1\x81\x9e\x21\x7d\xd5\xd0\x40\x70\x20\x5a\xce\x3f\x08\x16\x42\xbd\x9d\xf1\x24\x18\x61\x3f\xfa\x26\xdb\xa1\xc5\x33\x29\x46\x7c\x9c\x2b\x27\x70\x3b\x69\x78\x85\x97\xb2\xa6\x9d\x57\x71\xe3\xd4\x0f\xfd\xb9\x2e\x9e\x4d\x14\x3a\x72\x4c\xac\xd8\x3d\xb8\xe9\xdc\x5e\xdd\xdd\x9c\x75\x4e\x49\x7b\x36\xcb\x38\x7a\x59\x92\x5c\x1b\x39\xe5\xff\xb0\xd3\x40\x20\xe1\xc0\xb9\x9d\x18\xa2\x41\xe0\x00\xb7\x8e\x55\x93\xc8\x31\x39\xbb\xb8\xbb\xed\x75\x6e\x1a\x1a\x74\x44\x00\xb5\x8c\xd8\x74\x96\x81\x54\x72\x9f\x0f\x99\x12\xcc\x30\x4d\x92\x2c\x87\x18\xf3\xe0\xec\xc1\x46\x3b\xff\xd5\x39\xbb\xeb\x75\xaf\x2e\x07\x7f\xbd\xeb\xdc\x75\x4e\x89\xa7\x26\xdb\xac\x1d\x97\x1d\x45\x3a\x17\x74\x6a\x75\xd1\x32\xe2\xf1\xdf\x73\x96\x83\x10\xc4\xc7\x62\xca\x84\xa9\xb6\xe8\x07\x7c\xd1\x7e\xd7\xb9\x28\xb7\x3c\x61\xe4\x97\xbf\x14\x83\xca\xe8\x90\x65\xce\xfb\x04\xce\x15\xcb\xb0\x8b\x8e\x9c\x5b\x2a\x47\xb5\xf6\xaf\x77\xed\x8b\x6e\xef\xd7\xc1\xd5\xfb\xc1\x6d\xe7\xe6\x53\xf7\xac\x33\x70\x0a\xc6\x59\xdb\xf6\x5b\xea\xc9\xe9\x21\xe4\xef\x39\xcd\xac\xa2\x2a\x47\xe0\xda\xe1\x09\x23\x8f\x13\x26\x48\x2e\x80\xc6\x50\xfb\x05\x5d\x20\x4e\x62\xc7\x19\x5d\x5f\xdc\x7d\xe8\x5e\x0e\xae\x3e\x75\x6e\x6e\xba\xe7\x9d\x53\x72\xcb\x32\xd0\x0f\xfd\xa2\xc3\x2e\xce\xb2\x7c\xcc\x05\xe1\xd3\x59\xc6\xec\x6a\xe0\x71\x1c\xb2\x09\x7d\xe0\x52\x95\x74\x04\x58\x47\x4b\x42\xd8\xbe\xd7\xc3\x06\xd1\xd2\x5d\x5d\xbe\xef\x7e\x00\x0f\x41\x98\x83\x86\x36\x4a\x94\xe3\x73\xef\x8f\x17\x72\xef\x13\x8a\x31\x0c\x50\xf8\xea\x81\x29\xc5\x53\xd6\x94\x18\xf8\x7c\x4a\x6a\xe9\x40\x2c\x6a\x96\x55\x0a\x5f\x7c\xa3\x42\xae\xcb\x5e\x28\x51\xdf\xe2\x8b\xab\xa8\x68\xf1\x8b\x0a\x19\x34\xeb\xd3\x0b\xfb\xb8\xb6\xaa\x5c\x5e\x9f\x67\xbb\xa7\x2c\x7b\x4b\x07\xde\x64\x72\xf2\xcf\x12\x9b\xfb\xd7\x93\x61\xd8\x90\x28\xf1\xd6\xdd\x5b\xab\x6a\x81\x16\x1f\xbc\x86\xdb\x2a\x1e\xee\xd7\xbc\x99\xf6\x24\x0d\xbe\x12\x4b\xd4\xe6\x42\xf8\x41\x99\x3c\x28\x93\xf5\x2b\x73\x08\x49\x6a\x58\xe1\x7d\xdd\x47\xdb\x18\x6f\x47\x9c\x65\xa9\x5e\xb0\xbe\x95\xee\x93\x95\x96\xb6\xd7\x7b\x95\x3c\xaf\xad\x6d\x13\x95\xe7\x26\xf8\xa8\x9c\xd3\xca\xee\xd6\x94\x19\x0a\x35\x57\x8d\x24\x39\x0c\xfd\x70\x3d\xb9\xff\x3b\x5c\x4f\x87\xeb\xe9\x70\x3d\xfd\x56\x8d\x95\x35\x2c\xfd\xab\x5a\x2b\x57\x69\x81\x3b\x81\x4f\xd5\x98\x32\x17\xb5\x3f\x4d\xf4\x84\x2a\x2c\x33\x94\xc8\xe9\x54\x8a\x28\xec\x61\x3e\x63\x47\x24\x38\x57\xc1\x2c\x05\xc3\x58\x65\xe9\x2c\xba\xe1\xaf\xc3\xc6\x19\xad\xcb\x73\xa4\x64\x1c\x34\x47\xff\x7f\x9b\x5e\xcd\x07\xf8\xae\x03\x7c\xd7\x21\x7b\xe2\x00\xdf\xb5\x9c\x5a\x0e\xf9\x01\x87\xfc\x80\xf8\xd9\x01\xbe\xeb\x05\xc1\x77\x09\x99\xb2\x41\x05\xae\x3f\xfc\x39\xa8\xfa\x3d\x4a\x4f\x62\x27\x48\xe9\x41\x91\x30\x01\xad\xf3\x74\xf7\x84\x89\x72\xe1\xe4\x55\x4e\x92\xb8\xd4\xee\x0b\x17\x78\x47\xd9\xdc\x30\x9e\x66\x8b\x35\x82\x9f\x21\x86\xac\x6e\xa3\xbf\x45\x23\x4b\x0d\xd9\x1e\x2c\x2e\x2b\x17\xea\x5b\x85\xd9\x2e\xf8\xd2\x2b\x72\x13\xac\xc7\xbc\x7d\x38\xc4\xa0\x81\x85\xd7\x3f\x0f\x8c\xbc\xfe\xf1\xae\xe8\x12\x65\xde\xbd\x2d\xaa\x44\x89\x37\xbe\x0e\x33\x46\x3c\xe2\xe7\x30\x64\x2c\xdd\xfd\x6f\x8e\xaf\x2f\xa3\xe5\x03\x77\x5f\x73\xb9\xbe\x55\x1e\x7f\xb0\x67\xec\xd3\x9e\x71\xf4\xed\x1a\x34\x0e\x68\x10\x4b\x16\xe7\x60\xed\xd9\x66\xb5\x0e\xd6\x9e\xf8\xd9\x73\x5a\x7b\xd0\x77\x3b\x98\x51\xc5\x84\xa9\x91\xef\xab\x37\x1b\xbc\x1e\xd9\xea\x83\x00\x04\x0d\xa0\xe0\xea\x64\x83\x70\x6b\x7e\x5b\xe6\x1f\x27\xa3\x0c\x50\xc4\x89\xb2\x34\x4e\xfe\x59\xfc\x3b\x52\x20\xa2\x1f\x6b\x7c\xa0\x1b\x84\x30\xf9\x28\x6e\x96\x16\x62\x57\xd1\x78\x4d\x68\x93\x1b\xc3\xb1\x17\xc6\x0a\x6f\xfe\xca\x48\xa7\x6b\xfc\xf4\x1c\xbe\x7c\x5d\xe9\x1e\x0d\x43\x7f\xde\x08\xa8\x45\x4a\x58\xef\x60\x79\x3d\x82\x63\x3a\xc3\xe3\x84\x83\x78\x00\xe0\x52\x70\x85\x46\x1b\xee\x13\x45\x29\x64\x74\x34\xc9\x5a\xcf\x2d\x46\x2e\x90\xfb\x7a\x13\x77\x34\xfa\x7a\xe7\xfd\xd5\x43\x43\x56\xd0\xfd\x57\x0d\x13\x59\xc2\x33\xf7\x13\x21\xf2\x7c\xfc\xf1\x03\x33\xdf\x1e\x73\xfc\xc0\xcc\x73\x71\xc6\x6d\xd9\xe1\x52\x96\x50\xd4\xc2\x78\x21\xdc\x60\x3b\xd6\xf7\xba\xe6\x78\x48\x6c\x3c\x24\x36\x1e\x12\x1b\xb7\x57\x01\x0f\x89\x8d\x5f\x3b\xb1\xd1\x7f\xbd\x4e\x1d\xeb\x73\x78\xe5\x19\x05\x0d\xec\xf0\xdb\x93\x35\x70\x5e\x07\x71\xe3\x20\x6e\x6c\x36\xc7\x97\xaa\x60\x79\x7a\x7e\x09\x0a\xd6\x46\x48\x21\xe8\x73\x2e\x2a\xc2\x79\xf2\x5f\xe9\x57\xbe\xf6\x9d\xbd\x1e\x26\xa4\x9f\x9a\xcf\xec\xe2\x3d\xf3\xeb\x7e\x70\x9e\x1d\xa0\xd4\x0f\xce\xb3\x83\xf3\xec\xe0\x3c\x73\x4f\xbf\x09\x28\xf5\xa0\x64\xac\x2c\xef\x7b\x53\xd4\xf4\xad\x09\x84\xa9\xde\xc4\xfe\xed\xeb\x05\x09\xf7\xa5\x5f\xc6\x7e\xe4\xcf\xa5\x03\xbc\x14\xc9\xb1\x98\xf7\x8b\x90\x15\x4f\xfe\x59\x09\x33\x5f\xf0\x45\xea\x7c\x3a\xa5\x6a\x0e\xf7\x96\x0b\xba\x6e\xc1\x84\x5a\x6e\x46\x11\xd4\xb2\xbb\x96\x86\xb9\x89\x62\xc4\xb4\x25\xe4\x19\x53\x66\x1e\xbd\x09\x5c\xf4\x3f\xfb\x82\x17\x80\xaf\x7c\x2c\xa4\x42\xb3\x93\xfd\x78\x42\x45\x9a\xd9\x73\xa0\x43\x3b\x09\x15\x42\x1a\xb8\xfd\xc1\xa1\x91\x92\x07\x4e\x51\x56\x68\x5f\x77\x4b\xe7\xa4\xde\x83\xba\xd6\x99\x2a\x39\x3f\x5f\xd1\x89\x7a\x6e\x28\xd5\x83\x46\x18\xaf\xfe\xd7\x3a\xc8\x86\xea\xfb\x6a\x22\x4a\x39\xbe\x79\xb0\x34\x35\x65\xc5\xbb\x25\xc4\xae\xe5\xaf\x56\xd2\x57\xca\xcf\x5c\x42\x0b\x3c\x86\x21\x57\xc7\xe1\x7f\x8c\x3b\xf4\xbf\x15\x2d\xfb\x5f\x7c\x45\x11\xf8\x51\x31\xa3\xe6\x03\x6a\x8c\x65\x2a\xbb\xe7\xcc\x94\x6d\xfa\x2b\x72\x66\x7a\x54\xdf\xbf\xca\x9c\x99\xf2\xc0\x9f\x9c\x59\xac\x49\x93\xdf\x5c\xb4\xf5\xba\x27\xec\x10\x79\xbd\xc5\xd2\x7d\xab\x51\xd8\xcb\x58\xe8\x8b\x19\x61\x85\x8b\x7f\x8b\x27\xb7\x7c\x27\x1d\x8e\xe8\xb2\x35\xfa\xe6\x00\xd6\x2b\xa2\xc6\x8a\xb9\xbd\x12\xa0\xf5\xaa\xb4\xb4\xef\x51\x3d\x8d\x6d\x39\xda\x8d\x43\x65\xa4\x43\x65\xa4\x43\x65\xa4\xa7\xae\x8c\xb4\x9e\xa6\xb9\xb6\x9a\xb9\xae\x8e\xb9\x9e\x82\xd9\xac\x5d\xee\x90\x6c\x5b\x56\xfa\xb6\x4d\xb6\x2d\x29\x55\xaf\xc2\x35\x5a\x1a\xf1\x73\x24\xdb\xfe\x46\xf5\xc0\x83\x12\xf8\x24\xeb\xf6\xad\x6a\x80\x2f\x5c\xfd\x3b\xa4\x09\xef\x31\xd2\xe1\x1b\x86\x3d\x3b\x04\x3a\x2c\x59\x9c\x43\xa0\xc3\x36\xab\x75\x08\x74\x88\x9f\xbd\xb8\x40\x87\x66\xcd\x81\xa7\xbb\x26\x7a\xd5\x89\xec\x85\x40\x5b\xc2\x0e\xdd\x5e\x7c\xef\xa6\xaf\x42\x6e\x8f\xb0\x7e\x83\x99\x43\x3d\x87\xfc\x7e\xc0\xae\x3d\x60\xd7\x1e\x84\xb8\xdf\x92\x10\x77\x90\x53\xb6\x59\xad\x83\x9c\x12\x3f\x3b\x60\xd7\xbe\x20\xf0\x12\x2b\x38\x95\x92\x44\x56\x06\xa5\x9e\x29\x06\xe1\x73\x22\x0d\xa9\x22\x84\x56\x05\xb0\x65\xd2\x15\x36\x60\xe5\xab\xd7\x20\x5c\xd9\x71\xe2\x88\xd7\x88\xa6\x8b\x3b\x7c\xf3\x6f\x6b\x0c\xfc\xc6\xdd\x95\x70\xa0\x87\x34\x0d\xf5\xe3\x41\x40\x9a\xd2\x39\x99\xd0\x07\x46\x46\x94\x67\x68\xa6\x72\x3c\x70\xc9\xdc\x96\x0d\xe8\x3f\x36\x1b\x10\x2d\x0f\xa7\xc8\x00\xb3\x3c\x1d\x45\x9c\x84\x66\xde\x49\x05\xef\x40\x71\xfb\x4c\x31\x9a\xce\xc9\x90\x31\x11\xa5\x13\xad\x3b\xe6\xbd\x88\xa6\x5f\x3d\x14\x30\xa6\x9b\xaf\x1a\xdd\x0b\x27\xbc\xb1\xfc\xe6\xfe\x74\xae\x5d\x14\x2d\xfd\xd3\x6b\x61\x05\xcf\xa1\x56\x7d\xc3\xae\x8f\x83\x7b\xe3\xb7\x59\xad\xeb\xc5\x88\xe4\x07\x45\x77\x8f\x8a\xee\x21\x2f\xf3\xe0\xae\x38\x98\x01\xd6\x5e\xad\x83\x19\x20\x7e\xf6\x7a\xdc\x15\xcd\xd2\xf3\x76\xc5\xeb\x9f\x50\x8e\x3e\x88\xd1\x07\x31\xfa\x20\x46\x7f\xb3\x62\xf4\xcb\x58\xe1\x83\x0c\x7d\x90\xa1\x0f\x32\xf4\x41\x86\x3e\xc8\xd0\x07\x19\xda\x7d\xb5\x17\x19\x1a\xfe\xe5\xb3\xb9\xf7\x93\xba\xbd\x9e\x47\xca\xe5\x6e\xbf\x16\xe1\xf9\x20\x38\x1f\x04\xe7\x97\x2d\x38\xbf\x98\x09\x7d\x7b\x09\x9b\x87\x94\xc7\x43\xca\xe3\x21\xe5\xf1\x2b\xa4\x3c\x7a\x56\xb2\x6d\x35\x8a\x4f\x8e\xb7\x7c\xcf\x45\x92\xe5\x29\x88\x28\x13\x46\xde\xe5\x3c\x4b\x09\x28\x34\x56\x2f\xe5\x52\xbc\x05\x7a\x02\x52\x80\x71\x7a\x48\xf6\xe5\x02\xcc\xa7\x05\x4e\xf7\x62\x65\x98\x62\xb4\xdb\x02\x54\xed\x6b\x4f\x43\x41\xc7\x2d\x8a\x36\x95\x7e\xf3\x0d\x3d\x77\x29\xa7\x23\x2f\x7a\x58\xb6\xe3\x07\xb1\x51\x61\xa7\xcf\xee\xa3\xd7\x05\x25\xbe\x38\xea\x43\x39\x27\x12\xed\xda\xa1\x9c\xd3\x13\xce\xdb\x9f\xb3\x15\x33\xf7\x34\x8a\xe6\xe1\x57\x3a\xed\xaf\x1e\x47\xd7\x7c\xd2\xbf\x6a\x54\x5d\xed\xcd\xb1\x90\xd1\x54\x94\x03\x7f\xfe\x2a\x56\xbb\x5c\x0d\x1f\x98\xf9\x56\xee\x85\x43\x25\xab\x43\x69\x89\xad\x0b\x7d\x6f\xc4\xe1\x5f\xd7\x14\x0f\xc5\xba\x0e\xc5\xba\x0e\xc5\xba\xb6\xb7\x8e\x1c\x8a\x75\xfd\xc6\x8a\x75\xed\x22\x4f\x61\xf7\xdf\x8a\x48\x75\x28\xd8\x75\x90\xaa\x0e\x52\x55\xed\x14\x5f\xa0\xba\xfc\x22\xca\x91\x05\x75\x79\x5f\xc8\x1f\xb1\xa7\x3f\x30\xe3\xbd\x02\x80\xf8\x95\x3c\x80\x80\xb8\xff\x3b\x80\x80\xac\x33\xb9\x03\x08\xc8\x21\xae\xf3\x00\x02\x72\x88\x5c\x3c\x44\x2e\x1e\x40\x40\x5e\x0b\x08\x88\x17\xa0\xf6\x01\x04\x52\x23\x8c\xad\x06\x03\xf9\xbc\xa8\x19\xbc\x58\x41\xcb\x8f\xf5\x00\x0a\x72\x00\x05\xd9\x95\x76\x5e\x84\x4e\xf6\x24\xe0\x20\x35\x6c\x60\x57\x45\xec\x75\x80\x84\xf8\xd1\x1e\x32\x1c\x0f\x81\xda\x2f\x3f\x50\xfb\xc5\x65\x38\xbe\x18\xb1\xfd\xa0\x0c\xef\x51\x19\x3e\x24\x39\x1e\x92\x1c\x0f\xa6\x82\xb5\x57\xeb\x60\x2a\x88\x9f\xbd\x8e\x24\xc7\xd5\xd2\xf4\x5e\xc0\x42\x9e\x42\xae\x3e\x88\xd5\xf8\xde\x41\xac\x3e\x88\xd5\xdf\xa8\x58\xfd\x32\x56\xf8\x20\x53\x1f\x64\xea\x83\x4c\x7d\x90\xa9\x0f\x32\xf5\x41\xa6\x76\x5f\xed\x4d\xa6\xde\x2f\x78\xc8\x86\x5e\xac\x28\x5f\xe6\x35\x09\xd3\x07\x41\xfa\x20\x48\xbf\x6c\x41\xfa\xc5\x4c\xe8\x00\x24\x72\x00\x12\x39\x00\x89\x1c\x80\x44\xb6\x91\x6a\x7e\xe7\x4e\xe5\x9b\xe8\x22\x0e\x37\xf6\x9b\x77\x99\x1c\xf6\xe6\x33\x66\xff\x7b\xce\xa7\x4c\x68\x10\x1f\xb9\x99\xc7\x52\x4c\xc3\xca\x2f\xae\xf9\x9b\xdb\xee\xe5\x87\x8b\x38\xa5\xe7\xcd\xc7\xbb\x8b\x5e\xf7\xba\x7d\x13\xd6\x25\xcc\x2a\x5e\x0b\xf7\x5d\x49\x10\x3b\x93\xd3\x19\x55\x5c\x4b\xd1\xf9\x62\x4f\xa7\x1d\xda\x15\x88\x3e\x52\x6d\x37\xba\xce\x5f\xe3\x91\x5d\x96\xff\xfc\xd0\x2b\xff\x55\x9a\xc5\x45\xaf\xfc\x57\x67\xe9\x6c\xa2\x86\xab\xec\xec\x98\x7c\xe8\x9d\x92\x0f\x10\x82\xa1\x48\x6f\x42\x91\x25\x5d\xf4\x4e\xc9\x05\xd3\x1a\x7e\x29\x3e\x36\xdc\x64\x30\xb7\x77\x5c\x50\x35\x27\x7e\xfa\x98\xd7\x47\xc1\x36\xeb\x97\xa6\xba\x78\xe2\x6f\xb9\x00\xed\xa1\x58\xbd\x0b\x39\xe6\x09\xcd\x76\x5b\xc4\xf6\x65\x7c\x90\xde\x5c\xdd\x2c\x5d\x8a\xf8\xed\xc5\xb5\x68\x5f\x9e\x43\x96\xa1\x1f\x6a\xcd\xcc\x2f\x99\x36\x2c\xb5\xd2\x48\x8a\xc4\x0b\xfc\x6c\x1e\x49\x29\x7f\x93\x90\x77\x98\x6b\x2b\x3b\xb7\x2f\xcf\xc9\x09\xb9\xba\xe9\x8b\x2b\x95\xa2\xf1\x86\xd9\xeb\x1d\xb9\x2e\xd7\x44\x48\x43\xf8\x74\x26\x95\xa1\xc2\x58\xc9\x06\x18\x9b\x5b\x11\x4d\xa8\x62\xe4\x4c\x4e\xa7\xb9\xa1\x86\x3f\xb0\x85\x45\x15\xa8\x91\xdd\x32\xd3\x4d\xc1\x1c\x5c\xb3\x86\xc8\xf9\x8a\xb9\xcc\x94\x6d\xdf\x72\xdd\xb2\x2e\xc0\xd3\x05\xd9\xdc\x37\x41\x95\xa2\x65\xfe\xf8\x86\x1b\x36\xad\xbe\xbf\x66\xd8\xde\xbf\x6a\x15\x1d\x7b\x25\x5c\x48\x9a\x72\x31\xc6\x44\xcf\x0b\x6e\x98\xa2\xd9\x47\x3a\x7b\xef\xad\x4d\x5b\xd0\xc7\xff\xbe\x2d\x25\xfd\xbd\xf9\xb5\xfd\x31\x4e\x1b\x7c\x73\x7d\x73\xd5\xbb\x5a\x4a\x33\xa5\x16\x16\x89\xc6\x3e\x3e\x85\xff\x25\x27\xc4\xb6\x1e\x6e\xae\x29\x33\xd4\xde\xe8\xe4\x7b\x4c\xdc\x09\xe1\xfd\x5c\x64\x40\x23\x33\xc5\xa7\xdc\xee\xab\x53\x99\xdf\xe2\xe5\x18\x6e\xff\x40\x25\xf8\x01\x26\xe1\x81\xd8\x61\xa8\x48\xa9\x4a\xc9\xdf\x74\x35\x37\x14\xcc\x3c\xf8\x03\x4b\xc9\x31\x99\x18\x33\xd3\xa7\x27\x27\x8f\x8f\x8f\x2d\xfb\x76\x4b\xaa\xf1\x89\xfd\xc7\x31\x13\xad\x89\x99\x66\x98\x0b\x6b\x57\xe1\x94\x5c\x2b\x69\x24\x08\x10\x44\x33\xc5\x69\x06\xa9\x81\x43\x3c\xed\x72\x44\xfe\x5f\x22\x15\x6b\x15\x1b\xf3\xff\x48\x94\x66\x3b\xb2\xf7\x2c\x4f\xb3\x13\xfb\x52\xcd\xd1\xa9\xee\x27\x49\x59\xc2\x53\x27\x48\x31\x91\x48\xc0\x81\x42\xcb\xa2\x6d\xcf\x67\x3b\x31\xe7\xca\x09\xcb\x19\x09\x1b\x34\x65\x84\x3e\x50\x9e\x61\xc6\xb5\x44\x93\x21\xae\x33\x53\x56\x70\xe9\xa2\xd4\x99\x5b\x09\x1b\x62\xef\x40\x8f\xf4\xaf\xce\xec\x84\x13\x99\x91\x61\x3e\xb2\x12\x5a\x74\x2b\x1d\x59\x69\x84\x6b\xa2\x58\x22\xa7\x53\x26\xd0\xa8\x68\x1b\x82\x2f\x61\xc5\xdc\x68\x5b\x7d\x01\xfb\x6f\xc5\x14\xa0\x80\x54\xc2\xc1\x16\xcc\x6a\x2b\x62\x8e\xdd\x0c\xf3\x51\xc9\x53\x65\x24\x51\x8c\xa6\x84\x9b\xbe\x68\x67\x56\xaf\x9d\x4a\xc3\xe2\x20\x42\x30\x6b\x97\x16\x1c\x18\x82\x62\xb3\x8c\x26\x3e\x29\x33\x93\x09\xcd\xc8\x88\x67\xcc\x55\xf2\x8f\x1a\xf8\x1e\x54\x2d\xbb\x66\x5c\x93\x54\x3e\x8a\x4c\x52\x37\x8f\xea\x67\x6f\xcb\xbc\xa5\xe3\x33\x8f\x3b\x4a\x49\x05\xff\xf3\x0b\x17\xe9\x76\x67\xf0\xee\xf2\x97\xcb\xab\xcf\xa5\x63\x78\x77\xdb\xb9\x89\xff\xbe\xfd\xf5\xb6\xd7\xf9\xb8\xf4\x1c\x56\x5b\x29\x28\x0b\x86\x07\x22\xf8\x29\xb9\xc5\x45\x90\x8a\x58\xa5\xaa\x61\x52\x1f\x1d\x29\x15\x3f\xc8\x94\x6d\x37\xb7\x8f\xed\xcb\xbb\x76\x89\xa3\xdc\x9e\xfd\xdc\x39\xbf\xbb\x28\x09\x78\x7e\x7e\xd1\x2f\x37\x1d\x14\xdf\xe2\xdf\xce\x7e\xee\x5e\x9c\x0f\x82\xc0\xb7\x6c\x35\x2a\xfd\x56\xf9\x52\x0f\xf9\xcf\x44\xa6\x64\x38\x8f\x13\x07\x8b\x94\xf2\x47\xaa\x49\x06\x8e\x11\x96\x7a\x5d\x04\x5b\x3d\x05\x36\xe4\x73\xec\x8b\x2f\xac\x6c\x7f\xe4\xde\x81\x8c\x78\x54\x83\xa8\x29\xa7\xd8\xc7\x0d\xdb\xde\xa9\x88\x74\x0a\xcc\x8d\x0f\x6b\x64\xb5\x1e\x6d\x5f\xcc\xed\xf9\x55\x7c\x3c\x06\x15\xbf\x32\x54\x6c\xcd\x7d\x0a\x2b\x09\xdf\xe1\x56\xcf\x94\x84\x23\x6d\xbb\x75\xb6\xa1\xa0\x40\xe0\x87\x88\x2f\x57\x6a\x51\x51\xd0\x0d\x6a\x86\xe6\xf7\xe5\x14\x2d\xba\x0d\xd3\x82\xa3\x57\x44\xf8\x02\x87\xd2\x68\x99\x98\x29\xf6\xc0\x65\x1e\x7d\xea\x80\x1e\x4a\x9b\x5b\xdb\x7c\xb1\x00\xb0\x6c\xa8\xbf\x14\xcd\x94\xa9\xb9\x7b\x75\x6b\x14\x35\x6c\x3c\x3f\x77\x27\x7b\x7b\x2a\x3e\xbf\xfa\x7c\x79\x71\xd5\x3e\x1f\x74\xda\x1f\xca\x07\x33\x3c\xb9\xed\xdd\x74\xda\x1f\xcb\x8f\x06\x97\x57\xbd\x81\x7f\x63\x29\xb9\x36\x74\xb0\x78\x9d\x96\x5f\x3c\x25\x96\x33\x02\x07\xf3\x98\x50\x11\x1b\x1b\xb2\x91\x54\xc8\x8e\xa7\xde\x07\x08\x8c\x9f\x84\x95\x65\x29\xea\xd8\xe5\x59\x9c\x82\x02\x5a\xd7\x24\xda\x96\x8c\x62\x74\x0a\xec\x9c\x0a\xd2\x11\xe9\xf1\xd5\xe8\xf8\x16\x7f\x9c\x52\x75\xcf\x54\xf8\xf4\x51\x71\x63\x18\x98\xc4\xb9\xb3\x96\x83\x82\x0c\x43\xb6\xf7\x0d\xc4\x78\x17\x1d\xb4\xc8\x8d\x65\xcf\xf6\xfd\x70\xf7\x58\x42\x4d\x99\xa1\x3c\xd3\x6e\xb0\xa5\x75\x3d\x25\x17\x54\x8d\x0b\x75\xf7\x7b\x39\x1a\x61\x63\x6f\x71\x18\xf6\xaa\x29\xcd\xa2\x86\x45\x5a\xd2\xf0\xd7\x17\xf4\xe7\x5e\x0e\x42\xda\x22\x55\xdd\xcd\x76\xa3\xa9\xbb\x6b\x58\xf1\xab\xcb\x41\xe7\xbf\xba\x25\x85\xc5\x3d\xa9\xa1\x35\x98\x38\x3e\x5e\x7e\x17\xd4\xb7\xbd\x48\x4e\xe5\x17\x6b\xc8\x29\x9f\xf9\x9d\x1f\x59\x15\xa8\x86\x96\xd8\x17\x6e\x70\x63\xe2\x71\x57\x48\xa8\x68\x06\xac\x18\x74\x36\x63\x54\xe9\xba\xdd\x2e\x4b\x6b\x0d\x7b\x8f\x3d\xc5\x7d\xb8\x4d\xf6\xfd\x1c\x11\x29\xb2\x79\x7c\xd7\x57\x28\x72\x0d\x1a\xc0\xb6\x16\x28\xe0\x1a\x10\x4f\xae\x1c\xba\xc8\x47\xae\xad\x26\x83\x3f\xbe\x73\xb0\x27\xdb\x11\xc4\xfb\x76\xf7\xa2\x22\x03\x0c\xce\x3b\xef\xdb\x77\x17\xcb\xb5\xf1\xd2\x77\x35\x78\x3c\x51\x3b\xa7\xf6\xd6\x77\xa6\x39\xb8\x1d\x8e\x3d\x98\x0b\x4b\xc3\x85\x56\xc6\x72\xa9\x70\xd5\x6b\x34\x1f\xbb\xff\xdc\x1a\x6a\xb6\x24\xff\xf6\x59\xaf\xfb\xa9\xa4\xb5\xb7\x6f\xce\x7e\xee\x7e\xaa\x93\x0b\x06\x1f\x3a\x97\x9d\x9b\x76\xaf\xb3\x9c\xea\x2b\x4d\xd6\xdd\xf9\xda\x0e\xb8\xea\x3e\xe0\x3a\x78\xc0\x2d\x59\x2b\x99\x11\x6e\x34\x79\xe0\x9a\x0f\x39\xe0\xe7\x38\x53\xfc\x5d\x17\x98\x1e\xf8\x36\xb9\x99\x7b\xa9\x00\xfb\x3d\x25\xef\xe6\x7e\x0d\x8f\x80\xc9\xb9\xf6\x51\x4d\x8d\x0d\xf4\x89\x55\x6a\xf0\xd6\xf3\x93\x3e\x25\x6d\x95\x4c\xf8\x03\xa8\x3d\xd1\x67\xc2\x8a\xa2\x62\xcc\x14\x0e\x07\xec\x8f\xf1\x58\xa2\xe7\x76\x54\xb1\x0c\x50\xac\x5a\x10\xfb\xc6\x4c\x58\xd5\x39\xee\x04\xe5\x13\xc5\xc4\x77\x56\x94\x99\x65\x3c\xe1\x26\x9b\x93\x04\x6c\x1e\xa9\x15\x14\xa7\x54\xd0\xb1\xbb\x73\x41\x51\xa8\x90\xc4\x5f\x11\x64\xe8\x6a\xe4\x8c\x5b\x3d\xce\xb6\x3c\x01\x77\x97\xe7\x9d\xf7\xdd\xcb\x32\x09\xfc\xdc\xfd\x50\x12\x02\x3f\x76\xce\xbb\x77\xa5\x8b\x76\x95\x2c\xb8\xd8\x6c\xdd\x29\xf1\x2f\x9d\x92\x73\xfc\xf4\xd4\x2e\x6e\x0d\x82\x52\x50\x1f\x2b\xeb\x70\xe3\xc3\x4e\xfc\x3f\x3a\xc2\xa8\x5a\xcb\xdc\xba\x26\x07\x67\x84\x2f\xd9\x1c\xea\x7d\x75\x0b\x7d\x5f\x56\xbd\x2a\x8b\xbe\x4c\x67\x89\xb7\x9d\xb4\x0a\x4b\x44\xec\xc4\x03\xb5\xbb\xc9\xe8\x51\x63\xd8\x2d\x78\xe9\x27\xf0\xd1\x4c\x73\x6d\xd0\x98\x0e\xc4\x49\xee\xff\xa2\xed\x82\x82\xb1\xbd\x45\x6e\x19\xeb\x0b\xaf\x7f\x8f\xb9\x99\xe4\xc3\x56\x22\xa7\x27\x05\x7c\xd7\x09\x9d\xf1\x29\xb5\x02\x2a\x53\xf3\x93\x61\x26\x87\x27\x53\xaa\x0d\x53\x27\xb3\xfb\x31\x78\x7e\xbd\x3f\xe1\x24\x34\x3b\x96\xbf\xbf\xf8\xd3\x0f\xc7\x17\x7f\xf9\xe1\xcd\xa2\x45\xa5\x69\xff\x3b\x22\xa1\x33\x9d\x67\x2e\x42\x44\xc5\x6b\xe3\x8f\x7c\xce\x56\xed\xf7\x65\x79\xbb\x76\xd3\x00\xcf\xae\xef\x4a\x16\xce\xf2\x9f\x1f\x3b\x1f\xaf\x6e\x7e\x2d\x71\xca\xde\xd5\x4d\xfb\xc3\x72\x4b\xe7\x82\x8a\x58\x59\x86\x5f\x84\x7c\x14\xe5\xd9\xeb\xea\xa4\x73\x61\xf8\x94\x79\x0d\xd1\xfd\xd9\xc3\x99\x6e\x31\xf3\xab\xde\xcf\x65\x21\xe7\xfd\xc5\xaf\xbd\xce\xe0\xf6\xfc\x97\xa5\x33\xc1\xcf\x4a\x23\xbb\x05\xf7\xf6\x99\xcc\xf2\xa9\x88\xff\xbd\xfd\xd8\xba\x97\xbd\xce\x87\xea\xe8\xae\xda\xbd\xf2\xb2\xdf\x94\xa3\x26\xde\xbc\xbb\xba\xba\xe8\x94\x3c\x0e\x6f\xce\xdb\xbd\x4e\xaf\xfb\xb1\x74\xdb\x9d\xdf\xdd\x20\xe2\xd6\xb2\x69\xfa\x11\xd4\x4c\xd4\x4e\x2b\x9e\xe6\xbe\xf9\xcc\x5a\xc7\xbc\xed\x22\x12\xf1\xa0\x1c\x47\x70\x15\x18\x6c\x00\x46\x87\xe3\x60\xf1\x4b\x70\xa4\xb5\xbc\xc6\x94\xb7\x89\x34\xf3\xba\xa5\x1b\xbd\x8c\xe5\xf5\xc2\x10\x10\x86\x0e\x55\x4c\x9a\x65\xf2\x11\xe3\xc2\xa6\xdc\x5e\x79\x0e\x3b\xc8\xbe\xa2\x49\x92\x2b\xc5\x84\xc9\xe6\xad\x1a\x76\x52\xde\x16\x96\x28\x66\x3e\xca\x5c\x98\xed\x49\xae\x7d\x59\x3a\xd4\x9d\xcb\x4f\x83\x4f\xed\x32\x05\x76\x2f\x96\x1f\xf2\xb8\x89\x9a\x7b\xae\x7d\xf9\x6b\xb8\xe1\x20\x7a\xf0\x28\x68\x66\x28\x18\x26\x19\x67\xc2\x80\xc5\xde\xc8\x0c\xc4\x05\xc2\x38\xa8\xda\x53\x3b\x39\x2e\xc6\x04\x03\x97\x3c\x98\x22\x0e\xf2\xd4\xff\xa3\xd2\x9e\x86\x75\x01\x63\x9f\x0f\xc8\x84\x76\x9c\x36\x29\x08\x13\x0f\x5c\x49\xc0\x52\x24\x0f\x54\x71\x3a\xcc\x9c\x70\x64\xe7\x7a\x0a\xff\xbb\x59\x9b\x60\xb7\xab\x30\xae\x5b\xa9\xcc\x79\x08\xec\xda\xce\x0a\x50\x17\x25\xb5\x18\x1f\x55\xaf\xe0\x57\x62\xa2\xfc\xb0\x7a\x54\xdf\x2f\xd8\xdd\xba\x42\x1b\x2a\x12\x76\x96\x51\xad\xb7\x1d\x2b\x2a\x0e\x47\x65\x76\x76\x73\x73\x77\xdd\xeb\xbe\x5b\x41\x42\xd5\x8f\x17\x03\xdf\x92\x2c\xf7\xa6\xe9\xa1\x92\x34\x25\x76\x6f\xe4\x18\xcd\xe0\xee\xca\x2e\x30\x2d\x31\x02\x35\xc4\x02\x94\xf0\x34\x83\x9b\xdf\x6b\x28\xb1\x6d\x8d\xbb\x85\x20\x89\x5d\x09\x12\x29\x2b\x9e\xa5\x80\x55\x1d\x81\xb0\x9d\xca\x38\xcb\xa8\x19\x49\x35\x45\x12\x2a\x4d\x1a\x1b\x5f\xde\x28\x17\x86\x29\x95\xcf\x0c\xf7\x20\xa5\xd5\x2b\x10\x8a\x92\xca\xf1\x47\xa6\x35\x1d\xb3\x5d\x9c\x2f\x75\xd7\xfe\xed\xa7\xf8\x4f\x70\xae\xac\x73\xa5\x97\x46\xe8\x83\xb6\x3c\x3d\x5d\x89\xf7\x94\x67\xb9\x62\xd7\x32\xe3\xc9\x96\xce\x62\xab\x66\x0e\xba\x1f\xad\xf8\xdd\xee\x75\x2e\x4a\x7c\x0a\x9e\xb5\xdf\xf7\x3a\x37\x0e\x05\xb2\xfd\xee\xa2\x33\xb8\xbc\x3a\xef\xdc\x0e\xce\xae\x3e\x5e\x5f\x74\x56\xf8\x60\x1b\x1b\x5f\x34\x59\x54\x5f\x3d\x5d\xf8\x05\x76\x58\xe5\xa8\xdd\x78\x4d\x17\xe2\x9b\x29\xcf\xc0\x01\x24\xd1\x11\x44\x89\xb0\x3a\xbf\xfd\x59\x7b\xbd\xca\x87\xf3\xb5\x48\xd7\x7c\x97\x65\x84\xe6\x46\x4e\x29\x98\x31\xb3\x79\x5f\xd0\xa1\x54\x06\xb4\xbb\x70\x33\x10\x95\x0b\x61\xb9\xa2\x6d\x0c\xb1\x47\x93\x8c\x51\x41\xf2\x59\x14\x8a\xee\x8c\x71\x23\x2e\x20\x4a\x64\x4a\xd5\xbd\xaf\xeb\x11\x22\x08\xc3\xa1\xd0\x84\xea\xbe\x40\xd4\x06\xc7\x0a\xd7\x58\xe1\xd3\xb5\xde\x6a\x5c\x9d\x29\xbd\x67\x76\x55\xa6\x79\x32\xb1\xfa\xe1\x58\x31\xad\x9d\xc1\x26\xa1\x02\x9d\x6f\xee\xf5\x47\x9e\x65\x7d\x21\xa4\x5d\x0a\x6f\x17\x4a\xd9\x8c\x89\x94\x89\x84\x63\x00\x3a\xf8\xad\x82\xfd\x76\xac\xe8\x6c\x42\xb4\x04\x87\x0f\x2c\x3b\x68\x9e\xf8\x91\x0f\x59\x71\x38\x15\xf0\x38\x36\xeb\xa8\xdc\xf2\x89\x2b\xb8\x84\x70\x95\xe1\x63\x6f\xd3\xf1\xb6\x4c\xd4\xe0\xa7\xb3\x8c\x19\x44\xa1\x85\x25\x87\xcd\xb0\x6b\x5d\xda\x0f\xbb\x4d\x75\x9b\xd0\x17\xc5\x98\xa9\x76\x23\x6a\xd5\x98\x8b\xdc\x91\x22\x3f\x53\x91\x66\xb6\x15\x6f\x18\x2c\x9f\x45\x88\xa2\x6c\x5b\xaa\xf1\xa7\x71\x17\x49\x2d\xa1\xb9\xde\x48\x54\x5b\x9e\x35\x80\xfa\xfc\x71\xe1\x10\x05\xf2\x76\x29\x03\xb0\xba\x33\xcb\x22\x69\x26\xdd\x2a\xe1\xeb\x39\xd6\x1d\x20\x30\x9a\x06\xdd\x71\xa6\xb8\x48\xf8\x8c\x66\x5b\x09\x96\x95\x38\x32\x17\x9f\xf5\x3d\x1f\x59\xf2\x79\xbb\xe0\xc7\x30\x4c\x4d\x21\x7d\xc6\x0d\x33\x6c\xe1\x2a\xa1\x0d\x77\xc7\x12\x32\x2d\xc7\xda\x6c\xb1\x37\xe8\xa4\x6e\x9a\x6e\xa5\x15\xd7\x3b\x46\x49\xd0\xec\xba\xbe\xcd\xba\x05\x8b\x1e\xfe\x6b\xd9\x56\x7f\xa4\x33\xbb\xc5\x88\x61\x4b\x68\x31\x47\x27\x30\xb9\xe2\x11\xde\xd5\x1b\xf9\x7e\x42\x04\xe2\xfa\x0a\x74\xb1\x84\xce\x57\xbf\xd8\x49\xc9\x07\x16\x25\x2c\x39\x92\x1c\xe5\xc6\x9e\x26\x0a\x5e\x34\xf2\x3d\x6b\x8d\x5b\xc4\x83\x0e\x1f\x91\xf6\xf5\x75\xe7\xf2\xfc\x88\x30\x93\xbc\xf5\xc1\x24\xce\xb7\xde\x17\x46\x3a\xe1\x62\x4e\x26\xf2\x11\x58\x19\x53\x63\x56\x9a\xb3\x77\xc4\x03\x0c\xcd\x98\x6b\xa3\x5c\x38\x80\x48\x63\xc8\x6d\x3e\xad\xca\x8d\x48\x21\xb9\x99\xec\x42\x1a\x54\xeb\x7c\x6a\xe5\xda\x01\xa7\xd3\x81\x92\xd9\x2e\x67\xf8\x1c\xa6\x02\xa2\x73\xc8\xf5\xe2\x74\x4a\x6c\xb3\xce\x95\x19\xcc\xee\x41\x02\xb3\x72\x8c\x65\xa3\xf6\x9a\x8b\xae\x19\x6f\xe6\x73\xa1\x13\xdc\xbb\xf0\x20\x17\xac\xe1\x64\x17\xf6\x99\x81\x33\x89\x0d\x68\x92\x58\xf1\x7b\xcf\x93\x8a\x70\xdc\xbd\xed\xcd\x75\xf4\x64\xd3\x5c\x45\xe7\x7e\x98\x33\xcb\x70\x20\x4a\x6b\x11\x06\xba\xa6\xdf\xe1\x7c\xa1\x57\x8f\xb4\x7e\xa7\x83\x7a\x85\x77\xa6\x66\xb0\x93\x1a\x91\xda\xcd\x84\x39\x0c\xa7\xb8\x4b\x1f\x7b\x69\x1b\x9e\xcb\x5c\xd5\x88\x10\xad\xbe\x38\x67\x33\xc5\xac\x60\x5e\xb5\x54\x06\x9a\xbe\x29\x53\xe2\x81\xae\x0f\x74\xfd\xea\xe9\xfa\x0c\xab\x2b\x78\xa3\x6c\x84\xa0\xbe\x0b\xa1\xd7\xb5\xb2\xac\x25\xf2\xe4\xf7\xfb\x19\x5e\xec\x75\xc0\xf4\x65\x2a\xf2\x77\x30\x17\x0b\xe5\x30\x70\x23\xa1\xd4\x20\x5c\xb8\x7f\xcf\xa5\xa1\xfa\x6d\xab\x2f\xac\xf4\x70\xcf\xe6\xe8\x84\xb2\xf7\xf3\x1f\xac\xcc\x78\xac\x99\xd0\x10\x92\xf7\x07\xb4\x0e\xdb\xbd\xf5\x36\x1b\x54\xa1\xb0\x0a\x47\x19\x33\x1f\xc2\xa8\x5c\xa3\x4e\x3c\x28\x82\xd4\x0a\xa0\x7d\xff\x0c\x87\x3f\x66\x06\xb2\x58\x0c\x37\x20\xdb\xa7\x58\xe6\x63\x61\xe8\x2b\x0d\x73\x48\x15\x4a\x82\xb1\x30\xcd\x77\xe3\x78\x7a\xb1\x8d\x95\x2c\x21\x48\xb5\xb7\x2e\x2e\xf1\xc4\xdb\x37\x12\x25\x17\x6a\x67\x50\x2b\xac\xd8\x9d\x1e\xe2\x39\xf0\x1e\x12\x26\x5a\x8f\xfc\x9e\xcf\x58\xca\x29\x44\x29\xda\xbf\x4e\xec\xbc\x7e\x7f\x76\x73\x75\x39\x28\x62\x8b\xff\xb3\x2f\xda\x99\x96\xc4\xca\xe9\x52\x19\x4d\x84\x14\x21\x24\x72\xa6\x98\x97\x85\xdc\x5c\xec\xaa\x46\xf6\xd5\xbe\x68\x1a\x41\x2a\x13\xdd\xa2\x8f\xba\x45\xa7\xf4\x1f\x52\x80\xb3\xa6\x0d\xff\x3c\xcb\x64\x9e\x7e\xa6\x26\x99\x9c\x80\x0f\xc5\x9c\xb0\x07\x26\x0c\xda\x6a\xed\x72\xa5\x90\x20\xa1\x21\xa2\xf2\xf7\x76\xcc\x45\x98\xb3\xb6\x1a\x57\xc2\x66\x86\xfc\xff\x15\x1b\x4a\x69\xea\xb9\xb3\x1c\x8d\x34\xdb\x88\x13\x17\xca\xc4\xed\x15\xf9\xcb\x9f\x7f\xf8\xd1\x92\xd0\x36\x6b\xdc\xbd\xbd\x1a\xd8\xef\x7f\x7f\xee\xbe\xd7\x6b\x91\xdc\x39\x26\x7d\xed\x14\x72\xbc\x62\xbe\xb5\x2b\xb5\xa9\x35\xbf\x7a\x15\x70\x3d\xcb\xe8\x7c\xc1\x2f\xb8\xea\x0a\xb9\xb4\xfc\x60\x46\x13\x56\x24\x9d\x79\x07\x7b\x22\xa7\x53\x88\xc7\xf0\x6e\xf6\x94\x8f\x20\x30\xc3\xd8\xeb\x85\x0c\x99\x79\x84\x30\x20\xff\x6b\xb8\x16\xbd\xa9\xce\x32\x0f\x60\x50\x7d\xbb\x56\x69\x0e\x46\xdc\xfe\x9b\x23\xd2\x7f\x93\xb2\x07\x96\xc9\x99\x3d\x3f\xf6\x07\x66\x92\xba\x4b\xa1\x33\xa5\x3c\xbb\x94\x26\x44\x96\xec\xb2\x2d\x8a\x25\x7c\xc6\x2d\x3d\x0f\x98\x6d\xf7\x49\xc3\xc2\x57\x39\x34\x7c\x36\x3b\x8c\x84\xd0\x34\xb5\xc7\x0a\xea\x1d\xf8\x41\x16\x26\x58\x11\x2d\xc0\x7a\x6c\x33\x98\xa6\xf7\x4b\xc6\xf5\x8e\x9d\x44\xaa\x00\xef\x1a\x3a\x2e\x10\xea\x97\x52\xad\xab\x77\x51\xe0\xa8\x7b\x0b\x54\x8d\x04\x51\x7f\x6c\xac\xdc\xb2\xde\x38\xcb\x2b\x73\x6b\xbf\x5b\x3a\x34\x1d\x03\x2f\x84\xea\x49\x41\xfd\x74\xc1\x91\xd5\x78\x4c\xb6\x72\xc4\x49\x26\x75\xae\xd6\xf4\x9a\x95\x07\x7d\xe6\x3e\x5d\x36\xee\x4e\xac\xad\xe7\x99\xd1\x1b\x19\x04\x6a\x16\xbe\x92\xb7\x87\x87\xdb\x38\x09\xd3\xbd\x7d\x44\x8a\x9a\xc7\x34\x2b\x22\x47\x45\x4a\x0a\x69\xaa\x2f\x42\xb0\x3b\xd5\xe4\x91\x65\x60\xd5\x4d\xe4\x74\x06\x92\x82\x1b\xae\x6b\xc9\x5e\x74\x86\x1a\x76\x44\x64\x6e\x6c\x63\x47\x58\xdd\xcb\x6d\xc1\xf1\x90\x02\xfa\x43\x51\xb3\x13\x64\x57\xe7\x48\x0a\x49\xfb\x48\xeb\xc8\xc0\xb8\x20\x1f\x98\x81\x56\x00\x45\x25\x9e\x20\x56\x31\xab\x65\x41\xd5\xb5\xdf\xe1\x44\xb9\x99\x6c\xb0\xf3\x45\x8c\xfc\xbb\x4c\x0e\x97\xee\x7b\x9b\x4c\xd1\x74\xe4\x7a\xf1\x96\xf1\xc2\x68\x18\x65\x9b\xaf\xa2\x51\xa6\x54\x29\x1e\x6e\xc5\xf1\x2f\xc7\xd5\x2f\x27\x4f\x88\x6a\x8f\x8a\x61\x2f\x8e\xd3\x99\x93\x57\x8d\x11\x8c\x9e\x83\xd7\x63\x5a\xc5\xf1\x4e\x17\xcd\xc9\xab\x88\xa0\x6c\x86\x7e\xea\xc9\xc0\x01\x31\x13\xc6\x15\x59\x6b\x5a\xfe\xfc\x0e\xf0\xcc\xaf\x4f\x34\x05\x6d\x37\x09\x80\xc8\x44\x02\x83\xb0\x03\x73\xa8\x2f\xa5\x92\x7b\xad\xbe\xa8\x0c\xc2\xf9\x27\x34\x01\xf2\xf2\xa7\xa1\xc4\xfb\x8f\xc8\x88\x7f\x71\x8d\x16\x7e\x4b\xff\x6a\xa4\x19\x37\xd8\xc9\x27\x74\x91\xec\x36\xb8\x1f\xaf\xe1\xfb\xa5\x86\x60\xa9\x8d\x15\x07\xac\x60\xa5\x58\x22\x95\x65\x89\xd0\x6d\xf0\xa2\xae\xbc\x1b\x0d\x55\x76\x51\xe8\x46\x02\x78\x81\x82\x94\x52\xc3\x8e\x0d\x5f\x19\x92\x66\xd5\x15\xcb\x60\xa7\x56\x9d\x8d\x32\x9c\x0a\x0e\x3b\x64\x63\x2a\xbc\xc7\xad\x61\xb4\x9e\xb5\xef\x70\x98\xad\x64\x45\x21\xa4\x00\xe4\x08\x3b\xa0\xf2\x38\xf4\x0c\x96\x73\xe9\x38\x9c\x95\xe4\xb9\x56\xcd\x2c\x59\xb6\x47\x1a\x8c\x36\x0d\x83\xcd\xa1\x54\xf2\x8b\x19\x6c\x46\xb5\x21\x6e\x4c\x0d\x23\x8e\xa5\xd9\x3d\xa4\x66\x2e\x2b\x98\x14\x2b\x0e\x9b\x08\xe7\xf1\x10\x89\x66\xc6\x70\x57\xd8\x27\xd7\xcc\x45\xd4\x4f\x99\x1a\x7b\x81\x0f\xb1\xde\xc3\xd1\x76\xa0\xef\x9e\x8f\xc6\xbc\x04\x7c\xaf\x8b\x4d\xb7\x48\x5b\x2c\xe4\x05\x79\xfb\x5d\x69\xbd\x90\x6b\xd3\xec\x91\xce\x35\x99\x29\x0c\xc3\x47\x87\xac\x9f\x3c\x38\x56\xca\x1f\x05\xcb\x81\xf1\x1e\x71\x28\x20\xba\x86\x71\x35\xaa\xea\xb5\x3e\xb3\x5b\x53\xf6\xaf\x38\x0b\xeb\x6a\x7c\x05\x15\xa8\x96\xd3\x2d\x08\xb3\x45\xea\x5c\x1c\x18\xea\xe0\x39\x40\xb6\x74\xda\x45\xa7\xec\x68\x6c\x12\xf8\xc0\xea\x76\x41\x87\x2c\xdb\xd9\xc1\xb8\x95\x05\x04\xba\x76\xc0\x29\x56\xfd\x66\xe8\x30\x85\x6a\xb0\xaa\xca\xda\xbc\xdd\x50\xe5\xeb\xb9\x4f\x8b\x79\x96\x4a\x15\xec\x30\x51\x8f\x04\xb4\x3d\xff\x6e\x42\x09\x8a\x2f\x92\x02\x26\xa8\xfe\x16\xa9\x9a\x6f\x76\x19\x43\x84\xe7\x53\x3b\x84\x7d\x00\xfa\xec\xc5\x18\x14\x48\x66\x4d\xf0\xca\xee\x88\x08\x29\x18\xe1\xba\x78\xd9\x94\xe3\x44\x42\xd6\x81\x15\x23\x51\x4d\x5f\x2c\x8d\xf3\xcc\x3a\x79\x3b\xe8\x92\x64\xc4\x59\x96\x6a\x22\x98\x55\x69\xa8\x9a\x43\xf6\x2f\xf2\xb3\x75\x44\xa3\x7d\x09\xab\x35\xb7\x87\x93\x22\x83\x53\xc4\x48\x02\x82\x58\x65\x5c\x04\xb3\xa3\xdd\x4b\xee\x23\x17\x7a\xdf\x17\x41\x09\x06\xf2\xe3\xda\x2a\x77\x2d\x02\xdb\x66\x8a\xaf\x30\x95\xc4\x84\x3d\x3c\x2a\xca\x2f\x03\x94\xdd\x26\xaa\xbf\xbf\xb6\x8a\x75\x2c\xa7\xbf\xfa\x2c\x7d\xac\x0a\x5d\x57\x32\xd7\x13\x45\x56\xb2\x42\x2e\x67\x3a\xae\xb6\xce\x0b\x30\x53\xad\xbf\x52\x76\x93\xf3\x05\xc3\x15\x56\xce\x29\x74\xec\x28\x1b\x27\xd6\x54\x5c\xe6\x3e\x56\x3e\xa5\x9a\xfc\x41\x48\xf3\x87\x08\xdb\xc0\x6b\xc3\x58\x7a\xc9\x59\x26\x8e\x4a\x98\x4b\xdc\x67\x6a\x3a\x22\x21\x34\xca\x10\x5a\xb9\xf2\xbb\x02\x6a\x14\xfe\xc4\x27\x15\xde\x3a\x8b\xb1\x40\x4d\xa0\x75\x88\xbb\xba\x37\x13\xc0\x73\x14\xfd\x23\x48\x06\x8a\xf9\x6c\xb1\xa9\x54\xac\x82\xfd\x8a\xcc\x3b\x04\xcb\x21\xe6\xe6\xfa\x54\x5a\x63\x0d\x43\x3c\xcb\xe2\x98\x97\xac\x60\xcb\xad\x5f\xfb\x88\x82\x9b\x96\x93\x6e\x97\x50\xc0\x0a\x48\x83\x7a\x8d\x7c\x9b\xc8\xb5\x26\x91\x34\xd8\xa1\xe3\x22\x57\x4d\x89\xfc\xad\xbe\x78\x2f\x95\xbb\x3b\xb5\xc3\xc8\x19\xd2\xe4\xfe\x98\x89\x94\xd0\xdc\x4c\x30\xa1\xde\x99\x8e\xe7\x6e\x67\xad\x5c\x00\x24\x10\x12\xb6\xb9\x4e\xa8\x72\x4c\x7f\x44\x1f\xa4\x1f\x45\x5f\x44\x8d\x00\x0a\x0f\xc0\xae\x01\x34\x74\x93\x00\xc1\x00\xe6\xb2\x69\x2d\xea\x00\x90\x17\xe0\x8f\x97\x9f\x99\x12\x88\x33\xe0\x07\x09\xa6\x9d\x84\x5d\x59\x9d\xae\x37\x45\x79\xd5\x46\xc7\x65\xe4\xc2\x9b\x47\x2e\x1e\x15\x8d\x31\x6e\x06\x56\x44\xf9\xc1\xf3\xcd\x12\xb4\xc0\x28\x57\x10\xa7\x50\xd7\xe6\xf7\xc9\x84\x67\x85\x79\xfa\xed\x51\x18\xa6\x6d\x32\x63\x0f\x2c\x43\x04\x9a\x44\x81\x0f\x17\xfd\x89\x3f\x90\xff\x85\xa0\xc0\xe4\xc7\xbe\xf8\x00\x2c\x35\xcb\xe6\x47\x84\x8f\x8a\x96\xa9\xa9\x34\x73\x5f\x3b\x00\xe3\xa2\x25\x48\x79\x20\xb8\xd7\x13\xfa\xc0\xfa\xc2\x37\xf3\xbf\xc8\x3d\xf9\x23\xf9\xb1\xc9\x86\xe3\x5d\xb1\x4f\xac\xe2\x03\x05\xfb\xbe\x22\xae\x70\xe4\x44\x47\xe0\x1a\xde\x02\x50\x32\xbf\xd5\xe4\x0a\x04\xec\x0b\x2e\x1e\xe4\xa2\xe3\x2a\x3e\xb5\x54\x31\x61\x06\x42\xa6\x6c\xc0\x6a\xbc\x56\x4b\x98\x84\xbd\xd0\x2f\x65\xca\x56\xfa\x9c\x82\x70\xfc\x19\xac\x16\x3a\x1f\x86\xed\x80\x90\xe5\xa0\x6f\x97\x09\xac\x7e\xc0\x21\x37\x7d\x9b\xe1\x6e\xeb\x26\xbb\x72\x92\xd5\x11\x70\x73\x37\x80\x7a\x57\x4d\x46\x8d\x8f\x0e\xad\x9e\xc2\xaa\x71\xd8\xbe\x6c\x67\xee\xee\x9b\x28\xeb\x1e\xe0\xba\x14\x1f\x73\x2b\x69\xaf\xef\x8a\x03\x06\xb8\x8d\x85\x1b\xf3\x9c\xd7\x32\x71\x17\x4b\xe1\x33\x46\x8e\x03\xd9\x15\xee\xa5\xa1\xcc\xab\xf2\xb6\x5b\x00\xae\xe3\xb8\x55\x27\x5a\xcf\x2d\xfb\x1d\x63\x6c\x14\x9b\x70\x44\xc8\x68\x9f\x5d\x10\x7b\x28\xe4\x94\x21\x24\xb4\x5d\xb4\xdc\x4c\xa4\xe2\xff\x68\xf4\xc5\x36\x4b\xd7\x85\x0f\xad\x88\xf8\xc1\x71\x96\xe5\x6c\xa0\x51\x94\x0a\x4c\x49\x89\xa8\xd3\x6e\xc8\x30\x87\x34\x70\xcb\x5d\x47\x79\x86\xe8\x4b\x89\x54\x29\x16\x28\xd0\xa5\xf8\x22\xfb\x1e\xd5\x9a\x8f\x5d\x44\xad\x6f\x90\xbb\x6c\x59\x87\xef\x94\x4c\xa8\x18\x2f\x97\x21\xff\x9a\xb3\x7c\x4f\x21\x5a\x0e\x73\xf1\x2b\x79\xe2\xe9\x58\x17\xe1\x7a\xb8\x36\x96\x25\x17\xeb\xfb\x77\x3b\x53\x1d\x45\xf3\x79\x5b\x5a\x48\x9a\x44\x15\xba\xaa\xcb\xaf\x61\x77\xb9\x71\xc7\x6f\x0f\x96\x97\xe7\x70\xd5\x2f\xca\x46\x35\xfc\x07\xe8\xcf\xe1\x1a\x3d\xab\x65\x23\xf0\xf0\x8a\xdc\xb1\x6f\x2b\xc7\x06\x5a\xb4\x1f\x94\x1b\xa1\x63\xae\x8b\x7e\xcd\x7a\xea\xb8\x2d\xdb\x50\x36\x26\x09\xec\x7b\x00\x1e\xac\x9d\x2d\xb7\x91\x45\xb2\x88\x18\xc5\x54\x01\x9f\xc4\xf3\xb4\x66\x96\xb2\x4f\xb0\x9c\xac\x10\xb9\x04\x9b\x92\x48\xa2\x11\x6d\x71\x3b\x2d\x2a\x41\xf5\x63\xf3\x8f\xd7\x1d\xca\x52\x4f\xc8\x9a\x7e\x0d\xd0\xe6\x97\x1d\xdb\x0b\x17\x68\x54\xf6\x08\x60\xf4\x84\x8c\x7c\xa2\xe0\x1c\xc8\x35\x31\x8a\x42\xac\x28\x44\xf8\x7d\x46\x29\x96\x6b\xd4\x15\x1d\xb2\x27\xa8\xa2\x0e\x47\x10\x98\xa7\x83\x1d\x33\x13\x2a\x5c\x9e\x58\x9d\xf7\x21\x00\xa3\x87\x93\x10\xfb\x1f\xea\x3a\x83\x8e\x9c\xe8\x5e\xdb\xa4\x5f\xe8\x38\x90\xb9\x12\x3f\xdb\x64\x26\xe6\x1a\x02\xe0\x69\xd6\xa8\x2f\x0e\xa5\xcc\x18\x15\x4d\x62\x75\xed\xe3\x05\x4b\x11\x8f\x63\x66\xad\xc6\x67\x25\x33\x95\x33\xab\x53\x50\xcc\x94\x8b\xe6\x45\xa1\x7e\x89\x09\xb0\x8c\xa8\x14\xda\x81\xa6\x2b\x7c\x21\x47\xf1\xc9\x1f\xb2\x6c\xa3\x20\x13\xfc\x60\x29\x15\xc1\x2b\x45\x89\x8c\xb5\xb2\x8f\xe2\xd8\x87\xda\x5c\xad\x55\x03\x8b\x33\xbc\x96\x9a\x85\xcb\x59\x52\xdb\x0d\x51\xb3\x24\x57\xdc\xcc\x07\x4e\xb1\x5e\x9f\x69\xdd\xba\x2f\xcf\xdc\x87\xeb\x88\xaf\xa7\xc4\xf7\xe7\x15\x79\x22\x1d\x36\x55\x34\x85\x75\xb6\xdb\x8a\xa4\xb5\x39\x1c\xcb\x16\xd6\x27\x91\xac\x37\x54\xdb\xc5\xb6\xc3\x73\x48\x3c\x03\x39\xf2\xe9\x19\xeb\x2f\x6c\x15\xa2\x68\x03\x8b\x84\x42\x84\x13\x32\x53\x5c\x2a\x87\x04\xd4\xe8\x17\x58\x75\xa9\xb7\x2b\xb1\x23\x80\xeb\x3a\x85\x7b\x47\x17\xb8\x78\xde\xf6\x17\x6e\xfd\xd2\xea\x40\x1a\x2e\x7c\x9c\x4a\xa6\x23\x41\x1b\x16\x16\xb9\x18\x1f\x31\x3b\xe8\xbe\xb0\x9a\x46\xac\x14\x60\x36\xaf\x4f\xee\xb5\x9d\x26\x4a\x6a\xed\xc2\x41\xb0\x1d\xdd\x5a\x2a\x4f\xf4\x5c\xae\xe5\x3e\x1c\x7d\xcf\x17\x19\xba\x58\x33\x2d\xc2\xf1\xaf\x97\x3f\x87\x2c\xe4\x95\x36\x72\xff\x5d\x83\xc6\xfc\xd1\x20\x8a\x51\xed\x2c\x20\x10\x5b\x55\x89\x2a\xd9\x40\x5a\x0c\x63\xc6\x18\xcb\xe3\x90\xc9\x1d\x91\x90\x43\x3e\xc1\x72\x45\x5c\x13\xae\x14\x83\x6a\x08\x08\xbd\xd1\xad\x50\x0d\x2f\x6a\xf2\x17\x2b\x12\x94\x7d\xec\x19\x6e\x4b\xcd\xa7\xf6\x3c\x03\xe4\x93\x90\xc7\x72\x06\xda\x63\xf5\x2d\x48\xc3\xe7\x23\x4b\x89\x91\xa9\xc0\x7e\x21\x8e\xa1\xac\x0e\x13\xa6\xce\xd5\xe1\x1b\x01\xd7\x08\x20\x7f\x4c\x98\xa3\xdc\xfe\x9b\xf6\xbb\xab\x9b\x5e\xe7\xbc\xff\xa6\xf0\x5f\xfb\x58\x27\x7f\xb9\x87\x2c\x61\x29\xfa\x22\xb8\xa1\x42\x5a\x16\xec\x25\xa1\x69\x5a\x24\xc5\x62\x04\xe4\x00\xcd\xe9\xeb\x9e\x8a\x95\x9e\xa8\xc5\x66\xde\xf3\x2f\x2c\xbd\x69\xc0\xd2\xdb\x4b\x78\xc0\x5a\x76\xda\x5a\x12\xcf\x05\x5f\xf3\x0a\x2b\x4f\xe5\xce\x7e\xb7\x3e\x05\xe3\x49\x80\xbd\xf2\x46\x3f\xcc\x78\xa3\x86\xd0\x50\xc6\x70\x04\x34\x20\x92\x39\x81\x74\x00\x4b\xb4\x73\xf2\x13\x99\x72\x01\xa1\xbb\xcb\x96\xf6\xae\x3c\x8f\x4d\x30\x8c\xbb\x97\x77\xe5\x02\x03\x3f\x5f\xdd\x95\x91\x39\xdb\xbf\x2e\x47\x23\x2e\xb7\xb0\xcc\xa6\x13\x4d\xb1\x08\x8f\x92\xb8\x12\x61\x65\xea\x26\xfa\x81\x99\x4f\x58\xd0\x64\x1f\xce\x50\x07\x84\x08\x6a\x1f\x1b\xf8\x92\x36\xeb\x93\xc1\xa7\x9a\x22\x38\x85\x82\xd3\x73\x30\xe4\x4a\x66\x20\x6b\xb3\x50\x05\x27\x8a\xe7\x6d\x61\x69\x12\xa8\x9b\x01\x66\x25\x6f\x93\xb4\x57\xa6\x14\x76\xb9\xfa\xf0\x76\x40\x35\x2f\x9a\x93\x23\xfc\x78\xad\x20\x9f\x9b\xd8\xad\x65\xdb\x2a\x96\x92\xb4\xaf\xbb\x35\x6b\x7d\x51\x95\x8c\xbf\x2d\xb0\x80\x2c\x08\xe9\xfb\xc6\x09\x88\x02\x91\x5e\x04\x44\x80\x9b\xe9\x6e\xe8\x00\x68\xcb\xb8\x2e\x1b\x48\x9e\x54\x16\xaa\x8d\x36\xd8\x3e\x6e\xa6\x98\x00\x18\x8b\xea\x25\x9d\x8d\x93\x4d\x8a\x56\x7d\xc6\xc3\x06\x82\x32\x29\xbe\xf6\x26\x37\x07\x4f\x46\x67\xd4\xa1\xb2\x82\xb0\xe3\xd3\x4d\xeb\x50\x74\x5a\x7d\x11\x97\xb6\x45\xf1\xc4\xd2\x80\x4f\x6d\x06\x2c\x33\xcb\x2e\x14\xfa\xcd\xc3\xcd\x73\x14\x27\x9e\x54\x03\x27\xcd\xa4\x9c\x9c\xbc\xd0\x8f\xa3\x3e\x3d\xa1\x3e\xb6\xc6\x8b\xf4\xce\xf3\x1b\xe7\x52\x43\x7b\x51\x56\xa6\xeb\x98\x3d\x30\x81\xa9\xd2\x34\xc2\xa6\x89\x42\x1a\xad\xf4\x2f\xbe\x33\x21\x70\x89\x67\x2e\xa1\x9a\x06\xcf\x67\x61\xdb\xd4\x94\xbb\x96\x97\x13\xf0\x1e\x72\x53\x74\x05\x13\x78\x03\xe2\x83\x2f\x9b\xcc\x75\x0e\x3d\xdc\xd2\x40\x6c\x3c\xc4\xf8\xf9\x5a\x92\x65\x5f\x66\x2c\xd9\x26\xa1\xe0\xda\x17\x2f\x5c\x66\x3e\x2c\xe3\xd1\x81\x69\xcc\x6d\x9d\x91\xde\x98\x59\x1d\xed\x8a\x71\x6e\x94\xd6\x63\x07\xfa\xc9\xa5\x5e\x6f\x38\x4e\x9f\xd8\x33\x52\x72\xba\xde\x10\x9f\x27\x94\xbd\xb7\x10\x14\x5e\xb2\xc7\xbd\x90\x18\xf6\xd5\xa3\x6c\x0a\x5e\x5f\xc5\xf5\x3e\xe1\xbd\x18\xf2\x54\x00\x5e\xc1\x63\xdc\x79\x2f\xa5\x8b\x1b\x8f\xfb\x8c\xef\xac\xe0\xaf\xf3\x31\x5d\x95\x53\x50\xf2\x04\x0e\x19\x71\x92\x27\xc6\x71\xd7\x07\xa0\xc3\xf5\x59\xe7\x82\x88\x82\x19\x5c\x1a\x9e\x5d\x3c\x6d\xe8\x34\xe4\xf9\x57\x41\x24\x2a\xcb\xb5\x82\x1b\xed\x2b\xa0\xf8\x09\x82\xce\xeb\xcc\x0a\xa5\x40\x78\x17\xf1\xb3\x9f\x6c\xd3\xca\x0d\xbd\x74\x60\xa5\x74\xd3\x78\x40\x0e\x48\x3f\x4e\xb1\x5c\xdc\xca\xd2\xcd\x87\x15\x36\xbc\xa7\x63\x4b\x83\x04\x52\x27\x53\x95\x3c\x01\x12\xdf\xf1\x60\xcf\x9a\xd2\x79\x14\x89\xe8\x80\xdc\xe0\x72\xe6\x22\xfc\x55\x66\xb5\x9e\x98\x63\x12\xad\x8b\x08\x6a\x45\xe0\xec\x60\x68\xcb\xe2\xfb\x1a\xab\x06\xe1\x28\xd1\xbf\x80\x38\xf1\xdd\x4b\x84\x76\x87\x28\xbb\xb9\xcc\xc9\x23\xd7\x56\x1b\xeb\x0b\x30\xc0\x07\x3c\x79\x23\x1d\x06\xfc\x11\xbc\x05\xb1\xb7\x3a\x1f\x4e\xb9\x55\x5d\x8b\x49\xde\x01\x47\xb8\xf1\x91\x98\x78\x8e\xed\x07\x70\x6d\xfb\x18\xcf\xba\x6c\x8a\x15\xe7\x63\x0b\x8b\x43\xd1\xc8\xae\x61\x9c\x91\x7f\xf0\x69\x03\x39\x23\x31\x3b\x56\x6b\x6a\x8f\xd7\x21\x92\xb3\xfe\x50\x96\xb3\x99\x21\xe5\x9c\x6b\x53\xb9\x4c\x9a\x73\x98\x8b\x2d\xd8\x47\x18\x67\x13\x96\xca\xb2\xf8\x1e\xff\x49\xbd\xb4\x73\x1b\x4a\x25\xd5\x8a\x60\xd7\x8d\xf2\xcd\x4b\xcb\x25\x8b\xaa\xc2\x6d\xed\x75\xdd\x44\xdd\x2a\xd2\x21\x62\x52\x88\x42\x7e\xca\x69\x04\xac\xca\xba\x85\x34\x10\xee\x90\x00\x1e\xea\x42\xac\x51\x5f\xd4\xcb\x0d\xcb\x69\x6c\xd7\xc8\x85\xbd\xe6\x9c\x45\xd6\x22\x3f\x0b\x67\x11\xf9\x1c\x42\x35\x51\x19\x0d\xc5\x8d\x59\xe5\x5c\x79\x53\x77\x83\x16\x00\xe2\xc2\x36\x41\x6f\x35\xa7\x72\xcd\xb8\x82\x95\xe7\xc2\x5d\x99\x4f\xa3\x41\xed\x18\x80\x01\x69\xd7\xfb\x4f\x16\x07\x83\xf1\x11\x38\x23\x9c\xa7\x92\x62\xd9\x95\x80\xd2\xb1\xd6\xca\x6d\x0a\x86\x17\x81\x44\x01\xce\x55\x5c\x31\x0b\x0e\x8f\xcc\x42\x75\xa2\x0a\x77\x0b\xe2\x4e\x2e\x52\xa6\x04\xa3\x66\xf2\x7c\x0e\xfd\xb3\x5d\x4d\x86\xcf\xe6\xdc\x3f\xdb\x0b\x12\x6a\xc5\x61\xbe\xa1\xaf\x7c\x03\xc7\x73\x81\x8b\xb7\xa0\x44\xd5\x01\x46\x17\x39\x05\x9b\x60\x1e\xee\xe4\xf3\xaf\x57\x6c\x9e\x26\xfa\xa1\xc6\xa0\xb1\x10\xf7\x60\xcf\x66\x8c\x26\xb8\x62\x49\x5e\x6f\x98\x41\xcc\x66\xe8\xa3\x33\x1b\x0d\x2c\x67\x1f\x20\xbc\xd0\x06\xbb\x79\x43\x1f\xaf\xe0\x7b\x28\x97\x8f\x5f\xaf\x2f\x38\x2c\x53\x36\x83\xa5\x12\x10\xd1\x4b\xb0\x47\xc8\xf5\x57\xdc\xfe\xdb\xd7\x16\xf3\x7a\x5b\xec\xa2\x73\xbf\xb8\x1f\x1a\xaa\xad\xac\xa8\x20\x16\xeb\x90\x62\x5e\x35\xc1\x50\x95\x66\x2e\x71\x05\xd5\xc2\x8a\x02\xb0\x4c\x3d\xed\x8b\x9f\xe5\x23\x7b\x60\xea\x88\x50\x43\xa6\xd2\x0a\x7d\x91\x57\x0c\xa2\xec\x4b\xe9\xff\xe8\xfd\xa0\xe4\x92\x4e\x59\xda\x01\xd1\x21\x8a\xab\x75\x4a\xb2\x33\x40\xd7\xa5\x58\x42\xda\xa0\x2b\xab\xec\x06\xda\x17\x58\x98\x0c\x3d\xae\x40\x8d\xdc\x4f\x0c\x58\xe5\x1f\x82\x79\xfc\x0f\x2d\xd2\xb3\x32\x0e\xd7\xe5\xf1\x46\xe9\x1a\x4d\x63\xeb\x8b\xb1\x92\xf9\x2c\x28\x31\x72\x08\xda\x13\x9a\xc9\x6b\xcc\xe3\x30\x18\x6f\x1b\x4f\x68\x6a\x25\xa8\xe5\x84\x53\x52\xb3\x5f\x98\xd5\xa8\x1c\xfb\x1c\x13\x90\x65\x5e\xc1\xdb\xeb\x02\x7a\x80\x8c\x9a\x21\x59\xf6\x67\x66\x5f\x40\x83\xd5\x20\xbf\x07\xeb\x46\x29\x10\x6e\x4b\x88\xd9\xc8\x22\xe4\xad\x27\xf5\x11\x9c\x45\xb7\xce\xaf\xeb\xcb\x73\xd4\x15\xe1\x6a\xd8\xfb\xf5\x1d\xe0\x95\x51\x5e\xe7\x6a\x26\x21\x05\x22\x9b\xfb\xb0\x51\x97\xd6\x31\x93\xb3\x1c\x1d\xd0\x3c\xf6\x47\xd6\x0e\x88\x6b\xf3\x91\x9a\x64\x62\x45\xc7\x22\xbd\x61\x4f\x8e\xf9\x82\x91\x3e\xad\xaa\x5a\x33\x83\xb3\xb8\xf7\x06\x33\xcc\xda\x56\x08\x4c\x74\xf6\x51\x3d\xf0\x57\x96\x91\xa9\xed\xb5\x84\xf4\x1a\x61\xb3\xd5\xae\x75\x09\xd9\x6c\xef\x3e\xf9\x1d\x54\x09\x28\x4f\xca\x05\x89\x0a\x94\x3b\x67\x43\xed\x91\xce\x15\xdf\x4a\x63\x70\xc6\x2a\x80\x5c\x2d\x74\xcf\x29\x9d\x11\x6e\xf9\xb6\xbd\x79\xd4\x98\x1d\x91\x47\x7b\xe2\x4c\xae\x2c\x6f\xce\x15\xf7\x27\x0c\x14\xc6\x25\xdb\x57\xd6\xd8\x4e\x50\xda\xc0\x48\xc5\x84\x46\xa0\x7e\xae\x44\x64\x62\x72\x1a\x5c\xfc\xb0\xc3\x19\x17\xf7\xb6\x33\x04\x1b\xf1\x8e\x01\x65\xf9\x9b\x54\x3e\xe0\xbf\xb4\xa7\x2b\x29\x6f\x87\x5d\x6e\x86\x72\x5e\x75\x14\xb8\x18\x47\xa9\x4a\xf5\xfa\xf2\x3a\xa0\x21\xb5\x5f\xae\x87\x79\x52\xfb\xa9\x97\x27\xb6\xf9\x76\x49\x76\x47\xe3\xe7\xab\x0f\x78\x14\xce\xe4\x42\x4a\x9c\x44\x12\x27\x91\x39\xad\x0b\x52\x40\x11\x28\x9c\x3a\x09\xe5\x3f\xc3\xbf\x10\xaa\x0d\x97\xe6\x3f\x89\x54\x7d\x81\xbf\x1f\x05\x54\x17\xfb\x42\x91\x85\xd9\x80\x59\x10\xe8\xc9\xa3\x82\x6f\x27\x57\xf6\xda\xb7\xbf\x0c\x6e\x3a\xb7\x57\x77\x37\x67\x25\xe1\xf2\xec\xe2\xee\xb6\xd7\xb9\xa9\x7d\x86\x85\x78\xba\x57\x97\x83\xbf\xde\x75\xee\x1a\x1e\xf9\x06\x2e\xda\xef\x3a\xa5\x22\xc0\x7f\xbd\x6b\x5f\x74\x7b\xbf\x0e\xae\xde\x0f\x6e\x3b\x37\x9f\xba\x67\x9d\xc1\xed\x75\xe7\xac\xfb\xbe\x7b\x86\xe5\x03\xa3\x77\xaf\x2f\xee\x3e\x74\x2f\x07\x3e\x24\x26\x7e\xe4\xcb\xaa\x0f\xa2\x2e\xaf\x2e\xdf\x77\x97\x17\x2d\xab\x9f\x6f\x23\xc4\x7d\xc1\xb1\x81\x09\x15\x40\x36\xfe\x02\x1f\xce\x1d\x39\xf0\x7f\x80\x4d\xc5\x55\x11\x3e\x3e\xf2\xff\x42\xc8\xe4\x63\xcb\x36\xbc\x55\xad\x38\x71\x7d\x11\xcc\x9e\xe1\x8e\x30\x74\xac\x7d\x05\xb1\xd2\x68\x4f\x49\x7b\xe6\x0a\xf0\xcb\x72\xa7\x50\x7e\x2c\x8c\xd4\x5b\xbb\x81\x8e\xa0\x02\xa0\xab\x6a\x57\xdd\xd2\x72\x83\x6e\x4e\x30\x04\x67\xf5\x4b\x63\x5c\xff\x2a\xd0\xba\x2f\x95\x57\xa6\x85\x53\xe2\xb9\x9a\x6d\xd6\x8e\x0b\xb2\x27\xe7\x82\x4e\x17\xea\xa4\x61\x02\xa1\x4b\x2d\x9c\x32\x61\xaa\x2d\x96\x48\xa8\xdc\xf2\x84\x91\x5f\xfe\x52\x0c\x0a\x6c\x35\xce\xf6\x91\x2f\x80\x20\xba\x07\x2a\xc7\x55\x5d\x45\x80\xa5\x9e\xbc\x76\x54\x53\x35\x17\x42\x59\x72\x11\xe5\xf0\x94\xa2\xbd\x5c\xd5\x00\x72\x4c\x2a\x54\x7c\x4a\x6e\x59\x06\x95\x8a\x83\xe4\x63\x77\x71\x06\x05\xb7\xab\xd8\xe9\x43\x57\x80\xdb\x89\x16\x88\x30\x03\xeb\x08\x05\x1f\xa1\xfd\xc6\xa3\x70\x4a\xda\x69\xaa\x0b\xe0\x1b\xdb\x46\x89\x72\x3c\x9b\x39\x2e\x0f\x3b\x4e\xbb\x11\x69\x48\x6f\xa8\x15\x56\x6a\xee\x91\x9d\x52\x5e\xf5\xfd\xc0\x93\xd8\x60\xab\x8b\xad\x47\xf5\x7d\x4d\xa9\x84\xda\xbb\xc2\xd1\xcf\x8e\x3d\x36\xd7\x67\xa8\xed\x34\xac\xf5\x00\x0e\xc0\x76\x7d\x36\xe6\x1b\xaf\xe8\xd2\xcf\x38\xab\x40\xb7\xad\xdd\x5f\x09\xfa\xed\xe9\xed\x4d\xf5\x92\x05\x1c\x95\x41\xa0\xcb\x0d\xe6\x51\xae\x75\xdf\xb0\x5c\xc1\xcd\x12\xad\xdb\xa6\x56\xa8\x85\xe4\x8e\x8d\x2d\x51\x80\xb2\xc1\x13\x30\x06\x52\x2e\x1c\x8e\x12\x0b\xf8\x7d\x1e\x50\x1a\xcb\xba\x3a\xeb\x1a\x1d\xca\x87\x52\x66\xfb\x14\x8b\x3a\xd6\x9e\xdd\xc8\x9c\xb1\xcb\xa1\x0d\xa7\x67\xfd\x8a\xb7\x76\xaf\xfd\x79\x81\xda\xb2\xb5\xfb\xb0\xae\xb9\xa2\x3a\x99\x55\xc1\xa4\x5b\x78\xa4\xa2\xd6\x83\x4b\x6a\x1d\x0d\xe3\xdc\x15\x65\xd0\x25\x5c\x67\x2c\x1f\x00\x76\x88\xd8\xa6\x74\x54\x84\xde\xb8\xe2\xf4\x5e\x26\x3c\xf1\x62\x22\x39\x41\x43\xd7\x49\x24\x9a\xcc\x67\x56\x26\x99\x0e\x5d\x26\xc8\xf2\x8d\x8e\xd6\x66\x87\x2d\x7f\x3a\x3c\xc3\x30\xad\xaf\x06\x67\x58\x37\x82\x57\x8b\x66\x88\x79\x09\x81\x36\xec\x74\xfd\x6a\xff\xd1\xcf\xe8\x8f\x48\x52\x79\x43\x5a\x59\xd4\x5a\x48\xfb\x27\xc7\x50\x7c\xc7\xe5\xb0\x38\x77\x85\x26\xc7\x24\xe3\xf7\x8c\x7c\x07\x3e\xfe\xf6\x75\xf7\xbb\x23\xf2\x5d\x1c\x47\xfc\xdd\x06\xec\xaf\x00\x2a\x75\xe3\x76\xb0\x86\x20\x89\x97\x42\xd4\x20\x2f\x22\x1e\x66\x3b\xaa\xa9\x03\x29\x63\x86\x29\x04\xdf\x83\xb8\xa4\x10\xfb\xe2\x8c\xd1\xab\x78\x63\x71\x64\x76\x06\x88\xb3\xed\x2d\x66\x39\xec\x39\x1e\x63\x39\x23\x5c\x91\x37\xd1\x0e\xf5\x37\x0a\x48\x3d\xdd\x40\xbc\x87\x98\xa4\xba\x59\x95\x8c\x05\x7e\x31\x6b\x37\x65\x15\xe1\xbd\x36\x72\x5b\x23\xfa\xa7\x5d\xb7\x22\x2e\x7a\xab\x41\x1a\x3b\x50\xd9\xd3\x52\xd9\x3e\x02\xdf\xca\x83\xdb\xfc\x36\x3b\x43\x81\x28\x6a\xc6\xe7\x71\x5b\x09\xd7\xf3\xe9\x32\xf2\xe0\x6a\xac\xdd\x0d\x1d\x4a\xd1\x9a\xac\xf6\x28\xdd\xa2\x27\x12\x3d\x3b\x8b\x63\xad\x0e\xb5\x6d\x1c\x1e\x92\xe4\x18\x9a\x6e\xf8\x94\x1d\x11\xa8\x21\x55\x78\x4f\xdd\x79\x05\x72\x83\xab\xca\x15\x9b\xc0\x4e\x54\x32\xe1\x0f\xf5\xf1\xf7\x4b\x37\x78\x07\xbf\xf3\x65\xfb\x63\xe7\x7c\xd0\xb9\xec\x75\x7b\xbf\x0e\x16\x5d\xd0\xe5\xc7\x37\x67\x3f\x77\x3f\x75\xce\xe3\x17\x6e\x7f\xbd\xed\x75\x3e\x0e\x3e\x74\x2e\x3b\x37\xed\x5e\xe7\x7c\xa9\x71\x6e\x59\x67\x75\x40\xb3\x2e\x40\x50\x16\xb0\xb1\xa9\x07\xa5\xf4\xf0\x2b\x68\xd9\x82\x34\x4a\x6e\x34\x79\xe0\x9a\xbb\x54\x2b\x27\xec\xdd\x75\xbd\xb1\xad\xa6\xf7\xd3\x28\xc6\xfa\x08\x31\x49\x8a\x4e\xb8\x33\xf9\xc7\x82\xa0\xf3\x36\x8b\x14\x03\x97\x48\x54\xca\xab\x55\xd3\x89\x5b\xb0\x53\xd2\x76\x5b\x5b\xd7\xbe\x90\xc4\x8a\xa1\x4c\xe1\xe8\xd1\x15\x1d\x86\x4e\x8e\x49\x75\x8d\x4f\x09\x62\xc6\x45\xc8\xb7\xa1\x41\x10\x9e\xa8\x62\xe2\x3b\x43\xd8\x97\x59\xc6\x13\x6e\x22\x34\x5e\xa9\xc8\x94\x0a\x3a\xf6\xea\x47\xae\x99\x5a\xc1\x3d\xf6\xe6\x9b\xde\x87\x16\xd9\x14\xdf\x18\x6b\x4a\x8e\x5c\x02\x20\x9e\x91\x2e\xb1\xe5\xc9\x74\xd0\x06\x1f\xd7\x02\x68\xd8\xba\x43\xda\x93\xfa\xba\x22\xa2\xd2\x45\x54\x3b\xe7\x36\xf5\x68\xa6\x8f\x78\x71\xbd\x0c\x37\x79\x0d\x1d\x7e\x65\x3f\x79\x09\x75\x73\x6f\x75\xb1\x06\xab\x1d\xa9\xb5\x94\xb2\xc7\x5a\x55\x45\x01\x89\x85\x2a\x55\x5e\xed\xbc\x6c\x06\x20\xde\xac\x24\x50\x69\x11\x57\x97\x03\x82\xa2\x81\x54\x37\xd4\x02\x02\x64\xae\xf4\xa5\x54\x04\x5a\x4c\xb5\x2b\x0f\xee\x2b\x97\x03\xaa\x0c\xe6\xe5\xd4\x04\x5a\xb9\x6e\x2f\x37\x97\xb2\x66\xa0\x6b\xd4\x02\x0a\x36\x68\xc0\xff\xdd\x8c\xe5\x43\x7a\x25\x4f\xb3\x92\x21\xda\x1e\xaa\x1a\xd3\x65\xac\x68\x51\x7d\xbf\x73\x77\x3d\xaa\xef\x1b\xba\x5a\x75\x51\x9c\x95\x0c\xdd\x95\x65\x73\xa9\x7e\x0e\x36\x23\xae\xde\xd8\xcc\x7f\xa1\x44\xef\x5e\x44\x13\x68\xa2\x26\xeb\x62\x3d\x53\x1d\x82\x67\x76\xcf\x0b\x8e\x14\xa0\xe6\x23\xb7\xb2\x51\x34\x01\x94\x5d\xac\x1d\xeb\x7c\x27\x4d\x1e\x1d\x3b\xb5\xf5\xb6\x07\x5e\x5d\x5c\x97\x15\xf1\x72\x6e\xb5\x0b\xb4\xe0\x22\x16\x47\x26\x49\xae\xd4\x66\x89\xc0\x25\x21\x40\xa4\x80\x8d\x14\x95\x7b\x42\xb9\xb4\xba\xe7\xd8\xe7\x84\xea\x6a\x97\x2b\xb7\x7c\x8b\xfc\xc1\x52\x33\x1f\x18\x44\x0f\xef\xa5\x08\xc7\x06\xe9\x1c\x30\x90\x3b\x95\xad\xac\x68\x79\x8b\x48\xc5\xb9\xca\x0a\x73\x04\x25\xf6\xee\x6c\x45\xa1\x59\x90\x65\x55\x5a\x51\x1c\x4c\x03\xcb\xd9\xbc\x06\xe7\x53\x0e\xd5\x8d\xa6\x61\xac\x56\x4c\xdb\x5b\xa6\x4c\x23\x8e\x76\xd4\x0b\x5a\x6a\x40\x5f\x2f\x4b\x84\x20\xbb\xcf\x11\x69\x1a\x94\x3e\x1a\x8b\xae\x9a\xff\xc3\xde\xac\x8a\xe9\x89\xcc\x9a\x78\x3d\x74\xb3\x31\x54\xc2\x76\xb3\xf1\x48\x09\x4f\x38\x1d\x17\xee\x31\x68\x8a\xe2\x5a\xe3\x16\x39\xc7\x26\x6a\xef\xae\x75\x26\x5b\xa4\xb0\x39\x94\x17\x17\x3f\xe1\x86\x06\xbe\x80\x42\x3d\x8e\x33\xc5\x0b\x5b\x61\x21\x3a\xce\xd1\xf3\x10\x3e\x8f\x6a\x16\x84\x00\x44\x6e\x34\xd1\x46\xe5\x09\x20\xfa\x4c\x98\xda\x08\x45\x28\x44\x90\x16\x4d\xd8\x01\xd7\xf3\x24\x07\x3c\x07\x02\x86\x73\x0e\xeb\x52\x8e\xbb\x07\xc3\x80\x29\xd7\x0a\xbf\xcd\x9c\x6f\x57\x9b\x73\xb9\x5c\xc1\x93\x99\x9e\x4b\xd4\x52\x9a\xc0\x21\x95\x7a\x5b\x83\xb2\xc3\x22\x0c\x14\x08\x48\x07\x46\x71\x06\x10\x3c\x59\xc8\xdb\x2d\xdf\xd1\xce\xb4\xb4\x92\xb0\xec\xf9\x3d\xdf\xd1\xcc\x6c\x87\x33\x1f\x40\xba\xc5\x2e\x7e\xdf\xd2\x0c\xd0\xca\x06\x6d\xb2\xd4\x55\xc7\x45\x14\x25\x37\xfb\x60\x61\xc4\x82\x1c\x7d\x71\x63\x47\x81\x5f\x80\xa1\x11\xc5\xbb\x80\x7a\xcf\x0a\xd8\xda\x11\xa1\xee\x2b\x58\xb6\xa6\x82\x6b\x7a\x10\xd5\xfa\x68\x9a\xd8\x36\x98\xcb\x41\x04\x7d\x87\x4f\xc9\x28\xa3\x63\x9f\x85\x09\x15\x64\x46\x85\x8a\x62\xe5\x2c\x2c\xc9\x62\xff\xd4\x8e\xfd\xf3\x86\xd0\x6e\x3d\x63\x09\x2a\x0b\x5b\x4a\xc5\xb0\x0b\x3c\x0d\xe6\x5b\xf8\x53\xd4\xd7\xd7\x70\x98\x9b\x53\x3a\x83\x60\x45\xa4\x74\x39\x0a\x5c\xbe\xe7\x22\x16\x5b\x30\xf2\xff\xfb\x5f\xff\xdd\xe2\xe9\x9a\x40\x79\x85\x17\xa5\xc8\x18\x8f\xc2\x67\xa2\xaa\x21\x14\xd8\xf1\xd2\x02\x99\xa5\x54\xf8\x5d\xc2\x2b\x26\x54\x3f\x9d\xdb\x6e\x49\xd5\xe5\x98\x77\xae\xe7\x25\xc6\xa1\x62\x30\xbc\xbd\x90\x72\xcd\x14\x3a\x30\x42\x8e\x67\x0d\x4a\x79\x63\x50\x07\x9b\x52\xbe\x51\x5c\x9a\x7d\xbf\x1e\x81\xa0\x64\x80\xa2\x63\xa6\x06\x69\x5e\x0a\x74\x5a\xd5\xf6\xb5\xfd\xe8\x3c\x37\xf3\xd5\xed\xeb\x8c\x26\xf7\x9b\xa0\x3e\xd8\xf7\x1b\x9a\x5d\xcd\xa8\x23\xcf\x5f\x59\x5e\x68\xc0\x54\x60\x15\x4c\x05\x17\x17\x12\xf7\x8f\x3c\x4b\x00\xb6\x7c\x24\xef\x39\xa6\x06\x88\x95\x2d\xf2\x1e\xe1\x0a\x41\xee\xc4\x2e\x12\x99\x67\x69\x5f\xb0\x2f\x33\xa9\x59\x29\x88\xb8\x06\x62\xce\x05\xce\xbb\x9e\xea\x2f\x8c\x0a\x7c\xff\x4e\x82\xc8\x57\x07\xc0\x58\xdc\xd3\xc5\x29\xd7\x13\xd9\x4e\x77\x64\xc2\x67\xdc\x92\xc7\xa0\xf6\x30\x3d\x5b\x05\x99\x33\xab\xb1\x0b\x93\xcd\x8f\x48\x98\x64\x85\x2c\x32\xf6\xc0\x14\x1d\x5b\x69\x85\xf2\x2c\x86\x13\x2c\xdb\x07\xd6\x73\x79\x96\x63\x3b\x77\x0e\x43\xae\xf3\x43\x6d\x20\x65\xb4\x63\x08\xc4\x39\x33\x84\x7d\x31\x4c\xa0\x07\xaf\xe7\x03\xb8\xa3\x20\x9b\xa6\x2a\x60\x18\xeb\xda\x7c\xc9\x3e\xf9\x3e\xb6\x7d\xaa\x8b\x8f\x50\x4f\xb5\xe3\xf5\xae\x7c\xc3\x84\x8a\xd4\xa5\x21\x14\x45\xee\x70\x76\x42\x1b\x46\xc3\x1d\xef\x83\xe9\x23\x64\x2a\x6c\x13\x21\xe0\xe1\x4a\xf1\xf2\xab\x95\xbc\xc0\xdf\x22\x95\x15\x43\x72\x61\x78\x66\xa5\x29\x37\x06\xab\xdd\xe4\x22\xe4\xc1\x43\x48\x58\xc3\x0a\x42\xf6\xbc\x18\x0f\xdc\x4a\xfa\x88\xfa\xf5\xb8\x75\x99\xa6\x3e\x62\x53\xf8\xe3\x3b\xdf\xd0\x72\x43\x1a\xa6\x92\xd8\xe9\x87\x58\x7e\xc8\x1c\x10\xd2\x4f\x26\x80\x16\x86\xbd\x2e\xd5\x14\x81\x89\x6e\x22\xc9\x83\xac\xb4\x98\x70\x56\xf0\x75\x4d\x34\x64\x20\x60\x04\x31\x04\xc7\x99\x86\x04\x04\xdd\x98\x78\xd0\x15\x41\x64\x72\x48\xb7\xa1\x0c\x42\x25\x87\x81\xfa\xee\x5c\x1c\x1f\xcd\xb2\x21\x4d\xee\x03\xaa\x68\x50\x8d\xa4\xf2\xf8\x6c\x56\x8c\x03\x28\x64\x24\x2e\x3b\xd0\x04\xe4\x8c\xa2\xbc\x77\xea\x52\x7a\xdd\xb0\x8b\xce\x5d\x25\x16\x81\xb5\x41\x40\x89\xc2\xd1\x63\x9c\x60\xca\x66\x99\x9c\x4f\x1b\x6e\xa0\x6a\x7c\xf8\x2e\xae\xbb\xa6\xf0\xf4\xbd\x5e\x3e\x15\xa6\xb7\xf1\xf5\xb3\x10\xc8\xbb\x87\xa4\xf2\x75\x5c\x93\x9b\x06\xbe\x56\xcf\x15\xd7\xb3\x8c\x96\xaa\x29\x57\x7b\xc0\xe8\xd6\xa7\x5d\x7d\x4c\xef\x5a\x6d\x72\x58\x3f\x3e\xaa\xf6\xf3\x27\xa9\x5b\xe3\xef\x5e\x57\xc0\x06\xb8\x90\x33\xab\xb0\xac\x05\xcd\xb4\x30\x50\xbd\x35\x53\xd2\xde\xcd\xb2\x2f\x0c\x1d\xfb\x00\x62\x27\xd5\xc9\x47\xc1\x94\x9e\xf0\x59\x09\xe9\x7c\xe7\x88\x2c\x47\x98\xee\x3f\x18\xc2\xb4\x01\x0b\x94\xb3\x63\xac\x41\x6a\x09\x44\xcf\x68\x52\xd8\x5a\x92\x8c\x6a\xcd\x47\x73\x92\xf2\x11\x84\x21\x98\x22\x3e\x06\xc2\x97\x03\x0a\x72\x19\x2d\xbb\xd6\xc4\x51\x4a\xf3\xdb\x4f\x0e\xd4\xee\xb1\xf5\xce\xe1\xe4\x03\xbd\x79\x1a\x63\x31\x40\xdd\xa5\x85\xdc\xd5\x35\x4b\x43\xed\x1a\x72\xef\x46\xe6\x02\xcf\xf7\x37\x30\x9f\x3e\xb9\x5d\x32\xd5\xd2\x5c\xe8\x95\xbc\xb3\xba\xf7\xe7\x2c\x63\x7b\x89\x88\x7a\x0a\x42\x58\xba\xd6\x05\xa0\xdb\xb3\xed\xff\x6e\xe3\xd9\x22\x66\xac\x21\x7b\x7a\x0f\xfb\xfd\x95\x23\x8f\x1a\x46\xf7\x81\xad\xe3\x0e\x5d\x49\x8b\x5b\x9d\xab\x26\xe6\xb8\xc3\x62\xef\x2d\xdc\xf0\x89\x27\xd4\xb4\xd7\xb7\xcc\x68\x6f\x08\x89\x28\x1d\x85\x6c\x77\x4e\x8f\x7d\xa6\x51\x91\xb7\xb3\xc1\x86\xbf\x90\x40\x38\x37\xba\x1b\xa7\xea\x3d\x1d\x3b\x5c\xbd\x5d\x9b\xd0\x5b\x31\xde\x2d\x42\x08\x5c\x1b\x6b\xef\x40\x63\x0b\xfb\x90\x1f\x9e\x58\xed\xa8\x2e\xed\xc1\xd9\xb6\x9e\x91\xaa\x0e\x9d\x6e\xf7\xf8\xd0\xcc\x95\x92\x1f\xcc\x14\x1b\xf1\x2f\x5b\x39\x64\xae\xe1\x53\x27\x91\xd9\xd9\xcb\xd1\x28\x93\xd4\x2e\x23\x42\xac\x5a\x05\x21\xd7\x2c\x2a\x13\x12\x16\xe0\x51\x71\x63\x98\xe8\x0b\x00\x71\xd3\x7f\x3a\x3d\x39\x19\xe6\xc9\x3d\x33\x27\xf7\x6c\x0e\xa5\xc2\xa3\x9f\xb6\x4a\x02\x64\x1a\xfb\xd6\xcc\x18\x2e\xc6\x9a\xcc\x30\xf9\xd0\x21\x8b\x56\xc6\xfa\x3d\x6f\xb1\x16\x79\x97\xc9\xa1\x3e\x22\xb7\xc9\x84\x4d\xe9\x11\xee\x2e\x3c\x87\x9a\x3a\xad\xb7\xad\xbe\xb8\x65\x8c\x4c\x8c\x99\xe9\xd3\x93\x93\x31\x37\x93\x7c\x68\x75\x1e\x74\x2f\x4b\x35\xc6\x7f\x9c\x70\xad\x73\xa6\x4f\x7e\xfa\xf1\x47\x58\x1e\xa0\x87\x21\x4d\xee\xc7\x0a\x8c\x50\x8b\x8a\x4f\x69\xcb\x6f\x17\x51\xa1\x37\x07\xc9\x52\x52\x0c\xd8\x97\x99\x62\xba\xae\x6e\xd5\xba\x29\xa3\x9a\xb4\x3f\xdf\x12\x3d\x17\x86\x7e\x39\x25\x1f\xb1\xc8\x18\xf9\x59\xe6\x4a\x93\x73\x3a\x3f\x96\xa3\xe3\xa9\x14\x66\x42\x3e\xc2\xff\xba\x9f\x1e\x19\xbb\x27\xbf\x32\xaa\xdc\xfe\xe2\x6d\x15\xa0\xf1\xc0\xfc\xa6\x72\xa1\x5d\xf5\xb2\x1f\xff\xdd\x97\x2f\x3b\x25\x3f\x9c\xfc\xf8\xef\xe4\x0f\xf0\xff\xff\x3f\xf2\x87\x26\xc4\xc7\x8d\xd2\x74\x8a\xd2\x72\xb5\xad\xc1\x4a\x6d\x01\xc4\x7d\xa6\x64\xb1\x53\xb5\x2d\xdf\xf3\xe4\x5e\x8e\x46\x03\xc3\xa7\x0c\xa3\x82\x06\x54\x2d\x60\x02\x6c\x99\x80\xcc\x1d\x78\x30\x96\x3f\x29\x40\xaf\x5c\xa7\x18\xa2\xeb\x8f\x9b\xce\x0b\x80\xd7\x47\xac\x0d\x1c\x81\xe6\x72\x0d\x5f\xb1\xd4\x9e\x8a\x4d\x0c\x87\xde\x58\xb9\x58\x9a\xa0\x08\xf6\x8e\xa1\xb0\x83\xb1\x3e\x76\x31\xc9\x55\x65\xdd\x16\x7d\x5f\xdf\x98\xb7\x03\x26\xf8\xa4\x9e\x8e\x5b\xa9\x76\x12\xa5\xee\xd9\x82\x1f\x74\xa3\x2b\xd9\xe3\xbc\xc6\x88\xea\x10\xda\x29\x55\xc8\xe2\xc7\x78\x26\x87\x8b\xda\x17\xbd\xab\xf3\xab\xef\xef\xa9\x51\x72\x4c\xc5\x5b\x40\xa6\x71\xe5\xe4\xed\x3b\x3c\x45\xea\x82\xb8\x29\x12\xd7\x86\x16\x76\xe1\x6a\xef\xd8\x58\x2f\xe5\x0a\xed\xcb\xeb\x9d\x77\xbb\x7c\xe7\xe1\x93\x7a\x66\x59\x06\xb3\x0d\x1d\x14\xd8\x91\x30\x57\x7b\xbb\x59\x6e\xb8\x38\xdf\x6d\x2a\xe4\xdf\xce\x58\xc2\x99\xc6\xa6\xc1\xef\x01\x31\x1a\xc2\x47\xdf\xb8\xa8\xe1\xda\x43\x05\x29\x5f\xfb\x48\xe5\x5c\xc0\x8a\xd9\x81\x52\x3e\x83\x76\x5f\xf0\x06\x8f\xd7\x54\x2e\x00\x4c\x14\xb5\x6c\x63\xcb\xec\x57\x8d\xc9\x6e\x71\xa1\x75\x2b\x28\x1c\x8f\x68\x62\x57\x2f\x24\x55\x61\x28\x73\xcc\xaa\xea\xd6\xb1\x47\xf5\xfd\x7e\x8d\xe1\x3b\x23\xac\xf2\xb4\x40\x24\x44\x6a\x74\x11\x47\x7c\x21\x83\xcc\x50\x7d\xdf\x94\xa6\xb1\x71\xb5\x3b\xbb\x14\x3e\x83\x69\xd9\xf8\x7c\x84\x25\x8b\x65\x35\x00\xa6\xb1\x0a\x62\x04\xda\xe0\xc3\x77\xb0\x12\x0e\xcf\x58\x5a\xcd\x96\xad\x8e\x7f\x15\x19\xa0\x47\x27\xb2\xd7\x42\x3e\xe6\xd4\xaa\xaf\xe0\x74\x9c\x52\x31\xc7\x83\x64\x2f\x2c\xaa\xef\x75\x80\xf9\x25\x7a\x4a\xb3\xec\x88\x28\x96\x43\x15\xf9\x23\xa2\x59\x36\x3a\xf6\x60\x3b\x29\xc9\xe4\x98\x27\x34\x23\xc3\x4c\x26\xf7\xba\x2f\xec\x0d\x22\xc6\x78\xf1\xcd\x94\x4c\x98\xd6\xd1\x95\x5b\x44\x5f\xce\x94\x4c\xf3\x04\x8b\xd6\x61\x7d\x5e\xae\x0d\x4f\x2a\x95\xca\x2c\x47\x04\x7f\xa9\xd5\x4d\x12\x89\xc8\xc4\x30\x5c\x2b\x02\x30\x4c\xd6\xcc\x7d\x21\x7f\x00\x13\xa1\x19\xff\x07\xe4\x07\xa0\x17\xb1\x89\x7a\xf7\x90\x74\xe6\xb7\x67\x60\xca\xa7\x61\x05\x3d\x9f\xb9\xcf\xe0\x0c\x2d\xa3\x98\x9b\x32\x39\x07\x6a\x08\x64\x1e\x30\x3f\x3c\x51\x14\x3e\xd2\x12\x3e\x59\x70\x1d\xbe\xb0\xdc\x24\x18\x72\x43\x46\xd2\x2a\x9a\x3e\xc3\x5a\x69\x0e\x3d\x2f\x32\x84\x43\xeb\xbe\x9a\x94\xc3\x1c\xb5\x57\xc4\x83\x25\x12\xbf\x3c\x76\xed\xed\x35\x72\x14\x0a\x98\x51\xed\x5c\xa4\xc7\x01\x92\xc6\xf2\xc3\xbe\x00\x78\x6a\xdb\x49\xa5\x1a\xd6\x22\x45\xbd\xe0\xa2\x65\xfb\x61\x8e\x1b\xd6\x2e\xf3\x8b\xbc\x09\x91\x97\xe9\x16\x12\x81\x36\x64\x76\xa5\xb8\x2f\x55\x17\xad\x8b\xd4\x06\x4f\x1f\x78\x01\xb3\x1e\x75\xd4\xb8\xb7\x5b\x5b\x0b\x2b\xa3\x5a\x08\x63\xe7\x23\x24\x32\x18\x1b\x84\xa0\xb9\x5a\xe7\x4d\x23\xfa\x2a\xd9\xb3\xcb\x36\xf2\x9a\x1a\x2c\x58\xcd\xa6\xd2\x20\xb8\x30\xe2\xfc\x7a\x33\x09\xc2\x07\x0f\x33\x39\x84\x7b\x05\x20\x80\x7d\x64\x6d\x14\x7a\x87\xf3\x66\x29\xf9\x3e\xba\x26\x42\xb4\xfe\xdb\xa6\x80\xc8\xfd\xa5\xf0\x56\x6d\x2b\x8d\x89\xbc\x65\x9c\xce\x16\xb9\xae\xa4\x87\x44\xb3\x1a\x51\xcb\xb9\x9b\x62\x97\x36\x4b\xfb\x2d\xed\xfe\x1e\xd2\x7e\x2b\xd3\x68\x70\xad\xcb\xf1\x93\x06\xda\xda\x49\x5d\xc8\xf5\xf5\x48\xcc\xbc\x43\xf9\xa3\xb4\x39\x9e\xcc\xe6\x75\x5b\xf4\xb2\x52\x9a\x2b\x38\xaf\x5f\x37\xa5\xb9\x32\x98\x97\x9c\xd2\x5c\x19\xea\xcb\x4d\x69\xae\x19\xe8\x1a\x29\xcd\xe8\xf6\x1a\x58\xa2\x5e\x8f\x29\x40\xd8\xc9\x30\x1f\xdd\xc2\x6d\xb2\x74\x8c\xae\x14\x12\x32\x67\x2f\xe7\x38\x24\x09\x18\xad\x0b\x34\x6c\xf2\x23\x53\xbd\x13\xed\x05\x8f\x01\xd7\xa8\x62\xce\x32\x2a\xca\x4c\x15\x4a\x8a\x28\x96\x58\xf2\x43\x46\x55\x54\xb6\x3b\x72\x46\x13\x3b\x0a\x34\xf2\x25\x74\xe6\x62\xad\x9b\xb0\xd7\x5e\x4e\x88\xea\x66\xd9\xe2\x90\xd4\x5b\x62\xf5\x6b\x65\xf6\x05\x5c\x12\x8a\x36\xf7\x89\x7c\x74\xa2\x0d\x90\x9f\xab\x1e\xb6\xa1\xa4\x1d\xe7\x9b\x57\x68\x7a\xcd\x7c\xf3\xd2\x44\x0e\xf9\xe6\xf5\x1b\xfc\x62\xf3\xcd\x2b\x7b\xbe\x5e\xbe\x79\xdd\x96\x6f\xe1\xea\x2d\x35\xf3\xcd\xe4\x9b\x57\x56\xf4\x25\xe7\x9b\x57\x86\x7a\xc8\x37\x7f\x92\xd9\x3c\x55\xbe\xf9\x6a\x06\x50\x9b\x51\x5d\x7f\xea\x36\xcb\xa8\xae\x95\xbd\x9b\xcf\xf6\xae\x89\x4c\x70\xd3\x3f\x73\x46\x75\x69\x02\x87\x20\x8f\x1d\x8b\x53\x97\x49\xd0\x8d\x00\x0a\xe8\xb9\x24\xca\xea\x3d\xb4\x24\xa7\x1a\xf4\xc9\x3d\x50\xd4\xd3\x86\x07\x81\x09\x78\x5d\x95\xb7\x5d\x5a\x07\xed\x10\x15\xac\x68\xe2\x13\x18\x51\x3a\x8e\x9d\x5f\x07\x0a\xdc\xd8\x64\xd8\xb0\xc8\xc1\x74\x8c\x11\xff\x0d\x24\x57\x53\xdc\x62\x07\x02\xf4\x15\x49\x36\xb4\xb9\xfa\x41\x80\xed\xb5\xde\x9a\x03\xf5\x6e\xf6\xd3\xec\xef\xe2\xff\x36\x2e\xc8\xae\x25\xbd\x93\x59\xbe\x4d\x46\xc8\x78\xbb\xcf\xa6\x6c\x2a\xd5\x2a\xdf\x7f\xed\x97\xda\x48\x45\xc7\xab\xb4\xcd\x75\x57\x6f\xd7\x55\xf3\x25\x8a\x36\x33\x2e\x7a\x98\x80\xe5\xd6\x0e\x5f\xf3\x3c\x76\x3f\x81\xbe\x50\xeb\xe0\x0c\xfe\xe5\x2d\x5d\x98\x0d\xd9\xdc\x8b\x1d\x82\x6f\x43\x33\x75\x1c\x8b\x47\x25\xa7\xc2\xe2\x08\x4a\xeb\xee\x85\xe7\x1d\x96\x3d\x57\x8d\x01\x36\xeb\x98\x1b\xb0\x90\x9e\x95\xcc\x63\x44\xcf\x2a\xa5\x0d\xe7\x35\x41\xd9\xeb\xd9\xb3\xb8\x30\x7f\xfe\xb7\x8d\xbc\x32\x56\xbe\x74\xeb\x36\xe2\x19\x23\x34\x49\x98\x46\x0b\x88\x0b\xc0\xc2\x8a\x2a\xb9\xca\x76\xd9\x55\x2e\xc6\x30\x6f\x2b\x4c\x46\xb5\xaf\x03\xf1\xe0\x9d\x31\x51\x32\x1f\x4f\xbc\x06\x6c\xa9\xd0\x4e\xad\x6e\x2f\x3f\xa1\xdf\x7c\x97\xbd\x7c\x97\xf3\x6c\x3b\xfb\xc2\x2d\x52\x9d\xa3\xc9\x0f\xdd\x1e\xd1\x93\x40\xff\x43\x68\xb6\x76\x63\x17\x07\xbd\x7e\x9f\xee\xdb\x60\x4d\x83\x6e\x8e\x7c\x90\xd0\x48\x66\x19\xd8\x83\x34\x9b\x3e\x34\x55\x7d\x81\x09\xf7\xf8\x96\xf5\x36\xe0\x6b\xb0\x2a\x6b\x43\xa7\xb3\xb5\xd0\x45\xae\x51\x3e\xd0\xc4\x8f\xbe\xea\x6c\xc1\x48\x08\x29\x98\xa8\xb3\x10\x7c\x5e\xc4\xcf\x7a\x65\x2e\x57\x1f\x1f\xb1\xb7\x98\x14\xbf\x24\xcf\x1c\x97\x52\x37\x8f\x0d\x58\x40\x29\x3a\xb3\xe0\xf1\xde\x53\x88\xa2\x27\x60\x6c\xf4\x45\xbb\x14\xc7\xe9\x81\xb9\x87\xf3\x22\x1e\x0c\xe5\xb7\x98\x93\x00\x5c\x91\x53\x51\x8d\x74\x8a\x2b\xc8\x9a\x98\x3c\x8f\x11\x2b\x3e\x2a\x05\x42\xd9\x58\x7a\x4c\x93\x79\x92\xf1\x24\xd2\x3b\xc6\x8a\xce\x26\x75\xec\x66\xb1\x74\xe1\x4b\xcb\x6b\xfb\xd6\x13\x1c\xd7\xac\x88\xba\x34\x18\x2f\xae\x29\xfa\xaa\x13\x2f\x17\xc9\xf1\x90\x73\xb9\x01\x49\xee\x36\x9e\xbd\x53\xe2\x6b\x4a\x01\x6d\xa6\xbc\xaf\x9c\x6e\xb7\x38\xb0\xaf\x99\xf8\x59\x73\x5f\x6c\xb7\xba\x5f\x37\xdd\x73\xad\x69\x34\xed\xeb\x3a\x99\x9e\x47\x71\x51\xe8\x70\xef\xaf\xc8\xfb\x6c\x5e\xa5\x17\x42\x83\xfb\x8c\x40\xdd\x0c\x43\x36\x8e\x42\xdd\x44\x54\xdc\x2c\x20\x35\x6c\xd4\xeb\x0a\x4a\x2d\x40\x6b\xb7\x0b\x4c\x6d\x47\x95\x48\x27\x32\x03\x90\xcc\xd2\x6a\x85\x0e\x42\x6c\x5b\x58\x20\xbf\x19\x56\x75\x44\xd1\xb5\x40\x5b\x5c\x16\x7e\x1a\x36\xf1\xdb\x08\x41\x5d\xa1\x0f\x6d\x18\x86\x1a\x2f\xea\x6e\xa1\xa8\x3b\xea\x37\x9b\x85\xa3\x56\x3a\x5b\xba\xdf\x5b\xf8\xd5\x9b\x0a\xef\xee\x40\x34\x53\xfa\x65\x30\xa3\x8a\x66\x19\xcb\xb8\x9e\x36\x1d\x5b\x2e\x0c\x1b\x57\x89\xa5\x64\x9c\xfa\xd3\x4f\xcb\x83\x98\xca\x0e\x04\x5f\xb9\x0a\x5c\x08\xf9\x74\x88\x74\xe4\x07\xe2\x50\x5a\x8d\x24\x2a\x17\x31\xfa\x6c\x58\x5f\xcc\xa3\xc2\x52\x58\xa3\x1c\xdc\xe1\x34\x99\x00\x9c\xef\x88\x72\x25\x98\xd6\x1b\x9d\xff\x27\xaf\x25\xbe\xb0\x75\x87\x80\x9a\x10\x50\x53\xbf\x36\x2f\x31\xa8\xa6\x28\x67\xb7\x61\x60\x4d\xd3\xf6\xef\x83\x09\xec\x31\xc0\xe6\x2b\x87\xad\xac\x1b\xb1\xf2\x75\xe3\x80\xd6\x0c\x01\x3a\x84\xd5\x7c\x1b\x61\x35\xcd\xe7\x6d\xa3\xd0\x9a\x15\xc9\x99\xbe\x97\x5d\xe3\x1f\x42\xc2\xe0\x93\xc6\x40\x04\xf3\x7d\xf4\xc5\x9a\x71\x10\x45\x46\xe3\x21\x16\xe2\x49\x63\x21\x6a\x16\x7a\x75\x3c\x44\x49\xee\x7e\x56\x27\x76\x15\xef\xfe\x29\x1d\xd9\xab\x74\x95\x7c\x38\x78\xf2\x73\x54\x3b\xe7\x75\x8f\xd3\xe7\xb0\xb7\xbe\xea\x29\x61\xd3\x21\x4b\x53\xb0\x65\x18\xe9\xb0\x66\x0b\x12\x10\x0c\x89\xd5\x72\x52\xaa\x2d\xe5\xd2\x4c\x8a\xb1\xe6\x29\x8b\xea\x3f\x14\xf2\x0d\xa6\x17\xf4\x05\xec\x6f\x96\x31\xe5\x55\x61\x45\xbe\xd7\x5c\x24\x2c\x56\x8f\x15\x49\x25\xd3\xe2\x3b\x83\x85\x7d\xa9\x98\x93\x7b\x21\x1f\x33\x96\x8e\x61\x87\xaa\x83\x39\x26\x9c\x1d\x11\x6e\xc2\x67\x8a\xd1\x64\x62\xd9\x65\xdf\x8e\x1d\xbc\x45\x28\x88\x31\xf7\x6d\x84\xaa\x1c\x9a\x79\xdb\x22\xa4\x2b\xc8\x88\x26\xe6\x88\xe8\x7c\x58\xb4\x9f\x4a\x84\xc9\x7d\x60\x22\x9e\x78\xd1\xc8\x93\x05\x31\xd4\x06\x2d\x34\x28\x85\x96\x00\xda\x19\xa7\x3b\xf9\x9b\x1e\xe8\x2e\x18\x06\x1f\x73\x6d\x08\xb8\x39\x88\x14\xe1\x30\xb9\x6c\xac\x80\xd7\x02\x30\xa3\x88\x7d\xb2\xa4\xd2\x07\xad\x4c\x65\xd3\xb1\x14\xce\x41\x87\x6e\xea\x2c\x0d\xd0\x2e\x2e\x77\x2a\x1f\x85\x36\x8a\xd1\xa9\x53\x10\x2d\x27\x06\x2b\x3a\xba\x06\x09\x96\x94\x86\x1b\x78\x93\x2d\xbe\xe0\xe2\xde\xee\x6e\x81\x50\x03\x98\xcf\xd0\x73\xcd\xa6\xbd\xe3\x82\x96\x02\x8d\xb6\xd8\xb5\x2c\xdf\xc8\x55\x1f\xd5\x42\x99\x37\x81\x03\x19\xba\x0a\xaf\x67\x13\x7b\x98\x06\xa0\x6b\x62\xbb\x23\xc0\xea\x10\x11\x97\x12\x43\x01\x94\x6a\xc2\xb2\x59\x84\x32\x3b\xa3\xca\x84\x62\x32\x0e\xb6\x22\x91\xd3\x69\x2e\x00\x69\xc4\xe9\x69\x8f\x0e\x9f\xc0\x69\xf3\x45\xe3\xad\xbe\xe8\x9a\xef\xa0\xca\x94\x14\xe3\x6c\x4e\x68\xfa\xc0\x75\x81\x16\x94\x48\xa1\xf3\x29\x53\x15\x0c\x76\xcc\xef\x21\xd4\xd3\x8a\x1d\x9b\x15\xbc\x1c\xea\x8a\x4f\x92\x1b\x93\x21\x1b\xd9\x4b\x77\x46\x95\xf6\xa6\xbd\x1a\xb3\x9c\xdb\xdc\xd4\xae\xd5\x57\x3b\x93\x9f\xe2\x63\x47\xa6\xc5\x09\xa5\x4e\xdf\x38\xa9\x9e\xcf\xa8\xca\x4c\x53\xd8\xd1\xc2\xa4\xc8\xf2\x8b\xc9\xad\xc2\xf9\xaa\xcc\xa5\x73\x5f\xd2\x59\xc3\xa1\xb1\xfd\x78\x81\x06\x07\xb7\x91\x11\xa6\x32\x41\x37\x6a\xb4\xac\xc5\x67\x93\x71\xb8\x14\xb4\xa1\x86\x27\xbe\x62\x4e\xa8\x07\x86\x5f\x37\x6f\xed\xae\x85\x9a\x74\x42\xb3\xc5\x1d\x6e\x5e\xcb\x5b\x7c\x7f\x39\xef\x73\xc7\x0d\xdb\x5e\x1a\x42\x96\xc8\x2c\xdb\x04\x10\xa8\x32\xf3\xb3\xe2\xf3\xe5\x23\x2a\xfa\xb1\x1b\xe0\xf7\x02\x4e\x0d\x1a\xdf\x68\xe6\x24\x0b\x6d\xdc\x2e\xc5\x2f\x21\x0f\x9d\x3b\xe3\x5e\x5f\xc8\x11\xe0\x44\x65\x4d\xda\xf2\x4c\xc9\x29\xdf\x24\xa3\x1a\x91\x06\x6f\xbc\x0f\x75\x85\x91\xd8\x7b\x5a\x01\xcb\x1f\xc9\xcb\xf5\x88\xe5\xe0\x05\xca\x19\x4b\xce\xd0\x94\x2e\xd4\xe5\x5a\x6b\xc1\x57\x29\xbf\x6d\x32\x45\xb3\x82\x5b\x3d\x8d\x05\x23\xee\x19\x54\xfa\xa7\xd9\x23\x9d\x17\x81\x76\x9b\x1c\xa7\x22\x94\xcd\x9d\x17\xea\xa9\x2c\x3a\x31\xc1\x07\x8d\xfb\x85\xab\xb0\xce\x09\x3a\xab\x23\xc3\x8d\xcf\x92\x9f\xf3\x53\x0a\xd9\xf1\xb1\x8f\xe5\xeb\x4d\x6e\xc3\xf2\x61\x88\x5a\x24\x30\x9c\xe5\x4b\xf5\xb1\x44\x39\x7b\x5f\xa3\x4a\x3b\x04\x75\x39\xef\x82\xba\xae\x6f\xf5\x19\xd6\xcc\x91\xf5\x5a\x8b\xb5\x63\xec\xee\x66\x59\xba\xbe\xc7\xe5\x15\xa3\x37\x29\x4b\xbf\x5a\x87\x18\x59\xd9\xc5\x95\x12\x09\x70\x9e\x2e\x24\x64\xc4\x33\xa6\x5b\xa4\x5b\xa3\x4f\x80\x94\xe3\xa5\x2a\xc0\xe5\x00\x07\xa3\x97\x77\x72\xc5\x23\x4c\x53\x2f\xd5\x10\xee\xaa\x60\x15\x26\x07\xc5\xec\x98\x13\xf4\x55\x48\x01\x19\xc6\xe0\xcd\x53\x1c\xeb\xcd\x58\xf1\xd2\x80\xf5\xcc\xf2\x02\xee\x6a\xd5\x60\xc5\xc0\xf0\x81\x95\xb1\x0d\x53\x34\x31\xbe\x36\x8d\x1b\x55\xc3\x96\xee\x03\xb2\x6d\xfd\xd0\x17\xdf\x6b\xcf\x7e\xb1\xb8\x37\xb5\x23\xec\x95\x5b\xdf\x78\x74\x41\x2e\xdf\xdc\xf1\xf2\x1e\x3e\xf5\xc6\x24\x4a\x46\x8a\x81\xbd\x71\x1a\x62\xaa\x45\xca\x94\x36\x52\xc2\x0d\x75\x7b\xfe\xcb\xc9\x5d\x97\x30\x93\x40\x21\x87\xbe\x48\xf4\xc3\x91\x15\x68\xff\x9e\x33\x63\x7f\x6e\x42\x0f\x9c\x32\xa1\x81\x13\xf0\x75\x0b\xc4\xf9\x85\xb1\xff\x3d\x2f\x7f\xbf\x84\xe4\xc3\xc4\x42\x59\x20\x4b\xbb\xa1\x2e\x90\x25\x53\x80\x91\xc1\xa5\xd5\x35\x14\x83\x75\x1c\x3b\x75\x40\xb0\x5b\x04\x59\x88\xbf\xe5\x62\x43\x31\xe9\xac\xf8\x28\x1a\x45\x83\x14\x36\x9d\x51\xc5\x6b\x90\x15\x96\x47\x6f\xe0\x37\xb5\xad\xaf\x62\x22\x7e\x5d\x29\x71\xf5\x30\x49\x81\x99\x4b\x8c\x62\x0c\x58\x48\xa0\x27\x77\xd7\xbb\x48\xec\x30\xb1\xe8\xa3\x56\x5f\x7c\xf4\xf6\xcf\xe2\xd7\x50\xba\x08\x43\x75\x58\x4a\x72\xd0\x99\xca\xad\x60\xc5\x61\xae\xc3\x0f\x00\x22\xa4\xf3\xcc\x20\xa6\xe3\x08\x6a\x5c\xfa\x81\xe2\x93\x3a\x2e\xa1\xa8\x48\x26\x97\x72\xb7\x92\x66\x7c\x34\x60\xd9\x26\xb2\x63\x77\xd4\xc9\xb4\xa5\xef\xe4\xbe\xe1\x74\xfe\xd1\x63\xc1\x6e\xb0\x41\xc5\x64\x40\x72\xf3\xc8\x76\xa8\x95\xa0\x9d\x2e\x43\x84\x48\x46\xc0\xc8\x56\x8d\xb9\xc1\x18\x65\xbb\x8b\x4e\xb6\xf6\x05\x57\x95\xcc\x88\x37\xcb\x0d\xa1\x17\x42\x4d\x5f\xa8\x5c\x00\x14\x4c\xb0\x9f\x53\xa2\x99\xaf\xea\x9a\x48\x81\x32\x80\x33\x9e\x8c\x2d\x9b\xb0\x92\x1f\x38\x51\xa4\x00\x8d\x4a\xe6\x1a\x9c\xee\x53\x66\xec\x05\xf5\x3d\x40\x20\xa3\x07\xe3\x88\xcc\x14\x9f\x1a\xfe\xc0\x02\x7e\x53\xbc\x73\x67\xd4\xd0\x4c\x8e\xdb\xca\xf0\x11\x4d\x4c\x8f\xee\xa4\x32\x53\xd7\xcc\xb6\x5e\x6c\x3f\x0c\xd2\x3d\xb7\x6b\x5f\x94\xbf\x86\x52\x4c\xb5\x27\x78\xd3\x22\x4d\x05\xe3\x06\x60\xc6\x04\xa1\xec\x74\x30\x31\xd0\xdc\xc8\xa9\x55\x48\x69\x96\xcd\x01\xa2\xce\x3e\x99\x50\x3d\xf1\xfb\x8c\xb8\x76\xeb\x5c\x4d\x6e\x71\xcf\x68\x32\x61\xb7\x50\xd6\xb2\x6e\x71\x2b\xa3\x7c\xc3\x44\x3e\x7d\x73\x4a\xfe\x6f\x31\xc7\xb3\xf6\xd9\xcf\x9d\xc1\x79\xf7\xb6\xfd\xee\xa2\x73\x1e\xcd\xc7\x3d\xf9\xd8\xbd\xbd\x5d\xfc\xf5\xe7\x6e\x6f\xf1\xc7\xeb\xab\xeb\xbb\x8b\x76\xaf\xae\x95\x8b\xab\xab\x5f\xee\xae\x07\xef\xdb\xdd\x8b\xbb\x9b\x4e\xcd\xa7\x77\xbd\xf0\xd0\x3d\xfb\xef\xe8\x0c\x41\xd0\x05\x84\x88\xd4\x8f\xb6\x7a\xcc\x8e\x49\xf9\xc5\x53\x72\xe7\x3c\x31\xae\xf8\xaf\xb7\x19\x51\x88\xbf\x86\x90\xb0\x14\x8d\x49\x69\x5f\x10\xff\xb9\x9d\x7b\xd3\xa7\xe8\x22\x4a\x26\x8c\x64\x52\xde\xe7\x33\xc7\xc0\x30\x50\x50\x48\x34\xc8\x30\x1d\xb5\xf6\x73\xb7\x77\x1a\x3c\x42\x8b\x8d\x45\x79\x51\x9e\xd4\x61\x5c\xd4\x33\x4d\x2c\xa7\xac\xd8\x03\x1c\xc9\xe0\x29\x8c\x7a\x08\x1b\xb0\xac\x1f\x6c\x8d\x0a\x53\xe9\x26\x4d\x1d\xaa\xb5\x9f\x58\xd4\x70\x79\xfb\x96\xad\x66\x58\x0e\x44\x46\x23\x43\x96\xd0\x1c\x1d\x69\xf6\x36\x52\x4a\xaa\x78\xc0\xc5\xb6\xef\xd8\xe8\x9b\x45\x21\xa3\x0c\x61\x8c\xa5\x5f\xed\x27\xd1\xc9\xb1\xea\x32\xa8\xd2\x1e\x7b\x68\x32\x47\xdb\x94\xaf\xa2\x37\x1d\x32\xf4\x97\x00\x72\x42\x5c\x87\x9f\x70\x70\xcc\x51\x43\x1e\x19\x04\x8b\xe6\x0e\x7b\x0d\xf5\x63\x7b\x00\xb5\xaf\x17\xae\x03\x1a\x65\x29\x88\xb4\x91\x63\xee\x43\x28\xb6\xdf\x6b\x56\xc7\x2d\x37\x8f\xf8\x2b\xe4\x36\x6c\x14\x58\xa8\xf7\x92\xc2\x88\x1b\xec\xfd\x9e\x65\xd7\xd8\x9d\x97\xc8\x40\x8b\xd7\xc6\x0a\x8e\x6e\xa0\xaa\xf7\xea\xf1\xf8\x50\xf9\x12\xa2\xc4\x66\x39\xb4\xc1\xc3\xbf\x72\xad\x7a\x32\xa5\x73\x4b\x1c\x10\x9e\xa0\xf3\xd9\x4c\x2a\x43\x1a\xda\x20\x70\xd0\x71\x7c\x70\x31\xb8\x79\x04\x0e\x05\x8d\x58\x29\x40\xd7\xa0\x35\x2d\x8d\xcb\x0e\x03\x72\xeb\x5a\x1c\xfb\x38\x1d\x0f\x94\xb5\x80\x1c\x36\x2d\xa9\xbd\x25\x0a\xad\x13\x50\x77\x89\x26\x9a\xd9\x5b\x78\x5d\x88\xc7\xba\xde\xaf\x7c\x0b\xb5\x5b\x9e\xb1\x91\x19\xd4\xfa\x52\x96\x98\x0d\x6d\x8b\xa2\x21\x8b\x53\xf1\xf1\x64\x0f\x2d\xae\x2f\xc9\xff\xe4\x7c\x5d\x56\x7c\x8f\xb4\x78\x25\xa5\x41\x19\xb2\xd0\x33\x88\x5f\x4d\x30\x01\xb8\x4e\x11\x16\xda\x0a\x6a\x1c\x24\x35\x2b\x97\xdf\x0b\xf9\x28\x82\xbd\x5c\xb7\xfa\xa2\x43\x01\xa9\x3c\x28\x0b\x2e\xf6\x00\x25\xf5\x95\x32\x7a\x09\xfa\xf8\x85\xe4\xb5\x17\x74\xef\xca\x39\x64\x73\x52\xc0\x5b\x97\xbe\x5b\xe7\xf4\xa0\x2d\xd9\xcb\x69\x38\x61\x87\xe8\x6a\xd8\xcc\xd9\xbb\x71\x9e\x45\x3c\x34\xb8\x4c\x6d\x57\x2d\xf2\xd9\x5b\x67\x20\xb4\xa3\x80\x65\x37\x78\xe1\x64\x74\xee\x13\x77\xeb\x16\x76\x1f\xb9\xb0\xfb\x8e\xb7\x58\xbe\xc0\x21\xc9\xa9\x66\x95\x4b\x4a\xb2\x10\x68\x35\xdd\x20\x66\xec\x2c\x7c\x74\xcb\x96\xc7\x80\xbe\x07\x88\x57\x28\xf1\x9b\xc1\x0d\x6d\xf9\xe8\xff\xc0\xcd\x82\x1c\x58\x17\x1f\x9c\x7a\x60\x51\xe7\x97\xb4\xe7\x07\xfc\x6a\x56\x0a\x18\x42\x72\x3c\x56\xd3\x6d\x91\x36\x80\x94\x03\xfc\xb4\xbd\x0a\x7d\x40\x0e\x1f\x0b\xb9\x2a\x6c\xa0\x81\x98\x92\x88\x98\x6e\x9b\x89\x49\x03\x35\x15\xe1\xcd\xfb\xa1\xa8\x3d\x64\xab\x58\xde\x42\x17\x61\x35\xd6\xcf\x51\xd9\x40\xc1\xfe\x1a\x21\x38\x0b\xc3\x8d\x3e\xfc\x57\xfd\xd0\x3f\xe4\x54\x51\x61\x20\xb0\xc4\x09\xde\x8a\x45\xd1\x8a\xec\x0b\x44\x60\x09\x34\xd6\xc2\x4f\xf1\xe6\x7a\x47\x3a\x16\x6e\xe6\xe9\x11\xe1\x2d\xd6\x3a\x72\x05\x86\x74\x3e\x2c\xde\x9c\x58\xc9\xa1\x2f\x16\x72\x2e\x5a\xa4\x9d\x69\xe9\xbe\x60\x22\xc9\xa0\x28\x40\x14\x03\x13\x28\xdf\xb9\x7e\x86\x73\x50\x2f\x60\x2b\x8b\xe6\xa5\x7b\x10\x7d\xd8\x17\x54\xa3\xa7\x39\x83\x93\x5e\xfc\x5e\x57\xf4\xa3\x14\x7d\xf0\x84\xb8\x4b\x0b\xd7\xd0\x93\x6d\x12\x82\x6e\x2e\xdb\x20\x78\x03\x36\xa6\xc8\x85\xe9\x8b\x40\xce\xe4\x7b\x6a\x32\x46\xb5\x21\x3f\xbe\xdd\x28\xe0\xc2\xcf\xaf\x60\xae\xee\xf4\x16\xa1\xa5\x3e\x9c\xad\xa9\x66\x11\x60\x22\x13\x4a\x04\x8b\x02\xd4\x8f\xec\x36\x1b\x49\x1e\xb8\xce\xa1\xcc\x42\x14\xc6\x8e\x40\xf9\xdc\x68\x0f\x09\x8a\x0a\x53\x03\x1b\xf1\x88\x14\xce\x27\xe9\x86\x55\x43\x58\x4e\x77\xe2\xa8\x9c\x41\x12\x60\x11\x58\x36\xa1\xa6\x2f\x1c\x63\xf5\xb1\x18\x11\x1e\x77\x3b\xcb\xca\xc1\x5c\x56\xc0\x49\x99\xb0\x13\x86\x22\x11\xad\xb0\x40\x97\xa0\x7d\x85\xf8\x9f\x72\x9d\xa8\x70\x56\xac\xa2\xd6\x17\x21\x91\x2b\x6e\xbb\x56\xd8\xa9\x33\x01\x3f\xa3\x0c\x5c\xd3\xfd\x05\x56\xeb\x58\x43\x16\x6e\x2e\xa2\xb6\xc4\x65\xb2\x60\x76\x5f\x22\x1a\xef\xbb\x83\xf5\x25\xe5\x7a\x13\x36\xdc\xb2\x8f\xb2\xc6\x22\xde\xb0\xb9\x91\x68\xb1\x8b\xfe\x1d\x02\xd1\x9e\xcb\x29\x5b\x1a\x7a\x37\x85\x28\xf1\xd5\x4c\xb0\x88\xba\xf6\xac\x03\x6c\xd1\x3c\x8d\xe2\x46\xa3\xa0\x3a\x08\x0f\xf6\x7c\xcf\xbd\xd9\xe0\x1c\x9d\xbd\xee\xe9\x1f\x15\xf3\xf7\x53\x09\x91\x65\x8b\x13\x6f\x96\xf5\xda\xe9\xdf\x68\xc2\x44\x32\xc7\x9e\x3c\x82\xcf\x62\x9a\x9a\x07\x3b\xa1\x60\x6f\xaf\x95\x0e\x5d\xe1\x9d\x16\xe9\xc0\x3d\xe3\xeb\xf0\xd0\x91\xf7\x19\x44\x2f\xf7\x85\x55\x4c\xec\x15\xaf\x71\xd0\xbe\xfd\x32\x89\xd7\x9d\x00\xcc\x72\xdd\xc9\xdd\x32\x5d\x0d\x96\xd6\xa4\x4c\xf8\x24\x5b\x68\x03\x90\xa7\x48\x67\x7c\x4a\x52\x99\xdc\x33\x75\xa2\x58\xca\xf5\x29\xb8\xbf\x4d\xa3\xdf\x6d\x6a\x95\xed\x9d\x05\x8d\x6d\x4b\xe1\x61\xff\x2e\xa2\xd8\x23\x73\x1f\x11\x3e\x02\x6d\xc2\x67\x0a\x60\xfa\x80\xb3\x6d\x13\x26\x8c\x9a\xcf\x24\x17\x26\x58\xb2\x2a\x0b\xe1\x15\x0d\x2b\xb3\x35\xc5\xd7\xaa\x7d\x84\xc9\x6c\x39\xed\xde\x84\x69\xe6\x63\x02\x70\x52\x46\x12\xf4\x84\x20\xbb\x98\x51\x33\xd1\x90\xeb\x50\x5e\x03\xa7\x73\xc1\xa7\x76\x85\xe8\x0c\x42\x0a\xd0\x48\x51\x7c\x14\x82\xf8\xb5\xe1\x59\xd6\x17\x82\xb1\x54\x13\xc0\x6d\xfd\xae\x36\xa7\xc6\x7e\x7a\x44\x68\x9a\x92\xff\xf9\xfd\xfb\x8b\x5f\x7b\x9d\x41\xf7\x12\x2c\xce\xdd\x8b\xce\xdb\xa3\xf0\xe3\xd5\x5d\x2f\xfc\x8a\x06\x96\x07\xa6\xc8\x94\xde\x83\x86\x27\x34\x8a\x7f\x10\xea\x1e\x8f\xd4\x67\x1b\xd9\x27\x9a\xf9\xf0\x51\x27\xa6\x84\xdc\x70\xb7\x87\x2b\xd0\x3b\x36\xd0\x7d\x6f\xc2\x27\xcb\x69\xd0\x13\x4f\xe8\xc2\x8b\x81\x53\x26\x8c\xe5\x31\xce\xd8\x57\xa8\xbe\x05\xc1\x31\x31\xe6\xa2\x29\xc8\x8d\x89\x87\xa7\x94\xe1\x7f\x61\xf3\x4f\x56\xbb\xbe\xa6\x5c\xad\x4d\x7b\x1d\xf1\xc0\x95\x14\x30\xb5\x60\xd5\x2a\xca\x85\x32\xe3\x7d\x6d\xd1\xa1\xd2\x28\x0b\x43\x18\xc5\xac\x31\x90\xb2\x92\x3b\xfd\x32\xa6\xdb\x46\xd7\x2f\xfb\x62\x94\xcf\x6b\xd3\x8e\xdd\xd0\x07\xca\x33\x08\x82\xf5\x17\x4d\x41\x83\x58\x85\xf2\x94\xb0\x8c\x0e\xa5\x82\xd4\x18\x8c\xda\xf1\x4d\xb8\x05\x83\x7a\x6c\xa1\xa1\x56\x5f\x9c\xb3\x99\x62\x09\x05\x2e\x36\xb3\x9a\x0b\x70\xa1\x92\x0d\xad\x85\x6d\x10\x6e\x6f\x1d\xda\x58\x11\x47\xaa\xa7\x2b\xcc\x5d\xba\xbc\xae\xa5\x5a\xe7\xfa\xb7\xaf\xc1\xd2\xc9\x99\xd5\xe3\x2a\x9c\xd7\xdd\xcd\x23\x46\xb1\x18\x05\x3a\x85\x9c\x29\xdf\x45\x85\x66\x59\x09\xb9\xd8\x1e\x1c\xdd\x72\x5e\xf2\xe2\x4d\x29\xc8\x2f\x7f\xd1\x64\x98\x9b\xbe\x28\xb7\x21\x05\xd4\x24\x7e\x47\x4d\x32\x79\xdb\x17\x57\x56\xcb\xfc\xe5\x2f\x0d\x59\xd3\x29\x35\x74\x50\x4f\x94\xcd\x6b\x72\x4e\x0d\xbd\x90\x34\xe5\x62\xec\xb0\x00\xea\xd7\xe2\x5d\xa7\xd7\x3e\x25\x3e\xd1\x32\xe4\x4b\x16\x30\x09\x51\x43\xc0\x90\x61\x22\x9e\x8b\x00\x2b\x17\x81\xf5\x3b\x0b\x19\x48\x4f\xf6\xc2\xea\x0b\x58\x4a\xe4\xaa\xdc\x90\x99\x74\x30\x93\x56\x2b\xc3\x1c\x7e\x1a\x0a\xef\x66\x73\x62\x57\x07\xc8\x38\x6c\x86\x93\xc7\x40\x9e\x59\x64\xf6\x7d\x01\xfa\x79\xc8\x5e\xcb\x64\x42\x33\x08\x9b\x3b\x8e\x4c\x7a\x56\x6b\x97\x39\xe4\x20\x41\xbc\x8a\x98\x97\xa3\x5b\x3d\x08\x78\x21\x94\xc5\x1b\x05\xfa\x3f\xec\xa3\x73\xa5\x4e\xa5\xe5\x38\xad\xbe\xe8\x8e\x30\xaa\x2e\xc3\xd5\xb1\x1f\x32\x01\xde\x64\xbf\x2c\xf6\xa9\xe7\x47\x50\xa4\x07\xbd\x8a\x34\x01\xeb\xbd\x98\x43\x4c\x34\x40\xd3\x49\x88\xce\x28\xb8\xb3\x23\xca\x85\x5d\x0c\x77\x62\xf4\x59\x5f\x60\x30\x5f\x69\x5f\xe2\xcc\xdf\xa8\x77\x29\x20\xd6\xb0\xb8\x2e\x83\x80\x31\x73\xb1\x87\x4e\xd6\x9f\x29\x76\xec\x6b\x39\xda\x5f\xa3\x35\xb5\x37\x6c\x8b\xdc\xc4\xea\x75\x2a\x93\x7c\xea\x21\x63\x20\x57\xcb\x05\xa9\xb9\x4b\x34\x50\x08\x5e\xec\xb5\x14\xff\xbb\xf8\xbf\xb5\xb2\xe9\xf5\x8e\x15\x80\x03\x55\x0d\x66\xe5\x96\x4a\xad\xad\x46\xb4\x58\x01\xb7\x7a\x59\xc0\x56\x40\x69\x60\x69\xb5\x4f\x09\x66\x68\x4c\xa9\x93\xe9\x77\x9a\x74\xaf\xad\x90\x62\x95\xd2\x70\x4c\x72\x6d\x30\x44\x0b\xd2\x54\xf0\x6b\x0c\x93\x3f\x22\x3f\x90\x7e\xfe\xc3\x0f\x7f\x4a\xc8\x17\xff\x8f\x3f\xff\xfb\xbf\xff\xe9\xcf\xdb\x54\xba\x86\x76\x8b\x35\x0a\xa0\x9c\x65\xa9\x25\xde\x81\x45\x66\xb2\xc3\x2e\xb8\x33\xd2\xb4\xfc\x4e\x63\x6f\x4c\x73\xaa\x7b\x1c\x85\xe0\xd0\xb1\x3b\x84\x3a\x3e\x3c\xa4\x74\x7a\x0a\x57\xbf\x66\xe6\xa8\x7c\x88\x83\x3c\xea\x84\xee\xff\xb1\x04\x68\x60\x60\xa9\x79\xbb\x50\x21\x9e\x05\x09\xd8\x36\x42\xbe\x77\x26\x3a\x03\x2e\xbe\xb7\xfe\x0e\x92\x59\xca\x94\x2b\x8e\xe4\xad\x6a\xc1\xd6\x07\xe7\x97\x7d\x99\x65\xd2\x05\x71\x50\xa2\xd9\x8c\xc2\x1d\x6f\xcf\x6b\xab\x2f\x3a\x5f\xa8\x65\xae\x47\xbe\x86\x1d\x16\x5c\x07\xdf\xc8\x88\x26\x8c\xa0\x34\xfd\xfd\x97\x53\xfb\xdb\x11\x99\x9f\x42\x28\xe6\x11\xf9\xc7\xa9\xcb\x80\xa6\xca\x0c\xec\x4f\x6f\xbd\x38\xec\x9a\x80\x41\x73\x4d\xfa\x6f\x4e\x1e\xa8\xc2\x3a\x0a\x27\x0e\x83\xf3\x8d\x63\x7f\x01\x5f\x38\x16\xa0\x33\x29\xef\x5d\xa0\xea\xc2\x97\xee\x3f\x2d\x24\xf0\xe0\xdb\xc0\xcd\x77\x31\xc7\x56\xd8\x3b\x86\x17\x18\x69\xcd\x86\xa4\xf5\x37\x2d\x05\x69\xcd\xe9\x34\x73\xbf\xfa\xa7\x2e\x8e\x96\x6a\xe2\xab\x3d\xf9\x30\x9a\x6c\x8e\xe6\xcc\x77\x99\x1c\xc2\xbc\x3e\xfa\xb9\x62\x24\x2a\x0c\xb4\xb8\x22\x8a\x5b\xc5\x4d\xc4\x89\x3b\x98\x15\x0e\xf5\x11\xed\x2b\x70\xf7\xd6\xcd\xea\x4b\x18\xd2\x7f\xa1\xef\x16\x16\xc5\xa7\xaf\xa1\x05\x37\x84\x81\xd9\x46\xbf\x90\xef\x1d\x13\x7a\x6b\x2f\x02\x17\xf6\x8b\xcb\x50\xd7\xc1\x3c\x74\xf0\x6b\xd4\x01\x17\x04\x13\x12\x97\x7c\xf9\x8f\x93\x56\xab\x15\xbe\xbe\xb4\x53\xf9\x3f\x84\x1b\xcd\xb2\x11\xb6\xe4\xaf\x99\x79\x5f\x7c\xb4\x9a\x4e\x6c\x61\x2e\x20\x56\xa0\x66\x59\x22\x33\x72\x5c\x58\x5d\x53\x99\x68\xf2\x7b\x2b\x7b\x46\x4b\x09\x3f\x5a\x65\xab\xfe\x54\xb9\xd2\x95\xcf\x74\xac\x9c\xd5\xba\x7a\xb0\x62\x70\x86\xa0\x7d\x52\x0d\x11\x4a\x0f\x3c\xcd\x3d\x2d\x58\xca\x39\x71\x00\x0e\x50\x55\xd2\xb0\x2f\x06\x1e\x35\x20\x65\xd4\x86\x84\xd7\x4b\x70\x0b\x0c\xb7\x00\xcc\x40\xb2\x6e\x58\x00\x87\x62\xe0\x78\x03\xce\xf3\x28\x76\x71\xd8\xeb\x45\xc4\x40\x64\x3a\x9f\x4e\xa9\x9a\x9f\x14\xa7\x6d\x91\x38\x0b\x3c\x4a\xe0\x32\x99\x5f\x00\x70\xb3\x66\xee\x68\xb9\x48\x83\xa8\xf8\xfd\x24\x24\x10\x90\x94\x25\x80\x09\x0d\x21\x6f\x88\x88\xce\x44\x22\x53\x47\xd7\x45\xde\x65\x59\xac\x08\xef\x2c\x0a\x14\x3e\x6a\x45\x17\x16\x33\x61\x30\x19\xdb\xbd\xe1\x3f\x6e\x60\xe0\x72\xa0\x8d\x65\x95\xe3\x0d\x5c\x98\xdd\xab\x5b\xff\xcd\xfa\xd7\x2e\xac\x43\x59\xae\xa6\x5e\x95\xf3\x66\x03\x45\x1f\x8b\x0b\x18\xe2\x2f\xd0\x84\x92\x87\xac\x54\xfc\xfb\x4c\x5e\xf3\xcc\xde\x5b\x40\xe3\xad\xbe\x28\xfd\x7c\x44\x58\xc6\xa7\x5c\x84\xf0\x37\x64\xef\x72\x84\x22\xee\x3d\x37\x76\xcb\x74\x7a\x6f\x39\x98\x4f\xf0\x8f\xf4\x9e\xb6\x98\x7b\xd2\x09\xde\x23\x67\x26\xc8\xb5\x1d\x57\xa1\x48\x5b\x89\xd3\x36\x71\xec\xa4\x46\x1e\x11\x1e\x9c\xdf\xbe\xb0\xad\xf9\xb3\x54\xc4\xdd\x46\xed\x45\xcd\x1d\x7b\x2c\xaf\x88\x03\x40\x1f\xa5\xe0\xd9\x20\xa4\xd6\x88\x28\x9d\x4a\xc9\xd8\xcd\x33\x36\x20\xca\x70\x20\x64\xca\x36\x0c\x36\xae\x29\xc9\xe9\x4c\xc5\xde\xc3\xa8\x18\x66\xd5\x00\x9f\x68\x2c\x28\xa8\xf5\x86\xe6\xd3\xda\xda\xb6\xae\x1d\x00\xd6\x7f\x14\xdb\x02\x1a\x04\x9e\x06\xad\x78\xa5\x20\xca\x82\x2c\xad\x7d\xb9\xfe\xee\x4e\x12\x7a\xba\x9d\x01\x19\xe7\x9e\xc0\xb2\x87\x08\x50\x4a\xc6\x4a\xe6\xb3\x90\x2a\xec\x93\xa6\x70\x1b\xdc\x8d\xd6\x15\x23\x79\xea\x64\xea\x0b\x2e\xee\xf1\x2e\x7c\xaa\x3d\x0a\x95\x6e\xa3\xdf\x3d\x07\xc3\x15\x3f\x76\xe5\xce\xed\xa8\xb5\xa1\xc9\x3d\x42\xac\x2d\xab\x94\xbc\x69\xad\xe7\xe2\xbe\xcc\xb3\xcc\x75\x5b\xb0\xcf\xa2\x18\xc4\x03\xa7\x84\x92\xbb\x9b\x6e\x7d\xdf\xf7\x7c\xd1\xde\x5e\xcf\x3b\xcb\x04\x02\xff\xf3\x0b\xdf\x28\x32\xae\x82\xe6\xc8\x4a\xa4\x1e\xf4\xff\x26\x20\xa5\x0a\xef\xde\xd1\xc1\x67\x79\xd0\x60\x5a\x43\xa9\xf5\x93\x2f\x3a\x3e\x77\x1f\x7f\xb4\xdf\xd6\xef\xc8\x47\x48\x09\x09\x79\xf3\x53\x2a\xec\x04\x7d\xaf\x0d\x06\x22\x64\x8b\x5b\x0d\xe9\x6e\xb6\xd5\x80\xb0\xc7\xf5\x22\x50\x7d\x57\xbe\x95\x47\xb4\x18\xd1\x0c\xd5\x2d\x33\x01\x39\xfc\x88\xdc\x26\x13\x36\xa5\x10\x95\x30\x2d\xcb\xe3\x20\x97\x7c\x9f\x51\x35\x46\x29\x41\x33\xa3\xdf\xd6\xec\x70\x11\x9c\xbb\xc3\x0e\x6f\x81\xad\x1d\x5b\xe8\x21\x71\x70\x19\x07\x08\xa3\x2c\x03\xc3\x04\xe6\xe4\xfb\xf7\x77\x87\x55\x56\xf1\x13\xb8\x31\x15\x96\x9b\x4f\xad\x28\xd6\x9c\x31\xbf\x23\x9c\xfb\x25\x9d\x86\xec\x52\x8f\xe9\xee\xb2\x08\x70\x6c\x43\x06\x20\x41\xcd\x63\xd8\x19\xc0\x3d\x1e\x82\xc3\x8b\x6e\x1a\x41\x5f\xb4\xfd\x2b\x21\x43\x0d\xe4\x1b\x85\x7e\x55\x88\x63\xc2\xa8\x3d\x90\x31\xa2\x62\xc9\x6e\x72\x0d\x93\xd8\x34\x13\xa8\x8a\x41\x6f\x65\x9c\x00\x11\x86\xda\x9d\x17\x76\xfd\x3c\x1a\x7a\x7e\xd8\xbc\x6a\x4c\x7d\x92\x7f\x52\xad\xea\x51\xd7\xf1\x2a\xe6\xdb\x09\xd9\xc7\xae\xa1\xb8\x90\x08\xc6\x3a\x65\xf3\x22\xb2\xc6\xae\x38\xca\xa5\x95\xce\x16\x0f\xab\xd9\x89\x19\x73\x3a\x1d\x28\x99\xed\xb2\x47\xbe\x89\x92\x8e\x03\xb9\x1a\x56\xde\xfc\x7b\x4e\x33\xb4\xc7\x0a\x47\x8e\x7e\xd8\x20\x30\xfc\xf4\x67\xd2\x86\xdb\x92\x7c\x04\xb6\x08\x9e\x28\x68\xcd\x48\xc2\xa7\x33\xa6\xb4\xb4\xc2\x78\xc3\x26\xdf\xff\x45\x0f\x1c\x5e\xea\x80\x26\x89\xcc\x17\xb1\x51\x37\x98\x49\x4d\x6b\xf1\xa4\x28\xb9\xcf\x87\x4c\x09\x66\xc0\xc1\x09\xef\x11\xff\xde\x5a\xc3\x95\x34\x37\x93\x9f\x06\x49\xc6\xd7\x06\x71\x85\x28\xf8\xb6\xfd\xec\x0c\xbf\x5a\x36\x81\x52\xfb\xa5\xa1\x0b\x82\xcf\x08\x3e\x6b\x91\x77\x34\xb9\x67\x22\x75\xf5\xcd\x31\x31\x15\x2e\x28\xe0\x96\x91\x89\xa2\x3c\x31\xd4\x77\xb0\x7d\x7b\x0b\xf5\xc5\x94\xde\xdb\x5b\x88\x7d\x71\xc1\xc2\x56\xcd\xd8\x08\x1f\x38\xd0\xc3\x42\x86\xbe\xcf\xa2\xd4\x2c\xc9\x95\x7d\x03\xcf\x87\xc1\xf3\x01\x46\x05\x40\xa9\xca\x05\xa1\x90\xe4\xff\x9d\x26\xf9\xcc\x6b\xbe\xa0\xed\x66\xe0\x20\xc0\x49\x42\x3d\x1b\x6e\xa5\xc1\x09\xeb\x0b\x08\xba\xf2\x2d\xce\x03\x57\x89\x7d\x52\xc1\x37\x5a\x77\xf8\x46\x98\xe2\xba\x9b\x2d\x1d\x6d\x08\x7b\x0f\x28\x33\x13\x26\x40\x0d\x5b\xbf\x65\xc8\x13\x5e\x7f\xd3\x4a\xc1\x63\x38\x8b\xc2\x6a\x10\x96\x30\x17\xdc\xc1\x06\x3b\x43\x51\x14\xd7\xe1\xed\xa9\xc5\xf7\x5c\x13\x4d\x0d\xd7\x23\x5e\xab\x9e\xc6\x89\xc5\xbb\xac\x3a\xdd\x2c\x9b\xb9\x26\x93\xb9\xb2\x16\x21\x3e\xb5\x45\xde\x73\xa5\x4d\x34\x25\x23\x43\x5e\x70\x13\x4b\x30\x13\xd6\x08\x69\xb5\x0f\xcf\xae\x9f\x41\xf4\xfe\x52\x1f\x79\x88\x45\x6e\x91\x76\x61\xe3\xc2\xcc\x68\xb4\x5e\xad\x98\x11\xcb\x34\xdb\x86\xf8\xd6\x32\x08\x80\x27\x08\x08\x88\x80\xac\xa2\xed\xef\x05\xbc\x5e\x18\xe6\x23\xa4\xfb\xd0\x7b\x26\x96\x69\x7d\xeb\x8f\xb0\x53\xca\x95\xac\x1b\x62\x3b\xe8\xfb\x12\x55\xfe\x6d\x06\xb8\xfe\xb1\x2b\x92\xd1\xf9\xe8\xc4\x2e\xb9\x95\xf3\x93\x7b\x17\x65\x3c\x02\x3a\x74\xe9\xec\x8f\x13\xa9\xe3\x73\xe6\xf7\x0f\x36\xd3\xa8\x9c\xf9\x68\x62\x08\xd2\x0e\x0b\x8c\xee\x59\x21\xe3\x6c\x77\x18\x75\x38\xa4\x18\x85\x14\xf6\x9b\x78\x16\x0a\xcb\x00\xb6\x52\xdf\xd4\xe2\x69\xfe\xe5\x2f\xfa\x0a\x4e\xec\x3e\x72\x36\x33\x3a\x64\xd9\x13\x80\xf8\x6c\x19\xd1\x15\x42\x01\x70\x5c\x60\xf1\x4d\x43\x8e\xf0\x4c\xa6\xa4\x20\xaf\xa6\x88\x34\x21\x24\xba\x82\x5f\xe0\xb4\xa2\xc1\xad\x3d\xb7\x55\x94\xfd\x31\x72\x55\x61\x95\x46\x04\xc6\x88\x44\x2e\x97\xd7\x03\xca\xaf\xbb\xfe\xb9\x0e\xf7\x49\x3d\x8d\x5d\xcb\xf4\x79\xc1\x8f\x16\xe9\x7a\x8d\x70\x33\x5d\x57\xd7\x64\xc9\x4a\xcc\x64\x73\xa0\x50\x3a\x58\xbf\x1c\x08\x38\x9d\x86\xf9\xe8\x16\xa0\x57\x9b\x72\x97\x3d\xe6\xcc\x84\x85\x6c\x04\xbb\xcf\xb6\x9b\x10\x1b\xdb\xb4\x29\xce\x87\x51\x5c\xff\x94\xfc\xef\xdb\xab\xcb\xe3\x29\x55\x7a\x42\x21\x37\xcc\xb7\x75\xe4\xd1\xbe\x51\x01\xf5\x1e\x47\x2e\x48\x5f\x1c\x93\xb1\x3c\x42\x53\xfe\x29\x99\x18\x33\xd3\xa7\x27\x27\x63\x6e\x26\xf9\xb0\x95\xc8\xe9\x49\xb1\x36\x27\x74\xc6\x4f\x86\x99\x1c\x9e\x28\x06\x11\x57\xc7\x3f\xb6\x7e\xfa\x11\xb6\xe6\xe4\xe1\xc7\x13\x48\x2f\x6f\x8d\xe5\xef\x2f\x7e\xfa\x8f\x3f\xfd\xd9\x36\x3c\x9b\x9b\x89\x14\xa7\xce\x4f\xb0\xb4\xed\x63\x14\x7c\x4f\xf0\x93\x4a\x2f\xff\xd1\xfa\x21\x1e\x86\x7b\x75\x2a\x53\x96\xe9\x93\x87\x1f\x07\x7e\x67\x5a\xb3\x4d\x3c\x1f\x05\xc3\x0f\x4b\x5e\x29\x83\x63\x7f\x0f\x24\xe3\x73\x43\x56\x6d\x4b\xcd\x59\x89\xe3\xe9\x76\x38\x31\xf7\x6c\x55\x99\xe8\x65\xe7\x21\x48\x52\x0d\x3a\xfd\xa6\xd8\xae\x8d\xb2\xcd\x46\xe9\x43\xe0\x7a\xe1\x09\xe0\x06\xa2\x0d\x62\x46\x79\x5d\x90\x87\x73\x31\xee\xb2\x7e\x4f\x89\x80\xb9\x6f\xe8\x4b\x37\xdd\x2d\x61\x2f\x33\xfc\xda\x3b\x44\xe5\xa3\x87\xbb\xdc\x07\x48\xe4\x9a\xd5\x11\x02\x92\x1e\x12\x0f\x8c\xc5\x8f\x6b\x33\x1a\x29\x2d\x31\xfa\xc8\x5d\x08\x9c\x86\x70\x39\xcc\x45\x97\xa3\x80\xe9\x89\x91\x8e\x08\xff\x2b\x47\x35\xff\x78\x97\xc9\xa1\x7e\x1b\x10\x30\xa8\xf6\x7d\x14\x29\xe9\xcd\x24\xb8\x1f\x08\x49\xbf\x14\x4f\xa9\x9f\xf8\x33\x13\x4b\x21\x9b\x2c\x7c\x3d\x51\x15\x81\x88\x98\x91\x47\x95\xcc\x85\x87\xe0\x93\x82\xc9\x11\xb8\x88\xe1\x02\xf4\x4e\x10\x30\x82\x08\x69\xa2\xec\x3b\xc5\x66\xc8\x48\xc1\x5c\xd7\xbc\xdc\x3b\xc2\x50\xae\x5a\xe7\xa7\x80\xa1\xdc\x75\xdd\xdd\xc1\xf9\x4a\x0b\xbe\x2b\xb8\x20\x1e\xa5\x0d\xd8\x2c\xbc\xbf\xd2\x33\x11\xf8\x00\xb8\x22\xe2\x22\x4f\x08\x36\x01\xe1\xa3\xec\xd8\xc8\x63\xc8\x5a\x86\x5c\x58\x04\x86\x6d\x2a\x97\x00\x1e\x9d\x4d\xae\x03\xfb\xfe\x1a\xe3\xc4\x90\xe1\x2f\xd1\x40\xdd\xdd\xab\x89\xaf\xcd\x0b\xca\xa5\x10\x4c\x39\x63\xf5\xca\x9b\x63\x43\x7f\x4f\xbc\x95\xcb\x1d\xbe\x85\x00\x1a\x83\x76\x86\x60\x2f\x1a\x31\x81\x16\x81\xb8\xd8\x89\x9c\x4a\x7b\x6d\xcb\x5c\x47\x0f\x31\xae\x1a\x2e\x9b\x25\x95\x89\x67\x88\x52\xf2\xf5\x66\x63\x8f\x96\x7d\x84\xba\x7c\xfc\xd2\x6a\xe4\xe2\x68\x26\xc3\x32\xf2\xeb\x8a\xf1\x07\xc8\xce\xe5\x74\x03\xde\xc4\x29\xd8\x4e\xa1\x20\x85\x03\xe2\xe3\xff\xb0\xa2\xba\x25\xa9\x10\xc3\xec\xf3\x9e\x5d\xd4\x21\x82\xf1\xc4\x68\x5d\x95\x02\x8e\x0b\x1b\xb1\x91\xee\xb5\x4c\x95\xa9\x8b\x26\x42\x10\x8b\x22\x78\xd0\x2e\xf2\x82\x18\x1d\x3e\x7c\x28\xaa\xa1\xcc\x67\xec\x88\x0c\x73\x78\x7e\x79\xd5\x8b\x1d\x65\x5c\xc0\xe3\xe3\x64\xc2\x92\x7b\x08\xf6\x47\xa6\x88\xcb\xe5\xcb\xda\x0c\xe7\x7d\x51\x60\xee\x1b\xe9\xbd\x3e\xf3\x00\x6a\x18\x80\x3d\xa5\x22\x29\xd7\xb3\x8c\xce\xc1\xbe\x2e\x30\x4c\xa8\xb0\xcd\x87\xf8\x3a\x4b\x2c\xdb\x99\x91\xa0\x28\x80\xe3\x02\x5e\x0e\x83\xbf\xfc\x24\x42\x5d\xba\x10\xf2\x5a\x27\x76\xec\x0c\x33\xb9\x4b\xb8\x50\x53\x79\x8b\xa8\x90\x26\xee\x68\xec\x37\x0e\xd9\xa8\xd5\xea\x87\xfd\x37\x3e\x08\x17\x54\xad\xbe\x2f\xdc\x66\xff\xc6\xe2\x42\x4c\x3d\xb0\xb4\x2f\xca\xf9\xbe\xee\x2a\x2b\x76\x99\x14\xb0\xe7\x4d\xac\x73\x73\xf3\x42\x8c\xa4\xb6\x3c\x92\x09\x72\x9c\x0a\x70\x93\x10\x68\xba\x04\x86\xbd\xbe\xa0\xda\x13\xe0\x85\xaf\x6d\x72\x2a\x70\xd6\x1d\x48\xb2\xab\x82\x50\xf2\xee\x04\xc2\x0c\xd9\x8c\x08\x75\x10\x02\xf0\x5c\x40\xde\x42\x6a\x48\x5d\x1b\x7d\xe1\x73\x08\x46\x79\x96\x21\x7c\x4d\xc3\x72\xf9\xec\x66\x1f\xf0\xf6\xf5\x52\x48\x83\x5e\x4b\x22\x60\xfa\xe0\x85\x49\xd9\x2c\x85\xb0\xef\x64\x5e\x14\xa2\x04\xe2\x65\x42\xe7\x10\x18\xed\x41\xa9\x21\x57\x67\xcc\x0c\xb1\x72\x47\x9a\x67\x18\x14\x0f\x0e\x36\x48\x95\xa6\x59\x46\xb8\xd1\x7d\x11\x32\xbb\x11\xa6\x0f\xae\x02\x9f\x85\x94\x3a\x59\x10\xba\x80\x66\x5d\xe9\x22\xb8\x20\x78\xc2\x4d\x69\x48\xe0\x39\x9a\xc7\x48\xae\xb3\x19\xa3\x18\xc2\xe9\x4e\xa2\x88\xa5\xc1\xea\x36\xb8\x78\x47\xa8\x28\xb3\x98\x10\xba\x4f\xea\xc5\x8a\x42\x1b\x6f\x4a\x8b\xb4\x71\x76\x56\x14\xf4\x65\x55\x70\xb4\x2e\x71\xc4\x05\x57\x58\x79\xcb\xe8\x50\x9f\x31\x48\xd4\x33\xaa\x0c\x4f\xf2\x8c\xaa\x6c\xee\x8b\xb2\xf2\x51\x54\x21\x06\x36\x01\x13\x7b\x5d\x01\x58\x00\xbb\x76\x46\x59\x4d\xa7\x2c\x4a\x58\x70\x8a\x67\x16\x39\x75\x10\xac\x0c\xbd\x05\xb6\xad\xb7\x2d\x72\x5e\xad\x07\x04\xc7\x22\x02\x04\xe1\x1a\x39\x60\x18\x6f\x14\x69\x8b\x75\x85\xf8\xc8\x0a\xbb\xdf\x45\x07\xaf\xa9\xf0\x1c\xd5\xf7\x1b\x7a\x8c\x3c\xaa\xe4\xf2\x38\xa1\xda\x48\xfb\x1e\xd4\x33\x2b\xf9\x91\xc2\x89\x68\x18\xa0\xbf\x1c\x36\x1c\x64\x0c\xa6\xb2\xc5\x40\x3f\x47\x05\xc3\xaa\x83\x9d\x2e\x29\x48\x03\xfb\xb8\xe1\x50\x23\xb0\xe8\xcd\x07\x1a\x51\x4e\xec\x1f\x6c\x5c\xd9\xd5\xca\xe5\xe7\x12\x6c\x33\xb1\xe3\xb2\x82\x3d\x43\x8f\x72\xa5\x4e\x28\x8c\xc1\xe1\x3b\x03\x1c\x5f\x38\x6c\x43\x46\x32\x2e\xee\x7d\x6a\x8f\xdd\xf9\x23\x42\x8b\xd6\xe1\xf0\xe1\xe8\x91\x98\x1b\x24\x9b\x3a\xf0\xca\x1d\x84\x9d\xf5\x02\xa4\x6b\x37\x37\xcc\x7b\x23\x7c\xd2\x85\x32\x9b\xd1\x3c\xd6\xdf\x96\xa5\x31\x4c\x41\x88\xf5\x81\x4b\x78\xc1\x44\xd1\x14\x86\x87\xc2\x8b\x8d\xeb\x7b\x3d\xa1\xf5\x45\x76\x57\xe3\x31\xdf\x5d\x9e\x77\xde\x77\x2f\xcb\x20\xca\x7f\xbd\xeb\xdc\x95\x7f\xb9\xb9\xbb\xbc\xec\x5e\x7e\x88\x7f\xba\xbd\x3b\x3b\xeb\x74\xce\xcb\xef\xbd\x6f\x77\x2f\x2a\xef\xd9\x9f\xca\x2f\xb5\xdf\x5d\xdd\x54\x60\x9b\x6f\x7f\xe9\x5e\x5f\x97\x7f\xea\x75\x3f\x76\xce\x07\x57\x77\x25\xe4\xe7\xf3\x5f\x2f\xdb\x1f\xbb\x67\x03\x3f\x1e\xf7\xa4\x16\xbc\xb9\x98\x5a\xed\xea\xed\xc3\x83\xba\x35\x62\x77\x9b\x8c\x14\x67\x22\xcd\xe6\x18\xe0\xe5\x55\x92\x4a\x3c\x49\xcc\xed\xf9\x94\xc9\x7c\x97\x38\x2d\xab\x15\xcb\x07\xab\x6d\x67\xc4\xb5\xe6\xa2\xd3\xa9\xbe\x6f\x44\x8c\x30\x6a\xd1\x42\xb6\x34\x1a\xd5\xa8\x79\x88\x77\x5e\x1a\x67\x19\x92\x55\x5d\x27\x64\xc6\xd4\xb2\xb1\xc0\x5d\xac\xf2\x99\xe1\xc3\xe6\xc8\xbb\x35\x93\x38\x37\x57\xfa\x10\xfd\xa0\x3e\x0b\xed\xb2\x9e\x07\x96\x02\xd0\x76\x89\xbd\x81\x16\xb6\x05\xa2\x0f\x5f\xfb\x78\x85\x59\x3e\xcc\x78\x42\x78\x5a\x60\x36\x60\x64\x1a\x86\x49\xa3\xf9\xa4\x0a\x92\x32\x63\x0a\x84\x23\x2b\x73\xce\x14\x3b\xa6\xb9\x99\xf8\xa2\x76\xa1\x1a\x39\x82\x96\xb0\x44\x31\xe3\x8b\xe6\xb2\xd4\x43\x93\x47\x3d\xc1\x60\x5c\xb2\x44\x0a\x59\x79\xad\x08\xaf\xae\xc1\x5e\x86\x5f\x62\xeb\x1b\x58\xf6\xf0\xfd\xa5\x4b\xe3\x46\xcc\x75\xb5\xfa\x14\x88\x81\xf8\xd0\x03\x9c\xdb\x79\x5b\xa6\x9c\xf8\xa8\x3e\xdc\x64\x1f\x20\x58\x3f\x8d\x55\x34\x16\x13\x4a\x39\x9e\xcf\xb5\xee\x1e\x9d\x29\x06\xf7\x85\x73\xff\x78\xa5\x19\xdc\x95\x2e\xa0\x10\xe2\x08\xad\x72\x30\x64\x13\x9a\x8d\xd0\xfe\x62\xb7\xa6\x38\x57\x8b\x24\xda\x93\xf7\x4c\xec\xa1\xf0\xff\xd6\xec\x50\xa0\xac\x5d\xa4\xcf\x04\x53\x44\x61\xac\x81\x42\xc7\xca\x57\xb8\xc6\x80\x6a\xac\xbb\x88\x92\x69\xf4\x18\xa3\x1a\x0b\xfc\x22\x1f\x8b\x3d\x1a\xf1\x2f\xb6\xc1\xbe\x60\xb5\x08\x2e\xe0\x23\xf6\x69\xac\x81\x2f\x03\x82\x01\xe6\x02\xde\x33\x01\xe0\xea\x58\x1f\x69\x25\xcd\x6e\x66\x0a\x5d\xdc\x8b\x45\xc3\x62\x58\x31\x30\x36\xf1\x12\xe4\x7c\x6c\xf1\xf4\xeb\x04\x89\x13\xf7\xac\x45\xce\xf1\x5e\x04\xba\x39\xbb\xe8\x76\x2e\x7b\x83\xb3\x9b\xce\x79\xe7\xb2\xd7\x6d\x5f\xdc\xae\x7b\xfc\xf6\x11\x7c\x5b\x39\x7d\xd5\xf8\xe7\xc0\x21\x4e\xdc\xc9\x2b\x52\x40\xc2\xa4\x8a\x63\x07\x5b\xb2\x7a\xf4\x3c\x9d\x0d\x52\xae\x13\x7b\xfd\xcd\x07\x4c\xa4\x00\x7d\xb5\x15\xa9\xd6\x37\x55\x9d\x45\x78\x83\x84\x37\x3c\x07\xc1\xdb\xee\xc1\x53\x74\x78\x0e\xd8\x18\xae\xb4\x30\x94\x95\xef\x8b\xe8\xb6\x69\xad\x86\x3b\xb5\xcd\xed\x36\xb7\x72\x13\xd5\x39\xe1\x78\xb9\xd6\x39\xb5\xfc\xd1\xbf\x06\xd0\x06\x0d\xab\xe2\xc0\x0e\x62\xfc\x2d\x1e\x95\x77\x21\x56\x1b\x9e\x52\x91\x52\x23\xd5\xbc\x61\x8a\xeb\x31\xcf\xf8\xd8\x94\x59\x68\x7c\x65\x5b\x55\xdf\xef\x02\xbe\x4a\x45\x95\x94\x10\xa5\xab\x77\xf5\x4b\xe7\xf2\x76\xd0\xb9\xfc\x34\xb8\xbe\xe9\xbc\xef\xfe\x57\xc8\x62\x76\xc5\xaa\xcb\x95\x23\x98\xbd\x14\x2d\x77\xf1\x19\x75\xb5\xfc\x05\xeb\x37\xf8\x76\x1c\x66\x37\x1f\xf5\x85\xe7\x2c\xaa\x68\x7e\xa2\x64\x3e\x9e\xd4\x37\x54\x1d\xe5\x75\xbb\xf7\xf3\x56\xc3\x84\x6c\x57\x04\x79\xc7\xd3\xb6\x88\xdb\xc2\x47\x8e\xef\x21\xd8\x4b\x65\x78\x90\xb3\x0d\xaf\xd6\x99\xb7\x1b\x38\xda\x56\x8a\xca\x22\xd3\x5a\x2a\xfc\xd7\xbc\xde\x44\x40\xbd\x88\x6f\x96\xae\x11\x08\xc4\xc2\xf2\x21\x0b\xad\x9d\xd6\xfc\x56\xba\xc1\x7e\x3a\xce\xd8\x78\xcc\x52\x24\xaf\x6a\xc3\xce\xea\xe3\x58\x60\x52\xdc\xeb\x75\xab\xe8\xd0\xfc\x77\xb8\x98\x43\xec\xc3\xfa\x0c\xfc\x3a\x7c\x52\xcf\x2b\xce\x7c\x55\xaf\x44\x0a\x6d\xa8\x68\x40\x47\xdc\xb0\xf2\x70\x01\x59\xae\x8a\xfa\xdf\xce\x16\xe2\xed\xd4\xc5\x39\xd8\xc6\x77\xe3\xaa\x16\x08\x67\xdc\x88\xaa\x19\x44\x65\xc8\x6a\x36\xa1\x52\xdb\xf5\xc9\xed\x18\x4b\x55\x27\x97\xe4\x0d\xc6\x45\x84\x8d\x76\x10\x51\x68\xf8\x01\x2c\xf6\xc6\x60\xb0\x3d\x97\x82\x0e\xc6\xcd\xa2\x8e\x6d\xa8\x8c\xec\x85\xb7\xcd\x4d\x59\x95\x2a\xb0\x51\x85\xdc\x34\x4f\x1c\x16\x1a\x36\x5b\x78\x7b\x9d\xed\xca\x5f\xb0\x29\x39\x8e\x2b\x6f\xa7\xc7\x90\xae\xdb\x17\x4d\x3e\x8c\x9a\xaa\xd5\x31\x05\x5c\xfb\x5b\x6b\x97\xbd\xaf\x59\xfd\xe6\x23\xe8\x17\x7b\xbd\x34\x0a\xe2\x5f\x07\x61\xaf\xc1\x59\xee\xf6\x65\x48\xd1\x49\x59\xbe\x8e\x9b\x32\x2a\x03\x57\xdd\xcc\xa7\xbf\x96\x3f\x9f\x96\x21\xdc\xf0\x8a\x9c\x50\x8d\x92\xab\x49\x26\xe5\x81\x9b\xa2\xc6\x7a\x93\x59\x3c\x48\x82\x7b\x84\x79\x6a\xf2\x51\x1c\xa1\x4e\x0d\xd5\xc5\xed\xe8\x63\xe8\xf3\x50\xc6\x61\x33\xc2\x8f\x85\xa3\xa0\xbc\x20\xdf\x03\x86\x95\xd1\x5c\x24\x13\x32\xcb\x28\xa6\x0e\x4d\xa8\x46\x92\xf6\x6e\x70\x3a\xe4\x19\x37\x90\xf4\x8c\x0e\xa4\xca\x0a\x5b\x8d\x86\xaa\x7b\x0f\xb6\x43\x0b\xc8\x8d\x65\x44\xbf\x63\xa8\x56\x51\xd1\xef\x39\x83\xb5\x8a\x23\x1b\x7d\xb1\xd4\xfb\x54\x90\xa5\x0b\xd4\x2a\xb6\xc3\x72\x3c\x20\xcb\x62\x2e\x9b\xed\xac\x6b\xf1\xba\xfa\x79\x69\xbd\x6b\x2e\xea\xcd\xa3\x02\x1c\x8e\xdc\x06\x6c\xbe\x8a\x32\x57\x7b\xb2\x46\x99\xa4\x0d\xb5\x88\x7c\xdb\x08\x1a\xd7\xd4\x76\x2a\xf3\x61\x13\x48\x11\x8e\x6a\x79\xeb\xcb\x4c\xfc\xfe\xdc\xee\xcb\x2e\x18\x33\x40\x6a\x98\xe1\x9b\x99\x36\xa2\x49\x53\xc3\x8e\xe1\xf3\xfa\xc6\x1d\x34\xcf\xda\x73\x5e\x20\xb4\x02\x5d\x34\x40\x21\x59\x91\xb6\xa6\x9e\xed\x5f\x73\xa8\x99\x7b\x35\xba\xc5\x34\xdc\x5d\x88\xcc\xf0\x45\x0a\xab\x3f\x89\xd5\x5e\x7b\x65\xff\x49\x4c\x03\x6b\xa7\x60\xd4\xcd\xe6\xd6\x7e\xbd\xfe\x81\x2c\xd7\xeb\x9b\x29\x2e\x21\x59\xd6\x15\xf9\x5b\x82\xe7\x51\xdb\xef\x0e\x2b\xf9\xf7\x9c\xe5\xcc\xd2\xfe\x30\x4f\xc7\x8b\xb6\xcd\x0d\xa4\xb3\x62\x4a\x13\xf9\x48\xa6\x79\x32\x21\xbe\x71\x92\xb2\x8c\xce\x4b\x53\x03\x79\xc9\xc8\x0c\xf0\x91\xb6\x84\xeb\x49\x72\x6d\xe4\x14\xc2\xd8\x8a\x76\x55\x2e\x80\xe0\x09\x35\x46\xf1\x61\x6e\x6a\x63\x9f\x4a\xb8\x15\x5b\xfa\xae\x6e\xaf\x3b\x67\xdd\xf7\xdd\x8a\xe3\xa8\x7d\xfb\x4b\xfc\xf7\xe7\xab\x9b\x5f\xde\x5f\x5c\x7d\x8e\x7f\xbb\x68\xdf\x5d\x9e\xfd\x3c\xb8\xbe\x68\x5f\x96\xdc\x4b\xed\x5e\xfb\xb6\xd3\x5b\xe1\x56\x5a\xec\xb5\x79\x23\x68\x04\xab\x61\x65\x17\x67\xb8\x04\x67\x9f\xd7\x2e\x5d\xaf\xa7\xa4\xed\x41\x46\xe2\x2a\x4c\xd4\x7b\x01\xc1\x7b\x8d\x65\xa1\x9c\xb3\xf0\x9c\x1a\xea\xca\xec\xb5\x48\x9b\xf8\x72\x89\x10\xea\xa8\xad\xb0\xe0\x20\x18\xec\xee\x60\x13\x56\x62\x48\x0a\xcd\xad\x80\xfa\x97\x23\x87\x7d\x92\xb1\x18\x6f\xce\x95\xc6\x6e\xf5\x45\xe7\x81\x09\x93\x03\x18\x16\xcd\x32\x5f\xd5\xd2\xbf\x10\xa5\x2a\xf9\x51\x6a\x3e\xe5\x19\x55\x05\x2a\xfb\x95\x6b\x0b\x04\x76\x3f\xd6\x90\x99\xbe\x08\xd5\xeb\x95\x87\xbb\x2e\x81\x71\x9f\x5d\x74\x41\x04\x4a\x8c\xc7\x33\xf5\x9d\xf7\x05\x82\x6b\xb8\x1e\xa7\x14\xc2\x6f\x8d\x74\xf6\x34\xec\xbe\xb1\xca\xf7\x4d\x0d\x2a\xfa\x16\xe0\x2d\x68\x79\x7e\xaa\x40\x9a\x30\x48\xff\x8f\x8e\x30\x6a\xbe\xb6\x5c\xd3\x03\x24\x5c\x0d\xb2\xa9\x8b\x99\x29\x23\xb5\xa3\xb9\x83\xf8\xd6\x2f\x41\xd8\xf1\x31\x5d\xce\x1a\x1f\x8c\xee\x0c\x6a\x4b\x34\xc8\xdf\x99\xbd\x84\x5e\xea\x3a\xc4\x99\xc0\xb0\x0a\x43\x99\x8b\xd4\x97\x99\x9e\x72\x71\x32\xa5\x5f\xde\xfa\x99\x62\x66\x5d\x80\x62\x04\xd4\x04\x96\x59\x4d\x64\x6e\x99\xdc\xf2\xe5\xea\x8b\x25\xeb\xb5\x5a\x5a\xf4\x9c\x15\xd4\x9e\x42\x47\xc5\x38\xa5\x07\x36\xaf\xdb\xbf\x05\x40\x5d\x8c\x85\x72\x07\x1e\x1a\x99\x29\x66\xec\x9b\x21\x0a\x2a\xc3\xe8\xb6\xf0\x37\x44\xd9\x96\x80\xf9\xeb\x99\x77\xec\xe6\xdd\xe9\xdc\xd4\x3a\x98\x9f\x00\x12\xd9\xf5\x64\x37\x0d\xdd\xcd\xde\xd2\xe9\xa2\x8a\x9d\x1f\xcd\xee\xd6\xdf\xe4\x10\x6a\xff\x6a\x5f\x77\x4b\x31\xb0\x6c\xc3\x5e\x78\x0c\x37\x48\xae\x5f\xf0\x61\x7b\x1a\xc8\x98\x06\x7b\x2f\xd4\xa5\x67\x7f\xcf\x9d\xcb\xee\xc7\x1f\x36\xbb\x68\x8d\x9a\x13\x8f\x16\x19\x07\x81\xbb\x1c\x08\x77\xe9\xc2\xb8\x72\xc1\xeb\x10\x37\x6e\xb0\x22\xfb\x3e\xa2\x1d\xd6\x77\x67\x55\x3a\x75\x7f\xae\x8c\x93\xf7\x96\x58\x57\x45\xfe\xc9\x20\x8a\x3e\x55\x90\x89\x5c\x77\x10\xfe\xea\x5a\x8f\x6f\xb4\x21\x4d\xee\x1f\xa9\x4a\xd1\x58\x08\xe1\x07\x2d\xf2\xb3\x7c\x64\x0f\x4c\x1d\x91\x84\x29\x43\x1d\x68\x81\x06\xff\x2b\x1c\x28\xd7\x4e\x5f\x40\x44\x38\x22\x40\x08\xa8\x59\x66\xf8\x78\x62\x15\xca\xc8\x7b\x2e\x95\xe5\x47\x06\x11\x61\x66\x2c\x71\x69\xe2\x0d\x0b\x30\xca\xe8\xc3\x22\x0a\xc3\x36\x09\x9d\xa4\x1b\x32\x6d\xbc\x7b\xca\xf9\x6a\x96\xc6\x3b\xf8\x2a\xff\xc8\x35\x31\xaf\xf7\x88\x8c\x65\x46\xc5\xb8\xd5\x6a\x11\x66\x92\xd6\xdb\x8d\x08\xdd\x35\x18\x3b\xbc\x42\x1c\x67\x26\x35\xcb\xe6\x21\xb3\x39\xc4\xdb\xdb\x55\x86\xf8\x7e\xcd\xd1\xe4\x51\x43\xfd\xb7\xd5\xbc\xd0\xe7\x35\x9d\xd7\x6b\xaa\x1b\x27\x98\x34\xb4\x03\x18\xcb\x1b\xb4\x84\xef\xd7\x6b\x5e\x1b\x24\x4c\xf9\xaa\x05\x45\xe2\x54\x03\x88\x99\x14\x9b\x66\x03\x7d\x92\x4d\xe5\xbd\xb6\x02\x1e\xa9\x6d\xc9\xa5\x25\x6f\x95\x1f\xb3\x48\xd1\x35\x14\x17\x52\xc9\x76\x09\xf9\x91\x59\x3e\x6d\x06\xb1\xd8\x55\x8a\x2a\x06\x89\xff\x3a\x83\xee\xd6\x96\xa2\x8a\x2a\x66\x52\x61\x0e\x8f\x1b\x2f\xda\x42\x91\x98\x80\x5b\x2a\xae\x01\x6e\x65\x9b\x34\x9b\xd0\x0c\x36\x0d\x2e\x1b\x28\x73\x0f\x75\x25\x95\x14\xe3\x6c\x8e\x99\x43\xde\xc4\xef\x3e\xd1\x28\xea\x80\x9f\xa7\x99\x33\x54\x03\x89\x36\xde\x23\x80\x78\xdd\xca\xb9\x05\xa2\x43\x04\x33\xe8\x22\x1d\xa0\x41\x5f\x73\x5b\x92\x91\x4f\xda\xb8\x67\x51\xdd\x90\x14\x00\x08\x1f\x5b\xe4\xbd\x54\x50\x1c\xc4\x39\x6e\x9d\x6f\xbd\xb8\xb5\x4c\xd1\x09\x1a\x88\x1f\x7e\xf4\x21\x15\x38\x43\x6c\x02\x50\xbe\x53\x2a\x4c\x6d\x03\x45\xc4\x11\xb4\x85\x9f\x7c\xb2\xaa\x70\xed\xeb\xae\x7d\x78\xb5\x2f\xec\xbb\xed\xcf\xb7\x04\x97\xda\x41\xd5\xa9\x65\x03\x8d\x1a\x59\x1d\xd4\x01\xcb\x35\xd8\x42\x1a\x28\xed\x03\x2e\xba\xc7\x2a\xb4\xcb\xce\x4c\x32\x29\x6e\x9f\x72\xf9\x1c\x87\xd6\xee\xe6\x39\x2d\xc0\xf7\x30\x5e\x2e\x0e\x3c\x72\x15\x9a\x83\x1a\x2b\x05\x03\x4b\x3d\x35\x24\x95\x71\xb3\x84\x9b\xd5\xd1\x1d\x1b\x02\x44\xac\x22\x35\x23\xd1\x6b\xef\xe6\x59\x72\xb8\x80\x58\xc9\x31\xdd\xde\x87\xc6\xa1\x5c\xec\xc0\xbf\xab\x90\x71\xe5\x04\xc6\xbe\x28\x77\xb5\xb0\x48\x3e\xfc\x82\x2b\x86\x48\x4f\xda\x5e\xe1\x86\x3f\xd8\x83\xba\x48\xd6\x81\x40\x81\x03\x2c\xd2\x5e\x5f\xe0\xb0\x23\xb8\xa8\x7b\x36\xd7\x31\xd2\xb8\xa3\x28\xd2\x44\x90\xdc\xce\xc7\x57\xd4\x5e\xb9\x15\xb0\x70\x83\xa8\xbc\xd9\x7a\x57\x09\x76\xfa\xd1\x7e\xbc\x24\xae\x6b\xa1\x71\x4b\x83\x45\x4a\x4c\x61\x58\x2a\x4a\xf3\xbb\x75\x76\x7b\x58\x84\x6e\xd4\x94\xbe\x2b\x6c\x74\xa0\xfc\x58\x1d\xa7\x2f\x1c\xa2\x5c\xe4\x12\xb5\x0c\x67\x71\xdb\x5c\xaa\x1e\xe2\x58\xcd\x4b\xd9\xcf\x80\xf6\xe7\x6b\x34\xd5\x57\x1c\xf4\x85\x2a\x5c\xa5\x5d\xcc\x6e\xf5\x86\x9c\xda\x0e\xb7\x8c\x07\x72\x9b\xdb\x18\x03\x54\x88\xb1\x6e\xe1\x1c\xd0\x0b\x42\xd6\xa3\x04\x9c\x30\xbb\x7c\x6d\x51\x1b\x7e\xe3\x83\x6f\x6e\x3b\x67\x37\x9d\xde\xb3\xc5\x08\xf9\x00\x9d\x8d\x83\x84\xfc\x38\xcf\x3b\xef\xdb\x77\x17\xbd\xc1\x79\xf7\xe6\x29\xa2\x84\xdc\xa3\x2d\xc2\x84\x6e\x1d\x50\xe5\x99\x14\x86\x7d\xd9\xe9\x4e\x56\xb9\x18\xd0\x0d\xc2\xd5\x03\x18\xec\x32\x71\x07\x1b\x5d\x04\xda\x0c\x28\x98\x0e\x66\x08\x6f\xb4\x80\xab\x19\x95\x90\x1c\xf1\x2c\x83\x7c\xb1\x60\x63\x75\x49\x20\x76\x51\x81\xff\xf8\x5a\x58\x8e\xa7\xf6\xc5\xb0\x84\x34\x0a\x76\x9f\x89\x94\x1a\xf7\x87\xce\xec\x02\x28\x0e\xe9\x42\xcb\xb0\x38\xc7\x5c\xb0\x62\x18\x58\x5e\x26\x17\xa4\x11\x40\xcd\x6d\xe2\x53\xa6\x03\x3a\xc1\x6b\x5d\x59\xd3\x53\x5c\x89\x3e\xbd\xf8\xe9\x1f\x86\x19\xe2\x21\xe6\x02\x05\xd3\xd2\x69\xbe\xad\x27\xdd\x93\xe2\x08\xc0\xba\xdb\x9d\xa4\x60\x88\x86\x0a\x2e\xc5\x46\xba\x8d\x40\x14\xec\xc2\x42\x7d\xcf\x31\x94\x42\x8e\x2a\xeb\x6c\x59\xa1\x5d\x6b\x0e\xe6\x6a\x8a\x95\x30\x48\x92\xe5\xda\x2a\xff\xa8\x3a\xb7\x3f\xdf\xf6\x05\xd6\xe2\x73\xb7\x90\x43\x4a\xc6\x2e\xd0\x91\x2f\x4b\xfd\x7b\x09\x25\xe6\x60\xdf\xa3\xa1\x72\xca\xa8\xd0\x58\x5f\x2b\xcb\x98\x2a\x28\x03\xc7\xc3\x58\xea\x30\xf6\xa1\x4e\x5a\xf1\xbd\x2b\xb1\x24\xe1\xd4\xda\xf1\xba\xa7\xae\xc4\x50\x95\x9e\x9a\xd2\x11\x21\x4a\xf0\x29\x29\xa7\x26\x58\x7d\x5d\x2a\x72\x01\x96\xb5\x44\x54\x0e\x1d\x5f\x8b\x96\x7a\xd8\xdc\x81\x94\xf6\x48\x4a\x6b\xdc\xeb\xf1\x2d\x41\x26\xd2\x32\xd0\x00\x72\x5c\xf8\x1a\x43\x3a\x74\x06\x41\x30\x76\x19\x6b\x6f\x9d\x02\x9b\x66\x2b\xef\xe3\xe5\xd5\x65\x27\xf6\x1d\x76\x2f\x7b\x9d\x0f\x9d\x9b\x52\xea\xdb\xc5\x55\xbb\x94\xbe\x76\xdb\xbb\xa9\x64\xc7\xbd\xbb\xba\xba\xe8\x2c\x38\x21\x3b\xbd\xee\xc7\x52\xe3\xe7\x77\x37\xed\x5e\xf7\xaa\xf4\xde\xbb\xee\x65\xfb\xe6\xd7\xf8\x97\xce\xcd\xcd\xd5\x4d\xa5\xbf\xbb\xb3\xe5\xee\xcc\xd2\x34\xea\x55\xf1\xc2\x5b\x12\xc1\xf4\xd4\x2d\x69\x8f\xea\xfb\x3d\x27\x7d\x42\x92\xf3\x26\x49\x9b\xb5\x39\x9a\x25\xab\x54\xca\x06\xdb\xe5\x83\x36\xe5\xb4\xd6\xf6\xa3\x98\x51\xf3\x01\x35\x86\x4d\x67\xbb\x55\x7c\x5c\xff\x88\x6c\x96\x6a\x0a\xfc\x65\x8d\x54\xd3\xd2\xae\xbe\x9c\x54\xd3\x9a\x2c\xd2\xc5\x54\xd3\xee\x65\xb7\xd7\x6d\x5f\x74\xff\x4f\xa5\xc5\xcf\xed\x6e\xaf\x7b\xf9\x61\xf0\xfe\xea\x66\x70\xd3\xb9\xbd\xba\xbb\x39\xeb\x2c\x0f\x28\x5f\x1c\x7d\xa1\xb4\x1d\x93\xb8\x9f\x53\xd2\x8b\xc4\x69\x74\x0b\x38\x6d\xcd\x01\x4a\x02\x55\xd1\x8c\xff\x83\x8b\xf1\x11\xd4\x24\x3c\x25\x1d\xa5\xba\x53\x3a\x66\xd7\x79\x96\x81\xd2\x8b\x3e\xb8\x33\xc5\xa8\x81\xd7\xae\x65\xda\x8d\xbe\x83\xc8\x81\xda\x69\x40\xff\xae\xc2\x27\x76\x7f\xe4\xfa\x8f\x54\xbc\x10\x95\xe0\x4c\x1c\xa1\xfe\xf2\x29\x60\xdc\xcb\x91\x2b\x56\x74\x14\x7c\x9c\xe4\xef\xb9\x34\x94\xb0\x2f\x09\x24\x51\xd4\xd3\xc9\x85\xdc\xa9\x42\xe7\xea\x72\x42\xf5\x67\x7a\x75\xde\x59\xbd\x26\x8f\x80\x6a\x83\x4d\x0a\xe4\xb9\x59\x7e\xc4\x4f\x5d\x4d\xbc\x7a\x81\xc8\x64\x7b\x08\xea\xba\x90\xe3\x7a\xf0\x22\xc8\x7a\x73\x88\x4b\x45\x2d\x17\x08\x11\x95\x63\xa2\xb9\xb8\xef\x8b\xcf\x13\x26\x88\xcc\x15\xfe\x64\xa4\x02\x1c\xac\x51\x96\xeb\x09\x83\x4a\xbc\x47\xe4\x91\x91\x29\x9d\x63\xa8\xe8\x54\xaa\x08\xce\x09\x48\xc6\x12\x27\x7c\x9d\x71\x61\xb9\xc5\x8c\x7b\x17\x42\x75\xeb\xf7\xe1\x61\xf4\x29\x44\x74\xf7\x0c\xdf\xf5\xe2\xa4\x1e\x27\x0c\x42\x44\x0a\xeb\x96\x57\xe3\x1c\xe7\x06\x68\x4b\x29\xef\xad\x66\xe6\x93\x0d\xbf\xf3\xe0\x1d\xb0\xdc\x0f\x92\xa7\x24\xcd\x67\x19\x4f\x02\xdf\x7d\x94\xaa\x31\xa3\x1a\x5d\x5d\x1b\x64\x54\x57\x1c\xb8\xcb\x26\x56\xe3\x47\x8b\xec\x1d\x4b\x72\xab\x9f\x38\xbb\x3c\xaa\x2c\x96\x6b\xa6\x8e\x8d\xe2\xe3\x31\x38\x0e\xbc\x57\xfe\xe5\xa7\x9f\x17\xe9\x6d\xbb\x3b\xa0\xe3\xf8\xb0\x4c\x8e\x79\x42\xb3\xd8\x04\x5d\xc8\xae\x21\xbf\xd5\x1f\xfb\x59\xae\xb0\xa2\xf3\xa8\xc8\x31\x6c\x8c\xdb\xf7\x65\xf4\x07\x58\xac\x6d\xf7\x22\x72\xdd\x11\x16\x2e\x76\xe5\x4e\x8a\x00\x4a\x5f\x30\xca\xdf\x70\x45\xdf\x1e\xcd\x0d\x81\xed\xa1\x40\x32\x91\x8f\x50\x6c\xd2\x6a\x23\x56\x38\xb7\x33\x15\x12\x64\x93\x80\xf0\x16\xac\xc8\x1e\x03\x6f\x14\xcc\xe5\x18\xe4\x32\xe6\x0f\x4c\xbc\x00\xb8\x80\xc2\xd2\x6e\xa7\x1e\x4e\x69\x2d\x8b\xdc\x15\xee\x2d\x38\x81\xb6\x95\x88\x97\x3b\xf5\xc6\x99\x1c\x62\xb5\xcb\x05\x20\xb8\xf8\xd6\xd9\x2c\x82\x65\xe4\xe0\xfa\xca\x77\x96\x47\x4d\x80\xfc\x09\xb9\xa4\xe0\x81\x5d\xb6\x1e\x9b\xce\x32\x6a\xf6\x8c\x94\xb7\xfb\x82\xe5\x46\x46\xf5\x45\xed\xe4\xba\xa1\xcc\xa8\x77\x95\x00\x55\x74\xd3\xda\x62\x55\xc5\x89\xf1\x2b\xdf\xc4\x9d\x6b\x9c\xe8\x1b\x01\xfd\xcd\x14\xf3\xe1\x13\x73\x66\x42\xd4\x44\xe6\x61\x9d\x20\x99\x3c\xcc\xba\x1c\x36\xe6\x03\x43\x42\xa8\x2f\x60\x40\x84\xda\xb7\xd3\x99\x14\x4c\x38\xe3\x86\x90\x7d\xe1\x1a\xf7\xb0\xa1\xa1\x0c\x59\xc9\x87\x74\xe4\x74\x10\x57\xf0\x5a\xcb\xec\xc1\xd9\x29\xa3\x8c\x7e\x80\xf5\xb2\x03\x3c\xb3\xec\xdc\x0a\x2f\x54\xa4\xc1\xa1\x00\x26\x96\x0a\x76\xa6\x62\x63\xae\x0d\x8b\xdd\x6e\xf1\xf7\x7b\xc3\x13\x2c\xc9\x3b\xcb\x96\xbe\x11\x4f\x70\x15\xe3\x1a\xd1\x64\x13\x5c\xaf\xf9\x8c\xa5\xdd\xf0\xdd\x72\x62\x28\xf9\xce\xd3\x28\xb6\xb0\x74\xc8\x91\x06\x7c\x45\x7b\x08\xa4\xd5\x21\x17\x3f\x6c\x52\x28\x6c\xe7\xb1\xbe\x60\x8b\xc6\x34\xa7\x8a\x0a\xc3\x98\xee\x0b\x8c\x32\xc6\x14\x88\x52\xcc\xd3\xa8\x84\x20\x59\xc8\x52\x89\xd4\x06\x03\x2c\xe1\x93\x11\xe5\x59\xae\x1a\x45\x04\x24\xcb\xad\xa2\x39\x96\x2d\xd3\x19\x34\x4b\xea\x76\x2d\xb8\x86\xa3\x63\x14\x82\x92\x7c\xf1\x2d\x5f\x20\xac\xec\x39\x6d\x82\x02\x76\xca\xde\xfa\x1b\x1e\xf4\xc3\x06\x6f\xf1\x5f\xf4\x60\x26\x37\x60\x79\xae\xe6\x47\x3d\xf7\xa1\xfa\x1e\xe2\x78\x56\x09\x3e\xab\xad\x19\x7f\xfa\x69\x35\xc4\x6c\x23\xdb\x01\x82\x9b\x50\x91\x42\xfd\x4e\x6a\x22\xdb\x05\x12\x8a\x23\x5f\x00\xee\x33\x9e\xaf\x35\x3b\x3a\xc0\x6e\x38\x48\x16\x9c\x4e\x2b\x96\xaa\xea\xad\x5a\xe1\xbc\x28\xf5\x52\xf6\x21\xd5\xd9\x2e\x8b\x58\x5e\x87\x20\x19\xce\x5a\x33\xf1\x8c\xf8\x78\xff\x59\x75\xeb\x62\x6a\x16\xf5\x5a\x17\x99\x5c\xe2\x0e\x91\xbb\x7a\x02\x8a\xe6\x8e\xc7\x08\x6c\xce\x96\x0f\xc5\xb9\x8b\x7d\xe1\x20\x66\xe1\x45\xc4\x29\xc6\xf0\x5c\x4d\x7e\x0c\x8e\xc8\x1f\xff\xdd\x07\x67\xce\xc9\x08\xd6\x1a\x22\xa0\x65\x92\xe4\x0a\x20\x3d\x7d\x65\x5f\x86\xd7\xca\x26\x29\xe6\x6d\xbc\x4c\x35\x30\x17\x08\xf4\x6c\xae\x52\xe9\x94\xa2\xd2\xa4\x7a\x20\x0b\x23\x58\x6e\xb8\xc6\x1c\x1c\x8d\xd2\x86\x68\xc3\x66\xb5\xfc\xa4\x24\x2f\x95\x6f\x82\x9d\xb2\x08\xeb\x60\x6d\x57\x67\x2b\x7f\xa4\xb3\x65\x88\xa3\x3b\xb7\xb8\x6a\x1b\x42\xf8\x58\xf5\x9a\x03\xb4\x4d\x40\x59\x71\x48\xa1\x8b\xab\x17\x32\xae\x9f\x25\x4a\x7a\x13\xfc\xf3\x90\x78\xef\x2a\x07\x2c\xe3\x6d\xe5\x4f\x37\x8f\x19\x2a\xc2\x83\xf1\x35\x07\xe8\x3d\xc4\x6c\xf9\x38\xc1\x7f\x1b\x00\x86\xea\xc6\xf8\xb6\x96\x6c\xc7\x8e\xc9\xc7\x05\x5e\xc4\x33\xe6\x1e\x7f\x5a\x58\xa2\x4d\x53\x8f\x1f\x62\xac\x05\x90\xbd\x8a\xd8\x8e\xb5\x34\xd2\x90\x72\xfc\xa9\x0c\x98\x51\x5a\x62\xc9\xd7\x42\x16\x59\xac\x30\x0c\x37\x54\xca\x84\x34\x8c\x50\x22\x78\x76\x22\xf2\x2c\x3b\xb9\x94\xc2\x32\x66\xcd\xc7\x18\x8f\x02\x16\x49\x2c\xcf\xf3\xff\xb1\x77\x6d\x3d\x6e\xdb\xd8\xff\xbd\x9f\x42\xe8\x4b\x12\x40\xe3\x02\xff\x3f\xf6\xa5\x6f\xb3\x49\x8a\x4e\x91\x4d\x67\x33\x4d\xbb\x40\x55\x78\x68\x89\xb6\xb5\xa5\x49\x97\x92\x66\xea\x02\xfb\xdd\x17\x3c\xe7\xf0\xa6\x9b\x25\xdb\x93\x64\xdb\x3c\x14\x05\x26\x96\x78\x11\x79\xee\xe7\xf7\xf3\x34\x2f\x51\x28\x3a\xb8\x02\x20\x9c\xcd\x94\x30\x4a\x5e\x1b\x89\x69\x3e\x81\x38\x64\xd2\x3c\x81\x7a\x04\xd9\x31\x4a\x57\xba\x8e\xa3\x59\xb8\x52\x1a\x0b\xfa\x38\x0f\xe1\xcb\x7b\x0e\xd8\x18\xc2\xe7\x59\x35\xe3\x9f\x79\xb0\x3f\x19\x1e\x6c\xa5\x6d\x64\x77\x06\x23\xf6\xf0\xa5\x3a\x99\x92\xda\x39\x3a\xce\x6c\x9d\x70\x1e\x3f\x66\xba\xed\x29\xf1\x5e\x3d\xb8\x2b\xfd\x6d\x2e\x82\xab\xdd\xa9\x4b\x64\x1d\x7e\xc3\x86\xee\xa5\x5a\x5b\x1e\xeb\xd3\x9b\xd0\x27\x86\x7d\xc3\x2e\x9a\xb0\xf5\xbc\x7b\x48\x86\xfc\x5e\x25\x97\xe4\x19\x4f\x9b\x6c\x7b\xc3\xbe\x97\xdf\xe0\xe3\xb7\x4a\x94\xf9\x78\xac\xdc\xaa\x26\x60\x13\xe8\x64\x4a\x80\x77\x83\x5b\xd2\x3c\x9a\x14\x06\x81\x6b\x9e\xd7\x3e\xf4\xd3\x5d\xdc\x9c\x50\xa2\x75\x17\xdc\x5b\x00\xe5\xc8\xd3\xa1\x18\xb5\x02\xc5\xc4\xd0\x47\x85\x86\x34\x00\xf3\xb3\x3d\xe4\x66\xc8\xbf\x88\x26\x02\xb2\xe9\x71\xab\x04\x4f\x31\xb6\x04\x81\xe8\x4c\xee\xb9\xce\x95\x71\xd2\x92\x42\x3d\x52\xf1\x5d\x29\x0a\xdf\xad\xfc\x1c\xf2\x62\x10\xbd\x7e\x41\x90\x2c\xdc\xc5\xfe\x1c\x29\xc6\xf1\x63\x6b\x61\x19\xcf\x85\xfb\xb8\x54\xa0\x7b\xec\x14\xfc\x44\xb9\x32\xdc\x0a\x02\xb1\x6f\x05\x71\xcc\xa6\x47\xf3\x99\xf7\x85\xb9\xeb\x43\x05\x05\x83\x0c\x2a\x75\xeb\xbb\x52\x57\x44\x7b\x2b\xa1\xc0\x1e\xf1\x78\x30\xc0\x6c\x1c\x44\xc8\x67\x32\x34\x43\x7c\xb9\x2b\x7d\xd4\x4c\xfa\xb8\xd5\xb3\x2a\x34\x49\x7a\xbf\x33\xd6\x8f\x97\x80\x76\x96\xf3\x34\x79\x16\x2d\xf4\x19\x14\x60\x4b\x05\xe3\x51\x80\x22\xda\x1a\x38\xae\x69\x52\xd6\x99\x2c\x2b\x3c\x99\x9a\x0b\xfe\xc0\x64\x4c\xce\x4a\xb1\x70\xea\x93\x77\xcb\x86\x6c\x2c\xa3\x92\xef\xc2\xa1\x79\x42\xa9\x93\x0e\x0b\x79\x19\x14\x8c\x01\xb3\x41\x23\xa1\x0d\x95\xff\x8e\xfc\x11\xc6\xd1\x7d\xe0\x5a\x97\x45\x61\x86\xf3\xc4\x26\x04\x18\x06\xcc\xc5\x07\xd5\x20\xdd\x53\x41\x04\xaa\xb6\x31\xd1\x55\x55\x95\x68\x8c\xae\x54\xbd\x8d\x3e\x04\x21\x0a\xe1\x4d\xe2\xc6\xc5\xae\x81\x0f\x0b\xf6\x55\x72\x56\x6f\x93\xb2\x4e\xa1\x1c\xce\x0a\x8e\x4c\xb2\x82\x00\x19\xe9\x75\xa5\x23\xac\x1d\xfe\xce\xf4\xef\x2b\xf5\x30\x66\xd3\x9d\x9b\x6c\xc1\x5b\xbd\x17\x4c\x2e\x51\xa0\x7e\x84\x74\x4b\x00\xf6\x34\x14\xc7\x6a\x56\x4b\xc7\xb3\x70\x91\x79\x3a\x4b\xe7\x5d\x04\xc1\x66\x4c\x38\x3b\x50\xda\x66\xa7\xb7\x96\x39\xb4\x25\xdb\xbc\x40\x29\x8c\xb0\xa0\x28\xd9\x74\x29\xe0\x53\x46\xac\x15\x20\xb6\xa7\xf5\x58\xce\xc8\x9e\x80\x4f\x35\x6f\x34\xe5\xcb\xb7\x74\x48\xfb\xb3\xcf\x4f\x59\x74\x0c\xa6\x93\xd2\x16\x47\xa6\xf5\xb4\xa9\x8b\xc1\x10\x42\x37\x85\xf1\x93\xe3\xa5\x72\x31\x65\x2c\x41\xe0\x49\xa5\x8c\x5f\x63\x23\x1c\xfd\x60\x5e\xad\x7a\xc1\x27\xad\x6a\x8e\x21\xff\x27\x77\x5e\x22\x41\x56\x72\x23\x1d\xab\x71\x9a\x64\x5f\xe2\xc9\xaa\xb2\x2f\x11\xcd\xdc\x62\xc2\x59\xf6\x2d\xba\x3f\x45\xc4\xb1\xe8\x22\xed\x98\x7b\xf7\x17\x8e\x58\xa1\x66\x45\xf3\x3e\x26\xed\x55\xd0\x96\x8a\xe5\x39\x2b\x7c\x01\xa9\x49\xf4\x39\x0f\x96\x13\x0b\x70\x4b\x75\x93\xd7\x7e\xc1\x8e\x42\xe8\xef\xf6\x41\xb3\x45\xfb\x86\x34\xaa\xa3\xec\x51\x3a\x93\xf6\x6d\x9e\xc9\xf3\x5a\x88\xce\xab\xba\xec\x59\xc1\x59\x85\x18\xb5\x05\x8c\x00\x20\x12\x5f\x6d\xde\x96\x03\x10\xf3\x5e\x71\x8f\x66\xb9\x48\x3c\x7f\x1b\x98\x1e\x2d\xa2\xa8\x90\x27\x4a\x08\x4b\x92\x84\x56\x5b\xc0\x8c\x53\x35\x50\xc6\xbd\x6e\x8c\x38\x0a\x6a\xdd\x33\x09\x9c\x61\xeb\xd2\x5c\x12\xbb\x2f\x99\xfc\x87\xa2\x9a\x79\x30\xaf\xec\x22\x6d\x1d\x3c\x6d\xdb\x33\x87\x9b\x41\x7f\x78\x05\x6a\x7b\x8d\x79\xe6\x16\x92\x2a\xd4\x87\x40\x15\x5b\x6a\x6c\x0f\xed\x17\x95\x33\x99\xc9\x7f\x9b\xed\xb1\x44\x58\xf4\x59\xd5\x1a\x2f\xb1\x45\x9e\x4d\x9e\xdf\xe3\x4b\x9f\xff\xed\xc5\xfd\x0b\xa4\x19\x6c\x2a\xc0\x2a\x4a\x63\x15\xe2\xda\x9e\x1a\x21\xa0\x86\xd2\xae\x60\xad\xd5\x0e\xbb\x34\xdd\x10\xa3\xbc\x18\xe4\xe5\xcc\xa4\x0b\x3a\x4a\x14\xe4\x23\xaf\xd7\x49\xce\xea\x7c\x7b\x65\xad\xb9\x90\x1c\x2c\xa0\x24\x07\xcb\xd1\xd8\x5a\xfd\x9d\x3f\xc6\x03\xd3\x3b\x87\x05\x1a\x9d\x17\xb3\x04\xa2\x9a\xe7\x6d\x10\x54\x3b\x12\x1c\x4e\x0f\xc3\xe9\x2d\x3d\xf7\x73\x0b\x44\x12\x50\xab\x63\x88\x58\xb2\x1d\x2f\x92\x0c\x1b\xf7\xb3\x2f\xed\xe7\xcf\xe4\x7e\xb5\x10\x87\x75\xbd\x80\x26\x86\x85\xd9\x96\x05\x74\xeb\x1f\xd1\x74\xcb\xa2\xeb\x2a\x1d\xd9\xee\x41\x67\xab\xdf\xde\x71\xbb\xe3\x46\x9a\x6e\xb4\x60\x88\xc7\xed\xcf\x5d\x9c\x03\x8a\x3b\xc7\x80\x4e\x89\xc8\x9f\x8c\x91\x1b\x18\x56\xfe\x7e\x22\xd9\x46\x52\xd5\xac\x2e\x73\x44\xdd\x92\x4c\x1c\x00\x0e\x28\xcd\x64\x51\x6a\x74\xad\x59\x7e\xc8\x45\x99\x13\x91\x53\x6c\x0b\xf1\x07\x2e\xeb\xd7\xbf\xd7\x5c\x4b\x26\x6c\x19\xef\x8d\x5c\xab\x73\x0c\x22\x4e\xef\x3b\x0f\xc1\xf8\x26\xb6\x78\xa0\xe5\x18\xdf\xeb\x03\x8c\x96\x8d\x1f\xbc\x6a\x5b\x70\xe0\x8e\x78\x4a\xf8\x1f\x0c\x3a\x12\xfe\xd9\xac\x94\xe0\xc9\x6f\x0d\xd7\x87\xe4\xe6\x55\xa2\x34\xf4\x4e\xd6\x8a\xfe\x54\x16\xb3\xc0\x3a\x91\x7f\x94\x52\x81\x8e\xed\xb4\x65\x0f\x75\x66\x5c\x79\x78\x62\xa5\x1d\x9f\x65\x10\xec\x8c\x57\xd0\xf7\xb5\xa2\x16\x03\x80\x5c\xfb\x50\xc6\xeb\x50\x73\x43\xff\x5d\x79\x3f\x60\xb8\x3a\x8a\xc4\x38\xc6\xd9\xbe\xd4\xb4\x4f\xfa\x54\x4e\x1b\xec\xbe\xb4\xd1\x07\xa5\xcb\x4d\x29\x59\xad\x74\xf2\xfc\xd6\xb6\x2c\xbd\x70\x6d\xb6\xb0\x8b\xfd\xd3\x68\x45\x57\xe7\x6c\x11\x46\x66\xfb\x4d\x23\xc8\x26\xf3\x62\xd9\xad\x29\x9f\x0b\x19\x7a\xb4\x5a\xc2\xfc\xaa\xaa\xd9\x6e\x1f\x42\x06\x3a\x20\x2b\xda\x19\x81\x9b\x90\xd8\x89\x81\x13\x5e\x56\xbe\x78\x2d\x93\x14\xba\xc2\xef\xa6\x74\x0f\x16\x76\x7b\x95\x20\xe6\x97\x27\x56\xec\x13\xfb\xe4\xf1\xa7\x47\xc3\xfb\xef\xde\xd8\x88\x9e\x57\xdb\x91\x1e\x84\x85\x72\x99\x83\x54\x85\xca\xe4\x6d\x54\x1c\x9d\x49\x5f\x98\xfc\x52\xa8\xa6\x48\x48\xf6\x50\xaa\x40\x2f\x92\x92\x2f\xd2\xa4\xfa\xff\xaf\xbf\xfa\x6a\xb1\x18\xd8\x89\xb9\xd8\x34\xee\x7e\xc3\x73\xfd\x27\x1c\xfe\xad\xb7\xf0\xff\xc8\xd5\x8a\x48\x17\x97\xf3\xfc\x44\x8b\xec\x03\xa7\x25\x8c\xa3\xc4\x65\xad\xed\x21\x1d\x11\xe5\x39\xc3\xd9\xfa\xd8\xf1\xa1\xf6\x4c\x73\x59\x2f\x61\xc4\x79\x83\xc1\x20\xb7\xf0\x78\xd4\xd0\x34\xc9\x1f\xfe\xf9\x07\x85\x61\x0e\x5b\xd5\xfc\x4b\x40\x19\x4b\x28\x81\x46\xb6\x3f\x2f\x21\xeb\x18\x84\x84\x8f\x71\x64\xd2\x82\x4e\xd8\xbd\x60\x41\x91\x60\x9a\xb4\x20\x3f\x7b\x6c\xf0\x77\x7c\xa8\xae\xb0\xd3\x08\x0a\xfb\x37\xaf\xb2\xb0\x68\xd7\x27\x27\x12\x56\x27\x48\x1e\xfd\x07\xd7\xca\x77\xab\x12\xf2\x78\xf0\xe2\x91\x0a\xff\xc3\xf2\x74\x28\x1d\x84\xc8\x43\x10\x97\x10\xc5\x00\xfe\x42\x85\xe3\x68\x54\xad\x0e\xb6\xd2\x7f\x18\x7c\x78\x79\x02\x37\x83\x9b\x4a\x60\xd3\x04\xd2\xd3\xfa\x7d\x4e\x14\xdb\x0b\xfa\x15\x98\x6c\xc6\xfc\x36\xb6\x06\xdb\x53\x86\x9f\xe8\xec\xdb\x31\xac\x05\x2c\xe2\xe7\x7f\xfd\xb2\x18\x42\xc8\x82\xa9\x9f\xcc\xc0\xf5\x8d\xa5\x23\xd4\x9c\x15\x9e\xe1\x21\x24\x70\x38\x86\x7e\x75\xf4\x40\x9e\x61\xc9\x9c\xf3\x5d\xba\xb6\x8a\xc3\xb5\xf0\x47\xbc\x2c\x42\x78\x53\x77\xc0\xe9\xf3\x38\x80\x7f\xb5\x4e\xc0\x63\x19\xb0\x96\x16\x34\xcf\x9e\x11\x66\xec\x5e\xbf\x7c\xfa\x40\x76\xe0\x50\x0f\xef\x94\xe9\x5b\x1f\xe3\x56\x29\x71\xae\x9f\xc1\x84\x45\x8c\x59\x42\x83\xfe\x39\x76\x02\x1e\x00\xe7\x58\xdc\xbc\x72\x31\x2f\xd7\x14\x0b\x72\x3a\x80\xc7\x81\x84\x0c\x4d\x01\xd2\x20\x48\x0f\x35\x5c\xa6\x50\xed\x7b\xc2\x9e\x33\xcb\x2d\xe0\x1d\x98\x2f\x71\xd8\xb3\x1d\xc7\x27\x28\x11\x65\x7e\x8e\xd0\x38\xd4\x9a\xe1\x2c\x2f\x07\xdb\xe9\x5b\x43\x39\x8f\x27\x6c\x30\x74\xfb\x18\x8c\x6d\xf7\x13\x41\x7c\x8c\xcb\x44\x0a\x24\x93\x81\xb2\xc0\xce\x1d\x5b\xcf\xe2\x76\xad\xcf\x11\x8a\x8e\xe1\xd9\x8e\xd0\x39\x5d\xe4\xa3\x6e\xec\xab\x10\xac\x01\xa2\xb1\xb9\xda\xad\x8c\x33\x82\x20\x4b\x94\x0e\x01\x2d\x77\x6d\x3b\x0a\x5d\x3b\x94\xd5\x56\x88\xcf\xd6\xda\x7b\x57\x4b\x12\xf6\x3b\x85\x22\xab\x37\x8b\x3e\x60\x5a\x5c\xb6\xe1\xbd\x5f\xce\x5e\xb7\x57\x00\x38\xe4\x8f\xec\x50\x01\xb2\x85\xf1\x8a\xd7\x6b\x4f\xdc\x13\x5a\xe9\xce\x4f\x73\x0d\x60\x04\x13\xd5\x10\xe0\x0d\xad\xa5\x24\xee\x36\x61\x31\x3c\x7c\xa7\xc8\xb3\xaa\x7f\x73\x9e\xba\x3b\xbf\x7f\x2f\xe0\xfd\xae\x87\x94\x60\x82\xa3\xfa\xe7\x14\x3d\x8b\xff\xf3\x65\xeb\x3c\x57\xd2\xf5\x9d\x5e\xc4\x61\xed\xe9\xdc\xef\x9f\x2e\xfc\x5b\x07\x5f\xf8\x98\xf7\x7c\xa6\x13\x1f\xa8\x49\xad\x72\xc2\x4b\xae\x13\x00\xbc\x42\x71\x6c\xc6\x4e\x93\x1d\x2b\x25\x5d\x83\x5a\x1b\x01\x59\xf0\x55\xb3\xd9\x0c\xfa\x96\x42\x6d\x9e\x34\x2d\x61\xfb\xdc\x83\xdf\x0f\x94\xc4\x8b\xb1\xde\xed\x23\x27\xf4\x4f\x14\x44\x18\xed\x75\xba\x44\x18\xe0\xc6\x8e\x84\xa1\xe7\x75\x29\xf8\x87\xf1\xfc\x2f\x14\xc6\xb8\x99\x12\xc6\xb0\xb9\x0b\xa8\x9f\xc4\x75\xb8\xe8\xf2\x5f\x28\xbe\x81\x3d\x25\xcb\x32\x36\x2f\x47\xa6\x74\x62\xd3\x97\x6b\x53\x85\xcb\x4a\x88\x49\x15\x97\x45\x05\x78\xe0\x97\xef\x02\x03\xd9\x7e\x7e\x8b\xd5\x11\x3c\xfc\x3b\xb5\xe3\x09\x0c\x55\x21\xf2\x48\x42\x05\xa0\x29\xe4\x3a\xcd\x02\x3d\x48\x1d\x5c\x78\x4a\xe6\xe5\x5b\x26\x37\xbc\xf0\x26\xe1\x73\xc9\x1f\x13\x23\x6b\xd3\x30\xf9\x13\x7c\x9e\x34\xe1\x75\xfe\x82\x20\x4f\x7d\xad\x88\xe6\xb9\xd2\x05\xb4\xfe\x6f\x98\x2e\xa0\x42\x89\x0e\xbc\x60\xf9\xaf\x40\xba\x05\xea\x08\x47\xa4\x04\x95\xed\x8e\xc7\xa4\xa9\x7f\x5b\x29\x73\x84\x9f\x74\x3c\xd8\x76\x7e\xf8\x78\x95\xb0\x5c\xab\x8a\x58\x79\x89\x6b\x89\x48\x7e\x02\x9e\x13\x18\x71\x30\x44\xc1\xaa\xb3\xba\xfd\xaf\xa5\xaf\x37\xe0\xbf\xef\x05\x93\xf1\x89\xc7\xe5\xd6\x9a\x01\x0c\xea\xa0\x3d\xe7\xfa\xf0\x3e\x68\x2b\x70\x08\x63\xe8\xaf\x15\xda\x76\x9a\xb3\xe2\x10\x76\x2b\x95\x92\xb0\xc9\x58\xb1\x2b\xa5\xf9\xf4\x46\xbb\x20\xef\x0d\x49\xaf\x02\xd9\xd3\x05\xa6\x69\x01\x7a\xc6\xc8\xad\x48\x23\x56\x89\xe4\xc6\x20\x60\xba\x14\x07\xb0\x01\xf7\x9a\x5f\x05\xe3\x04\xf7\x9b\xea\xc4\xca\x2a\x93\x38\x77\x60\xcd\x5b\x37\x02\x2d\x45\xf0\xa5\xdc\x02\xe8\x1e\xbe\xbf\x49\x8d\x92\xa8\x09\xf0\x21\x18\x18\xce\xec\x45\x6a\x6e\xba\x5e\xcc\xa4\xc0\x9c\xef\xa2\xd3\x50\x10\xb0\x55\x8f\xb6\x30\xf0\x91\xf9\xbc\xef\x1c\x37\xef\x96\x64\x97\x75\xe1\x82\x2c\x31\x28\xf4\x08\x74\xff\x1b\xa5\x09\x94\x01\x84\xc3\x2d\x61\xfb\x7f\x5b\x3e\xf0\x34\xb9\xdb\x33\xfd\x6b\x9a\xbc\x3a\x48\xb6\x2b\xf3\xef\xd4\xea\xa8\xe7\x76\x89\xe8\x85\x33\x30\x66\x47\xb7\x7a\xe3\x00\x69\xd0\xb3\x1f\xc4\xb8\xba\x7e\xb6\x4d\xe0\x99\x13\x43\x68\x9c\x43\x0a\xd2\xe6\x44\x75\x0f\x95\x50\x72\x49\xfb\x73\x38\xa5\x3b\x68\x8d\xb6\x25\x80\x97\xd5\x54\x35\xdb\x97\xc8\x34\x32\x12\x8a\x7d\xcd\xc2\xaf\x40\xeb\x29\x9d\xec\x05\xab\xcd\x59\xb1\x7c\x39\x78\x2a\x30\xf7\x8a\xd2\xbe\x55\x0b\xdd\xd9\xd4\x41\x11\x8b\x03\x2f\xf7\x4a\x89\x5e\xdd\x7e\xd1\x0d\xec\xc4\xa9\xa6\x6e\xde\x0d\xd6\x90\x55\xa1\xc6\xb3\xbb\xe8\x63\x1e\x3e\x42\x12\x60\x1a\xc3\x69\x2a\x1a\x8d\x1c\x1f\x76\x3b\x16\x3e\xc0\xc8\x8c\xf1\x8d\x19\x6f\x54\x72\x2b\x9e\x33\xe8\x72\xb5\xd6\x07\xf2\x0f\x21\x6f\xb9\xd3\xd1\x3d\xd1\x98\xaa\x3b\xce\x80\xc9\x01\xef\x5d\x96\x7d\x4d\x4f\x73\x2f\xd7\x0f\xdb\xde\x10\x2b\xce\xdc\x86\x87\x6c\xd5\xd1\xb1\xa6\x66\x5b\x64\xbd\xcc\x05\xab\x26\x56\x7c\xf4\xca\x9d\x1b\x7a\xd1\x4b\x78\xcf\x74\x99\xf9\x2d\x44\xc3\x76\x13\x85\x71\x26\xaf\x5d\x53\xaf\x57\xe3\xce\xf4\x40\x31\x8b\x46\x57\xe7\xd3\x60\x29\x93\xef\x00\x4f\x93\xaa\xc9\xb7\x50\xac\x15\xcb\xa9\x50\x6e\x75\x6f\x6c\x9a\x49\xa3\x08\x11\xc1\x8b\x41\x46\xe4\xd1\xa8\xbb\xaa\xfc\x83\x3b\x4d\x8b\x26\x51\xa4\x5c\x57\xcc\x7c\x1a\x82\xe1\x6e\x1b\x22\xb6\x6e\x8e\xe9\x5f\x79\x11\x04\x69\x9a\xbd\x71\x2e\x17\x99\xdb\x66\x3c\xbf\x9e\x38\x8a\x2c\x9b\x2a\x5c\x58\x68\x88\xb5\x24\xad\x28\xd7\x3c\x3f\xe4\x9d\x1e\xd0\x28\x0f\x79\xb9\x68\xe0\x69\xc1\xb0\xb1\x5e\xc1\x7e\x1f\xe7\xa7\x4e\xbf\x4b\x32\x94\xbc\xf9\xdf\x2c\x88\x18\x68\x57\xfb\xb3\xc7\x33\x8e\x14\x41\x7f\xae\x6d\xb8\xa8\xef\xff\x45\xf8\x7f\x2b\x19\x6c\xe9\x00\xf8\x19\x64\x8f\xf6\x16\x2c\x7c\x5a\xa5\xff\x65\x11\x9e\xc8\x7a\xcb\x7b\x3a\x00\xa6\x1d\x32\x6a\xb0\x28\x5c\xf3\xc7\x1c\xec\x18\x7c\xd4\xee\xd7\x4b\xa1\xaa\x46\x8f\x5f\xab\x77\xf1\xac\xed\xe8\x7e\x35\x11\xa6\x0f\xdf\xad\x38\xf4\xf5\x14\xf8\x65\x7a\x17\x73\x4c\x05\x1b\x4f\xa4\xfd\x3c\xa5\xf2\x1f\x79\x92\xb3\x3d\xd4\x57\xf6\x23\x1d\x76\x9e\x0b\x3c\x57\xd0\x69\x1b\x1e\xea\xd7\x96\xda\x89\x0e\x57\x94\x03\xf9\xa4\x8a\xf1\x7a\xbd\x9b\x56\xef\x71\x14\xe4\x98\x94\x35\xba\x44\x44\xf6\x96\xd5\x5b\x74\xbf\x01\xf5\x1b\x33\x88\xb5\x31\x4d\x10\x87\x16\xc3\xb4\x2b\xa1\x56\x00\x5e\x5a\x2b\x3d\xc8\xe6\x9f\xd3\xe1\x9c\xb4\x75\xdd\x0f\x36\xe5\x6c\x9b\xfb\x00\xb5\xd4\x9a\x57\xd0\x54\xd7\xcd\x83\x74\xca\x1a\x2f\x12\x22\xe8\x4e\xd7\x88\xad\x57\x9d\x10\x41\x17\x62\xc7\xc8\x4b\xa8\xc4\x79\x3d\x22\x30\x87\x2e\xd6\xeb\xb0\x1a\x99\x01\x17\x4b\x0d\x64\x97\x98\x68\xac\x4a\xb9\x11\xbc\xb5\x5e\x8b\x0e\x9d\xc9\x6b\xfc\x97\x90\xa0\xd8\xa3\xc0\xb9\x62\x17\x02\x02\x75\xf7\x0f\xcb\x93\x93\x6b\xdb\x6e\x08\x6d\x6d\x8c\x12\x61\xce\x97\x81\xc0\x43\x6a\x19\x8f\xb5\xb1\x54\x2b\x50\xc4\x55\xb3\xba\xf2\xcd\x67\x4a\x83\xea\x86\xde\xc4\x3d\xd3\x80\xb2\xbc\x2d\x45\x71\xd5\xd3\x60\x8c\xd1\x43\x0f\x09\x65\xf1\x09\x98\x20\xf1\x05\x1e\x17\xf6\x3e\xb8\xb5\xbb\xf7\x18\xc3\x99\xb3\x7c\xeb\xea\xee\x51\x5c\x8f\xc9\x8b\xc8\x0d\xf9\xd8\x45\x1b\x13\xaa\x22\x06\x40\x1e\xff\xfc\x72\x22\xda\xb3\x29\x72\xe2\x87\xd8\x69\xb1\xb7\xc6\xb8\x5d\x24\x39\x86\xb6\xaa\x5a\x62\x6a\xfa\x03\x34\x67\xfb\x98\x4b\xb5\x67\x8f\x92\x5a\xbe\x66\x15\xbf\x4f\x93\x0f\xfd\xe8\xf1\x46\x3e\x74\xca\x55\x42\x2a\x73\xf4\xec\xeb\xd2\x41\x66\xa6\x01\x36\x30\x13\x22\xc4\x69\xf2\x41\x96\x4c\x7a\x57\xdc\xa8\x7f\x21\xcc\xff\xf3\xb6\xe0\xa6\x16\xbf\x02\xda\x26\x78\x6a\xfb\x93\xa8\xb7\x9f\x82\xff\x57\xe8\xf2\x0e\x72\xd3\x77\x6e\xf3\xa5\xec\xc9\x9c\xe5\x5b\xbe\x34\x53\x6b\x66\x34\xb1\x10\xd1\xfa\x4b\xf3\xf0\x1d\x3e\x3b\xaa\xcc\xd0\x2e\x42\x33\x0d\xc7\x82\xa2\x35\x96\x43\x2f\xb6\x8b\x75\x1e\xbb\xde\x39\x0e\xbb\xec\xe1\x9d\x3b\x3a\xd7\xfe\x40\x77\x40\x49\x07\x97\xd9\x76\xc8\xe4\x4c\x6b\x5b\x88\x4a\xa3\x26\x4c\xd7\xe5\x9a\xe5\x51\x6c\x7a\x12\x3a\x4b\xa4\x21\xf1\x8d\x15\xa4\x4c\x3d\x95\xb7\x15\xe5\x2c\x71\x90\xbc\xc3\xdf\xff\xd2\x3e\x05\xf7\x42\xfa\x32\x91\x87\xd9\x9b\xc2\x92\xa8\x41\xbe\x77\xe9\x01\xb3\xeb\x19\x6b\x3d\xb1\x35\x60\x1e\x7e\x5a\x40\xb7\x3a\x5d\xc2\x75\x30\x50\x89\x6a\x14\xc9\x19\xa9\xcb\xb8\x6e\xb7\xc5\xc1\x16\x62\x09\xf1\x03\x2f\x7c\xcb\x60\x80\x1b\x61\x54\x14\xdb\xf0\x64\xc7\x8b\xb2\x69\xc3\xf3\x45\xe5\xee\x9f\x7d\xd6\xbf\x9e\xcf\x0a\xc9\xf5\xa7\x74\x58\xfb\x1b\x29\x3e\xab\xac\x4f\x40\x65\x05\xf3\xa4\x6f\x3d\xf3\x16\x4c\x96\x1e\xe3\xf9\x2b\xaf\x14\xbd\xa5\xe8\x72\x76\xac\x7b\x0e\xc3\x50\x4b\x1d\xee\x81\x31\xd0\xfb\xae\xc6\xf0\xc1\x7c\x32\x5d\x7a\xb1\x30\xfe\x14\x65\x6a\xae\xb8\x0b\xec\xbf\xb5\x57\x1b\x18\xd1\x6a\x35\x76\xc5\x03\x1c\x13\x56\x3f\xab\xdc\xae\xc7\x57\xd9\x56\x2b\xbd\x29\xab\xfa\x47\x26\x9a\xb3\xc0\x4b\xa0\x67\xe1\xc9\x72\xd1\x76\xaa\x38\xcd\xe0\x89\xd1\x14\xea\xbb\x38\xc9\x69\xf4\x2a\x9e\x39\x68\x72\xb6\x90\xa0\x66\xde\x73\x04\xef\xbd\xdb\xaf\x7b\xb4\xed\x1e\x35\xdb\xef\xb9\xb6\x99\xbb\x4e\x72\x15\xf0\x35\x61\x94\x4c\x62\x8c\xe0\xbb\xbb\xef\xdf\xb6\x75\x83\x91\x3d\xad\x57\xc3\xcf\x60\xeb\x16\xfd\x5f\xee\x6d\x23\xc4\xe0\x97\x9b\x40\x2b\xf7\xfe\xcd\x9b\xe5\x8f\xd7\x6f\xde\xbf\x1e\x85\xc6\x0b\x7e\x36\xb8\x27\x6e\x26\xb4\x27\xe8\xb9\xd5\xe0\xad\x35\x3b\xae\x6d\xdb\x80\x5f\x35\x1a\xc8\x8d\x10\x31\x44\x62\x26\xef\xe9\x3d\x50\x62\xd3\x48\x8c\xac\x64\x32\x19\xdd\xb8\x78\x7c\xf8\xd9\xbd\x79\xf9\x3d\x3e\x7b\x95\xf8\x45\x7c\x9d\xbc\x75\xa3\x0e\xec\x2b\xd5\xef\x9d\x71\x1d\x10\xa9\x71\xe8\x3a\x5c\x1a\x04\xf6\xb4\xeb\xf1\x5e\x5a\x4a\x7d\xc2\x6e\xbd\xc8\xed\xc0\xbd\xbb\x8f\xa3\x76\x4e\x96\x17\x68\xda\xc2\x7b\x53\x84\xee\x44\xf6\x6f\x87\x6e\x99\x49\xa2\x85\x64\xd0\x65\x37\x38\xa7\xe4\x86\xf2\xd9\x82\xc9\x4d\xc3\x36\xbc\x4a\x13\x3b\x78\x26\x77\xe5\x66\x0b\x58\x27\x9e\x4f\x1d\xbb\x01\x58\x5d\x3e\xf0\xd6\x11\xc2\x52\x24\xea\xef\x4f\x93\x52\x66\x92\xd6\x24\x37\xfe\xf5\x58\xa5\xf4\xdd\x9d\x5b\x8e\x39\x69\xee\x45\x84\x3e\x2a\x33\x69\x19\xef\x01\x62\x8e\xc2\x19\x60\xf8\x01\x87\x75\x74\x74\x99\xe6\x16\xf0\x18\x64\xfa\x06\x02\x2b\x99\x74\x25\xf1\xf0\x61\x23\x36\x1a\xac\x5d\xc4\x29\x1d\x97\x27\xf6\x63\xd8\x3b\x41\x73\xeb\x3f\xf5\x67\xeb\x00\x73\xe1\x96\x0f\xad\xb7\x4c\x38\xb6\x5e\x8c\x4d\xb4\xb1\x59\x20\x38\x86\xfa\xa4\xa0\x0f\xa2\x7f\x36\x76\x5d\xf8\x9b\xc1\x24\xb0\x6a\x56\x62\xc6\x94\xf0\xf7\xa3\x93\x42\x91\x3c\x3e\xa9\x09\xb1\xcc\x77\xad\xab\x65\x8e\xe9\xd8\xb0\x2b\xa5\x06\xbe\xcb\x05\xa3\x82\xd1\xa4\xe8\x81\x63\x9b\xd1\xe4\xf5\x29\xe7\x65\x42\x79\x75\x7b\x8b\xac\xf4\x19\x9b\x90\x28\xab\x93\xa6\xe3\xed\xa7\xc9\x33\x72\x16\x02\x29\xbb\x59\x12\x96\xf4\x5c\x24\x60\x07\xc4\x24\xc5\xa2\x28\x13\xc1\x4b\x14\x2f\x12\x78\x1f\x19\xf5\x0a\xa5\xee\x10\xa5\xfe\xcb\xa5\x30\xc9\xbc\xd1\x95\x11\x97\x24\xef\x48\x6a\x2b\x9d\xb0\x4c\x5a\xfc\x2b\x2b\x8e\xaf\x2d\x22\x89\x76\x7f\xc5\x92\xf5\x3d\xa2\xc7\x80\xc5\x5a\x27\x4a\x72\x2b\x0d\x33\x09\x20\xe3\x12\xa2\xa6\xab\x0a\xe0\xff\x08\x4a\x9b\xfe\x21\xe0\xfd\x62\x12\x49\x22\x8f\xcb\xbc\x96\x19\x10\xe9\xf9\x2f\xcc\x7f\xff\xf9\xe2\xbf\x01\x00\x00\xff\xff\xba\x6a\x66\x03\x1c\xa6\x03\x00") func adminSwaggerJsonBytes() ([]byte, error) { return bindataRead( @@ -93,7 +93,7 @@ func adminSwaggerJson() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "admin.swagger.json", size: 237966, mode: os.FileMode(420), modTime: time.Unix(1562572800, 0)} + info := bindataFileInfo{name: "admin.swagger.json", size: 239132, mode: os.FileMode(420), modTime: time.Unix(1562572800, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/gen/pb-java/flyteidl/admin/MatchableResourceOuterClass.java b/gen/pb-java/flyteidl/admin/MatchableResourceOuterClass.java index e846325175..9a69b92b1b 100644 --- a/gen/pb-java/flyteidl/admin/MatchableResourceOuterClass.java +++ b/gen/pb-java/flyteidl/admin/MatchableResourceOuterClass.java @@ -72,6 +72,14 @@ public enum MatchableResource * PLUGIN_OVERRIDE = 5; */ PLUGIN_OVERRIDE(5), + /** + *
+     * Adds defaults for customizable workflow-execution specifications and overrides.
+     * 
+ * + * WORKFLOW_EXECUTION_CONFIG = 6; + */ + WORKFLOW_EXECUTION_CONFIG(6), UNRECOGNIZED(-1), ; @@ -123,6 +131,14 @@ public enum MatchableResource * PLUGIN_OVERRIDE = 5; */ public static final int PLUGIN_OVERRIDE_VALUE = 5; + /** + *
+     * Adds defaults for customizable workflow-execution specifications and overrides.
+     * 
+ * + * WORKFLOW_EXECUTION_CONFIG = 6; + */ + public static final int WORKFLOW_EXECUTION_CONFIG_VALUE = 6; public final int getNumber() { @@ -149,6 +165,7 @@ public static MatchableResource forNumber(int value) { case 3: return EXECUTION_CLUSTER_LABEL; case 4: return QUALITY_OF_SERVICE_SPECIFICATION; case 5: return PLUGIN_OVERRIDE; + case 6: return WORKFLOW_EXECUTION_CONFIG; default: return null; } } @@ -5910,107 +5927,36 @@ public flyteidl.admin.MatchableResourceOuterClass.PluginOverrides getDefaultInst } - public interface MatchingAttributesOrBuilder extends - // @@protoc_insertion_point(interface_extends:flyteidl.admin.MatchingAttributes) + public interface WorkflowExecutionConfigOrBuilder extends + // @@protoc_insertion_point(interface_extends:flyteidl.admin.WorkflowExecutionConfig) com.google.protobuf.MessageOrBuilder { /** - * .flyteidl.admin.TaskResourceAttributes task_resource_attributes = 1; - */ - boolean hasTaskResourceAttributes(); - /** - * .flyteidl.admin.TaskResourceAttributes task_resource_attributes = 1; - */ - flyteidl.admin.MatchableResourceOuterClass.TaskResourceAttributes getTaskResourceAttributes(); - /** - * .flyteidl.admin.TaskResourceAttributes task_resource_attributes = 1; - */ - flyteidl.admin.MatchableResourceOuterClass.TaskResourceAttributesOrBuilder getTaskResourceAttributesOrBuilder(); - - /** - * .flyteidl.admin.ClusterResourceAttributes cluster_resource_attributes = 2; - */ - boolean hasClusterResourceAttributes(); - /** - * .flyteidl.admin.ClusterResourceAttributes cluster_resource_attributes = 2; - */ - flyteidl.admin.MatchableResourceOuterClass.ClusterResourceAttributes getClusterResourceAttributes(); - /** - * .flyteidl.admin.ClusterResourceAttributes cluster_resource_attributes = 2; - */ - flyteidl.admin.MatchableResourceOuterClass.ClusterResourceAttributesOrBuilder getClusterResourceAttributesOrBuilder(); - - /** - * .flyteidl.admin.ExecutionQueueAttributes execution_queue_attributes = 3; - */ - boolean hasExecutionQueueAttributes(); - /** - * .flyteidl.admin.ExecutionQueueAttributes execution_queue_attributes = 3; - */ - flyteidl.admin.MatchableResourceOuterClass.ExecutionQueueAttributes getExecutionQueueAttributes(); - /** - * .flyteidl.admin.ExecutionQueueAttributes execution_queue_attributes = 3; - */ - flyteidl.admin.MatchableResourceOuterClass.ExecutionQueueAttributesOrBuilder getExecutionQueueAttributesOrBuilder(); - - /** - * .flyteidl.admin.ExecutionClusterLabel execution_cluster_label = 4; - */ - boolean hasExecutionClusterLabel(); - /** - * .flyteidl.admin.ExecutionClusterLabel execution_cluster_label = 4; - */ - flyteidl.admin.MatchableResourceOuterClass.ExecutionClusterLabel getExecutionClusterLabel(); - /** - * .flyteidl.admin.ExecutionClusterLabel execution_cluster_label = 4; - */ - flyteidl.admin.MatchableResourceOuterClass.ExecutionClusterLabelOrBuilder getExecutionClusterLabelOrBuilder(); - - /** - * .flyteidl.core.QualityOfService quality_of_service = 5; - */ - boolean hasQualityOfService(); - /** - * .flyteidl.core.QualityOfService quality_of_service = 5; - */ - flyteidl.core.Execution.QualityOfService getQualityOfService(); - /** - * .flyteidl.core.QualityOfService quality_of_service = 5; - */ - flyteidl.core.Execution.QualityOfServiceOrBuilder getQualityOfServiceOrBuilder(); - - /** - * .flyteidl.admin.PluginOverrides plugin_overrides = 6; - */ - boolean hasPluginOverrides(); - /** - * .flyteidl.admin.PluginOverrides plugin_overrides = 6; - */ - flyteidl.admin.MatchableResourceOuterClass.PluginOverrides getPluginOverrides(); - /** - * .flyteidl.admin.PluginOverrides plugin_overrides = 6; + *
+     * Can be used to control the number of parallel nodes to run within the workflow. This is useful to achieve fairness.
+     * 
+ * + * int32 max_parallelism = 1; */ - flyteidl.admin.MatchableResourceOuterClass.PluginOverridesOrBuilder getPluginOverridesOrBuilder(); - - public flyteidl.admin.MatchableResourceOuterClass.MatchingAttributes.TargetCase getTargetCase(); + int getMaxParallelism(); } /** *
-   * Generic container for encapsulating all types of the above attributes messages.
+   * Adds defaults for customizable workflow-execution specifications and overrides.
    * 
* - * Protobuf type {@code flyteidl.admin.MatchingAttributes} + * Protobuf type {@code flyteidl.admin.WorkflowExecutionConfig} */ - public static final class MatchingAttributes extends + public static final class WorkflowExecutionConfig extends com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:flyteidl.admin.MatchingAttributes) - MatchingAttributesOrBuilder { + // @@protoc_insertion_point(message_implements:flyteidl.admin.WorkflowExecutionConfig) + WorkflowExecutionConfigOrBuilder { private static final long serialVersionUID = 0L; - // Use MatchingAttributes.newBuilder() to construct. - private MatchingAttributes(com.google.protobuf.GeneratedMessageV3.Builder builder) { + // Use WorkflowExecutionConfig.newBuilder() to construct. + private WorkflowExecutionConfig(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } - private MatchingAttributes() { + private WorkflowExecutionConfig() { } @java.lang.Override @@ -6018,7 +5964,7 @@ private MatchingAttributes() { getUnknownFields() { return this.unknownFields; } - private MatchingAttributes( + private WorkflowExecutionConfig( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { @@ -6037,88 +5983,9 @@ private MatchingAttributes( case 0: done = true; break; - case 10: { - flyteidl.admin.MatchableResourceOuterClass.TaskResourceAttributes.Builder subBuilder = null; - if (targetCase_ == 1) { - subBuilder = ((flyteidl.admin.MatchableResourceOuterClass.TaskResourceAttributes) target_).toBuilder(); - } - target_ = - input.readMessage(flyteidl.admin.MatchableResourceOuterClass.TaskResourceAttributes.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom((flyteidl.admin.MatchableResourceOuterClass.TaskResourceAttributes) target_); - target_ = subBuilder.buildPartial(); - } - targetCase_ = 1; - break; - } - case 18: { - flyteidl.admin.MatchableResourceOuterClass.ClusterResourceAttributes.Builder subBuilder = null; - if (targetCase_ == 2) { - subBuilder = ((flyteidl.admin.MatchableResourceOuterClass.ClusterResourceAttributes) target_).toBuilder(); - } - target_ = - input.readMessage(flyteidl.admin.MatchableResourceOuterClass.ClusterResourceAttributes.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom((flyteidl.admin.MatchableResourceOuterClass.ClusterResourceAttributes) target_); - target_ = subBuilder.buildPartial(); - } - targetCase_ = 2; - break; - } - case 26: { - flyteidl.admin.MatchableResourceOuterClass.ExecutionQueueAttributes.Builder subBuilder = null; - if (targetCase_ == 3) { - subBuilder = ((flyteidl.admin.MatchableResourceOuterClass.ExecutionQueueAttributes) target_).toBuilder(); - } - target_ = - input.readMessage(flyteidl.admin.MatchableResourceOuterClass.ExecutionQueueAttributes.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom((flyteidl.admin.MatchableResourceOuterClass.ExecutionQueueAttributes) target_); - target_ = subBuilder.buildPartial(); - } - targetCase_ = 3; - break; - } - case 34: { - flyteidl.admin.MatchableResourceOuterClass.ExecutionClusterLabel.Builder subBuilder = null; - if (targetCase_ == 4) { - subBuilder = ((flyteidl.admin.MatchableResourceOuterClass.ExecutionClusterLabel) target_).toBuilder(); - } - target_ = - input.readMessage(flyteidl.admin.MatchableResourceOuterClass.ExecutionClusterLabel.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom((flyteidl.admin.MatchableResourceOuterClass.ExecutionClusterLabel) target_); - target_ = subBuilder.buildPartial(); - } - targetCase_ = 4; - break; - } - case 42: { - flyteidl.core.Execution.QualityOfService.Builder subBuilder = null; - if (targetCase_ == 5) { - subBuilder = ((flyteidl.core.Execution.QualityOfService) target_).toBuilder(); - } - target_ = - input.readMessage(flyteidl.core.Execution.QualityOfService.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom((flyteidl.core.Execution.QualityOfService) target_); - target_ = subBuilder.buildPartial(); - } - targetCase_ = 5; - break; - } - case 50: { - flyteidl.admin.MatchableResourceOuterClass.PluginOverrides.Builder subBuilder = null; - if (targetCase_ == 6) { - subBuilder = ((flyteidl.admin.MatchableResourceOuterClass.PluginOverrides) target_).toBuilder(); - } - target_ = - input.readMessage(flyteidl.admin.MatchableResourceOuterClass.PluginOverrides.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom((flyteidl.admin.MatchableResourceOuterClass.PluginOverrides) target_); - target_ = subBuilder.buildPartial(); - } - targetCase_ = 6; + case 8: { + + maxParallelism_ = input.readInt32(); break; } default: { @@ -6142,71 +6009,752 @@ private MatchingAttributes( } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return flyteidl.admin.MatchableResourceOuterClass.internal_static_flyteidl_admin_MatchingAttributes_descriptor; + return flyteidl.admin.MatchableResourceOuterClass.internal_static_flyteidl_admin_WorkflowExecutionConfig_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return flyteidl.admin.MatchableResourceOuterClass.internal_static_flyteidl_admin_MatchingAttributes_fieldAccessorTable + return flyteidl.admin.MatchableResourceOuterClass.internal_static_flyteidl_admin_WorkflowExecutionConfig_fieldAccessorTable .ensureFieldAccessorsInitialized( - flyteidl.admin.MatchableResourceOuterClass.MatchingAttributes.class, flyteidl.admin.MatchableResourceOuterClass.MatchingAttributes.Builder.class); + flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig.class, flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig.Builder.class); } - private int targetCase_ = 0; - private java.lang.Object target_; - public enum TargetCase - implements com.google.protobuf.Internal.EnumLite { - TASK_RESOURCE_ATTRIBUTES(1), - CLUSTER_RESOURCE_ATTRIBUTES(2), - EXECUTION_QUEUE_ATTRIBUTES(3), - EXECUTION_CLUSTER_LABEL(4), - QUALITY_OF_SERVICE(5), - PLUGIN_OVERRIDES(6), - TARGET_NOT_SET(0); - private final int value; - private TargetCase(int value) { - this.value = value; - } - /** - * @deprecated Use {@link #forNumber(int)} instead. - */ - @java.lang.Deprecated - public static TargetCase valueOf(int value) { - return forNumber(value); - } + public static final int MAX_PARALLELISM_FIELD_NUMBER = 1; + private int maxParallelism_; + /** + *
+     * Can be used to control the number of parallel nodes to run within the workflow. This is useful to achieve fairness.
+     * 
+ * + * int32 max_parallelism = 1; + */ + public int getMaxParallelism() { + return maxParallelism_; + } - public static TargetCase forNumber(int value) { - switch (value) { - case 1: return TASK_RESOURCE_ATTRIBUTES; - case 2: return CLUSTER_RESOURCE_ATTRIBUTES; - case 3: return EXECUTION_QUEUE_ATTRIBUTES; - case 4: return EXECUTION_CLUSTER_LABEL; - case 5: return QUALITY_OF_SERVICE; - case 6: return PLUGIN_OVERRIDES; - case 0: return TARGET_NOT_SET; - default: return null; - } - } - public int getNumber() { - return this.value; - } - }; + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; - public TargetCase - getTargetCase() { - return TargetCase.forNumber( - targetCase_); + memoizedIsInitialized = 1; + return true; } - public static final int TASK_RESOURCE_ATTRIBUTES_FIELD_NUMBER = 1; - /** - * .flyteidl.admin.TaskResourceAttributes task_resource_attributes = 1; - */ - public boolean hasTaskResourceAttributes() { - return targetCase_ == 1; + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + if (maxParallelism_ != 0) { + output.writeInt32(1, maxParallelism_); + } + unknownFields.writeTo(output); } - /** + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (maxParallelism_ != 0) { + size += com.google.protobuf.CodedOutputStream + .computeInt32Size(1, maxParallelism_); + } + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig)) { + return super.equals(obj); + } + flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig other = (flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig) obj; + + if (getMaxParallelism() + != other.getMaxParallelism()) return false; + if (!unknownFields.equals(other.unknownFields)) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + MAX_PARALLELISM_FIELD_NUMBER; + hash = (53 * hash) + getMaxParallelism(); + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + public static flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + public static flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
+     * Adds defaults for customizable workflow-execution specifications and overrides.
+     * 
+ * + * Protobuf type {@code flyteidl.admin.WorkflowExecutionConfig} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:flyteidl.admin.WorkflowExecutionConfig) + flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfigOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return flyteidl.admin.MatchableResourceOuterClass.internal_static_flyteidl_admin_WorkflowExecutionConfig_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return flyteidl.admin.MatchableResourceOuterClass.internal_static_flyteidl_admin_WorkflowExecutionConfig_fieldAccessorTable + .ensureFieldAccessorsInitialized( + flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig.class, flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig.Builder.class); + } + + // Construct using flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3 + .alwaysUseFieldBuilders) { + } + } + @java.lang.Override + public Builder clear() { + super.clear(); + maxParallelism_ = 0; + + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return flyteidl.admin.MatchableResourceOuterClass.internal_static_flyteidl_admin_WorkflowExecutionConfig_descriptor; + } + + @java.lang.Override + public flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig getDefaultInstanceForType() { + return flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig.getDefaultInstance(); + } + + @java.lang.Override + public flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig build() { + flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig buildPartial() { + flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig result = new flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig(this); + result.maxParallelism_ = maxParallelism_; + onBuilt(); + return result; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig) { + return mergeFrom((flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig other) { + if (other == flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig.getDefaultInstance()) return this; + if (other.getMaxParallelism() != 0) { + setMaxParallelism(other.getMaxParallelism()); + } + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig) e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + + private int maxParallelism_ ; + /** + *
+       * Can be used to control the number of parallel nodes to run within the workflow. This is useful to achieve fairness.
+       * 
+ * + * int32 max_parallelism = 1; + */ + public int getMaxParallelism() { + return maxParallelism_; + } + /** + *
+       * Can be used to control the number of parallel nodes to run within the workflow. This is useful to achieve fairness.
+       * 
+ * + * int32 max_parallelism = 1; + */ + public Builder setMaxParallelism(int value) { + + maxParallelism_ = value; + onChanged(); + return this; + } + /** + *
+       * Can be used to control the number of parallel nodes to run within the workflow. This is useful to achieve fairness.
+       * 
+ * + * int32 max_parallelism = 1; + */ + public Builder clearMaxParallelism() { + + maxParallelism_ = 0; + onChanged(); + return this; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:flyteidl.admin.WorkflowExecutionConfig) + } + + // @@protoc_insertion_point(class_scope:flyteidl.admin.WorkflowExecutionConfig) + private static final flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig(); + } + + public static flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public WorkflowExecutionConfig parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new WorkflowExecutionConfig(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + + } + + public interface MatchingAttributesOrBuilder extends + // @@protoc_insertion_point(interface_extends:flyteidl.admin.MatchingAttributes) + com.google.protobuf.MessageOrBuilder { + + /** + * .flyteidl.admin.TaskResourceAttributes task_resource_attributes = 1; + */ + boolean hasTaskResourceAttributes(); + /** + * .flyteidl.admin.TaskResourceAttributes task_resource_attributes = 1; + */ + flyteidl.admin.MatchableResourceOuterClass.TaskResourceAttributes getTaskResourceAttributes(); + /** + * .flyteidl.admin.TaskResourceAttributes task_resource_attributes = 1; + */ + flyteidl.admin.MatchableResourceOuterClass.TaskResourceAttributesOrBuilder getTaskResourceAttributesOrBuilder(); + + /** + * .flyteidl.admin.ClusterResourceAttributes cluster_resource_attributes = 2; + */ + boolean hasClusterResourceAttributes(); + /** + * .flyteidl.admin.ClusterResourceAttributes cluster_resource_attributes = 2; + */ + flyteidl.admin.MatchableResourceOuterClass.ClusterResourceAttributes getClusterResourceAttributes(); + /** + * .flyteidl.admin.ClusterResourceAttributes cluster_resource_attributes = 2; + */ + flyteidl.admin.MatchableResourceOuterClass.ClusterResourceAttributesOrBuilder getClusterResourceAttributesOrBuilder(); + + /** + * .flyteidl.admin.ExecutionQueueAttributes execution_queue_attributes = 3; + */ + boolean hasExecutionQueueAttributes(); + /** + * .flyteidl.admin.ExecutionQueueAttributes execution_queue_attributes = 3; + */ + flyteidl.admin.MatchableResourceOuterClass.ExecutionQueueAttributes getExecutionQueueAttributes(); + /** + * .flyteidl.admin.ExecutionQueueAttributes execution_queue_attributes = 3; + */ + flyteidl.admin.MatchableResourceOuterClass.ExecutionQueueAttributesOrBuilder getExecutionQueueAttributesOrBuilder(); + + /** + * .flyteidl.admin.ExecutionClusterLabel execution_cluster_label = 4; + */ + boolean hasExecutionClusterLabel(); + /** + * .flyteidl.admin.ExecutionClusterLabel execution_cluster_label = 4; + */ + flyteidl.admin.MatchableResourceOuterClass.ExecutionClusterLabel getExecutionClusterLabel(); + /** + * .flyteidl.admin.ExecutionClusterLabel execution_cluster_label = 4; + */ + flyteidl.admin.MatchableResourceOuterClass.ExecutionClusterLabelOrBuilder getExecutionClusterLabelOrBuilder(); + + /** + * .flyteidl.core.QualityOfService quality_of_service = 5; + */ + boolean hasQualityOfService(); + /** + * .flyteidl.core.QualityOfService quality_of_service = 5; + */ + flyteidl.core.Execution.QualityOfService getQualityOfService(); + /** + * .flyteidl.core.QualityOfService quality_of_service = 5; + */ + flyteidl.core.Execution.QualityOfServiceOrBuilder getQualityOfServiceOrBuilder(); + + /** + * .flyteidl.admin.PluginOverrides plugin_overrides = 6; + */ + boolean hasPluginOverrides(); + /** + * .flyteidl.admin.PluginOverrides plugin_overrides = 6; + */ + flyteidl.admin.MatchableResourceOuterClass.PluginOverrides getPluginOverrides(); + /** + * .flyteidl.admin.PluginOverrides plugin_overrides = 6; + */ + flyteidl.admin.MatchableResourceOuterClass.PluginOverridesOrBuilder getPluginOverridesOrBuilder(); + + /** + * .flyteidl.admin.WorkflowExecutionConfig workflow_execution_config = 7; + */ + boolean hasWorkflowExecutionConfig(); + /** + * .flyteidl.admin.WorkflowExecutionConfig workflow_execution_config = 7; + */ + flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig getWorkflowExecutionConfig(); + /** + * .flyteidl.admin.WorkflowExecutionConfig workflow_execution_config = 7; + */ + flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfigOrBuilder getWorkflowExecutionConfigOrBuilder(); + + public flyteidl.admin.MatchableResourceOuterClass.MatchingAttributes.TargetCase getTargetCase(); + } + /** + *
+   * Generic container for encapsulating all types of the above attributes messages.
+   * 
+ * + * Protobuf type {@code flyteidl.admin.MatchingAttributes} + */ + public static final class MatchingAttributes extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:flyteidl.admin.MatchingAttributes) + MatchingAttributesOrBuilder { + private static final long serialVersionUID = 0L; + // Use MatchingAttributes.newBuilder() to construct. + private MatchingAttributes(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private MatchingAttributes() { + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private MatchingAttributes( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + int mutable_bitField0_ = 0; + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: { + flyteidl.admin.MatchableResourceOuterClass.TaskResourceAttributes.Builder subBuilder = null; + if (targetCase_ == 1) { + subBuilder = ((flyteidl.admin.MatchableResourceOuterClass.TaskResourceAttributes) target_).toBuilder(); + } + target_ = + input.readMessage(flyteidl.admin.MatchableResourceOuterClass.TaskResourceAttributes.parser(), extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom((flyteidl.admin.MatchableResourceOuterClass.TaskResourceAttributes) target_); + target_ = subBuilder.buildPartial(); + } + targetCase_ = 1; + break; + } + case 18: { + flyteidl.admin.MatchableResourceOuterClass.ClusterResourceAttributes.Builder subBuilder = null; + if (targetCase_ == 2) { + subBuilder = ((flyteidl.admin.MatchableResourceOuterClass.ClusterResourceAttributes) target_).toBuilder(); + } + target_ = + input.readMessage(flyteidl.admin.MatchableResourceOuterClass.ClusterResourceAttributes.parser(), extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom((flyteidl.admin.MatchableResourceOuterClass.ClusterResourceAttributes) target_); + target_ = subBuilder.buildPartial(); + } + targetCase_ = 2; + break; + } + case 26: { + flyteidl.admin.MatchableResourceOuterClass.ExecutionQueueAttributes.Builder subBuilder = null; + if (targetCase_ == 3) { + subBuilder = ((flyteidl.admin.MatchableResourceOuterClass.ExecutionQueueAttributes) target_).toBuilder(); + } + target_ = + input.readMessage(flyteidl.admin.MatchableResourceOuterClass.ExecutionQueueAttributes.parser(), extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom((flyteidl.admin.MatchableResourceOuterClass.ExecutionQueueAttributes) target_); + target_ = subBuilder.buildPartial(); + } + targetCase_ = 3; + break; + } + case 34: { + flyteidl.admin.MatchableResourceOuterClass.ExecutionClusterLabel.Builder subBuilder = null; + if (targetCase_ == 4) { + subBuilder = ((flyteidl.admin.MatchableResourceOuterClass.ExecutionClusterLabel) target_).toBuilder(); + } + target_ = + input.readMessage(flyteidl.admin.MatchableResourceOuterClass.ExecutionClusterLabel.parser(), extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom((flyteidl.admin.MatchableResourceOuterClass.ExecutionClusterLabel) target_); + target_ = subBuilder.buildPartial(); + } + targetCase_ = 4; + break; + } + case 42: { + flyteidl.core.Execution.QualityOfService.Builder subBuilder = null; + if (targetCase_ == 5) { + subBuilder = ((flyteidl.core.Execution.QualityOfService) target_).toBuilder(); + } + target_ = + input.readMessage(flyteidl.core.Execution.QualityOfService.parser(), extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom((flyteidl.core.Execution.QualityOfService) target_); + target_ = subBuilder.buildPartial(); + } + targetCase_ = 5; + break; + } + case 50: { + flyteidl.admin.MatchableResourceOuterClass.PluginOverrides.Builder subBuilder = null; + if (targetCase_ == 6) { + subBuilder = ((flyteidl.admin.MatchableResourceOuterClass.PluginOverrides) target_).toBuilder(); + } + target_ = + input.readMessage(flyteidl.admin.MatchableResourceOuterClass.PluginOverrides.parser(), extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom((flyteidl.admin.MatchableResourceOuterClass.PluginOverrides) target_); + target_ = subBuilder.buildPartial(); + } + targetCase_ = 6; + break; + } + case 58: { + flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig.Builder subBuilder = null; + if (targetCase_ == 7) { + subBuilder = ((flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig) target_).toBuilder(); + } + target_ = + input.readMessage(flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig.parser(), extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom((flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig) target_); + target_ = subBuilder.buildPartial(); + } + targetCase_ = 7; + break; + } + default: { + if (!parseUnknownField( + input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return flyteidl.admin.MatchableResourceOuterClass.internal_static_flyteidl_admin_MatchingAttributes_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return flyteidl.admin.MatchableResourceOuterClass.internal_static_flyteidl_admin_MatchingAttributes_fieldAccessorTable + .ensureFieldAccessorsInitialized( + flyteidl.admin.MatchableResourceOuterClass.MatchingAttributes.class, flyteidl.admin.MatchableResourceOuterClass.MatchingAttributes.Builder.class); + } + + private int targetCase_ = 0; + private java.lang.Object target_; + public enum TargetCase + implements com.google.protobuf.Internal.EnumLite { + TASK_RESOURCE_ATTRIBUTES(1), + CLUSTER_RESOURCE_ATTRIBUTES(2), + EXECUTION_QUEUE_ATTRIBUTES(3), + EXECUTION_CLUSTER_LABEL(4), + QUALITY_OF_SERVICE(5), + PLUGIN_OVERRIDES(6), + WORKFLOW_EXECUTION_CONFIG(7), + TARGET_NOT_SET(0); + private final int value; + private TargetCase(int value) { + this.value = value; + } + /** + * @deprecated Use {@link #forNumber(int)} instead. + */ + @java.lang.Deprecated + public static TargetCase valueOf(int value) { + return forNumber(value); + } + + public static TargetCase forNumber(int value) { + switch (value) { + case 1: return TASK_RESOURCE_ATTRIBUTES; + case 2: return CLUSTER_RESOURCE_ATTRIBUTES; + case 3: return EXECUTION_QUEUE_ATTRIBUTES; + case 4: return EXECUTION_CLUSTER_LABEL; + case 5: return QUALITY_OF_SERVICE; + case 6: return PLUGIN_OVERRIDES; + case 7: return WORKFLOW_EXECUTION_CONFIG; + case 0: return TARGET_NOT_SET; + default: return null; + } + } + public int getNumber() { + return this.value; + } + }; + + public TargetCase + getTargetCase() { + return TargetCase.forNumber( + targetCase_); + } + + public static final int TASK_RESOURCE_ATTRIBUTES_FIELD_NUMBER = 1; + /** + * .flyteidl.admin.TaskResourceAttributes task_resource_attributes = 1; + */ + public boolean hasTaskResourceAttributes() { + return targetCase_ == 1; + } + /** * .flyteidl.admin.TaskResourceAttributes task_resource_attributes = 1; */ public flyteidl.admin.MatchableResourceOuterClass.TaskResourceAttributes getTaskResourceAttributes() { @@ -6355,6 +6903,32 @@ public flyteidl.admin.MatchableResourceOuterClass.PluginOverridesOrBuilder getPl return flyteidl.admin.MatchableResourceOuterClass.PluginOverrides.getDefaultInstance(); } + public static final int WORKFLOW_EXECUTION_CONFIG_FIELD_NUMBER = 7; + /** + * .flyteidl.admin.WorkflowExecutionConfig workflow_execution_config = 7; + */ + public boolean hasWorkflowExecutionConfig() { + return targetCase_ == 7; + } + /** + * .flyteidl.admin.WorkflowExecutionConfig workflow_execution_config = 7; + */ + public flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig getWorkflowExecutionConfig() { + if (targetCase_ == 7) { + return (flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig) target_; + } + return flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig.getDefaultInstance(); + } + /** + * .flyteidl.admin.WorkflowExecutionConfig workflow_execution_config = 7; + */ + public flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfigOrBuilder getWorkflowExecutionConfigOrBuilder() { + if (targetCase_ == 7) { + return (flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig) target_; + } + return flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig.getDefaultInstance(); + } + private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { @@ -6387,6 +6961,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) if (targetCase_ == 6) { output.writeMessage(6, (flyteidl.admin.MatchableResourceOuterClass.PluginOverrides) target_); } + if (targetCase_ == 7) { + output.writeMessage(7, (flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig) target_); + } unknownFields.writeTo(output); } @@ -6420,6 +6997,10 @@ public int getSerializedSize() { size += com.google.protobuf.CodedOutputStream .computeMessageSize(6, (flyteidl.admin.MatchableResourceOuterClass.PluginOverrides) target_); } + if (targetCase_ == 7) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(7, (flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig) target_); + } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; @@ -6461,6 +7042,10 @@ public boolean equals(final java.lang.Object obj) { if (!getPluginOverrides() .equals(other.getPluginOverrides())) return false; break; + case 7: + if (!getWorkflowExecutionConfig() + .equals(other.getWorkflowExecutionConfig())) return false; + break; case 0: default: } @@ -6500,6 +7085,10 @@ public int hashCode() { hash = (37 * hash) + PLUGIN_OVERRIDES_FIELD_NUMBER; hash = (53 * hash) + getPluginOverrides().hashCode(); break; + case 7: + hash = (37 * hash) + WORKFLOW_EXECUTION_CONFIG_FIELD_NUMBER; + hash = (53 * hash) + getWorkflowExecutionConfig().hashCode(); + break; case 0: default: } @@ -6710,6 +7299,13 @@ public flyteidl.admin.MatchableResourceOuterClass.MatchingAttributes buildPartia result.target_ = pluginOverridesBuilder_.build(); } } + if (targetCase_ == 7) { + if (workflowExecutionConfigBuilder_ == null) { + result.target_ = target_; + } else { + result.target_ = workflowExecutionConfigBuilder_.build(); + } + } result.targetCase_ = targetCase_; onBuilt(); return result; @@ -6784,6 +7380,10 @@ public Builder mergeFrom(flyteidl.admin.MatchableResourceOuterClass.MatchingAttr mergePluginOverrides(other.getPluginOverrides()); break; } + case WORKFLOW_EXECUTION_CONFIG: { + mergeWorkflowExecutionConfig(other.getWorkflowExecutionConfig()); + break; + } case TARGET_NOT_SET: { break; } @@ -7647,6 +8247,142 @@ public flyteidl.admin.MatchableResourceOuterClass.PluginOverridesOrBuilder getPl onChanged();; return pluginOverridesBuilder_; } + + private com.google.protobuf.SingleFieldBuilderV3< + flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig, flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig.Builder, flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfigOrBuilder> workflowExecutionConfigBuilder_; + /** + * .flyteidl.admin.WorkflowExecutionConfig workflow_execution_config = 7; + */ + public boolean hasWorkflowExecutionConfig() { + return targetCase_ == 7; + } + /** + * .flyteidl.admin.WorkflowExecutionConfig workflow_execution_config = 7; + */ + public flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig getWorkflowExecutionConfig() { + if (workflowExecutionConfigBuilder_ == null) { + if (targetCase_ == 7) { + return (flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig) target_; + } + return flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig.getDefaultInstance(); + } else { + if (targetCase_ == 7) { + return workflowExecutionConfigBuilder_.getMessage(); + } + return flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig.getDefaultInstance(); + } + } + /** + * .flyteidl.admin.WorkflowExecutionConfig workflow_execution_config = 7; + */ + public Builder setWorkflowExecutionConfig(flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig value) { + if (workflowExecutionConfigBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + target_ = value; + onChanged(); + } else { + workflowExecutionConfigBuilder_.setMessage(value); + } + targetCase_ = 7; + return this; + } + /** + * .flyteidl.admin.WorkflowExecutionConfig workflow_execution_config = 7; + */ + public Builder setWorkflowExecutionConfig( + flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig.Builder builderForValue) { + if (workflowExecutionConfigBuilder_ == null) { + target_ = builderForValue.build(); + onChanged(); + } else { + workflowExecutionConfigBuilder_.setMessage(builderForValue.build()); + } + targetCase_ = 7; + return this; + } + /** + * .flyteidl.admin.WorkflowExecutionConfig workflow_execution_config = 7; + */ + public Builder mergeWorkflowExecutionConfig(flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig value) { + if (workflowExecutionConfigBuilder_ == null) { + if (targetCase_ == 7 && + target_ != flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig.getDefaultInstance()) { + target_ = flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig.newBuilder((flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig) target_) + .mergeFrom(value).buildPartial(); + } else { + target_ = value; + } + onChanged(); + } else { + if (targetCase_ == 7) { + workflowExecutionConfigBuilder_.mergeFrom(value); + } + workflowExecutionConfigBuilder_.setMessage(value); + } + targetCase_ = 7; + return this; + } + /** + * .flyteidl.admin.WorkflowExecutionConfig workflow_execution_config = 7; + */ + public Builder clearWorkflowExecutionConfig() { + if (workflowExecutionConfigBuilder_ == null) { + if (targetCase_ == 7) { + targetCase_ = 0; + target_ = null; + onChanged(); + } + } else { + if (targetCase_ == 7) { + targetCase_ = 0; + target_ = null; + } + workflowExecutionConfigBuilder_.clear(); + } + return this; + } + /** + * .flyteidl.admin.WorkflowExecutionConfig workflow_execution_config = 7; + */ + public flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig.Builder getWorkflowExecutionConfigBuilder() { + return getWorkflowExecutionConfigFieldBuilder().getBuilder(); + } + /** + * .flyteidl.admin.WorkflowExecutionConfig workflow_execution_config = 7; + */ + public flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfigOrBuilder getWorkflowExecutionConfigOrBuilder() { + if ((targetCase_ == 7) && (workflowExecutionConfigBuilder_ != null)) { + return workflowExecutionConfigBuilder_.getMessageOrBuilder(); + } else { + if (targetCase_ == 7) { + return (flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig) target_; + } + return flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig.getDefaultInstance(); + } + } + /** + * .flyteidl.admin.WorkflowExecutionConfig workflow_execution_config = 7; + */ + private com.google.protobuf.SingleFieldBuilderV3< + flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig, flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig.Builder, flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfigOrBuilder> + getWorkflowExecutionConfigFieldBuilder() { + if (workflowExecutionConfigBuilder_ == null) { + if (!(targetCase_ == 7)) { + target_ = flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig.getDefaultInstance(); + } + workflowExecutionConfigBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig, flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig.Builder, flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfigOrBuilder>( + (flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig) target_, + getParentForChildren(), + isClean()); + target_ = null; + } + targetCase_ = 7; + onChanged();; + return workflowExecutionConfigBuilder_; + } @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { @@ -10207,6 +10943,11 @@ public flyteidl.admin.MatchableResourceOuterClass.ListMatchableAttributesRespons private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_flyteidl_admin_PluginOverrides_fieldAccessorTable; + private static final com.google.protobuf.Descriptors.Descriptor + internal_static_flyteidl_admin_WorkflowExecutionConfig_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_flyteidl_admin_WorkflowExecutionConfig_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor internal_static_flyteidl_admin_MatchingAttributes_descriptor; private static final @@ -10256,33 +10997,37 @@ public flyteidl.admin.MatchableResourceOuterClass.ListMatchableAttributesRespons "r\"2\n\025MissingPluginBehavior\022\010\n\004FAIL\020\000\022\017\n\013" + "USE_DEFAULT\020\001\"D\n\017PluginOverrides\0221\n\tover" + "rides\030\001 \003(\0132\036.flyteidl.admin.PluginOverr" + - "ide\"\322\003\n\022MatchingAttributes\022J\n\030task_resou" + - "rce_attributes\030\001 \001(\0132&.flyteidl.admin.Ta" + - "skResourceAttributesH\000\022P\n\033cluster_resour" + - "ce_attributes\030\002 \001(\0132).flyteidl.admin.Clu" + - "sterResourceAttributesH\000\022N\n\032execution_qu" + - "eue_attributes\030\003 \001(\0132(.flyteidl.admin.Ex" + - "ecutionQueueAttributesH\000\022H\n\027execution_cl" + - "uster_label\030\004 \001(\0132%.flyteidl.admin.Execu" + - "tionClusterLabelH\000\022=\n\022quality_of_service" + - "\030\005 \001(\0132\037.flyteidl.core.QualityOfServiceH" + - "\000\022;\n\020plugin_overrides\030\006 \001(\0132\037.flyteidl.a" + - "dmin.PluginOverridesH\000B\010\n\006target\"\242\001\n Mat" + - "chableAttributesConfiguration\0226\n\nattribu" + - "tes\030\001 \001(\0132\".flyteidl.admin.MatchingAttri" + - "butes\022\016\n\006domain\030\002 \001(\t\022\017\n\007project\030\003 \001(\t\022\020" + - "\n\010workflow\030\004 \001(\t\022\023\n\013launch_plan\030\005 \001(\t\"Z\n" + - "\036ListMatchableAttributesRequest\0228\n\rresou" + - "rce_type\030\001 \001(\0162!.flyteidl.admin.Matchabl" + - "eResource\"k\n\037ListMatchableAttributesResp" + - "onse\022H\n\016configurations\030\001 \003(\01320.flyteidl." + - "admin.MatchableAttributesConfiguration*\251" + - "\001\n\021MatchableResource\022\021\n\rTASK_RESOURCE\020\000\022" + - "\024\n\020CLUSTER_RESOURCE\020\001\022\023\n\017EXECUTION_QUEUE" + - "\020\002\022\033\n\027EXECUTION_CLUSTER_LABEL\020\003\022$\n QUALI" + - "TY_OF_SERVICE_SPECIFICATION\020\004\022\023\n\017PLUGIN_" + - "OVERRIDE\020\005B7Z5github.com/flyteorg/flytei" + - "dl/gen/pb-go/flyteidl/adminb\006proto3" + "ide\"2\n\027WorkflowExecutionConfig\022\027\n\017max_pa" + + "rallelism\030\001 \001(\005\"\240\004\n\022MatchingAttributes\022J" + + "\n\030task_resource_attributes\030\001 \001(\0132&.flyte" + + "idl.admin.TaskResourceAttributesH\000\022P\n\033cl" + + "uster_resource_attributes\030\002 \001(\0132).flytei" + + "dl.admin.ClusterResourceAttributesH\000\022N\n\032" + + "execution_queue_attributes\030\003 \001(\0132(.flyte" + + "idl.admin.ExecutionQueueAttributesH\000\022H\n\027" + + "execution_cluster_label\030\004 \001(\0132%.flyteidl" + + ".admin.ExecutionClusterLabelH\000\022=\n\022qualit" + + "y_of_service\030\005 \001(\0132\037.flyteidl.core.Quali" + + "tyOfServiceH\000\022;\n\020plugin_overrides\030\006 \001(\0132" + + "\037.flyteidl.admin.PluginOverridesH\000\022L\n\031wo" + + "rkflow_execution_config\030\007 \001(\0132\'.flyteidl" + + ".admin.WorkflowExecutionConfigH\000B\010\n\006targ" + + "et\"\242\001\n MatchableAttributesConfiguration\022" + + "6\n\nattributes\030\001 \001(\0132\".flyteidl.admin.Mat" + + "chingAttributes\022\016\n\006domain\030\002 \001(\t\022\017\n\007proje" + + "ct\030\003 \001(\t\022\020\n\010workflow\030\004 \001(\t\022\023\n\013launch_pla" + + "n\030\005 \001(\t\"Z\n\036ListMatchableAttributesReques" + + "t\0228\n\rresource_type\030\001 \001(\0162!.flyteidl.admi" + + "n.MatchableResource\"k\n\037ListMatchableAttr" + + "ibutesResponse\022H\n\016configurations\030\001 \003(\01320" + + ".flyteidl.admin.MatchableAttributesConfi" + + "guration*\310\001\n\021MatchableResource\022\021\n\rTASK_R" + + "ESOURCE\020\000\022\024\n\020CLUSTER_RESOURCE\020\001\022\023\n\017EXECU" + + "TION_QUEUE\020\002\022\033\n\027EXECUTION_CLUSTER_LABEL\020" + + "\003\022$\n QUALITY_OF_SERVICE_SPECIFICATION\020\004\022" + + "\023\n\017PLUGIN_OVERRIDE\020\005\022\035\n\031WORKFLOW_EXECUTI" + + "ON_CONFIG\020\006B7Z5github.com/flyteorg/flyte" + + "idl/gen/pb-go/flyteidl/adminb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { @@ -10345,26 +11090,32 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_flyteidl_admin_PluginOverrides_descriptor, new java.lang.String[] { "Overrides", }); - internal_static_flyteidl_admin_MatchingAttributes_descriptor = + internal_static_flyteidl_admin_WorkflowExecutionConfig_descriptor = getDescriptor().getMessageTypes().get(7); + internal_static_flyteidl_admin_WorkflowExecutionConfig_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_flyteidl_admin_WorkflowExecutionConfig_descriptor, + new java.lang.String[] { "MaxParallelism", }); + internal_static_flyteidl_admin_MatchingAttributes_descriptor = + getDescriptor().getMessageTypes().get(8); internal_static_flyteidl_admin_MatchingAttributes_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_flyteidl_admin_MatchingAttributes_descriptor, - new java.lang.String[] { "TaskResourceAttributes", "ClusterResourceAttributes", "ExecutionQueueAttributes", "ExecutionClusterLabel", "QualityOfService", "PluginOverrides", "Target", }); + new java.lang.String[] { "TaskResourceAttributes", "ClusterResourceAttributes", "ExecutionQueueAttributes", "ExecutionClusterLabel", "QualityOfService", "PluginOverrides", "WorkflowExecutionConfig", "Target", }); internal_static_flyteidl_admin_MatchableAttributesConfiguration_descriptor = - getDescriptor().getMessageTypes().get(8); + getDescriptor().getMessageTypes().get(9); internal_static_flyteidl_admin_MatchableAttributesConfiguration_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_flyteidl_admin_MatchableAttributesConfiguration_descriptor, new java.lang.String[] { "Attributes", "Domain", "Project", "Workflow", "LaunchPlan", }); internal_static_flyteidl_admin_ListMatchableAttributesRequest_descriptor = - getDescriptor().getMessageTypes().get(9); + getDescriptor().getMessageTypes().get(10); internal_static_flyteidl_admin_ListMatchableAttributesRequest_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_flyteidl_admin_ListMatchableAttributesRequest_descriptor, new java.lang.String[] { "ResourceType", }); internal_static_flyteidl_admin_ListMatchableAttributesResponse_descriptor = - getDescriptor().getMessageTypes().get(10); + getDescriptor().getMessageTypes().get(11); internal_static_flyteidl_admin_ListMatchableAttributesResponse_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_flyteidl_admin_ListMatchableAttributesResponse_descriptor, diff --git a/gen/pb-js/flyteidl.d.ts b/gen/pb-js/flyteidl.d.ts index bb5c75ddc3..b6127624f9 100644 --- a/gen/pb-js/flyteidl.d.ts +++ b/gen/pb-js/flyteidl.d.ts @@ -9991,7 +9991,8 @@ export namespace flyteidl { EXECUTION_QUEUE = 2, EXECUTION_CLUSTER_LABEL = 3, QUALITY_OF_SERVICE_SPECIFICATION = 4, - PLUGIN_OVERRIDE = 5 + PLUGIN_OVERRIDE = 5, + WORKFLOW_EXECUTION_CONFIG = 6 } /** Properties of a TaskResourceSpec. */ @@ -10403,6 +10404,58 @@ export namespace flyteidl { public static verify(message: { [k: string]: any }): (string|null); } + /** Properties of a WorkflowExecutionConfig. */ + interface IWorkflowExecutionConfig { + + /** WorkflowExecutionConfig maxParallelism */ + maxParallelism?: (number|null); + } + + /** Represents a WorkflowExecutionConfig. */ + class WorkflowExecutionConfig implements IWorkflowExecutionConfig { + + /** + * Constructs a new WorkflowExecutionConfig. + * @param [properties] Properties to set + */ + constructor(properties?: flyteidl.admin.IWorkflowExecutionConfig); + + /** WorkflowExecutionConfig maxParallelism. */ + public maxParallelism: number; + + /** + * Creates a new WorkflowExecutionConfig instance using the specified properties. + * @param [properties] Properties to set + * @returns WorkflowExecutionConfig instance + */ + public static create(properties?: flyteidl.admin.IWorkflowExecutionConfig): flyteidl.admin.WorkflowExecutionConfig; + + /** + * Encodes the specified WorkflowExecutionConfig message. Does not implicitly {@link flyteidl.admin.WorkflowExecutionConfig.verify|verify} messages. + * @param message WorkflowExecutionConfig message or plain object to encode + * @param [writer] Writer to encode to + * @returns Writer + */ + public static encode(message: flyteidl.admin.IWorkflowExecutionConfig, writer?: $protobuf.Writer): $protobuf.Writer; + + /** + * Decodes a WorkflowExecutionConfig message from the specified reader or buffer. + * @param reader Reader or buffer to decode from + * @param [length] Message length if known beforehand + * @returns WorkflowExecutionConfig + * @throws {Error} If the payload is not a reader or valid buffer + * @throws {$protobuf.util.ProtocolError} If required fields are missing + */ + public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.WorkflowExecutionConfig; + + /** + * Verifies a WorkflowExecutionConfig message. + * @param message Plain object to verify + * @returns `null` if valid, otherwise the reason why it is not + */ + public static verify(message: { [k: string]: any }): (string|null); + } + /** Properties of a MatchingAttributes. */ interface IMatchingAttributes { @@ -10423,6 +10476,9 @@ export namespace flyteidl { /** MatchingAttributes pluginOverrides */ pluginOverrides?: (flyteidl.admin.IPluginOverrides|null); + + /** MatchingAttributes workflowExecutionConfig */ + workflowExecutionConfig?: (flyteidl.admin.IWorkflowExecutionConfig|null); } /** Represents a MatchingAttributes. */ @@ -10452,8 +10508,11 @@ export namespace flyteidl { /** MatchingAttributes pluginOverrides. */ public pluginOverrides?: (flyteidl.admin.IPluginOverrides|null); + /** MatchingAttributes workflowExecutionConfig. */ + public workflowExecutionConfig?: (flyteidl.admin.IWorkflowExecutionConfig|null); + /** MatchingAttributes target. */ - public target?: ("taskResourceAttributes"|"clusterResourceAttributes"|"executionQueueAttributes"|"executionClusterLabel"|"qualityOfService"|"pluginOverrides"); + public target?: ("taskResourceAttributes"|"clusterResourceAttributes"|"executionQueueAttributes"|"executionClusterLabel"|"qualityOfService"|"pluginOverrides"|"workflowExecutionConfig"); /** * Creates a new MatchingAttributes instance using the specified properties. diff --git a/gen/pb-js/flyteidl.js b/gen/pb-js/flyteidl.js index eb00592ece..d2460a9491 100644 --- a/gen/pb-js/flyteidl.js +++ b/gen/pb-js/flyteidl.js @@ -23917,6 +23917,7 @@ export const flyteidl = $root.flyteidl = (() => { * @property {number} EXECUTION_CLUSTER_LABEL=3 EXECUTION_CLUSTER_LABEL value * @property {number} QUALITY_OF_SERVICE_SPECIFICATION=4 QUALITY_OF_SERVICE_SPECIFICATION value * @property {number} PLUGIN_OVERRIDE=5 PLUGIN_OVERRIDE value + * @property {number} WORKFLOW_EXECUTION_CONFIG=6 WORKFLOW_EXECUTION_CONFIG value */ admin.MatchableResource = (function() { const valuesById = {}, values = Object.create(valuesById); @@ -23926,6 +23927,7 @@ export const flyteidl = $root.flyteidl = (() => { values[valuesById[3] = "EXECUTION_CLUSTER_LABEL"] = 3; values[valuesById[4] = "QUALITY_OF_SERVICE_SPECIFICATION"] = 4; values[valuesById[5] = "PLUGIN_OVERRIDE"] = 5; + values[valuesById[6] = "WORKFLOW_EXECUTION_CONFIG"] = 6; return values; })(); @@ -24862,6 +24864,116 @@ export const flyteidl = $root.flyteidl = (() => { return PluginOverrides; })(); + admin.WorkflowExecutionConfig = (function() { + + /** + * Properties of a WorkflowExecutionConfig. + * @memberof flyteidl.admin + * @interface IWorkflowExecutionConfig + * @property {number|null} [maxParallelism] WorkflowExecutionConfig maxParallelism + */ + + /** + * Constructs a new WorkflowExecutionConfig. + * @memberof flyteidl.admin + * @classdesc Represents a WorkflowExecutionConfig. + * @implements IWorkflowExecutionConfig + * @constructor + * @param {flyteidl.admin.IWorkflowExecutionConfig=} [properties] Properties to set + */ + function WorkflowExecutionConfig(properties) { + if (properties) + for (let keys = Object.keys(properties), i = 0; i < keys.length; ++i) + if (properties[keys[i]] != null) + this[keys[i]] = properties[keys[i]]; + } + + /** + * WorkflowExecutionConfig maxParallelism. + * @member {number} maxParallelism + * @memberof flyteidl.admin.WorkflowExecutionConfig + * @instance + */ + WorkflowExecutionConfig.prototype.maxParallelism = 0; + + /** + * Creates a new WorkflowExecutionConfig instance using the specified properties. + * @function create + * @memberof flyteidl.admin.WorkflowExecutionConfig + * @static + * @param {flyteidl.admin.IWorkflowExecutionConfig=} [properties] Properties to set + * @returns {flyteidl.admin.WorkflowExecutionConfig} WorkflowExecutionConfig instance + */ + WorkflowExecutionConfig.create = function create(properties) { + return new WorkflowExecutionConfig(properties); + }; + + /** + * Encodes the specified WorkflowExecutionConfig message. Does not implicitly {@link flyteidl.admin.WorkflowExecutionConfig.verify|verify} messages. + * @function encode + * @memberof flyteidl.admin.WorkflowExecutionConfig + * @static + * @param {flyteidl.admin.IWorkflowExecutionConfig} message WorkflowExecutionConfig message or plain object to encode + * @param {$protobuf.Writer} [writer] Writer to encode to + * @returns {$protobuf.Writer} Writer + */ + WorkflowExecutionConfig.encode = function encode(message, writer) { + if (!writer) + writer = $Writer.create(); + if (message.maxParallelism != null && message.hasOwnProperty("maxParallelism")) + writer.uint32(/* id 1, wireType 0 =*/8).int32(message.maxParallelism); + return writer; + }; + + /** + * Decodes a WorkflowExecutionConfig message from the specified reader or buffer. + * @function decode + * @memberof flyteidl.admin.WorkflowExecutionConfig + * @static + * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from + * @param {number} [length] Message length if known beforehand + * @returns {flyteidl.admin.WorkflowExecutionConfig} WorkflowExecutionConfig + * @throws {Error} If the payload is not a reader or valid buffer + * @throws {$protobuf.util.ProtocolError} If required fields are missing + */ + WorkflowExecutionConfig.decode = function decode(reader, length) { + if (!(reader instanceof $Reader)) + reader = $Reader.create(reader); + let end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.WorkflowExecutionConfig(); + while (reader.pos < end) { + let tag = reader.uint32(); + switch (tag >>> 3) { + case 1: + message.maxParallelism = reader.int32(); + break; + default: + reader.skipType(tag & 7); + break; + } + } + return message; + }; + + /** + * Verifies a WorkflowExecutionConfig message. + * @function verify + * @memberof flyteidl.admin.WorkflowExecutionConfig + * @static + * @param {Object.} message Plain object to verify + * @returns {string|null} `null` if valid, otherwise the reason why it is not + */ + WorkflowExecutionConfig.verify = function verify(message) { + if (typeof message !== "object" || message === null) + return "object expected"; + if (message.maxParallelism != null && message.hasOwnProperty("maxParallelism")) + if (!$util.isInteger(message.maxParallelism)) + return "maxParallelism: integer expected"; + return null; + }; + + return WorkflowExecutionConfig; + })(); + admin.MatchingAttributes = (function() { /** @@ -24874,6 +24986,7 @@ export const flyteidl = $root.flyteidl = (() => { * @property {flyteidl.admin.IExecutionClusterLabel|null} [executionClusterLabel] MatchingAttributes executionClusterLabel * @property {flyteidl.core.IQualityOfService|null} [qualityOfService] MatchingAttributes qualityOfService * @property {flyteidl.admin.IPluginOverrides|null} [pluginOverrides] MatchingAttributes pluginOverrides + * @property {flyteidl.admin.IWorkflowExecutionConfig|null} [workflowExecutionConfig] MatchingAttributes workflowExecutionConfig */ /** @@ -24939,17 +25052,25 @@ export const flyteidl = $root.flyteidl = (() => { */ MatchingAttributes.prototype.pluginOverrides = null; + /** + * MatchingAttributes workflowExecutionConfig. + * @member {flyteidl.admin.IWorkflowExecutionConfig|null|undefined} workflowExecutionConfig + * @memberof flyteidl.admin.MatchingAttributes + * @instance + */ + MatchingAttributes.prototype.workflowExecutionConfig = null; + // OneOf field names bound to virtual getters and setters let $oneOfFields; /** * MatchingAttributes target. - * @member {"taskResourceAttributes"|"clusterResourceAttributes"|"executionQueueAttributes"|"executionClusterLabel"|"qualityOfService"|"pluginOverrides"|undefined} target + * @member {"taskResourceAttributes"|"clusterResourceAttributes"|"executionQueueAttributes"|"executionClusterLabel"|"qualityOfService"|"pluginOverrides"|"workflowExecutionConfig"|undefined} target * @memberof flyteidl.admin.MatchingAttributes * @instance */ Object.defineProperty(MatchingAttributes.prototype, "target", { - get: $util.oneOfGetter($oneOfFields = ["taskResourceAttributes", "clusterResourceAttributes", "executionQueueAttributes", "executionClusterLabel", "qualityOfService", "pluginOverrides"]), + get: $util.oneOfGetter($oneOfFields = ["taskResourceAttributes", "clusterResourceAttributes", "executionQueueAttributes", "executionClusterLabel", "qualityOfService", "pluginOverrides", "workflowExecutionConfig"]), set: $util.oneOfSetter($oneOfFields) }); @@ -24989,6 +25110,8 @@ export const flyteidl = $root.flyteidl = (() => { $root.flyteidl.core.QualityOfService.encode(message.qualityOfService, writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim(); if (message.pluginOverrides != null && message.hasOwnProperty("pluginOverrides")) $root.flyteidl.admin.PluginOverrides.encode(message.pluginOverrides, writer.uint32(/* id 6, wireType 2 =*/50).fork()).ldelim(); + if (message.workflowExecutionConfig != null && message.hasOwnProperty("workflowExecutionConfig")) + $root.flyteidl.admin.WorkflowExecutionConfig.encode(message.workflowExecutionConfig, writer.uint32(/* id 7, wireType 2 =*/58).fork()).ldelim(); return writer; }; @@ -25028,6 +25151,9 @@ export const flyteidl = $root.flyteidl = (() => { case 6: message.pluginOverrides = $root.flyteidl.admin.PluginOverrides.decode(reader, reader.uint32()); break; + case 7: + message.workflowExecutionConfig = $root.flyteidl.admin.WorkflowExecutionConfig.decode(reader, reader.uint32()); + break; default: reader.skipType(tag & 7); break; @@ -25106,6 +25232,16 @@ export const flyteidl = $root.flyteidl = (() => { return "pluginOverrides." + error; } } + if (message.workflowExecutionConfig != null && message.hasOwnProperty("workflowExecutionConfig")) { + if (properties.target === 1) + return "target: multiple values"; + properties.target = 1; + { + let error = $root.flyteidl.admin.WorkflowExecutionConfig.verify(message.workflowExecutionConfig); + if (error) + return "workflowExecutionConfig." + error; + } + } return null; }; @@ -25403,6 +25539,7 @@ export const flyteidl = $root.flyteidl = (() => { case 3: case 4: case 5: + case 6: break; } return null; @@ -29086,6 +29223,7 @@ export const flyteidl = $root.flyteidl = (() => { case 3: case 4: case 5: + case 6: break; } return null; @@ -29351,6 +29489,7 @@ export const flyteidl = $root.flyteidl = (() => { case 3: case 4: case 5: + case 6: break; } return null; @@ -33059,6 +33198,7 @@ export const flyteidl = $root.flyteidl = (() => { case 3: case 4: case 5: + case 6: break; } return null; @@ -33341,6 +33481,7 @@ export const flyteidl = $root.flyteidl = (() => { case 3: case 4: case 5: + case 6: break; } return null; diff --git a/gen/pb_python/flyteidl/admin/matchable_resource_pb2.py b/gen/pb_python/flyteidl/admin/matchable_resource_pb2.py index 8298988a03..66f2a155dc 100644 --- a/gen/pb_python/flyteidl/admin/matchable_resource_pb2.py +++ b/gen/pb_python/flyteidl/admin/matchable_resource_pb2.py @@ -22,7 +22,7 @@ package='flyteidl.admin', syntax='proto3', serialized_options=_b('Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin'), - serialized_pb=_b('\n\'flyteidl/admin/matchable_resource.proto\x12\x0e\x66lyteidl.admin\x1a\x1d\x66lyteidl/core/execution.proto\"M\n\x10TaskResourceSpec\x12\x0b\n\x03\x63pu\x18\x01 \x01(\t\x12\x0b\n\x03gpu\x18\x02 \x01(\t\x12\x0e\n\x06memory\x18\x03 \x01(\t\x12\x0f\n\x07storage\x18\x04 \x01(\t\"~\n\x16TaskResourceAttributes\x12\x32\n\x08\x64\x65\x66\x61ults\x18\x01 \x01(\x0b\x32 .flyteidl.admin.TaskResourceSpec\x12\x30\n\x06limits\x18\x02 \x01(\x0b\x32 .flyteidl.admin.TaskResourceSpec\"\x9d\x01\n\x19\x43lusterResourceAttributes\x12M\n\nattributes\x18\x01 \x03(\x0b\x32\x39.flyteidl.admin.ClusterResourceAttributes.AttributesEntry\x1a\x31\n\x0f\x41ttributesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"(\n\x18\x45xecutionQueueAttributes\x12\x0c\n\x04tags\x18\x01 \x03(\t\"&\n\x15\x45xecutionClusterLabel\x12\r\n\x05value\x18\x01 \x01(\t\"\xc1\x01\n\x0ePluginOverride\x12\x11\n\ttask_type\x18\x01 \x01(\t\x12\x11\n\tplugin_id\x18\x02 \x03(\t\x12U\n\x17missing_plugin_behavior\x18\x04 \x01(\x0e\x32\x34.flyteidl.admin.PluginOverride.MissingPluginBehavior\"2\n\x15MissingPluginBehavior\x12\x08\n\x04\x46\x41IL\x10\x00\x12\x0f\n\x0bUSE_DEFAULT\x10\x01\"D\n\x0fPluginOverrides\x12\x31\n\toverrides\x18\x01 \x03(\x0b\x32\x1e.flyteidl.admin.PluginOverride\"\xd2\x03\n\x12MatchingAttributes\x12J\n\x18task_resource_attributes\x18\x01 \x01(\x0b\x32&.flyteidl.admin.TaskResourceAttributesH\x00\x12P\n\x1b\x63luster_resource_attributes\x18\x02 \x01(\x0b\x32).flyteidl.admin.ClusterResourceAttributesH\x00\x12N\n\x1a\x65xecution_queue_attributes\x18\x03 \x01(\x0b\x32(.flyteidl.admin.ExecutionQueueAttributesH\x00\x12H\n\x17\x65xecution_cluster_label\x18\x04 \x01(\x0b\x32%.flyteidl.admin.ExecutionClusterLabelH\x00\x12=\n\x12quality_of_service\x18\x05 \x01(\x0b\x32\x1f.flyteidl.core.QualityOfServiceH\x00\x12;\n\x10plugin_overrides\x18\x06 \x01(\x0b\x32\x1f.flyteidl.admin.PluginOverridesH\x00\x42\x08\n\x06target\"\xa2\x01\n MatchableAttributesConfiguration\x12\x36\n\nattributes\x18\x01 \x01(\x0b\x32\".flyteidl.admin.MatchingAttributes\x12\x0e\n\x06\x64omain\x18\x02 \x01(\t\x12\x0f\n\x07project\x18\x03 \x01(\t\x12\x10\n\x08workflow\x18\x04 \x01(\t\x12\x13\n\x0blaunch_plan\x18\x05 \x01(\t\"Z\n\x1eListMatchableAttributesRequest\x12\x38\n\rresource_type\x18\x01 \x01(\x0e\x32!.flyteidl.admin.MatchableResource\"k\n\x1fListMatchableAttributesResponse\x12H\n\x0e\x63onfigurations\x18\x01 \x03(\x0b\x32\x30.flyteidl.admin.MatchableAttributesConfiguration*\xa9\x01\n\x11MatchableResource\x12\x11\n\rTASK_RESOURCE\x10\x00\x12\x14\n\x10\x43LUSTER_RESOURCE\x10\x01\x12\x13\n\x0f\x45XECUTION_QUEUE\x10\x02\x12\x1b\n\x17\x45XECUTION_CLUSTER_LABEL\x10\x03\x12$\n QUALITY_OF_SERVICE_SPECIFICATION\x10\x04\x12\x13\n\x0fPLUGIN_OVERRIDE\x10\x05\x42\x37Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/adminb\x06proto3') + serialized_pb=_b('\n\'flyteidl/admin/matchable_resource.proto\x12\x0e\x66lyteidl.admin\x1a\x1d\x66lyteidl/core/execution.proto\"M\n\x10TaskResourceSpec\x12\x0b\n\x03\x63pu\x18\x01 \x01(\t\x12\x0b\n\x03gpu\x18\x02 \x01(\t\x12\x0e\n\x06memory\x18\x03 \x01(\t\x12\x0f\n\x07storage\x18\x04 \x01(\t\"~\n\x16TaskResourceAttributes\x12\x32\n\x08\x64\x65\x66\x61ults\x18\x01 \x01(\x0b\x32 .flyteidl.admin.TaskResourceSpec\x12\x30\n\x06limits\x18\x02 \x01(\x0b\x32 .flyteidl.admin.TaskResourceSpec\"\x9d\x01\n\x19\x43lusterResourceAttributes\x12M\n\nattributes\x18\x01 \x03(\x0b\x32\x39.flyteidl.admin.ClusterResourceAttributes.AttributesEntry\x1a\x31\n\x0f\x41ttributesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"(\n\x18\x45xecutionQueueAttributes\x12\x0c\n\x04tags\x18\x01 \x03(\t\"&\n\x15\x45xecutionClusterLabel\x12\r\n\x05value\x18\x01 \x01(\t\"\xc1\x01\n\x0ePluginOverride\x12\x11\n\ttask_type\x18\x01 \x01(\t\x12\x11\n\tplugin_id\x18\x02 \x03(\t\x12U\n\x17missing_plugin_behavior\x18\x04 \x01(\x0e\x32\x34.flyteidl.admin.PluginOverride.MissingPluginBehavior\"2\n\x15MissingPluginBehavior\x12\x08\n\x04\x46\x41IL\x10\x00\x12\x0f\n\x0bUSE_DEFAULT\x10\x01\"D\n\x0fPluginOverrides\x12\x31\n\toverrides\x18\x01 \x03(\x0b\x32\x1e.flyteidl.admin.PluginOverride\"2\n\x17WorkflowExecutionConfig\x12\x17\n\x0fmax_parallelism\x18\x01 \x01(\x05\"\xa0\x04\n\x12MatchingAttributes\x12J\n\x18task_resource_attributes\x18\x01 \x01(\x0b\x32&.flyteidl.admin.TaskResourceAttributesH\x00\x12P\n\x1b\x63luster_resource_attributes\x18\x02 \x01(\x0b\x32).flyteidl.admin.ClusterResourceAttributesH\x00\x12N\n\x1a\x65xecution_queue_attributes\x18\x03 \x01(\x0b\x32(.flyteidl.admin.ExecutionQueueAttributesH\x00\x12H\n\x17\x65xecution_cluster_label\x18\x04 \x01(\x0b\x32%.flyteidl.admin.ExecutionClusterLabelH\x00\x12=\n\x12quality_of_service\x18\x05 \x01(\x0b\x32\x1f.flyteidl.core.QualityOfServiceH\x00\x12;\n\x10plugin_overrides\x18\x06 \x01(\x0b\x32\x1f.flyteidl.admin.PluginOverridesH\x00\x12L\n\x19workflow_execution_config\x18\x07 \x01(\x0b\x32\'.flyteidl.admin.WorkflowExecutionConfigH\x00\x42\x08\n\x06target\"\xa2\x01\n MatchableAttributesConfiguration\x12\x36\n\nattributes\x18\x01 \x01(\x0b\x32\".flyteidl.admin.MatchingAttributes\x12\x0e\n\x06\x64omain\x18\x02 \x01(\t\x12\x0f\n\x07project\x18\x03 \x01(\t\x12\x10\n\x08workflow\x18\x04 \x01(\t\x12\x13\n\x0blaunch_plan\x18\x05 \x01(\t\"Z\n\x1eListMatchableAttributesRequest\x12\x38\n\rresource_type\x18\x01 \x01(\x0e\x32!.flyteidl.admin.MatchableResource\"k\n\x1fListMatchableAttributesResponse\x12H\n\x0e\x63onfigurations\x18\x01 \x03(\x0b\x32\x30.flyteidl.admin.MatchableAttributesConfiguration*\xc8\x01\n\x11MatchableResource\x12\x11\n\rTASK_RESOURCE\x10\x00\x12\x14\n\x10\x43LUSTER_RESOURCE\x10\x01\x12\x13\n\x0f\x45XECUTION_QUEUE\x10\x02\x12\x1b\n\x17\x45XECUTION_CLUSTER_LABEL\x10\x03\x12$\n QUALITY_OF_SERVICE_SPECIFICATION\x10\x04\x12\x13\n\x0fPLUGIN_OVERRIDE\x10\x05\x12\x1d\n\x19WORKFLOW_EXECUTION_CONFIG\x10\x06\x42\x37Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/adminb\x06proto3') , dependencies=[flyteidl_dot_core_dot_execution__pb2.DESCRIPTOR,]) @@ -56,11 +56,15 @@ name='PLUGIN_OVERRIDE', index=5, number=5, serialized_options=None, type=None), + _descriptor.EnumValueDescriptor( + name='WORKFLOW_EXECUTION_CONFIG', index=6, number=6, + serialized_options=None, + type=None), ], containing_type=None, serialized_options=None, - serialized_start=1641, - serialized_end=1810, + serialized_start=1771, + serialized_end=1971, ) _sym_db.RegisterEnumDescriptor(_MATCHABLERESOURCE) @@ -71,6 +75,7 @@ EXECUTION_CLUSTER_LABEL = 3 QUALITY_OF_SERVICE_SPECIFICATION = 4 PLUGIN_OVERRIDE = 5 +WORKFLOW_EXECUTION_CONFIG = 6 _PLUGINOVERRIDE_MISSINGPLUGINBEHAVIOR = _descriptor.EnumDescriptor( @@ -393,6 +398,37 @@ ) +_WORKFLOWEXECUTIONCONFIG = _descriptor.Descriptor( + name='WorkflowExecutionConfig', + full_name='flyteidl.admin.WorkflowExecutionConfig', + filename=None, + file=DESCRIPTOR, + containing_type=None, + fields=[ + _descriptor.FieldDescriptor( + name='max_parallelism', full_name='flyteidl.admin.WorkflowExecutionConfig.max_parallelism', index=0, + number=1, type=5, cpp_type=1, label=1, + has_default_value=False, default_value=0, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=None, + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=805, + serialized_end=855, +) + + _MATCHINGATTRIBUTES = _descriptor.Descriptor( name='MatchingAttributes', full_name='flyteidl.admin.MatchingAttributes', @@ -442,6 +478,13 @@ message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='workflow_execution_config', full_name='flyteidl.admin.MatchingAttributes.workflow_execution_config', index=6, + number=7, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), ], extensions=[ ], @@ -457,8 +500,8 @@ name='target', full_name='flyteidl.admin.MatchingAttributes.target', index=0, containing_type=None, fields=[]), ], - serialized_start=806, - serialized_end=1272, + serialized_start=858, + serialized_end=1402, ) @@ -516,8 +559,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=1275, - serialized_end=1437, + serialized_start=1405, + serialized_end=1567, ) @@ -547,8 +590,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=1439, - serialized_end=1529, + serialized_start=1569, + serialized_end=1659, ) @@ -578,8 +621,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=1531, - serialized_end=1638, + serialized_start=1661, + serialized_end=1768, ) _TASKRESOURCEATTRIBUTES.fields_by_name['defaults'].message_type = _TASKRESOURCESPEC @@ -595,6 +638,7 @@ _MATCHINGATTRIBUTES.fields_by_name['execution_cluster_label'].message_type = _EXECUTIONCLUSTERLABEL _MATCHINGATTRIBUTES.fields_by_name['quality_of_service'].message_type = flyteidl_dot_core_dot_execution__pb2._QUALITYOFSERVICE _MATCHINGATTRIBUTES.fields_by_name['plugin_overrides'].message_type = _PLUGINOVERRIDES +_MATCHINGATTRIBUTES.fields_by_name['workflow_execution_config'].message_type = _WORKFLOWEXECUTIONCONFIG _MATCHINGATTRIBUTES.oneofs_by_name['target'].fields.append( _MATCHINGATTRIBUTES.fields_by_name['task_resource_attributes']) _MATCHINGATTRIBUTES.fields_by_name['task_resource_attributes'].containing_oneof = _MATCHINGATTRIBUTES.oneofs_by_name['target'] @@ -613,6 +657,9 @@ _MATCHINGATTRIBUTES.oneofs_by_name['target'].fields.append( _MATCHINGATTRIBUTES.fields_by_name['plugin_overrides']) _MATCHINGATTRIBUTES.fields_by_name['plugin_overrides'].containing_oneof = _MATCHINGATTRIBUTES.oneofs_by_name['target'] +_MATCHINGATTRIBUTES.oneofs_by_name['target'].fields.append( + _MATCHINGATTRIBUTES.fields_by_name['workflow_execution_config']) +_MATCHINGATTRIBUTES.fields_by_name['workflow_execution_config'].containing_oneof = _MATCHINGATTRIBUTES.oneofs_by_name['target'] _MATCHABLEATTRIBUTESCONFIGURATION.fields_by_name['attributes'].message_type = _MATCHINGATTRIBUTES _LISTMATCHABLEATTRIBUTESREQUEST.fields_by_name['resource_type'].enum_type = _MATCHABLERESOURCE _LISTMATCHABLEATTRIBUTESRESPONSE.fields_by_name['configurations'].message_type = _MATCHABLEATTRIBUTESCONFIGURATION @@ -623,6 +670,7 @@ DESCRIPTOR.message_types_by_name['ExecutionClusterLabel'] = _EXECUTIONCLUSTERLABEL DESCRIPTOR.message_types_by_name['PluginOverride'] = _PLUGINOVERRIDE DESCRIPTOR.message_types_by_name['PluginOverrides'] = _PLUGINOVERRIDES +DESCRIPTOR.message_types_by_name['WorkflowExecutionConfig'] = _WORKFLOWEXECUTIONCONFIG DESCRIPTOR.message_types_by_name['MatchingAttributes'] = _MATCHINGATTRIBUTES DESCRIPTOR.message_types_by_name['MatchableAttributesConfiguration'] = _MATCHABLEATTRIBUTESCONFIGURATION DESCRIPTOR.message_types_by_name['ListMatchableAttributesRequest'] = _LISTMATCHABLEATTRIBUTESREQUEST @@ -687,6 +735,13 @@ )) _sym_db.RegisterMessage(PluginOverrides) +WorkflowExecutionConfig = _reflection.GeneratedProtocolMessageType('WorkflowExecutionConfig', (_message.Message,), dict( + DESCRIPTOR = _WORKFLOWEXECUTIONCONFIG, + __module__ = 'flyteidl.admin.matchable_resource_pb2' + # @@protoc_insertion_point(class_scope:flyteidl.admin.WorkflowExecutionConfig) + )) +_sym_db.RegisterMessage(WorkflowExecutionConfig) + MatchingAttributes = _reflection.GeneratedProtocolMessageType('MatchingAttributes', (_message.Message,), dict( DESCRIPTOR = _MATCHINGATTRIBUTES, __module__ = 'flyteidl.admin.matchable_resource_pb2' diff --git a/gen/pb_python/flyteidl/service/flyteadmin/README.md b/gen/pb_python/flyteidl/service/flyteadmin/README.md index 401d164017..d656fffa4b 100644 --- a/gen/pb_python/flyteidl/service/flyteadmin/README.md +++ b/gen/pb_python/flyteidl/service/flyteadmin/README.md @@ -220,6 +220,7 @@ Class | Method | HTTP request | Description - [AdminWorkflowClosure](docs/AdminWorkflowClosure.md) - [AdminWorkflowCreateRequest](docs/AdminWorkflowCreateRequest.md) - [AdminWorkflowCreateResponse](docs/AdminWorkflowCreateResponse.md) + - [AdminWorkflowExecutionConfig](docs/AdminWorkflowExecutionConfig.md) - [AdminWorkflowExecutionEventRequest](docs/AdminWorkflowExecutionEventRequest.md) - [AdminWorkflowExecutionEventResponse](docs/AdminWorkflowExecutionEventResponse.md) - [AdminWorkflowExecutionGetDataResponse](docs/AdminWorkflowExecutionGetDataResponse.md) diff --git a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/__init__.py b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/__init__.py index ea0e65e622..e0f2cd4865 100644 --- a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/__init__.py +++ b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/__init__.py @@ -121,6 +121,7 @@ from flyteadmin.models.admin_workflow_closure import AdminWorkflowClosure from flyteadmin.models.admin_workflow_create_request import AdminWorkflowCreateRequest from flyteadmin.models.admin_workflow_create_response import AdminWorkflowCreateResponse +from flyteadmin.models.admin_workflow_execution_config import AdminWorkflowExecutionConfig from flyteadmin.models.admin_workflow_execution_event_request import AdminWorkflowExecutionEventRequest from flyteadmin.models.admin_workflow_execution_event_response import AdminWorkflowExecutionEventResponse from flyteadmin.models.admin_workflow_execution_get_data_response import AdminWorkflowExecutionGetDataResponse diff --git a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/api/admin_service_api.py b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/api/admin_service_api.py index 46cb6f0238..e0d8f42dd3 100644 --- a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/api/admin_service_api.py +++ b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/api/admin_service_api.py @@ -1817,7 +1817,7 @@ def get_project_domain_attributes(self, project, domain, **kwargs): # noqa: E50 :param async_req bool :param str project: Unique project id which this set of attributes references. (required) :param str domain: Unique domain id which this set of attributes references. (required) - :param str resource_type: - TASK_RESOURCE: Applies to customizable task resource requests and limits. - CLUSTER_RESOURCE: Applies to configuring templated kubernetes cluster resources. - EXECUTION_QUEUE: Configures task and dynamic task execution queue assignment. - EXECUTION_CLUSTER_LABEL: Configures the K8s cluster label to be used for execution to be run - QUALITY_OF_SERVICE_SPECIFICATION: Configures default quality of service when undefined in an execution spec. - PLUGIN_OVERRIDE: Selects configurable plugin implementation behavior for a given task type. + :param str resource_type: - TASK_RESOURCE: Applies to customizable task resource requests and limits. - CLUSTER_RESOURCE: Applies to configuring templated kubernetes cluster resources. - EXECUTION_QUEUE: Configures task and dynamic task execution queue assignment. - EXECUTION_CLUSTER_LABEL: Configures the K8s cluster label to be used for execution to be run - QUALITY_OF_SERVICE_SPECIFICATION: Configures default quality of service when undefined in an execution spec. - PLUGIN_OVERRIDE: Selects configurable plugin implementation behavior for a given task type. - WORKFLOW_EXECUTION_CONFIG: Adds defaults for customizable workflow-execution specifications and overrides. :return: AdminProjectDomainAttributesGetResponse If the method is called asynchronously, returns the request thread. @@ -1841,7 +1841,7 @@ def get_project_domain_attributes_with_http_info(self, project, domain, **kwargs :param async_req bool :param str project: Unique project id which this set of attributes references. (required) :param str domain: Unique domain id which this set of attributes references. (required) - :param str resource_type: - TASK_RESOURCE: Applies to customizable task resource requests and limits. - CLUSTER_RESOURCE: Applies to configuring templated kubernetes cluster resources. - EXECUTION_QUEUE: Configures task and dynamic task execution queue assignment. - EXECUTION_CLUSTER_LABEL: Configures the K8s cluster label to be used for execution to be run - QUALITY_OF_SERVICE_SPECIFICATION: Configures default quality of service when undefined in an execution spec. - PLUGIN_OVERRIDE: Selects configurable plugin implementation behavior for a given task type. + :param str resource_type: - TASK_RESOURCE: Applies to customizable task resource requests and limits. - CLUSTER_RESOURCE: Applies to configuring templated kubernetes cluster resources. - EXECUTION_QUEUE: Configures task and dynamic task execution queue assignment. - EXECUTION_CLUSTER_LABEL: Configures the K8s cluster label to be used for execution to be run - QUALITY_OF_SERVICE_SPECIFICATION: Configures default quality of service when undefined in an execution spec. - PLUGIN_OVERRIDE: Selects configurable plugin implementation behavior for a given task type. - WORKFLOW_EXECUTION_CONFIG: Adds defaults for customizable workflow-execution specifications and overrides. :return: AdminProjectDomainAttributesGetResponse If the method is called asynchronously, returns the request thread. @@ -2608,7 +2608,7 @@ def get_workflow_attributes(self, project, domain, workflow, **kwargs): # noqa: :param str project: Unique project id which this set of attributes references. (required) :param str domain: Unique domain id which this set of attributes references. (required) :param str workflow: Workflow name which this set of attributes references. (required) - :param str resource_type: - TASK_RESOURCE: Applies to customizable task resource requests and limits. - CLUSTER_RESOURCE: Applies to configuring templated kubernetes cluster resources. - EXECUTION_QUEUE: Configures task and dynamic task execution queue assignment. - EXECUTION_CLUSTER_LABEL: Configures the K8s cluster label to be used for execution to be run - QUALITY_OF_SERVICE_SPECIFICATION: Configures default quality of service when undefined in an execution spec. - PLUGIN_OVERRIDE: Selects configurable plugin implementation behavior for a given task type. + :param str resource_type: - TASK_RESOURCE: Applies to customizable task resource requests and limits. - CLUSTER_RESOURCE: Applies to configuring templated kubernetes cluster resources. - EXECUTION_QUEUE: Configures task and dynamic task execution queue assignment. - EXECUTION_CLUSTER_LABEL: Configures the K8s cluster label to be used for execution to be run - QUALITY_OF_SERVICE_SPECIFICATION: Configures default quality of service when undefined in an execution spec. - PLUGIN_OVERRIDE: Selects configurable plugin implementation behavior for a given task type. - WORKFLOW_EXECUTION_CONFIG: Adds defaults for customizable workflow-execution specifications and overrides. :return: AdminWorkflowAttributesGetResponse If the method is called asynchronously, returns the request thread. @@ -2633,7 +2633,7 @@ def get_workflow_attributes_with_http_info(self, project, domain, workflow, **kw :param str project: Unique project id which this set of attributes references. (required) :param str domain: Unique domain id which this set of attributes references. (required) :param str workflow: Workflow name which this set of attributes references. (required) - :param str resource_type: - TASK_RESOURCE: Applies to customizable task resource requests and limits. - CLUSTER_RESOURCE: Applies to configuring templated kubernetes cluster resources. - EXECUTION_QUEUE: Configures task and dynamic task execution queue assignment. - EXECUTION_CLUSTER_LABEL: Configures the K8s cluster label to be used for execution to be run - QUALITY_OF_SERVICE_SPECIFICATION: Configures default quality of service when undefined in an execution spec. - PLUGIN_OVERRIDE: Selects configurable plugin implementation behavior for a given task type. + :param str resource_type: - TASK_RESOURCE: Applies to customizable task resource requests and limits. - CLUSTER_RESOURCE: Applies to configuring templated kubernetes cluster resources. - EXECUTION_QUEUE: Configures task and dynamic task execution queue assignment. - EXECUTION_CLUSTER_LABEL: Configures the K8s cluster label to be used for execution to be run - QUALITY_OF_SERVICE_SPECIFICATION: Configures default quality of service when undefined in an execution spec. - PLUGIN_OVERRIDE: Selects configurable plugin implementation behavior for a given task type. - WORKFLOW_EXECUTION_CONFIG: Adds defaults for customizable workflow-execution specifications and overrides. :return: AdminWorkflowAttributesGetResponse If the method is called asynchronously, returns the request thread. @@ -3371,7 +3371,7 @@ def list_matchable_attributes(self, **kwargs): # noqa: E501 >>> result = thread.get() :param async_req bool - :param str resource_type: - TASK_RESOURCE: Applies to customizable task resource requests and limits. - CLUSTER_RESOURCE: Applies to configuring templated kubernetes cluster resources. - EXECUTION_QUEUE: Configures task and dynamic task execution queue assignment. - EXECUTION_CLUSTER_LABEL: Configures the K8s cluster label to be used for execution to be run - QUALITY_OF_SERVICE_SPECIFICATION: Configures default quality of service when undefined in an execution spec. - PLUGIN_OVERRIDE: Selects configurable plugin implementation behavior for a given task type. + :param str resource_type: - TASK_RESOURCE: Applies to customizable task resource requests and limits. - CLUSTER_RESOURCE: Applies to configuring templated kubernetes cluster resources. - EXECUTION_QUEUE: Configures task and dynamic task execution queue assignment. - EXECUTION_CLUSTER_LABEL: Configures the K8s cluster label to be used for execution to be run - QUALITY_OF_SERVICE_SPECIFICATION: Configures default quality of service when undefined in an execution spec. - PLUGIN_OVERRIDE: Selects configurable plugin implementation behavior for a given task type. - WORKFLOW_EXECUTION_CONFIG: Adds defaults for customizable workflow-execution specifications and overrides. :return: AdminListMatchableAttributesResponse If the method is called asynchronously, returns the request thread. @@ -3393,7 +3393,7 @@ def list_matchable_attributes_with_http_info(self, **kwargs): # noqa: E501 >>> result = thread.get() :param async_req bool - :param str resource_type: - TASK_RESOURCE: Applies to customizable task resource requests and limits. - CLUSTER_RESOURCE: Applies to configuring templated kubernetes cluster resources. - EXECUTION_QUEUE: Configures task and dynamic task execution queue assignment. - EXECUTION_CLUSTER_LABEL: Configures the K8s cluster label to be used for execution to be run - QUALITY_OF_SERVICE_SPECIFICATION: Configures default quality of service when undefined in an execution spec. - PLUGIN_OVERRIDE: Selects configurable plugin implementation behavior for a given task type. + :param str resource_type: - TASK_RESOURCE: Applies to customizable task resource requests and limits. - CLUSTER_RESOURCE: Applies to configuring templated kubernetes cluster resources. - EXECUTION_QUEUE: Configures task and dynamic task execution queue assignment. - EXECUTION_CLUSTER_LABEL: Configures the K8s cluster label to be used for execution to be run - QUALITY_OF_SERVICE_SPECIFICATION: Configures default quality of service when undefined in an execution spec. - PLUGIN_OVERRIDE: Selects configurable plugin implementation behavior for a given task type. - WORKFLOW_EXECUTION_CONFIG: Adds defaults for customizable workflow-execution specifications and overrides. :return: AdminListMatchableAttributesResponse If the method is called asynchronously, returns the request thread. diff --git a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/__init__.py b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/__init__.py index bb19accaa3..22d96dcd1a 100644 --- a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/__init__.py +++ b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/__init__.py @@ -114,6 +114,7 @@ from flyteadmin.models.admin_workflow_closure import AdminWorkflowClosure from flyteadmin.models.admin_workflow_create_request import AdminWorkflowCreateRequest from flyteadmin.models.admin_workflow_create_response import AdminWorkflowCreateResponse +from flyteadmin.models.admin_workflow_execution_config import AdminWorkflowExecutionConfig from flyteadmin.models.admin_workflow_execution_event_request import AdminWorkflowExecutionEventRequest from flyteadmin.models.admin_workflow_execution_event_response import AdminWorkflowExecutionEventResponse from flyteadmin.models.admin_workflow_execution_get_data_response import AdminWorkflowExecutionGetDataResponse diff --git a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/admin_matchable_resource.py b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/admin_matchable_resource.py index 4a07f54288..069edf6f64 100644 --- a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/admin_matchable_resource.py +++ b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/admin_matchable_resource.py @@ -32,6 +32,7 @@ class AdminMatchableResource(object): EXECUTION_CLUSTER_LABEL = "EXECUTION_CLUSTER_LABEL" QUALITY_OF_SERVICE_SPECIFICATION = "QUALITY_OF_SERVICE_SPECIFICATION" PLUGIN_OVERRIDE = "PLUGIN_OVERRIDE" + WORKFLOW_EXECUTION_CONFIG = "WORKFLOW_EXECUTION_CONFIG" """ Attributes: diff --git a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/admin_matching_attributes.py b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/admin_matching_attributes.py index 37ea8ad309..e7ab1d9644 100644 --- a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/admin_matching_attributes.py +++ b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/admin_matching_attributes.py @@ -21,6 +21,7 @@ from flyteadmin.models.admin_execution_queue_attributes import AdminExecutionQueueAttributes # noqa: F401,E501 from flyteadmin.models.admin_plugin_overrides import AdminPluginOverrides # noqa: F401,E501 from flyteadmin.models.admin_task_resource_attributes import AdminTaskResourceAttributes # noqa: F401,E501 +from flyteadmin.models.admin_workflow_execution_config import AdminWorkflowExecutionConfig # noqa: F401,E501 from flyteadmin.models.core_quality_of_service import CoreQualityOfService # noqa: F401,E501 @@ -43,7 +44,8 @@ class AdminMatchingAttributes(object): 'execution_queue_attributes': 'AdminExecutionQueueAttributes', 'execution_cluster_label': 'AdminExecutionClusterLabel', 'quality_of_service': 'CoreQualityOfService', - 'plugin_overrides': 'AdminPluginOverrides' + 'plugin_overrides': 'AdminPluginOverrides', + 'workflow_execution_config': 'AdminWorkflowExecutionConfig' } attribute_map = { @@ -52,10 +54,11 @@ class AdminMatchingAttributes(object): 'execution_queue_attributes': 'execution_queue_attributes', 'execution_cluster_label': 'execution_cluster_label', 'quality_of_service': 'quality_of_service', - 'plugin_overrides': 'plugin_overrides' + 'plugin_overrides': 'plugin_overrides', + 'workflow_execution_config': 'workflow_execution_config' } - def __init__(self, task_resource_attributes=None, cluster_resource_attributes=None, execution_queue_attributes=None, execution_cluster_label=None, quality_of_service=None, plugin_overrides=None): # noqa: E501 + def __init__(self, task_resource_attributes=None, cluster_resource_attributes=None, execution_queue_attributes=None, execution_cluster_label=None, quality_of_service=None, plugin_overrides=None, workflow_execution_config=None): # noqa: E501 """AdminMatchingAttributes - a model defined in Swagger""" # noqa: E501 self._task_resource_attributes = None @@ -64,6 +67,7 @@ def __init__(self, task_resource_attributes=None, cluster_resource_attributes=No self._execution_cluster_label = None self._quality_of_service = None self._plugin_overrides = None + self._workflow_execution_config = None self.discriminator = None if task_resource_attributes is not None: @@ -78,6 +82,8 @@ def __init__(self, task_resource_attributes=None, cluster_resource_attributes=No self.quality_of_service = quality_of_service if plugin_overrides is not None: self.plugin_overrides = plugin_overrides + if workflow_execution_config is not None: + self.workflow_execution_config = workflow_execution_config @property def task_resource_attributes(self): @@ -205,6 +211,27 @@ def plugin_overrides(self, plugin_overrides): self._plugin_overrides = plugin_overrides + @property + def workflow_execution_config(self): + """Gets the workflow_execution_config of this AdminMatchingAttributes. # noqa: E501 + + + :return: The workflow_execution_config of this AdminMatchingAttributes. # noqa: E501 + :rtype: AdminWorkflowExecutionConfig + """ + return self._workflow_execution_config + + @workflow_execution_config.setter + def workflow_execution_config(self, workflow_execution_config): + """Sets the workflow_execution_config of this AdminMatchingAttributes. + + + :param workflow_execution_config: The workflow_execution_config of this AdminMatchingAttributes. # noqa: E501 + :type: AdminWorkflowExecutionConfig + """ + + self._workflow_execution_config = workflow_execution_config + def to_dict(self): """Returns the model properties as a dict""" result = {} diff --git a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/admin_workflow_execution_config.py b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/admin_workflow_execution_config.py new file mode 100644 index 0000000000..381d353efb --- /dev/null +++ b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/admin_workflow_execution_config.py @@ -0,0 +1,117 @@ +# coding: utf-8 + +""" + flyteidl/service/admin.proto + + No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501 + + OpenAPI spec version: version not set + + Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + + +import pprint +import re # noqa: F401 + +import six + + +class AdminWorkflowExecutionConfig(object): + """NOTE: This class is auto generated by the swagger code generator program. + + Do not edit the class manually. + """ + + """ + Attributes: + swagger_types (dict): The key is attribute name + and the value is attribute type. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + """ + swagger_types = { + 'max_parallelism': 'int' + } + + attribute_map = { + 'max_parallelism': 'max_parallelism' + } + + def __init__(self, max_parallelism=None): # noqa: E501 + """AdminWorkflowExecutionConfig - a model defined in Swagger""" # noqa: E501 + + self._max_parallelism = None + self.discriminator = None + + if max_parallelism is not None: + self.max_parallelism = max_parallelism + + @property + def max_parallelism(self): + """Gets the max_parallelism of this AdminWorkflowExecutionConfig. # noqa: E501 + + Can be used to control the number of parallel nodes to run within the workflow. This is useful to achieve fairness. # noqa: E501 + + :return: The max_parallelism of this AdminWorkflowExecutionConfig. # noqa: E501 + :rtype: int + """ + return self._max_parallelism + + @max_parallelism.setter + def max_parallelism(self, max_parallelism): + """Sets the max_parallelism of this AdminWorkflowExecutionConfig. + + Can be used to control the number of parallel nodes to run within the workflow. This is useful to achieve fairness. # noqa: E501 + + :param max_parallelism: The max_parallelism of this AdminWorkflowExecutionConfig. # noqa: E501 + :type: int + """ + + self._max_parallelism = max_parallelism + + def to_dict(self): + """Returns the model properties as a dict""" + result = {} + + for attr, _ in six.iteritems(self.swagger_types): + value = getattr(self, attr) + if isinstance(value, list): + result[attr] = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result[attr] = value.to_dict() + elif isinstance(value, dict): + result[attr] = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result[attr] = value + if issubclass(AdminWorkflowExecutionConfig, dict): + for key, value in self.items(): + result[key] = value + + return result + + def to_str(self): + """Returns the string representation of the model""" + return pprint.pformat(self.to_dict()) + + def __repr__(self): + """For `print` and `pprint`""" + return self.to_str() + + def __eq__(self, other): + """Returns true if both objects are equal""" + if not isinstance(other, AdminWorkflowExecutionConfig): + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + """Returns true if both objects are not equal""" + return not self == other diff --git a/gen/pb_python/flyteidl/service/flyteadmin/test/test_admin_workflow_execution_config.py b/gen/pb_python/flyteidl/service/flyteadmin/test/test_admin_workflow_execution_config.py new file mode 100644 index 0000000000..02ebdcb454 --- /dev/null +++ b/gen/pb_python/flyteidl/service/flyteadmin/test/test_admin_workflow_execution_config.py @@ -0,0 +1,40 @@ +# coding: utf-8 + +""" + flyteidl/service/admin.proto + + No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501 + + OpenAPI spec version: version not set + + Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + + +from __future__ import absolute_import + +import unittest + +import flyteadmin +from flyteadmin.models.admin_workflow_execution_config import AdminWorkflowExecutionConfig # noqa: E501 +from flyteadmin.rest import ApiException + + +class TestAdminWorkflowExecutionConfig(unittest.TestCase): + """AdminWorkflowExecutionConfig unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def testAdminWorkflowExecutionConfig(self): + """Test AdminWorkflowExecutionConfig""" + # FIXME: construct object with mandatory attributes with example values + # model = flyteadmin.models.admin_workflow_execution_config.AdminWorkflowExecutionConfig() # noqa: E501 + pass + + +if __name__ == '__main__': + unittest.main() diff --git a/protos/flyteidl/admin/matchable_resource.proto b/protos/flyteidl/admin/matchable_resource.proto index 1f90ee3e65..6c091fbdc6 100644 --- a/protos/flyteidl/admin/matchable_resource.proto +++ b/protos/flyteidl/admin/matchable_resource.proto @@ -25,6 +25,9 @@ enum MatchableResource { // Selects configurable plugin implementation behavior for a given task type. PLUGIN_OVERRIDE = 5; + + // Adds defaults for customizable workflow-execution specifications and overrides. + WORKFLOW_EXECUTION_CONFIG = 6; } message TaskResourceSpec { @@ -86,6 +89,12 @@ message PluginOverrides { repeated PluginOverride overrides = 1; } +// Adds defaults for customizable workflow-execution specifications and overrides. +message WorkflowExecutionConfig { + // Can be used to control the number of parallel nodes to run within the workflow. This is useful to achieve fairness. + int32 max_parallelism = 1; +} + // Generic container for encapsulating all types of the above attributes messages. message MatchingAttributes { oneof target { @@ -100,6 +109,8 @@ message MatchingAttributes { core.QualityOfService quality_of_service = 5; PluginOverrides plugin_overrides = 6; + + WorkflowExecutionConfig workflow_execution_config = 7; } }