From a907dcbb09a81209e1cf3d864132e98fdc950e9d Mon Sep 17 00:00:00 2001 From: Katrina Rogan Date: Fri, 3 Apr 2020 10:33:09 -0700 Subject: [PATCH] Add state to NamedEntity (#55) --- .../go/admin/mocks/AdminServiceClient.go | 48 - .../gen/pb-cpp/flyteidl/admin/common.pb.cc | 218 ++- .../gen/pb-cpp/flyteidl/admin/common.pb.h | 47 + .../gen/pb-cpp/flyteidl/admin/workflow.pb.cc | 643 +------ .../gen/pb-cpp/flyteidl/admin/workflow.pb.h | 342 +--- .../pb-cpp/flyteidl/service/admin.grpc.pb.cc | 180 +- .../pb-cpp/flyteidl/service/admin.grpc.pb.h | 799 ++++----- .../gen/pb-cpp/flyteidl/service/admin.pb.cc | 518 +++--- .../gen/pb-go/flyteidl/admin/common.pb.go | 165 +- .../flyteidl/admin/common.pb.validate.go | 2 + .../gen/pb-go/flyteidl/admin/workflow.pb.go | 174 +- .../flyteidl/admin/workflow.pb.validate.go | 146 -- .../gen/pb-go/flyteidl/service/admin.pb.go | 393 ++--- .../gen/pb-go/flyteidl/service/admin.pb.gw.go | 92 - .../pb-go/flyteidl/service/admin.swagger.json | 93 +- .../flyteidl/service/flyteadmin/README.md | 5 +- .../service/flyteadmin/api/swagger.yaml | 83 +- .../service/flyteadmin/api_admin_service.go | 98 -- .../model_admin_named_entity_metadata.go | 2 + .../model_admin_named_entity_state.go | 18 + .../flyteadmin/model_admin_workflow_state.go | 18 - .../model_admin_workflow_update_request.go | 18 - .../model_admin_workflow_update_response.go | 14 - .../gen/pb-go/flyteidl/service/openapi.go | 4 +- .../gen/pb-java/flyteidl/admin/Common.java | 370 +++- .../flyteidl/admin/WorkflowOuterClass.java | 1498 +---------------- .../gen/pb-java/flyteidl/service/Admin.java | 516 +++--- flyteidl/gen/pb-js/flyteidl.d.ts | 143 +- flyteidl/gen/pb-js/flyteidl.js | 310 +--- .../flyteidl/admin/common.proto.rst | 71 +- .../flyteidl/admin/workflow.proto.rst | 67 - .../pb_python/flyteidl/admin/common_pb2.py | 123 +- .../pb_python/flyteidl/admin/workflow_pb2.py | 109 +- .../pb_python/flyteidl/service/admin_pb2.py | 83 +- .../flyteidl/service/admin_pb2_grpc.py | 17 - .../flyteidl/service/flyteadmin/README.md | 5 +- .../service/flyteadmin/flyteadmin/__init__.py | 4 +- .../flyteadmin/api/admin_service_api.py | 131 -- .../flyteadmin/flyteadmin/models/__init__.py | 4 +- .../models/admin_named_entity_metadata.py | 36 +- ...w_state.py => admin_named_entity_state.py} | 12 +- .../models/admin_workflow_update_request.py | 148 -- .../models/admin_workflow_update_response.py | 87 - ...te.py => test_admin_named_entity_state.py} | 12 +- .../flyteadmin/test/test_admin_service_api.py | 6 - .../test_admin_workflow_update_request.py | 40 - .../test_admin_workflow_update_response.py | 40 - flyteidl/package.json | 2 +- flyteidl/protos/flyteidl/admin/common.proto | 13 + flyteidl/protos/flyteidl/admin/workflow.proto | 21 - flyteidl/protos/flyteidl/service/admin.proto | 10 - flyteidl/setup.py | 2 +- 52 files changed, 2118 insertions(+), 5882 deletions(-) create mode 100644 flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_named_entity_state.go delete mode 100644 flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_workflow_state.go delete mode 100644 flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_workflow_update_request.go delete mode 100644 flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_workflow_update_response.go rename flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/{admin_workflow_state.py => admin_named_entity_state.py} (88%) delete mode 100644 flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/admin_workflow_update_request.py delete mode 100644 flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/admin_workflow_update_response.py rename flyteidl/gen/pb_python/flyteidl/service/flyteadmin/test/{test_admin_workflow_state.py => test_admin_named_entity_state.py} (62%) delete mode 100644 flyteidl/gen/pb_python/flyteidl/service/flyteadmin/test/test_admin_workflow_update_request.py delete mode 100644 flyteidl/gen/pb_python/flyteidl/service/flyteadmin/test/test_admin_workflow_update_response.py diff --git a/flyteidl/clients/go/admin/mocks/AdminServiceClient.go b/flyteidl/clients/go/admin/mocks/AdminServiceClient.go index 747b6377f8..fc9ce4b70b 100644 --- a/flyteidl/clients/go/admin/mocks/AdminServiceClient.go +++ b/flyteidl/clients/go/admin/mocks/AdminServiceClient.go @@ -2033,54 +2033,6 @@ func (_m *AdminServiceClient) UpdateProjectDomainAttributes(ctx context.Context, return r0, r1 } -type AdminServiceClient_UpdateWorkflow struct { - *mock.Call -} - -func (_m AdminServiceClient_UpdateWorkflow) Return(_a0 *admin.WorkflowUpdateResponse, _a1 error) *AdminServiceClient_UpdateWorkflow { - return &AdminServiceClient_UpdateWorkflow{Call: _m.Call.Return(_a0, _a1)} -} - -func (_m *AdminServiceClient) OnUpdateWorkflow(ctx context.Context, in *admin.WorkflowUpdateRequest, opts ...grpc.CallOption) *AdminServiceClient_UpdateWorkflow { - c := _m.On("UpdateWorkflow", ctx, in, opts) - return &AdminServiceClient_UpdateWorkflow{Call: c} -} - -func (_m *AdminServiceClient) OnUpdateWorkflowMatch(matchers ...interface{}) *AdminServiceClient_UpdateWorkflow { - c := _m.On("UpdateWorkflow", matchers...) - return &AdminServiceClient_UpdateWorkflow{Call: c} -} - -// UpdateWorkflow provides a mock function with given fields: ctx, in, opts -func (_m *AdminServiceClient) UpdateWorkflow(ctx context.Context, in *admin.WorkflowUpdateRequest, opts ...grpc.CallOption) (*admin.WorkflowUpdateResponse, error) { - _va := make([]interface{}, len(opts)) - for _i := range opts { - _va[_i] = opts[_i] - } - var _ca []interface{} - _ca = append(_ca, ctx, in) - _ca = append(_ca, _va...) - ret := _m.Called(_ca...) - - var r0 *admin.WorkflowUpdateResponse - if rf, ok := ret.Get(0).(func(context.Context, *admin.WorkflowUpdateRequest, ...grpc.CallOption) *admin.WorkflowUpdateResponse); ok { - r0 = rf(ctx, in, opts...) - } else { - if ret.Get(0) != nil { - r0 = ret.Get(0).(*admin.WorkflowUpdateResponse) - } - } - - var r1 error - if rf, ok := ret.Get(1).(func(context.Context, *admin.WorkflowUpdateRequest, ...grpc.CallOption) error); ok { - r1 = rf(ctx, in, opts...) - } else { - r1 = ret.Error(1) - } - - return r0, r1 -} - type AdminServiceClient_UpdateWorkflowAttributes struct { *mock.Call } diff --git a/flyteidl/gen/pb-cpp/flyteidl/admin/common.pb.cc b/flyteidl/gen/pb-cpp/flyteidl/admin/common.pb.cc index 1d31585019..ef9f4b422b 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/admin/common.pb.cc +++ b/flyteidl/gen/pb-cpp/flyteidl/admin/common.pb.cc @@ -470,7 +470,7 @@ void InitDefaults_flyteidl_2fadmin_2fcommon_2eproto() { } ::google::protobuf::Metadata file_level_metadata_flyteidl_2fadmin_2fcommon_2eproto[22]; -const ::google::protobuf::EnumDescriptor* file_level_enum_descriptors_flyteidl_2fadmin_2fcommon_2eproto[1]; +const ::google::protobuf::EnumDescriptor* file_level_enum_descriptors_flyteidl_2fadmin_2fcommon_2eproto[2]; constexpr ::google::protobuf::ServiceDescriptor const** file_level_service_descriptors_flyteidl_2fadmin_2fcommon_2eproto = nullptr; const ::google::protobuf::uint32 TableStruct_flyteidl_2fadmin_2fcommon_2eproto::offsets[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = { @@ -488,6 +488,7 @@ const ::google::protobuf::uint32 TableStruct_flyteidl_2fadmin_2fcommon_2eproto:: ~0u, // no _oneof_case_ ~0u, // no _weak_field_map_ PROTOBUF_FIELD_OFFSET(::flyteidl::admin::NamedEntityMetadata, description_), + PROTOBUF_FIELD_OFFSET(::flyteidl::admin::NamedEntityMetadata, state_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::flyteidl::admin::NamedEntity, _internal_metadata_), ~0u, // no _extensions_ @@ -643,26 +644,26 @@ const ::google::protobuf::uint32 TableStruct_flyteidl_2fadmin_2fcommon_2eproto:: static const ::google::protobuf::internal::MigrationSchema schemas[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = { { 0, -1, sizeof(::flyteidl::admin::NamedEntityIdentifier)}, { 8, -1, sizeof(::flyteidl::admin::NamedEntityMetadata)}, - { 14, -1, sizeof(::flyteidl::admin::NamedEntity)}, - { 22, -1, sizeof(::flyteidl::admin::Sort)}, - { 29, -1, sizeof(::flyteidl::admin::NamedEntityIdentifierListRequest)}, - { 39, -1, sizeof(::flyteidl::admin::NamedEntityListRequest)}, - { 50, -1, sizeof(::flyteidl::admin::NamedEntityIdentifierList)}, - { 57, -1, sizeof(::flyteidl::admin::NamedEntityList)}, - { 64, -1, sizeof(::flyteidl::admin::NamedEntityGetRequest)}, - { 71, -1, sizeof(::flyteidl::admin::NamedEntityUpdateRequest)}, - { 79, -1, sizeof(::flyteidl::admin::NamedEntityUpdateResponse)}, - { 84, -1, sizeof(::flyteidl::admin::ObjectGetRequest)}, - { 90, -1, sizeof(::flyteidl::admin::ResourceListRequest)}, - { 100, -1, sizeof(::flyteidl::admin::EmailNotification)}, - { 106, -1, sizeof(::flyteidl::admin::PagerDutyNotification)}, - { 112, -1, sizeof(::flyteidl::admin::SlackNotification)}, - { 118, -1, sizeof(::flyteidl::admin::Notification)}, - { 128, -1, sizeof(::flyteidl::admin::UrlBlob)}, - { 135, 142, sizeof(::flyteidl::admin::Labels_ValuesEntry_DoNotUse)}, - { 144, -1, sizeof(::flyteidl::admin::Labels)}, - { 150, 157, sizeof(::flyteidl::admin::Annotations_ValuesEntry_DoNotUse)}, - { 159, -1, sizeof(::flyteidl::admin::Annotations)}, + { 15, -1, sizeof(::flyteidl::admin::NamedEntity)}, + { 23, -1, sizeof(::flyteidl::admin::Sort)}, + { 30, -1, sizeof(::flyteidl::admin::NamedEntityIdentifierListRequest)}, + { 40, -1, sizeof(::flyteidl::admin::NamedEntityListRequest)}, + { 51, -1, sizeof(::flyteidl::admin::NamedEntityIdentifierList)}, + { 58, -1, sizeof(::flyteidl::admin::NamedEntityList)}, + { 65, -1, sizeof(::flyteidl::admin::NamedEntityGetRequest)}, + { 72, -1, sizeof(::flyteidl::admin::NamedEntityUpdateRequest)}, + { 80, -1, sizeof(::flyteidl::admin::NamedEntityUpdateResponse)}, + { 85, -1, sizeof(::flyteidl::admin::ObjectGetRequest)}, + { 91, -1, sizeof(::flyteidl::admin::ResourceListRequest)}, + { 101, -1, sizeof(::flyteidl::admin::EmailNotification)}, + { 107, -1, sizeof(::flyteidl::admin::PagerDutyNotification)}, + { 113, -1, sizeof(::flyteidl::admin::SlackNotification)}, + { 119, -1, sizeof(::flyteidl::admin::Notification)}, + { 129, -1, sizeof(::flyteidl::admin::UrlBlob)}, + { 136, 143, sizeof(::flyteidl::admin::Labels_ValuesEntry_DoNotUse)}, + { 145, -1, sizeof(::flyteidl::admin::Labels)}, + { 151, 158, sizeof(::flyteidl::admin::Annotations_ValuesEntry_DoNotUse)}, + { 160, -1, sizeof(::flyteidl::admin::Annotations)}, }; static ::google::protobuf::Message const * const file_default_instances[] = { @@ -701,65 +702,68 @@ const char descriptor_table_protodef_flyteidl_2fadmin_2fcommon_2eproto[] = "admin\032\035flyteidl/core/execution.proto\032\036fl" "yteidl/core/identifier.proto\"F\n\025NamedEnt" "ityIdentifier\022\017\n\007project\030\001 \001(\t\022\016\n\006domain" - "\030\002 \001(\t\022\014\n\004name\030\003 \001(\t\"*\n\023NamedEntityMetad" - "ata\022\023\n\013description\030\001 \001(\t\"\253\001\n\013NamedEntity" - "\0222\n\rresource_type\030\001 \001(\0162\033.flyteidl.core." - "ResourceType\0221\n\002id\030\002 \001(\0132%.flyteidl.admi" - "n.NamedEntityIdentifier\0225\n\010metadata\030\003 \001(" - "\0132#.flyteidl.admin.NamedEntityMetadata\"r" - "\n\004Sort\022\013\n\003key\030\001 \001(\t\0221\n\tdirection\030\002 \001(\0162\036" - ".flyteidl.admin.Sort.Direction\"*\n\tDirect" - "ion\022\016\n\nDESCENDING\020\000\022\r\n\tASCENDING\020\001\"\210\001\n N" - "amedEntityIdentifierListRequest\022\017\n\007proje" - "ct\030\001 \001(\t\022\016\n\006domain\030\002 \001(\t\022\r\n\005limit\030\003 \001(\r\022" - "\r\n\005token\030\004 \001(\t\022%\n\007sort_by\030\005 \001(\0132\024.flytei" - "dl.admin.Sort\"\262\001\n\026NamedEntityListRequest" - "\0222\n\rresource_type\030\001 \001(\0162\033.flyteidl.core." - "ResourceType\022\017\n\007project\030\002 \001(\t\022\016\n\006domain\030" - "\003 \001(\t\022\r\n\005limit\030\004 \001(\r\022\r\n\005token\030\005 \001(\t\022%\n\007s" - "ort_by\030\006 \001(\0132\024.flyteidl.admin.Sort\"c\n\031Na" - "medEntityIdentifierList\0227\n\010entities\030\001 \003(" - "\0132%.flyteidl.admin.NamedEntityIdentifier" - "\022\r\n\005token\030\002 \001(\t\"O\n\017NamedEntityList\022-\n\010en" - "tities\030\001 \003(\0132\033.flyteidl.admin.NamedEntit" - "y\022\r\n\005token\030\002 \001(\t\"~\n\025NamedEntityGetReques" - "t\0222\n\rresource_type\030\001 \001(\0162\033.flyteidl.core" - ".ResourceType\0221\n\002id\030\002 \001(\0132%.flyteidl.adm" - "in.NamedEntityIdentifier\"\270\001\n\030NamedEntity" - "UpdateRequest\0222\n\rresource_type\030\001 \001(\0162\033.f" - "lyteidl.core.ResourceType\0221\n\002id\030\002 \001(\0132%." - "flyteidl.admin.NamedEntityIdentifier\0225\n\010" - "metadata\030\003 \001(\0132#.flyteidl.admin.NamedEnt" - "ityMetadata\"\033\n\031NamedEntityUpdateResponse" - "\"9\n\020ObjectGetRequest\022%\n\002id\030\001 \001(\0132\031.flyte" - "idl.core.Identifier\"\236\001\n\023ResourceListRequ" - "est\0221\n\002id\030\001 \001(\0132%.flyteidl.admin.NamedEn" - "tityIdentifier\022\r\n\005limit\030\002 \001(\r\022\r\n\005token\030\003" - " \001(\t\022\017\n\007filters\030\004 \001(\t\022%\n\007sort_by\030\005 \001(\0132\024" - ".flyteidl.admin.Sort\"-\n\021EmailNotificatio" - "n\022\030\n\020recipients_email\030\001 \003(\t\"1\n\025PagerDuty" - "Notification\022\030\n\020recipients_email\030\001 \003(\t\"-" - "\n\021SlackNotification\022\030\n\020recipients_email\030" - "\001 \003(\t\"\363\001\n\014Notification\0226\n\006phases\030\001 \003(\0162&" - ".flyteidl.core.WorkflowExecution.Phase\0222" - "\n\005email\030\002 \001(\0132!.flyteidl.admin.EmailNoti" - "ficationH\000\022;\n\npager_duty\030\003 \001(\0132%.flyteid" - "l.admin.PagerDutyNotificationH\000\0222\n\005slack" - "\030\004 \001(\0132!.flyteidl.admin.SlackNotificatio" - "nH\000B\006\n\004type\"%\n\007UrlBlob\022\013\n\003url\030\001 \001(\t\022\r\n\005b" - "ytes\030\002 \001(\003\"k\n\006Labels\0222\n\006values\030\001 \003(\0132\".f" - "lyteidl.admin.Labels.ValuesEntry\032-\n\013Valu" - "esEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001\"" - "u\n\013Annotations\0227\n\006values\030\001 \003(\0132\'.flyteid" - "l.admin.Annotations.ValuesEntry\032-\n\013Value" - "sEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001B3" - "Z1github.com/lyft/flyteidl/gen/pb-go/fly" - "teidl/adminb\006proto3" + "\030\002 \001(\t\022\014\n\004name\030\003 \001(\t\"[\n\023NamedEntityMetad" + "ata\022\023\n\013description\030\001 \001(\t\022/\n\005state\030\002 \001(\0162" + " .flyteidl.admin.NamedEntityState\"\253\001\n\013Na" + "medEntity\0222\n\rresource_type\030\001 \001(\0162\033.flyte" + "idl.core.ResourceType\0221\n\002id\030\002 \001(\0132%.flyt" + "eidl.admin.NamedEntityIdentifier\0225\n\010meta" + "data\030\003 \001(\0132#.flyteidl.admin.NamedEntityM" + "etadata\"r\n\004Sort\022\013\n\003key\030\001 \001(\t\0221\n\tdirectio" + "n\030\002 \001(\0162\036.flyteidl.admin.Sort.Direction\"" + "*\n\tDirection\022\016\n\nDESCENDING\020\000\022\r\n\tASCENDIN" + "G\020\001\"\210\001\n NamedEntityIdentifierListRequest" + "\022\017\n\007project\030\001 \001(\t\022\016\n\006domain\030\002 \001(\t\022\r\n\005lim" + "it\030\003 \001(\r\022\r\n\005token\030\004 \001(\t\022%\n\007sort_by\030\005 \001(\013" + "2\024.flyteidl.admin.Sort\"\262\001\n\026NamedEntityLi" + "stRequest\0222\n\rresource_type\030\001 \001(\0162\033.flyte" + "idl.core.ResourceType\022\017\n\007project\030\002 \001(\t\022\016" + "\n\006domain\030\003 \001(\t\022\r\n\005limit\030\004 \001(\r\022\r\n\005token\030\005" + " \001(\t\022%\n\007sort_by\030\006 \001(\0132\024.flyteidl.admin.S" + "ort\"c\n\031NamedEntityIdentifierList\0227\n\010enti" + "ties\030\001 \003(\0132%.flyteidl.admin.NamedEntityI" + "dentifier\022\r\n\005token\030\002 \001(\t\"O\n\017NamedEntityL" + "ist\022-\n\010entities\030\001 \003(\0132\033.flyteidl.admin.N" + "amedEntity\022\r\n\005token\030\002 \001(\t\"~\n\025NamedEntity" + "GetRequest\0222\n\rresource_type\030\001 \001(\0162\033.flyt" + "eidl.core.ResourceType\0221\n\002id\030\002 \001(\0132%.fly" + "teidl.admin.NamedEntityIdentifier\"\270\001\n\030Na" + "medEntityUpdateRequest\0222\n\rresource_type\030" + "\001 \001(\0162\033.flyteidl.core.ResourceType\0221\n\002id" + "\030\002 \001(\0132%.flyteidl.admin.NamedEntityIdent" + "ifier\0225\n\010metadata\030\003 \001(\0132#.flyteidl.admin" + ".NamedEntityMetadata\"\033\n\031NamedEntityUpdat" + "eResponse\"9\n\020ObjectGetRequest\022%\n\002id\030\001 \001(" + "\0132\031.flyteidl.core.Identifier\"\236\001\n\023Resourc" + "eListRequest\0221\n\002id\030\001 \001(\0132%.flyteidl.admi" + "n.NamedEntityIdentifier\022\r\n\005limit\030\002 \001(\r\022\r" + "\n\005token\030\003 \001(\t\022\017\n\007filters\030\004 \001(\t\022%\n\007sort_b" + "y\030\005 \001(\0132\024.flyteidl.admin.Sort\"-\n\021EmailNo" + "tification\022\030\n\020recipients_email\030\001 \003(\t\"1\n\025" + "PagerDutyNotification\022\030\n\020recipients_emai" + "l\030\001 \003(\t\"-\n\021SlackNotification\022\030\n\020recipien" + "ts_email\030\001 \003(\t\"\363\001\n\014Notification\0226\n\006phase" + "s\030\001 \003(\0162&.flyteidl.core.WorkflowExecutio" + "n.Phase\0222\n\005email\030\002 \001(\0132!.flyteidl.admin." + "EmailNotificationH\000\022;\n\npager_duty\030\003 \001(\0132" + "%.flyteidl.admin.PagerDutyNotificationH\000" + "\0222\n\005slack\030\004 \001(\0132!.flyteidl.admin.SlackNo" + "tificationH\000B\006\n\004type\"%\n\007UrlBlob\022\013\n\003url\030\001" + " \001(\t\022\r\n\005bytes\030\002 \001(\003\"k\n\006Labels\0222\n\006values\030" + "\001 \003(\0132\".flyteidl.admin.Labels.ValuesEntr" + "y\032-\n\013ValuesEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002" + " \001(\t:\0028\001\"u\n\013Annotations\0227\n\006values\030\001 \003(\0132" + "\'.flyteidl.admin.Annotations.ValuesEntry" + "\032-\n\013ValuesEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 " + "\001(\t:\0028\001*F\n\020NamedEntityState\022\027\n\023NAMED_ENT" + "ITY_ACTIVE\020\000\022\031\n\025NAMED_ENTITY_ARCHIVED\020\001B" + "3Z1github.com/lyft/flyteidl/gen/pb-go/fl" + "yteidl/adminb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fadmin_2fcommon_2eproto = { false, InitDefaults_flyteidl_2fadmin_2fcommon_2eproto, descriptor_table_protodef_flyteidl_2fadmin_2fcommon_2eproto, - "flyteidl/admin/common.proto", &assign_descriptors_table_flyteidl_2fadmin_2fcommon_2eproto, 2299, + "flyteidl/admin/common.proto", &assign_descriptors_table_flyteidl_2fadmin_2fcommon_2eproto, 2420, }; void AddDescriptors_flyteidl_2fadmin_2fcommon_2eproto() { @@ -796,6 +800,20 @@ const Sort_Direction Sort::Direction_MIN; const Sort_Direction Sort::Direction_MAX; const int Sort::Direction_ARRAYSIZE; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 +const ::google::protobuf::EnumDescriptor* NamedEntityState_descriptor() { + ::google::protobuf::internal::AssignDescriptors(&assign_descriptors_table_flyteidl_2fadmin_2fcommon_2eproto); + return file_level_enum_descriptors_flyteidl_2fadmin_2fcommon_2eproto[1]; +} +bool NamedEntityState_IsValid(int value) { + switch (value) { + case 0: + case 1: + return true; + default: + return false; + } +} + // =================================================================== @@ -1250,6 +1268,7 @@ class NamedEntityMetadata::HasBitSetters { #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int NamedEntityMetadata::kDescriptionFieldNumber; +const int NamedEntityMetadata::kStateFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 NamedEntityMetadata::NamedEntityMetadata() @@ -1265,6 +1284,7 @@ NamedEntityMetadata::NamedEntityMetadata(const NamedEntityMetadata& from) if (from.description().size() > 0) { description_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.description_); } + state_ = from.state_; // @@protoc_insertion_point(copy_constructor:flyteidl.admin.NamedEntityMetadata) } @@ -1272,6 +1292,7 @@ void NamedEntityMetadata::SharedCtor() { ::google::protobuf::internal::InitSCC( &scc_info_NamedEntityMetadata_flyteidl_2fadmin_2fcommon_2eproto.base); description_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + state_ = 0; } NamedEntityMetadata::~NamedEntityMetadata() { @@ -1299,6 +1320,7 @@ void NamedEntityMetadata::Clear() { (void) cached_has_bits; description_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + state_ = 0; _internal_metadata_.Clear(); } @@ -1331,6 +1353,14 @@ const char* NamedEntityMetadata::_InternalParse(const char* begin, const char* e ptr += size; break; } + // .flyteidl.admin.NamedEntityState state = 2; + case 2: { + if (static_cast<::google::protobuf::uint8>(tag) != 16) goto handle_unusual; + ::google::protobuf::uint64 val = ::google::protobuf::internal::ReadVarint(&ptr); + msg->set_state(static_cast<::flyteidl::admin::NamedEntityState>(val)); + GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); + break; + } default: { handle_unusual: if ((tag & 7) == 4 || tag == 0) { @@ -1380,6 +1410,20 @@ bool NamedEntityMetadata::MergePartialFromCodedStream( break; } + // .flyteidl.admin.NamedEntityState state = 2; + case 2: { + if (static_cast< ::google::protobuf::uint8>(tag) == (16 & 0xFF)) { + int value = 0; + DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< + int, ::google::protobuf::internal::WireFormatLite::TYPE_ENUM>( + input, &value))); + set_state(static_cast< ::flyteidl::admin::NamedEntityState >(value)); + } else { + goto handle_unusual; + } + break; + } + default: { handle_unusual: if (tag == 0) { @@ -1417,6 +1461,12 @@ void NamedEntityMetadata::SerializeWithCachedSizes( 1, this->description(), output); } + // .flyteidl.admin.NamedEntityState state = 2; + if (this->state() != 0) { + ::google::protobuf::internal::WireFormatLite::WriteEnum( + 2, this->state(), output); + } + if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); @@ -1441,6 +1491,12 @@ ::google::protobuf::uint8* NamedEntityMetadata::InternalSerializeWithCachedSizes 1, this->description(), target); } + // .flyteidl.admin.NamedEntityState state = 2; + if (this->state() != 0) { + target = ::google::protobuf::internal::WireFormatLite::WriteEnumToArray( + 2, this->state(), target); + } + if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); @@ -1469,6 +1525,12 @@ size_t NamedEntityMetadata::ByteSizeLong() const { this->description()); } + // .flyteidl.admin.NamedEntityState state = 2; + if (this->state() != 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::EnumSize(this->state()); + } + int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); SetCachedSize(cached_size); return total_size; @@ -1500,6 +1562,9 @@ void NamedEntityMetadata::MergeFrom(const NamedEntityMetadata& from) { description_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.description_); } + if (from.state() != 0) { + set_state(from.state()); + } } void NamedEntityMetadata::CopyFrom(const ::google::protobuf::Message& from) { @@ -1529,6 +1594,7 @@ void NamedEntityMetadata::InternalSwap(NamedEntityMetadata* other) { _internal_metadata_.Swap(&other->_internal_metadata_); description_.Swap(&other->description_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual()); + swap(state_, other->state_); } ::google::protobuf::Metadata NamedEntityMetadata::GetMetadata() const { diff --git a/flyteidl/gen/pb-cpp/flyteidl/admin/common.pb.h b/flyteidl/gen/pb-cpp/flyteidl/admin/common.pb.h index d1581d870c..6f76b51b13 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/admin/common.pb.h +++ b/flyteidl/gen/pb-cpp/flyteidl/admin/common.pb.h @@ -174,6 +174,27 @@ inline bool Sort_Direction_Parse( return ::google::protobuf::internal::ParseNamedEnum( Sort_Direction_descriptor(), name, value); } +enum NamedEntityState { + NAMED_ENTITY_ACTIVE = 0, + NAMED_ENTITY_ARCHIVED = 1, + NamedEntityState_INT_MIN_SENTINEL_DO_NOT_USE_ = std::numeric_limits<::google::protobuf::int32>::min(), + NamedEntityState_INT_MAX_SENTINEL_DO_NOT_USE_ = std::numeric_limits<::google::protobuf::int32>::max() +}; +bool NamedEntityState_IsValid(int value); +const NamedEntityState NamedEntityState_MIN = NAMED_ENTITY_ACTIVE; +const NamedEntityState NamedEntityState_MAX = NAMED_ENTITY_ARCHIVED; +const int NamedEntityState_ARRAYSIZE = NamedEntityState_MAX + 1; + +const ::google::protobuf::EnumDescriptor* NamedEntityState_descriptor(); +inline const ::std::string& NamedEntityState_Name(NamedEntityState value) { + return ::google::protobuf::internal::NameOfEnum( + NamedEntityState_descriptor(), value); +} +inline bool NamedEntityState_Parse( + const ::std::string& name, NamedEntityState* value) { + return ::google::protobuf::internal::ParseNamedEnum( + NamedEntityState_descriptor(), name, value); +} // =================================================================== class NamedEntityIdentifier final : @@ -435,12 +456,19 @@ class NamedEntityMetadata final : ::std::string* release_description(); void set_allocated_description(::std::string* description); + // .flyteidl.admin.NamedEntityState state = 2; + void clear_state(); + static const int kStateFieldNumber = 2; + ::flyteidl::admin::NamedEntityState state() const; + void set_state(::flyteidl::admin::NamedEntityState value); + // @@protoc_insertion_point(class_scope:flyteidl.admin.NamedEntityMetadata) private: class HasBitSetters; ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; ::google::protobuf::internal::ArenaStringPtr description_; + int state_; mutable ::google::protobuf::internal::CachedSize _cached_size_; friend struct ::TableStruct_flyteidl_2fadmin_2fcommon_2eproto; }; @@ -3167,6 +3195,20 @@ inline void NamedEntityMetadata::set_allocated_description(::std::string* descri // @@protoc_insertion_point(field_set_allocated:flyteidl.admin.NamedEntityMetadata.description) } +// .flyteidl.admin.NamedEntityState state = 2; +inline void NamedEntityMetadata::clear_state() { + state_ = 0; +} +inline ::flyteidl::admin::NamedEntityState NamedEntityMetadata::state() const { + // @@protoc_insertion_point(field_get:flyteidl.admin.NamedEntityMetadata.state) + return static_cast< ::flyteidl::admin::NamedEntityState >(state_); +} +inline void NamedEntityMetadata::set_state(::flyteidl::admin::NamedEntityState value) { + + state_ = value; + // @@protoc_insertion_point(field_set:flyteidl.admin.NamedEntityMetadata.state) +} + // ------------------------------------------------------------------- // NamedEntity @@ -5033,6 +5075,11 @@ template <> inline const EnumDescriptor* GetEnumDescriptor< ::flyteidl::admin::Sort_Direction>() { return ::flyteidl::admin::Sort_Direction_descriptor(); } +template <> struct is_proto_enum< ::flyteidl::admin::NamedEntityState> : ::std::true_type {}; +template <> +inline const EnumDescriptor* GetEnumDescriptor< ::flyteidl::admin::NamedEntityState>() { + return ::flyteidl::admin::NamedEntityState_descriptor(); +} } // namespace protobuf } // namespace google diff --git a/flyteidl/gen/pb-cpp/flyteidl/admin/workflow.pb.cc b/flyteidl/gen/pb-cpp/flyteidl/admin/workflow.pb.cc index 16924d0058..69fbf3a79f 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/admin/workflow.pb.cc +++ b/flyteidl/gen/pb-cpp/flyteidl/admin/workflow.pb.cc @@ -49,14 +49,6 @@ class WorkflowClosureDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed _instance; } _WorkflowClosure_default_instance_; -class WorkflowUpdateRequestDefaultTypeInternal { - public: - ::google::protobuf::internal::ExplicitlyConstructed _instance; -} _WorkflowUpdateRequest_default_instance_; -class WorkflowUpdateResponseDefaultTypeInternal { - public: - ::google::protobuf::internal::ExplicitlyConstructed _instance; -} _WorkflowUpdateResponse_default_instance_; } // namespace admin } // namespace flyteidl static void InitDefaultsWorkflowCreateRequest_flyteidl_2fadmin_2fworkflow_2eproto() { @@ -151,35 +143,6 @@ ::google::protobuf::internal::SCCInfo<2> scc_info_WorkflowClosure_flyteidl_2fadm &scc_info_CompiledWorkflowClosure_flyteidl_2fcore_2fcompiler_2eproto.base, &scc_info_Timestamp_google_2fprotobuf_2ftimestamp_2eproto.base,}}; -static void InitDefaultsWorkflowUpdateRequest_flyteidl_2fadmin_2fworkflow_2eproto() { - GOOGLE_PROTOBUF_VERIFY_VERSION; - - { - void* ptr = &::flyteidl::admin::_WorkflowUpdateRequest_default_instance_; - new (ptr) ::flyteidl::admin::WorkflowUpdateRequest(); - ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); - } - ::flyteidl::admin::WorkflowUpdateRequest::InitAsDefaultInstance(); -} - -::google::protobuf::internal::SCCInfo<1> scc_info_WorkflowUpdateRequest_flyteidl_2fadmin_2fworkflow_2eproto = - {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 1, InitDefaultsWorkflowUpdateRequest_flyteidl_2fadmin_2fworkflow_2eproto}, { - &scc_info_Identifier_flyteidl_2fcore_2fidentifier_2eproto.base,}}; - -static void InitDefaultsWorkflowUpdateResponse_flyteidl_2fadmin_2fworkflow_2eproto() { - GOOGLE_PROTOBUF_VERIFY_VERSION; - - { - void* ptr = &::flyteidl::admin::_WorkflowUpdateResponse_default_instance_; - new (ptr) ::flyteidl::admin::WorkflowUpdateResponse(); - ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); - } - ::flyteidl::admin::WorkflowUpdateResponse::InitAsDefaultInstance(); -} - -::google::protobuf::internal::SCCInfo<0> scc_info_WorkflowUpdateResponse_flyteidl_2fadmin_2fworkflow_2eproto = - {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsWorkflowUpdateResponse_flyteidl_2fadmin_2fworkflow_2eproto}, {}}; - void InitDefaults_flyteidl_2fadmin_2fworkflow_2eproto() { ::google::protobuf::internal::InitSCC(&scc_info_WorkflowCreateRequest_flyteidl_2fadmin_2fworkflow_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_WorkflowCreateResponse_flyteidl_2fadmin_2fworkflow_2eproto.base); @@ -187,12 +150,10 @@ void InitDefaults_flyteidl_2fadmin_2fworkflow_2eproto() { ::google::protobuf::internal::InitSCC(&scc_info_WorkflowList_flyteidl_2fadmin_2fworkflow_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_WorkflowSpec_flyteidl_2fadmin_2fworkflow_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_WorkflowClosure_flyteidl_2fadmin_2fworkflow_2eproto.base); - ::google::protobuf::internal::InitSCC(&scc_info_WorkflowUpdateRequest_flyteidl_2fadmin_2fworkflow_2eproto.base); - ::google::protobuf::internal::InitSCC(&scc_info_WorkflowUpdateResponse_flyteidl_2fadmin_2fworkflow_2eproto.base); } -::google::protobuf::Metadata file_level_metadata_flyteidl_2fadmin_2fworkflow_2eproto[8]; -const ::google::protobuf::EnumDescriptor* file_level_enum_descriptors_flyteidl_2fadmin_2fworkflow_2eproto[1]; +::google::protobuf::Metadata file_level_metadata_flyteidl_2fadmin_2fworkflow_2eproto[6]; +constexpr ::google::protobuf::EnumDescriptor const** file_level_enum_descriptors_flyteidl_2fadmin_2fworkflow_2eproto = nullptr; constexpr ::google::protobuf::ServiceDescriptor const** file_level_service_descriptors_flyteidl_2fadmin_2fworkflow_2eproto = nullptr; const ::google::protobuf::uint32 TableStruct_flyteidl_2fadmin_2fworkflow_2eproto::offsets[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = { @@ -236,18 +197,6 @@ const ::google::protobuf::uint32 TableStruct_flyteidl_2fadmin_2fworkflow_2eproto ~0u, // no _weak_field_map_ PROTOBUF_FIELD_OFFSET(::flyteidl::admin::WorkflowClosure, compiled_workflow_), PROTOBUF_FIELD_OFFSET(::flyteidl::admin::WorkflowClosure, created_at_), - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::flyteidl::admin::WorkflowUpdateRequest, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - PROTOBUF_FIELD_OFFSET(::flyteidl::admin::WorkflowUpdateRequest, id_), - PROTOBUF_FIELD_OFFSET(::flyteidl::admin::WorkflowUpdateRequest, state_), - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::flyteidl::admin::WorkflowUpdateResponse, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ }; static const ::google::protobuf::internal::MigrationSchema schemas[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = { { 0, -1, sizeof(::flyteidl::admin::WorkflowCreateRequest)}, @@ -256,8 +205,6 @@ static const ::google::protobuf::internal::MigrationSchema schemas[] PROTOBUF_SE { 19, -1, sizeof(::flyteidl::admin::WorkflowList)}, { 26, -1, sizeof(::flyteidl::admin::WorkflowSpec)}, { 33, -1, sizeof(::flyteidl::admin::WorkflowClosure)}, - { 40, -1, sizeof(::flyteidl::admin::WorkflowUpdateRequest)}, - { 47, -1, sizeof(::flyteidl::admin::WorkflowUpdateResponse)}, }; static ::google::protobuf::Message const * const file_default_instances[] = { @@ -267,14 +214,12 @@ static ::google::protobuf::Message const * const file_default_instances[] = { reinterpret_cast(&::flyteidl::admin::_WorkflowList_default_instance_), reinterpret_cast(&::flyteidl::admin::_WorkflowSpec_default_instance_), reinterpret_cast(&::flyteidl::admin::_WorkflowClosure_default_instance_), - reinterpret_cast(&::flyteidl::admin::_WorkflowUpdateRequest_default_instance_), - reinterpret_cast(&::flyteidl::admin::_WorkflowUpdateResponse_default_instance_), }; ::google::protobuf::internal::AssignDescriptorsTable assign_descriptors_table_flyteidl_2fadmin_2fworkflow_2eproto = { {}, AddDescriptors_flyteidl_2fadmin_2fworkflow_2eproto, "flyteidl/admin/workflow.proto", schemas, file_default_instances, TableStruct_flyteidl_2fadmin_2fworkflow_2eproto::offsets, - file_level_metadata_flyteidl_2fadmin_2fworkflow_2eproto, 8, file_level_enum_descriptors_flyteidl_2fadmin_2fworkflow_2eproto, file_level_service_descriptors_flyteidl_2fadmin_2fworkflow_2eproto, + file_level_metadata_flyteidl_2fadmin_2fworkflow_2eproto, 6, file_level_enum_descriptors_flyteidl_2fadmin_2fworkflow_2eproto, file_level_service_descriptors_flyteidl_2fadmin_2fworkflow_2eproto, }; const char descriptor_table_protodef_flyteidl_2fadmin_2fworkflow_2eproto[] = @@ -297,18 +242,13 @@ const char descriptor_table_protodef_flyteidl_2fadmin_2fworkflow_2eproto[] = "WorkflowClosure\022A\n\021compiled_workflow\030\001 \001" "(\0132&.flyteidl.core.CompiledWorkflowClosu" "re\022.\n\ncreated_at\030\002 \001(\0132\032.google.protobuf" - ".Timestamp\"l\n\025WorkflowUpdateRequest\022%\n\002i" - "d\030\001 \001(\0132\031.flyteidl.core.Identifier\022,\n\005st" - "ate\030\002 \001(\0162\035.flyteidl.admin.WorkflowState" - "\"\030\n\026WorkflowUpdateResponse*;\n\rWorkflowSt" - "ate\022\023\n\017WORKFLOW_ACTIVE\020\000\022\025\n\021WORKFLOW_ARC" - "HIVED\020\001B3Z1github.com/lyft/flyteidl/gen/" - "pb-go/flyteidl/adminb\006proto3" + ".TimestampB3Z1github.com/lyft/flyteidl/g" + "en/pb-go/flyteidl/adminb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fadmin_2fworkflow_2eproto = { false, InitDefaults_flyteidl_2fadmin_2fworkflow_2eproto, descriptor_table_protodef_flyteidl_2fadmin_2fworkflow_2eproto, - "flyteidl/admin/workflow.proto", &assign_descriptors_table_flyteidl_2fadmin_2fworkflow_2eproto, 1028, + "flyteidl/admin/workflow.proto", &assign_descriptors_table_flyteidl_2fadmin_2fworkflow_2eproto, 831, }; void AddDescriptors_flyteidl_2fadmin_2fworkflow_2eproto() { @@ -327,20 +267,6 @@ void AddDescriptors_flyteidl_2fadmin_2fworkflow_2eproto() { static bool dynamic_init_dummy_flyteidl_2fadmin_2fworkflow_2eproto = []() { AddDescriptors_flyteidl_2fadmin_2fworkflow_2eproto(); return true; }(); namespace flyteidl { namespace admin { -const ::google::protobuf::EnumDescriptor* WorkflowState_descriptor() { - ::google::protobuf::internal::AssignDescriptors(&assign_descriptors_table_flyteidl_2fadmin_2fworkflow_2eproto); - return file_level_enum_descriptors_flyteidl_2fadmin_2fworkflow_2eproto[0]; -} -bool WorkflowState_IsValid(int value) { - switch (value) { - case 0: - case 1: - return true; - default: - return false; - } -} - // =================================================================== @@ -2353,557 +2279,6 @@ ::google::protobuf::Metadata WorkflowClosure::GetMetadata() const { } -// =================================================================== - -void WorkflowUpdateRequest::InitAsDefaultInstance() { - ::flyteidl::admin::_WorkflowUpdateRequest_default_instance_._instance.get_mutable()->id_ = const_cast< ::flyteidl::core::Identifier*>( - ::flyteidl::core::Identifier::internal_default_instance()); -} -class WorkflowUpdateRequest::HasBitSetters { - public: - static const ::flyteidl::core::Identifier& id(const WorkflowUpdateRequest* msg); -}; - -const ::flyteidl::core::Identifier& -WorkflowUpdateRequest::HasBitSetters::id(const WorkflowUpdateRequest* msg) { - return *msg->id_; -} -void WorkflowUpdateRequest::clear_id() { - if (GetArenaNoVirtual() == nullptr && id_ != nullptr) { - delete id_; - } - id_ = nullptr; -} -#if !defined(_MSC_VER) || _MSC_VER >= 1900 -const int WorkflowUpdateRequest::kIdFieldNumber; -const int WorkflowUpdateRequest::kStateFieldNumber; -#endif // !defined(_MSC_VER) || _MSC_VER >= 1900 - -WorkflowUpdateRequest::WorkflowUpdateRequest() - : ::google::protobuf::Message(), _internal_metadata_(nullptr) { - SharedCtor(); - // @@protoc_insertion_point(constructor:flyteidl.admin.WorkflowUpdateRequest) -} -WorkflowUpdateRequest::WorkflowUpdateRequest(const WorkflowUpdateRequest& from) - : ::google::protobuf::Message(), - _internal_metadata_(nullptr) { - _internal_metadata_.MergeFrom(from._internal_metadata_); - if (from.has_id()) { - id_ = new ::flyteidl::core::Identifier(*from.id_); - } else { - id_ = nullptr; - } - state_ = from.state_; - // @@protoc_insertion_point(copy_constructor:flyteidl.admin.WorkflowUpdateRequest) -} - -void WorkflowUpdateRequest::SharedCtor() { - ::google::protobuf::internal::InitSCC( - &scc_info_WorkflowUpdateRequest_flyteidl_2fadmin_2fworkflow_2eproto.base); - ::memset(&id_, 0, static_cast( - reinterpret_cast(&state_) - - reinterpret_cast(&id_)) + sizeof(state_)); -} - -WorkflowUpdateRequest::~WorkflowUpdateRequest() { - // @@protoc_insertion_point(destructor:flyteidl.admin.WorkflowUpdateRequest) - SharedDtor(); -} - -void WorkflowUpdateRequest::SharedDtor() { - if (this != internal_default_instance()) delete id_; -} - -void WorkflowUpdateRequest::SetCachedSize(int size) const { - _cached_size_.Set(size); -} -const WorkflowUpdateRequest& WorkflowUpdateRequest::default_instance() { - ::google::protobuf::internal::InitSCC(&::scc_info_WorkflowUpdateRequest_flyteidl_2fadmin_2fworkflow_2eproto.base); - return *internal_default_instance(); -} - - -void WorkflowUpdateRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:flyteidl.admin.WorkflowUpdateRequest) - ::google::protobuf::uint32 cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - if (GetArenaNoVirtual() == nullptr && id_ != nullptr) { - delete id_; - } - id_ = nullptr; - state_ = 0; - _internal_metadata_.Clear(); -} - -#if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER -const char* WorkflowUpdateRequest::_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) { - // .flyteidl.core.Identifier id = 1; - case 1: { - if (static_cast<::google::protobuf::uint8>(tag) != 10) goto handle_unusual; - ptr = ::google::protobuf::io::ReadSize(ptr, &size); - GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); - parser_till_end = ::flyteidl::core::Identifier::_InternalParse; - object = msg->mutable_id(); - 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; - } - // .flyteidl.admin.WorkflowState state = 2; - case 2: { - if (static_cast<::google::protobuf::uint8>(tag) != 16) goto handle_unusual; - ::google::protobuf::uint64 val = ::google::protobuf::internal::ReadVarint(&ptr); - msg->set_state(static_cast<::flyteidl::admin::WorkflowState>(val)); - 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; -len_delim_till_end: - return ctx->StoreAndTailCall(ptr, end, {_InternalParse, msg}, - {parser_till_end, object}, size); -} -#else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER -bool WorkflowUpdateRequest::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.WorkflowUpdateRequest) - 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)) { - // .flyteidl.core.Identifier id = 1; - case 1: { - if (static_cast< ::google::protobuf::uint8>(tag) == (10 & 0xFF)) { - DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( - input, mutable_id())); - } else { - goto handle_unusual; - } - break; - } - - // .flyteidl.admin.WorkflowState state = 2; - case 2: { - if (static_cast< ::google::protobuf::uint8>(tag) == (16 & 0xFF)) { - int value = 0; - DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< - int, ::google::protobuf::internal::WireFormatLite::TYPE_ENUM>( - input, &value))); - set_state(static_cast< ::flyteidl::admin::WorkflowState >(value)); - } 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.WorkflowUpdateRequest) - return true; -failure: - // @@protoc_insertion_point(parse_failure:flyteidl.admin.WorkflowUpdateRequest) - return false; -#undef DO_ -} -#endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER - -void WorkflowUpdateRequest::SerializeWithCachedSizes( - ::google::protobuf::io::CodedOutputStream* output) const { - // @@protoc_insertion_point(serialize_start:flyteidl.admin.WorkflowUpdateRequest) - ::google::protobuf::uint32 cached_has_bits = 0; - (void) cached_has_bits; - - // .flyteidl.core.Identifier id = 1; - if (this->has_id()) { - ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( - 1, HasBitSetters::id(this), output); - } - - // .flyteidl.admin.WorkflowState state = 2; - if (this->state() != 0) { - ::google::protobuf::internal::WireFormatLite::WriteEnum( - 2, this->state(), output); - } - - if (_internal_metadata_.have_unknown_fields()) { - ::google::protobuf::internal::WireFormat::SerializeUnknownFields( - _internal_metadata_.unknown_fields(), output); - } - // @@protoc_insertion_point(serialize_end:flyteidl.admin.WorkflowUpdateRequest) -} - -::google::protobuf::uint8* WorkflowUpdateRequest::InternalSerializeWithCachedSizesToArray( - ::google::protobuf::uint8* target) const { - // @@protoc_insertion_point(serialize_to_array_start:flyteidl.admin.WorkflowUpdateRequest) - ::google::protobuf::uint32 cached_has_bits = 0; - (void) cached_has_bits; - - // .flyteidl.core.Identifier id = 1; - if (this->has_id()) { - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessageToArray( - 1, HasBitSetters::id(this), target); - } - - // .flyteidl.admin.WorkflowState state = 2; - if (this->state() != 0) { - target = ::google::protobuf::internal::WireFormatLite::WriteEnumToArray( - 2, this->state(), 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.WorkflowUpdateRequest) - return target; -} - -size_t WorkflowUpdateRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:flyteidl.admin.WorkflowUpdateRequest) - 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; - - // .flyteidl.core.Identifier id = 1; - if (this->has_id()) { - total_size += 1 + - ::google::protobuf::internal::WireFormatLite::MessageSize( - *id_); - } - - // .flyteidl.admin.WorkflowState state = 2; - if (this->state() != 0) { - total_size += 1 + - ::google::protobuf::internal::WireFormatLite::EnumSize(this->state()); - } - - int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); - SetCachedSize(cached_size); - return total_size; -} - -void WorkflowUpdateRequest::MergeFrom(const ::google::protobuf::Message& from) { -// @@protoc_insertion_point(generalized_merge_from_start:flyteidl.admin.WorkflowUpdateRequest) - GOOGLE_DCHECK_NE(&from, this); - const WorkflowUpdateRequest* source = - ::google::protobuf::DynamicCastToGenerated( - &from); - if (source == nullptr) { - // @@protoc_insertion_point(generalized_merge_from_cast_fail:flyteidl.admin.WorkflowUpdateRequest) - ::google::protobuf::internal::ReflectionOps::Merge(from, this); - } else { - // @@protoc_insertion_point(generalized_merge_from_cast_success:flyteidl.admin.WorkflowUpdateRequest) - MergeFrom(*source); - } -} - -void WorkflowUpdateRequest::MergeFrom(const WorkflowUpdateRequest& from) { -// @@protoc_insertion_point(class_specific_merge_from_start:flyteidl.admin.WorkflowUpdateRequest) - GOOGLE_DCHECK_NE(&from, this); - _internal_metadata_.MergeFrom(from._internal_metadata_); - ::google::protobuf::uint32 cached_has_bits = 0; - (void) cached_has_bits; - - if (from.has_id()) { - mutable_id()->::flyteidl::core::Identifier::MergeFrom(from.id()); - } - if (from.state() != 0) { - set_state(from.state()); - } -} - -void WorkflowUpdateRequest::CopyFrom(const ::google::protobuf::Message& from) { -// @@protoc_insertion_point(generalized_copy_from_start:flyteidl.admin.WorkflowUpdateRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - -void WorkflowUpdateRequest::CopyFrom(const WorkflowUpdateRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:flyteidl.admin.WorkflowUpdateRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - -bool WorkflowUpdateRequest::IsInitialized() const { - return true; -} - -void WorkflowUpdateRequest::Swap(WorkflowUpdateRequest* other) { - if (other == this) return; - InternalSwap(other); -} -void WorkflowUpdateRequest::InternalSwap(WorkflowUpdateRequest* other) { - using std::swap; - _internal_metadata_.Swap(&other->_internal_metadata_); - swap(id_, other->id_); - swap(state_, other->state_); -} - -::google::protobuf::Metadata WorkflowUpdateRequest::GetMetadata() const { - ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_flyteidl_2fadmin_2fworkflow_2eproto); - return ::file_level_metadata_flyteidl_2fadmin_2fworkflow_2eproto[kIndexInFileMessages]; -} - - -// =================================================================== - -void WorkflowUpdateResponse::InitAsDefaultInstance() { -} -class WorkflowUpdateResponse::HasBitSetters { - public: -}; - -#if !defined(_MSC_VER) || _MSC_VER >= 1900 -#endif // !defined(_MSC_VER) || _MSC_VER >= 1900 - -WorkflowUpdateResponse::WorkflowUpdateResponse() - : ::google::protobuf::Message(), _internal_metadata_(nullptr) { - SharedCtor(); - // @@protoc_insertion_point(constructor:flyteidl.admin.WorkflowUpdateResponse) -} -WorkflowUpdateResponse::WorkflowUpdateResponse(const WorkflowUpdateResponse& from) - : ::google::protobuf::Message(), - _internal_metadata_(nullptr) { - _internal_metadata_.MergeFrom(from._internal_metadata_); - // @@protoc_insertion_point(copy_constructor:flyteidl.admin.WorkflowUpdateResponse) -} - -void WorkflowUpdateResponse::SharedCtor() { -} - -WorkflowUpdateResponse::~WorkflowUpdateResponse() { - // @@protoc_insertion_point(destructor:flyteidl.admin.WorkflowUpdateResponse) - SharedDtor(); -} - -void WorkflowUpdateResponse::SharedDtor() { -} - -void WorkflowUpdateResponse::SetCachedSize(int size) const { - _cached_size_.Set(size); -} -const WorkflowUpdateResponse& WorkflowUpdateResponse::default_instance() { - ::google::protobuf::internal::InitSCC(&::scc_info_WorkflowUpdateResponse_flyteidl_2fadmin_2fworkflow_2eproto.base); - return *internal_default_instance(); -} - - -void WorkflowUpdateResponse::Clear() { -// @@protoc_insertion_point(message_clear_start:flyteidl.admin.WorkflowUpdateResponse) - ::google::protobuf::uint32 cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _internal_metadata_.Clear(); -} - -#if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER -const char* WorkflowUpdateResponse::_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) { - default: { - 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 WorkflowUpdateResponse::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.WorkflowUpdateResponse) - for (;;) { - ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); - tag = p.first; - if (!p.second) goto handle_unusual; - handle_unusual: - if (tag == 0) { - goto success; - } - DO_(::google::protobuf::internal::WireFormat::SkipField( - input, tag, _internal_metadata_.mutable_unknown_fields())); - } -success: - // @@protoc_insertion_point(parse_success:flyteidl.admin.WorkflowUpdateResponse) - return true; -failure: - // @@protoc_insertion_point(parse_failure:flyteidl.admin.WorkflowUpdateResponse) - return false; -#undef DO_ -} -#endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER - -void WorkflowUpdateResponse::SerializeWithCachedSizes( - ::google::protobuf::io::CodedOutputStream* output) const { - // @@protoc_insertion_point(serialize_start:flyteidl.admin.WorkflowUpdateResponse) - ::google::protobuf::uint32 cached_has_bits = 0; - (void) cached_has_bits; - - if (_internal_metadata_.have_unknown_fields()) { - ::google::protobuf::internal::WireFormat::SerializeUnknownFields( - _internal_metadata_.unknown_fields(), output); - } - // @@protoc_insertion_point(serialize_end:flyteidl.admin.WorkflowUpdateResponse) -} - -::google::protobuf::uint8* WorkflowUpdateResponse::InternalSerializeWithCachedSizesToArray( - ::google::protobuf::uint8* target) const { - // @@protoc_insertion_point(serialize_to_array_start:flyteidl.admin.WorkflowUpdateResponse) - ::google::protobuf::uint32 cached_has_bits = 0; - (void) cached_has_bits; - - 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.WorkflowUpdateResponse) - return target; -} - -size_t WorkflowUpdateResponse::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:flyteidl.admin.WorkflowUpdateResponse) - 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; - - int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); - SetCachedSize(cached_size); - return total_size; -} - -void WorkflowUpdateResponse::MergeFrom(const ::google::protobuf::Message& from) { -// @@protoc_insertion_point(generalized_merge_from_start:flyteidl.admin.WorkflowUpdateResponse) - GOOGLE_DCHECK_NE(&from, this); - const WorkflowUpdateResponse* source = - ::google::protobuf::DynamicCastToGenerated( - &from); - if (source == nullptr) { - // @@protoc_insertion_point(generalized_merge_from_cast_fail:flyteidl.admin.WorkflowUpdateResponse) - ::google::protobuf::internal::ReflectionOps::Merge(from, this); - } else { - // @@protoc_insertion_point(generalized_merge_from_cast_success:flyteidl.admin.WorkflowUpdateResponse) - MergeFrom(*source); - } -} - -void WorkflowUpdateResponse::MergeFrom(const WorkflowUpdateResponse& from) { -// @@protoc_insertion_point(class_specific_merge_from_start:flyteidl.admin.WorkflowUpdateResponse) - GOOGLE_DCHECK_NE(&from, this); - _internal_metadata_.MergeFrom(from._internal_metadata_); - ::google::protobuf::uint32 cached_has_bits = 0; - (void) cached_has_bits; - -} - -void WorkflowUpdateResponse::CopyFrom(const ::google::protobuf::Message& from) { -// @@protoc_insertion_point(generalized_copy_from_start:flyteidl.admin.WorkflowUpdateResponse) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - -void WorkflowUpdateResponse::CopyFrom(const WorkflowUpdateResponse& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:flyteidl.admin.WorkflowUpdateResponse) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - -bool WorkflowUpdateResponse::IsInitialized() const { - return true; -} - -void WorkflowUpdateResponse::Swap(WorkflowUpdateResponse* other) { - if (other == this) return; - InternalSwap(other); -} -void WorkflowUpdateResponse::InternalSwap(WorkflowUpdateResponse* other) { - using std::swap; - _internal_metadata_.Swap(&other->_internal_metadata_); -} - -::google::protobuf::Metadata WorkflowUpdateResponse::GetMetadata() const { - ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_flyteidl_2fadmin_2fworkflow_2eproto); - return ::file_level_metadata_flyteidl_2fadmin_2fworkflow_2eproto[kIndexInFileMessages]; -} - - // @@protoc_insertion_point(namespace_scope) } // namespace admin } // namespace flyteidl @@ -2927,12 +2302,6 @@ template<> PROTOBUF_NOINLINE ::flyteidl::admin::WorkflowSpec* Arena::CreateMaybe template<> PROTOBUF_NOINLINE ::flyteidl::admin::WorkflowClosure* Arena::CreateMaybeMessage< ::flyteidl::admin::WorkflowClosure >(Arena* arena) { return Arena::CreateInternal< ::flyteidl::admin::WorkflowClosure >(arena); } -template<> PROTOBUF_NOINLINE ::flyteidl::admin::WorkflowUpdateRequest* Arena::CreateMaybeMessage< ::flyteidl::admin::WorkflowUpdateRequest >(Arena* arena) { - return Arena::CreateInternal< ::flyteidl::admin::WorkflowUpdateRequest >(arena); -} -template<> PROTOBUF_NOINLINE ::flyteidl::admin::WorkflowUpdateResponse* Arena::CreateMaybeMessage< ::flyteidl::admin::WorkflowUpdateResponse >(Arena* arena) { - return Arena::CreateInternal< ::flyteidl::admin::WorkflowUpdateResponse >(arena); -} } // namespace protobuf } // namespace google diff --git a/flyteidl/gen/pb-cpp/flyteidl/admin/workflow.pb.h b/flyteidl/gen/pb-cpp/flyteidl/admin/workflow.pb.h index 788d5a1f05..c159a4bf72 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/admin/workflow.pb.h +++ b/flyteidl/gen/pb-cpp/flyteidl/admin/workflow.pb.h @@ -30,7 +30,6 @@ #include #include // IWYU pragma: export #include // IWYU pragma: export -#include #include #include "flyteidl/core/compiler.pb.h" #include "flyteidl/core/identifier.pb.h" @@ -47,7 +46,7 @@ struct TableStruct_flyteidl_2fadmin_2fworkflow_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[8] + static const ::google::protobuf::internal::ParseTable schema[6] PROTOBUF_SECTION_VARIABLE(protodesc_cold); static const ::google::protobuf::internal::FieldMetadata field_metadata[]; static const ::google::protobuf::internal::SerializationTable serialization_table[]; @@ -74,12 +73,6 @@ extern WorkflowListDefaultTypeInternal _WorkflowList_default_instance_; class WorkflowSpec; class WorkflowSpecDefaultTypeInternal; extern WorkflowSpecDefaultTypeInternal _WorkflowSpec_default_instance_; -class WorkflowUpdateRequest; -class WorkflowUpdateRequestDefaultTypeInternal; -extern WorkflowUpdateRequestDefaultTypeInternal _WorkflowUpdateRequest_default_instance_; -class WorkflowUpdateResponse; -class WorkflowUpdateResponseDefaultTypeInternal; -extern WorkflowUpdateResponseDefaultTypeInternal _WorkflowUpdateResponse_default_instance_; } // namespace admin } // namespace flyteidl namespace google { @@ -90,34 +83,11 @@ template<> ::flyteidl::admin::WorkflowCreateRequest* Arena::CreateMaybeMessage<: template<> ::flyteidl::admin::WorkflowCreateResponse* Arena::CreateMaybeMessage<::flyteidl::admin::WorkflowCreateResponse>(Arena*); template<> ::flyteidl::admin::WorkflowList* Arena::CreateMaybeMessage<::flyteidl::admin::WorkflowList>(Arena*); template<> ::flyteidl::admin::WorkflowSpec* Arena::CreateMaybeMessage<::flyteidl::admin::WorkflowSpec>(Arena*); -template<> ::flyteidl::admin::WorkflowUpdateRequest* Arena::CreateMaybeMessage<::flyteidl::admin::WorkflowUpdateRequest>(Arena*); -template<> ::flyteidl::admin::WorkflowUpdateResponse* Arena::CreateMaybeMessage<::flyteidl::admin::WorkflowUpdateResponse>(Arena*); } // namespace protobuf } // namespace google namespace flyteidl { namespace admin { -enum WorkflowState { - WORKFLOW_ACTIVE = 0, - WORKFLOW_ARCHIVED = 1, - WorkflowState_INT_MIN_SENTINEL_DO_NOT_USE_ = std::numeric_limits<::google::protobuf::int32>::min(), - WorkflowState_INT_MAX_SENTINEL_DO_NOT_USE_ = std::numeric_limits<::google::protobuf::int32>::max() -}; -bool WorkflowState_IsValid(int value); -const WorkflowState WorkflowState_MIN = WORKFLOW_ACTIVE; -const WorkflowState WorkflowState_MAX = WORKFLOW_ARCHIVED; -const int WorkflowState_ARRAYSIZE = WorkflowState_MAX + 1; - -const ::google::protobuf::EnumDescriptor* WorkflowState_descriptor(); -inline const ::std::string& WorkflowState_Name(WorkflowState value) { - return ::google::protobuf::internal::NameOfEnum( - WorkflowState_descriptor(), value); -} -inline bool WorkflowState_Parse( - const ::std::string& name, WorkflowState* value) { - return ::google::protobuf::internal::ParseNamedEnum( - WorkflowState_descriptor(), name, value); -} // =================================================================== class WorkflowCreateRequest final : @@ -859,233 +829,6 @@ class WorkflowClosure final : mutable ::google::protobuf::internal::CachedSize _cached_size_; friend struct ::TableStruct_flyteidl_2fadmin_2fworkflow_2eproto; }; -// ------------------------------------------------------------------- - -class WorkflowUpdateRequest final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:flyteidl.admin.WorkflowUpdateRequest) */ { - public: - WorkflowUpdateRequest(); - virtual ~WorkflowUpdateRequest(); - - WorkflowUpdateRequest(const WorkflowUpdateRequest& from); - - inline WorkflowUpdateRequest& operator=(const WorkflowUpdateRequest& from) { - CopyFrom(from); - return *this; - } - #if LANG_CXX11 - WorkflowUpdateRequest(WorkflowUpdateRequest&& from) noexcept - : WorkflowUpdateRequest() { - *this = ::std::move(from); - } - - inline WorkflowUpdateRequest& operator=(WorkflowUpdateRequest&& 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 WorkflowUpdateRequest& default_instance(); - - static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY - static inline const WorkflowUpdateRequest* internal_default_instance() { - return reinterpret_cast( - &_WorkflowUpdateRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = - 6; - - void Swap(WorkflowUpdateRequest* other); - friend void swap(WorkflowUpdateRequest& a, WorkflowUpdateRequest& b) { - a.Swap(&b); - } - - // implements Message ---------------------------------------------- - - inline WorkflowUpdateRequest* New() const final { - return CreateMaybeMessage(nullptr); - } - - WorkflowUpdateRequest* 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 WorkflowUpdateRequest& from); - void MergeFrom(const WorkflowUpdateRequest& 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(WorkflowUpdateRequest* 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 ------------------------------------------------------- - - // .flyteidl.core.Identifier id = 1; - bool has_id() const; - void clear_id(); - static const int kIdFieldNumber = 1; - const ::flyteidl::core::Identifier& id() const; - ::flyteidl::core::Identifier* release_id(); - ::flyteidl::core::Identifier* mutable_id(); - void set_allocated_id(::flyteidl::core::Identifier* id); - - // .flyteidl.admin.WorkflowState state = 2; - void clear_state(); - static const int kStateFieldNumber = 2; - ::flyteidl::admin::WorkflowState state() const; - void set_state(::flyteidl::admin::WorkflowState value); - - // @@protoc_insertion_point(class_scope:flyteidl.admin.WorkflowUpdateRequest) - private: - class HasBitSetters; - - ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; - ::flyteidl::core::Identifier* id_; - int state_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - friend struct ::TableStruct_flyteidl_2fadmin_2fworkflow_2eproto; -}; -// ------------------------------------------------------------------- - -class WorkflowUpdateResponse final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:flyteidl.admin.WorkflowUpdateResponse) */ { - public: - WorkflowUpdateResponse(); - virtual ~WorkflowUpdateResponse(); - - WorkflowUpdateResponse(const WorkflowUpdateResponse& from); - - inline WorkflowUpdateResponse& operator=(const WorkflowUpdateResponse& from) { - CopyFrom(from); - return *this; - } - #if LANG_CXX11 - WorkflowUpdateResponse(WorkflowUpdateResponse&& from) noexcept - : WorkflowUpdateResponse() { - *this = ::std::move(from); - } - - inline WorkflowUpdateResponse& operator=(WorkflowUpdateResponse&& 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 WorkflowUpdateResponse& default_instance(); - - static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY - static inline const WorkflowUpdateResponse* internal_default_instance() { - return reinterpret_cast( - &_WorkflowUpdateResponse_default_instance_); - } - static constexpr int kIndexInFileMessages = - 7; - - void Swap(WorkflowUpdateResponse* other); - friend void swap(WorkflowUpdateResponse& a, WorkflowUpdateResponse& b) { - a.Swap(&b); - } - - // implements Message ---------------------------------------------- - - inline WorkflowUpdateResponse* New() const final { - return CreateMaybeMessage(nullptr); - } - - WorkflowUpdateResponse* 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 WorkflowUpdateResponse& from); - void MergeFrom(const WorkflowUpdateResponse& 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(WorkflowUpdateResponse* 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 ------------------------------------------------------- - - // @@protoc_insertion_point(class_scope:flyteidl.admin.WorkflowUpdateResponse) - private: - class HasBitSetters; - - ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - friend struct ::TableStruct_flyteidl_2fadmin_2fworkflow_2eproto; -}; // =================================================================== @@ -1555,73 +1298,6 @@ inline void WorkflowClosure::set_allocated_created_at(::google::protobuf::Timest // @@protoc_insertion_point(field_set_allocated:flyteidl.admin.WorkflowClosure.created_at) } -// ------------------------------------------------------------------- - -// WorkflowUpdateRequest - -// .flyteidl.core.Identifier id = 1; -inline bool WorkflowUpdateRequest::has_id() const { - return this != internal_default_instance() && id_ != nullptr; -} -inline const ::flyteidl::core::Identifier& WorkflowUpdateRequest::id() const { - const ::flyteidl::core::Identifier* p = id_; - // @@protoc_insertion_point(field_get:flyteidl.admin.WorkflowUpdateRequest.id) - return p != nullptr ? *p : *reinterpret_cast( - &::flyteidl::core::_Identifier_default_instance_); -} -inline ::flyteidl::core::Identifier* WorkflowUpdateRequest::release_id() { - // @@protoc_insertion_point(field_release:flyteidl.admin.WorkflowUpdateRequest.id) - - ::flyteidl::core::Identifier* temp = id_; - id_ = nullptr; - return temp; -} -inline ::flyteidl::core::Identifier* WorkflowUpdateRequest::mutable_id() { - - if (id_ == nullptr) { - auto* p = CreateMaybeMessage<::flyteidl::core::Identifier>(GetArenaNoVirtual()); - id_ = p; - } - // @@protoc_insertion_point(field_mutable:flyteidl.admin.WorkflowUpdateRequest.id) - return id_; -} -inline void WorkflowUpdateRequest::set_allocated_id(::flyteidl::core::Identifier* id) { - ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); - if (message_arena == nullptr) { - delete reinterpret_cast< ::google::protobuf::MessageLite*>(id_); - } - if (id) { - ::google::protobuf::Arena* submessage_arena = nullptr; - if (message_arena != submessage_arena) { - id = ::google::protobuf::internal::GetOwnedMessage( - message_arena, id, submessage_arena); - } - - } else { - - } - id_ = id; - // @@protoc_insertion_point(field_set_allocated:flyteidl.admin.WorkflowUpdateRequest.id) -} - -// .flyteidl.admin.WorkflowState state = 2; -inline void WorkflowUpdateRequest::clear_state() { - state_ = 0; -} -inline ::flyteidl::admin::WorkflowState WorkflowUpdateRequest::state() const { - // @@protoc_insertion_point(field_get:flyteidl.admin.WorkflowUpdateRequest.state) - return static_cast< ::flyteidl::admin::WorkflowState >(state_); -} -inline void WorkflowUpdateRequest::set_state(::flyteidl::admin::WorkflowState value) { - - state_ = value; - // @@protoc_insertion_point(field_set:flyteidl.admin.WorkflowUpdateRequest.state) -} - -// ------------------------------------------------------------------- - -// WorkflowUpdateResponse - #ifdef __GNUC__ #pragma GCC diagnostic pop #endif // __GNUC__ @@ -1635,28 +1311,12 @@ inline void WorkflowUpdateRequest::set_state(::flyteidl::admin::WorkflowState va // ------------------------------------------------------------------- -// ------------------------------------------------------------------- - -// ------------------------------------------------------------------- - // @@protoc_insertion_point(namespace_scope) } // namespace admin } // namespace flyteidl -namespace google { -namespace protobuf { - -template <> struct is_proto_enum< ::flyteidl::admin::WorkflowState> : ::std::true_type {}; -template <> -inline const EnumDescriptor* GetEnumDescriptor< ::flyteidl::admin::WorkflowState>() { - return ::flyteidl::admin::WorkflowState_descriptor(); -} - -} // namespace protobuf -} // namespace google - // @@protoc_insertion_point(global_scope) #include diff --git a/flyteidl/gen/pb-cpp/flyteidl/service/admin.grpc.pb.cc b/flyteidl/gen/pb-cpp/flyteidl/service/admin.grpc.pb.cc index 7a1d961c3b..6528ed9f5b 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/service/admin.grpc.pb.cc +++ b/flyteidl/gen/pb-cpp/flyteidl/service/admin.grpc.pb.cc @@ -28,7 +28,6 @@ static const char* AdminService_method_names[] = { "/flyteidl.service.AdminService/GetWorkflow", "/flyteidl.service.AdminService/ListWorkflowIds", "/flyteidl.service.AdminService/ListWorkflows", - "/flyteidl.service.AdminService/UpdateWorkflow", "/flyteidl.service.AdminService/CreateLaunchPlan", "/flyteidl.service.AdminService/GetLaunchPlan", "/flyteidl.service.AdminService/GetActiveLaunchPlan", @@ -81,42 +80,41 @@ AdminService::Stub::Stub(const std::shared_ptr< ::grpc::ChannelInterface>& chann , rpcmethod_GetWorkflow_(AdminService_method_names[5], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) , rpcmethod_ListWorkflowIds_(AdminService_method_names[6], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) , rpcmethod_ListWorkflows_(AdminService_method_names[7], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_UpdateWorkflow_(AdminService_method_names[8], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_CreateLaunchPlan_(AdminService_method_names[9], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_GetLaunchPlan_(AdminService_method_names[10], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_GetActiveLaunchPlan_(AdminService_method_names[11], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_ListActiveLaunchPlans_(AdminService_method_names[12], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_ListLaunchPlanIds_(AdminService_method_names[13], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_ListLaunchPlans_(AdminService_method_names[14], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_UpdateLaunchPlan_(AdminService_method_names[15], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_CreateExecution_(AdminService_method_names[16], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_RelaunchExecution_(AdminService_method_names[17], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_GetExecution_(AdminService_method_names[18], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_GetExecutionData_(AdminService_method_names[19], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_ListExecutions_(AdminService_method_names[20], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_TerminateExecution_(AdminService_method_names[21], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_GetNodeExecution_(AdminService_method_names[22], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_ListNodeExecutions_(AdminService_method_names[23], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_ListNodeExecutionsForTask_(AdminService_method_names[24], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_GetNodeExecutionData_(AdminService_method_names[25], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_RegisterProject_(AdminService_method_names[26], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_ListProjects_(AdminService_method_names[27], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_CreateWorkflowEvent_(AdminService_method_names[28], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_CreateNodeEvent_(AdminService_method_names[29], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_CreateTaskEvent_(AdminService_method_names[30], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_GetTaskExecution_(AdminService_method_names[31], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_ListTaskExecutions_(AdminService_method_names[32], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_GetTaskExecutionData_(AdminService_method_names[33], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_UpdateProjectDomainAttributes_(AdminService_method_names[34], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_GetProjectDomainAttributes_(AdminService_method_names[35], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_DeleteProjectDomainAttributes_(AdminService_method_names[36], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_UpdateWorkflowAttributes_(AdminService_method_names[37], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_GetWorkflowAttributes_(AdminService_method_names[38], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_DeleteWorkflowAttributes_(AdminService_method_names[39], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_ListMatchableAttributes_(AdminService_method_names[40], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_ListNamedEntities_(AdminService_method_names[41], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_GetNamedEntity_(AdminService_method_names[42], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_UpdateNamedEntity_(AdminService_method_names[43], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_CreateLaunchPlan_(AdminService_method_names[8], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_GetLaunchPlan_(AdminService_method_names[9], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_GetActiveLaunchPlan_(AdminService_method_names[10], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_ListActiveLaunchPlans_(AdminService_method_names[11], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_ListLaunchPlanIds_(AdminService_method_names[12], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_ListLaunchPlans_(AdminService_method_names[13], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_UpdateLaunchPlan_(AdminService_method_names[14], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_CreateExecution_(AdminService_method_names[15], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_RelaunchExecution_(AdminService_method_names[16], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_GetExecution_(AdminService_method_names[17], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_GetExecutionData_(AdminService_method_names[18], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_ListExecutions_(AdminService_method_names[19], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_TerminateExecution_(AdminService_method_names[20], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_GetNodeExecution_(AdminService_method_names[21], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_ListNodeExecutions_(AdminService_method_names[22], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_ListNodeExecutionsForTask_(AdminService_method_names[23], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_GetNodeExecutionData_(AdminService_method_names[24], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_RegisterProject_(AdminService_method_names[25], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_ListProjects_(AdminService_method_names[26], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_CreateWorkflowEvent_(AdminService_method_names[27], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_CreateNodeEvent_(AdminService_method_names[28], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_CreateTaskEvent_(AdminService_method_names[29], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_GetTaskExecution_(AdminService_method_names[30], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_ListTaskExecutions_(AdminService_method_names[31], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_GetTaskExecutionData_(AdminService_method_names[32], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_UpdateProjectDomainAttributes_(AdminService_method_names[33], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_GetProjectDomainAttributes_(AdminService_method_names[34], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_DeleteProjectDomainAttributes_(AdminService_method_names[35], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_UpdateWorkflowAttributes_(AdminService_method_names[36], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_GetWorkflowAttributes_(AdminService_method_names[37], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_DeleteWorkflowAttributes_(AdminService_method_names[38], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_ListMatchableAttributes_(AdminService_method_names[39], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_ListNamedEntities_(AdminService_method_names[40], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_GetNamedEntity_(AdminService_method_names[41], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_UpdateNamedEntity_(AdminService_method_names[42], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) {} ::grpc::Status AdminService::Stub::CreateTask(::grpc::ClientContext* context, const ::flyteidl::admin::TaskCreateRequest& request, ::flyteidl::admin::TaskCreateResponse* response) { @@ -343,34 +341,6 @@ ::grpc::ClientAsyncResponseReader< ::flyteidl::admin::WorkflowList>* AdminServic return ::grpc::internal::ClientAsyncResponseReaderFactory< ::flyteidl::admin::WorkflowList>::Create(channel_.get(), cq, rpcmethod_ListWorkflows_, context, request, false); } -::grpc::Status AdminService::Stub::UpdateWorkflow(::grpc::ClientContext* context, const ::flyteidl::admin::WorkflowUpdateRequest& request, ::flyteidl::admin::WorkflowUpdateResponse* response) { - return ::grpc::internal::BlockingUnaryCall(channel_.get(), rpcmethod_UpdateWorkflow_, context, request, response); -} - -void AdminService::Stub::experimental_async::UpdateWorkflow(::grpc::ClientContext* context, const ::flyteidl::admin::WorkflowUpdateRequest* request, ::flyteidl::admin::WorkflowUpdateResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall(stub_->channel_.get(), stub_->rpcmethod_UpdateWorkflow_, context, request, response, std::move(f)); -} - -void AdminService::Stub::experimental_async::UpdateWorkflow(::grpc::ClientContext* context, const ::grpc::ByteBuffer* request, ::flyteidl::admin::WorkflowUpdateResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall(stub_->channel_.get(), stub_->rpcmethod_UpdateWorkflow_, context, request, response, std::move(f)); -} - -void AdminService::Stub::experimental_async::UpdateWorkflow(::grpc::ClientContext* context, const ::flyteidl::admin::WorkflowUpdateRequest* request, ::flyteidl::admin::WorkflowUpdateResponse* response, ::grpc::experimental::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create(stub_->channel_.get(), stub_->rpcmethod_UpdateWorkflow_, context, request, response, reactor); -} - -void AdminService::Stub::experimental_async::UpdateWorkflow(::grpc::ClientContext* context, const ::grpc::ByteBuffer* request, ::flyteidl::admin::WorkflowUpdateResponse* response, ::grpc::experimental::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create(stub_->channel_.get(), stub_->rpcmethod_UpdateWorkflow_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::flyteidl::admin::WorkflowUpdateResponse>* AdminService::Stub::AsyncUpdateWorkflowRaw(::grpc::ClientContext* context, const ::flyteidl::admin::WorkflowUpdateRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderFactory< ::flyteidl::admin::WorkflowUpdateResponse>::Create(channel_.get(), cq, rpcmethod_UpdateWorkflow_, context, request, true); -} - -::grpc::ClientAsyncResponseReader< ::flyteidl::admin::WorkflowUpdateResponse>* AdminService::Stub::PrepareAsyncUpdateWorkflowRaw(::grpc::ClientContext* context, const ::flyteidl::admin::WorkflowUpdateRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderFactory< ::flyteidl::admin::WorkflowUpdateResponse>::Create(channel_.get(), cq, rpcmethod_UpdateWorkflow_, context, request, false); -} - ::grpc::Status AdminService::Stub::CreateLaunchPlan(::grpc::ClientContext* context, const ::flyteidl::admin::LaunchPlanCreateRequest& request, ::flyteidl::admin::LaunchPlanCreateResponse* response) { return ::grpc::internal::BlockingUnaryCall(channel_.get(), rpcmethod_CreateLaunchPlan_, context, request, response); } @@ -1395,180 +1365,175 @@ AdminService::Service::Service() { AddMethod(new ::grpc::internal::RpcServiceMethod( AdminService_method_names[8], ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< AdminService::Service, ::flyteidl::admin::WorkflowUpdateRequest, ::flyteidl::admin::WorkflowUpdateResponse>( - std::mem_fn(&AdminService::Service::UpdateWorkflow), this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - AdminService_method_names[9], - ::grpc::internal::RpcMethod::NORMAL_RPC, new ::grpc::internal::RpcMethodHandler< AdminService::Service, ::flyteidl::admin::LaunchPlanCreateRequest, ::flyteidl::admin::LaunchPlanCreateResponse>( std::mem_fn(&AdminService::Service::CreateLaunchPlan), this))); AddMethod(new ::grpc::internal::RpcServiceMethod( - AdminService_method_names[10], + AdminService_method_names[9], ::grpc::internal::RpcMethod::NORMAL_RPC, new ::grpc::internal::RpcMethodHandler< AdminService::Service, ::flyteidl::admin::ObjectGetRequest, ::flyteidl::admin::LaunchPlan>( std::mem_fn(&AdminService::Service::GetLaunchPlan), this))); AddMethod(new ::grpc::internal::RpcServiceMethod( - AdminService_method_names[11], + AdminService_method_names[10], ::grpc::internal::RpcMethod::NORMAL_RPC, new ::grpc::internal::RpcMethodHandler< AdminService::Service, ::flyteidl::admin::ActiveLaunchPlanRequest, ::flyteidl::admin::LaunchPlan>( std::mem_fn(&AdminService::Service::GetActiveLaunchPlan), this))); AddMethod(new ::grpc::internal::RpcServiceMethod( - AdminService_method_names[12], + AdminService_method_names[11], ::grpc::internal::RpcMethod::NORMAL_RPC, new ::grpc::internal::RpcMethodHandler< AdminService::Service, ::flyteidl::admin::ActiveLaunchPlanListRequest, ::flyteidl::admin::LaunchPlanList>( std::mem_fn(&AdminService::Service::ListActiveLaunchPlans), this))); AddMethod(new ::grpc::internal::RpcServiceMethod( - AdminService_method_names[13], + AdminService_method_names[12], ::grpc::internal::RpcMethod::NORMAL_RPC, new ::grpc::internal::RpcMethodHandler< AdminService::Service, ::flyteidl::admin::NamedEntityIdentifierListRequest, ::flyteidl::admin::NamedEntityIdentifierList>( std::mem_fn(&AdminService::Service::ListLaunchPlanIds), this))); AddMethod(new ::grpc::internal::RpcServiceMethod( - AdminService_method_names[14], + AdminService_method_names[13], ::grpc::internal::RpcMethod::NORMAL_RPC, new ::grpc::internal::RpcMethodHandler< AdminService::Service, ::flyteidl::admin::ResourceListRequest, ::flyteidl::admin::LaunchPlanList>( std::mem_fn(&AdminService::Service::ListLaunchPlans), this))); AddMethod(new ::grpc::internal::RpcServiceMethod( - AdminService_method_names[15], + AdminService_method_names[14], ::grpc::internal::RpcMethod::NORMAL_RPC, new ::grpc::internal::RpcMethodHandler< AdminService::Service, ::flyteidl::admin::LaunchPlanUpdateRequest, ::flyteidl::admin::LaunchPlanUpdateResponse>( std::mem_fn(&AdminService::Service::UpdateLaunchPlan), this))); AddMethod(new ::grpc::internal::RpcServiceMethod( - AdminService_method_names[16], + AdminService_method_names[15], ::grpc::internal::RpcMethod::NORMAL_RPC, new ::grpc::internal::RpcMethodHandler< AdminService::Service, ::flyteidl::admin::ExecutionCreateRequest, ::flyteidl::admin::ExecutionCreateResponse>( std::mem_fn(&AdminService::Service::CreateExecution), this))); AddMethod(new ::grpc::internal::RpcServiceMethod( - AdminService_method_names[17], + AdminService_method_names[16], ::grpc::internal::RpcMethod::NORMAL_RPC, new ::grpc::internal::RpcMethodHandler< AdminService::Service, ::flyteidl::admin::ExecutionRelaunchRequest, ::flyteidl::admin::ExecutionCreateResponse>( std::mem_fn(&AdminService::Service::RelaunchExecution), this))); AddMethod(new ::grpc::internal::RpcServiceMethod( - AdminService_method_names[18], + AdminService_method_names[17], ::grpc::internal::RpcMethod::NORMAL_RPC, new ::grpc::internal::RpcMethodHandler< AdminService::Service, ::flyteidl::admin::WorkflowExecutionGetRequest, ::flyteidl::admin::Execution>( std::mem_fn(&AdminService::Service::GetExecution), this))); AddMethod(new ::grpc::internal::RpcServiceMethod( - AdminService_method_names[19], + AdminService_method_names[18], ::grpc::internal::RpcMethod::NORMAL_RPC, new ::grpc::internal::RpcMethodHandler< AdminService::Service, ::flyteidl::admin::WorkflowExecutionGetDataRequest, ::flyteidl::admin::WorkflowExecutionGetDataResponse>( std::mem_fn(&AdminService::Service::GetExecutionData), this))); AddMethod(new ::grpc::internal::RpcServiceMethod( - AdminService_method_names[20], + AdminService_method_names[19], ::grpc::internal::RpcMethod::NORMAL_RPC, new ::grpc::internal::RpcMethodHandler< AdminService::Service, ::flyteidl::admin::ResourceListRequest, ::flyteidl::admin::ExecutionList>( std::mem_fn(&AdminService::Service::ListExecutions), this))); AddMethod(new ::grpc::internal::RpcServiceMethod( - AdminService_method_names[21], + AdminService_method_names[20], ::grpc::internal::RpcMethod::NORMAL_RPC, new ::grpc::internal::RpcMethodHandler< AdminService::Service, ::flyteidl::admin::ExecutionTerminateRequest, ::flyteidl::admin::ExecutionTerminateResponse>( std::mem_fn(&AdminService::Service::TerminateExecution), this))); AddMethod(new ::grpc::internal::RpcServiceMethod( - AdminService_method_names[22], + AdminService_method_names[21], ::grpc::internal::RpcMethod::NORMAL_RPC, new ::grpc::internal::RpcMethodHandler< AdminService::Service, ::flyteidl::admin::NodeExecutionGetRequest, ::flyteidl::admin::NodeExecution>( std::mem_fn(&AdminService::Service::GetNodeExecution), this))); AddMethod(new ::grpc::internal::RpcServiceMethod( - AdminService_method_names[23], + AdminService_method_names[22], ::grpc::internal::RpcMethod::NORMAL_RPC, new ::grpc::internal::RpcMethodHandler< AdminService::Service, ::flyteidl::admin::NodeExecutionListRequest, ::flyteidl::admin::NodeExecutionList>( std::mem_fn(&AdminService::Service::ListNodeExecutions), this))); AddMethod(new ::grpc::internal::RpcServiceMethod( - AdminService_method_names[24], + AdminService_method_names[23], ::grpc::internal::RpcMethod::NORMAL_RPC, new ::grpc::internal::RpcMethodHandler< AdminService::Service, ::flyteidl::admin::NodeExecutionForTaskListRequest, ::flyteidl::admin::NodeExecutionList>( std::mem_fn(&AdminService::Service::ListNodeExecutionsForTask), this))); AddMethod(new ::grpc::internal::RpcServiceMethod( - AdminService_method_names[25], + AdminService_method_names[24], ::grpc::internal::RpcMethod::NORMAL_RPC, new ::grpc::internal::RpcMethodHandler< AdminService::Service, ::flyteidl::admin::NodeExecutionGetDataRequest, ::flyteidl::admin::NodeExecutionGetDataResponse>( std::mem_fn(&AdminService::Service::GetNodeExecutionData), this))); AddMethod(new ::grpc::internal::RpcServiceMethod( - AdminService_method_names[26], + AdminService_method_names[25], ::grpc::internal::RpcMethod::NORMAL_RPC, new ::grpc::internal::RpcMethodHandler< AdminService::Service, ::flyteidl::admin::ProjectRegisterRequest, ::flyteidl::admin::ProjectRegisterResponse>( std::mem_fn(&AdminService::Service::RegisterProject), this))); AddMethod(new ::grpc::internal::RpcServiceMethod( - AdminService_method_names[27], + AdminService_method_names[26], ::grpc::internal::RpcMethod::NORMAL_RPC, new ::grpc::internal::RpcMethodHandler< AdminService::Service, ::flyteidl::admin::ProjectListRequest, ::flyteidl::admin::Projects>( std::mem_fn(&AdminService::Service::ListProjects), this))); AddMethod(new ::grpc::internal::RpcServiceMethod( - AdminService_method_names[28], + AdminService_method_names[27], ::grpc::internal::RpcMethod::NORMAL_RPC, new ::grpc::internal::RpcMethodHandler< AdminService::Service, ::flyteidl::admin::WorkflowExecutionEventRequest, ::flyteidl::admin::WorkflowExecutionEventResponse>( std::mem_fn(&AdminService::Service::CreateWorkflowEvent), this))); AddMethod(new ::grpc::internal::RpcServiceMethod( - AdminService_method_names[29], + AdminService_method_names[28], ::grpc::internal::RpcMethod::NORMAL_RPC, new ::grpc::internal::RpcMethodHandler< AdminService::Service, ::flyteidl::admin::NodeExecutionEventRequest, ::flyteidl::admin::NodeExecutionEventResponse>( std::mem_fn(&AdminService::Service::CreateNodeEvent), this))); AddMethod(new ::grpc::internal::RpcServiceMethod( - AdminService_method_names[30], + AdminService_method_names[29], ::grpc::internal::RpcMethod::NORMAL_RPC, new ::grpc::internal::RpcMethodHandler< AdminService::Service, ::flyteidl::admin::TaskExecutionEventRequest, ::flyteidl::admin::TaskExecutionEventResponse>( std::mem_fn(&AdminService::Service::CreateTaskEvent), this))); AddMethod(new ::grpc::internal::RpcServiceMethod( - AdminService_method_names[31], + AdminService_method_names[30], ::grpc::internal::RpcMethod::NORMAL_RPC, new ::grpc::internal::RpcMethodHandler< AdminService::Service, ::flyteidl::admin::TaskExecutionGetRequest, ::flyteidl::admin::TaskExecution>( std::mem_fn(&AdminService::Service::GetTaskExecution), this))); AddMethod(new ::grpc::internal::RpcServiceMethod( - AdminService_method_names[32], + AdminService_method_names[31], ::grpc::internal::RpcMethod::NORMAL_RPC, new ::grpc::internal::RpcMethodHandler< AdminService::Service, ::flyteidl::admin::TaskExecutionListRequest, ::flyteidl::admin::TaskExecutionList>( std::mem_fn(&AdminService::Service::ListTaskExecutions), this))); AddMethod(new ::grpc::internal::RpcServiceMethod( - AdminService_method_names[33], + AdminService_method_names[32], ::grpc::internal::RpcMethod::NORMAL_RPC, new ::grpc::internal::RpcMethodHandler< AdminService::Service, ::flyteidl::admin::TaskExecutionGetDataRequest, ::flyteidl::admin::TaskExecutionGetDataResponse>( std::mem_fn(&AdminService::Service::GetTaskExecutionData), this))); AddMethod(new ::grpc::internal::RpcServiceMethod( - AdminService_method_names[34], + AdminService_method_names[33], ::grpc::internal::RpcMethod::NORMAL_RPC, new ::grpc::internal::RpcMethodHandler< AdminService::Service, ::flyteidl::admin::ProjectDomainAttributesUpdateRequest, ::flyteidl::admin::ProjectDomainAttributesUpdateResponse>( std::mem_fn(&AdminService::Service::UpdateProjectDomainAttributes), this))); AddMethod(new ::grpc::internal::RpcServiceMethod( - AdminService_method_names[35], + AdminService_method_names[34], ::grpc::internal::RpcMethod::NORMAL_RPC, new ::grpc::internal::RpcMethodHandler< AdminService::Service, ::flyteidl::admin::ProjectDomainAttributesGetRequest, ::flyteidl::admin::ProjectDomainAttributesGetResponse>( std::mem_fn(&AdminService::Service::GetProjectDomainAttributes), this))); AddMethod(new ::grpc::internal::RpcServiceMethod( - AdminService_method_names[36], + AdminService_method_names[35], ::grpc::internal::RpcMethod::NORMAL_RPC, new ::grpc::internal::RpcMethodHandler< AdminService::Service, ::flyteidl::admin::ProjectDomainAttributesDeleteRequest, ::flyteidl::admin::ProjectDomainAttributesDeleteResponse>( std::mem_fn(&AdminService::Service::DeleteProjectDomainAttributes), this))); AddMethod(new ::grpc::internal::RpcServiceMethod( - AdminService_method_names[37], + AdminService_method_names[36], ::grpc::internal::RpcMethod::NORMAL_RPC, new ::grpc::internal::RpcMethodHandler< AdminService::Service, ::flyteidl::admin::WorkflowAttributesUpdateRequest, ::flyteidl::admin::WorkflowAttributesUpdateResponse>( std::mem_fn(&AdminService::Service::UpdateWorkflowAttributes), this))); AddMethod(new ::grpc::internal::RpcServiceMethod( - AdminService_method_names[38], + AdminService_method_names[37], ::grpc::internal::RpcMethod::NORMAL_RPC, new ::grpc::internal::RpcMethodHandler< AdminService::Service, ::flyteidl::admin::WorkflowAttributesGetRequest, ::flyteidl::admin::WorkflowAttributesGetResponse>( std::mem_fn(&AdminService::Service::GetWorkflowAttributes), this))); AddMethod(new ::grpc::internal::RpcServiceMethod( - AdminService_method_names[39], + AdminService_method_names[38], ::grpc::internal::RpcMethod::NORMAL_RPC, new ::grpc::internal::RpcMethodHandler< AdminService::Service, ::flyteidl::admin::WorkflowAttributesDeleteRequest, ::flyteidl::admin::WorkflowAttributesDeleteResponse>( std::mem_fn(&AdminService::Service::DeleteWorkflowAttributes), this))); AddMethod(new ::grpc::internal::RpcServiceMethod( - AdminService_method_names[40], + AdminService_method_names[39], ::grpc::internal::RpcMethod::NORMAL_RPC, new ::grpc::internal::RpcMethodHandler< AdminService::Service, ::flyteidl::admin::ListMatchableAttributesRequest, ::flyteidl::admin::ListMatchableAttributesResponse>( std::mem_fn(&AdminService::Service::ListMatchableAttributes), this))); AddMethod(new ::grpc::internal::RpcServiceMethod( - AdminService_method_names[41], + AdminService_method_names[40], ::grpc::internal::RpcMethod::NORMAL_RPC, new ::grpc::internal::RpcMethodHandler< AdminService::Service, ::flyteidl::admin::NamedEntityListRequest, ::flyteidl::admin::NamedEntityList>( std::mem_fn(&AdminService::Service::ListNamedEntities), this))); AddMethod(new ::grpc::internal::RpcServiceMethod( - AdminService_method_names[42], + AdminService_method_names[41], ::grpc::internal::RpcMethod::NORMAL_RPC, new ::grpc::internal::RpcMethodHandler< AdminService::Service, ::flyteidl::admin::NamedEntityGetRequest, ::flyteidl::admin::NamedEntity>( std::mem_fn(&AdminService::Service::GetNamedEntity), this))); AddMethod(new ::grpc::internal::RpcServiceMethod( - AdminService_method_names[43], + AdminService_method_names[42], ::grpc::internal::RpcMethod::NORMAL_RPC, new ::grpc::internal::RpcMethodHandler< AdminService::Service, ::flyteidl::admin::NamedEntityUpdateRequest, ::flyteidl::admin::NamedEntityUpdateResponse>( std::mem_fn(&AdminService::Service::UpdateNamedEntity), this))); @@ -1633,13 +1598,6 @@ ::grpc::Status AdminService::Service::ListWorkflows(::grpc::ServerContext* conte return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } -::grpc::Status AdminService::Service::UpdateWorkflow(::grpc::ServerContext* context, const ::flyteidl::admin::WorkflowUpdateRequest* request, ::flyteidl::admin::WorkflowUpdateResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - ::grpc::Status AdminService::Service::CreateLaunchPlan(::grpc::ServerContext* context, const ::flyteidl::admin::LaunchPlanCreateRequest* request, ::flyteidl::admin::LaunchPlanCreateResponse* response) { (void) context; (void) request; diff --git a/flyteidl/gen/pb-cpp/flyteidl/service/admin.grpc.pb.h b/flyteidl/gen/pb-cpp/flyteidl/service/admin.grpc.pb.h index f5f26f8516..bb29b91a09 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/service/admin.grpc.pb.h +++ b/flyteidl/gen/pb-cpp/flyteidl/service/admin.grpc.pb.h @@ -106,13 +106,6 @@ class AdminService final { std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::flyteidl::admin::WorkflowList>> PrepareAsyncListWorkflows(::grpc::ClientContext* context, const ::flyteidl::admin::ResourceListRequest& request, ::grpc::CompletionQueue* cq) { return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::flyteidl::admin::WorkflowList>>(PrepareAsyncListWorkflowsRaw(context, request, cq)); } - virtual ::grpc::Status UpdateWorkflow(::grpc::ClientContext* context, const ::flyteidl::admin::WorkflowUpdateRequest& request, ::flyteidl::admin::WorkflowUpdateResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::flyteidl::admin::WorkflowUpdateResponse>> AsyncUpdateWorkflow(::grpc::ClientContext* context, const ::flyteidl::admin::WorkflowUpdateRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::flyteidl::admin::WorkflowUpdateResponse>>(AsyncUpdateWorkflowRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::flyteidl::admin::WorkflowUpdateResponse>> PrepareAsyncUpdateWorkflow(::grpc::ClientContext* context, const ::flyteidl::admin::WorkflowUpdateRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::flyteidl::admin::WorkflowUpdateResponse>>(PrepareAsyncUpdateWorkflowRaw(context, request, cq)); - } virtual ::grpc::Status CreateLaunchPlan(::grpc::ClientContext* context, const ::flyteidl::admin::LaunchPlanCreateRequest& request, ::flyteidl::admin::LaunchPlanCreateResponse* response) = 0; std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::flyteidl::admin::LaunchPlanCreateResponse>> AsyncCreateLaunchPlan(::grpc::ClientContext* context, const ::flyteidl::admin::LaunchPlanCreateRequest& request, ::grpc::CompletionQueue* cq) { return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::flyteidl::admin::LaunchPlanCreateResponse>>(AsyncCreateLaunchPlanRaw(context, request, cq)); @@ -393,10 +386,6 @@ class AdminService final { virtual void ListWorkflows(::grpc::ClientContext* context, const ::grpc::ByteBuffer* request, ::flyteidl::admin::WorkflowList* response, std::function) = 0; virtual void ListWorkflows(::grpc::ClientContext* context, const ::flyteidl::admin::ResourceListRequest* request, ::flyteidl::admin::WorkflowList* response, ::grpc::experimental::ClientUnaryReactor* reactor) = 0; virtual void ListWorkflows(::grpc::ClientContext* context, const ::grpc::ByteBuffer* request, ::flyteidl::admin::WorkflowList* response, ::grpc::experimental::ClientUnaryReactor* reactor) = 0; - virtual void UpdateWorkflow(::grpc::ClientContext* context, const ::flyteidl::admin::WorkflowUpdateRequest* request, ::flyteidl::admin::WorkflowUpdateResponse* response, std::function) = 0; - virtual void UpdateWorkflow(::grpc::ClientContext* context, const ::grpc::ByteBuffer* request, ::flyteidl::admin::WorkflowUpdateResponse* response, std::function) = 0; - virtual void UpdateWorkflow(::grpc::ClientContext* context, const ::flyteidl::admin::WorkflowUpdateRequest* request, ::flyteidl::admin::WorkflowUpdateResponse* response, ::grpc::experimental::ClientUnaryReactor* reactor) = 0; - virtual void UpdateWorkflow(::grpc::ClientContext* context, const ::grpc::ByteBuffer* request, ::flyteidl::admin::WorkflowUpdateResponse* response, ::grpc::experimental::ClientUnaryReactor* reactor) = 0; virtual void CreateLaunchPlan(::grpc::ClientContext* context, const ::flyteidl::admin::LaunchPlanCreateRequest* request, ::flyteidl::admin::LaunchPlanCreateResponse* response, std::function) = 0; virtual void CreateLaunchPlan(::grpc::ClientContext* context, const ::grpc::ByteBuffer* request, ::flyteidl::admin::LaunchPlanCreateResponse* response, std::function) = 0; virtual void CreateLaunchPlan(::grpc::ClientContext* context, const ::flyteidl::admin::LaunchPlanCreateRequest* request, ::flyteidl::admin::LaunchPlanCreateResponse* response, ::grpc::experimental::ClientUnaryReactor* reactor) = 0; @@ -556,8 +545,6 @@ class AdminService final { virtual ::grpc::ClientAsyncResponseReaderInterface< ::flyteidl::admin::NamedEntityIdentifierList>* PrepareAsyncListWorkflowIdsRaw(::grpc::ClientContext* context, const ::flyteidl::admin::NamedEntityIdentifierListRequest& request, ::grpc::CompletionQueue* cq) = 0; virtual ::grpc::ClientAsyncResponseReaderInterface< ::flyteidl::admin::WorkflowList>* AsyncListWorkflowsRaw(::grpc::ClientContext* context, const ::flyteidl::admin::ResourceListRequest& request, ::grpc::CompletionQueue* cq) = 0; virtual ::grpc::ClientAsyncResponseReaderInterface< ::flyteidl::admin::WorkflowList>* PrepareAsyncListWorkflowsRaw(::grpc::ClientContext* context, const ::flyteidl::admin::ResourceListRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::flyteidl::admin::WorkflowUpdateResponse>* AsyncUpdateWorkflowRaw(::grpc::ClientContext* context, const ::flyteidl::admin::WorkflowUpdateRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::flyteidl::admin::WorkflowUpdateResponse>* PrepareAsyncUpdateWorkflowRaw(::grpc::ClientContext* context, const ::flyteidl::admin::WorkflowUpdateRequest& request, ::grpc::CompletionQueue* cq) = 0; virtual ::grpc::ClientAsyncResponseReaderInterface< ::flyteidl::admin::LaunchPlanCreateResponse>* AsyncCreateLaunchPlanRaw(::grpc::ClientContext* context, const ::flyteidl::admin::LaunchPlanCreateRequest& request, ::grpc::CompletionQueue* cq) = 0; virtual ::grpc::ClientAsyncResponseReaderInterface< ::flyteidl::admin::LaunchPlanCreateResponse>* PrepareAsyncCreateLaunchPlanRaw(::grpc::ClientContext* context, const ::flyteidl::admin::LaunchPlanCreateRequest& request, ::grpc::CompletionQueue* cq) = 0; virtual ::grpc::ClientAsyncResponseReaderInterface< ::flyteidl::admin::LaunchPlan>* AsyncGetLaunchPlanRaw(::grpc::ClientContext* context, const ::flyteidl::admin::ObjectGetRequest& request, ::grpc::CompletionQueue* cq) = 0; @@ -688,13 +675,6 @@ class AdminService final { std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::flyteidl::admin::WorkflowList>> PrepareAsyncListWorkflows(::grpc::ClientContext* context, const ::flyteidl::admin::ResourceListRequest& request, ::grpc::CompletionQueue* cq) { return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::flyteidl::admin::WorkflowList>>(PrepareAsyncListWorkflowsRaw(context, request, cq)); } - ::grpc::Status UpdateWorkflow(::grpc::ClientContext* context, const ::flyteidl::admin::WorkflowUpdateRequest& request, ::flyteidl::admin::WorkflowUpdateResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::flyteidl::admin::WorkflowUpdateResponse>> AsyncUpdateWorkflow(::grpc::ClientContext* context, const ::flyteidl::admin::WorkflowUpdateRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::flyteidl::admin::WorkflowUpdateResponse>>(AsyncUpdateWorkflowRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::flyteidl::admin::WorkflowUpdateResponse>> PrepareAsyncUpdateWorkflow(::grpc::ClientContext* context, const ::flyteidl::admin::WorkflowUpdateRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::flyteidl::admin::WorkflowUpdateResponse>>(PrepareAsyncUpdateWorkflowRaw(context, request, cq)); - } ::grpc::Status CreateLaunchPlan(::grpc::ClientContext* context, const ::flyteidl::admin::LaunchPlanCreateRequest& request, ::flyteidl::admin::LaunchPlanCreateResponse* response) override; std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::flyteidl::admin::LaunchPlanCreateResponse>> AsyncCreateLaunchPlan(::grpc::ClientContext* context, const ::flyteidl::admin::LaunchPlanCreateRequest& request, ::grpc::CompletionQueue* cq) { return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::flyteidl::admin::LaunchPlanCreateResponse>>(AsyncCreateLaunchPlanRaw(context, request, cq)); @@ -975,10 +955,6 @@ class AdminService final { void ListWorkflows(::grpc::ClientContext* context, const ::grpc::ByteBuffer* request, ::flyteidl::admin::WorkflowList* response, std::function) override; void ListWorkflows(::grpc::ClientContext* context, const ::flyteidl::admin::ResourceListRequest* request, ::flyteidl::admin::WorkflowList* response, ::grpc::experimental::ClientUnaryReactor* reactor) override; void ListWorkflows(::grpc::ClientContext* context, const ::grpc::ByteBuffer* request, ::flyteidl::admin::WorkflowList* response, ::grpc::experimental::ClientUnaryReactor* reactor) override; - void UpdateWorkflow(::grpc::ClientContext* context, const ::flyteidl::admin::WorkflowUpdateRequest* request, ::flyteidl::admin::WorkflowUpdateResponse* response, std::function) override; - void UpdateWorkflow(::grpc::ClientContext* context, const ::grpc::ByteBuffer* request, ::flyteidl::admin::WorkflowUpdateResponse* response, std::function) override; - void UpdateWorkflow(::grpc::ClientContext* context, const ::flyteidl::admin::WorkflowUpdateRequest* request, ::flyteidl::admin::WorkflowUpdateResponse* response, ::grpc::experimental::ClientUnaryReactor* reactor) override; - void UpdateWorkflow(::grpc::ClientContext* context, const ::grpc::ByteBuffer* request, ::flyteidl::admin::WorkflowUpdateResponse* response, ::grpc::experimental::ClientUnaryReactor* reactor) override; void CreateLaunchPlan(::grpc::ClientContext* context, const ::flyteidl::admin::LaunchPlanCreateRequest* request, ::flyteidl::admin::LaunchPlanCreateResponse* response, std::function) override; void CreateLaunchPlan(::grpc::ClientContext* context, const ::grpc::ByteBuffer* request, ::flyteidl::admin::LaunchPlanCreateResponse* response, std::function) override; void CreateLaunchPlan(::grpc::ClientContext* context, const ::flyteidl::admin::LaunchPlanCreateRequest* request, ::flyteidl::admin::LaunchPlanCreateResponse* response, ::grpc::experimental::ClientUnaryReactor* reactor) override; @@ -1146,8 +1122,6 @@ class AdminService final { ::grpc::ClientAsyncResponseReader< ::flyteidl::admin::NamedEntityIdentifierList>* PrepareAsyncListWorkflowIdsRaw(::grpc::ClientContext* context, const ::flyteidl::admin::NamedEntityIdentifierListRequest& request, ::grpc::CompletionQueue* cq) override; ::grpc::ClientAsyncResponseReader< ::flyteidl::admin::WorkflowList>* AsyncListWorkflowsRaw(::grpc::ClientContext* context, const ::flyteidl::admin::ResourceListRequest& request, ::grpc::CompletionQueue* cq) override; ::grpc::ClientAsyncResponseReader< ::flyteidl::admin::WorkflowList>* PrepareAsyncListWorkflowsRaw(::grpc::ClientContext* context, const ::flyteidl::admin::ResourceListRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::flyteidl::admin::WorkflowUpdateResponse>* AsyncUpdateWorkflowRaw(::grpc::ClientContext* context, const ::flyteidl::admin::WorkflowUpdateRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::flyteidl::admin::WorkflowUpdateResponse>* PrepareAsyncUpdateWorkflowRaw(::grpc::ClientContext* context, const ::flyteidl::admin::WorkflowUpdateRequest& request, ::grpc::CompletionQueue* cq) override; ::grpc::ClientAsyncResponseReader< ::flyteidl::admin::LaunchPlanCreateResponse>* AsyncCreateLaunchPlanRaw(::grpc::ClientContext* context, const ::flyteidl::admin::LaunchPlanCreateRequest& request, ::grpc::CompletionQueue* cq) override; ::grpc::ClientAsyncResponseReader< ::flyteidl::admin::LaunchPlanCreateResponse>* PrepareAsyncCreateLaunchPlanRaw(::grpc::ClientContext* context, const ::flyteidl::admin::LaunchPlanCreateRequest& request, ::grpc::CompletionQueue* cq) override; ::grpc::ClientAsyncResponseReader< ::flyteidl::admin::LaunchPlan>* AsyncGetLaunchPlanRaw(::grpc::ClientContext* context, const ::flyteidl::admin::ObjectGetRequest& request, ::grpc::CompletionQueue* cq) override; @@ -1226,7 +1200,6 @@ class AdminService final { const ::grpc::internal::RpcMethod rpcmethod_GetWorkflow_; const ::grpc::internal::RpcMethod rpcmethod_ListWorkflowIds_; const ::grpc::internal::RpcMethod rpcmethod_ListWorkflows_; - const ::grpc::internal::RpcMethod rpcmethod_UpdateWorkflow_; const ::grpc::internal::RpcMethod rpcmethod_CreateLaunchPlan_; const ::grpc::internal::RpcMethod rpcmethod_GetLaunchPlan_; const ::grpc::internal::RpcMethod rpcmethod_GetActiveLaunchPlan_; @@ -1277,7 +1250,6 @@ class AdminService final { virtual ::grpc::Status GetWorkflow(::grpc::ServerContext* context, const ::flyteidl::admin::ObjectGetRequest* request, ::flyteidl::admin::Workflow* response); virtual ::grpc::Status ListWorkflowIds(::grpc::ServerContext* context, const ::flyteidl::admin::NamedEntityIdentifierListRequest* request, ::flyteidl::admin::NamedEntityIdentifierList* response); virtual ::grpc::Status ListWorkflows(::grpc::ServerContext* context, const ::flyteidl::admin::ResourceListRequest* request, ::flyteidl::admin::WorkflowList* response); - virtual ::grpc::Status UpdateWorkflow(::grpc::ServerContext* context, const ::flyteidl::admin::WorkflowUpdateRequest* request, ::flyteidl::admin::WorkflowUpdateResponse* response); virtual ::grpc::Status CreateLaunchPlan(::grpc::ServerContext* context, const ::flyteidl::admin::LaunchPlanCreateRequest* request, ::flyteidl::admin::LaunchPlanCreateResponse* response); virtual ::grpc::Status GetLaunchPlan(::grpc::ServerContext* context, const ::flyteidl::admin::ObjectGetRequest* request, ::flyteidl::admin::LaunchPlan* response); virtual ::grpc::Status GetActiveLaunchPlan(::grpc::ServerContext* context, const ::flyteidl::admin::ActiveLaunchPlanRequest* request, ::flyteidl::admin::LaunchPlan* response); @@ -1475,32 +1447,12 @@ class AdminService final { } }; template - class WithAsyncMethod_UpdateWorkflow : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service *service) {} - public: - WithAsyncMethod_UpdateWorkflow() { - ::grpc::Service::MarkMethodAsync(8); - } - ~WithAsyncMethod_UpdateWorkflow() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status UpdateWorkflow(::grpc::ServerContext* context, const ::flyteidl::admin::WorkflowUpdateRequest* request, ::flyteidl::admin::WorkflowUpdateResponse* response) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestUpdateWorkflow(::grpc::ServerContext* context, ::flyteidl::admin::WorkflowUpdateRequest* request, ::grpc::ServerAsyncResponseWriter< ::flyteidl::admin::WorkflowUpdateResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(8, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template class WithAsyncMethod_CreateLaunchPlan : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithAsyncMethod_CreateLaunchPlan() { - ::grpc::Service::MarkMethodAsync(9); + ::grpc::Service::MarkMethodAsync(8); } ~WithAsyncMethod_CreateLaunchPlan() override { BaseClassMustBeDerivedFromService(this); @@ -1511,7 +1463,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestCreateLaunchPlan(::grpc::ServerContext* context, ::flyteidl::admin::LaunchPlanCreateRequest* request, ::grpc::ServerAsyncResponseWriter< ::flyteidl::admin::LaunchPlanCreateResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(9, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(8, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -1520,7 +1472,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithAsyncMethod_GetLaunchPlan() { - ::grpc::Service::MarkMethodAsync(10); + ::grpc::Service::MarkMethodAsync(9); } ~WithAsyncMethod_GetLaunchPlan() override { BaseClassMustBeDerivedFromService(this); @@ -1531,7 +1483,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestGetLaunchPlan(::grpc::ServerContext* context, ::flyteidl::admin::ObjectGetRequest* request, ::grpc::ServerAsyncResponseWriter< ::flyteidl::admin::LaunchPlan>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(10, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(9, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -1540,7 +1492,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithAsyncMethod_GetActiveLaunchPlan() { - ::grpc::Service::MarkMethodAsync(11); + ::grpc::Service::MarkMethodAsync(10); } ~WithAsyncMethod_GetActiveLaunchPlan() override { BaseClassMustBeDerivedFromService(this); @@ -1551,7 +1503,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestGetActiveLaunchPlan(::grpc::ServerContext* context, ::flyteidl::admin::ActiveLaunchPlanRequest* request, ::grpc::ServerAsyncResponseWriter< ::flyteidl::admin::LaunchPlan>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(11, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(10, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -1560,7 +1512,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithAsyncMethod_ListActiveLaunchPlans() { - ::grpc::Service::MarkMethodAsync(12); + ::grpc::Service::MarkMethodAsync(11); } ~WithAsyncMethod_ListActiveLaunchPlans() override { BaseClassMustBeDerivedFromService(this); @@ -1571,7 +1523,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestListActiveLaunchPlans(::grpc::ServerContext* context, ::flyteidl::admin::ActiveLaunchPlanListRequest* request, ::grpc::ServerAsyncResponseWriter< ::flyteidl::admin::LaunchPlanList>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(12, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(11, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -1580,7 +1532,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithAsyncMethod_ListLaunchPlanIds() { - ::grpc::Service::MarkMethodAsync(13); + ::grpc::Service::MarkMethodAsync(12); } ~WithAsyncMethod_ListLaunchPlanIds() override { BaseClassMustBeDerivedFromService(this); @@ -1591,7 +1543,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestListLaunchPlanIds(::grpc::ServerContext* context, ::flyteidl::admin::NamedEntityIdentifierListRequest* request, ::grpc::ServerAsyncResponseWriter< ::flyteidl::admin::NamedEntityIdentifierList>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(13, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(12, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -1600,7 +1552,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithAsyncMethod_ListLaunchPlans() { - ::grpc::Service::MarkMethodAsync(14); + ::grpc::Service::MarkMethodAsync(13); } ~WithAsyncMethod_ListLaunchPlans() override { BaseClassMustBeDerivedFromService(this); @@ -1611,7 +1563,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestListLaunchPlans(::grpc::ServerContext* context, ::flyteidl::admin::ResourceListRequest* request, ::grpc::ServerAsyncResponseWriter< ::flyteidl::admin::LaunchPlanList>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(14, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(13, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -1620,7 +1572,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithAsyncMethod_UpdateLaunchPlan() { - ::grpc::Service::MarkMethodAsync(15); + ::grpc::Service::MarkMethodAsync(14); } ~WithAsyncMethod_UpdateLaunchPlan() override { BaseClassMustBeDerivedFromService(this); @@ -1631,7 +1583,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestUpdateLaunchPlan(::grpc::ServerContext* context, ::flyteidl::admin::LaunchPlanUpdateRequest* request, ::grpc::ServerAsyncResponseWriter< ::flyteidl::admin::LaunchPlanUpdateResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(15, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(14, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -1640,7 +1592,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithAsyncMethod_CreateExecution() { - ::grpc::Service::MarkMethodAsync(16); + ::grpc::Service::MarkMethodAsync(15); } ~WithAsyncMethod_CreateExecution() override { BaseClassMustBeDerivedFromService(this); @@ -1651,7 +1603,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestCreateExecution(::grpc::ServerContext* context, ::flyteidl::admin::ExecutionCreateRequest* request, ::grpc::ServerAsyncResponseWriter< ::flyteidl::admin::ExecutionCreateResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(16, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(15, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -1660,7 +1612,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithAsyncMethod_RelaunchExecution() { - ::grpc::Service::MarkMethodAsync(17); + ::grpc::Service::MarkMethodAsync(16); } ~WithAsyncMethod_RelaunchExecution() override { BaseClassMustBeDerivedFromService(this); @@ -1671,7 +1623,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestRelaunchExecution(::grpc::ServerContext* context, ::flyteidl::admin::ExecutionRelaunchRequest* request, ::grpc::ServerAsyncResponseWriter< ::flyteidl::admin::ExecutionCreateResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(17, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(16, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -1680,7 +1632,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithAsyncMethod_GetExecution() { - ::grpc::Service::MarkMethodAsync(18); + ::grpc::Service::MarkMethodAsync(17); } ~WithAsyncMethod_GetExecution() override { BaseClassMustBeDerivedFromService(this); @@ -1691,7 +1643,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestGetExecution(::grpc::ServerContext* context, ::flyteidl::admin::WorkflowExecutionGetRequest* request, ::grpc::ServerAsyncResponseWriter< ::flyteidl::admin::Execution>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(18, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(17, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -1700,7 +1652,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithAsyncMethod_GetExecutionData() { - ::grpc::Service::MarkMethodAsync(19); + ::grpc::Service::MarkMethodAsync(18); } ~WithAsyncMethod_GetExecutionData() override { BaseClassMustBeDerivedFromService(this); @@ -1711,7 +1663,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestGetExecutionData(::grpc::ServerContext* context, ::flyteidl::admin::WorkflowExecutionGetDataRequest* request, ::grpc::ServerAsyncResponseWriter< ::flyteidl::admin::WorkflowExecutionGetDataResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(19, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(18, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -1720,7 +1672,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithAsyncMethod_ListExecutions() { - ::grpc::Service::MarkMethodAsync(20); + ::grpc::Service::MarkMethodAsync(19); } ~WithAsyncMethod_ListExecutions() override { BaseClassMustBeDerivedFromService(this); @@ -1731,7 +1683,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestListExecutions(::grpc::ServerContext* context, ::flyteidl::admin::ResourceListRequest* request, ::grpc::ServerAsyncResponseWriter< ::flyteidl::admin::ExecutionList>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(20, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(19, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -1740,7 +1692,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithAsyncMethod_TerminateExecution() { - ::grpc::Service::MarkMethodAsync(21); + ::grpc::Service::MarkMethodAsync(20); } ~WithAsyncMethod_TerminateExecution() override { BaseClassMustBeDerivedFromService(this); @@ -1751,7 +1703,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestTerminateExecution(::grpc::ServerContext* context, ::flyteidl::admin::ExecutionTerminateRequest* request, ::grpc::ServerAsyncResponseWriter< ::flyteidl::admin::ExecutionTerminateResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(21, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(20, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -1760,7 +1712,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithAsyncMethod_GetNodeExecution() { - ::grpc::Service::MarkMethodAsync(22); + ::grpc::Service::MarkMethodAsync(21); } ~WithAsyncMethod_GetNodeExecution() override { BaseClassMustBeDerivedFromService(this); @@ -1771,7 +1723,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestGetNodeExecution(::grpc::ServerContext* context, ::flyteidl::admin::NodeExecutionGetRequest* request, ::grpc::ServerAsyncResponseWriter< ::flyteidl::admin::NodeExecution>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(22, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(21, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -1780,7 +1732,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithAsyncMethod_ListNodeExecutions() { - ::grpc::Service::MarkMethodAsync(23); + ::grpc::Service::MarkMethodAsync(22); } ~WithAsyncMethod_ListNodeExecutions() override { BaseClassMustBeDerivedFromService(this); @@ -1791,7 +1743,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestListNodeExecutions(::grpc::ServerContext* context, ::flyteidl::admin::NodeExecutionListRequest* request, ::grpc::ServerAsyncResponseWriter< ::flyteidl::admin::NodeExecutionList>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(23, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(22, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -1800,7 +1752,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithAsyncMethod_ListNodeExecutionsForTask() { - ::grpc::Service::MarkMethodAsync(24); + ::grpc::Service::MarkMethodAsync(23); } ~WithAsyncMethod_ListNodeExecutionsForTask() override { BaseClassMustBeDerivedFromService(this); @@ -1811,7 +1763,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestListNodeExecutionsForTask(::grpc::ServerContext* context, ::flyteidl::admin::NodeExecutionForTaskListRequest* request, ::grpc::ServerAsyncResponseWriter< ::flyteidl::admin::NodeExecutionList>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(24, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(23, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -1820,7 +1772,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithAsyncMethod_GetNodeExecutionData() { - ::grpc::Service::MarkMethodAsync(25); + ::grpc::Service::MarkMethodAsync(24); } ~WithAsyncMethod_GetNodeExecutionData() override { BaseClassMustBeDerivedFromService(this); @@ -1831,7 +1783,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestGetNodeExecutionData(::grpc::ServerContext* context, ::flyteidl::admin::NodeExecutionGetDataRequest* request, ::grpc::ServerAsyncResponseWriter< ::flyteidl::admin::NodeExecutionGetDataResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(25, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(24, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -1840,7 +1792,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithAsyncMethod_RegisterProject() { - ::grpc::Service::MarkMethodAsync(26); + ::grpc::Service::MarkMethodAsync(25); } ~WithAsyncMethod_RegisterProject() override { BaseClassMustBeDerivedFromService(this); @@ -1851,7 +1803,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestRegisterProject(::grpc::ServerContext* context, ::flyteidl::admin::ProjectRegisterRequest* request, ::grpc::ServerAsyncResponseWriter< ::flyteidl::admin::ProjectRegisterResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(26, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(25, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -1860,7 +1812,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithAsyncMethod_ListProjects() { - ::grpc::Service::MarkMethodAsync(27); + ::grpc::Service::MarkMethodAsync(26); } ~WithAsyncMethod_ListProjects() override { BaseClassMustBeDerivedFromService(this); @@ -1871,7 +1823,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestListProjects(::grpc::ServerContext* context, ::flyteidl::admin::ProjectListRequest* request, ::grpc::ServerAsyncResponseWriter< ::flyteidl::admin::Projects>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(27, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(26, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -1880,7 +1832,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithAsyncMethod_CreateWorkflowEvent() { - ::grpc::Service::MarkMethodAsync(28); + ::grpc::Service::MarkMethodAsync(27); } ~WithAsyncMethod_CreateWorkflowEvent() override { BaseClassMustBeDerivedFromService(this); @@ -1891,7 +1843,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestCreateWorkflowEvent(::grpc::ServerContext* context, ::flyteidl::admin::WorkflowExecutionEventRequest* request, ::grpc::ServerAsyncResponseWriter< ::flyteidl::admin::WorkflowExecutionEventResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(28, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(27, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -1900,7 +1852,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithAsyncMethod_CreateNodeEvent() { - ::grpc::Service::MarkMethodAsync(29); + ::grpc::Service::MarkMethodAsync(28); } ~WithAsyncMethod_CreateNodeEvent() override { BaseClassMustBeDerivedFromService(this); @@ -1911,7 +1863,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestCreateNodeEvent(::grpc::ServerContext* context, ::flyteidl::admin::NodeExecutionEventRequest* request, ::grpc::ServerAsyncResponseWriter< ::flyteidl::admin::NodeExecutionEventResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(29, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(28, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -1920,7 +1872,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithAsyncMethod_CreateTaskEvent() { - ::grpc::Service::MarkMethodAsync(30); + ::grpc::Service::MarkMethodAsync(29); } ~WithAsyncMethod_CreateTaskEvent() override { BaseClassMustBeDerivedFromService(this); @@ -1931,7 +1883,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestCreateTaskEvent(::grpc::ServerContext* context, ::flyteidl::admin::TaskExecutionEventRequest* request, ::grpc::ServerAsyncResponseWriter< ::flyteidl::admin::TaskExecutionEventResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(30, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(29, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -1940,7 +1892,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithAsyncMethod_GetTaskExecution() { - ::grpc::Service::MarkMethodAsync(31); + ::grpc::Service::MarkMethodAsync(30); } ~WithAsyncMethod_GetTaskExecution() override { BaseClassMustBeDerivedFromService(this); @@ -1951,7 +1903,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestGetTaskExecution(::grpc::ServerContext* context, ::flyteidl::admin::TaskExecutionGetRequest* request, ::grpc::ServerAsyncResponseWriter< ::flyteidl::admin::TaskExecution>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(31, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(30, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -1960,7 +1912,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithAsyncMethod_ListTaskExecutions() { - ::grpc::Service::MarkMethodAsync(32); + ::grpc::Service::MarkMethodAsync(31); } ~WithAsyncMethod_ListTaskExecutions() override { BaseClassMustBeDerivedFromService(this); @@ -1971,7 +1923,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestListTaskExecutions(::grpc::ServerContext* context, ::flyteidl::admin::TaskExecutionListRequest* request, ::grpc::ServerAsyncResponseWriter< ::flyteidl::admin::TaskExecutionList>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(32, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(31, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -1980,7 +1932,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithAsyncMethod_GetTaskExecutionData() { - ::grpc::Service::MarkMethodAsync(33); + ::grpc::Service::MarkMethodAsync(32); } ~WithAsyncMethod_GetTaskExecutionData() override { BaseClassMustBeDerivedFromService(this); @@ -1991,7 +1943,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestGetTaskExecutionData(::grpc::ServerContext* context, ::flyteidl::admin::TaskExecutionGetDataRequest* request, ::grpc::ServerAsyncResponseWriter< ::flyteidl::admin::TaskExecutionGetDataResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(33, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(32, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -2000,7 +1952,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithAsyncMethod_UpdateProjectDomainAttributes() { - ::grpc::Service::MarkMethodAsync(34); + ::grpc::Service::MarkMethodAsync(33); } ~WithAsyncMethod_UpdateProjectDomainAttributes() override { BaseClassMustBeDerivedFromService(this); @@ -2011,7 +1963,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestUpdateProjectDomainAttributes(::grpc::ServerContext* context, ::flyteidl::admin::ProjectDomainAttributesUpdateRequest* request, ::grpc::ServerAsyncResponseWriter< ::flyteidl::admin::ProjectDomainAttributesUpdateResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(34, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(33, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -2020,7 +1972,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithAsyncMethod_GetProjectDomainAttributes() { - ::grpc::Service::MarkMethodAsync(35); + ::grpc::Service::MarkMethodAsync(34); } ~WithAsyncMethod_GetProjectDomainAttributes() override { BaseClassMustBeDerivedFromService(this); @@ -2031,7 +1983,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestGetProjectDomainAttributes(::grpc::ServerContext* context, ::flyteidl::admin::ProjectDomainAttributesGetRequest* request, ::grpc::ServerAsyncResponseWriter< ::flyteidl::admin::ProjectDomainAttributesGetResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(35, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(34, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -2040,7 +1992,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithAsyncMethod_DeleteProjectDomainAttributes() { - ::grpc::Service::MarkMethodAsync(36); + ::grpc::Service::MarkMethodAsync(35); } ~WithAsyncMethod_DeleteProjectDomainAttributes() override { BaseClassMustBeDerivedFromService(this); @@ -2051,7 +2003,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestDeleteProjectDomainAttributes(::grpc::ServerContext* context, ::flyteidl::admin::ProjectDomainAttributesDeleteRequest* request, ::grpc::ServerAsyncResponseWriter< ::flyteidl::admin::ProjectDomainAttributesDeleteResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(36, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(35, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -2060,7 +2012,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithAsyncMethod_UpdateWorkflowAttributes() { - ::grpc::Service::MarkMethodAsync(37); + ::grpc::Service::MarkMethodAsync(36); } ~WithAsyncMethod_UpdateWorkflowAttributes() override { BaseClassMustBeDerivedFromService(this); @@ -2071,7 +2023,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestUpdateWorkflowAttributes(::grpc::ServerContext* context, ::flyteidl::admin::WorkflowAttributesUpdateRequest* request, ::grpc::ServerAsyncResponseWriter< ::flyteidl::admin::WorkflowAttributesUpdateResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(37, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(36, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -2080,7 +2032,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithAsyncMethod_GetWorkflowAttributes() { - ::grpc::Service::MarkMethodAsync(38); + ::grpc::Service::MarkMethodAsync(37); } ~WithAsyncMethod_GetWorkflowAttributes() override { BaseClassMustBeDerivedFromService(this); @@ -2091,7 +2043,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestGetWorkflowAttributes(::grpc::ServerContext* context, ::flyteidl::admin::WorkflowAttributesGetRequest* request, ::grpc::ServerAsyncResponseWriter< ::flyteidl::admin::WorkflowAttributesGetResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(38, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(37, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -2100,7 +2052,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithAsyncMethod_DeleteWorkflowAttributes() { - ::grpc::Service::MarkMethodAsync(39); + ::grpc::Service::MarkMethodAsync(38); } ~WithAsyncMethod_DeleteWorkflowAttributes() override { BaseClassMustBeDerivedFromService(this); @@ -2111,7 +2063,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestDeleteWorkflowAttributes(::grpc::ServerContext* context, ::flyteidl::admin::WorkflowAttributesDeleteRequest* request, ::grpc::ServerAsyncResponseWriter< ::flyteidl::admin::WorkflowAttributesDeleteResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(39, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(38, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -2120,7 +2072,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithAsyncMethod_ListMatchableAttributes() { - ::grpc::Service::MarkMethodAsync(40); + ::grpc::Service::MarkMethodAsync(39); } ~WithAsyncMethod_ListMatchableAttributes() override { BaseClassMustBeDerivedFromService(this); @@ -2131,7 +2083,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestListMatchableAttributes(::grpc::ServerContext* context, ::flyteidl::admin::ListMatchableAttributesRequest* request, ::grpc::ServerAsyncResponseWriter< ::flyteidl::admin::ListMatchableAttributesResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(40, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(39, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -2140,7 +2092,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithAsyncMethod_ListNamedEntities() { - ::grpc::Service::MarkMethodAsync(41); + ::grpc::Service::MarkMethodAsync(40); } ~WithAsyncMethod_ListNamedEntities() override { BaseClassMustBeDerivedFromService(this); @@ -2151,7 +2103,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestListNamedEntities(::grpc::ServerContext* context, ::flyteidl::admin::NamedEntityListRequest* request, ::grpc::ServerAsyncResponseWriter< ::flyteidl::admin::NamedEntityList>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(41, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(40, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -2160,7 +2112,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithAsyncMethod_GetNamedEntity() { - ::grpc::Service::MarkMethodAsync(42); + ::grpc::Service::MarkMethodAsync(41); } ~WithAsyncMethod_GetNamedEntity() override { BaseClassMustBeDerivedFromService(this); @@ -2171,7 +2123,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestGetNamedEntity(::grpc::ServerContext* context, ::flyteidl::admin::NamedEntityGetRequest* request, ::grpc::ServerAsyncResponseWriter< ::flyteidl::admin::NamedEntity>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(42, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(41, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -2180,7 +2132,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithAsyncMethod_UpdateNamedEntity() { - ::grpc::Service::MarkMethodAsync(43); + ::grpc::Service::MarkMethodAsync(42); } ~WithAsyncMethod_UpdateNamedEntity() override { BaseClassMustBeDerivedFromService(this); @@ -2191,10 +2143,10 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestUpdateNamedEntity(::grpc::ServerContext* context, ::flyteidl::admin::NamedEntityUpdateRequest* request, ::grpc::ServerAsyncResponseWriter< ::flyteidl::admin::NamedEntityUpdateResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(43, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(42, context, request, response, new_call_cq, notification_cq, tag); } }; - typedef WithAsyncMethod_CreateTask > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > AsyncService; + typedef WithAsyncMethod_CreateTask > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > AsyncService; template class ExperimentalWithCallbackMethod_CreateTask : public BaseClass { private: @@ -2444,43 +2396,12 @@ class AdminService final { virtual void ListWorkflows(::grpc::ServerContext* context, const ::flyteidl::admin::ResourceListRequest* request, ::flyteidl::admin::WorkflowList* response, ::grpc::experimental::ServerCallbackRpcController* controller) { controller->Finish(::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, "")); } }; template - class ExperimentalWithCallbackMethod_UpdateWorkflow : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service *service) {} - public: - ExperimentalWithCallbackMethod_UpdateWorkflow() { - ::grpc::Service::experimental().MarkMethodCallback(8, - new ::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::WorkflowUpdateRequest, ::flyteidl::admin::WorkflowUpdateResponse>( - [this](::grpc::ServerContext* context, - const ::flyteidl::admin::WorkflowUpdateRequest* request, - ::flyteidl::admin::WorkflowUpdateResponse* response, - ::grpc::experimental::ServerCallbackRpcController* controller) { - return this->UpdateWorkflow(context, request, response, controller); - })); - } - void SetMessageAllocatorFor_UpdateWorkflow( - ::grpc::experimental::MessageAllocator< ::flyteidl::admin::WorkflowUpdateRequest, ::flyteidl::admin::WorkflowUpdateResponse>* allocator) { - static_cast<::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::WorkflowUpdateRequest, ::flyteidl::admin::WorkflowUpdateResponse>*>( - ::grpc::Service::experimental().GetHandler(8)) - ->SetMessageAllocator(allocator); - } - ~ExperimentalWithCallbackMethod_UpdateWorkflow() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status UpdateWorkflow(::grpc::ServerContext* context, const ::flyteidl::admin::WorkflowUpdateRequest* request, ::flyteidl::admin::WorkflowUpdateResponse* response) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual void UpdateWorkflow(::grpc::ServerContext* context, const ::flyteidl::admin::WorkflowUpdateRequest* request, ::flyteidl::admin::WorkflowUpdateResponse* response, ::grpc::experimental::ServerCallbackRpcController* controller) { controller->Finish(::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, "")); } - }; - template class ExperimentalWithCallbackMethod_CreateLaunchPlan : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithCallbackMethod_CreateLaunchPlan() { - ::grpc::Service::experimental().MarkMethodCallback(9, + ::grpc::Service::experimental().MarkMethodCallback(8, new ::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::LaunchPlanCreateRequest, ::flyteidl::admin::LaunchPlanCreateResponse>( [this](::grpc::ServerContext* context, const ::flyteidl::admin::LaunchPlanCreateRequest* request, @@ -2492,7 +2413,7 @@ class AdminService final { void SetMessageAllocatorFor_CreateLaunchPlan( ::grpc::experimental::MessageAllocator< ::flyteidl::admin::LaunchPlanCreateRequest, ::flyteidl::admin::LaunchPlanCreateResponse>* allocator) { static_cast<::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::LaunchPlanCreateRequest, ::flyteidl::admin::LaunchPlanCreateResponse>*>( - ::grpc::Service::experimental().GetHandler(9)) + ::grpc::Service::experimental().GetHandler(8)) ->SetMessageAllocator(allocator); } ~ExperimentalWithCallbackMethod_CreateLaunchPlan() override { @@ -2511,7 +2432,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithCallbackMethod_GetLaunchPlan() { - ::grpc::Service::experimental().MarkMethodCallback(10, + ::grpc::Service::experimental().MarkMethodCallback(9, new ::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::ObjectGetRequest, ::flyteidl::admin::LaunchPlan>( [this](::grpc::ServerContext* context, const ::flyteidl::admin::ObjectGetRequest* request, @@ -2523,7 +2444,7 @@ class AdminService final { void SetMessageAllocatorFor_GetLaunchPlan( ::grpc::experimental::MessageAllocator< ::flyteidl::admin::ObjectGetRequest, ::flyteidl::admin::LaunchPlan>* allocator) { static_cast<::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::ObjectGetRequest, ::flyteidl::admin::LaunchPlan>*>( - ::grpc::Service::experimental().GetHandler(10)) + ::grpc::Service::experimental().GetHandler(9)) ->SetMessageAllocator(allocator); } ~ExperimentalWithCallbackMethod_GetLaunchPlan() override { @@ -2542,7 +2463,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithCallbackMethod_GetActiveLaunchPlan() { - ::grpc::Service::experimental().MarkMethodCallback(11, + ::grpc::Service::experimental().MarkMethodCallback(10, new ::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::ActiveLaunchPlanRequest, ::flyteidl::admin::LaunchPlan>( [this](::grpc::ServerContext* context, const ::flyteidl::admin::ActiveLaunchPlanRequest* request, @@ -2554,7 +2475,7 @@ class AdminService final { void SetMessageAllocatorFor_GetActiveLaunchPlan( ::grpc::experimental::MessageAllocator< ::flyteidl::admin::ActiveLaunchPlanRequest, ::flyteidl::admin::LaunchPlan>* allocator) { static_cast<::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::ActiveLaunchPlanRequest, ::flyteidl::admin::LaunchPlan>*>( - ::grpc::Service::experimental().GetHandler(11)) + ::grpc::Service::experimental().GetHandler(10)) ->SetMessageAllocator(allocator); } ~ExperimentalWithCallbackMethod_GetActiveLaunchPlan() override { @@ -2573,7 +2494,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithCallbackMethod_ListActiveLaunchPlans() { - ::grpc::Service::experimental().MarkMethodCallback(12, + ::grpc::Service::experimental().MarkMethodCallback(11, new ::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::ActiveLaunchPlanListRequest, ::flyteidl::admin::LaunchPlanList>( [this](::grpc::ServerContext* context, const ::flyteidl::admin::ActiveLaunchPlanListRequest* request, @@ -2585,7 +2506,7 @@ class AdminService final { void SetMessageAllocatorFor_ListActiveLaunchPlans( ::grpc::experimental::MessageAllocator< ::flyteidl::admin::ActiveLaunchPlanListRequest, ::flyteidl::admin::LaunchPlanList>* allocator) { static_cast<::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::ActiveLaunchPlanListRequest, ::flyteidl::admin::LaunchPlanList>*>( - ::grpc::Service::experimental().GetHandler(12)) + ::grpc::Service::experimental().GetHandler(11)) ->SetMessageAllocator(allocator); } ~ExperimentalWithCallbackMethod_ListActiveLaunchPlans() override { @@ -2604,7 +2525,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithCallbackMethod_ListLaunchPlanIds() { - ::grpc::Service::experimental().MarkMethodCallback(13, + ::grpc::Service::experimental().MarkMethodCallback(12, new ::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::NamedEntityIdentifierListRequest, ::flyteidl::admin::NamedEntityIdentifierList>( [this](::grpc::ServerContext* context, const ::flyteidl::admin::NamedEntityIdentifierListRequest* request, @@ -2616,7 +2537,7 @@ class AdminService final { void SetMessageAllocatorFor_ListLaunchPlanIds( ::grpc::experimental::MessageAllocator< ::flyteidl::admin::NamedEntityIdentifierListRequest, ::flyteidl::admin::NamedEntityIdentifierList>* allocator) { static_cast<::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::NamedEntityIdentifierListRequest, ::flyteidl::admin::NamedEntityIdentifierList>*>( - ::grpc::Service::experimental().GetHandler(13)) + ::grpc::Service::experimental().GetHandler(12)) ->SetMessageAllocator(allocator); } ~ExperimentalWithCallbackMethod_ListLaunchPlanIds() override { @@ -2635,7 +2556,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithCallbackMethod_ListLaunchPlans() { - ::grpc::Service::experimental().MarkMethodCallback(14, + ::grpc::Service::experimental().MarkMethodCallback(13, new ::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::ResourceListRequest, ::flyteidl::admin::LaunchPlanList>( [this](::grpc::ServerContext* context, const ::flyteidl::admin::ResourceListRequest* request, @@ -2647,7 +2568,7 @@ class AdminService final { void SetMessageAllocatorFor_ListLaunchPlans( ::grpc::experimental::MessageAllocator< ::flyteidl::admin::ResourceListRequest, ::flyteidl::admin::LaunchPlanList>* allocator) { static_cast<::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::ResourceListRequest, ::flyteidl::admin::LaunchPlanList>*>( - ::grpc::Service::experimental().GetHandler(14)) + ::grpc::Service::experimental().GetHandler(13)) ->SetMessageAllocator(allocator); } ~ExperimentalWithCallbackMethod_ListLaunchPlans() override { @@ -2666,7 +2587,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithCallbackMethod_UpdateLaunchPlan() { - ::grpc::Service::experimental().MarkMethodCallback(15, + ::grpc::Service::experimental().MarkMethodCallback(14, new ::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::LaunchPlanUpdateRequest, ::flyteidl::admin::LaunchPlanUpdateResponse>( [this](::grpc::ServerContext* context, const ::flyteidl::admin::LaunchPlanUpdateRequest* request, @@ -2678,7 +2599,7 @@ class AdminService final { void SetMessageAllocatorFor_UpdateLaunchPlan( ::grpc::experimental::MessageAllocator< ::flyteidl::admin::LaunchPlanUpdateRequest, ::flyteidl::admin::LaunchPlanUpdateResponse>* allocator) { static_cast<::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::LaunchPlanUpdateRequest, ::flyteidl::admin::LaunchPlanUpdateResponse>*>( - ::grpc::Service::experimental().GetHandler(15)) + ::grpc::Service::experimental().GetHandler(14)) ->SetMessageAllocator(allocator); } ~ExperimentalWithCallbackMethod_UpdateLaunchPlan() override { @@ -2697,7 +2618,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithCallbackMethod_CreateExecution() { - ::grpc::Service::experimental().MarkMethodCallback(16, + ::grpc::Service::experimental().MarkMethodCallback(15, new ::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::ExecutionCreateRequest, ::flyteidl::admin::ExecutionCreateResponse>( [this](::grpc::ServerContext* context, const ::flyteidl::admin::ExecutionCreateRequest* request, @@ -2709,7 +2630,7 @@ class AdminService final { void SetMessageAllocatorFor_CreateExecution( ::grpc::experimental::MessageAllocator< ::flyteidl::admin::ExecutionCreateRequest, ::flyteidl::admin::ExecutionCreateResponse>* allocator) { static_cast<::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::ExecutionCreateRequest, ::flyteidl::admin::ExecutionCreateResponse>*>( - ::grpc::Service::experimental().GetHandler(16)) + ::grpc::Service::experimental().GetHandler(15)) ->SetMessageAllocator(allocator); } ~ExperimentalWithCallbackMethod_CreateExecution() override { @@ -2728,7 +2649,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithCallbackMethod_RelaunchExecution() { - ::grpc::Service::experimental().MarkMethodCallback(17, + ::grpc::Service::experimental().MarkMethodCallback(16, new ::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::ExecutionRelaunchRequest, ::flyteidl::admin::ExecutionCreateResponse>( [this](::grpc::ServerContext* context, const ::flyteidl::admin::ExecutionRelaunchRequest* request, @@ -2740,7 +2661,7 @@ class AdminService final { void SetMessageAllocatorFor_RelaunchExecution( ::grpc::experimental::MessageAllocator< ::flyteidl::admin::ExecutionRelaunchRequest, ::flyteidl::admin::ExecutionCreateResponse>* allocator) { static_cast<::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::ExecutionRelaunchRequest, ::flyteidl::admin::ExecutionCreateResponse>*>( - ::grpc::Service::experimental().GetHandler(17)) + ::grpc::Service::experimental().GetHandler(16)) ->SetMessageAllocator(allocator); } ~ExperimentalWithCallbackMethod_RelaunchExecution() override { @@ -2759,7 +2680,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithCallbackMethod_GetExecution() { - ::grpc::Service::experimental().MarkMethodCallback(18, + ::grpc::Service::experimental().MarkMethodCallback(17, new ::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::WorkflowExecutionGetRequest, ::flyteidl::admin::Execution>( [this](::grpc::ServerContext* context, const ::flyteidl::admin::WorkflowExecutionGetRequest* request, @@ -2771,7 +2692,7 @@ class AdminService final { void SetMessageAllocatorFor_GetExecution( ::grpc::experimental::MessageAllocator< ::flyteidl::admin::WorkflowExecutionGetRequest, ::flyteidl::admin::Execution>* allocator) { static_cast<::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::WorkflowExecutionGetRequest, ::flyteidl::admin::Execution>*>( - ::grpc::Service::experimental().GetHandler(18)) + ::grpc::Service::experimental().GetHandler(17)) ->SetMessageAllocator(allocator); } ~ExperimentalWithCallbackMethod_GetExecution() override { @@ -2790,7 +2711,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithCallbackMethod_GetExecutionData() { - ::grpc::Service::experimental().MarkMethodCallback(19, + ::grpc::Service::experimental().MarkMethodCallback(18, new ::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::WorkflowExecutionGetDataRequest, ::flyteidl::admin::WorkflowExecutionGetDataResponse>( [this](::grpc::ServerContext* context, const ::flyteidl::admin::WorkflowExecutionGetDataRequest* request, @@ -2802,7 +2723,7 @@ class AdminService final { void SetMessageAllocatorFor_GetExecutionData( ::grpc::experimental::MessageAllocator< ::flyteidl::admin::WorkflowExecutionGetDataRequest, ::flyteidl::admin::WorkflowExecutionGetDataResponse>* allocator) { static_cast<::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::WorkflowExecutionGetDataRequest, ::flyteidl::admin::WorkflowExecutionGetDataResponse>*>( - ::grpc::Service::experimental().GetHandler(19)) + ::grpc::Service::experimental().GetHandler(18)) ->SetMessageAllocator(allocator); } ~ExperimentalWithCallbackMethod_GetExecutionData() override { @@ -2821,7 +2742,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithCallbackMethod_ListExecutions() { - ::grpc::Service::experimental().MarkMethodCallback(20, + ::grpc::Service::experimental().MarkMethodCallback(19, new ::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::ResourceListRequest, ::flyteidl::admin::ExecutionList>( [this](::grpc::ServerContext* context, const ::flyteidl::admin::ResourceListRequest* request, @@ -2833,7 +2754,7 @@ class AdminService final { void SetMessageAllocatorFor_ListExecutions( ::grpc::experimental::MessageAllocator< ::flyteidl::admin::ResourceListRequest, ::flyteidl::admin::ExecutionList>* allocator) { static_cast<::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::ResourceListRequest, ::flyteidl::admin::ExecutionList>*>( - ::grpc::Service::experimental().GetHandler(20)) + ::grpc::Service::experimental().GetHandler(19)) ->SetMessageAllocator(allocator); } ~ExperimentalWithCallbackMethod_ListExecutions() override { @@ -2852,7 +2773,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithCallbackMethod_TerminateExecution() { - ::grpc::Service::experimental().MarkMethodCallback(21, + ::grpc::Service::experimental().MarkMethodCallback(20, new ::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::ExecutionTerminateRequest, ::flyteidl::admin::ExecutionTerminateResponse>( [this](::grpc::ServerContext* context, const ::flyteidl::admin::ExecutionTerminateRequest* request, @@ -2864,7 +2785,7 @@ class AdminService final { void SetMessageAllocatorFor_TerminateExecution( ::grpc::experimental::MessageAllocator< ::flyteidl::admin::ExecutionTerminateRequest, ::flyteidl::admin::ExecutionTerminateResponse>* allocator) { static_cast<::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::ExecutionTerminateRequest, ::flyteidl::admin::ExecutionTerminateResponse>*>( - ::grpc::Service::experimental().GetHandler(21)) + ::grpc::Service::experimental().GetHandler(20)) ->SetMessageAllocator(allocator); } ~ExperimentalWithCallbackMethod_TerminateExecution() override { @@ -2883,7 +2804,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithCallbackMethod_GetNodeExecution() { - ::grpc::Service::experimental().MarkMethodCallback(22, + ::grpc::Service::experimental().MarkMethodCallback(21, new ::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::NodeExecutionGetRequest, ::flyteidl::admin::NodeExecution>( [this](::grpc::ServerContext* context, const ::flyteidl::admin::NodeExecutionGetRequest* request, @@ -2895,7 +2816,7 @@ class AdminService final { void SetMessageAllocatorFor_GetNodeExecution( ::grpc::experimental::MessageAllocator< ::flyteidl::admin::NodeExecutionGetRequest, ::flyteidl::admin::NodeExecution>* allocator) { static_cast<::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::NodeExecutionGetRequest, ::flyteidl::admin::NodeExecution>*>( - ::grpc::Service::experimental().GetHandler(22)) + ::grpc::Service::experimental().GetHandler(21)) ->SetMessageAllocator(allocator); } ~ExperimentalWithCallbackMethod_GetNodeExecution() override { @@ -2914,7 +2835,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithCallbackMethod_ListNodeExecutions() { - ::grpc::Service::experimental().MarkMethodCallback(23, + ::grpc::Service::experimental().MarkMethodCallback(22, new ::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::NodeExecutionListRequest, ::flyteidl::admin::NodeExecutionList>( [this](::grpc::ServerContext* context, const ::flyteidl::admin::NodeExecutionListRequest* request, @@ -2926,7 +2847,7 @@ class AdminService final { void SetMessageAllocatorFor_ListNodeExecutions( ::grpc::experimental::MessageAllocator< ::flyteidl::admin::NodeExecutionListRequest, ::flyteidl::admin::NodeExecutionList>* allocator) { static_cast<::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::NodeExecutionListRequest, ::flyteidl::admin::NodeExecutionList>*>( - ::grpc::Service::experimental().GetHandler(23)) + ::grpc::Service::experimental().GetHandler(22)) ->SetMessageAllocator(allocator); } ~ExperimentalWithCallbackMethod_ListNodeExecutions() override { @@ -2945,7 +2866,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithCallbackMethod_ListNodeExecutionsForTask() { - ::grpc::Service::experimental().MarkMethodCallback(24, + ::grpc::Service::experimental().MarkMethodCallback(23, new ::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::NodeExecutionForTaskListRequest, ::flyteidl::admin::NodeExecutionList>( [this](::grpc::ServerContext* context, const ::flyteidl::admin::NodeExecutionForTaskListRequest* request, @@ -2957,7 +2878,7 @@ class AdminService final { void SetMessageAllocatorFor_ListNodeExecutionsForTask( ::grpc::experimental::MessageAllocator< ::flyteidl::admin::NodeExecutionForTaskListRequest, ::flyteidl::admin::NodeExecutionList>* allocator) { static_cast<::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::NodeExecutionForTaskListRequest, ::flyteidl::admin::NodeExecutionList>*>( - ::grpc::Service::experimental().GetHandler(24)) + ::grpc::Service::experimental().GetHandler(23)) ->SetMessageAllocator(allocator); } ~ExperimentalWithCallbackMethod_ListNodeExecutionsForTask() override { @@ -2976,7 +2897,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithCallbackMethod_GetNodeExecutionData() { - ::grpc::Service::experimental().MarkMethodCallback(25, + ::grpc::Service::experimental().MarkMethodCallback(24, new ::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::NodeExecutionGetDataRequest, ::flyteidl::admin::NodeExecutionGetDataResponse>( [this](::grpc::ServerContext* context, const ::flyteidl::admin::NodeExecutionGetDataRequest* request, @@ -2988,7 +2909,7 @@ class AdminService final { void SetMessageAllocatorFor_GetNodeExecutionData( ::grpc::experimental::MessageAllocator< ::flyteidl::admin::NodeExecutionGetDataRequest, ::flyteidl::admin::NodeExecutionGetDataResponse>* allocator) { static_cast<::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::NodeExecutionGetDataRequest, ::flyteidl::admin::NodeExecutionGetDataResponse>*>( - ::grpc::Service::experimental().GetHandler(25)) + ::grpc::Service::experimental().GetHandler(24)) ->SetMessageAllocator(allocator); } ~ExperimentalWithCallbackMethod_GetNodeExecutionData() override { @@ -3007,7 +2928,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithCallbackMethod_RegisterProject() { - ::grpc::Service::experimental().MarkMethodCallback(26, + ::grpc::Service::experimental().MarkMethodCallback(25, new ::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::ProjectRegisterRequest, ::flyteidl::admin::ProjectRegisterResponse>( [this](::grpc::ServerContext* context, const ::flyteidl::admin::ProjectRegisterRequest* request, @@ -3019,7 +2940,7 @@ class AdminService final { void SetMessageAllocatorFor_RegisterProject( ::grpc::experimental::MessageAllocator< ::flyteidl::admin::ProjectRegisterRequest, ::flyteidl::admin::ProjectRegisterResponse>* allocator) { static_cast<::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::ProjectRegisterRequest, ::flyteidl::admin::ProjectRegisterResponse>*>( - ::grpc::Service::experimental().GetHandler(26)) + ::grpc::Service::experimental().GetHandler(25)) ->SetMessageAllocator(allocator); } ~ExperimentalWithCallbackMethod_RegisterProject() override { @@ -3038,7 +2959,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithCallbackMethod_ListProjects() { - ::grpc::Service::experimental().MarkMethodCallback(27, + ::grpc::Service::experimental().MarkMethodCallback(26, new ::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::ProjectListRequest, ::flyteidl::admin::Projects>( [this](::grpc::ServerContext* context, const ::flyteidl::admin::ProjectListRequest* request, @@ -3050,7 +2971,7 @@ class AdminService final { void SetMessageAllocatorFor_ListProjects( ::grpc::experimental::MessageAllocator< ::flyteidl::admin::ProjectListRequest, ::flyteidl::admin::Projects>* allocator) { static_cast<::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::ProjectListRequest, ::flyteidl::admin::Projects>*>( - ::grpc::Service::experimental().GetHandler(27)) + ::grpc::Service::experimental().GetHandler(26)) ->SetMessageAllocator(allocator); } ~ExperimentalWithCallbackMethod_ListProjects() override { @@ -3069,7 +2990,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithCallbackMethod_CreateWorkflowEvent() { - ::grpc::Service::experimental().MarkMethodCallback(28, + ::grpc::Service::experimental().MarkMethodCallback(27, new ::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::WorkflowExecutionEventRequest, ::flyteidl::admin::WorkflowExecutionEventResponse>( [this](::grpc::ServerContext* context, const ::flyteidl::admin::WorkflowExecutionEventRequest* request, @@ -3081,7 +3002,7 @@ class AdminService final { void SetMessageAllocatorFor_CreateWorkflowEvent( ::grpc::experimental::MessageAllocator< ::flyteidl::admin::WorkflowExecutionEventRequest, ::flyteidl::admin::WorkflowExecutionEventResponse>* allocator) { static_cast<::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::WorkflowExecutionEventRequest, ::flyteidl::admin::WorkflowExecutionEventResponse>*>( - ::grpc::Service::experimental().GetHandler(28)) + ::grpc::Service::experimental().GetHandler(27)) ->SetMessageAllocator(allocator); } ~ExperimentalWithCallbackMethod_CreateWorkflowEvent() override { @@ -3100,7 +3021,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithCallbackMethod_CreateNodeEvent() { - ::grpc::Service::experimental().MarkMethodCallback(29, + ::grpc::Service::experimental().MarkMethodCallback(28, new ::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::NodeExecutionEventRequest, ::flyteidl::admin::NodeExecutionEventResponse>( [this](::grpc::ServerContext* context, const ::flyteidl::admin::NodeExecutionEventRequest* request, @@ -3112,7 +3033,7 @@ class AdminService final { void SetMessageAllocatorFor_CreateNodeEvent( ::grpc::experimental::MessageAllocator< ::flyteidl::admin::NodeExecutionEventRequest, ::flyteidl::admin::NodeExecutionEventResponse>* allocator) { static_cast<::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::NodeExecutionEventRequest, ::flyteidl::admin::NodeExecutionEventResponse>*>( - ::grpc::Service::experimental().GetHandler(29)) + ::grpc::Service::experimental().GetHandler(28)) ->SetMessageAllocator(allocator); } ~ExperimentalWithCallbackMethod_CreateNodeEvent() override { @@ -3131,7 +3052,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithCallbackMethod_CreateTaskEvent() { - ::grpc::Service::experimental().MarkMethodCallback(30, + ::grpc::Service::experimental().MarkMethodCallback(29, new ::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::TaskExecutionEventRequest, ::flyteidl::admin::TaskExecutionEventResponse>( [this](::grpc::ServerContext* context, const ::flyteidl::admin::TaskExecutionEventRequest* request, @@ -3143,7 +3064,7 @@ class AdminService final { void SetMessageAllocatorFor_CreateTaskEvent( ::grpc::experimental::MessageAllocator< ::flyteidl::admin::TaskExecutionEventRequest, ::flyteidl::admin::TaskExecutionEventResponse>* allocator) { static_cast<::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::TaskExecutionEventRequest, ::flyteidl::admin::TaskExecutionEventResponse>*>( - ::grpc::Service::experimental().GetHandler(30)) + ::grpc::Service::experimental().GetHandler(29)) ->SetMessageAllocator(allocator); } ~ExperimentalWithCallbackMethod_CreateTaskEvent() override { @@ -3162,7 +3083,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithCallbackMethod_GetTaskExecution() { - ::grpc::Service::experimental().MarkMethodCallback(31, + ::grpc::Service::experimental().MarkMethodCallback(30, new ::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::TaskExecutionGetRequest, ::flyteidl::admin::TaskExecution>( [this](::grpc::ServerContext* context, const ::flyteidl::admin::TaskExecutionGetRequest* request, @@ -3174,7 +3095,7 @@ class AdminService final { void SetMessageAllocatorFor_GetTaskExecution( ::grpc::experimental::MessageAllocator< ::flyteidl::admin::TaskExecutionGetRequest, ::flyteidl::admin::TaskExecution>* allocator) { static_cast<::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::TaskExecutionGetRequest, ::flyteidl::admin::TaskExecution>*>( - ::grpc::Service::experimental().GetHandler(31)) + ::grpc::Service::experimental().GetHandler(30)) ->SetMessageAllocator(allocator); } ~ExperimentalWithCallbackMethod_GetTaskExecution() override { @@ -3193,7 +3114,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithCallbackMethod_ListTaskExecutions() { - ::grpc::Service::experimental().MarkMethodCallback(32, + ::grpc::Service::experimental().MarkMethodCallback(31, new ::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::TaskExecutionListRequest, ::flyteidl::admin::TaskExecutionList>( [this](::grpc::ServerContext* context, const ::flyteidl::admin::TaskExecutionListRequest* request, @@ -3205,7 +3126,7 @@ class AdminService final { void SetMessageAllocatorFor_ListTaskExecutions( ::grpc::experimental::MessageAllocator< ::flyteidl::admin::TaskExecutionListRequest, ::flyteidl::admin::TaskExecutionList>* allocator) { static_cast<::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::TaskExecutionListRequest, ::flyteidl::admin::TaskExecutionList>*>( - ::grpc::Service::experimental().GetHandler(32)) + ::grpc::Service::experimental().GetHandler(31)) ->SetMessageAllocator(allocator); } ~ExperimentalWithCallbackMethod_ListTaskExecutions() override { @@ -3224,7 +3145,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithCallbackMethod_GetTaskExecutionData() { - ::grpc::Service::experimental().MarkMethodCallback(33, + ::grpc::Service::experimental().MarkMethodCallback(32, new ::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::TaskExecutionGetDataRequest, ::flyteidl::admin::TaskExecutionGetDataResponse>( [this](::grpc::ServerContext* context, const ::flyteidl::admin::TaskExecutionGetDataRequest* request, @@ -3236,7 +3157,7 @@ class AdminService final { void SetMessageAllocatorFor_GetTaskExecutionData( ::grpc::experimental::MessageAllocator< ::flyteidl::admin::TaskExecutionGetDataRequest, ::flyteidl::admin::TaskExecutionGetDataResponse>* allocator) { static_cast<::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::TaskExecutionGetDataRequest, ::flyteidl::admin::TaskExecutionGetDataResponse>*>( - ::grpc::Service::experimental().GetHandler(33)) + ::grpc::Service::experimental().GetHandler(32)) ->SetMessageAllocator(allocator); } ~ExperimentalWithCallbackMethod_GetTaskExecutionData() override { @@ -3255,7 +3176,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithCallbackMethod_UpdateProjectDomainAttributes() { - ::grpc::Service::experimental().MarkMethodCallback(34, + ::grpc::Service::experimental().MarkMethodCallback(33, new ::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::ProjectDomainAttributesUpdateRequest, ::flyteidl::admin::ProjectDomainAttributesUpdateResponse>( [this](::grpc::ServerContext* context, const ::flyteidl::admin::ProjectDomainAttributesUpdateRequest* request, @@ -3267,7 +3188,7 @@ class AdminService final { void SetMessageAllocatorFor_UpdateProjectDomainAttributes( ::grpc::experimental::MessageAllocator< ::flyteidl::admin::ProjectDomainAttributesUpdateRequest, ::flyteidl::admin::ProjectDomainAttributesUpdateResponse>* allocator) { static_cast<::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::ProjectDomainAttributesUpdateRequest, ::flyteidl::admin::ProjectDomainAttributesUpdateResponse>*>( - ::grpc::Service::experimental().GetHandler(34)) + ::grpc::Service::experimental().GetHandler(33)) ->SetMessageAllocator(allocator); } ~ExperimentalWithCallbackMethod_UpdateProjectDomainAttributes() override { @@ -3286,7 +3207,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithCallbackMethod_GetProjectDomainAttributes() { - ::grpc::Service::experimental().MarkMethodCallback(35, + ::grpc::Service::experimental().MarkMethodCallback(34, new ::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::ProjectDomainAttributesGetRequest, ::flyteidl::admin::ProjectDomainAttributesGetResponse>( [this](::grpc::ServerContext* context, const ::flyteidl::admin::ProjectDomainAttributesGetRequest* request, @@ -3298,7 +3219,7 @@ class AdminService final { void SetMessageAllocatorFor_GetProjectDomainAttributes( ::grpc::experimental::MessageAllocator< ::flyteidl::admin::ProjectDomainAttributesGetRequest, ::flyteidl::admin::ProjectDomainAttributesGetResponse>* allocator) { static_cast<::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::ProjectDomainAttributesGetRequest, ::flyteidl::admin::ProjectDomainAttributesGetResponse>*>( - ::grpc::Service::experimental().GetHandler(35)) + ::grpc::Service::experimental().GetHandler(34)) ->SetMessageAllocator(allocator); } ~ExperimentalWithCallbackMethod_GetProjectDomainAttributes() override { @@ -3317,7 +3238,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithCallbackMethod_DeleteProjectDomainAttributes() { - ::grpc::Service::experimental().MarkMethodCallback(36, + ::grpc::Service::experimental().MarkMethodCallback(35, new ::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::ProjectDomainAttributesDeleteRequest, ::flyteidl::admin::ProjectDomainAttributesDeleteResponse>( [this](::grpc::ServerContext* context, const ::flyteidl::admin::ProjectDomainAttributesDeleteRequest* request, @@ -3329,7 +3250,7 @@ class AdminService final { void SetMessageAllocatorFor_DeleteProjectDomainAttributes( ::grpc::experimental::MessageAllocator< ::flyteidl::admin::ProjectDomainAttributesDeleteRequest, ::flyteidl::admin::ProjectDomainAttributesDeleteResponse>* allocator) { static_cast<::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::ProjectDomainAttributesDeleteRequest, ::flyteidl::admin::ProjectDomainAttributesDeleteResponse>*>( - ::grpc::Service::experimental().GetHandler(36)) + ::grpc::Service::experimental().GetHandler(35)) ->SetMessageAllocator(allocator); } ~ExperimentalWithCallbackMethod_DeleteProjectDomainAttributes() override { @@ -3348,7 +3269,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithCallbackMethod_UpdateWorkflowAttributes() { - ::grpc::Service::experimental().MarkMethodCallback(37, + ::grpc::Service::experimental().MarkMethodCallback(36, new ::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::WorkflowAttributesUpdateRequest, ::flyteidl::admin::WorkflowAttributesUpdateResponse>( [this](::grpc::ServerContext* context, const ::flyteidl::admin::WorkflowAttributesUpdateRequest* request, @@ -3360,7 +3281,7 @@ class AdminService final { void SetMessageAllocatorFor_UpdateWorkflowAttributes( ::grpc::experimental::MessageAllocator< ::flyteidl::admin::WorkflowAttributesUpdateRequest, ::flyteidl::admin::WorkflowAttributesUpdateResponse>* allocator) { static_cast<::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::WorkflowAttributesUpdateRequest, ::flyteidl::admin::WorkflowAttributesUpdateResponse>*>( - ::grpc::Service::experimental().GetHandler(37)) + ::grpc::Service::experimental().GetHandler(36)) ->SetMessageAllocator(allocator); } ~ExperimentalWithCallbackMethod_UpdateWorkflowAttributes() override { @@ -3379,7 +3300,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithCallbackMethod_GetWorkflowAttributes() { - ::grpc::Service::experimental().MarkMethodCallback(38, + ::grpc::Service::experimental().MarkMethodCallback(37, new ::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::WorkflowAttributesGetRequest, ::flyteidl::admin::WorkflowAttributesGetResponse>( [this](::grpc::ServerContext* context, const ::flyteidl::admin::WorkflowAttributesGetRequest* request, @@ -3391,7 +3312,7 @@ class AdminService final { void SetMessageAllocatorFor_GetWorkflowAttributes( ::grpc::experimental::MessageAllocator< ::flyteidl::admin::WorkflowAttributesGetRequest, ::flyteidl::admin::WorkflowAttributesGetResponse>* allocator) { static_cast<::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::WorkflowAttributesGetRequest, ::flyteidl::admin::WorkflowAttributesGetResponse>*>( - ::grpc::Service::experimental().GetHandler(38)) + ::grpc::Service::experimental().GetHandler(37)) ->SetMessageAllocator(allocator); } ~ExperimentalWithCallbackMethod_GetWorkflowAttributes() override { @@ -3410,7 +3331,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithCallbackMethod_DeleteWorkflowAttributes() { - ::grpc::Service::experimental().MarkMethodCallback(39, + ::grpc::Service::experimental().MarkMethodCallback(38, new ::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::WorkflowAttributesDeleteRequest, ::flyteidl::admin::WorkflowAttributesDeleteResponse>( [this](::grpc::ServerContext* context, const ::flyteidl::admin::WorkflowAttributesDeleteRequest* request, @@ -3422,7 +3343,7 @@ class AdminService final { void SetMessageAllocatorFor_DeleteWorkflowAttributes( ::grpc::experimental::MessageAllocator< ::flyteidl::admin::WorkflowAttributesDeleteRequest, ::flyteidl::admin::WorkflowAttributesDeleteResponse>* allocator) { static_cast<::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::WorkflowAttributesDeleteRequest, ::flyteidl::admin::WorkflowAttributesDeleteResponse>*>( - ::grpc::Service::experimental().GetHandler(39)) + ::grpc::Service::experimental().GetHandler(38)) ->SetMessageAllocator(allocator); } ~ExperimentalWithCallbackMethod_DeleteWorkflowAttributes() override { @@ -3441,7 +3362,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithCallbackMethod_ListMatchableAttributes() { - ::grpc::Service::experimental().MarkMethodCallback(40, + ::grpc::Service::experimental().MarkMethodCallback(39, new ::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::ListMatchableAttributesRequest, ::flyteidl::admin::ListMatchableAttributesResponse>( [this](::grpc::ServerContext* context, const ::flyteidl::admin::ListMatchableAttributesRequest* request, @@ -3453,7 +3374,7 @@ class AdminService final { void SetMessageAllocatorFor_ListMatchableAttributes( ::grpc::experimental::MessageAllocator< ::flyteidl::admin::ListMatchableAttributesRequest, ::flyteidl::admin::ListMatchableAttributesResponse>* allocator) { static_cast<::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::ListMatchableAttributesRequest, ::flyteidl::admin::ListMatchableAttributesResponse>*>( - ::grpc::Service::experimental().GetHandler(40)) + ::grpc::Service::experimental().GetHandler(39)) ->SetMessageAllocator(allocator); } ~ExperimentalWithCallbackMethod_ListMatchableAttributes() override { @@ -3472,7 +3393,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithCallbackMethod_ListNamedEntities() { - ::grpc::Service::experimental().MarkMethodCallback(41, + ::grpc::Service::experimental().MarkMethodCallback(40, new ::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::NamedEntityListRequest, ::flyteidl::admin::NamedEntityList>( [this](::grpc::ServerContext* context, const ::flyteidl::admin::NamedEntityListRequest* request, @@ -3484,7 +3405,7 @@ class AdminService final { void SetMessageAllocatorFor_ListNamedEntities( ::grpc::experimental::MessageAllocator< ::flyteidl::admin::NamedEntityListRequest, ::flyteidl::admin::NamedEntityList>* allocator) { static_cast<::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::NamedEntityListRequest, ::flyteidl::admin::NamedEntityList>*>( - ::grpc::Service::experimental().GetHandler(41)) + ::grpc::Service::experimental().GetHandler(40)) ->SetMessageAllocator(allocator); } ~ExperimentalWithCallbackMethod_ListNamedEntities() override { @@ -3503,7 +3424,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithCallbackMethod_GetNamedEntity() { - ::grpc::Service::experimental().MarkMethodCallback(42, + ::grpc::Service::experimental().MarkMethodCallback(41, new ::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::NamedEntityGetRequest, ::flyteidl::admin::NamedEntity>( [this](::grpc::ServerContext* context, const ::flyteidl::admin::NamedEntityGetRequest* request, @@ -3515,7 +3436,7 @@ class AdminService final { void SetMessageAllocatorFor_GetNamedEntity( ::grpc::experimental::MessageAllocator< ::flyteidl::admin::NamedEntityGetRequest, ::flyteidl::admin::NamedEntity>* allocator) { static_cast<::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::NamedEntityGetRequest, ::flyteidl::admin::NamedEntity>*>( - ::grpc::Service::experimental().GetHandler(42)) + ::grpc::Service::experimental().GetHandler(41)) ->SetMessageAllocator(allocator); } ~ExperimentalWithCallbackMethod_GetNamedEntity() override { @@ -3534,7 +3455,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithCallbackMethod_UpdateNamedEntity() { - ::grpc::Service::experimental().MarkMethodCallback(43, + ::grpc::Service::experimental().MarkMethodCallback(42, new ::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::NamedEntityUpdateRequest, ::flyteidl::admin::NamedEntityUpdateResponse>( [this](::grpc::ServerContext* context, const ::flyteidl::admin::NamedEntityUpdateRequest* request, @@ -3546,7 +3467,7 @@ class AdminService final { void SetMessageAllocatorFor_UpdateNamedEntity( ::grpc::experimental::MessageAllocator< ::flyteidl::admin::NamedEntityUpdateRequest, ::flyteidl::admin::NamedEntityUpdateResponse>* allocator) { static_cast<::grpc::internal::CallbackUnaryHandler< ::flyteidl::admin::NamedEntityUpdateRequest, ::flyteidl::admin::NamedEntityUpdateResponse>*>( - ::grpc::Service::experimental().GetHandler(43)) + ::grpc::Service::experimental().GetHandler(42)) ->SetMessageAllocator(allocator); } ~ExperimentalWithCallbackMethod_UpdateNamedEntity() override { @@ -3559,7 +3480,7 @@ class AdminService final { } virtual void UpdateNamedEntity(::grpc::ServerContext* context, const ::flyteidl::admin::NamedEntityUpdateRequest* request, ::flyteidl::admin::NamedEntityUpdateResponse* response, ::grpc::experimental::ServerCallbackRpcController* controller) { controller->Finish(::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, "")); } }; - typedef ExperimentalWithCallbackMethod_CreateTask > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > ExperimentalCallbackService; + typedef ExperimentalWithCallbackMethod_CreateTask > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > ExperimentalCallbackService; template class WithGenericMethod_CreateTask : public BaseClass { private: @@ -3697,29 +3618,12 @@ class AdminService final { } }; template - class WithGenericMethod_UpdateWorkflow : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service *service) {} - public: - WithGenericMethod_UpdateWorkflow() { - ::grpc::Service::MarkMethodGeneric(8); - } - ~WithGenericMethod_UpdateWorkflow() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status UpdateWorkflow(::grpc::ServerContext* context, const ::flyteidl::admin::WorkflowUpdateRequest* request, ::flyteidl::admin::WorkflowUpdateResponse* response) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template class WithGenericMethod_CreateLaunchPlan : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithGenericMethod_CreateLaunchPlan() { - ::grpc::Service::MarkMethodGeneric(9); + ::grpc::Service::MarkMethodGeneric(8); } ~WithGenericMethod_CreateLaunchPlan() override { BaseClassMustBeDerivedFromService(this); @@ -3736,7 +3640,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithGenericMethod_GetLaunchPlan() { - ::grpc::Service::MarkMethodGeneric(10); + ::grpc::Service::MarkMethodGeneric(9); } ~WithGenericMethod_GetLaunchPlan() override { BaseClassMustBeDerivedFromService(this); @@ -3753,7 +3657,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithGenericMethod_GetActiveLaunchPlan() { - ::grpc::Service::MarkMethodGeneric(11); + ::grpc::Service::MarkMethodGeneric(10); } ~WithGenericMethod_GetActiveLaunchPlan() override { BaseClassMustBeDerivedFromService(this); @@ -3770,7 +3674,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithGenericMethod_ListActiveLaunchPlans() { - ::grpc::Service::MarkMethodGeneric(12); + ::grpc::Service::MarkMethodGeneric(11); } ~WithGenericMethod_ListActiveLaunchPlans() override { BaseClassMustBeDerivedFromService(this); @@ -3787,7 +3691,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithGenericMethod_ListLaunchPlanIds() { - ::grpc::Service::MarkMethodGeneric(13); + ::grpc::Service::MarkMethodGeneric(12); } ~WithGenericMethod_ListLaunchPlanIds() override { BaseClassMustBeDerivedFromService(this); @@ -3804,7 +3708,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithGenericMethod_ListLaunchPlans() { - ::grpc::Service::MarkMethodGeneric(14); + ::grpc::Service::MarkMethodGeneric(13); } ~WithGenericMethod_ListLaunchPlans() override { BaseClassMustBeDerivedFromService(this); @@ -3821,7 +3725,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithGenericMethod_UpdateLaunchPlan() { - ::grpc::Service::MarkMethodGeneric(15); + ::grpc::Service::MarkMethodGeneric(14); } ~WithGenericMethod_UpdateLaunchPlan() override { BaseClassMustBeDerivedFromService(this); @@ -3838,7 +3742,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithGenericMethod_CreateExecution() { - ::grpc::Service::MarkMethodGeneric(16); + ::grpc::Service::MarkMethodGeneric(15); } ~WithGenericMethod_CreateExecution() override { BaseClassMustBeDerivedFromService(this); @@ -3855,7 +3759,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithGenericMethod_RelaunchExecution() { - ::grpc::Service::MarkMethodGeneric(17); + ::grpc::Service::MarkMethodGeneric(16); } ~WithGenericMethod_RelaunchExecution() override { BaseClassMustBeDerivedFromService(this); @@ -3872,7 +3776,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithGenericMethod_GetExecution() { - ::grpc::Service::MarkMethodGeneric(18); + ::grpc::Service::MarkMethodGeneric(17); } ~WithGenericMethod_GetExecution() override { BaseClassMustBeDerivedFromService(this); @@ -3889,7 +3793,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithGenericMethod_GetExecutionData() { - ::grpc::Service::MarkMethodGeneric(19); + ::grpc::Service::MarkMethodGeneric(18); } ~WithGenericMethod_GetExecutionData() override { BaseClassMustBeDerivedFromService(this); @@ -3906,7 +3810,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithGenericMethod_ListExecutions() { - ::grpc::Service::MarkMethodGeneric(20); + ::grpc::Service::MarkMethodGeneric(19); } ~WithGenericMethod_ListExecutions() override { BaseClassMustBeDerivedFromService(this); @@ -3923,7 +3827,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithGenericMethod_TerminateExecution() { - ::grpc::Service::MarkMethodGeneric(21); + ::grpc::Service::MarkMethodGeneric(20); } ~WithGenericMethod_TerminateExecution() override { BaseClassMustBeDerivedFromService(this); @@ -3940,7 +3844,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithGenericMethod_GetNodeExecution() { - ::grpc::Service::MarkMethodGeneric(22); + ::grpc::Service::MarkMethodGeneric(21); } ~WithGenericMethod_GetNodeExecution() override { BaseClassMustBeDerivedFromService(this); @@ -3957,7 +3861,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithGenericMethod_ListNodeExecutions() { - ::grpc::Service::MarkMethodGeneric(23); + ::grpc::Service::MarkMethodGeneric(22); } ~WithGenericMethod_ListNodeExecutions() override { BaseClassMustBeDerivedFromService(this); @@ -3974,7 +3878,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithGenericMethod_ListNodeExecutionsForTask() { - ::grpc::Service::MarkMethodGeneric(24); + ::grpc::Service::MarkMethodGeneric(23); } ~WithGenericMethod_ListNodeExecutionsForTask() override { BaseClassMustBeDerivedFromService(this); @@ -3991,7 +3895,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithGenericMethod_GetNodeExecutionData() { - ::grpc::Service::MarkMethodGeneric(25); + ::grpc::Service::MarkMethodGeneric(24); } ~WithGenericMethod_GetNodeExecutionData() override { BaseClassMustBeDerivedFromService(this); @@ -4008,7 +3912,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithGenericMethod_RegisterProject() { - ::grpc::Service::MarkMethodGeneric(26); + ::grpc::Service::MarkMethodGeneric(25); } ~WithGenericMethod_RegisterProject() override { BaseClassMustBeDerivedFromService(this); @@ -4025,7 +3929,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithGenericMethod_ListProjects() { - ::grpc::Service::MarkMethodGeneric(27); + ::grpc::Service::MarkMethodGeneric(26); } ~WithGenericMethod_ListProjects() override { BaseClassMustBeDerivedFromService(this); @@ -4042,7 +3946,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithGenericMethod_CreateWorkflowEvent() { - ::grpc::Service::MarkMethodGeneric(28); + ::grpc::Service::MarkMethodGeneric(27); } ~WithGenericMethod_CreateWorkflowEvent() override { BaseClassMustBeDerivedFromService(this); @@ -4059,7 +3963,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithGenericMethod_CreateNodeEvent() { - ::grpc::Service::MarkMethodGeneric(29); + ::grpc::Service::MarkMethodGeneric(28); } ~WithGenericMethod_CreateNodeEvent() override { BaseClassMustBeDerivedFromService(this); @@ -4076,7 +3980,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithGenericMethod_CreateTaskEvent() { - ::grpc::Service::MarkMethodGeneric(30); + ::grpc::Service::MarkMethodGeneric(29); } ~WithGenericMethod_CreateTaskEvent() override { BaseClassMustBeDerivedFromService(this); @@ -4093,7 +3997,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithGenericMethod_GetTaskExecution() { - ::grpc::Service::MarkMethodGeneric(31); + ::grpc::Service::MarkMethodGeneric(30); } ~WithGenericMethod_GetTaskExecution() override { BaseClassMustBeDerivedFromService(this); @@ -4110,7 +4014,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithGenericMethod_ListTaskExecutions() { - ::grpc::Service::MarkMethodGeneric(32); + ::grpc::Service::MarkMethodGeneric(31); } ~WithGenericMethod_ListTaskExecutions() override { BaseClassMustBeDerivedFromService(this); @@ -4127,7 +4031,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithGenericMethod_GetTaskExecutionData() { - ::grpc::Service::MarkMethodGeneric(33); + ::grpc::Service::MarkMethodGeneric(32); } ~WithGenericMethod_GetTaskExecutionData() override { BaseClassMustBeDerivedFromService(this); @@ -4144,7 +4048,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithGenericMethod_UpdateProjectDomainAttributes() { - ::grpc::Service::MarkMethodGeneric(34); + ::grpc::Service::MarkMethodGeneric(33); } ~WithGenericMethod_UpdateProjectDomainAttributes() override { BaseClassMustBeDerivedFromService(this); @@ -4161,7 +4065,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithGenericMethod_GetProjectDomainAttributes() { - ::grpc::Service::MarkMethodGeneric(35); + ::grpc::Service::MarkMethodGeneric(34); } ~WithGenericMethod_GetProjectDomainAttributes() override { BaseClassMustBeDerivedFromService(this); @@ -4178,7 +4082,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithGenericMethod_DeleteProjectDomainAttributes() { - ::grpc::Service::MarkMethodGeneric(36); + ::grpc::Service::MarkMethodGeneric(35); } ~WithGenericMethod_DeleteProjectDomainAttributes() override { BaseClassMustBeDerivedFromService(this); @@ -4195,7 +4099,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithGenericMethod_UpdateWorkflowAttributes() { - ::grpc::Service::MarkMethodGeneric(37); + ::grpc::Service::MarkMethodGeneric(36); } ~WithGenericMethod_UpdateWorkflowAttributes() override { BaseClassMustBeDerivedFromService(this); @@ -4212,7 +4116,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithGenericMethod_GetWorkflowAttributes() { - ::grpc::Service::MarkMethodGeneric(38); + ::grpc::Service::MarkMethodGeneric(37); } ~WithGenericMethod_GetWorkflowAttributes() override { BaseClassMustBeDerivedFromService(this); @@ -4229,7 +4133,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithGenericMethod_DeleteWorkflowAttributes() { - ::grpc::Service::MarkMethodGeneric(39); + ::grpc::Service::MarkMethodGeneric(38); } ~WithGenericMethod_DeleteWorkflowAttributes() override { BaseClassMustBeDerivedFromService(this); @@ -4246,7 +4150,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithGenericMethod_ListMatchableAttributes() { - ::grpc::Service::MarkMethodGeneric(40); + ::grpc::Service::MarkMethodGeneric(39); } ~WithGenericMethod_ListMatchableAttributes() override { BaseClassMustBeDerivedFromService(this); @@ -4263,7 +4167,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithGenericMethod_ListNamedEntities() { - ::grpc::Service::MarkMethodGeneric(41); + ::grpc::Service::MarkMethodGeneric(40); } ~WithGenericMethod_ListNamedEntities() override { BaseClassMustBeDerivedFromService(this); @@ -4280,7 +4184,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithGenericMethod_GetNamedEntity() { - ::grpc::Service::MarkMethodGeneric(42); + ::grpc::Service::MarkMethodGeneric(41); } ~WithGenericMethod_GetNamedEntity() override { BaseClassMustBeDerivedFromService(this); @@ -4297,7 +4201,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithGenericMethod_UpdateNamedEntity() { - ::grpc::Service::MarkMethodGeneric(43); + ::grpc::Service::MarkMethodGeneric(42); } ~WithGenericMethod_UpdateNamedEntity() override { BaseClassMustBeDerivedFromService(this); @@ -4469,32 +4373,12 @@ class AdminService final { } }; template - class WithRawMethod_UpdateWorkflow : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service *service) {} - public: - WithRawMethod_UpdateWorkflow() { - ::grpc::Service::MarkMethodRaw(8); - } - ~WithRawMethod_UpdateWorkflow() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status UpdateWorkflow(::grpc::ServerContext* context, const ::flyteidl::admin::WorkflowUpdateRequest* request, ::flyteidl::admin::WorkflowUpdateResponse* response) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestUpdateWorkflow(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(8, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template class WithRawMethod_CreateLaunchPlan : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithRawMethod_CreateLaunchPlan() { - ::grpc::Service::MarkMethodRaw(9); + ::grpc::Service::MarkMethodRaw(8); } ~WithRawMethod_CreateLaunchPlan() override { BaseClassMustBeDerivedFromService(this); @@ -4505,7 +4389,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestCreateLaunchPlan(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(9, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(8, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -4514,7 +4398,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithRawMethod_GetLaunchPlan() { - ::grpc::Service::MarkMethodRaw(10); + ::grpc::Service::MarkMethodRaw(9); } ~WithRawMethod_GetLaunchPlan() override { BaseClassMustBeDerivedFromService(this); @@ -4525,7 +4409,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestGetLaunchPlan(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(10, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(9, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -4534,7 +4418,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithRawMethod_GetActiveLaunchPlan() { - ::grpc::Service::MarkMethodRaw(11); + ::grpc::Service::MarkMethodRaw(10); } ~WithRawMethod_GetActiveLaunchPlan() override { BaseClassMustBeDerivedFromService(this); @@ -4545,7 +4429,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestGetActiveLaunchPlan(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(11, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(10, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -4554,7 +4438,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithRawMethod_ListActiveLaunchPlans() { - ::grpc::Service::MarkMethodRaw(12); + ::grpc::Service::MarkMethodRaw(11); } ~WithRawMethod_ListActiveLaunchPlans() override { BaseClassMustBeDerivedFromService(this); @@ -4565,7 +4449,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestListActiveLaunchPlans(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(12, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(11, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -4574,7 +4458,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithRawMethod_ListLaunchPlanIds() { - ::grpc::Service::MarkMethodRaw(13); + ::grpc::Service::MarkMethodRaw(12); } ~WithRawMethod_ListLaunchPlanIds() override { BaseClassMustBeDerivedFromService(this); @@ -4585,7 +4469,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestListLaunchPlanIds(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(13, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(12, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -4594,7 +4478,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithRawMethod_ListLaunchPlans() { - ::grpc::Service::MarkMethodRaw(14); + ::grpc::Service::MarkMethodRaw(13); } ~WithRawMethod_ListLaunchPlans() override { BaseClassMustBeDerivedFromService(this); @@ -4605,7 +4489,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestListLaunchPlans(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(14, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(13, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -4614,7 +4498,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithRawMethod_UpdateLaunchPlan() { - ::grpc::Service::MarkMethodRaw(15); + ::grpc::Service::MarkMethodRaw(14); } ~WithRawMethod_UpdateLaunchPlan() override { BaseClassMustBeDerivedFromService(this); @@ -4625,7 +4509,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestUpdateLaunchPlan(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(15, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(14, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -4634,7 +4518,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithRawMethod_CreateExecution() { - ::grpc::Service::MarkMethodRaw(16); + ::grpc::Service::MarkMethodRaw(15); } ~WithRawMethod_CreateExecution() override { BaseClassMustBeDerivedFromService(this); @@ -4645,7 +4529,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestCreateExecution(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(16, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(15, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -4654,7 +4538,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithRawMethod_RelaunchExecution() { - ::grpc::Service::MarkMethodRaw(17); + ::grpc::Service::MarkMethodRaw(16); } ~WithRawMethod_RelaunchExecution() override { BaseClassMustBeDerivedFromService(this); @@ -4665,7 +4549,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestRelaunchExecution(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(17, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(16, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -4674,7 +4558,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithRawMethod_GetExecution() { - ::grpc::Service::MarkMethodRaw(18); + ::grpc::Service::MarkMethodRaw(17); } ~WithRawMethod_GetExecution() override { BaseClassMustBeDerivedFromService(this); @@ -4685,7 +4569,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestGetExecution(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(18, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(17, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -4694,7 +4578,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithRawMethod_GetExecutionData() { - ::grpc::Service::MarkMethodRaw(19); + ::grpc::Service::MarkMethodRaw(18); } ~WithRawMethod_GetExecutionData() override { BaseClassMustBeDerivedFromService(this); @@ -4705,7 +4589,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestGetExecutionData(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(19, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(18, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -4714,7 +4598,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithRawMethod_ListExecutions() { - ::grpc::Service::MarkMethodRaw(20); + ::grpc::Service::MarkMethodRaw(19); } ~WithRawMethod_ListExecutions() override { BaseClassMustBeDerivedFromService(this); @@ -4725,7 +4609,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestListExecutions(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(20, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(19, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -4734,7 +4618,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithRawMethod_TerminateExecution() { - ::grpc::Service::MarkMethodRaw(21); + ::grpc::Service::MarkMethodRaw(20); } ~WithRawMethod_TerminateExecution() override { BaseClassMustBeDerivedFromService(this); @@ -4745,7 +4629,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestTerminateExecution(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(21, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(20, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -4754,7 +4638,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithRawMethod_GetNodeExecution() { - ::grpc::Service::MarkMethodRaw(22); + ::grpc::Service::MarkMethodRaw(21); } ~WithRawMethod_GetNodeExecution() override { BaseClassMustBeDerivedFromService(this); @@ -4765,7 +4649,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestGetNodeExecution(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(22, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(21, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -4774,7 +4658,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithRawMethod_ListNodeExecutions() { - ::grpc::Service::MarkMethodRaw(23); + ::grpc::Service::MarkMethodRaw(22); } ~WithRawMethod_ListNodeExecutions() override { BaseClassMustBeDerivedFromService(this); @@ -4785,7 +4669,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestListNodeExecutions(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(23, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(22, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -4794,7 +4678,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithRawMethod_ListNodeExecutionsForTask() { - ::grpc::Service::MarkMethodRaw(24); + ::grpc::Service::MarkMethodRaw(23); } ~WithRawMethod_ListNodeExecutionsForTask() override { BaseClassMustBeDerivedFromService(this); @@ -4805,7 +4689,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestListNodeExecutionsForTask(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(24, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(23, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -4814,7 +4698,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithRawMethod_GetNodeExecutionData() { - ::grpc::Service::MarkMethodRaw(25); + ::grpc::Service::MarkMethodRaw(24); } ~WithRawMethod_GetNodeExecutionData() override { BaseClassMustBeDerivedFromService(this); @@ -4825,7 +4709,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestGetNodeExecutionData(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(25, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(24, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -4834,7 +4718,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithRawMethod_RegisterProject() { - ::grpc::Service::MarkMethodRaw(26); + ::grpc::Service::MarkMethodRaw(25); } ~WithRawMethod_RegisterProject() override { BaseClassMustBeDerivedFromService(this); @@ -4845,7 +4729,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestRegisterProject(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(26, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(25, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -4854,7 +4738,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithRawMethod_ListProjects() { - ::grpc::Service::MarkMethodRaw(27); + ::grpc::Service::MarkMethodRaw(26); } ~WithRawMethod_ListProjects() override { BaseClassMustBeDerivedFromService(this); @@ -4865,7 +4749,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestListProjects(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(27, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(26, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -4874,7 +4758,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithRawMethod_CreateWorkflowEvent() { - ::grpc::Service::MarkMethodRaw(28); + ::grpc::Service::MarkMethodRaw(27); } ~WithRawMethod_CreateWorkflowEvent() override { BaseClassMustBeDerivedFromService(this); @@ -4885,7 +4769,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestCreateWorkflowEvent(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(28, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(27, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -4894,7 +4778,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithRawMethod_CreateNodeEvent() { - ::grpc::Service::MarkMethodRaw(29); + ::grpc::Service::MarkMethodRaw(28); } ~WithRawMethod_CreateNodeEvent() override { BaseClassMustBeDerivedFromService(this); @@ -4905,7 +4789,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestCreateNodeEvent(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(29, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(28, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -4914,7 +4798,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithRawMethod_CreateTaskEvent() { - ::grpc::Service::MarkMethodRaw(30); + ::grpc::Service::MarkMethodRaw(29); } ~WithRawMethod_CreateTaskEvent() override { BaseClassMustBeDerivedFromService(this); @@ -4925,7 +4809,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestCreateTaskEvent(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(30, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(29, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -4934,7 +4818,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithRawMethod_GetTaskExecution() { - ::grpc::Service::MarkMethodRaw(31); + ::grpc::Service::MarkMethodRaw(30); } ~WithRawMethod_GetTaskExecution() override { BaseClassMustBeDerivedFromService(this); @@ -4945,7 +4829,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestGetTaskExecution(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(31, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(30, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -4954,7 +4838,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithRawMethod_ListTaskExecutions() { - ::grpc::Service::MarkMethodRaw(32); + ::grpc::Service::MarkMethodRaw(31); } ~WithRawMethod_ListTaskExecutions() override { BaseClassMustBeDerivedFromService(this); @@ -4965,7 +4849,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestListTaskExecutions(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(32, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(31, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -4974,7 +4858,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithRawMethod_GetTaskExecutionData() { - ::grpc::Service::MarkMethodRaw(33); + ::grpc::Service::MarkMethodRaw(32); } ~WithRawMethod_GetTaskExecutionData() override { BaseClassMustBeDerivedFromService(this); @@ -4985,7 +4869,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestGetTaskExecutionData(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(33, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(32, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -4994,7 +4878,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithRawMethod_UpdateProjectDomainAttributes() { - ::grpc::Service::MarkMethodRaw(34); + ::grpc::Service::MarkMethodRaw(33); } ~WithRawMethod_UpdateProjectDomainAttributes() override { BaseClassMustBeDerivedFromService(this); @@ -5005,7 +4889,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestUpdateProjectDomainAttributes(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(34, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(33, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -5014,7 +4898,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithRawMethod_GetProjectDomainAttributes() { - ::grpc::Service::MarkMethodRaw(35); + ::grpc::Service::MarkMethodRaw(34); } ~WithRawMethod_GetProjectDomainAttributes() override { BaseClassMustBeDerivedFromService(this); @@ -5025,7 +4909,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestGetProjectDomainAttributes(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(35, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(34, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -5034,7 +4918,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithRawMethod_DeleteProjectDomainAttributes() { - ::grpc::Service::MarkMethodRaw(36); + ::grpc::Service::MarkMethodRaw(35); } ~WithRawMethod_DeleteProjectDomainAttributes() override { BaseClassMustBeDerivedFromService(this); @@ -5045,7 +4929,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestDeleteProjectDomainAttributes(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(36, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(35, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -5054,7 +4938,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithRawMethod_UpdateWorkflowAttributes() { - ::grpc::Service::MarkMethodRaw(37); + ::grpc::Service::MarkMethodRaw(36); } ~WithRawMethod_UpdateWorkflowAttributes() override { BaseClassMustBeDerivedFromService(this); @@ -5065,7 +4949,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestUpdateWorkflowAttributes(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(37, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(36, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -5074,7 +4958,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithRawMethod_GetWorkflowAttributes() { - ::grpc::Service::MarkMethodRaw(38); + ::grpc::Service::MarkMethodRaw(37); } ~WithRawMethod_GetWorkflowAttributes() override { BaseClassMustBeDerivedFromService(this); @@ -5085,7 +4969,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestGetWorkflowAttributes(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(38, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(37, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -5094,7 +4978,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithRawMethod_DeleteWorkflowAttributes() { - ::grpc::Service::MarkMethodRaw(39); + ::grpc::Service::MarkMethodRaw(38); } ~WithRawMethod_DeleteWorkflowAttributes() override { BaseClassMustBeDerivedFromService(this); @@ -5105,7 +4989,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestDeleteWorkflowAttributes(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(39, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(38, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -5114,7 +4998,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithRawMethod_ListMatchableAttributes() { - ::grpc::Service::MarkMethodRaw(40); + ::grpc::Service::MarkMethodRaw(39); } ~WithRawMethod_ListMatchableAttributes() override { BaseClassMustBeDerivedFromService(this); @@ -5125,7 +5009,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestListMatchableAttributes(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(40, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(39, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -5134,7 +5018,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithRawMethod_ListNamedEntities() { - ::grpc::Service::MarkMethodRaw(41); + ::grpc::Service::MarkMethodRaw(40); } ~WithRawMethod_ListNamedEntities() override { BaseClassMustBeDerivedFromService(this); @@ -5145,7 +5029,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestListNamedEntities(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(41, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(40, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -5154,7 +5038,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithRawMethod_GetNamedEntity() { - ::grpc::Service::MarkMethodRaw(42); + ::grpc::Service::MarkMethodRaw(41); } ~WithRawMethod_GetNamedEntity() override { BaseClassMustBeDerivedFromService(this); @@ -5165,7 +5049,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestGetNamedEntity(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(42, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(41, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -5174,7 +5058,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithRawMethod_UpdateNamedEntity() { - ::grpc::Service::MarkMethodRaw(43); + ::grpc::Service::MarkMethodRaw(42); } ~WithRawMethod_UpdateNamedEntity() override { BaseClassMustBeDerivedFromService(this); @@ -5185,7 +5069,7 @@ class AdminService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestUpdateNamedEntity(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(43, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(42, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -5389,37 +5273,12 @@ class AdminService final { virtual void ListWorkflows(::grpc::ServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response, ::grpc::experimental::ServerCallbackRpcController* controller) { controller->Finish(::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, "")); } }; template - class ExperimentalWithRawCallbackMethod_UpdateWorkflow : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service *service) {} - public: - ExperimentalWithRawCallbackMethod_UpdateWorkflow() { - ::grpc::Service::experimental().MarkMethodRawCallback(8, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this](::grpc::ServerContext* context, - const ::grpc::ByteBuffer* request, - ::grpc::ByteBuffer* response, - ::grpc::experimental::ServerCallbackRpcController* controller) { - this->UpdateWorkflow(context, request, response, controller); - })); - } - ~ExperimentalWithRawCallbackMethod_UpdateWorkflow() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status UpdateWorkflow(::grpc::ServerContext* context, const ::flyteidl::admin::WorkflowUpdateRequest* request, ::flyteidl::admin::WorkflowUpdateResponse* response) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual void UpdateWorkflow(::grpc::ServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response, ::grpc::experimental::ServerCallbackRpcController* controller) { controller->Finish(::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, "")); } - }; - template class ExperimentalWithRawCallbackMethod_CreateLaunchPlan : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithRawCallbackMethod_CreateLaunchPlan() { - ::grpc::Service::experimental().MarkMethodRawCallback(9, + ::grpc::Service::experimental().MarkMethodRawCallback(8, new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( [this](::grpc::ServerContext* context, const ::grpc::ByteBuffer* request, @@ -5444,7 +5303,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithRawCallbackMethod_GetLaunchPlan() { - ::grpc::Service::experimental().MarkMethodRawCallback(10, + ::grpc::Service::experimental().MarkMethodRawCallback(9, new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( [this](::grpc::ServerContext* context, const ::grpc::ByteBuffer* request, @@ -5469,7 +5328,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithRawCallbackMethod_GetActiveLaunchPlan() { - ::grpc::Service::experimental().MarkMethodRawCallback(11, + ::grpc::Service::experimental().MarkMethodRawCallback(10, new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( [this](::grpc::ServerContext* context, const ::grpc::ByteBuffer* request, @@ -5494,7 +5353,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithRawCallbackMethod_ListActiveLaunchPlans() { - ::grpc::Service::experimental().MarkMethodRawCallback(12, + ::grpc::Service::experimental().MarkMethodRawCallback(11, new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( [this](::grpc::ServerContext* context, const ::grpc::ByteBuffer* request, @@ -5519,7 +5378,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithRawCallbackMethod_ListLaunchPlanIds() { - ::grpc::Service::experimental().MarkMethodRawCallback(13, + ::grpc::Service::experimental().MarkMethodRawCallback(12, new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( [this](::grpc::ServerContext* context, const ::grpc::ByteBuffer* request, @@ -5544,7 +5403,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithRawCallbackMethod_ListLaunchPlans() { - ::grpc::Service::experimental().MarkMethodRawCallback(14, + ::grpc::Service::experimental().MarkMethodRawCallback(13, new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( [this](::grpc::ServerContext* context, const ::grpc::ByteBuffer* request, @@ -5569,7 +5428,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithRawCallbackMethod_UpdateLaunchPlan() { - ::grpc::Service::experimental().MarkMethodRawCallback(15, + ::grpc::Service::experimental().MarkMethodRawCallback(14, new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( [this](::grpc::ServerContext* context, const ::grpc::ByteBuffer* request, @@ -5594,7 +5453,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithRawCallbackMethod_CreateExecution() { - ::grpc::Service::experimental().MarkMethodRawCallback(16, + ::grpc::Service::experimental().MarkMethodRawCallback(15, new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( [this](::grpc::ServerContext* context, const ::grpc::ByteBuffer* request, @@ -5619,7 +5478,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithRawCallbackMethod_RelaunchExecution() { - ::grpc::Service::experimental().MarkMethodRawCallback(17, + ::grpc::Service::experimental().MarkMethodRawCallback(16, new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( [this](::grpc::ServerContext* context, const ::grpc::ByteBuffer* request, @@ -5644,7 +5503,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithRawCallbackMethod_GetExecution() { - ::grpc::Service::experimental().MarkMethodRawCallback(18, + ::grpc::Service::experimental().MarkMethodRawCallback(17, new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( [this](::grpc::ServerContext* context, const ::grpc::ByteBuffer* request, @@ -5669,7 +5528,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithRawCallbackMethod_GetExecutionData() { - ::grpc::Service::experimental().MarkMethodRawCallback(19, + ::grpc::Service::experimental().MarkMethodRawCallback(18, new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( [this](::grpc::ServerContext* context, const ::grpc::ByteBuffer* request, @@ -5694,7 +5553,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithRawCallbackMethod_ListExecutions() { - ::grpc::Service::experimental().MarkMethodRawCallback(20, + ::grpc::Service::experimental().MarkMethodRawCallback(19, new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( [this](::grpc::ServerContext* context, const ::grpc::ByteBuffer* request, @@ -5719,7 +5578,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithRawCallbackMethod_TerminateExecution() { - ::grpc::Service::experimental().MarkMethodRawCallback(21, + ::grpc::Service::experimental().MarkMethodRawCallback(20, new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( [this](::grpc::ServerContext* context, const ::grpc::ByteBuffer* request, @@ -5744,7 +5603,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithRawCallbackMethod_GetNodeExecution() { - ::grpc::Service::experimental().MarkMethodRawCallback(22, + ::grpc::Service::experimental().MarkMethodRawCallback(21, new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( [this](::grpc::ServerContext* context, const ::grpc::ByteBuffer* request, @@ -5769,7 +5628,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithRawCallbackMethod_ListNodeExecutions() { - ::grpc::Service::experimental().MarkMethodRawCallback(23, + ::grpc::Service::experimental().MarkMethodRawCallback(22, new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( [this](::grpc::ServerContext* context, const ::grpc::ByteBuffer* request, @@ -5794,7 +5653,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithRawCallbackMethod_ListNodeExecutionsForTask() { - ::grpc::Service::experimental().MarkMethodRawCallback(24, + ::grpc::Service::experimental().MarkMethodRawCallback(23, new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( [this](::grpc::ServerContext* context, const ::grpc::ByteBuffer* request, @@ -5819,7 +5678,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithRawCallbackMethod_GetNodeExecutionData() { - ::grpc::Service::experimental().MarkMethodRawCallback(25, + ::grpc::Service::experimental().MarkMethodRawCallback(24, new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( [this](::grpc::ServerContext* context, const ::grpc::ByteBuffer* request, @@ -5844,7 +5703,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithRawCallbackMethod_RegisterProject() { - ::grpc::Service::experimental().MarkMethodRawCallback(26, + ::grpc::Service::experimental().MarkMethodRawCallback(25, new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( [this](::grpc::ServerContext* context, const ::grpc::ByteBuffer* request, @@ -5869,7 +5728,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithRawCallbackMethod_ListProjects() { - ::grpc::Service::experimental().MarkMethodRawCallback(27, + ::grpc::Service::experimental().MarkMethodRawCallback(26, new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( [this](::grpc::ServerContext* context, const ::grpc::ByteBuffer* request, @@ -5894,7 +5753,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithRawCallbackMethod_CreateWorkflowEvent() { - ::grpc::Service::experimental().MarkMethodRawCallback(28, + ::grpc::Service::experimental().MarkMethodRawCallback(27, new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( [this](::grpc::ServerContext* context, const ::grpc::ByteBuffer* request, @@ -5919,7 +5778,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithRawCallbackMethod_CreateNodeEvent() { - ::grpc::Service::experimental().MarkMethodRawCallback(29, + ::grpc::Service::experimental().MarkMethodRawCallback(28, new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( [this](::grpc::ServerContext* context, const ::grpc::ByteBuffer* request, @@ -5944,7 +5803,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithRawCallbackMethod_CreateTaskEvent() { - ::grpc::Service::experimental().MarkMethodRawCallback(30, + ::grpc::Service::experimental().MarkMethodRawCallback(29, new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( [this](::grpc::ServerContext* context, const ::grpc::ByteBuffer* request, @@ -5969,7 +5828,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithRawCallbackMethod_GetTaskExecution() { - ::grpc::Service::experimental().MarkMethodRawCallback(31, + ::grpc::Service::experimental().MarkMethodRawCallback(30, new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( [this](::grpc::ServerContext* context, const ::grpc::ByteBuffer* request, @@ -5994,7 +5853,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithRawCallbackMethod_ListTaskExecutions() { - ::grpc::Service::experimental().MarkMethodRawCallback(32, + ::grpc::Service::experimental().MarkMethodRawCallback(31, new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( [this](::grpc::ServerContext* context, const ::grpc::ByteBuffer* request, @@ -6019,7 +5878,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithRawCallbackMethod_GetTaskExecutionData() { - ::grpc::Service::experimental().MarkMethodRawCallback(33, + ::grpc::Service::experimental().MarkMethodRawCallback(32, new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( [this](::grpc::ServerContext* context, const ::grpc::ByteBuffer* request, @@ -6044,7 +5903,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithRawCallbackMethod_UpdateProjectDomainAttributes() { - ::grpc::Service::experimental().MarkMethodRawCallback(34, + ::grpc::Service::experimental().MarkMethodRawCallback(33, new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( [this](::grpc::ServerContext* context, const ::grpc::ByteBuffer* request, @@ -6069,7 +5928,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithRawCallbackMethod_GetProjectDomainAttributes() { - ::grpc::Service::experimental().MarkMethodRawCallback(35, + ::grpc::Service::experimental().MarkMethodRawCallback(34, new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( [this](::grpc::ServerContext* context, const ::grpc::ByteBuffer* request, @@ -6094,7 +5953,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithRawCallbackMethod_DeleteProjectDomainAttributes() { - ::grpc::Service::experimental().MarkMethodRawCallback(36, + ::grpc::Service::experimental().MarkMethodRawCallback(35, new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( [this](::grpc::ServerContext* context, const ::grpc::ByteBuffer* request, @@ -6119,7 +5978,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithRawCallbackMethod_UpdateWorkflowAttributes() { - ::grpc::Service::experimental().MarkMethodRawCallback(37, + ::grpc::Service::experimental().MarkMethodRawCallback(36, new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( [this](::grpc::ServerContext* context, const ::grpc::ByteBuffer* request, @@ -6144,7 +6003,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithRawCallbackMethod_GetWorkflowAttributes() { - ::grpc::Service::experimental().MarkMethodRawCallback(38, + ::grpc::Service::experimental().MarkMethodRawCallback(37, new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( [this](::grpc::ServerContext* context, const ::grpc::ByteBuffer* request, @@ -6169,7 +6028,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithRawCallbackMethod_DeleteWorkflowAttributes() { - ::grpc::Service::experimental().MarkMethodRawCallback(39, + ::grpc::Service::experimental().MarkMethodRawCallback(38, new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( [this](::grpc::ServerContext* context, const ::grpc::ByteBuffer* request, @@ -6194,7 +6053,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithRawCallbackMethod_ListMatchableAttributes() { - ::grpc::Service::experimental().MarkMethodRawCallback(40, + ::grpc::Service::experimental().MarkMethodRawCallback(39, new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( [this](::grpc::ServerContext* context, const ::grpc::ByteBuffer* request, @@ -6219,7 +6078,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithRawCallbackMethod_ListNamedEntities() { - ::grpc::Service::experimental().MarkMethodRawCallback(41, + ::grpc::Service::experimental().MarkMethodRawCallback(40, new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( [this](::grpc::ServerContext* context, const ::grpc::ByteBuffer* request, @@ -6244,7 +6103,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithRawCallbackMethod_GetNamedEntity() { - ::grpc::Service::experimental().MarkMethodRawCallback(42, + ::grpc::Service::experimental().MarkMethodRawCallback(41, new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( [this](::grpc::ServerContext* context, const ::grpc::ByteBuffer* request, @@ -6269,7 +6128,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: ExperimentalWithRawCallbackMethod_UpdateNamedEntity() { - ::grpc::Service::experimental().MarkMethodRawCallback(43, + ::grpc::Service::experimental().MarkMethodRawCallback(42, new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( [this](::grpc::ServerContext* context, const ::grpc::ByteBuffer* request, @@ -6449,32 +6308,12 @@ class AdminService final { virtual ::grpc::Status StreamedListWorkflows(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::flyteidl::admin::ResourceListRequest,::flyteidl::admin::WorkflowList>* server_unary_streamer) = 0; }; template - class WithStreamedUnaryMethod_UpdateWorkflow : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service *service) {} - public: - WithStreamedUnaryMethod_UpdateWorkflow() { - ::grpc::Service::MarkMethodStreamed(8, - new ::grpc::internal::StreamedUnaryHandler< ::flyteidl::admin::WorkflowUpdateRequest, ::flyteidl::admin::WorkflowUpdateResponse>(std::bind(&WithStreamedUnaryMethod_UpdateWorkflow::StreamedUpdateWorkflow, this, std::placeholders::_1, std::placeholders::_2))); - } - ~WithStreamedUnaryMethod_UpdateWorkflow() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status UpdateWorkflow(::grpc::ServerContext* context, const ::flyteidl::admin::WorkflowUpdateRequest* request, ::flyteidl::admin::WorkflowUpdateResponse* response) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedUpdateWorkflow(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::flyteidl::admin::WorkflowUpdateRequest,::flyteidl::admin::WorkflowUpdateResponse>* server_unary_streamer) = 0; - }; - template class WithStreamedUnaryMethod_CreateLaunchPlan : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithStreamedUnaryMethod_CreateLaunchPlan() { - ::grpc::Service::MarkMethodStreamed(9, + ::grpc::Service::MarkMethodStreamed(8, new ::grpc::internal::StreamedUnaryHandler< ::flyteidl::admin::LaunchPlanCreateRequest, ::flyteidl::admin::LaunchPlanCreateResponse>(std::bind(&WithStreamedUnaryMethod_CreateLaunchPlan::StreamedCreateLaunchPlan, this, std::placeholders::_1, std::placeholders::_2))); } ~WithStreamedUnaryMethod_CreateLaunchPlan() override { @@ -6494,7 +6333,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithStreamedUnaryMethod_GetLaunchPlan() { - ::grpc::Service::MarkMethodStreamed(10, + ::grpc::Service::MarkMethodStreamed(9, new ::grpc::internal::StreamedUnaryHandler< ::flyteidl::admin::ObjectGetRequest, ::flyteidl::admin::LaunchPlan>(std::bind(&WithStreamedUnaryMethod_GetLaunchPlan::StreamedGetLaunchPlan, this, std::placeholders::_1, std::placeholders::_2))); } ~WithStreamedUnaryMethod_GetLaunchPlan() override { @@ -6514,7 +6353,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithStreamedUnaryMethod_GetActiveLaunchPlan() { - ::grpc::Service::MarkMethodStreamed(11, + ::grpc::Service::MarkMethodStreamed(10, new ::grpc::internal::StreamedUnaryHandler< ::flyteidl::admin::ActiveLaunchPlanRequest, ::flyteidl::admin::LaunchPlan>(std::bind(&WithStreamedUnaryMethod_GetActiveLaunchPlan::StreamedGetActiveLaunchPlan, this, std::placeholders::_1, std::placeholders::_2))); } ~WithStreamedUnaryMethod_GetActiveLaunchPlan() override { @@ -6534,7 +6373,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithStreamedUnaryMethod_ListActiveLaunchPlans() { - ::grpc::Service::MarkMethodStreamed(12, + ::grpc::Service::MarkMethodStreamed(11, new ::grpc::internal::StreamedUnaryHandler< ::flyteidl::admin::ActiveLaunchPlanListRequest, ::flyteidl::admin::LaunchPlanList>(std::bind(&WithStreamedUnaryMethod_ListActiveLaunchPlans::StreamedListActiveLaunchPlans, this, std::placeholders::_1, std::placeholders::_2))); } ~WithStreamedUnaryMethod_ListActiveLaunchPlans() override { @@ -6554,7 +6393,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithStreamedUnaryMethod_ListLaunchPlanIds() { - ::grpc::Service::MarkMethodStreamed(13, + ::grpc::Service::MarkMethodStreamed(12, new ::grpc::internal::StreamedUnaryHandler< ::flyteidl::admin::NamedEntityIdentifierListRequest, ::flyteidl::admin::NamedEntityIdentifierList>(std::bind(&WithStreamedUnaryMethod_ListLaunchPlanIds::StreamedListLaunchPlanIds, this, std::placeholders::_1, std::placeholders::_2))); } ~WithStreamedUnaryMethod_ListLaunchPlanIds() override { @@ -6574,7 +6413,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithStreamedUnaryMethod_ListLaunchPlans() { - ::grpc::Service::MarkMethodStreamed(14, + ::grpc::Service::MarkMethodStreamed(13, new ::grpc::internal::StreamedUnaryHandler< ::flyteidl::admin::ResourceListRequest, ::flyteidl::admin::LaunchPlanList>(std::bind(&WithStreamedUnaryMethod_ListLaunchPlans::StreamedListLaunchPlans, this, std::placeholders::_1, std::placeholders::_2))); } ~WithStreamedUnaryMethod_ListLaunchPlans() override { @@ -6594,7 +6433,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithStreamedUnaryMethod_UpdateLaunchPlan() { - ::grpc::Service::MarkMethodStreamed(15, + ::grpc::Service::MarkMethodStreamed(14, new ::grpc::internal::StreamedUnaryHandler< ::flyteidl::admin::LaunchPlanUpdateRequest, ::flyteidl::admin::LaunchPlanUpdateResponse>(std::bind(&WithStreamedUnaryMethod_UpdateLaunchPlan::StreamedUpdateLaunchPlan, this, std::placeholders::_1, std::placeholders::_2))); } ~WithStreamedUnaryMethod_UpdateLaunchPlan() override { @@ -6614,7 +6453,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithStreamedUnaryMethod_CreateExecution() { - ::grpc::Service::MarkMethodStreamed(16, + ::grpc::Service::MarkMethodStreamed(15, new ::grpc::internal::StreamedUnaryHandler< ::flyteidl::admin::ExecutionCreateRequest, ::flyteidl::admin::ExecutionCreateResponse>(std::bind(&WithStreamedUnaryMethod_CreateExecution::StreamedCreateExecution, this, std::placeholders::_1, std::placeholders::_2))); } ~WithStreamedUnaryMethod_CreateExecution() override { @@ -6634,7 +6473,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithStreamedUnaryMethod_RelaunchExecution() { - ::grpc::Service::MarkMethodStreamed(17, + ::grpc::Service::MarkMethodStreamed(16, new ::grpc::internal::StreamedUnaryHandler< ::flyteidl::admin::ExecutionRelaunchRequest, ::flyteidl::admin::ExecutionCreateResponse>(std::bind(&WithStreamedUnaryMethod_RelaunchExecution::StreamedRelaunchExecution, this, std::placeholders::_1, std::placeholders::_2))); } ~WithStreamedUnaryMethod_RelaunchExecution() override { @@ -6654,7 +6493,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithStreamedUnaryMethod_GetExecution() { - ::grpc::Service::MarkMethodStreamed(18, + ::grpc::Service::MarkMethodStreamed(17, new ::grpc::internal::StreamedUnaryHandler< ::flyteidl::admin::WorkflowExecutionGetRequest, ::flyteidl::admin::Execution>(std::bind(&WithStreamedUnaryMethod_GetExecution::StreamedGetExecution, this, std::placeholders::_1, std::placeholders::_2))); } ~WithStreamedUnaryMethod_GetExecution() override { @@ -6674,7 +6513,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithStreamedUnaryMethod_GetExecutionData() { - ::grpc::Service::MarkMethodStreamed(19, + ::grpc::Service::MarkMethodStreamed(18, new ::grpc::internal::StreamedUnaryHandler< ::flyteidl::admin::WorkflowExecutionGetDataRequest, ::flyteidl::admin::WorkflowExecutionGetDataResponse>(std::bind(&WithStreamedUnaryMethod_GetExecutionData::StreamedGetExecutionData, this, std::placeholders::_1, std::placeholders::_2))); } ~WithStreamedUnaryMethod_GetExecutionData() override { @@ -6694,7 +6533,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithStreamedUnaryMethod_ListExecutions() { - ::grpc::Service::MarkMethodStreamed(20, + ::grpc::Service::MarkMethodStreamed(19, new ::grpc::internal::StreamedUnaryHandler< ::flyteidl::admin::ResourceListRequest, ::flyteidl::admin::ExecutionList>(std::bind(&WithStreamedUnaryMethod_ListExecutions::StreamedListExecutions, this, std::placeholders::_1, std::placeholders::_2))); } ~WithStreamedUnaryMethod_ListExecutions() override { @@ -6714,7 +6553,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithStreamedUnaryMethod_TerminateExecution() { - ::grpc::Service::MarkMethodStreamed(21, + ::grpc::Service::MarkMethodStreamed(20, new ::grpc::internal::StreamedUnaryHandler< ::flyteidl::admin::ExecutionTerminateRequest, ::flyteidl::admin::ExecutionTerminateResponse>(std::bind(&WithStreamedUnaryMethod_TerminateExecution::StreamedTerminateExecution, this, std::placeholders::_1, std::placeholders::_2))); } ~WithStreamedUnaryMethod_TerminateExecution() override { @@ -6734,7 +6573,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithStreamedUnaryMethod_GetNodeExecution() { - ::grpc::Service::MarkMethodStreamed(22, + ::grpc::Service::MarkMethodStreamed(21, new ::grpc::internal::StreamedUnaryHandler< ::flyteidl::admin::NodeExecutionGetRequest, ::flyteidl::admin::NodeExecution>(std::bind(&WithStreamedUnaryMethod_GetNodeExecution::StreamedGetNodeExecution, this, std::placeholders::_1, std::placeholders::_2))); } ~WithStreamedUnaryMethod_GetNodeExecution() override { @@ -6754,7 +6593,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithStreamedUnaryMethod_ListNodeExecutions() { - ::grpc::Service::MarkMethodStreamed(23, + ::grpc::Service::MarkMethodStreamed(22, new ::grpc::internal::StreamedUnaryHandler< ::flyteidl::admin::NodeExecutionListRequest, ::flyteidl::admin::NodeExecutionList>(std::bind(&WithStreamedUnaryMethod_ListNodeExecutions::StreamedListNodeExecutions, this, std::placeholders::_1, std::placeholders::_2))); } ~WithStreamedUnaryMethod_ListNodeExecutions() override { @@ -6774,7 +6613,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithStreamedUnaryMethod_ListNodeExecutionsForTask() { - ::grpc::Service::MarkMethodStreamed(24, + ::grpc::Service::MarkMethodStreamed(23, new ::grpc::internal::StreamedUnaryHandler< ::flyteidl::admin::NodeExecutionForTaskListRequest, ::flyteidl::admin::NodeExecutionList>(std::bind(&WithStreamedUnaryMethod_ListNodeExecutionsForTask::StreamedListNodeExecutionsForTask, this, std::placeholders::_1, std::placeholders::_2))); } ~WithStreamedUnaryMethod_ListNodeExecutionsForTask() override { @@ -6794,7 +6633,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithStreamedUnaryMethod_GetNodeExecutionData() { - ::grpc::Service::MarkMethodStreamed(25, + ::grpc::Service::MarkMethodStreamed(24, new ::grpc::internal::StreamedUnaryHandler< ::flyteidl::admin::NodeExecutionGetDataRequest, ::flyteidl::admin::NodeExecutionGetDataResponse>(std::bind(&WithStreamedUnaryMethod_GetNodeExecutionData::StreamedGetNodeExecutionData, this, std::placeholders::_1, std::placeholders::_2))); } ~WithStreamedUnaryMethod_GetNodeExecutionData() override { @@ -6814,7 +6653,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithStreamedUnaryMethod_RegisterProject() { - ::grpc::Service::MarkMethodStreamed(26, + ::grpc::Service::MarkMethodStreamed(25, new ::grpc::internal::StreamedUnaryHandler< ::flyteidl::admin::ProjectRegisterRequest, ::flyteidl::admin::ProjectRegisterResponse>(std::bind(&WithStreamedUnaryMethod_RegisterProject::StreamedRegisterProject, this, std::placeholders::_1, std::placeholders::_2))); } ~WithStreamedUnaryMethod_RegisterProject() override { @@ -6834,7 +6673,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithStreamedUnaryMethod_ListProjects() { - ::grpc::Service::MarkMethodStreamed(27, + ::grpc::Service::MarkMethodStreamed(26, new ::grpc::internal::StreamedUnaryHandler< ::flyteidl::admin::ProjectListRequest, ::flyteidl::admin::Projects>(std::bind(&WithStreamedUnaryMethod_ListProjects::StreamedListProjects, this, std::placeholders::_1, std::placeholders::_2))); } ~WithStreamedUnaryMethod_ListProjects() override { @@ -6854,7 +6693,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithStreamedUnaryMethod_CreateWorkflowEvent() { - ::grpc::Service::MarkMethodStreamed(28, + ::grpc::Service::MarkMethodStreamed(27, new ::grpc::internal::StreamedUnaryHandler< ::flyteidl::admin::WorkflowExecutionEventRequest, ::flyteidl::admin::WorkflowExecutionEventResponse>(std::bind(&WithStreamedUnaryMethod_CreateWorkflowEvent::StreamedCreateWorkflowEvent, this, std::placeholders::_1, std::placeholders::_2))); } ~WithStreamedUnaryMethod_CreateWorkflowEvent() override { @@ -6874,7 +6713,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithStreamedUnaryMethod_CreateNodeEvent() { - ::grpc::Service::MarkMethodStreamed(29, + ::grpc::Service::MarkMethodStreamed(28, new ::grpc::internal::StreamedUnaryHandler< ::flyteidl::admin::NodeExecutionEventRequest, ::flyteidl::admin::NodeExecutionEventResponse>(std::bind(&WithStreamedUnaryMethod_CreateNodeEvent::StreamedCreateNodeEvent, this, std::placeholders::_1, std::placeholders::_2))); } ~WithStreamedUnaryMethod_CreateNodeEvent() override { @@ -6894,7 +6733,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithStreamedUnaryMethod_CreateTaskEvent() { - ::grpc::Service::MarkMethodStreamed(30, + ::grpc::Service::MarkMethodStreamed(29, new ::grpc::internal::StreamedUnaryHandler< ::flyteidl::admin::TaskExecutionEventRequest, ::flyteidl::admin::TaskExecutionEventResponse>(std::bind(&WithStreamedUnaryMethod_CreateTaskEvent::StreamedCreateTaskEvent, this, std::placeholders::_1, std::placeholders::_2))); } ~WithStreamedUnaryMethod_CreateTaskEvent() override { @@ -6914,7 +6753,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithStreamedUnaryMethod_GetTaskExecution() { - ::grpc::Service::MarkMethodStreamed(31, + ::grpc::Service::MarkMethodStreamed(30, new ::grpc::internal::StreamedUnaryHandler< ::flyteidl::admin::TaskExecutionGetRequest, ::flyteidl::admin::TaskExecution>(std::bind(&WithStreamedUnaryMethod_GetTaskExecution::StreamedGetTaskExecution, this, std::placeholders::_1, std::placeholders::_2))); } ~WithStreamedUnaryMethod_GetTaskExecution() override { @@ -6934,7 +6773,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithStreamedUnaryMethod_ListTaskExecutions() { - ::grpc::Service::MarkMethodStreamed(32, + ::grpc::Service::MarkMethodStreamed(31, new ::grpc::internal::StreamedUnaryHandler< ::flyteidl::admin::TaskExecutionListRequest, ::flyteidl::admin::TaskExecutionList>(std::bind(&WithStreamedUnaryMethod_ListTaskExecutions::StreamedListTaskExecutions, this, std::placeholders::_1, std::placeholders::_2))); } ~WithStreamedUnaryMethod_ListTaskExecutions() override { @@ -6954,7 +6793,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithStreamedUnaryMethod_GetTaskExecutionData() { - ::grpc::Service::MarkMethodStreamed(33, + ::grpc::Service::MarkMethodStreamed(32, new ::grpc::internal::StreamedUnaryHandler< ::flyteidl::admin::TaskExecutionGetDataRequest, ::flyteidl::admin::TaskExecutionGetDataResponse>(std::bind(&WithStreamedUnaryMethod_GetTaskExecutionData::StreamedGetTaskExecutionData, this, std::placeholders::_1, std::placeholders::_2))); } ~WithStreamedUnaryMethod_GetTaskExecutionData() override { @@ -6974,7 +6813,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithStreamedUnaryMethod_UpdateProjectDomainAttributes() { - ::grpc::Service::MarkMethodStreamed(34, + ::grpc::Service::MarkMethodStreamed(33, new ::grpc::internal::StreamedUnaryHandler< ::flyteidl::admin::ProjectDomainAttributesUpdateRequest, ::flyteidl::admin::ProjectDomainAttributesUpdateResponse>(std::bind(&WithStreamedUnaryMethod_UpdateProjectDomainAttributes::StreamedUpdateProjectDomainAttributes, this, std::placeholders::_1, std::placeholders::_2))); } ~WithStreamedUnaryMethod_UpdateProjectDomainAttributes() override { @@ -6994,7 +6833,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithStreamedUnaryMethod_GetProjectDomainAttributes() { - ::grpc::Service::MarkMethodStreamed(35, + ::grpc::Service::MarkMethodStreamed(34, new ::grpc::internal::StreamedUnaryHandler< ::flyteidl::admin::ProjectDomainAttributesGetRequest, ::flyteidl::admin::ProjectDomainAttributesGetResponse>(std::bind(&WithStreamedUnaryMethod_GetProjectDomainAttributes::StreamedGetProjectDomainAttributes, this, std::placeholders::_1, std::placeholders::_2))); } ~WithStreamedUnaryMethod_GetProjectDomainAttributes() override { @@ -7014,7 +6853,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithStreamedUnaryMethod_DeleteProjectDomainAttributes() { - ::grpc::Service::MarkMethodStreamed(36, + ::grpc::Service::MarkMethodStreamed(35, new ::grpc::internal::StreamedUnaryHandler< ::flyteidl::admin::ProjectDomainAttributesDeleteRequest, ::flyteidl::admin::ProjectDomainAttributesDeleteResponse>(std::bind(&WithStreamedUnaryMethod_DeleteProjectDomainAttributes::StreamedDeleteProjectDomainAttributes, this, std::placeholders::_1, std::placeholders::_2))); } ~WithStreamedUnaryMethod_DeleteProjectDomainAttributes() override { @@ -7034,7 +6873,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithStreamedUnaryMethod_UpdateWorkflowAttributes() { - ::grpc::Service::MarkMethodStreamed(37, + ::grpc::Service::MarkMethodStreamed(36, new ::grpc::internal::StreamedUnaryHandler< ::flyteidl::admin::WorkflowAttributesUpdateRequest, ::flyteidl::admin::WorkflowAttributesUpdateResponse>(std::bind(&WithStreamedUnaryMethod_UpdateWorkflowAttributes::StreamedUpdateWorkflowAttributes, this, std::placeholders::_1, std::placeholders::_2))); } ~WithStreamedUnaryMethod_UpdateWorkflowAttributes() override { @@ -7054,7 +6893,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithStreamedUnaryMethod_GetWorkflowAttributes() { - ::grpc::Service::MarkMethodStreamed(38, + ::grpc::Service::MarkMethodStreamed(37, new ::grpc::internal::StreamedUnaryHandler< ::flyteidl::admin::WorkflowAttributesGetRequest, ::flyteidl::admin::WorkflowAttributesGetResponse>(std::bind(&WithStreamedUnaryMethod_GetWorkflowAttributes::StreamedGetWorkflowAttributes, this, std::placeholders::_1, std::placeholders::_2))); } ~WithStreamedUnaryMethod_GetWorkflowAttributes() override { @@ -7074,7 +6913,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithStreamedUnaryMethod_DeleteWorkflowAttributes() { - ::grpc::Service::MarkMethodStreamed(39, + ::grpc::Service::MarkMethodStreamed(38, new ::grpc::internal::StreamedUnaryHandler< ::flyteidl::admin::WorkflowAttributesDeleteRequest, ::flyteidl::admin::WorkflowAttributesDeleteResponse>(std::bind(&WithStreamedUnaryMethod_DeleteWorkflowAttributes::StreamedDeleteWorkflowAttributes, this, std::placeholders::_1, std::placeholders::_2))); } ~WithStreamedUnaryMethod_DeleteWorkflowAttributes() override { @@ -7094,7 +6933,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithStreamedUnaryMethod_ListMatchableAttributes() { - ::grpc::Service::MarkMethodStreamed(40, + ::grpc::Service::MarkMethodStreamed(39, new ::grpc::internal::StreamedUnaryHandler< ::flyteidl::admin::ListMatchableAttributesRequest, ::flyteidl::admin::ListMatchableAttributesResponse>(std::bind(&WithStreamedUnaryMethod_ListMatchableAttributes::StreamedListMatchableAttributes, this, std::placeholders::_1, std::placeholders::_2))); } ~WithStreamedUnaryMethod_ListMatchableAttributes() override { @@ -7114,7 +6953,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithStreamedUnaryMethod_ListNamedEntities() { - ::grpc::Service::MarkMethodStreamed(41, + ::grpc::Service::MarkMethodStreamed(40, new ::grpc::internal::StreamedUnaryHandler< ::flyteidl::admin::NamedEntityListRequest, ::flyteidl::admin::NamedEntityList>(std::bind(&WithStreamedUnaryMethod_ListNamedEntities::StreamedListNamedEntities, this, std::placeholders::_1, std::placeholders::_2))); } ~WithStreamedUnaryMethod_ListNamedEntities() override { @@ -7134,7 +6973,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithStreamedUnaryMethod_GetNamedEntity() { - ::grpc::Service::MarkMethodStreamed(42, + ::grpc::Service::MarkMethodStreamed(41, new ::grpc::internal::StreamedUnaryHandler< ::flyteidl::admin::NamedEntityGetRequest, ::flyteidl::admin::NamedEntity>(std::bind(&WithStreamedUnaryMethod_GetNamedEntity::StreamedGetNamedEntity, this, std::placeholders::_1, std::placeholders::_2))); } ~WithStreamedUnaryMethod_GetNamedEntity() override { @@ -7154,7 +6993,7 @@ class AdminService final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithStreamedUnaryMethod_UpdateNamedEntity() { - ::grpc::Service::MarkMethodStreamed(43, + ::grpc::Service::MarkMethodStreamed(42, new ::grpc::internal::StreamedUnaryHandler< ::flyteidl::admin::NamedEntityUpdateRequest, ::flyteidl::admin::NamedEntityUpdateResponse>(std::bind(&WithStreamedUnaryMethod_UpdateNamedEntity::StreamedUpdateNamedEntity, this, std::placeholders::_1, std::placeholders::_2))); } ~WithStreamedUnaryMethod_UpdateNamedEntity() override { @@ -7168,9 +7007,9 @@ class AdminService final { // replace default version of method with streamed unary virtual ::grpc::Status StreamedUpdateNamedEntity(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::flyteidl::admin::NamedEntityUpdateRequest,::flyteidl::admin::NamedEntityUpdateResponse>* server_unary_streamer) = 0; }; - typedef WithStreamedUnaryMethod_CreateTask > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > StreamedUnaryService; + typedef WithStreamedUnaryMethod_CreateTask > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > StreamedUnaryService; typedef Service SplitStreamedService; - typedef WithStreamedUnaryMethod_CreateTask > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > StreamedService; + typedef WithStreamedUnaryMethod_CreateTask > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > StreamedService; }; } // namespace service diff --git a/flyteidl/gen/pb-cpp/flyteidl/service/admin.pb.cc b/flyteidl/gen/pb-cpp/flyteidl/service/admin.pb.cc index 7581365c8d..bb5ba5b298 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/service/admin.pb.cc +++ b/flyteidl/gen/pb-cpp/flyteidl/service/admin.pb.cc @@ -50,7 +50,7 @@ const char descriptor_table_protodef_flyteidl_2fservice_2fadmin_2eproto[] = "l/admin/node_execution.proto\032#flyteidl/a" "dmin/task_execution.proto\032\033flyteidl/admi" "n/common.proto\032,protoc-gen-swagger/optio" - "ns/annotations.proto2\303`\n\014AdminService\022\305\002" + "ns/annotations.proto2\331^\n\014AdminService\022\305\002" "\n\nCreateTask\022!.flyteidl.admin.TaskCreate" "Request\032\".flyteidl.admin.TaskCreateRespo" "nse\"\357\001\202\323\344\223\002\022\"\r/api/v1/tasks:\001*\222A\323\001\032&Crea" @@ -101,272 +101,266 @@ const char descriptor_table_protodef_flyteidl_2fservice_2fadmin_2eproto[] = "/{id.domain}/{id.name}Z,\022*/api/v1/workfl" "ows/{id.project}/{id.domain}\222A=\032;Fetch e" "xisting workflow definitions matching in" - "put filters.\022\347\001\n\016UpdateWorkflow\022%.flytei" - "dl.admin.WorkflowUpdateRequest\032&.flyteid" - "l.admin.WorkflowUpdateResponse\"\205\001\202\323\344\223\002F\032" - "A/api/v1/workflows/{id.project}/{id.doma" - "in}/{id.name}/{id.version}:\001*\222A6\0324Update" - " the state of an existing workflow defin" - "ition.\022\345\002\n\020CreateLaunchPlan\022\'.flyteidl.a" - "dmin.LaunchPlanCreateRequest\032(.flyteidl." - "admin.LaunchPlanCreateResponse\"\375\001\202\323\344\223\002\031\"" - "\024/api/v1/launch_plans:\001*\222A\332\001\032-Create and" - " register a launch plan definition.JB\n\0034" - "00\022;\n9Returned for bad request that may " - "have failed validation.Je\n\003409\022^\n\\Return" - "ed for a request that references an iden" - "tical entity that has already been regis" - "tered.\022\314\001\n\rGetLaunchPlan\022 .flyteidl.admi" - "n.ObjectGetRequest\032\032.flyteidl.admin.Laun" - "chPlan\"}\202\323\344\223\002F\022D/api/v1/launch_plans/{id" - ".project}/{id.domain}/{id.name}/{id.vers" - "ion}\222A.\032,Retrieve an existing launch pla" - "n definition.\022\363\001\n\023GetActiveLaunchPlan\022\'." - "flyteidl.admin.ActiveLaunchPlanRequest\032\032" - ".flyteidl.admin.LaunchPlan\"\226\001\202\323\344\223\002@\022>/ap" - "i/v1/active_launch_plans/{id.project}/{i" - "d.domain}/{id.name}\222AM\032KRetrieve the act" - "ive launch plan version specified by inp" - "ut request filters.\022\353\001\n\025ListActiveLaunch" - "Plans\022+.flyteidl.admin.ActiveLaunchPlanL" - "istRequest\032\036.flyteidl.admin.LaunchPlanLi" - "st\"\204\001\202\323\344\223\0020\022./api/v1/active_launch_plans" - "/{project}/{domain}\222AK\032IFetch the active" - " launch plan versions specified by input" - " request filters.\022\363\001\n\021ListLaunchPlanIds\022" - "0.flyteidl.admin.NamedEntityIdentifierLi" - "stRequest\032).flyteidl.admin.NamedEntityId" - "entifierList\"\200\001\202\323\344\223\002,\022*/api/v1/launch_pl" - "an_ids/{project}/{domain}\222AK\032IFetch exis" - "ting launch plan definition identifiers " - "matching input filters.\022\214\002\n\017ListLaunchPl" - "ans\022#.flyteidl.admin.ResourceListRequest" - "\032\036.flyteidl.admin.LaunchPlanList\"\263\001\202\323\344\223\002" - "j\0227/api/v1/launch_plans/{id.project}/{id" - ".domain}/{id.name}Z/\022-/api/v1/launch_pla" - "ns/{id.project}/{id.domain}\222A@\032>Fetch ex" - "isting launch plan definitions matching " - "input filters.\022\300\006\n\020UpdateLaunchPlan\022\'.fl" - "yteidl.admin.LaunchPlanUpdateRequest\032(.f" - "lyteidl.admin.LaunchPlanUpdateResponse\"\330" - "\005\202\323\344\223\002I\032D/api/v1/launch_plans/{id.projec" - "t}/{id.domain}/{id.name}/{id.version}:\001*" - "\222A\205\005\032\202\005Update the status of an existing " - "launch plan definition. At most one laun" - "ch plan version for a given {project, do" - "main, name} can be active at a time. If " - "this call sets a launch plan to active a" - "nd existing version is already active, t" - "he result of this call will be that the " - "formerly active launch plan will be made" - " inactive and specified launch plan in t" - "his request will be made active. In the " - "event that the formerly active launch pl" - "an had a schedule associated it with it," - " this schedule will be disabled. If the " - "reference launch plan in this request is" - " being set to active and has a schedule " - "associated with it, the schedule will be" - " enabled.\022\242\001\n\017CreateExecution\022&.flyteidl" - ".admin.ExecutionCreateRequest\032\'.flyteidl" - ".admin.ExecutionCreateResponse\">\202\323\344\223\002\027\"\022" - "/api/v1/executions:\001*\222A\036\032\034Create a workf" - "low execution.\022\261\001\n\021RelaunchExecution\022(.f" - "lyteidl.admin.ExecutionRelaunchRequest\032\'" - ".flyteidl.admin.ExecutionCreateResponse\"" - "I\202\323\344\223\002 \"\033/api/v1/executions/relaunch:\001*\222" - "A \032\036Relaunch a workflow execution.\022\302\001\n\014G" - "etExecution\022+.flyteidl.admin.WorkflowExe" - "cutionGetRequest\032\031.flyteidl.admin.Execut" - "ion\"j\202\323\344\223\0027\0225/api/v1/executions/{id.proj" - "ect}/{id.domain}/{id.name}\222A*\032(Retrieve " - "an existing workflow execution.\022\202\002\n\020GetE" - "xecutionData\022/.flyteidl.admin.WorkflowEx" - "ecutionGetDataRequest\0320.flyteidl.admin.W" - "orkflowExecutionGetDataResponse\"\212\001\202\323\344\223\002<" - "\022:/api/v1/data/executions/{id.project}/{" - "id.domain}/{id.name}\222AE\032CRetrieve input " - "and output data from an existing workflo" - "w execution.\022\310\001\n\016ListExecutions\022#.flytei" - "dl.admin.ResourceListRequest\032\035.flyteidl." - "admin.ExecutionList\"r\202\323\344\223\002-\022+/api/v1/exe" - "cutions/{id.project}/{id.domain}\222A<\032:Fet" - "ch existing workflow executions matching" - " input filters.\022\364\001\n\022TerminateExecution\022)" - ".flyteidl.admin.ExecutionTerminateReques" - "t\032*.flyteidl.admin.ExecutionTerminateRes" - "ponse\"\206\001\202\323\344\223\002:*5/api/v1/executions/{id.p" - "roject}/{id.domain}/{id.name}:\001*\222AC\032ATer" - "minate the active workflow execution spe" - "cified in the request.\022\374\001\n\020GetNodeExecut" - "ion\022\'.flyteidl.admin.NodeExecutionGetReq" - "uest\032\035.flyteidl.admin.NodeExecution\"\237\001\202\323" - "\344\223\002p\022n/api/v1/node_executions/{id.execut" + "put filters.\022\345\002\n\020CreateLaunchPlan\022\'.flyt" + "eidl.admin.LaunchPlanCreateRequest\032(.fly" + "teidl.admin.LaunchPlanCreateResponse\"\375\001\202" + "\323\344\223\002\031\"\024/api/v1/launch_plans:\001*\222A\332\001\032-Crea" + "te and register a launch plan definition" + ".JB\n\003400\022;\n9Returned for bad request tha" + "t may have failed validation.Je\n\003409\022^\n\\" + "Returned for a request that references a" + "n identical entity that has already been" + " registered.\022\314\001\n\rGetLaunchPlan\022 .flyteid" + "l.admin.ObjectGetRequest\032\032.flyteidl.admi" + "n.LaunchPlan\"}\202\323\344\223\002F\022D/api/v1/launch_pla" + "ns/{id.project}/{id.domain}/{id.name}/{i" + "d.version}\222A.\032,Retrieve an existing laun" + "ch plan definition.\022\363\001\n\023GetActiveLaunchP" + "lan\022\'.flyteidl.admin.ActiveLaunchPlanReq" + "uest\032\032.flyteidl.admin.LaunchPlan\"\226\001\202\323\344\223\002" + "@\022>/api/v1/active_launch_plans/{id.proje" + "ct}/{id.domain}/{id.name}\222AM\032KRetrieve t" + "he active launch plan version specified " + "by input request filters.\022\353\001\n\025ListActive" + "LaunchPlans\022+.flyteidl.admin.ActiveLaunc" + "hPlanListRequest\032\036.flyteidl.admin.Launch" + "PlanList\"\204\001\202\323\344\223\0020\022./api/v1/active_launch" + "_plans/{project}/{domain}\222AK\032IFetch the " + "active launch plan versions specified by" + " input request filters.\022\363\001\n\021ListLaunchPl" + "anIds\0220.flyteidl.admin.NamedEntityIdenti" + "fierListRequest\032).flyteidl.admin.NamedEn" + "tityIdentifierList\"\200\001\202\323\344\223\002,\022*/api/v1/lau" + "nch_plan_ids/{project}/{domain}\222AK\032IFetc" + "h existing launch plan definition identi" + "fiers matching input filters.\022\214\002\n\017ListLa" + "unchPlans\022#.flyteidl.admin.ResourceListR" + "equest\032\036.flyteidl.admin.LaunchPlanList\"\263" + "\001\202\323\344\223\002j\0227/api/v1/launch_plans/{id.projec" + "t}/{id.domain}/{id.name}Z/\022-/api/v1/laun" + "ch_plans/{id.project}/{id.domain}\222A@\032>Fe" + "tch existing launch plan definitions mat" + "ching input filters.\022\300\006\n\020UpdateLaunchPla" + "n\022\'.flyteidl.admin.LaunchPlanUpdateReque" + "st\032(.flyteidl.admin.LaunchPlanUpdateResp" + "onse\"\330\005\202\323\344\223\002I\032D/api/v1/launch_plans/{id." + "project}/{id.domain}/{id.name}/{id.versi" + "on}:\001*\222A\205\005\032\202\005Update the status of an exi" + "sting launch plan definition. At most on" + "e launch plan version for a given {proje" + "ct, domain, name} can be active at a tim" + "e. If this call sets a launch plan to ac" + "tive and existing version is already act" + "ive, the result of this call will be tha" + "t the formerly active launch plan will b" + "e made inactive and specified launch pla" + "n in this request will be made active. I" + "n the event that the formerly active lau" + "nch plan had a schedule associated it wi" + "th it, this schedule will be disabled. I" + "f the reference launch plan in this requ" + "est is being set to active and has a sch" + "edule associated with it, the schedule w" + "ill be enabled.\022\242\001\n\017CreateExecution\022&.fl" + "yteidl.admin.ExecutionCreateRequest\032\'.fl" + "yteidl.admin.ExecutionCreateResponse\">\202\323" + "\344\223\002\027\"\022/api/v1/executions:\001*\222A\036\032\034Create a" + " workflow execution.\022\261\001\n\021RelaunchExecuti" + "on\022(.flyteidl.admin.ExecutionRelaunchReq" + "uest\032\'.flyteidl.admin.ExecutionCreateRes" + "ponse\"I\202\323\344\223\002 \"\033/api/v1/executions/relaun" + "ch:\001*\222A \032\036Relaunch a workflow execution." + "\022\302\001\n\014GetExecution\022+.flyteidl.admin.Workf" + "lowExecutionGetRequest\032\031.flyteidl.admin." + "Execution\"j\202\323\344\223\0027\0225/api/v1/executions/{i" + "d.project}/{id.domain}/{id.name}\222A*\032(Ret" + "rieve an existing workflow execution.\022\202\002" + "\n\020GetExecutionData\022/.flyteidl.admin.Work" + "flowExecutionGetDataRequest\0320.flyteidl.a" + "dmin.WorkflowExecutionGetDataResponse\"\212\001" + "\202\323\344\223\002<\022:/api/v1/data/executions/{id.proj" + "ect}/{id.domain}/{id.name}\222AE\032CRetrieve " + "input and output data from an existing w" + "orkflow execution.\022\310\001\n\016ListExecutions\022#." + "flyteidl.admin.ResourceListRequest\032\035.fly" + "teidl.admin.ExecutionList\"r\202\323\344\223\002-\022+/api/" + "v1/executions/{id.project}/{id.domain}\222A" + "<\032:Fetch existing workflow executions ma" + "tching input filters.\022\364\001\n\022TerminateExecu" + "tion\022).flyteidl.admin.ExecutionTerminate" + "Request\032*.flyteidl.admin.ExecutionTermin" + "ateResponse\"\206\001\202\323\344\223\002:*5/api/v1/executions" + "/{id.project}/{id.domain}/{id.name}:\001*\222A" + "C\032ATerminate the active workflow executi" + "on specified in the request.\022\374\001\n\020GetNode" + "Execution\022\'.flyteidl.admin.NodeExecution" + "GetRequest\032\035.flyteidl.admin.NodeExecutio" + "n\"\237\001\202\323\344\223\002p\022n/api/v1/node_executions/{id." + "execution_id.project}/{id.execution_id.d" + "omain}/{id.execution_id.name}/{id.node_i" + "d}\222A&\032$Retrieve an existing node executi" + "on.\022\232\002\n\022ListNodeExecutions\022(.flyteidl.ad" + "min.NodeExecutionListRequest\032!.flyteidl." + "admin.NodeExecutionList\"\266\001\202\323\344\223\002u\022s/api/v" + "1/node_executions/{workflow_execution_id" + ".project}/{workflow_execution_id.domain}" + "/{workflow_execution_id.name}\222A8\0326Fetch " + "existing node executions matching input " + "filters.\022\357\004\n\031ListNodeExecutionsForTask\022/" + ".flyteidl.admin.NodeExecutionForTaskList" + "Request\032!.flyteidl.admin.NodeExecutionLi" + "st\"\375\003\202\323\344\223\002\254\003\022\251\003/api/v1/children/task_exe" + "cutions/{task_execution_id.node_executio" + "n_id.execution_id.project}/{task_executi" + "on_id.node_execution_id.execution_id.dom" + "ain}/{task_execution_id.node_execution_i" + "d.execution_id.name}/{task_execution_id." + "node_execution_id.node_id}/{task_executi" + "on_id.task_id.project}/{task_execution_i" + "d.task_id.domain}/{task_execution_id.tas" + "k_id.name}/{task_execution_id.task_id.ve" + "rsion}/{task_execution_id.retry_attempt}" + "\222AG\032EFetch child node executions launche" + "d by the specified task execution.\022\263\002\n\024G" + "etNodeExecutionData\022+.flyteidl.admin.Nod" + "eExecutionGetDataRequest\032,.flyteidl.admi" + "n.NodeExecutionGetDataResponse\"\277\001\202\323\344\223\002u\022" + "s/api/v1/data/node_executions/{id.execut" "ion_id.project}/{id.execution_id.domain}" - "/{id.execution_id.name}/{id.node_id}\222A&\032" - "$Retrieve an existing node execution.\022\232\002" - "\n\022ListNodeExecutions\022(.flyteidl.admin.No" - "deExecutionListRequest\032!.flyteidl.admin." - "NodeExecutionList\"\266\001\202\323\344\223\002u\022s/api/v1/node" - "_executions/{workflow_execution_id.proje" - "ct}/{workflow_execution_id.domain}/{work" - "flow_execution_id.name}\222A8\0326Fetch existi" - "ng node executions matching input filter" - "s.\022\357\004\n\031ListNodeExecutionsForTask\022/.flyte" - "idl.admin.NodeExecutionForTaskListReques" - "t\032!.flyteidl.admin.NodeExecutionList\"\375\003\202" - "\323\344\223\002\254\003\022\251\003/api/v1/children/task_execution" - "s/{task_execution_id.node_execution_id.e" - "xecution_id.project}/{task_execution_id." - "node_execution_id.execution_id.domain}/{" - "task_execution_id.node_execution_id.exec" - "ution_id.name}/{task_execution_id.node_e" - "xecution_id.node_id}/{task_execution_id." - "task_id.project}/{task_execution_id.task" - "_id.domain}/{task_execution_id.task_id.n" - "ame}/{task_execution_id.task_id.version}" - "/{task_execution_id.retry_attempt}\222AG\032EF" - "etch child node executions launched by t" - "he specified task execution.\022\263\002\n\024GetNode" - "ExecutionData\022+.flyteidl.admin.NodeExecu" - "tionGetDataRequest\032,.flyteidl.admin.Node" - "ExecutionGetDataResponse\"\277\001\202\323\344\223\002u\022s/api/" - "v1/data/node_executions/{id.execution_id" - ".project}/{id.execution_id.domain}/{id.e" - "xecution_id.name}/{id.node_id}\222AA\032\?Retri" - "eve input and output data from an existi" - "ng node execution.\022\227\001\n\017RegisterProject\022&" - ".flyteidl.admin.ProjectRegisterRequest\032\'" - ".flyteidl.admin.ProjectRegisterResponse\"" - "3\202\323\344\223\002\025\"\020/api/v1/projects:\001*\222A\025\032\023Registe" - "r a project.\022\205\001\n\014ListProjects\022\".flyteidl" - ".admin.ProjectListRequest\032\030.flyteidl.adm" - "in.Projects\"7\202\323\344\223\002\022\022\020/api/v1/projects\222A\034" - "\032\032Fetch registered projects.\022\335\001\n\023CreateW" - "orkflowEvent\022-.flyteidl.admin.WorkflowEx" - "ecutionEventRequest\032..flyteidl.admin.Wor" - "kflowExecutionEventResponse\"g\202\323\344\223\002\035\"\030/ap" - "i/v1/events/workflows:\001*\222AA\032\?Create a wo" - "rkflow execution event recording a phase" - " transition.\022\311\001\n\017CreateNodeEvent\022).flyte" - "idl.admin.NodeExecutionEventRequest\032*.fl" - "yteidl.admin.NodeExecutionEventResponse\"" - "_\202\323\344\223\002\031\"\024/api/v1/events/nodes:\001*\222A=\032;Cre" - "ate a node execution event recording a p" - "hase transition.\022\311\001\n\017CreateTaskEvent\022).f" - "lyteidl.admin.TaskExecutionEventRequest\032" - "*.flyteidl.admin.TaskExecutionEventRespo" - "nse\"_\202\323\344\223\002\031\"\024/api/v1/events/tasks:\001*\222A=\032" - ";Create a task execution event recording" - " a phase transition.\022\251\003\n\020GetTaskExecutio" - "n\022\'.flyteidl.admin.TaskExecutionGetReque" - "st\032\035.flyteidl.admin.TaskExecution\"\314\002\202\323\344\223" - "\002\234\002\022\231\002/api/v1/task_executions/{id.node_e" - "xecution_id.execution_id.project}/{id.no" - "de_execution_id.execution_id.domain}/{id" - ".node_execution_id.execution_id.name}/{i" - "d.node_execution_id.node_id}/{id.task_id" - ".project}/{id.task_id.domain}/{id.task_i" - "d.name}/{id.task_id.version}/{id.retry_a" - "ttempt}\222A&\032$Retrieve an existing task ex" - "ecution.\022\323\002\n\022ListTaskExecutions\022(.flytei" - "dl.admin.TaskExecutionListRequest\032!.flyt" - "eidl.admin.TaskExecutionList\"\357\001\202\323\344\223\002\255\001\022\252" - "\001/api/v1/task_executions/{node_execution" - "_id.execution_id.project}/{node_executio" - "n_id.execution_id.domain}/{node_executio" - "n_id.execution_id.name}/{node_execution_" - "id.node_id}\222A8\0326Fetch existing task exec" - "utions matching input filters.\022\340\003\n\024GetTa" - "skExecutionData\022+.flyteidl.admin.TaskExe" - "cutionGetDataRequest\032,.flyteidl.admin.Ta" - "skExecutionGetDataResponse\"\354\002\202\323\344\223\002\241\002\022\236\002/" - "api/v1/data/task_executions/{id.node_exe" - "cution_id.execution_id.project}/{id.node" - "_execution_id.execution_id.domain}/{id.n" - "ode_execution_id.execution_id.name}/{id." - "node_execution_id.node_id}/{id.task_id.p" - "roject}/{id.task_id.domain}/{id.task_id." - "name}/{id.task_id.version}/{id.retry_att" - "empt}\222AA\032\?Retrieve input and output data" - " from an existing task execution.\022\277\002\n\035Up" - "dateProjectDomainAttributes\0224.flyteidl.a" - "dmin.ProjectDomainAttributesUpdateReques" - "t\0325.flyteidl.admin.ProjectDomainAttribut" - "esUpdateResponse\"\260\001\202\323\344\223\002O\032J/api/v1/proje" - "ct_domain_attributes/{attributes.project" - "}/{attributes.domain}:\001*\222AX\032VUpdate the " - "customized resource attributes associate" - "d with a project-domain combination\022\237\002\n\032" - "GetProjectDomainAttributes\0221.flyteidl.ad" - "min.ProjectDomainAttributesGetRequest\0322." - "flyteidl.admin.ProjectDomainAttributesGe" - "tResponse\"\231\001\202\323\344\223\0026\0224/api/v1/project_doma" - "in_attributes/{project}/{domain}\222AZ\032XRet" - "rieve the customized resource attributes" - " associated with a project-domain combin" - "ation\022\251\002\n\035DeleteProjectDomainAttributes\022" - "4.flyteidl.admin.ProjectDomainAttributes" - "DeleteRequest\0325.flyteidl.admin.ProjectDo" - "mainAttributesDeleteResponse\"\232\001\202\323\344\223\0029*4/" - "api/v1/project_domain_attributes/{projec" - "t}/{domain}:\001*\222AX\032VDelete the customized" - " resource attributes associated with a p" - "roject-domain combination\022\316\002\n\030UpdateWork" - "flowAttributes\022/.flyteidl.admin.Workflow" - "AttributesUpdateRequest\0320.flyteidl.admin" - ".WorkflowAttributesUpdateResponse\"\316\001\202\323\344\223" - "\002_\032Z/api/v1/workflow_attributes/{attribu" - "tes.project}/{attributes.domain}/{attrib" - "utes.workflow}:\001*\222Af\032dUpdate the customi" - "zed resource attributes associated with " - "a project, domain and workflow combinati" - "on\022\243\002\n\025GetWorkflowAttributes\022,.flyteidl." - "admin.WorkflowAttributesGetRequest\032-.fly" - "teidl.admin.WorkflowAttributesGetRespons" - "e\"\254\001\202\323\344\223\002;\0229/api/v1/workflow_attributes/" - "{project}/{domain}/{workflow}\222Ah\032fRetrie" - "ve the customized resource attributes as" - "sociated with a project, domain and work" - "flow combination\022\255\002\n\030DeleteWorkflowAttri" - "butes\022/.flyteidl.admin.WorkflowAttribute" - "sDeleteRequest\0320.flyteidl.admin.Workflow" - "AttributesDeleteResponse\"\255\001\202\323\344\223\002>*9/api/" - "v1/workflow_attributes/{project}/{domain" - "}/{workflow}:\001*\222Af\032dDelete the customize" - "d resource attributes associated with a " - "project, domain and workflow combination" - "\022\341\001\n\027ListMatchableAttributes\022..flyteidl." - "admin.ListMatchableAttributesRequest\032/.f" - "lyteidl.admin.ListMatchableAttributesRes" - "ponse\"e\202\323\344\223\002\036\022\034/api/v1/matchable_attribu" - "tes\222A>\032*" + "9/api/v1/workflow_attributes/{project}/{" + "domain}/{workflow}:\001*\222Af\032dDelete the cus" + "tomized resource attributes associated w" + "ith a project, domain and workflow combi" + "nation\022\341\001\n\027ListMatchableAttributes\022..fly" + "teidl.admin.ListMatchableAttributesReque" + "st\032/.flyteidl.admin.ListMatchableAttribu" + "tesResponse\"e\202\323\344\223\002\036\022\034/api/v1/matchable_a" + "ttributes\222A>\032= 300 { - newErr := GenericSwaggerError{ - body: localVarBody, - error: localVarHttpResponse.Status, - } - - if localVarHttpResponse.StatusCode == 200 { - var v AdminWorkflowUpdateResponse - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v - return localVarReturnValue, localVarHttpResponse, newErr - } - - return localVarReturnValue, localVarHttpResponse, newErr - } - - return localVarReturnValue, localVarHttpResponse, nil -} - /* AdminServiceApiService Update the customized resource attributes associated with a project, domain and workflow combination diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_named_entity_metadata.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_named_entity_metadata.go index 9adf1b99d5..8912b89ad3 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_named_entity_metadata.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_named_entity_metadata.go @@ -11,4 +11,6 @@ package flyteadmin type AdminNamedEntityMetadata struct { Description string `json:"description,omitempty"` + // Shared state across all version of the entity At this point in time, only workflow entities can have their state archived. + State *AdminNamedEntityState `json:"state,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_named_entity_state.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_named_entity_state.go new file mode 100644 index 0000000000..45090b58e6 --- /dev/null +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_named_entity_state.go @@ -0,0 +1,18 @@ +/* + * 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 +// AdminNamedEntityState : The status of the named entity is used to control its visibility in the UI. - NAMED_ENTITY_ACTIVE: By default, all named entities are considered active and under development. - NAMED_ENTITY_ARCHIVED: Archived named entities are no longer visible in the UI. +type AdminNamedEntityState string + +// List of adminNamedEntityState +const ( + AdminNamedEntityStateACTIVE AdminNamedEntityState = "NAMED_ENTITY_ACTIVE" + AdminNamedEntityStateARCHIVED AdminNamedEntityState = "NAMED_ENTITY_ARCHIVED" +) diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_workflow_state.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_workflow_state.go deleted file mode 100644 index 9e22d5041c..0000000000 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_workflow_state.go +++ /dev/null @@ -1,18 +0,0 @@ -/* - * 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 -// AdminWorkflowState : The status of the workflow is used to control its visibility in the UI. - WORKFLOW_ACTIVE: By default, all workflows are considered active and under development. - WORKFLOW_ARCHIVED: Archived workflows are no longer visible in the UI. -type AdminWorkflowState string - -// List of adminWorkflowState -const ( - AdminWorkflowStateACTIVE AdminWorkflowState = "WORKFLOW_ACTIVE" - AdminWorkflowStateARCHIVED AdminWorkflowState = "WORKFLOW_ARCHIVED" -) diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_workflow_update_request.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_workflow_update_request.go deleted file mode 100644 index 0a227dd6dc..0000000000 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_workflow_update_request.go +++ /dev/null @@ -1,18 +0,0 @@ -/* - * 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 - -// Request to set the referenced workflow state to the configured value. -type AdminWorkflowUpdateRequest struct { - // Identifier of workflow for which to change state. - Id *CoreIdentifier `json:"id,omitempty"` - // Desired state to apply to the workflow. - State *AdminWorkflowState `json:"state,omitempty"` -} diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_workflow_update_response.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_workflow_update_response.go deleted file mode 100644 index 3af01e4db6..0000000000 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_workflow_update_response.go +++ /dev/null @@ -1,14 +0,0 @@ -/* - * 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 - -// Purposefully empty, may be populated in the future. -type AdminWorkflowUpdateResponse struct { -} diff --git a/flyteidl/gen/pb-go/flyteidl/service/openapi.go b/flyteidl/gen/pb-go/flyteidl/service/openapi.go index 5f371b35fc..9a8ba31509 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/openapi.go +++ b/flyteidl/gen/pb-go/flyteidl/service/openapi.go @@ -77,7 +77,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _adminSwaggerJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x7b\x73\x23\xb9\x95\x27\xfa\x7f\x7f\x0a\x5c\xed\x46\x74\x97\x4d\xa9\xda\xf6\x78\xc2\x5b\x13\x13\x37\xd8\x12\xab\x5a\xd3\x2a\x49\xd6\xa3\x6b\x7c\x2f\x27\x64\x30\x13\x24\x61\x25\x91\x6c\x00\x29\x15\xed\xe8\xef\xbe\x81\x83\x47\x02\xf9\x62\x26\x49\x49\x94\x3a\x67\x63\xdd\x2a\x92\x89\xc4\xf3\xe0\x3c\x7e\xe7\x77\xfe\xf5\x0d\x42\x07\xe2\x11\xcf\x66\x84\x1f\x7c\x40\x07\x7f\x3c\xfa\xfe\x60\xa0\x3e\xa3\x6c\x9a\x1e\x7c\x40\xea\x7b\x84\x0e\x24\x95\x09\x51\xdf\x4f\x93\x95\x24\x34\x4e\xde\x0b\xc2\x1f\x68\x44\xde\xe3\x78\x41\xd9\xd1\x92\xa7\x32\x85\x07\x11\x3a\x78\x20\x5c\xd0\x94\xa9\x9f\x9b\x3f\x11\x4b\x25\x12\x44\x1e\x7c\x83\xd0\xaf\xd0\xbc\x88\xe6\x64\x41\xc4\xc1\x07\xf4\xff\xeb\x87\xe6\x52\x2e\x6d\x03\xea\x6f\xa1\x7e\xfb\x3f\xf0\xdb\x28\x65\x22\x0b\x7e\x8c\x97\xcb\x84\x46\x58\xd2\x94\xbd\xff\x87\x48\x59\xfe\xdb\x25\x4f\xe3\x2c\x6a\xf9\x5b\x2c\xe7\x22\x1f\xe3\x7b\xbc\xa4\xef\x1f\xfe\xf0\x1e\x47\x92\x3e\x90\xbb\x04\x67\x2c\x9a\xdf\x2d\x13\xcc\xc4\xfb\x7f\xd1\x58\x8d\xf1\x1f\x24\x92\xbf\xc2\x3f\xe2\x74\x81\x29\xd3\x7f\x33\xbc\x20\xbf\xba\x76\x10\x3a\x98\x11\xe9\xfd\x13\xa1\x83\x98\x88\x88\xd3\xa5\x34\xb3\x72\x45\x24\xa7\xe4\x81\x20\x39\x27\x48\xbf\x0e\xe9\xd7\x21\xf5\x3a\x64\x67\x4d\x2c\x49\x44\xa7\x94\xc4\x68\xb2\x42\x94\x2d\x33\x89\x38\xf9\x25\x23\x42\xa2\x29\x4d\x24\xe1\xe2\xc8\x4c\x19\xbc\x25\x5d\x12\x0e\xe3\x3c\x8d\xd5\x5b\x3e\x11\x39\x84\xb6\xcf\xa0\xe9\xcb\x04\x33\xff\xd7\x9c\x88\x65\xca\x04\x11\x41\x57\x11\x3a\xf8\xe3\xf7\xdf\x17\x3e\x2a\x8f\x60\x88\x44\x16\x45\x44\x88\x69\x96\x20\xdb\x92\xdf\x19\x78\x08\x16\x19\x97\x1a\x43\xe8\xe0\x7f\x73\x32\x55\xed\xfc\xaf\xf7\x31\x99\x52\x46\x55\xbb\x42\xef\x25\xaf\xb7\xc1\x53\xbf\x7e\x53\xf5\xf7\xaf\xde\x88\x96\x98\xe3\x05\x51\xd3\xe2\x56\x5f\xff\x5f\x61\x2c\x6a\xbd\xd4\xcb\xf3\x35\x2d\x76\xbc\x30\xda\x73\xbc\x20\x28\x9d\xc2\x72\x99\x27\xe0\x6f\x4e\x44\x9a\xf1\x88\xa0\x09\x49\x52\x36\x13\x48\xa6\xa5\x39\xa0\xd0\x82\xda\x6a\xc5\x6f\xd4\x52\x52\x4e\xd4\x5a\x49\x9e\x91\xc2\xb7\x72\xb5\x84\x4e\x0a\xc9\x29\x9b\xf9\x53\xf1\xeb\xa0\xd5\xd0\xf4\x0e\xed\x30\x32\xfd\x40\xed\xc0\xc6\x6c\x68\x7f\x12\x61\x86\x26\x04\xa9\x73\x49\x63\xc2\x49\x8c\xb0\x40\x18\x89\x6c\x22\x88\x44\x8f\x54\xce\x29\x53\xff\xd6\xdb\x37\xb2\x73\xb6\x3f\x73\x03\x7f\x36\xcf\xcc\xad\x20\x5c\x75\xfc\x81\xc6\x24\x46\x0f\x38\xc9\x08\x9a\xa6\x3c\x98\x9e\xa3\x31\xbb\x99\xab\x79\x58\x4c\x28\x83\x93\xa7\xe6\xd2\xee\x90\xdf\xdb\xe9\xfa\x3d\x52\xef\x43\x19\xa3\xbf\x64\x24\x59\x21\x1a\x13\x26\xd5\xb9\x16\xc5\xd6\x7e\x9f\xc2\xfb\x71\x82\x0e\x91\x9a\x67\xc2\x25\xcc\x77\xca\x24\xf9\x2a\x05\x3a\x44\x09\xbd\x27\xe8\xdb\x33\x2a\x24\x1a\x5e\x9e\x7e\x3b\x40\xdf\x9e\xe5\x82\x43\x7c\xfb\x0c\x33\xec\xfe\xfe\x1f\xef\xe8\x49\x3c\x2b\x1e\xba\x83\xa1\x3a\xcd\xd7\xfa\x9a\xc8\x5b\xf8\x9f\x6f\xfc\x76\xcc\x7a\x35\xcb\xde\x5c\xf0\x1a\xa9\xdb\x45\xd6\x7e\x24\x32\x9a\xaf\x11\xb4\x62\x4b\x49\xab\x96\xa3\x28\x6a\xc5\xeb\x92\xb5\x6a\x08\x4f\x2d\x6f\xb7\x11\xb6\x58\xc2\x29\xc0\x94\xe9\x43\xe3\xce\x50\xb8\x32\xe8\xe5\xc4\xca\x36\xf2\xd6\x1b\x8d\x27\x72\xad\x24\xf5\x66\x62\x4f\xc6\x9a\xd0\x05\x5d\xb7\x8e\xa7\x2c\x56\x6a\x97\x11\x72\x2c\x5b\x4c\x08\x57\x43\xb7\xe2\x0e\x46\x38\x51\xe2\x4f\x66\x9c\x91\xb8\x66\x68\xbf\x64\x84\xaf\x1a\xc6\x36\xc5\x89\xa8\x1b\x1c\x65\x92\x28\xbd\xb6\xf0\xf5\x34\xe5\x0b\x2c\xcd\x0f\xfe\xfd\xdf\xba\x0e\x5e\xa6\xf7\x64\xdd\x3a\x9f\xea\x55\x8b\xb0\x80\xe5\x5e\x64\x89\xa4\xcb\x84\xa0\x25\x9e\x11\x61\x66\x21\x4b\xa4\x18\xc0\xcf\x94\x2e\x4d\xf8\xa1\xbb\x6d\xe0\x0d\xf6\x96\xcd\x04\x7c\x82\xa6\x4e\x90\x31\xf2\x55\x42\x4b\x63\x06\xf7\x2c\x4c\x91\x7f\x7b\x3c\xc1\x54\x6e\xb6\x4f\x44\xca\xe5\xdd\x64\x75\x74\x4f\x4a\xef\xad\xdd\x2d\x98\x21\x2c\x25\xa7\x93\x4c\x12\x35\x6e\xd5\x86\xbd\x27\x41\xf4\xe9\xcb\x58\xa8\xcb\xf7\xe2\xe4\xe2\xbb\x7b\x2c\x79\x3a\xc3\xec\xdd\x07\x34\x8c\x63\xa4\x3b\xaa\x7e\x43\x63\x7d\x25\xcf\x09\x27\x47\xe8\x66\x4e\x05\x12\xf3\x34\x4b\x62\xc4\xc8\x03\xe1\x6a\x6e\xc9\x62\x29\x57\x7b\x37\x5b\x31\xe5\x24\x82\x89\xe9\x72\xc2\xdc\x53\x6a\xd2\x94\xd1\xb3\xd2\x53\x77\x4f\x56\xa0\xb8\x94\xa7\xef\x19\xf6\x4b\xe1\x5b\xc2\xb2\x45\xe1\xae\x80\xcf\x4f\x46\xd7\xc7\xa3\xf3\x93\xd3\xf3\x4f\x85\x27\x94\x1a\xe1\xbe\x0a\xbe\xf9\x9f\xd2\xdc\x4c\x71\x96\xc0\xa9\xf6\x5a\x7b\x36\xc5\x25\x9a\xd3\x24\xe6\x84\xbd\x97\x58\xdc\xdf\x91\xaf\x24\xca\xf4\x3d\xfb\xaf\xf0\x83\x3b\xa5\x7d\xa6\x31\x09\x3f\x09\xfe\x91\xab\x3b\x9d\x1f\x75\x56\x69\xe7\x27\xc1\x86\x6d\xf7\x1c\x7c\x42\xe3\xca\x5f\xc3\x27\x6b\xc6\x60\x7f\xd3\xd0\x59\xfb\x93\xda\x5e\xd9\x1f\x18\x05\xae\xf2\x37\x9c\x48\xbe\xba\xc3\x52\xaa\x53\xbe\x81\xce\x08\x4b\x8a\xd4\x68\x51\xbe\x9e\x46\x7d\xd4\x8a\x22\xc8\x6e\xa7\x39\xaa\x1e\xe4\xbf\x5c\xa7\x2f\x9e\xa7\x31\x19\xb9\x66\x3f\xa6\xfc\x06\x8b\xfb\xd7\xa0\x33\x06\x1d\x7f\x0e\xb5\x71\xd3\x03\xf4\xe6\x8c\xfa\x0d\xc5\x41\xef\x02\xd8\x7e\x26\xdb\x3a\x0c\x52\x8e\xc4\x4a\x48\xb2\x58\xeb\x3a\x78\x3d\x13\x61\xe4\xfd\xbe\x76\xb8\x70\xe5\xfc\x06\x4e\x7d\x78\x81\xf6\xc7\xbb\xc3\x94\xed\xca\xf1\xb7\xef\xe3\xb4\x21\x98\xe6\xa1\x5e\xdb\xe5\xb3\x01\x07\xb3\x4f\xf6\x7e\x98\x81\x6a\xb7\xeb\x4e\x3e\x91\xd7\xa0\x76\xad\xec\x6c\xdf\x41\x07\xd6\x98\x7c\xa1\xeb\xd8\x9d\x3f\xf5\xa8\xef\x5c\xd1\x1e\x33\xa9\x6c\x5e\xe3\x5b\x22\x1c\x45\x29\xd7\xaa\x60\xdc\x20\xde\x9e\xcf\xe8\xbb\x3d\xbf\xbe\x1c\x1d\x9f\x7e\x3c\x1d\x9d\x94\xad\xbe\x9b\xe1\xf5\x4f\xe5\x4f\xbf\x5c\x5c\xfd\xf4\xf1\xec\xe2\x4b\xf9\x9b\xb3\xe1\xed\xf9\xf1\x8f\x77\x97\x67\xc3\xf3\xd6\x76\xa2\xdf\x81\x8e\xab\xd9\x3b\xc0\x76\xe9\x00\x1b\xbc\x5d\x0f\x98\x89\x1e\xb4\xf7\x7e\xa1\x84\x0a\xa9\x26\xc8\x3c\x89\x96\x58\x08\x7d\xff\xea\x1e\x1c\x8d\xd9\xe7\x94\x13\x44\xd9\x34\x45\x29\x04\x87\x84\xe4\x59\x24\x29\x9b\xb9\x87\x3e\xa0\x71\xf6\xfd\xf7\x7f\x8a\xce\x28\xbb\x87\xbf\xc8\x3e\x4e\x4e\xef\x1e\xdc\x64\xb6\x7a\xf7\xa0\xff\xdd\xeb\x70\x0f\xc6\x58\xe2\xf7\xbe\x57\xf0\x69\xf0\x24\x3a\x72\x89\x59\x8c\xd2\x4c\xaa\x3f\xd5\x7b\xd1\x94\xa7\x0b\x75\x6e\xc8\x57\x2a\x40\x4a\x3c\xa6\xfc\x7e\x9a\xa4\x8f\xed\xbc\x55\x9f\x88\x74\xfe\x9e\x13\x2c\xf1\x6b\x70\x52\x7d\x31\x23\x74\x1d\xff\x44\xa4\xea\xfb\x95\x79\x4b\x0f\x2d\xe9\xa1\x25\x2f\x0b\x2d\xd9\x2b\x4f\xd1\xd3\xcb\xbe\xd0\xad\xa4\x05\x60\x4d\xd4\xa3\x36\xa8\x51\x13\xb3\xf0\x42\x12\x4f\x29\x34\xc3\x40\xc0\x1a\x81\x19\x38\xc9\x5f\x8b\xd0\x0c\x3a\xfd\xfc\x02\xf3\x37\xe1\xc3\xef\x5d\xf4\x1b\x4e\xd4\xab\x94\xab\x2d\xaf\x8c\x67\x73\xb0\x3f\xbd\x9c\x2f\x85\xbf\xbb\xc4\xbb\x3b\x04\xb8\x5b\x47\xb4\xd7\x84\xb0\x2b\x63\xd6\x55\x41\xea\x72\x54\xba\x32\x0c\xbd\x55\xdc\xb9\xeb\x95\xd4\x3e\xe2\xfc\x89\xc8\x1b\x2c\xee\x5f\xdd\x95\x14\x74\xfa\xf9\xaf\xa4\xdf\x68\xa0\xb9\x8f\x2c\x3f\xe1\xd4\xbd\xf5\x8b\x6c\x7f\x63\xc7\xbf\x81\x60\x71\x1f\x1d\xee\x34\x47\x6f\x2b\x1c\xfc\x56\xe3\xbf\xaf\x33\xe0\xdb\x47\x78\xf7\x37\xc2\xfb\xa4\x76\x10\x79\x20\x4c\x0a\xf0\x78\xf9\xea\xf4\xc1\x32\x15\xcd\xea\xff\x31\x27\x58\x12\x84\x0b\xae\x26\x04\x0d\x22\x4e\xa2\x94\xc7\x4a\xed\xc7\x68\x39\xc7\x82\x20\xc9\x31\x13\x74\x9d\xea\xaf\x5b\x05\xdf\x8e\x6a\xe7\x35\x68\xfd\x81\x23\x0a\x7a\xfd\x5c\x3a\xff\x24\x8d\x4b\x47\x43\x9f\x9a\xaa\x6f\x9a\xc5\xcb\xce\x86\x0e\x79\x68\x6d\x46\xfe\x84\xbb\x59\x89\xb2\x0d\x77\x73\x68\xa5\xee\x64\x37\x83\x59\xf8\x5a\x76\x73\x60\xc3\xfe\xb6\x76\x73\xd5\xd0\xf7\x61\x37\xdb\x00\xe8\x86\x3b\xba\x1c\x3f\xdd\xc9\xae\x76\x41\xcb\xd7\xb2\xb3\x4b\x51\xd6\xdf\xd6\xee\xae\x1b\xfe\xcb\xee\x70\xe7\x7b\xdd\xd5\xde\x5e\xbf\x71\xdd\x04\xbc\x86\x4d\xeb\x3a\xab\xfb\xfe\x9b\xd9\xad\xa5\x71\xef\xc9\x36\x7d\xcf\x89\xce\xa9\xea\xb4\x5f\xaf\xcc\x43\x9d\x77\xac\x7d\xb0\xdf\xb3\xaf\x69\xcf\xda\x55\xdb\x9f\x5d\x5b\x87\xe0\xea\x9e\x67\xd8\x00\xcb\x12\x68\x81\x65\x34\x57\x5f\xea\x90\x50\x4b\x32\x8a\x3c\xb1\xf0\x55\xed\xee\xe7\xc8\x26\x7c\xdb\xce\xdf\xde\xe9\xfb\x1b\x24\xfd\xd9\x1b\x84\x72\x9f\x15\xb1\xc3\xac\x08\x2a\xfa\xac\x88\x3e\x2b\xa2\xed\x04\xf5\x59\x11\x7d\x56\x84\xf7\xdd\xeb\xc8\x8a\x78\xfa\x84\x88\xdd\x64\x3d\xbc\x2a\x25\xba\x57\xa0\x7b\x05\xba\x4f\x6d\x70\x43\xdb\x95\x00\xb3\x4f\x1f\xc4\x24\x21\x92\x34\x8a\x9f\x1b\xc2\x17\xca\x36\x08\x08\x7e\x2b\x82\x06\x39\x77\x90\xdb\x41\xe0\xde\x68\x92\x4b\xae\xed\xd7\x29\x9d\x5c\xf7\xfb\x4c\xac\x5e\x5c\xf5\xe2\x6a\x93\xa1\xed\x8f\x57\xd6\x3b\xcc\x2f\xea\x96\xf5\xe8\x82\xef\x68\xbc\x1b\xc6\x60\xa7\x36\xfa\x7c\xc1\xf9\x54\x04\x94\xad\x9b\x39\x69\x73\xf2\xdd\xd3\xf8\x55\xf8\x69\x95\x1c\x89\x47\x4c\x52\xb9\x72\x28\x35\xde\x13\x07\xf7\xc4\xc1\xed\xc7\xda\x7b\x08\x77\xe8\x21\xec\x89\x83\x7b\x1f\x58\xef\x03\x7b\xe5\x3e\x30\xbf\xd4\xc1\x46\x88\x1d\x16\x23\x4e\x66\x54\x48\xc2\x11\xae\xd1\x56\xd6\x43\x78\x5e\x6b\x8d\x98\xd6\x80\x08\xff\xb5\x07\xff\xd6\xa2\xfb\x57\xe6\x7a\x81\x33\x30\xc1\xb1\x2b\x08\x01\x3a\xc5\x02\xaf\xd0\x1c\x3f\x10\x34\xc5\x34\xd1\x16\x83\x11\x1b\x0d\x23\x6c\xea\xd0\xff\xe9\xd6\x21\x1c\x76\x87\x93\x29\xe1\x84\x45\x5a\x0c\x6a\xad\x20\xc2\x09\x22\xa0\xad\xe9\xdf\xcc\x95\xfd\x96\x70\x82\xe3\x15\x9a\x10\xc2\xdc\xb6\xa9\xb8\x42\x6b\xfa\xbc\x13\x6d\xee\xc5\xed\x97\xf2\xee\xd9\x17\xeb\xe5\x49\x60\x25\xd5\x22\x61\x7b\xab\x45\xfc\xf1\x75\x89\x8a\x1e\x5d\xd2\x7b\x9b\x5e\xde\xdb\xd4\xa3\x4b\x7a\xdb\x71\x0f\x6c\xc7\x1e\x5d\xd2\xa3\x4b\x7a\xcb\xba\xf5\x6c\xf5\x96\xb5\xff\xdd\xeb\xb3\xac\x77\x8c\x2f\x79\x2e\x0d\xbb\x57\xb0\xed\xef\x7a\x05\xbb\x57\xb0\xdf\xa8\x82\xbd\x1f\x33\xdc\x6b\xd7\xbd\x76\xdd\x6b\xd7\xbd\x76\xdd\x6b\xd7\xbd\x76\x6d\x9e\xda\xa5\x76\x0d\x7f\x59\x9a\xcc\xad\xa1\xdc\xdd\xa3\x5c\x9f\x88\x7c\xad\x21\xae\x5e\xa5\xee\x55\xea\xfd\x56\xa9\xf7\x66\x40\x6f\x8f\xf6\xae\x27\x8e\x2b\xdd\x8f\x6f\x81\x38\xce\x3e\x7d\xb0\xcc\x9a\xaf\xbf\xdb\x65\x6c\xf3\x08\x84\xc4\x32\x03\x4b\xa3\xc5\x55\x88\x86\x12\x2d\x52\xa5\x77\x33\x12\xfc\xc6\xee\x79\x0d\x22\x98\xd1\x07\xc2\x90\xc5\xcb\x0e\x8c\x64\x1b\x80\xf1\xfb\xab\x15\x70\x26\x81\x01\x4b\x84\x91\xa4\x0b\x72\x84\x4e\xa7\x7a\x03\x45\x38\x49\x90\x20\x52\x14\x90\x27\x4a\x21\x33\x0f\xb1\x38\xef\xab\x7d\x37\xcd\x81\x08\xfa\x67\x03\x7b\xfe\xb2\x44\xea\xd3\x68\x1b\x7f\xa4\x49\xa2\xfa\x60\x36\x2d\x08\x9f\x05\xe1\x89\x7d\x32\x78\xad\xfd\xf1\x02\xc7\xca\x9a\xf0\xba\x90\x67\x5a\xf8\xbf\x07\x31\x4f\x85\x83\x52\x04\xcf\xeb\xa7\x8f\x90\xb1\xfb\x34\xc1\x53\xab\x6e\xcc\x71\xac\xc4\x7e\x34\x27\x71\x96\x10\x84\x85\x48\x23\x8a\x25\x89\x11\xd5\xd7\x02\xa2\xd2\x5a\x89\xf6\x47\xf6\xd5\x31\x15\x78\x92\x90\xd8\xcc\x31\xc9\x91\x1d\x8d\x3d\xa7\x02\x4d\x88\x9a\x62\x75\xf3\x84\xb3\x3f\xd7\x97\x52\x45\x6f\xbc\xae\x90\x72\x4f\x08\xd3\x1d\x69\x50\xaa\xf4\xe6\x7c\xad\x7a\x95\xee\x7d\x9f\x87\xd2\x6b\x59\xbd\x96\xd5\x69\x40\x6f\x4a\xcb\xda\x23\x34\x9a\x15\x48\x2f\x8a\x46\x83\x98\x95\x92\xfc\x77\xce\x29\x25\x36\xb3\xd7\x9d\xdf\xef\xb3\x6d\x72\xe8\x5a\x3c\x4e\xd9\x94\xce\x32\x6e\x1c\xf0\x13\x75\x62\xd7\x06\xc6\x2a\xda\x79\x15\x37\x4e\x75\xd7\x9f\xeb\xe2\xe9\x62\x43\xa0\x43\xa4\xb4\xeb\xbb\xab\xd1\xf5\xc5\xed\xd5\xf1\xe8\x03\x1a\x2e\x97\x09\xd5\x8e\xfd\x28\x13\x32\x5d\xd0\x7f\xaa\x61\x68\x52\x57\x27\xb9\x8d\x1a\x22\x40\xe1\x80\x48\x82\x38\x1a\x33\x74\x88\x8e\xcf\x6e\xaf\x6f\x46\x57\x35\x0d\x9a\x4d\x00\xa5\x4c\xc8\x62\x99\x80\x56\x72\x9f\x4d\x08\x67\x44\x12\x81\xa2\x24\x03\x58\xb3\x8b\x2f\xe8\x46\x47\xff\x3d\x3a\xbe\xbd\x39\xbd\x38\xbf\xfb\xeb\xed\xe8\x76\xf4\x01\xd9\xdd\xa4\x9a\x55\xfd\x52\xbd\x88\x57\x0c\x2f\x94\xf9\x13\xb2\xcf\xfe\x92\x91\x0c\x94\x20\x3a\x63\x0b\xc2\x64\xb1\x45\xdb\xe1\xb3\xe1\x0f\xa3\xb3\xb0\xe5\x39\x41\x3f\xfd\x25\xef\x54\x82\x27\x24\x31\x01\x0f\xf0\xe7\x2b\x81\x9d\xbf\xc8\x44\x42\xb2\x92\x98\x7c\x6e\x5b\x2a\x58\xd0\xb2\x75\x54\x5c\xa1\xf2\x2f\x0a\xd3\xdd\xf4\x83\x60\xf6\x5a\x1b\x5b\x61\x0f\x9f\x4d\xd2\xa9\x03\x12\xdf\x01\x42\x9a\x12\xf1\xfe\x5f\xc1\x41\xf9\xf5\xc9\x18\x29\x90\x97\x46\x67\x24\xdf\xba\x62\x72\xf9\x03\xaf\x41\xde\xf9\xdd\x7d\x49\xd9\xb6\x23\x7d\x62\xbf\x5c\x16\xdd\xb5\xb5\xde\xea\xe8\xad\x8e\xea\x99\xe9\xe1\x12\x35\x33\xbc\xab\x6b\x67\x13\x2f\xdf\x94\x92\x24\x16\x25\x37\x4d\x70\x6d\xac\x75\xc9\xbc\xde\x1b\xe3\x79\x9d\x32\x5d\x74\xe3\x2b\xe7\x3f\x37\x0e\x75\xb5\x5a\x0b\x22\x31\xd4\xe6\x93\x29\xca\xa0\xeb\xfd\x2d\x54\x9e\xe6\xfe\x16\xea\x6f\xa1\xda\x99\xe9\x6f\xa1\x57\xec\xbc\xaa\x90\xdc\x2f\xea\xbd\x5a\x67\xd3\x6d\x45\x0c\x53\xe1\xda\x2a\xdb\x72\x02\x89\x39\xe6\xba\x04\x48\x94\x2e\x16\x29\xf3\x22\xaf\xab\x25\x19\x20\x17\x6c\x03\x37\x05\x74\x63\x9d\xe7\x2b\x7f\x0d\x7d\x1d\x3e\x2f\x6f\x5e\x9e\x03\x15\xde\xdb\x81\x6b\x26\xa8\x67\xd0\xe9\x19\x74\x7a\x9c\x76\xcf\xa0\xd3\xbc\x5b\x7a\x24\x72\x8f\x44\xf6\xbf\x7b\x1d\x48\xe4\xb0\xea\xb4\x06\x23\x57\x95\x69\xff\xb5\xfc\x8d\xef\xd2\x2f\x15\xe9\x36\x9e\x7e\x5d\xc1\x7a\x7b\xcc\x72\x58\xd4\x73\x9d\xcb\xdf\x2f\x03\xb9\xe7\x0a\xdf\x34\x59\x49\x42\xe3\xa4\x5c\xbf\xf2\x19\x30\x35\xbf\x95\x7a\xfc\x7d\xf5\xfd\x4d\x26\xea\xad\x52\xc0\x3e\x6b\x65\xfd\xe7\x15\xde\x96\x26\xfb\xae\x46\x84\x57\x7f\xef\x04\x79\xf5\xd7\xdb\x26\x78\x87\xb2\x7b\xd3\xc4\xee\x40\x36\xbe\x0e\x33\xde\xef\xf1\x73\x18\xf2\x8d\xab\xff\xe6\xe4\x7a\xd3\x5e\xee\xa5\x7b\xcb\xe9\x7a\xab\x32\xbe\x37\xf4\x77\x69\xe8\x0f\xde\xae\xa5\xdf\x27\x64\x37\x4c\x4e\xef\x06\xd9\x64\xb6\x7a\x37\x88\xff\xdd\xeb\x70\x83\x98\xbb\xfa\x4e\x5f\xf5\x1e\x7a\xfb\xfd\xbf\xf2\xbf\x3d\x45\xda\xfb\xb0\x22\x16\xd6\x01\xb1\x62\x71\xc1\x24\xce\xd5\x8f\xbc\xf1\x0a\x24\x8b\xe9\xc3\xa1\x55\x4a\xf2\xa8\xee\x5a\x60\xcb\xa5\x7e\xf4\x04\x9e\x7c\x5d\x30\xf0\x9a\xae\x3f\x2f\xe0\xa5\xbc\x13\xd6\xa9\x4e\x10\x4b\x77\xfa\x34\xd5\x30\xe7\xc7\x39\x85\x6b\x12\x78\x4e\xe0\x2a\xf1\x16\xdc\x26\x90\x61\x40\x7a\xd7\xe9\x1c\xcf\xad\x4e\x95\xb6\x7b\xbb\x81\x9b\x3d\xfa\x7a\xc7\xfd\xe2\x10\x81\x35\xfb\xfe\x45\xe1\x02\x0d\x32\x73\x37\x48\x81\xe7\x93\x8f\x9f\x88\x7c\x7b\xc2\xf1\x13\x91\xcf\x25\x19\x37\x15\x87\x8d\x22\x21\xa7\x65\xdf\x13\x69\xb0\x99\xe8\x7b\x5d\x63\xec\x13\x9e\xfa\x84\xa7\xdf\x7a\xc2\x93\x7d\xba\x4d\xb5\xca\x13\xf8\xc9\x33\x5e\x55\xfa\x85\x6f\xef\xb6\xd2\xe3\xea\x2f\xac\xfe\xc2\xea\x36\xc6\x7d\x55\xd1\xed\x7e\xde\x07\x15\xbd\x53\x0e\xba\x8e\xde\xe5\xe5\x6d\xec\xf6\x5f\x1b\xa1\xbb\xb4\x2f\x7b\x3d\x42\x48\x74\x95\x33\x5b\xe5\x31\xad\x2b\x4a\x75\x95\x57\xa2\xaa\x88\x1d\x15\xa7\xdc\xfe\xfa\xb2\x24\xca\xf6\x7d\xd6\x6d\xcf\x9f\x4b\xd8\xef\x8b\x88\xc8\xc7\xfd\xa2\x42\x41\xe9\xb8\x45\xc8\x57\x88\x24\xb8\x6b\x04\x81\xad\xf9\x6d\x90\xe9\xdd\xfc\xd3\x02\x50\x2c\xfc\xce\x40\xc7\xe0\x6b\xe8\x72\xb1\x1f\xf6\x43\xff\x85\xf6\xb3\xbc\x65\xfb\x89\xa5\xcf\x84\x0f\x39\x91\x7c\x75\x87\xa5\xb2\x23\xe4\xf6\xe8\xb4\xd0\x6a\x58\x83\x4e\xbb\xc1\xe2\xfe\x55\xa2\xd3\xc2\x8e\x3f\xf1\x99\x6d\xbd\x27\xdf\x1c\xae\xa1\xed\x09\xeb\x31\x0e\x1b\x4c\xdd\x5b\xc5\x3b\x34\x89\xd0\xbd\xe9\x61\x41\x8a\xbf\xc5\x93\x1b\xde\x49\xfd\x11\x6d\x9a\xa3\x37\x47\xed\x56\x50\x35\xd6\x8c\xed\x95\x50\xbc\x15\xb5\xa5\x5d\xf7\xea\x69\x20\x50\xde\x6a\xf4\x34\xc0\x6f\x94\x06\xb8\x9d\x71\xd3\xda\xb2\x69\x6b\xd6\xb4\xb3\x69\xea\x0d\x9a\x2d\x90\xd4\xa1\x9d\xb1\x29\x92\x3a\xd0\xe3\x5f\x85\xb7\x26\xe8\xf1\x73\x20\xa9\x7f\xa3\xa6\x47\x6f\x77\x3c\xc9\xbc\xbd\x55\xa3\x63\xcf\x2d\x8e\x1e\x03\xbe\x4b\x0c\x78\x0f\x01\xef\x21\xe0\x6d\x27\xa8\x87\x80\xf7\x10\x70\xef\xbb\xd7\x01\x01\x37\xf6\xe2\xb6\xe8\xc5\x2a\x95\x3d\x57\x68\x03\xc6\x94\xcd\xd5\xf7\xd3\xf8\x55\xe8\xed\x1e\x91\x91\xb3\xac\xf9\x73\xe8\xef\x3d\x63\x4f\xcf\xd8\xd3\x2b\x71\xbf\x25\x25\xae\xd7\x53\x36\x99\xad\x5e\x4f\xf1\xbf\x7b\x3d\x7a\x4a\x00\xe8\x5a\x8b\x2b\x3a\xe6\x04\x4b\x5d\xcf\x8a\xe7\x10\xa3\x82\x66\xd2\xa4\x76\xe8\x06\x94\xe2\xf1\x1a\xb4\x0e\xd5\x4f\xdd\xe3\x16\x00\x23\xff\x85\x07\xff\xd6\xa2\xe3\x57\xe6\x12\x81\x9d\x3e\xc1\xb1\xab\x22\x06\x9a\xc3\x02\xaf\xd0\x1c\x3f\x10\x34\xc5\x34\xd1\xfe\x1b\x23\x1c\x1a\xc6\xd6\xd4\xa1\xff\xd3\xad\x43\x38\xec\x4e\x8e\xd6\x54\xc2\x4e\xdf\xfd\x11\x4e\x10\xd1\xa4\x9b\xf0\x1b\x28\x71\x66\x0a\xca\x4d\x08\x61\x1e\xf4\xaf\x6d\x9f\x77\xa2\xb3\xbd\x38\x4a\xcb\xdf\x37\x2f\x0e\xd0\xaa\x2f\x0b\xbc\x3b\x63\x64\x1b\x0b\x44\xfc\xf1\xb5\x88\x82\xe7\xb0\x37\xde\x70\x4c\xa0\xf7\xfb\xff\x36\x39\xba\xf7\x46\x57\xed\x2d\xc0\x1d\x5a\x80\x90\xd3\xf1\x46\x4d\xc0\xde\x8f\xdf\x30\x39\xbd\x7d\xbc\xc9\x6c\xf5\xf6\xb1\xff\xdd\x2b\xb2\x8f\x77\x5c\x80\xee\x09\xf5\xe8\x5e\x8d\xee\xd5\xe8\x5e\x8d\x7e\xb3\x6a\xf4\x7e\xcc\x70\xaf\x43\xf7\x3a\x74\xaf\x43\xf7\x3a\x74\xaf\x43\xf7\x3a\xb4\x79\x6a\x27\x3a\x34\xfc\x65\x33\x6b\x77\x93\x46\xdb\x2e\x22\x65\xf2\x68\x5f\x8b\xf2\xdc\x2b\xce\xbd\xe2\xbc\xdf\x8a\xf3\xde\x0c\xe8\xed\x25\xcf\xf5\xe9\x67\xa5\x5b\xf0\xcd\xa6\x9f\x39\x96\xfd\x0d\x18\x84\x83\xcf\x6c\x43\xcf\xcd\x2b\x3c\xb0\x92\x11\xb3\x18\xd9\x4e\x74\x62\x19\xfe\x62\x1e\x7a\x5d\xac\x64\xe5\x5e\xf7\xdc\xc2\xc8\x5b\xb5\x9e\x5b\xf8\x09\xc7\x6d\xcf\xd9\x9a\x91\xdb\x3d\xaa\xbd\x57\xaf\x74\xd8\x2f\x0e\xf3\xa9\x3f\xe9\x2f\x0a\xfa\xa9\xbc\x39\x4a\x99\x08\x79\x8d\xa6\xe7\xa7\x54\xde\xe6\x6a\xf8\x44\xe4\x5b\xb9\x17\x7a\x5a\xe5\x9e\xa5\x72\xe3\xea\x4b\x9d\x24\xfc\xeb\x1a\x62\xcf\x1c\xdd\x33\x47\xf7\xcc\xd1\xee\xad\xcf\xc1\x1c\xbd\xcd\x8d\xac\x5f\xff\x56\x2e\xe5\x9e\x3d\xba\xbf\x97\xfb\x7b\xb9\x72\x88\x7b\x68\x70\xed\x05\x37\xb6\x33\xb8\x76\x95\xf3\xed\x87\xb2\x9c\x30\xde\x69\xea\xb7\x9d\xc9\x3e\xfd\xdb\xfc\x5f\x9f\xfe\xdd\x66\x70\x7d\xfa\x77\x0f\x5c\xea\xd3\xbf\x7b\x68\x4e\x0f\xcd\x79\x03\xd0\x1c\xab\x59\xec\x22\x05\xbc\x42\x4b\x59\x9f\x06\xfe\xa5\xac\x32\xef\xad\x06\x62\xfb\xda\xa7\x83\xf7\xe9\xe0\xdb\xee\x9d\xbd\x30\x56\x9e\x24\x2d\xbc\x42\x0c\x6c\x6b\xa1\xbc\x8e\xf4\x70\xdb\xdb\x3e\xb7\xa5\x87\xe8\xed\x3f\x44\x6f\xef\x72\x5b\xf6\x46\x9f\xed\xad\xc4\x1d\x5a\x89\x7d\x7a\x4b\x9f\xde\xd2\xdb\xd0\xad\x67\xab\xb7\xa1\xfd\xef\x5e\x99\x0d\xfd\xb4\x69\xe2\x4f\xa1\x57\xf7\x6a\xb5\xfe\x5d\xaf\x56\xf7\x6a\xf5\x1b\x55\xab\xf7\x63\x86\x7b\x9d\xba\xd7\xa9\x7b\x9d\xba\xd7\xa9\x7b\x9d\xba\xd7\xa9\xcd\x53\x3b\xd3\xa9\x77\x9b\x36\xde\x31\x8a\xe5\xa5\x22\xbc\x26\x65\xba\x57\xa4\x7b\x45\x7a\xbf\x15\xe9\xbd\x19\x50\x9f\x42\xde\xa7\x90\x97\xbe\xd9\xc7\x14\x72\xfb\x74\x97\xc4\x6e\x21\xd5\x5f\xe9\x74\x9b\x2b\x30\x4c\xd4\x7e\x4d\xb7\xe0\xf3\x26\x65\xf7\x77\x62\x7f\x27\xd6\xce\x4c\x7f\x27\xf6\x29\x0d\x2f\x93\x39\xfe\x8d\x99\xa5\x03\xaf\x5f\x6e\x00\x07\x3f\x24\xe9\xe4\x66\xb5\x24\xea\xbf\x27\x74\x41\x98\x00\x13\x97\xca\x95\x6f\x69\xd5\xdc\xc8\xe5\xbb\xf8\xe0\xfa\xf4\xfc\xd3\x99\x9f\x8d\x77\xf0\xf9\xf6\xec\xe6\xf4\x72\x78\x75\x63\x7b\xe8\x46\xe5\x5f\x9e\xe6\xb9\xc0\x58\x3c\x4e\x17\x4b\xcc\xa9\x48\xd9\xe8\xeb\x92\x13\xa1\xba\x76\x01\x77\x53\xca\x37\xeb\xdd\xe8\xaf\x7e\xcf\xce\xc3\x7f\x7e\xba\x09\xff\x15\x8c\xe2\xec\x26\xfc\xd7\xa8\x71\x34\x5e\xc3\xc5\x43\x73\x88\x3e\xdd\x7c\x40\x9f\x00\x26\xc6\xd1\xcd\x1c\x33\xc8\xf5\x3c\xbb\xf9\x80\xce\x88\x10\xf0\x49\xfe\xb0\xa4\x32\x81\xb1\xfd\x40\x19\xe6\x2b\x64\x87\xaf\xd3\x3a\x31\xc4\x8f\xec\xd4\x14\x27\x8f\xfd\x23\x63\xe0\xe1\xc8\x67\xef\x2c\x9d\xd1\x08\x27\xdb\x4d\xe2\xf0\xdc\x57\xb0\x0e\x2e\xae\x1a\xa7\xc2\xff\x75\x79\x2e\x86\xe7\x27\x90\xce\x6a\xbb\x5a\x31\xf2\x73\x22\x24\x89\xd5\xed\x10\xeb\xcd\x7b\x84\x6e\xe6\x64\xe5\xdd\x1a\xff\x48\x29\x23\x31\xca\x84\x52\x6e\x86\xe7\x27\xe8\x3d\xba\xb8\x1a\xb3\x0b\x1e\x6b\x07\x33\x51\xe2\x56\x3b\xb7\xa8\x40\x2c\x95\x88\x2e\x96\x29\x97\x98\x49\x75\xd3\x28\x91\x95\x9a\x19\x11\x08\x73\x82\x8e\xd3\xc5\x22\x93\x58\xd2\x07\x52\x9a\x54\xa6\xbd\x46\xd7\x44\x9e\xc6\x10\xb2\xaa\x98\xc3\x74\x12\x68\x01\x07\x4b\xae\xda\x97\xb4\xa0\x28\x1d\xd0\xb8\xa4\x39\xd9\x26\x30\xe7\x38\x94\x4d\x07\x54\x92\x45\xf1\xf7\xcd\xc2\xf1\x9b\xe2\x5f\xa1\x33\xc6\x15\x49\x1f\x71\x9e\x72\xf8\x9f\x9f\x28\x8b\x37\xdb\x15\xb7\xe7\x3f\x9d\x5f\x7c\x39\xf7\x77\xc6\xed\xf5\xe8\xca\xff\xf7\xf5\xdf\xae\x6f\x46\x9f\x1b\x77\x4b\xb1\x95\x7c\x1b\x40\xf7\xc0\x30\xf9\x80\xae\x75\xdd\xeb\x94\x23\x75\xad\x1e\x54\x0f\xea\x33\x91\x38\xc6\x12\xe7\x1f\xa4\x31\xd9\x6c\x6c\x9f\x87\xe7\xb7\xc3\xb3\x60\x28\xc7\x3f\x8e\x4e\x6e\xcf\x02\x53\xc3\x8e\xcf\xfb\xe4\x6a\xa4\x0d\x09\xff\xb3\xe3\x1f\x4f\xcf\x4e\xee\x9c\xe9\xd1\x34\x1b\x85\xf7\x16\x8f\xcf\xcd\x9c\xa0\x05\x91\xf3\x34\x46\x93\x95\x9f\x67\x98\xe7\x7b\x3f\x62\x81\x12\x08\x17\x91\xf8\x68\xac\x45\x8d\x6e\xf5\x83\x3a\x45\xc8\xbc\xcc\x7b\x62\x91\xc6\x64\x60\x7e\xa3\xce\x89\x4e\x8b\x57\xe6\x1f\x98\x10\x55\x0d\xab\xb7\x63\x86\x28\x8b\xe9\x03\x8d\x33\x9c\xe8\xf4\x75\x37\x47\x1f\xd0\x10\xa9\x8b\x33\xce\x12\x82\x24\xa7\xb3\x19\x28\x79\x85\xae\xea\xd6\xcc\xa3\x30\x93\xf0\x9c\x2b\x71\xae\x4c\x05\x78\xad\xb1\x15\xe8\x24\xd1\x2a\x94\x7e\x10\xd2\xf5\xc3\x16\x39\x96\x73\xc2\xab\xba\x66\xd7\xe5\x83\xf6\x73\xd7\x0c\x0b\xd2\xa7\x73\xdc\x33\x84\xe0\x85\xd6\x4d\x97\x9c\x3c\xd0\x34\xf3\x1e\x35\xcc\x02\xc1\xe2\x56\x36\x9f\x4f\x00\x4c\x5b\x0a\x7d\xcc\x9b\x09\x77\xf3\x95\x8d\x8d\xd9\x3f\x46\x4c\xf2\xca\xab\xb9\xad\xcc\x31\x5a\x51\x20\x74\xaa\x75\x97\xd2\xbb\xcf\x8b\x6a\x6e\xd9\xe1\x6a\xf4\x7c\xf5\x92\xa3\x83\x4a\xab\x0a\x54\xdf\x3a\xa9\x57\x61\xf1\xe7\x12\xe0\x67\x50\x9a\x17\x99\x90\xc0\x53\xa4\x63\x16\xe8\xfe\x2f\x02\xfd\x92\x61\xc0\xa4\x1f\xa1\x6b\x42\xc6\x6c\x2e\xe5\x52\x7c\x78\xff\x7e\x46\xe5\x3c\x9b\x1c\x45\xe9\xe2\x7d\x4e\xdf\xf0\x1e\x2f\xe9\x02\xab\xfd\x42\xf8\xea\xfd\x24\x49\x27\xef\x17\x58\x48\xc2\xdf\x2f\xef\x67\xe0\x9e\xb6\xea\xeb\x7b\xd7\xec\x2c\xfd\x5f\x67\x7f\xfa\xfe\xf0\xec\x2f\xdf\x1f\x94\x45\x6a\xdd\xe9\x1c\xb1\x08\x2f\x45\x96\x98\x30\x16\xf7\xe7\x06\x52\x2b\x60\x26\xd6\xad\xf7\x79\xb8\x5c\xdb\x09\xe4\xe3\xcb\xdb\x40\xc5\x09\xff\xf9\x79\xf4\xf9\xe2\xea\x6f\x81\x40\xbb\xb9\xb8\x1a\x7e\x6a\x56\x75\x4a\x12\xbb\x30\x0d\x3f\xb1\xf4\x91\x85\xa3\x17\xc5\x41\x67\x4c\xd2\x05\xb1\x02\xdb\xfc\xf3\x46\x8f\x74\x83\x91\x5f\xdc\xfc\x18\x5e\x3c\x1f\xcf\xfe\x76\x33\xba\xbb\x3e\xf9\xa9\x71\x24\xfa\xb1\xa0\x67\xd7\xa0\xee\x1f\xa7\x49\xb6\x60\xfe\xdf\x9b\xf7\xed\xf4\xfc\x66\xf4\xa9\xd8\xbb\x8b\xe1\x4d\x38\xed\x57\x61\x68\xe7\xe0\x87\x8b\x8b\xb3\xd1\x30\x58\xcb\x93\xe1\xcd\xe8\xe6\xf4\x73\xa0\xa4\x9e\xdc\x5e\x0d\x6f\x4e\x2f\xce\x1b\x87\x69\x7b\x50\x31\x50\x35\x2c\x7f\x98\xbb\x96\x33\xad\x8e\xf9\xd0\xc0\x26\xf4\x41\x39\xf4\x92\x4d\xb5\xf1\x05\x3a\xc0\xa1\x33\x9e\x23\xdd\xd3\x4a\x59\x23\xc3\x65\x42\xf5\xb2\xae\x71\xa1\x9b\x44\xde\x8d\xeb\x02\xf4\xcb\x04\x4e\x71\x92\xa4\x8f\x3a\x78\xbd\xa0\x4a\x7b\x35\x99\xff\xea\x27\x02\x45\x19\xe7\x84\xc9\x64\x75\x54\x21\x4e\xc2\x65\x49\xb9\x3c\x71\xe1\xcd\x8d\x36\x5c\x65\xac\xb0\x1c\x25\xac\xdc\x2a\xc5\xc8\xa0\xed\x16\x54\xf8\x48\x67\x9f\x89\x10\x78\x46\x3e\x5a\xf4\xc4\x8e\x84\xd4\xf5\xcf\xfe\x3f\xff\xeb\x7a\xcd\x7e\xb6\x4d\x04\x3d\x04\xbb\x7b\x38\x49\xb9\xb4\x52\x65\x9b\xbd\x1c\xe1\x4c\x74\xda\xcc\xcd\xe0\x0f\x8c\x32\x41\xf8\xa1\xf1\x67\x91\x18\x61\xd5\x51\x83\xfc\x00\x1e\xbe\x25\x16\x6a\x13\xa5\xa0\xd3\x10\xf3\xf3\x4c\x33\xf3\x21\xe8\x4d\xcd\xed\xba\xe4\x94\x45\x74\x89\x93\x8d\x8e\x5e\x21\x1c\x60\x12\xbd\xbe\xa3\x53\x84\xd9\xea\x5d\x49\xf1\x92\x84\x2f\x00\x05\x65\xba\xe9\x94\x98\x75\xdb\x5a\xaf\x0e\x63\xa9\xc4\xa1\x3b\x62\x83\xb5\xd1\xe1\xf9\xba\xe1\x16\x5a\x31\x6f\xd7\x86\x24\x4e\x2e\xab\xdb\xac\x9a\x30\xdf\xac\x6a\x5a\xea\xcf\x78\xa9\x96\x58\x73\xf4\x20\x9c\x8f\xd1\x80\x9b\x0c\xbd\xa2\xfa\x57\x30\x65\x9e\xd3\xac\xbd\x8a\x91\x4f\xa1\x41\x29\x94\x5f\x12\x28\xed\x1e\xee\xcc\x6c\xc9\x69\x26\x33\xae\x94\x29\xa5\xf6\xa3\xef\xc8\xd1\xec\x08\x5d\xfc\x3c\xba\xba\x3a\x3d\x19\x0d\xd0\xf0\xf2\x72\x74\x7e\x32\x40\x44\x46\xef\xac\xbd\x0d\x52\x93\xc4\x63\x26\x53\xe3\x91\x5d\xa1\x79\xfa\xa8\xde\xb5\x20\x7c\x46\x82\x31\x9b\x1f\x23\xc8\x26\x9c\x51\x21\x75\x5c\x01\xd4\x1f\x8f\x94\x8a\x2e\x8a\x7a\x90\xde\x21\x99\x9c\x6f\xb3\x35\xb0\x10\xd9\x02\x4f\x12\x72\x47\xf1\xe2\x8e\xa7\xc9\xba\x33\x5c\x79\xa4\x72\xd5\xf1\x4e\x68\x57\xdb\x1d\x8e\xa2\x34\x63\xb2\x75\x6b\xeb\xd6\xf1\x04\xa6\x49\xa0\xa5\x3a\x50\xe0\xa8\x29\xd3\x38\xb9\xe9\x12\x28\x02\xe7\x11\xd8\x0f\x20\x32\x92\x1c\x0f\x08\x4b\x52\x35\x97\xc7\x9a\x1f\xcc\xaa\x95\x1e\x83\xd3\x36\x13\x5c\xd5\xca\xcb\x9e\xbf\x63\x7d\xf0\xaa\x88\xb1\xb4\x81\x5c\xe0\x39\x05\xd0\x65\x81\xd0\x4d\x4f\xb0\xda\x99\xfa\x40\xfc\x92\xa5\x12\x8b\x77\x47\x63\xa6\x4e\xf7\x3d\x59\x69\x2f\x91\x3a\x3f\xbf\x53\x32\xfd\x50\x10\x26\xa8\xa4\x0f\xe4\x77\x5a\xbf\x55\x12\xe0\x01\x73\xaa\xf6\x9e\x50\x6f\x30\x3c\x72\x21\x67\xd7\x94\x26\x80\x2b\x52\x8d\x9a\xe3\x6b\x00\x57\x13\x9f\xe8\xcb\x7e\xa7\xbb\x3f\x23\x12\x02\x23\x92\xca\x4c\xed\x81\x58\x13\xd5\x95\xba\xbe\x56\xb5\x80\x5d\x71\xa2\x83\x3a\x5b\xb9\xb0\x36\x39\x53\x5d\x95\xc3\xe2\x79\xa1\x62\x99\xe0\x55\xc9\xcc\x5c\x77\xce\x94\x31\x25\x96\x38\x22\x79\x50\xc9\xc6\xdf\xa2\x74\xb1\x48\x59\xb2\x72\xe0\xca\x98\x4e\x21\xfd\x59\xaa\x33\x88\x26\x44\x3e\x12\xc2\xf2\x4f\x91\x91\x05\x88\x32\x21\x31\xd3\x2c\x80\xb0\x5b\xc6\x6a\xae\xe2\x0c\x54\xb6\xf1\xc1\x00\x8d\x0f\x62\xf2\x40\x92\x74\xb9\x20\x4c\xaa\x0f\x88\xac\x3c\xa1\xa3\x05\xa6\xc9\x79\xaa\xee\xdf\x08\xd7\xe9\x7b\x6d\x97\x85\x93\x88\x2e\x29\x61\x52\xdc\x11\xd5\xee\x93\xba\x19\xd7\xe9\xc7\x16\xc1\x09\x3d\x41\x38\x8e\x39\x11\x02\xc8\xaf\x6c\x27\x8d\x36\xaf\xbd\xb3\x6e\x02\xda\xed\x61\xe7\xdf\xdb\xed\x36\xae\xb6\x13\xa2\x94\xbb\x48\xb8\x7b\x71\x4e\x57\xd4\xb8\x6b\x0d\xf9\x59\x4e\xaa\x63\xe3\x65\x2e\x1e\x5f\xf4\x02\x15\x8f\x8d\x12\xee\xed\xfa\x19\xce\xcc\xb5\x7a\xae\xb1\x6b\xc2\x07\x1b\x5b\x06\xcc\xfc\xae\x36\xae\xaf\xa2\xb7\x8d\xac\xed\x71\x94\xa4\x22\xe3\x2d\x8d\xb0\xb0\xd3\xc7\xe6\xd1\xa6\x7e\x8f\x7c\xd5\x26\x4b\xa4\xe8\xa4\x3d\x55\x4c\x3c\xe2\x64\xc9\x89\x80\x3d\x09\x7e\x43\x75\xb8\xa5\xb9\x86\xcd\xaf\x07\x88\xb2\x28\xc9\x62\x35\x07\x38\xc9\xfd\x82\x2c\x46\xf9\xd5\x36\x66\x0b\x63\x78\x20\x2c\xd0\x23\x49\x12\xf5\xdf\x28\x5d\x2c\x41\x6c\x9b\xee\x9a\x96\x94\x81\x28\xb1\x24\x03\x94\x66\x52\x35\x36\xd0\x64\xa1\x66\x09\x0e\x27\x18\x10\xcf\x39\x05\xf8\x98\xdd\x0a\x1b\x26\x77\x40\x55\xbd\xd7\xb5\x00\xa3\x0c\x7d\x22\x12\x5a\x81\xcc\x01\x7f\x80\x9a\x14\xb5\x52\x04\x15\xe7\x7e\x8b\x13\x65\x46\xd2\x61\xe5\xcf\xa8\x24\x1c\x27\x9f\xf1\xf2\x87\x24\x9d\x34\xae\xfb\x10\x2d\xb4\x9e\x6d\xde\x82\x68\xd1\xc2\xf2\xb0\x25\xeb\xf6\x28\xe1\x3c\x08\x85\xad\x39\xfe\x61\xd4\xa4\x79\x7b\x42\xcc\x82\x32\x9d\x5f\x00\xf1\xa7\x62\x3f\x0d\xd5\xc7\xba\x3e\x82\x85\x78\xf7\x7a\xec\x50\xdd\xdf\x45\xd9\xf6\x5e\xb7\x09\x42\x9b\xfd\xa9\x07\x03\x07\x44\xce\x09\xe5\xa8\xd5\xb0\xec\xf9\xbd\xd3\x67\xbe\xfd\xa6\xc9\xf7\x76\x9d\xe9\xad\x85\x88\x13\x10\xaa\x63\x26\xd3\x21\x60\xf0\x3d\x1a\xb3\x42\x27\x50\x4c\x96\x84\xc5\x02\xc1\xf6\xb2\xa7\x21\x90\xfd\x03\x34\xa5\x5f\x4d\xa3\x36\xe2\x93\xff\xd4\x33\x1f\x6a\x9c\x0a\x73\x5c\xde\x76\x1d\xee\xc7\x4b\x78\xbe\xd1\x6a\x4e\x85\xb2\x10\x23\xa5\x58\x71\x12\xa5\x5c\x89\x44\x78\xad\xf3\xf3\xad\xbd\x1b\x25\xe6\x6a\x52\xf0\x3a\xb3\x2c\xe8\x47\x9e\xf9\x13\x63\x49\x0e\x95\x25\xba\x26\xc2\xb1\x4c\xd5\x6b\x10\x5d\x28\xdb\xc2\x05\xdd\x7c\x4b\x7e\x42\x66\x98\x21\x9e\x31\x46\xd9\xac\xa6\xb7\x56\xb4\x6f\x71\x98\x95\x66\x85\x17\xca\x0e\x05\x3d\x42\x75\x28\xec\x87\x58\xc2\x74\x36\xf6\xc3\x98\x92\xcf\x35\x6b\xb2\x61\xda\x1e\xb1\xb3\x6c\x6b\x3a\x9b\x01\x7e\x66\x6f\x3a\x9b\x60\x21\x91\xe9\x53\x4d\x8f\x7d\x6d\x76\x07\xa1\xfe\x26\xf6\x4c\xdf\x70\xe8\xa2\x9c\xfb\x5d\x44\x82\x48\x49\x0d\xcb\x63\x26\x08\xc2\x53\x65\x17\x2f\x08\x9f\x59\x85\x4f\xf3\x1b\xb9\xa3\x6d\xc0\x4c\x56\x8e\xfa\xb2\x64\xcc\x2a\x9b\x3e\x42\x43\x56\x8a\xfa\x5a\x27\x47\x30\x5f\x5a\x6a\xe3\xe4\x11\xaf\x04\x5a\x02\x1b\x95\x0e\x44\xe7\x83\x07\x2f\x54\xf8\x90\x75\x39\x29\x85\x8a\x46\x38\x49\x56\x08\x0c\x3d\xaf\x67\x35\x8b\xe5\x51\xbc\xb6\x17\x76\x2d\x75\xff\x82\x67\xb5\x8a\xf0\xd5\x99\x40\x95\x92\xae\xa4\xcc\xe6\xc0\x08\x3f\xce\x68\xe0\x77\xa0\x5b\x1a\xeb\x62\x14\x7a\x65\xeb\x14\x3e\x70\x81\x9c\xe1\x09\x49\xb6\xf6\xc6\x6e\xe4\x7b\x86\x57\x1b\x60\xa4\x32\xbf\x89\xf6\x2e\x13\xf4\x38\x27\xbc\x28\xda\xac\x13\x87\x67\xed\x7c\xcd\xf9\x38\x03\x7a\xae\x2d\x06\x6a\x91\xbe\x9b\xcb\xef\x3a\x14\xb0\x7f\x91\xe4\x30\xe0\xea\x5b\xa4\xe8\xbe\xd9\xa6\x0f\x1e\x5e\xb7\xb2\x0b\x68\x17\x88\xdd\x9d\x78\x83\xdc\x9e\x69\x99\xb1\x7d\x3a\x45\x2c\x65\x04\x51\x91\xff\x18\xe2\x89\x1a\x5b\x02\x9b\x69\x46\x18\xe1\x40\x7a\x68\xc3\x8f\x2e\xbb\xd4\xe5\xfd\x3d\xb3\x51\x3e\x74\xc6\x24\x9a\x52\x92\xc4\x02\x31\xa2\x6c\x1a\xcc\x57\xea\x84\x18\x81\xd6\x46\x37\xda\x95\xb6\x5a\x71\x7d\x18\x35\xd2\xa2\x66\x21\x03\x55\x69\x62\x85\x7e\xa1\x61\x92\xe4\x3f\x32\x0f\x19\x28\xc7\x98\x39\x2b\x18\xf6\x1f\x15\xca\xba\x3b\x42\xb0\x6c\x32\x7f\x4a\xdd\x31\xea\x03\xbb\x86\x03\xab\xcb\x0a\x9d\xbf\xd9\xc5\xf6\xb7\xf7\x56\x3e\x8f\x21\xba\x49\x5d\x46\x6a\x04\x33\xfa\x40\x58\x65\x01\x05\xbb\x29\x92\xc0\x0d\xd9\x2c\x75\x4c\x1e\xc2\x1e\xf8\xa9\xda\xcf\x94\x5a\xe4\xac\xe4\xb9\xd2\x74\x91\xb9\x91\x9d\xac\x5c\x54\xc2\x37\x55\x4e\xb5\x68\xd1\x3c\xf8\x58\xa0\xdf\xb1\x54\xfe\x0e\xe5\x36\x9a\x35\x87\x35\xdf\xa8\x71\x4d\x0c\x82\x44\x23\xf5\x36\x38\xa1\x66\x93\x20\xec\xce\x6a\xbc\x7e\xe6\xb7\x45\x68\xe6\x51\x97\x27\xd5\xde\x46\xe5\xc8\x69\x5d\x56\x8a\x26\x1b\xd8\x99\x0f\xe0\x39\x28\xa0\x91\xde\x06\x9c\x40\xd8\x84\xa5\x68\x91\x72\x52\x20\x3c\xd0\xc2\xdb\xde\xeb\x26\xd1\xbc\xfd\x2e\xad\x70\x87\xe9\x24\xee\xfc\x98\x07\x6e\xb0\x66\xf7\xd7\x2e\x30\x03\x8b\x10\x6d\xda\xb0\x03\xd6\x20\x56\xab\x4d\xf2\x4d\xe2\xfc\x75\x3a\xa9\x73\x44\xfb\xcc\xae\x75\x38\xcd\xa3\x31\xfb\x98\x72\x73\x77\x0a\x03\xba\x9e\xe0\xe8\xfe\x90\xb0\x18\xe1\x4c\xce\x35\x5e\xd2\xf8\x8e\x57\x66\x65\x95\x5e\x00\x5b\xc0\x2e\x71\x4c\x45\x84\xb9\x11\xfa\x53\xfc\x90\xda\x5e\x8c\x99\xd7\x08\xc0\xba\x21\xd7\x10\xf8\x50\xea\x14\x08\x02\x89\x6d\x75\x73\x51\xc5\xfa\x51\xe2\xfc\x68\x3e\x33\x3e\x73\xc0\x18\xde\x47\x62\x46\x84\x18\x1f\xe8\x5e\x17\x66\xe8\xd4\xfa\xa3\xac\x7d\x23\x7c\xfe\x64\xf7\x4b\x7d\xc6\xac\x47\xc6\x8c\x42\xa9\x29\xdf\x5b\xd9\x19\xa0\x47\xa7\x19\x07\xb0\x68\x55\x9b\xdf\x45\x73\x9a\xe4\x3e\xea\x77\x03\x73\x1e\x75\x93\x09\x79\x20\x89\x6a\x98\xb2\x88\x93\x05\x61\x26\x7c\xfc\x3d\xfa\x4f\xcd\x86\x81\xfe\x30\x66\x9f\x40\xac\x26\xc9\x6a\x80\xe8\x34\x6f\x19\xcb\x42\x33\xf7\x95\x1d\x50\x4b\xa6\x25\x4b\xd0\x11\xbd\xde\x73\xfc\x40\xc6\xcc\x36\xf3\x9f\xe8\x1e\xfd\x1e\xfd\xa1\xce\x91\x63\x90\xc2\x4f\x6d\xe7\xc3\x2e\xb6\xef\xf2\x24\xc3\xc0\xa8\x8f\x20\x39\xac\x1b\x20\xac\xa2\xe5\x4c\x35\xa7\xe0\x3a\x78\x33\x65\x0f\x69\x39\x7a\xe5\x9f\x5c\xcc\x09\x93\x77\x2c\x8d\xc9\x1d\xa9\x08\x5d\x35\x08\x0a\x75\xa9\x9f\xa7\x31\x59\x1b\x78\x72\x0a\xf2\x17\x70\x5d\x88\x6c\xe2\x96\x43\xbd\x37\x37\xba\xc3\x0d\x56\xdd\x61\x47\x03\xbd\x49\x77\x37\x8d\x95\x5d\x18\xed\x6a\x00\x12\xdd\x74\xa0\x3a\x5e\xa3\xeb\xb3\x01\x9e\xa6\x78\x0a\x8b\x1e\x62\xf5\x63\x35\x72\x73\xe7\x78\x04\xd7\x90\x03\xc2\xe9\x8c\x2a\x6d\xbb\x7d\x3c\x0e\x84\xe0\x26\x6e\x6e\x9d\xc1\xd0\xca\xcf\x9d\x4f\xc5\x32\xc1\x52\xed\xf2\x43\xb7\xed\xf2\x18\xd3\x24\xcd\x8a\x3a\xb7\x99\x00\x2a\x7c\xa4\x8f\x51\xaf\x57\x4a\x04\xcf\x34\x8a\x84\xcc\xa9\x92\xdc\x0c\x0d\x8f\xcf\x90\x3a\x14\xe9\x82\x68\x2e\x14\x35\x69\x99\x9c\xa7\x9c\xfe\xb3\x36\x20\x5b\xaf\x61\xe7\x81\x34\xaf\x38\x19\xf4\x33\xd4\xb5\x61\x8f\x6a\xcd\x40\x06\x86\x44\x95\x85\x83\x26\xea\x79\x0e\xca\xc7\x34\x83\x4a\x77\xda\x61\xac\x99\xb9\x44\x58\x0a\x8d\xdb\xa2\x7a\x1a\x83\x64\x1b\xa4\x06\x81\x1d\x83\xf3\x08\x45\x73\xcc\x66\xcd\x7a\xe4\x5f\x33\x92\xed\x08\x34\x63\x12\xf9\x5e\x28\x1c\x8f\x67\x22\xaf\x0b\xa8\xe7\x46\x89\xe4\x42\x29\x42\x13\x90\xc7\xe2\x3e\x77\xa8\x39\x20\xae\x36\xa3\x8b\xf6\x7c\x0b\xe7\xcb\x95\x39\x7e\x3b\x70\xbf\x3c\x47\xbc\xbe\xac\x1f\x55\xc8\x1f\xd8\x7f\x26\x75\xe5\x59\xbd\x1b\x4e\x86\x17\xf4\x8e\x5d\x7b\x3a\x3a\x58\xd2\xb6\x53\xa6\x87\x46\xb8\x96\x83\x9b\xd5\xbb\xe3\x3a\xf4\xa3\x74\xde\x12\xfa\xdd\x77\x10\xc6\xda\xda\x7d\xeb\xb9\x25\x73\x6c\x9d\x06\x57\xea\xd1\x90\xf8\x69\x5d\x2d\x61\x60\x30\x84\x77\x7a\x71\xc1\x3a\xd8\xad\xd7\xa3\x0d\x6e\xa7\xb2\x21\x54\xdd\x37\xfb\x75\xdb\xae\x34\x86\x43\x5a\x06\x37\xc0\xa2\x6f\x3a\xb6\x67\x06\x6d\x14\x86\x05\x34\x84\x22\xf5\x02\xa3\x10\x21\xc8\x04\x92\x1c\x03\x7a\x2f\x65\x62\xcc\xbe\x68\x2d\x96\x0a\x6d\x2f\x9a\x74\x51\x30\x47\x11\x85\x7f\x83\xf0\x34\x99\x65\x72\x8e\xb5\x8d\x53\x1d\x82\x70\xec\x07\xee\x24\xf8\x41\x88\xaa\x97\xc1\x8b\x8c\xea\x5e\xd9\xa4\x9d\x68\x1f\xf2\x59\xaa\xdc\x5e\xed\x2b\xa6\x02\xa0\xb0\x38\xa9\xb5\x19\x27\x69\x9a\x10\xcc\xea\xd4\xea\xca\xaf\x4b\xde\x22\xea\xa3\x18\x95\xd5\xa7\x34\x33\x9e\x11\x65\x53\xe0\x24\x29\x8c\x0b\x03\x71\x9f\x24\x4c\x3b\x17\x8c\x61\xa8\x3a\x1a\xaf\x09\x88\x0c\xfc\x93\x3f\x21\x49\x27\xa4\x89\x7e\xa0\x71\x17\xc1\x4f\x72\x6e\xb8\x56\x78\x6d\x1f\x00\x51\x89\x6e\x5f\xd7\x31\x1f\x13\xdf\xe8\x1a\x0e\x71\xe5\x1d\xba\xb8\x4e\x9c\x0f\x0b\xd0\x01\x44\x00\x6f\x80\x01\xb0\xa7\xd6\x0f\xce\xbb\xf5\xfc\x38\x79\x1f\xac\x12\x64\x96\xc2\xc3\x71\x4a\x84\xa7\x62\xa1\xf4\x81\x98\xfd\x4b\xa7\x44\xa9\x61\x63\x66\xb9\x69\x6c\xa7\xb1\x50\x07\x6d\xc9\xd3\x99\x41\x09\xe2\x88\xa7\x42\x18\x34\x80\x6e\x47\x1c\x35\xde\x24\x37\x26\x2f\x61\x17\x71\x9e\xe7\x03\x06\x96\x69\x62\xf3\xac\xd5\x1a\xcd\x63\x42\x5c\x0e\x46\xed\xb9\xdf\x16\x33\x64\xcd\x0f\xc4\x09\x16\xc6\xf6\x05\x68\x4d\x01\x54\xd0\x41\x4f\x70\x7d\xd6\x10\xbb\x43\xbb\xd8\xfe\x16\x32\x79\x54\x9a\xa1\x91\x0a\x44\x39\x27\x40\x33\x32\x49\x4c\x48\x27\xd8\x35\x34\x2f\x43\x94\xcf\x88\x33\xf3\xf4\x9b\x41\x4e\x0a\xba\x50\x67\x05\x12\x48\x59\x7a\x98\x2e\xc1\x6e\x28\xfe\x6a\x8a\x69\xa2\x04\x16\x0d\xab\x20\x29\xe5\xea\x10\x68\x94\x08\x93\x55\x8e\x6e\xdb\x08\x38\xc6\x49\xac\x97\x51\xef\xdc\xf1\xc1\xf0\x87\x8b\xab\x9b\xd1\xc9\xf8\x20\x0f\x5f\x5a\xa8\x8b\x15\xeb\x2e\xa3\x26\x65\x63\xe6\x82\x10\x8e\x22\x18\xd6\x12\xe1\x38\xce\x13\x48\x34\x00\xee\x4e\x3b\x53\xdb\x9e\x8a\xb5\x71\x88\x72\x33\x1f\xe9\x57\x12\x5f\x61\xb9\x55\xf4\xa2\x31\x3a\xdc\xca\x4b\x57\xb9\xc5\x33\x46\x4b\x9e\xa2\x06\x21\xeb\x86\x72\xab\x9e\x6b\xbf\x83\xf5\x49\x80\xb5\xb2\xee\x1e\x81\x78\xc6\x94\x65\x89\x1d\x73\xf3\x14\xf6\x00\x8b\x56\x03\x04\x70\x70\xb5\x6b\x57\xe8\x8f\x68\x41\x19\x40\x37\x9b\xe6\xf6\x36\x1c\x48\x17\x86\x82\xd3\xf3\xdb\x90\xb0\xe4\xc7\x8b\xdb\xab\x30\x5f\xf4\x6f\xcd\x5c\x03\x61\x0b\x4d\xe6\x7c\x3e\x46\x0f\x1e\x93\xea\xa9\x70\x53\x53\x35\xd0\xb3\xe2\x45\xfd\xb6\xb2\xbd\x12\xa7\x33\xec\x3a\xd1\xcb\x03\x47\xec\x45\x8e\x97\x19\xe9\x76\xe9\x5d\xda\xb4\xba\x0c\xed\xb5\x27\xbd\xa0\x2b\x03\xa0\x9b\x87\xf2\xf3\x01\x80\xed\x5a\x7d\xfd\x76\x06\xc0\xe7\xad\x5a\x14\x76\x07\xed\x0d\xe5\x4f\x5b\x0f\x80\x30\x4e\xd0\x25\x9e\xd0\x04\xc2\x3b\xa9\x97\x8f\x54\xa1\x59\x88\xa3\x31\xf3\x29\xe6\xf5\x9d\xa9\xf6\x80\xcd\x49\xa3\x6c\x86\x52\x46\x50\xca\x75\x28\xcf\x89\xc3\x81\x0f\x86\x2f\x82\xb9\xe4\x1c\xad\xd2\x8c\xbb\x37\x96\xde\x63\x76\x9f\x98\x63\x1b\xee\xb7\x7a\xa6\x09\x46\xf9\x49\x70\xd0\xde\x92\x93\xdc\xd8\x82\x17\x93\x07\xc2\xd0\xa3\x32\xac\xf2\xd8\xc4\x98\x79\x30\x2b\xa5\x92\xb2\x6f\xa5\xc3\x52\xd0\xc4\x14\x5d\xc4\x2e\x10\x93\xbb\x5a\x04\xa6\xa6\xe5\xe6\x0d\xbc\x03\xbc\x3c\x24\x00\x6c\xb6\xf9\xe0\xc9\x3a\xef\x81\x8e\x5c\xc1\x1e\xf0\x7d\x19\x1a\xd3\x5b\xb9\x65\xc9\xd7\x25\x89\x36\x01\x39\x5f\x5a\xc2\xc4\x26\x6f\x86\x1f\x49\x33\x59\xf1\x66\xe9\x64\x6a\x7d\x2b\xc5\xde\xae\xe9\x67\xa7\x54\x03\xd5\xd1\x9f\x4d\x6e\x5e\xc7\x7e\xda\x64\x83\x29\x4f\x17\xed\xba\xf8\x3c\xf0\xda\x9b\x12\x50\x35\x70\x0f\xec\x09\xae\x76\x7d\x2f\xeb\x00\xb5\xeb\xa4\xde\xcf\xfa\x5e\x74\xd8\x79\xc8\x8b\x25\x68\x9a\xac\x24\x71\x41\x13\x83\x65\xf5\xdf\xe9\xdf\x59\x2e\x7c\x60\x61\x26\x85\x53\x10\x04\x26\x26\x04\x19\x6d\x48\x63\x4b\xab\x41\xb1\x70\x7d\x56\x79\x44\xbd\xd8\xaa\x49\x0d\x52\x93\x27\x24\x5e\xb8\x44\xd0\x62\xf6\x6f\x61\xba\xd6\x48\xa3\x5d\x81\x1c\x9f\x00\x08\x5b\x65\xeb\x06\xe0\x5c\x03\x42\xd8\x4d\x06\x5c\xe1\x86\x6e\xec\x58\x90\x02\xe7\x77\x28\x26\x12\xd3\x44\xf8\x69\x5f\xe5\xa5\x0c\x6e\x3e\xcd\xe9\x64\x1d\xaf\x1b\x5a\xc9\x5e\xe5\x65\x7f\xe5\x91\x7f\xc7\x83\x93\x65\x81\x57\x1e\x38\x4a\x9d\x82\x84\x48\xb8\x9c\x29\x73\xff\x0a\x45\xad\xdd\xcc\xfe\x16\xad\x02\x28\x1c\xa1\x1f\x56\xee\x5a\xc4\x49\xe2\xf7\x44\x3b\xef\xf2\x7a\xbf\xea\x28\x68\xba\xe1\xd3\xf3\xe1\xf1\xcd\xe9\xcf\x23\x00\xfe\xac\xd2\x0c\x3d\x52\xa1\x2c\x84\x31\x03\x7f\xa0\xa3\x25\x96\x29\xd2\x3f\x1c\xc0\xaf\x00\x0e\x28\xb2\xc9\x82\x2a\x7b\x2a\x1f\x64\x40\x9b\x39\x30\xe7\x58\x3d\x00\xd7\xb6\x85\x9d\x55\x21\xbc\xd7\x9c\x8f\x0d\xcc\xe0\xbc\x91\x6d\x91\x65\x5e\xb8\xe2\x69\xb1\x65\x9e\x9a\xed\x9b\x35\x95\xc7\xab\x07\x97\x55\x1f\xca\x30\xc3\x12\xd2\x60\xa9\x90\x85\xcb\xa4\x3e\xaf\x32\x5f\x82\x5d\x20\xcb\xac\xb6\xdd\x05\x6e\x60\x1f\xa9\xd6\x76\xae\x1d\x39\x5f\xa5\x0a\x76\x59\xab\xdf\xec\x5b\x7e\x4b\x1e\xb6\xdb\x3c\x08\xd4\xc5\xdc\xca\x11\xda\xfe\x56\xf0\x10\x08\x21\xb2\x99\x14\x45\x37\x4b\x25\x44\x5f\x23\x99\xac\x2a\xa0\x0f\x63\x56\xad\x37\x34\xef\xb1\x6d\x03\xa9\x3b\xcd\x83\x71\x2b\x72\xe5\x46\x61\x3c\x22\x5f\x1c\x72\x4c\x1b\xa3\xae\xc8\x00\x29\x9c\x2b\xeb\x7f\xad\xb1\x02\x40\x5d\xd8\x04\x83\x53\x71\x2a\x5b\x86\x39\xd7\x9e\x0b\x73\x65\x3e\x8d\x05\xb5\x65\x3c\x18\x52\x41\x77\x9f\xc0\x0a\x4e\xcc\x01\x78\xc8\xd3\x07\xc2\x39\x8d\x95\x85\xe5\x33\x07\xb4\x9a\xb9\x16\x2c\x3d\x35\x32\x4c\x17\xb2\x92\x29\x84\x4d\x9c\xcd\xab\xda\xb3\xd9\x6c\x05\xe9\xe6\xd4\x9d\x8c\xc5\x84\x33\x82\xe5\xfc\xf9\xe2\x8b\xc7\xdb\xba\x0c\x9f\x2d\xd6\x78\xbc\x13\x2a\x2b\xbf\xbb\x21\xad\xd3\xda\x7e\x66\x05\xba\xf8\x66\x74\x6e\xce\xa1\x54\x32\xa2\x2a\x5c\x5d\x1e\xcc\xd9\xd8\x59\x21\x9f\x52\x47\x0c\x7a\xad\x05\xe1\xdc\x4f\xca\x3c\x08\xf9\x35\x4c\x7d\xb1\x66\x91\x2e\x6b\x22\x2f\x6d\x08\x27\xb5\x8e\x1d\xb0\xff\xe9\x4f\xcc\x07\x35\x2c\x91\x85\xc7\x8a\xa3\xf5\x0d\x03\xb6\x2a\xda\xd5\x98\xc7\x09\x11\xa0\xf2\x69\x5d\xbf\xa0\xd5\x35\xd9\x1c\x63\xf6\x63\xfa\x48\x1e\x08\x1f\x20\x2c\xd1\x22\x55\x37\x39\x23\x7e\x91\x01\x1c\xe6\x99\x6a\x97\x36\x46\xe7\x78\x41\xe2\x11\xdc\x07\x1e\x76\xcb\x58\x3e\xc6\xab\x58\x95\xca\x03\xe9\x29\x7a\x19\xac\x0b\x7c\xcc\x70\x24\xe9\x03\xd1\xb1\x1d\x00\x0c\x52\x3b\x30\xd8\xff\xbf\x73\x3e\xcf\xdf\x1d\xa1\x1b\x75\x71\x51\x11\xf6\xd7\x83\x04\xd7\xf5\x6d\xcc\x66\x3c\xcd\x96\x4e\x33\x4d\x27\xa0\x12\x6b\xdf\x67\x85\xcf\x13\x3a\x63\x1d\x9e\x11\x8e\xd5\xb5\xd8\xbc\x71\xc2\x92\x03\xfb\xe5\x0a\x08\xf1\x75\xfe\x06\x52\xb7\x85\x0b\x2b\x19\xe8\x00\x6c\xa3\xfa\xdc\xff\xdd\xf9\x4e\x4b\xdc\x6c\x02\x94\x32\x67\xb2\x06\x60\x8b\x0d\x45\x85\x67\xe6\x5b\x93\xb8\x1a\x25\x94\xbf\x56\x73\x9d\x6a\xc1\x41\xaa\xc9\x83\x6b\xd6\xbe\x7d\xd6\x59\xa1\x97\x97\x19\x5f\xa6\x00\xb3\x4d\x56\x16\x9a\x64\xa0\xc3\xcb\x74\x99\x69\xe0\x35\xf5\x83\x4c\x95\x1d\xa2\x42\x7e\xc6\x32\x9a\x2b\x7d\x20\x87\xd0\xee\x22\x1b\x2e\x10\xa4\x4f\x6b\x7f\x54\x8c\xe0\xd8\x7f\x7b\x8d\x6d\xdd\xda\xb4\xd4\x09\x75\x16\x3f\x00\xff\x4a\x92\xbc\xfc\x77\x05\x9f\x5d\xf5\x5c\x07\x14\x3a\x3b\x0f\xb4\x6e\xa1\x1f\x9e\x28\x05\x9a\x32\x94\xff\x10\x19\x0f\x72\xe5\x91\xce\x38\xdd\x48\x0d\x34\x1e\x08\xf2\x40\x98\xcc\x0d\x8a\x05\x5e\x22\xaa\xe4\xb6\xba\x79\xf8\x8c\x0c\xd0\xa3\xad\x33\x8c\x30\xca\x38\xb5\x27\x0c\xac\x80\x86\xe5\x0b\xd5\xf0\xf7\x3a\x22\xa0\x31\x51\x11\xf6\xd8\xa3\x0c\xbb\x7b\x24\x33\xec\xe2\xb6\xb0\xc2\x09\x65\xf7\xea\x65\x3a\xab\xdd\x7a\x7b\xb9\x92\x6f\x29\xb7\xa0\xd2\x60\x4d\xd7\xee\xbc\x2d\x56\xb9\x9e\xc0\x71\xdd\x51\xa0\x6c\xe6\xc1\xe1\xab\x8d\xa0\x36\xd9\xe9\x95\x4f\xb6\x4b\xae\xaf\x7c\xd4\xea\x13\x9b\x3c\xdb\x80\x20\xde\x98\xda\x33\xc0\x4d\x18\x9c\x80\xd1\x48\xfc\x44\x05\xa3\x4a\x43\x9a\x11\xd5\x55\x0b\x8c\x86\xf2\x1f\xee\x2f\xcd\x09\xa4\xa7\xe6\x3f\x50\xca\xc7\x4c\x7f\x3e\x70\xf4\x01\xea\x07\x79\xa6\x4f\x4d\x6e\xac\xdb\x4f\x96\x0b\x74\x33\xbd\xf2\x66\x78\xfd\xd3\xdd\xd5\xe8\xfa\xe2\xf6\xea\x38\x50\x2e\x8f\xcf\x6e\xaf\x6f\x46\x57\x95\xdf\x8d\xfe\x7b\x74\x7c\x7b\x73\x7a\x71\x7e\xf7\xd7\xdb\xd1\x6d\xcd\x57\xb6\x81\xb3\xe1\x0f\xa3\xb3\x46\x25\xb5\xba\x0f\x75\xec\xaa\xb8\x50\xce\x30\x27\x31\xb0\x97\xea\x64\x65\x96\x88\xfe\x13\x8c\xd7\x4b\x3d\xaf\x87\x03\xfb\x97\xe6\xcb\x3c\x54\x47\xd9\xba\x2f\xf2\x53\x30\x66\xce\xbf\xe4\xe4\xb6\xc4\x33\x61\xeb\x6e\x04\xbd\xfd\x80\x86\x4b\x53\x5b\x23\x0d\x5f\x2a\xb1\xb8\xcf\x7b\x6a\xdd\x8a\xb0\xb6\xc0\x26\x2e\x4c\xa5\x89\xc2\x34\x87\x0d\x9a\x31\x41\x17\x8c\x7b\x25\x46\x39\x93\x6d\x89\xf2\xd4\x34\x5a\x58\x1f\x28\xcd\xa3\x27\x47\xe8\x7e\x41\xd6\xcc\x8a\xe1\x05\x8d\xf4\x07\x85\xc4\x11\x93\x52\xb2\x20\x4c\x16\x5b\x0c\x96\x35\x6c\x79\x4e\xd0\x4f\x7f\xc9\x3b\x05\x46\xb1\x31\x32\xb3\x12\x03\x96\xad\x12\x9f\x55\x11\x9a\x54\xc8\xa6\xad\x52\x75\xc4\xfd\x9d\xab\xa7\xb9\x91\xb0\xbc\xc1\xe2\xbe\x82\x74\xb7\x52\xfe\x98\xf1\x6f\xf9\xc6\x7a\xa6\xdf\x6a\xff\x99\x9d\xd7\x3b\x58\xc0\xcd\xde\x59\x9b\x27\xb5\xe6\x95\x76\xc4\x49\x81\x77\xa6\xf5\xfb\x02\xde\x9a\xf6\x52\x19\x52\x5d\x69\x04\x69\xc5\x98\x32\x43\x68\x40\x1c\x93\x8e\xa5\x76\xd4\x7c\xfd\x26\xfb\x07\x4f\xd2\x87\x20\xbd\x6c\xa1\xf9\xef\x2b\x35\x31\xcf\xde\xdb\x66\x07\x86\xc5\x5c\x5b\x6b\x63\x76\xf1\xa1\x7c\x41\xe5\x1a\xb4\xb5\xe7\x8a\x83\x59\x07\xa1\xda\xc0\x0f\xeb\xb5\xee\x1c\xb1\x6d\x54\xb0\x13\x58\xd3\x09\x78\xd9\x73\x86\x45\x4d\xe4\x0b\x86\x9a\x6f\x74\x0f\xf2\x80\xb3\x56\xcd\xdc\xa5\xf9\xde\xde\xa3\xe8\xbd\xf6\x04\xbc\xf7\xee\x89\xd5\x52\x5d\x10\x8b\x89\x01\xe5\x36\x2f\xb4\x37\x37\x7b\xc9\x2c\x54\x59\x5f\x74\x73\xd5\xad\x6d\x17\x9e\xa1\x10\x68\xe5\x20\x9e\x9a\x56\x48\x97\xfe\x70\x7b\x43\x0d\xd7\xce\xf6\xef\xed\x88\x7e\xaf\xb7\x54\x56\x83\xf0\xf7\x5a\x73\xb9\x77\xe8\x10\x38\xc9\x0d\x9c\xd8\x10\x1f\x08\x74\x88\x12\x7a\x4f\xd0\xb7\x10\xd9\x1a\x5e\x9e\x7e\x3b\x40\xdf\xfa\xe8\xb9\x6f\x3b\x88\xbf\x9c\x32\xcc\xf4\xdb\xf0\x0b\x81\x5a\x14\x00\x33\x3e\x02\x86\xc6\xeb\xe6\xd0\xa3\x1a\x07\xf4\xbe\x24\x5c\xb3\xe0\x40\x34\xde\x45\x7c\x8d\xb7\x6e\x9d\x6c\xcc\x8f\xcc\xd6\x4c\x2d\xaa\xbd\x32\xb6\x77\xc7\x51\xc8\x66\x41\xb8\x06\x2d\x3c\x74\x4c\xd8\x39\xb7\x8d\xa8\xd9\xbc\x7d\x24\xbe\x6a\x54\x81\x35\x65\x27\xb3\x72\x51\xd6\x6d\xbc\xd7\xb6\xdd\x5a\xc4\xbc\x87\x55\x33\x62\x30\x0b\x35\x9a\x58\xbf\xcb\x9e\x76\x97\xed\x02\xee\x11\x76\xae\xfb\x6d\x76\xac\x15\x22\xaf\x19\x9b\x52\xa7\x34\x5c\x2b\xa7\x43\x0a\xa0\xe6\x54\xf0\xc6\x21\xef\x2c\xe2\xb0\x0b\xd5\xb7\x0e\x8a\xe0\xab\x77\x66\xe0\x8e\x4a\x43\xa6\x06\x83\xfa\x64\x8a\x73\x8d\xe7\xb2\x44\x37\xd0\xb6\x4b\x3b\xd2\xb9\xd7\x80\x1f\x0c\xf8\xc9\x84\x2c\x4c\xdd\x5c\x46\x1e\xf5\x69\xdb\x8f\xe0\x47\xc5\x3e\x7c\xe1\xe8\x47\xc0\xd7\xb3\x33\x5a\xfd\xbb\xf5\xee\xf1\x6a\xcb\x7b\x77\x54\xf7\x85\xc2\xbc\xbe\x09\x66\x75\xe5\xf3\x7a\xfa\xb2\x6e\x8c\xe2\xc1\x24\xae\x67\x13\x87\x9a\x23\x58\xd4\x50\x89\x43\x4e\x7f\xbc\x2f\x84\xe2\x65\x54\x7c\xd8\xb9\x17\x66\x13\x2f\x74\x66\x7f\x28\xc5\xd7\xce\xdb\xfe\xa6\x3d\x54\x74\xb4\x05\x95\xb8\x43\xe5\x01\x73\x58\x37\x91\x0f\x99\x10\x34\x4e\x40\x22\x59\xc7\xb5\x3a\x54\x6d\xfc\x2d\x45\x38\x50\xe0\x32\x2b\x8c\xc5\x40\xe5\xc1\x4d\x1c\x56\x64\xa9\x17\x8a\xa3\x07\xc2\xe4\x4e\xf4\x05\x68\xa2\x02\xb5\xd8\xce\xe8\xd7\x5c\x38\xa7\x27\xb9\x98\x70\xec\x91\x5e\xb4\x40\x72\x1c\x01\x69\x96\xae\x07\x65\xaa\x40\xd5\x39\x3a\xd5\xd0\xda\x2d\x11\xfc\xb4\x3c\x2f\x6b\xa0\x09\x66\xb6\x73\xf2\xaf\x3c\xec\x99\x46\x50\x66\xb4\x53\x22\x4d\x70\x33\xb3\x18\x12\xde\x3d\x0a\x77\x5d\x05\xbc\xb8\xe6\xfa\x9d\x73\x2c\x8a\xaf\x5c\xbb\xe4\x1b\xe0\xef\x83\x66\x3e\x11\x79\x82\x25\xde\x09\xaf\x6e\x07\x38\x24\x74\xe4\x96\x27\x6b\xab\xd4\x5c\x6b\xe2\xb1\x8c\x27\xb9\x61\x83\x91\xba\xd0\x8e\xbc\x28\x38\xa0\x94\x83\x19\xd5\x9d\xa9\x91\x03\xdd\xeb\xea\x3c\x65\x57\x4d\x6f\x36\x42\xd3\x0b\xc9\xb3\x08\x52\x93\xd5\x89\xab\x5e\x59\xc3\xc9\x00\xb2\xd3\x38\xeb\x45\x90\x69\x63\x53\xf2\x20\xb8\x5e\x79\xaf\xd7\xef\x9f\x6d\x7d\x00\x21\x87\xe3\x93\xb9\x02\x02\xe9\x1d\x0c\xa0\x4f\xe8\xd8\xd4\xc0\x37\x34\x1d\x6e\x07\x42\xbe\x95\xe4\x94\x40\x22\x70\xe2\xb2\x07\x42\x49\x67\x7c\x3e\x6b\x37\x96\xba\x56\x4f\x5a\x9a\xfd\x9e\x55\x9a\x7b\x1d\xf2\xbc\x02\x2f\xdc\xe4\x51\x5d\x62\x38\x2e\x8d\xa5\x1d\x76\x55\x49\x10\x54\xe7\x27\xdb\xdb\x0d\xf5\x82\xfc\xbd\xdd\xce\xab\xaa\xbb\xaa\xd1\x35\x4a\x60\x64\x82\x70\x9d\x55\xee\x90\xc0\x15\xd4\x5a\xb5\x41\x90\xca\xc2\x89\x4d\x41\xc9\x52\x01\xc7\x6a\x4d\x43\x7b\x56\xd0\x77\x0f\x38\xa1\x4a\xe3\x3b\xb2\x89\x1f\xef\xd0\x7f\x02\x55\xd6\x7f\xd4\x31\xc7\xce\x08\xbf\x8b\xb3\x20\xa2\xb8\xae\x53\x97\xea\xa1\x93\x4c\xae\xaa\x13\x68\x02\x83\x27\xc1\xd1\x7d\x97\xa4\x22\xf5\xfb\x9a\x66\xd7\x9f\x40\xcf\xc5\x16\x5e\x04\x35\x29\x3b\xa4\x90\xb2\x63\x02\x30\xfe\xfb\x75\xb0\x84\x01\x93\x9a\xe7\x2d\x30\x71\xa3\xa1\xea\xf3\x11\xfa\xa8\xd9\x30\xe0\x52\xd3\xaf\x88\xd2\x2c\x89\xc7\x8c\x7c\x55\xe6\x7e\x00\x9d\xa8\x60\x30\x30\x10\x1e\xf3\xa6\x6a\x49\x50\x20\xab\xdb\xea\x86\x79\xf1\xfc\xaa\xf2\x9a\x96\x87\x5c\xbd\xc9\xb6\xd2\xe5\xf7\xa4\x7c\xe9\xb1\x2d\xd5\x3f\x40\x6e\x90\x85\x6d\x91\x90\x07\xc2\xf1\x8c\x98\xf2\xa6\x1e\x5b\x05\xde\xa0\x9a\xe9\x65\x29\xfa\xfb\xba\x4b\xf2\x96\x82\xca\x4f\xbb\x8d\x4d\x41\xe3\xb5\x7a\x51\x7b\xa7\x7a\x7b\x99\x76\x93\x2e\x0f\x35\x43\x3a\x73\x75\x86\xad\xd2\x13\x25\x58\x08\x3a\x5d\x79\x05\x84\xad\x36\xa1\xe3\xba\x8e\x14\x25\x24\xcf\xa9\xd4\x35\x02\x30\xda\x6e\x90\x4e\xdb\x83\x0e\x8c\xfd\x6c\x23\xe0\x34\xf6\x51\xfc\xc0\x0a\x59\x42\x3d\xb6\x24\xae\xdc\x16\x8b\x60\x7a\x66\x22\xf2\xbb\xeb\x98\x05\xf9\x6d\x06\x99\x6a\x44\xd1\xae\x95\x0f\xc5\xb5\x3f\x21\x09\xd9\x93\xba\x56\xe5\x8d\xd0\x38\xd7\x79\x7e\xe7\xb3\xad\xff\x76\xfd\xd9\x20\x2e\x55\x83\xbb\xdd\xc1\x7a\xbf\x70\x74\xa3\xa6\x77\x9f\x48\x1b\xef\xce\xda\xbd\xb8\xd1\xb9\xaa\x13\x8e\x5b\x4c\xf6\xce\x42\x9a\x4f\x3c\xa0\xba\xb5\xbe\x26\x52\x58\xc5\xd5\xdb\xe9\xda\x67\x62\xce\xe9\xa1\x85\x60\xe5\x80\xa6\x0e\x0b\xbe\x27\xc1\x36\xd3\xbb\x2b\xc3\x49\xf2\x74\xe2\x70\xfd\x72\x75\xd9\x6f\x79\x7f\x37\xf0\x88\x9a\x36\x76\x71\xfb\x3f\xad\x6a\x56\x9a\x98\x96\xc6\xc5\x75\x99\xee\xa2\x7b\xa2\x18\x4f\xd9\x1d\xf9\xaa\x6c\x4e\xb1\x29\x8e\xe2\x56\x10\x81\x86\x5f\xae\x91\x58\x31\x89\xbf\x7e\x40\xe3\x83\xcf\x9a\xd3\x13\xfd\x98\x66\x5c\xa0\x13\xbc\x3a\x4c\xa7\x87\x8b\x94\xc9\x39\xfa\x0c\xff\x6b\x3e\x7a\x24\xe4\x1e\xfd\x8d\x60\x3e\x3e\x18\x33\x48\x56\x35\xf5\xd3\x1c\xef\xc6\x1c\x43\x58\x4d\x18\xba\xd0\x3f\xfc\xd9\xf2\x85\xaa\xd7\x7c\xff\xfe\x0f\x7f\x46\xbf\x83\xff\xf7\xff\xa2\xdf\x8d\x0f\x6a\xee\xa5\x6e\x39\x90\x39\xa1\x6b\x65\x6b\xf7\x34\xba\x4f\xa7\xd3\x3b\x49\x17\x44\x93\x05\xdc\x61\x5e\x5b\x61\xa9\x23\x22\x94\x1a\x0e\x03\xcd\xc2\x96\xa7\x69\x99\x97\xea\xf0\xa3\x55\xc2\x5c\x61\x6e\x9d\x35\xc5\xc2\xdc\x7d\x2a\xe0\x29\x12\xa3\x74\x3a\xed\xe2\x03\xb4\x59\x21\x65\x86\xa4\x3c\x90\xed\x33\x72\x38\xa3\xce\x77\x45\xa4\xeb\x18\x4f\xcb\x3e\x92\x37\x66\x15\xc3\x00\x9f\xd4\x22\xbe\x4e\xf9\x56\x22\xfc\x9e\x94\xfc\x65\x9d\x1c\xe0\x96\x5c\xc0\x27\x76\x81\x08\x59\xca\x1d\xac\x5a\x07\x34\x4c\x26\xff\x98\xdd\x5c\x9c\x5c\x7c\x77\x8f\x25\x4f\x67\x98\xbd\xfb\x80\x86\x71\x6c\x8a\x6c\x20\xe3\xf4\x53\x9b\x67\x4e\x38\x39\x42\x3e\x63\x3e\x53\x13\x57\xe9\xd1\xf6\xf5\x61\xca\x49\x54\x65\xb8\x56\x1f\x76\x35\x7d\x27\xee\x91\x1a\xe8\x51\xc0\xa0\xe0\x5e\x90\x67\x3b\xc3\x58\xef\xc9\xca\x14\xd5\x2b\x8e\x77\x93\xba\x21\xd7\x4b\x12\x29\xeb\x57\x17\x1a\xe2\x31\x81\xe9\xd1\xa5\x9a\xa9\x90\x36\xf8\x5a\x79\xa8\xc2\xe2\x49\xdb\xa0\x38\x8b\x99\x28\x5b\xec\x14\x5d\x6b\x2b\x97\x0d\x36\x9b\xa9\x50\xc4\x8d\x63\x25\x36\x36\x84\x23\x9a\x3a\x2e\x7e\xf9\x89\x4c\x10\x7e\x38\xc5\x91\x9a\xbd\x42\x39\x28\x5f\x54\x55\xcd\xe3\x0d\x16\xf7\xbb\x75\x34\x6d\xcd\x09\x40\xe3\x3c\x87\x56\xef\xc6\x72\xed\x51\x73\x89\x48\x2c\xee\xeb\x20\x28\x9d\x49\x77\xd5\x54\x58\x74\x56\x53\xff\x4c\xcb\x5e\xaa\x90\x29\x8b\x00\x8a\xa9\x87\xa2\x5f\xe0\xa5\x2e\xcd\x00\x17\x0c\x4d\x48\xec\x13\x58\x54\xf5\x7f\xdd\x36\xd0\x50\x7c\xcf\x4f\xc4\x21\xfd\x40\xa9\xcd\x31\xc4\xe6\x30\x5b\xe9\x83\xa4\x2e\x2c\x2c\xee\x85\x23\xa6\x40\x62\x81\x93\x64\x80\x38\xc9\xa0\xb6\xc6\x00\x09\x92\x4c\x0f\x6d\xf6\x53\x8c\x92\x74\x46\x23\x9c\xa0\x49\x92\x46\xf7\x62\xcc\xd4\x0d\xc2\x66\xfa\xe2\x5b\xf2\x34\x22\x42\x78\x57\x6e\x1e\x7e\x5d\xf2\x34\xce\x22\xcd\x9d\xab\xb9\xeb\xa9\x90\x34\x2a\x10\xa6\x2a\x89\x08\xa5\xa4\x22\x0c\x06\x06\x50\x62\x2c\x74\x6d\x48\x4e\x09\x38\xc1\x64\x66\xcb\x9b\x40\x76\x07\x4e\xe8\x3f\x75\x6d\x32\xfc\x40\x53\x5e\xb7\x7b\x77\x00\xa8\xb3\xcb\x73\x27\xc3\xd3\xb0\x66\x3f\x1f\x9b\xc7\xe0\x0c\x35\xed\x98\xab\x70\x3b\xbb\xdd\xe0\xb6\xb9\x4b\xc2\xb0\x9b\x22\xe7\x97\xb5\x89\x2e\xfa\x27\x36\xac\xba\x67\xb8\x2b\xe8\x72\x0d\xda\x6a\xdd\x9e\x3e\xd6\x94\xad\x26\xb7\xd4\x73\xc0\x41\xeb\x96\xd4\xd2\x64\xc9\xab\x2b\xe2\x41\x6d\x12\x3b\x3d\x6a\xee\xd5\x35\x32\x70\x3c\xaa\x58\xa0\x65\x92\xcd\x28\xcb\x4b\xe4\x29\x79\x38\x66\x40\xa8\xa2\x5e\x52\x20\xe5\x2c\xef\xa8\x3d\xe6\x4e\xdd\x8d\x70\xec\x48\xa1\x6a\x27\xb9\xcb\x26\x0f\xf7\xad\x2d\x25\xb7\x31\x04\x9f\x57\x85\xeb\x4d\xcd\x68\xf5\xed\x03\xcd\x89\x81\xbc\x17\xd5\xae\xed\xc6\x5e\x8a\x42\xaf\x4a\x38\x16\x3a\xd5\x9b\x0c\xfa\x06\xa1\x4a\x53\x07\xa4\xae\x47\x2f\x82\x0c\x6e\x5a\xc8\x4b\x2c\x75\x2d\x07\xb2\x48\xa5\xa6\xc3\xd0\xcc\x14\x86\xb0\xc2\x10\x5e\x4c\x92\x74\x02\xf7\x0a\x90\x56\xc0\xb8\x03\x06\x30\x33\x6e\x12\xa3\xef\xbc\x6b\xc2\xc1\x75\xde\xd5\x45\xdc\x77\x07\x4f\x2e\x66\xbc\xd5\x82\x94\xc3\x2c\xf6\x23\x74\x99\xbb\x9b\x8a\xa3\x9a\x62\x25\xb9\xeb\xea\xba\x76\x83\x34\x07\xab\xbf\x03\x48\x73\x61\x18\x35\x04\x17\xe9\x2e\x4a\x4f\x36\x0f\xea\x2c\x6d\x6f\x47\x6a\x00\xa3\xd6\x3f\x82\xc5\xb1\xdb\x6c\x55\xb5\x44\xfb\x05\xd7\x2e\xb0\x20\xbc\x2c\x5c\xbb\xd0\x99\x7d\x86\x6b\x17\xba\xba\xbf\x70\xed\x8a\x8e\xb6\x80\x6b\x6b\x77\xfb\x9d\xda\xd4\xed\x84\xc2\x92\xa7\x32\x9d\x64\xd3\x6b\xb8\x4d\xda\x30\x32\x6a\xe1\x6c\xf5\x1c\x93\x25\x03\xbd\xd5\x3a\x50\x37\x45\xcc\x47\x75\x17\x86\xdc\x12\xd5\x1d\x88\xb4\x1e\xd5\xed\x50\xdd\xe5\x79\xd9\x47\x54\x77\x61\xcd\xdb\xa1\xba\xab\x96\x7c\x83\x18\x46\xd0\xcc\x9b\x41\x75\x17\x66\x74\x9f\x51\xdd\x85\xae\xee\x0e\xd5\x5d\xbd\xb2\xdd\x50\xdd\x95\xd7\x7f\xfd\xfe\xd9\x16\x73\x07\xa4\x3f\xcf\x8c\xea\x0e\x06\xd0\xa3\xba\xb7\xa4\xe9\x0f\xb7\xa0\xe9\x01\xb0\xce\x1a\xa0\x70\x51\xd6\x35\xe0\xba\x41\xa5\xdd\xc1\x8e\x7a\xda\xd8\x2a\x78\xa1\xda\x6a\xdd\xc3\x60\x1e\x84\xe1\x41\x54\xd7\x9f\xc5\xda\x7a\xa5\x2c\x7b\x7a\x8a\x6d\x89\x03\x0a\x93\xec\xbc\x57\xb0\x70\x75\x5b\xae\x82\xbd\x6b\x8b\x0d\x68\x28\xf3\x36\xe5\x2d\xab\xaf\x6e\xa7\x09\xe9\x76\xd3\xec\x37\xfe\x7f\x6b\x27\x64\xdb\xe2\x06\xd1\x32\xdb\x04\x1d\x3b\xdb\xec\xb1\x05\x59\xa4\x7c\x5d\xf8\xb1\xc6\x9c\x4d\x39\x9e\xad\x43\xe4\xb6\x9d\xbd\x6d\x67\xcd\x72\x08\x76\xf3\x6f\xdc\xd8\xa7\x1a\x0d\x2e\x5b\xfd\xc1\xf7\x80\x83\x4e\x5a\x19\x63\x71\x21\xae\x0d\xa3\x28\x35\x89\x07\xe5\x17\x82\x7b\x55\x10\x7e\xe8\x65\x12\x84\x7e\xcd\x72\x0f\x82\x79\xb7\x0a\xda\x16\xd3\x9e\xf1\xda\x18\x7f\x0b\x19\x3b\xd4\xec\xb3\x4a\xfb\xf3\x09\x13\x8a\x3b\x6d\xb2\xaa\xc0\xa3\xb5\x33\xa9\x75\x4d\xde\x2e\x8e\x61\xfa\x4f\xb7\xd0\x53\x9a\x10\x84\xa3\x88\x08\x28\xea\x8c\x0c\x06\x44\xb3\xec\x65\x3c\xd9\x66\x55\x29\x9b\xc1\xb8\x95\x32\xe9\x55\x01\x70\x9b\x47\xdf\x19\x73\x9e\x66\xb3\xb9\xb5\xb2\x6c\xa1\xb8\xaa\xb5\xfc\x52\x66\x95\x7d\x65\x01\x81\x42\xe9\x98\xe2\x26\xe8\x1e\x31\xb5\x53\xf2\xcc\x51\xd3\xaa\x71\x74\xd8\x1d\x01\x76\x28\x3f\xfe\xd6\x8f\xad\xb5\x12\xc8\x14\x1a\xb3\x61\x80\x32\xb2\x75\xc6\x26\xab\x1c\xad\xa0\xaf\x76\x7f\x93\x41\x65\x54\x63\xbd\x40\x29\x12\xf5\x17\xa8\x21\xf0\x90\x89\xa7\xda\x98\x29\x00\x2d\x48\x7c\x88\xa3\x55\x94\xd0\xc8\x53\x49\x67\x1c\x2f\xe7\x4d\x3b\xb1\x87\xfd\xbf\x14\xec\xbf\x25\xc3\x74\x23\x54\xc4\xe7\x68\x7e\xd5\xe9\x08\xe5\xed\xd8\x67\x22\x74\xd8\x92\xdb\xf5\x67\xe7\x3b\xf1\x35\x25\x46\xd4\xef\xbc\x17\x06\xa1\x97\x3b\xf6\x92\xe9\x10\x15\xf7\xc5\x66\xb3\xfb\xb2\x49\x10\xad\x86\x51\x0b\x35\x6c\x91\xff\x10\x14\x04\x72\xf7\xfe\x9a\x6c\x88\xfa\x59\xda\x93\x3d\xb8\x4b\x7c\x54\x9d\xb4\x59\x8f\x91\xea\xa2\x2a\x76\x83\x4b\xb9\x85\x7a\x5d\x90\x29\xd7\xed\x0d\x61\x53\x43\x8f\xb8\x7c\x9e\x26\x50\x92\x38\x98\x2d\xf7\x02\x87\xbc\x70\x13\x64\x17\x03\xea\x4f\x82\xea\x9a\x93\x4d\x34\x81\xa3\xdc\x22\xbe\x0d\x80\xd4\x1a\x7b\xa8\x23\x48\xca\x9f\xd4\xed\x80\x52\x5b\xda\x37\xdd\xc0\x52\x4d\xf5\x44\x8b\xeb\xbd\x41\x58\xaf\x44\xec\xd1\x07\x85\x5d\x50\xb8\x7a\x6e\xf6\x31\x30\x5c\xae\xd0\xd7\x32\x38\x5c\xb7\xfc\xbb\xd8\x49\x3b\x0c\x12\xbf\x70\xe8\xb5\x31\xea\xea\x6d\xb0\x97\x8d\x65\x37\x85\xb1\xd7\x6f\xb3\xca\xb8\x5c\xfd\x9a\x76\x0a\x0f\xaf\xc9\x71\xb0\x6f\xd9\x36\x86\xe7\x70\xf7\x4f\x1a\xc7\x73\x7e\x46\xef\x89\x96\xb1\xbc\x3c\x31\xa0\x8f\xe7\x3d\x69\x3c\xaf\x62\xa2\xd7\xc7\xf4\x02\x05\xe1\x59\x03\x31\xf6\xcd\xcf\x11\x8c\x59\xa7\x54\x65\x93\xbb\x27\x3f\x47\x95\x63\x6e\x7b\x9c\xbe\xb8\xb5\xd5\x97\x1f\x57\x9b\x66\x42\x62\x5d\xc1\x5d\xa6\x28\x85\xc4\xab\x7c\x0b\x30\xa2\x37\x6b\x5e\x85\x1b\x43\x61\x13\x1a\x6b\x40\xe6\x12\x03\xd7\x8b\xbb\x43\x35\x4a\x6f\xcc\x60\x7d\x93\x84\x70\xab\xb3\x73\xf4\x9d\xa0\x50\x1d\x3d\xd7\xe3\x39\x8a\x53\x22\xd8\xb7\x52\xd7\xd6\xc0\x6c\x85\xee\x59\xfa\x98\x90\x78\x06\x2b\x54\xec\xcc\x21\xa2\x64\x80\xa8\x74\x8f\x71\x82\xa3\xb9\x12\x97\x63\xd5\x77\x70\x6b\xeb\xcb\x9e\x98\x67\xb9\xc9\x3c\xf7\x4c\x06\xf1\xee\x08\xa1\x53\x86\xa6\x58\x19\xc5\x22\x9b\xe4\xed\xc7\x29\x14\xac\x57\xb7\xbf\x3f\xf0\xbc\x91\x27\x0b\xc4\x55\x06\xde\xda\x68\xaf\x5b\x14\x4e\xfe\x72\x71\xf5\xd3\xc7\xb3\x8b\x2f\x77\xe5\xfa\xc9\xf9\x57\x57\xc7\x3f\x9e\xfe\x3c\x3a\xb1\xe3\xae\xac\x52\x57\xd7\x50\x15\xa6\x57\x73\x9b\x95\xcc\x5b\x2a\x72\x26\xa1\x94\x49\x9e\x26\x88\x4a\x81\x94\x2e\x3f\xa1\x09\x95\x2b\xeb\x12\xb8\x3d\xb5\xd5\xe6\x0a\x6f\xfd\x80\xf2\x82\xcd\x03\x38\xc0\xc5\x4c\xb2\xbc\xe6\x8e\xa9\x7c\xcc\x62\x5d\x19\x1d\xc5\xe4\x81\x24\xe9\x32\x2f\xea\x56\x1a\xff\x07\x34\xe4\xd1\x1c\xb2\x73\xc2\x66\x59\x8a\xd4\x79\x20\x5c\xf7\x55\x57\x43\x36\x1d\x6d\x58\xb6\xd7\x53\xb6\x38\xf7\x40\x3c\x71\xcd\xe2\x70\x47\x37\xdb\x09\x4d\x15\x8b\x37\x33\x30\x9b\x18\xfb\xbd\x78\x5a\x47\xba\xfe\xe2\x72\xbf\x9c\xd7\x4c\xad\xff\x30\xa1\x78\xab\x68\xda\x03\xde\x26\x7f\xf8\x73\x26\xa4\x2e\x1c\x09\xe5\xc3\x8d\x08\x30\x99\x10\x8e\x2b\x01\xa8\xc5\x34\xef\x00\x4b\xe3\xda\x12\xfb\x85\xa1\x74\xed\x4b\x1e\xfa\x34\x8c\x66\xc6\x8f\x02\xed\x6a\x19\x1d\xa7\x8f\x4c\x48\x4e\xf0\x02\x3a\x22\x4c\xfd\xdb\xa9\x0e\x72\xea\xb9\xa6\x5c\xab\xed\x5d\xf6\xda\x19\x65\xf7\xea\x4a\xc8\xd9\x21\x52\x48\xbd\x57\x6f\xae\x58\xb4\x1f\x28\xc3\x7c\xab\x12\x7b\xba\x7c\xc5\x46\xfe\xbf\xc9\xaa\x8e\x3e\x43\xe2\x75\x5c\x19\xed\x67\x64\x88\x04\x5d\x28\x65\x5a\xbd\x0e\x81\x7e\xa4\xb9\x28\x31\x92\x78\xa6\xe6\x67\x4e\x92\xa5\xc7\x2c\xb7\xc4\x5c\xba\x3b\xc4\xa4\x8c\x47\xe9\x62\x91\x31\xc8\xf2\x37\x0e\x84\x47\x93\x1b\x6c\x8e\x45\xde\xf8\xd1\x98\x9d\xca\x6f\x85\xba\x94\x53\x36\x4b\x56\x08\xc7\x0f\x54\xe4\x4c\x1d\xea\xaa\xc8\x16\x84\x9b\x57\x50\xa1\xeb\xa8\xe8\xba\xf4\x08\xdb\xbd\xa2\xfa\xa6\xee\x10\x4b\x73\x6a\x14\xca\x19\x9a\x90\xa9\xd2\xd4\x97\x98\x0b\xeb\xb8\xac\x70\x3a\x9a\xc5\x8d\xd5\x5c\xbd\xd8\x99\xfc\xd9\x3f\x76\x68\x91\x9f\x50\x6c\x0c\xe1\xf7\xc5\xf3\x69\x66\xbd\xe1\x6c\x4e\x4a\x83\x42\xcd\xf7\x92\x99\x85\x93\x52\x8d\x96\xa2\xdc\xb7\xa5\x62\x04\x1c\x1a\xf5\x1e\x6b\x05\xe9\xce\x75\x72\x31\x17\x06\x68\x7a\xad\xfd\x86\xfe\xd9\x34\xe5\x8a\x95\xec\xa7\x91\x31\xb8\x72\x32\x6e\xfd\x74\xfd\xd2\xb6\x65\x49\xae\x5b\x5e\x11\xe1\xa4\xbc\xc2\xf5\x73\x79\xad\x7f\xdf\x2c\xfb\xcc\x71\xd3\x6d\x37\x62\xa7\xa2\x34\x49\xba\x90\x71\x14\x46\x7e\x9c\x3f\xde\xdc\xa3\xfc\x3d\x6a\x01\xec\x5a\xc0\xa9\xd1\x04\x22\x38\x31\xe6\x88\x90\x66\x95\xfc\x1f\x69\x19\xba\x42\x2c\x5b\x4c\x08\x1f\xb3\x74\x0a\x1c\x2d\x49\x9d\xaf\x69\xc9\xd3\x05\xed\x92\xcd\x78\x01\xcb\x7c\x65\x75\x82\x35\x2e\x70\x1b\x47\x56\xa7\xc8\x6c\x2f\xf3\x46\x5d\x9a\x93\x69\xe3\xa4\xe1\x0c\x2d\xf0\x72\xa3\x09\x2f\x95\xa7\x2f\xcd\xf4\x42\xfb\xbb\xcc\xec\x01\x85\x02\x01\xe6\x13\x98\xe4\x47\xbc\xca\x11\x66\x5d\x8e\xd3\xb5\x36\x60\x88\xc8\xcb\x7b\x9b\x5d\xe6\x9d\x18\xa7\x53\xe9\xf5\xd2\xb3\xd0\xe6\x04\x1d\x57\x6d\xc3\xce\x67\xc9\x8e\xf9\x29\x2d\x73\xff\xd8\xfb\x46\x79\x97\xdb\x30\x3c\x0c\x5e\x8b\x08\xba\xd3\x3c\x55\x9f\x83\x9d\xb3\xf3\x39\x2a\xb4\x83\xb4\xaa\x6b\x03\x6c\x97\xd5\xad\x3e\xc3\x9c\x99\x6d\xdd\x6a\xb2\xb6\x04\xad\x76\x2b\x4d\x63\xdf\x58\x51\x89\xc6\x3b\xef\x5d\xca\x5d\xad\x37\x66\xa6\x4a\x77\xd1\x6a\x65\x3a\x9d\x26\x29\x8e\x95\xb5\xa4\x01\x2f\x53\x9a\x10\x71\x84\x4e\x2b\x9c\x10\xd2\xab\x16\xa7\x73\xe2\x21\x7c\x6a\xf5\x9d\x8c\x53\x63\x04\x12\x4e\x9c\x56\x83\xa8\x61\x2a\xcf\xfd\x94\x9c\xa8\x3e\xc3\x06\x06\x4d\x7e\x9e\x3e\xea\x58\x25\xa7\x4a\xca\x68\xf5\x52\x19\x2c\xda\x21\x44\xa5\x76\x60\xc6\x64\x49\x58\xec\x1e\x48\x75\xed\x55\x1c\xe9\xc2\xb8\x79\xaf\x6a\x96\x74\x17\x74\x49\xed\x81\x3d\xf6\xad\x85\x02\xd4\xdf\xf8\xff\x2d\xf6\xf0\x26\x6c\xbd\x73\xef\x9c\x5e\xde\x3d\x22\xf8\x11\x1e\xb5\x1e\x68\x8c\xa6\x9c\x40\x90\x62\xe1\xc0\xc4\x2c\x26\x5c\xc8\x34\x85\x1b\xea\xfa\xe4\xa7\xf7\xb7\xa7\x88\xc8\x08\xc8\x9b\xc7\x2c\x12\x0f\x03\xa5\xd0\xfe\x92\x11\xa9\x3e\xae\x63\xee\x5a\x10\x26\x40\x12\xd0\xb6\x24\xfe\x76\x62\xd4\x7f\x4f\xc2\xe7\x1b\xb6\xbc\x57\x23\x5b\xb3\xdc\xc1\xde\xb5\x6c\x3a\xb0\x4d\x81\xc2\x21\x28\x0e\x1a\xac\x47\x9a\x26\x04\xb3\x51\x15\x65\xe2\x06\x10\x12\xf6\x8f\x8c\x75\x54\x93\x8e\xf3\x87\xbc\x5e\xd4\x68\x61\x8b\x25\xe6\x54\x74\x6b\xde\x3e\x53\xd9\xfa\x3a\x21\x62\xe7\x15\xa3\x89\x9e\x29\x94\xb3\x4b\x22\xc9\x09\x01\x11\xe2\xf6\x93\xb9\xeb\xe1\x96\xf7\x66\xc3\x7b\xe8\x68\xcc\x3e\xdb\xa0\x49\xfe\xa9\xc8\x4b\x62\x2f\x26\xc0\xd4\x94\x81\xcd\x14\xb6\x02\xcd\xc6\x54\xb8\x0f\x80\xc0\x43\x64\x89\xd4\x7c\x6a\x53\xca\x70\xe2\x3a\xaa\xbf\xa9\x92\x12\x1c\xb3\x68\x0e\x45\xfb\xb6\xf1\xb8\x4d\xef\x48\xd2\x45\x77\x3c\x9d\x8e\x12\xa1\xf6\x77\x74\x5f\x73\x3a\x7f\x6f\x79\x18\x3b\x2c\x50\x3e\x18\xd0\xdc\x2c\xab\x94\xb6\x4a\xb4\x73\x3f\xd1\xec\x6c\x04\x81\xf3\xaa\xe8\x72\xd5\x08\x6c\xb5\x8a\x46\xb7\x36\x4e\x2d\x70\xbe\x5a\x5f\xfe\x04\xde\x82\xb0\x1c\x33\x9e\x31\xa0\x61\x70\x41\x37\x8c\x04\xe1\x54\x47\xbf\xa2\x94\x69\x1d\xc0\x38\x4f\x66\x4a\x4c\x28\xcd\x0f\x1c\x53\x29\x03\x8b\x2a\xcd\x84\x92\x21\x78\x41\xa4\xba\xa0\xbe\x03\xa2\x50\x1d\xf6\x1c\xa0\x25\xa7\x0b\x49\x1f\x88\xe3\x4e\xf1\x57\xae\x72\x33\x6f\x13\x12\x5f\x12\x8e\x65\x5b\x2a\x96\xaa\xb7\x5f\xd8\x16\x2a\x0f\x6c\x42\xa6\xf2\xae\xd2\xef\xd2\x60\x62\xa8\x16\x59\x5c\x03\x3d\xa5\xb3\xf9\x0e\x5a\x6c\x7f\xea\xff\x68\xfc\x62\xea\xa8\x7b\x37\x3e\x4f\x53\xa9\xf7\x5b\x2e\x93\x90\x9d\x4d\x50\x17\xcc\x4b\xb5\x77\x5c\x2d\x2a\x85\x55\x55\x67\xf8\x9e\xa5\x8f\xcc\xd9\xd6\x4a\x6d\x18\x61\x60\x14\x74\x82\xc5\x04\x37\xf5\xa9\x5e\x7b\x9e\x03\x8a\xb2\x3d\x49\xfe\xf2\xab\x12\x03\xed\x6a\xb2\x42\x39\x0d\x5d\xf0\x5c\x9b\xeb\x4d\xdb\x9d\xf6\xec\xea\x01\x1b\xe6\x25\x49\x96\xc6\x36\x36\x85\x6b\x1d\x32\x0c\xdc\xab\xea\x55\x47\xe8\x8b\xd5\xe4\x20\x76\x9c\xd3\x27\x4a\xed\x38\x49\xf0\xca\x96\x77\xaf\x9a\xd8\x5d\x64\x05\xed\x3a\xa0\xdb\x3c\xc1\x0e\xee\x5d\x31\xcb\xc1\x85\xca\x98\xb6\xb0\x5a\x02\x4e\xcc\x85\x6d\x1e\xba\x26\xcd\x40\xa6\x8f\x40\xc5\x24\x09\x57\xd7\x52\x26\x08\x4a\x59\xb2\xfa\x7f\xf4\x62\x41\x36\x90\x8b\x77\x19\x02\x20\xe3\xc3\x54\xe7\x07\x7c\x70\x2c\x95\xea\x52\x9c\xd2\x24\x01\xbf\xfe\x11\x1a\x02\x99\x20\xd0\xc4\x29\x45\xde\x46\xfc\xe9\x8c\xa5\xeb\xe2\x92\x35\x9b\x29\xf2\x36\xd3\x75\xfd\x66\x12\xb0\x9b\x5c\x50\x65\x47\x3b\x6a\x07\xb8\x5d\x25\x5b\x70\x39\xf7\xb4\x3d\x5a\xb7\xc3\x65\xfc\x12\x31\xfe\x52\x77\x7d\xd3\xb8\xba\xeb\x9f\x32\xcc\x31\x93\x10\xb9\x36\x94\xd3\xdc\xa0\x43\xd4\x0e\x44\xe4\x2b\x40\x3c\x98\x36\xec\xe0\x23\x7f\x71\xad\xd3\x7d\x46\x1f\x08\x43\x34\x1e\x20\x7a\x44\x8e\x06\x86\xb2\x5b\x64\x93\xfc\x97\x73\x2c\x10\x1e\xb3\x12\xfa\xf4\x08\x0d\x13\x91\x9a\x27\x08\x8b\x12\x20\xef\xf4\x82\xec\x6e\xe7\x1b\x37\xd1\x64\x05\x10\x75\x58\xca\xbc\xf9\xd4\x7c\xe1\x3d\x38\x66\x58\x68\xaf\x74\x02\x27\x3d\xff\xbc\x8a\x9c\x37\x88\x54\x3c\x21\x39\x41\xe9\x1a\x7a\xb2\x45\xd2\x2c\x94\x4d\x0b\x04\xbf\x80\x85\xc9\x51\xc1\x63\xe6\xb6\x33\xfa\x0e\xcb\x84\x60\x21\xd1\x1f\xde\x75\x0a\xce\xd8\xf1\xe5\xc2\xd5\x9c\xde\x1c\xbb\x66\xf1\x32\x75\xdc\xe2\xc0\x5d\x86\x30\x54\x53\x77\x68\xb6\x81\x5a\x66\x99\xa2\x07\x2a\x32\xa0\x43\xf5\xb0\x98\x9a\xd0\x92\x4a\x61\xb9\x99\xb4\x9f\xb2\x46\x8c\x58\x7a\x69\xe3\xbf\x34\xdd\xaa\xd8\x58\x03\x3d\xe5\x54\x2b\xbb\x90\x0e\x91\x23\x57\xe6\x4a\xcb\x35\x82\xd5\xc6\x6d\x3c\xde\xbc\x61\x92\x84\x68\x11\xa5\xe0\xc4\x84\xa9\x01\x03\x99\xeb\x11\xf2\x2b\x0f\x8b\x3c\x56\x18\x22\x1d\xdc\x59\x51\x8a\xf3\x98\x39\x48\xbb\xdf\x76\xa5\xb2\x53\x65\x2e\x3e\xa3\x0e\x5c\xf1\xfa\x33\xcd\xaa\xdb\x42\x17\xae\x2f\x4d\xd0\xe0\x5e\x29\x99\xe8\x0d\xaa\xf1\xae\x5f\xd0\x5e\x53\xae\x36\x77\xe1\x96\x7d\x4c\x2b\xac\xe7\x9a\xc5\xf5\x54\x8b\x2d\x16\x35\x0f\x5a\x3f\x97\x03\x37\xe8\xfa\x69\x0c\x30\xd4\xf5\x42\x30\x87\x75\x5a\xd1\x01\x76\x2b\x8d\x3d\x60\x9a\x17\x80\x07\xfc\xa1\x95\x7b\xe6\x97\x75\x24\x7a\xaf\x7b\xf8\x83\x7c\xfc\x76\x28\x2e\x0a\x5d\x1e\x78\xbd\xae\x37\x8c\xff\x81\x23\xc2\xa2\x95\x7e\x93\x25\x03\xcd\xf5\x38\x50\xf6\xbc\xb4\x6f\x0c\xb6\x79\xa5\x76\x68\x08\xb2\x8f\xd0\x08\xee\x19\xcb\x97\x8d\xa7\xd6\xbf\xe0\xfd\x78\xcc\x94\x61\xa2\xae\x78\xa1\x3b\x6d\xdb\x0f\xb7\x78\xd5\x09\xd0\xf9\x3e\x5b\xb9\x66\x16\xeb\x19\x45\xea\x8c\x09\x9b\x6e\x04\x6d\x00\x3d\x03\x1a\xcd\x3e\xa0\x38\x8d\xee\x09\x7f\xcf\x49\x4c\xc5\x07\x70\x95\xcb\x5a\x1f\xdd\x42\x19\xdb\x5b\x2b\x1a\x9b\x96\xac\xd0\xef\x37\x90\x45\x7d\x6f\x11\xa5\x21\x4c\xc1\x9a\xb0\x50\x64\x8d\x4f\x36\x38\x39\x44\x98\xe4\xab\x65\x4a\x99\xb4\x28\x89\xa8\x30\x11\xd6\xd0\x50\x3a\x5b\x1d\x16\x87\xef\x22\xa4\xb6\xe1\xb0\x6f\xe6\x44\x10\x1b\x3f\xd0\x83\x92\x29\xd2\x54\xf2\x5a\x5c\x2c\xb1\x9c\x0b\x00\x53\x87\x73\x60\x6c\x2e\x78\x54\xcd\x10\x5e\x42\xf8\x41\x3b\x29\xf2\x87\x1c\x4a\x58\x48\x9a\x24\x63\xc6\x08\x89\x05\x02\x72\xb3\x6f\x2b\x41\xfb\xea\xd1\x01\xc2\x71\x8c\xfe\xf7\x77\x1f\xcf\xfe\x76\x33\xba\x3b\x3d\xbf\xbc\xbd\xb9\xfb\x78\x7a\x36\x7a\x37\x70\x1f\x5e\xdc\xde\xb8\x4f\xb5\x83\xe5\x81\x70\xb4\xc0\xf7\x60\xe1\x31\xa1\xd5\x3f\xc0\xd2\xfa\x3d\xb5\x68\x2f\xf5\x8d\x20\x16\x6a\x62\xd4\x14\x97\x25\x67\xd6\x70\x4d\x1e\x73\x07\xdb\xf7\xca\x3d\xd2\xbc\x07\xed\xe6\x71\xaf\xb0\x6a\xe0\x82\x30\xa9\x64\x8c\x01\xba\xe6\xa6\x6f\xbe\xe1\x08\x9b\x51\x56\x17\x10\x27\xec\xe1\x29\x75\xf8\x9f\xc8\xea\x67\x65\x5d\x5f\x62\xca\x5b\xef\xbd\x11\x7b\xa0\x3c\x65\x30\x34\xe7\xd5\xca\xcb\xfa\x10\x18\x70\xe1\x50\x09\xad\x0b\x43\xc8\x65\x59\x0b\xba\x60\x53\x5a\x0b\xaf\x7a\xb1\xe1\x0e\xb5\x9b\x98\x7c\x95\x1c\x1b\xf4\xa3\x30\xe2\x06\x3f\x60\x9a\x00\x60\xc6\x5e\x34\xf9\x1e\xd4\xd5\x62\x3e\x20\x92\xe0\x49\xca\x01\x7b\xaf\x23\x7c\xb6\x09\x33\x61\x50\x37\xc1\x35\x54\x07\xdc\x48\xf9\xd3\x55\xf1\x0a\xee\xa1\xcb\x94\xb7\xb9\xc9\xd5\xcf\x60\x16\xd2\xa5\x32\xc9\x0a\x42\xd4\x5c\xb3\x53\x82\x35\x7d\xba\x00\x49\x23\xb2\xa5\x1a\x87\x01\x83\x24\x49\xc0\xd4\xa7\xce\x80\x38\x32\xce\xf1\xfc\x97\x29\x43\x3f\xfd\x45\xa0\x49\x26\xc7\x2c\x6c\x23\x65\x50\xb4\xeb\x07\x2c\xa3\x79\x95\x61\x57\x7f\xd5\x5e\x6e\x59\x78\xc8\x0d\xf3\x6e\x19\xb6\x14\xb4\x46\x99\x24\xb3\x22\xe4\xb8\x0b\xc5\xd2\x39\x80\x7a\xa0\xfe\x39\x54\x24\x4a\x91\xa9\x64\x6d\x12\x7f\x96\x69\xfc\xad\x40\xa7\x97\x4a\xe6\x2a\x1d\x1b\xc2\xd1\x54\x68\x4f\x1a\x44\xa7\x00\xa1\xa7\x9f\xd6\x08\xa1\x01\xfa\x1e\x8d\xb3\xef\xbf\xff\x53\x84\xbe\xda\x3f\xfe\xfd\xcf\x7f\xfe\xd3\xbf\x6f\x52\x60\x0b\xda\xcd\xe7\xc8\xa4\xdd\x17\x85\xb0\xbf\x02\xa3\x02\x0d\x7c\xf7\x48\x30\xb0\x8a\xdf\x29\x85\xb0\x63\x8e\x68\x05\x24\xdf\xa8\x95\xd6\x1b\xc1\x89\x8e\xd6\x03\x57\x7d\x1d\x3c\x89\x08\xd1\x51\xd5\xaa\xe4\xab\x37\xed\x00\x53\xd5\xe3\xa6\x35\x83\x94\x75\x05\xad\xe9\x56\xac\xb1\xe0\xa1\xab\x82\xb9\x0f\x39\xf5\xb7\xda\xfe\xf1\x66\xca\xa6\x1e\x7b\x04\xd3\x9e\x57\xdf\x42\x33\x9e\x66\x4b\x07\x41\xb4\x60\x0c\xbd\x0c\x63\xf6\x59\xdd\xf3\xa7\x6c\x9a\x7e\x30\x1b\xf6\x8c\xb2\x7b\xf8\xab\xc6\xc7\xbd\xfd\x1a\x39\xf6\x7a\xef\x73\x6b\x1f\xe8\x19\x3f\x34\x25\x4c\x54\xaf\x85\xc4\xd1\xbd\xce\x29\x6e\xaa\x7e\xd0\xb5\x7e\x43\x0e\x61\xc8\x94\xa4\x34\x53\x07\xc5\xe9\x85\xcf\xae\xf6\x40\x31\xc2\xe8\xf6\xea\xb4\xfa\xdd\xf7\xb4\xac\x9b\x57\xdf\x02\xe1\x06\x81\xff\xf9\x89\x76\x8a\xa2\x15\x72\xe0\x49\xb0\xd5\x5d\x2a\x5d\x5d\x56\x67\x21\x53\x63\xab\x2c\xf2\xce\x7c\x35\xbe\xae\x07\x70\x95\xa6\xfd\xe1\x7a\x19\xe6\x30\xb9\xad\x6b\xdf\x6f\x25\x8b\x32\x38\xf5\x23\x90\x16\xc6\x75\x81\x11\x65\xf2\xa7\xf5\x38\xcd\x2d\x29\x92\xfc\xaa\x8c\x96\x27\xc9\xd4\xb4\xd3\x7d\x9b\x10\xc8\x67\xab\xef\xc3\xd6\xa4\x48\x7e\x17\x0c\x07\x4b\x5d\x0f\xc6\x6c\x68\x7f\xe2\x70\x11\x79\xda\x92\xd0\x1e\x71\x1d\xff\x91\x73\xf0\x70\xba\x49\x37\x83\xab\x19\xc4\x96\xc5\xef\x6f\x05\xe1\xce\x7c\x32\x88\x4e\xab\xe9\xd9\x71\xd4\xbc\xd9\xd0\xdb\x6d\xf1\xf2\x6b\x3b\xc4\x02\x53\x5e\xd5\x8b\xd7\x1d\xcd\x91\xc3\xbc\x99\x86\x7c\x72\x3e\xed\x35\x4f\x56\xb9\x8f\x56\xcd\xb8\xb6\x25\x0b\x2f\x0b\x0e\xeb\x54\x63\x3b\xb6\xd3\xa4\xb4\x0b\x6a\xe7\xde\x51\x39\x27\x0c\xf4\x84\xf6\x2d\x03\x40\xa6\xbb\x1a\x84\x73\x10\x88\x35\x5d\x3d\xc5\x36\x63\xd4\x10\x39\x18\x5f\xbd\xe7\xa4\xb0\x85\x68\xf2\xe7\x95\x99\x84\x25\x15\x53\x5a\x62\x5e\x28\x22\x6a\xb6\x99\xf5\x4e\x05\x6d\xec\x32\x37\x6d\x55\x17\x6c\x39\x42\x1f\x29\x17\xd2\x1b\x92\x52\x5b\x0d\x20\xa6\x8e\x22\x5f\xce\xeb\xeb\x33\xee\xc2\xb6\xb1\x23\x68\x6b\xf0\xb9\xc0\xda\x11\x1a\xe6\x1c\x3a\x1a\x12\x44\x44\x8b\x11\x91\x44\x90\x4d\x36\x5f\x2b\x8d\x15\xec\x00\xd8\x40\x08\xc4\xa5\x50\x9f\xe7\x79\x65\xae\x9b\x8f\x80\x5d\xc1\xf7\xa4\xae\xb0\x4e\xd7\xa2\x4c\x6b\x6b\x31\x0d\x9d\x42\x9a\x6a\x9d\x74\x93\x0e\xb6\x3f\x76\x39\x0a\x8b\x4e\xdf\xab\x29\x37\x55\x0e\x75\xc8\x6c\x0a\xfb\xd0\xe0\xb8\x1e\xe7\xca\x6e\xca\x37\xa5\x5d\x3f\xa1\x6b\xd8\x66\xc4\x86\xc6\x20\xe2\xe8\x26\xf8\x68\xcc\x4e\xa7\x88\xa5\x3e\xcc\x0b\x7a\xed\x0e\xa9\x76\xa9\xb9\xf5\x46\xe6\x6e\xd0\xd3\x00\x06\xbe\x6d\xaa\x7c\x9a\x03\x67\xc4\x16\xc7\x79\xbb\x3a\xb8\xee\xe4\xd6\x5c\x63\x5d\x93\xe8\x6a\xcf\x52\xa7\xd8\xeb\x8c\x30\xc2\x69\x04\x09\x1a\xfa\xda\x5d\x62\x5a\x65\x52\x1a\x36\x93\x7d\x4d\x35\xda\x75\x8e\x91\x19\xee\x86\xf9\x45\x89\x7e\x5a\x63\xe4\x13\x60\x87\xd4\x79\x45\xbb\xc8\xc6\xc9\x79\x65\xda\x65\xe2\xe8\xcd\x23\x74\xf9\x06\xdd\xaf\x6e\x7b\x24\x98\x62\x53\x6e\x59\x7b\x87\x04\x24\x45\x69\x20\x5f\x3a\x75\xc9\x53\xda\xb7\xa4\xf3\x2c\x95\xad\x59\xfa\xe3\x87\x24\x9d\x88\x77\x7e\xd1\x49\xf3\x8e\x1c\xcf\x57\xbf\x05\x77\x93\xab\x63\xa7\xe2\x29\xef\x43\x7b\x66\xfc\xfb\xb0\xcb\xc4\x57\x6f\xaa\x3c\xb4\xa6\xe1\x0c\x98\xa7\x19\xb3\xb9\x0e\x29\x23\xe9\x14\xf0\x8d\x50\x0e\xcb\x5a\x85\x00\x83\x66\xa9\xf4\xa0\x0b\x9c\x2c\x75\xe0\x0c\x34\xd4\xfa\xe9\xde\x32\xdf\x67\xdd\x3c\x3f\x45\xbe\xcf\xb6\xf3\x6e\x0e\xce\x0b\x4d\xf8\xb6\x59\x1c\xfa\x28\x75\x10\xb3\xf0\xfb\xb5\xc6\xb8\x93\x03\x60\x7d\xfb\x34\x6f\x1a\xa9\x0b\x9e\x62\x72\x28\xd3\x43\x80\x7c\x01\x90\x48\x67\xe0\xd5\xf1\x37\x44\x73\xb2\xe8\x90\xe4\x74\x0d\xbf\x6f\xd1\xcf\x08\x80\x9b\x5f\xbd\x8e\x9a\xbb\x57\x20\x4b\xf1\x0c\xca\x0c\x83\x6a\x6d\x60\x9f\xad\xbd\x39\x3a\xba\x38\xfc\xa5\x6c\xf6\x80\x99\xec\x92\x42\x76\x94\xc9\x69\x9c\x82\xd1\x63\xfb\x70\x84\x2e\x58\xb2\x42\xf3\x74\x91\xaa\x6b\x3b\xcd\x84\xf7\xa5\x86\x0b\xc1\x65\xd3\x40\x70\xbd\xd4\x10\xef\x97\x1b\x8d\x3a\x5a\xea\x2b\xad\x3b\xfa\x3f\x5a\x9f\x22\xea\x8d\x64\x12\xa6\xd8\xad\xe9\xbf\xcb\x8d\x6a\xde\x37\x90\xd0\xb3\xa0\xb3\xb9\xa1\x0b\xf2\xeb\x68\xc3\xd6\x5f\x38\xf6\x54\x5b\xd0\x4f\xa7\x94\xc1\x86\x62\x55\x75\x12\x6a\xdd\xdb\x5d\x32\xfc\x3a\x14\x36\xf4\x10\xc0\x0e\x3b\x07\x93\xec\x70\xb4\x16\x9f\xe6\x1e\x7c\xc8\xb9\xaa\x56\x4b\x32\x40\x93\x0c\xbe\x3f\xbf\xb8\xf1\x7d\x43\x94\xc1\xd7\x87\xd1\x9c\x44\xf7\x6a\x5d\x90\x16\x8a\x7a\xba\x2c\xe9\xd8\x64\x35\x66\x39\xb9\x81\x4c\xad\xa3\x63\xe5\xb2\x47\x5c\x06\x55\xca\x51\x4c\xc5\x32\xc1\x2b\x44\xbe\x4a\xc2\x34\x41\x54\x45\x75\x59\xb5\x59\x36\x33\x5b\x80\x7d\xc1\x48\x01\xab\x87\xc1\xbf\xec\x20\x1c\x33\x25\x60\xa9\xa7\x38\xaa\x54\x3b\xb6\xce\xe7\xd9\x26\x7e\x52\xc7\x23\xe2\xf1\xb1\xea\x15\xf5\x5d\xa5\x0e\xca\xc3\x0a\x98\x9c\xb1\x21\x41\x1c\x1f\x80\x07\x65\x6c\xa9\x1b\xd5\xbf\x35\xf5\x1b\xe1\x0f\x24\x1e\xb3\x10\x2c\x65\xae\xb2\x7c\x95\x51\x9e\x5f\x5e\x27\x3a\xbb\x27\xb1\xaa\x79\x76\x39\x96\x8d\xa1\x1d\x08\x10\xe7\xc8\x70\xc7\xe6\xd9\x90\xef\x5e\x4d\xfe\xf8\x04\x89\xd9\xad\x9d\x1f\x79\x42\xbb\xc9\x46\x35\x74\x13\x44\xa7\x4a\x26\x2b\xb5\x41\xdd\xc6\x74\x50\x10\x8d\x13\x75\xd8\x57\x83\x0f\xc9\x51\x0f\x66\xcd\xab\xda\x18\x33\x1b\xb1\x9c\x66\x49\xa2\xb1\xff\xb5\xa5\x62\x35\x34\xcc\x46\x00\x5f\x0e\x7f\xe3\xec\x5a\xe4\x31\x00\x78\x85\x55\x97\xb1\x92\x1d\x2c\x5a\xe5\x54\xb4\xb0\x79\x09\x13\x19\x24\x9e\xda\xec\x5f\x00\x3a\xcf\x88\x44\x4a\xef\x88\xb3\x44\x03\x87\x79\xc6\x0c\xce\x0c\x27\x40\x09\x36\x66\x0e\x16\xa7\x59\x79\xe0\x2a\x88\x4c\x2e\x48\x6c\x74\x41\x78\x05\x34\x6b\x88\xe5\xe0\x82\xa0\x11\x95\x41\x97\xc0\x53\xb9\xf2\x53\xe6\x96\x4b\x82\x39\xa8\x8b\xb6\xb2\x89\xaf\x0d\x16\x97\xc1\x54\x24\x07\xea\x9e\xfa\x12\x43\xbb\xd8\xbd\x9a\xba\xa9\xf3\xa2\x1c\xa1\xa1\x1e\x9d\x52\x05\x2d\x7f\x8d\xee\xad\x09\x53\x9b\x78\x82\xd2\xb7\xa4\x70\x0c\xad\x4e\xa3\x5e\x62\x2e\x69\x94\x25\x98\x27\x2b\x25\x5d\xa6\x59\x82\xe8\xd4\xa3\xe2\x81\x45\xd0\xa8\x28\x43\xde\x06\x59\xc5\x06\xf5\x2c\xf0\x82\xe4\x1b\xdc\x1a\x9e\x89\xe7\x44\xd4\x99\x5e\xda\x3b\xa5\xda\x7a\x77\x84\x4e\x8a\xc4\x4b\x70\x2c\x3c\x34\x35\x15\x5a\x02\xba\xfe\x9a\xa4\x51\x20\xa8\x04\x02\x27\x3a\x55\xca\xee\xb7\xde\xc1\xab\xa3\x05\xc5\xe2\xbe\xa3\x87\xf2\x06\x8b\xfb\xb5\x5e\xca\x53\xef\xaa\xcc\x05\xe0\x0d\xb0\x4d\x06\x7e\x4b\x77\x22\xd6\x94\xc0\xe8\xd8\x49\x1f\x89\xbe\x41\x47\xbf\x78\x74\x8e\xc5\xce\x2e\x1a\x98\x7f\x60\x1d\x3b\x76\xd5\xcb\xca\xed\xde\x51\x6f\xe7\xf8\xfe\xe8\xda\x99\x5d\x6f\x5c\x7e\x09\xf2\x63\x91\xea\x97\x52\xec\x89\x8e\x60\x14\x98\x82\xa1\x0f\x26\x91\x16\x72\x19\xdd\x61\x9b\x10\x94\x50\x76\xaf\x4f\x05\x86\x95\x1f\x20\x9c\xb7\x0e\x87\x4f\xf7\x5e\x6f\xe6\x1a\xcd\xc6\x45\xa3\x77\x13\x12\x6e\x87\x18\xa9\x5c\x5c\x37\xee\x8a\xe7\xd7\x6f\xc4\xaa\x71\xb4\x5f\x96\xc6\xb0\x9d\x53\x62\x6d\xac\x4e\x5f\x30\x61\xf5\xd3\xd5\xba\xf9\xbd\x9c\xe3\x6a\x66\xbe\xf5\x44\x9a\xb7\xe7\x27\xa3\x8f\xa7\xe7\xa3\x13\x9f\x42\xf3\xaf\xb7\xa3\xdb\xf0\x93\xab\xdb\xf3\xf3\xd3\xf3\x4f\xfe\x47\xd7\xb7\xc7\xc7\xa3\xd1\x49\xf8\xbb\x8f\xc3\xd3\xb3\xc2\xef\xd4\x47\xe1\x8f\x86\x3f\x5c\x5c\xdd\x84\x1f\x5d\xff\x74\x7a\x79\x19\x7e\x74\x73\xfa\x79\x74\x72\x77\x71\x7b\x63\xe7\xba\x92\xbf\x33\xef\x7f\xe5\x14\xed\x82\x58\xa3\x6b\xfc\xd9\x43\xca\x4f\x39\x25\x2c\x4e\x56\x79\x2d\x29\x75\xe8\x0a\x41\x4a\x5f\xa4\xd3\x05\x49\xb3\x6d\x30\x03\xca\xf4\x4d\x1f\x94\x49\x9d\x20\xd3\x9a\xc1\xe4\x14\x6a\x31\x7a\x6f\xe5\x44\xf2\xb2\x1b\xac\x11\x65\x21\xf9\xea\x5a\x72\x2c\xc9\x6c\xd5\x12\xff\x66\x5e\x82\x96\x84\x37\xf5\x05\x2e\x5c\x9e\x2d\x25\x9d\x94\x1d\x4d\x76\x1e\x4c\x62\x4a\x2d\xf3\x9f\xf9\xba\xbb\x65\xa7\xf1\xa1\xb4\x52\x5c\x9f\x57\x0b\x3a\x9b\xa8\xbe\x65\x36\x28\x78\xa6\xdb\xaf\xc0\xa5\x7b\xa4\x7a\xeb\x1d\x5b\x72\x0b\x65\x32\x4b\xcc\x6a\x80\xff\x1d\x09\xf8\xf2\x6c\x5c\x9e\xd3\x60\x9a\x9b\xca\x5a\x11\x39\x9a\x78\x13\xcb\xda\x24\xe4\xb3\x38\x2f\x34\x68\x12\xf5\x3d\x36\x8e\x8a\x45\x28\x50\x9c\x3d\xf9\x2d\xd3\xb8\xe7\x0d\x26\x11\x54\x3f\x9d\x11\x69\xca\x67\xea\x6b\x19\xd2\x8c\x6b\x43\x75\x3b\x66\x44\x74\xaa\x67\x4e\xe7\xe6\x08\x02\xad\x3c\xea\xae\x68\x14\xc8\xd0\x3c\xa2\x38\x5d\xd0\x06\x12\x60\xa1\xd9\xdc\x17\x67\x34\x0b\x2d\x07\x1e\x48\x8c\x0e\x7d\x02\xca\xf8\x10\xd0\x65\x63\x56\x67\x61\x56\x90\x37\xfa\x3b\xe0\xd2\x72\x73\x6c\xb3\xf6\x15\xb3\x5f\x7f\x04\xed\x64\xb7\x03\x55\x20\xfb\xf3\x23\x54\xef\xca\x34\xeb\x32\xc1\xda\x85\x04\x67\xcb\x91\x8e\xd4\x41\xbc\xdc\x5d\xd8\xcd\xe3\xda\xca\xdb\x8a\x5d\x62\x8a\xf6\xb3\x82\xce\x32\xc7\xe0\x7f\xd3\x5c\x9b\x41\xc7\x3d\xaa\xd1\x3a\xa3\xc5\x25\xa8\x6f\x27\xda\x5b\x59\x90\x03\x8d\x08\x70\xa5\x06\xfc\xac\x5e\xc7\x50\xd0\x6d\xe3\xbb\xd5\x70\xb9\xe0\xd8\xca\x3d\x10\x58\x09\xce\x94\x4e\xbf\x4c\xb0\x06\x12\xcd\xb1\xd0\x5b\xda\x3a\x29\xb1\xa1\x04\x97\xa9\x31\xef\x0b\x33\x9c\x72\xb4\xc0\xfc\x5e\x59\xb4\x24\x99\xaa\xd6\x0b\xc1\xfd\xca\x4d\xbf\x65\x20\x2d\x27\xb6\x79\xce\x50\x5a\x7e\x64\xdb\xfa\x06\xf2\x6d\x69\xc2\x68\xf9\x72\x68\xea\x65\x99\x7a\x24\x3d\xdd\x56\xd6\xb4\x78\x59\x7c\x3c\x98\xef\x8a\x8b\xba\xbb\xcf\xd6\xe4\x14\x74\x10\xf3\xc5\x8c\x83\xca\x93\x35\x4d\x52\x5c\x43\xb3\x63\xdb\xd6\x09\x04\x75\x6d\xc7\x69\xa6\xc4\x59\x65\xe3\xba\x57\xcd\xad\x37\x19\x60\xf6\xdc\xee\x4a\xa1\xf3\x05\x20\x96\x04\xca\xbc\x6d\x34\xa1\x79\x95\xb8\xea\xc6\x33\x8e\xab\xd0\x1d\xed\x09\x0e\xf3\x6c\x1b\xbb\x79\xd0\xcd\x6a\x49\x2a\x68\xdd\x02\xec\xf2\x86\xc6\xdc\xf5\xe5\xe8\xf8\xf4\xe3\x69\xc1\x92\x1a\x5e\xff\xe4\xff\xdb\x56\x08\xf0\x3f\x3b\x1b\xde\x9e\x1f\xff\x78\x77\x79\x36\x3c\x5f\x63\x6f\x95\x5f\x51\x76\x77\xe4\x89\x01\x39\x8e\x5a\xdd\x0d\x06\xfa\x0b\xa6\x6e\xc5\xf9\xba\xaa\x48\xee\xdb\xb4\xfe\xd8\x93\xb9\x34\x5d\x27\xed\x1f\x23\x26\xf9\xaa\x4b\xd2\x27\x8a\x6d\x11\x00\xed\xbd\x0c\x13\x0e\x89\x00\x5f\xb0\x6d\xfd\x1c\x04\x9b\xf5\xae\x9b\x10\x8d\x99\x47\x75\xb1\x24\xb4\xb6\x6e\x50\xa2\x36\xdc\xbe\xce\x83\x8f\x01\x84\x59\x98\xa4\x19\x8b\x2d\xb3\xda\x82\xb2\xf7\x0b\xfc\xf5\x9d\x1d\x69\x5e\x9e\x11\xf2\x59\x35\x9d\x7d\xa2\xb4\x8e\x15\xe2\x19\x6b\x9e\xae\x31\x6b\x98\xaf\xf5\x37\x83\x2e\x4e\x4a\xff\x89\x75\x85\x0c\xab\x8f\x6a\x8f\xf1\x03\x59\x55\xad\x5f\x29\x91\x4a\x7b\xa5\x8d\x0e\x0c\x8d\x2c\x39\x01\x22\x51\xe7\x8f\x4e\x74\x9c\xc1\xfd\x1b\xe2\x9d\x41\x7e\x69\xd5\x9d\x14\xda\xe2\x5b\x9d\x9b\x4a\x2f\xc0\x13\xa4\xc2\x99\x37\xa9\x45\xd3\x3e\x01\x9b\x76\x6a\xe2\xbb\x31\x7a\x9c\x13\xbd\x5a\xff\x48\x27\x68\x0a\xe1\x70\x43\x1f\xc3\x49\x04\xee\x0d\xb5\x16\x36\xbd\x08\x60\xb5\x25\x47\x83\xdd\x03\x09\x11\xe0\x6c\x03\x2a\x46\xf2\x4b\x66\xb0\x73\x7f\xf8\xbe\x5b\xca\x96\xe4\x2b\x24\xcc\x34\xfb\xe1\x78\x83\x46\x31\x3e\x3b\xe8\x57\xc6\x68\x15\xe5\xdb\x95\x26\x21\x7c\x5e\xae\xd7\xc2\x4b\xcd\x3f\xd7\x22\x16\x6e\x6c\x1a\x8c\xfe\xfd\x93\xe5\x47\xfc\x5c\x48\x8b\x30\xaf\x83\x40\xa4\x69\x5d\x78\xa8\x7b\x65\x19\x3d\x62\x1e\x6b\xc7\x00\xf8\x88\x8e\xd0\x8f\xe9\x23\x79\x20\x7c\x80\x22\xc2\x25\x36\x70\x65\x75\xd6\x92\x04\x0e\x94\x69\x67\xcc\x20\x36\xaf\xb1\xdf\x0c\xa8\x77\x24\x9d\xcd\x95\xf2\x68\x8c\x50\x43\xd7\x29\x88\x04\xa8\x21\xf9\xba\x24\x91\x06\x65\xd4\x45\xa2\xa7\x09\x7e\x28\xe3\xaf\x37\x81\xd6\x7a\x8c\xa4\xb6\x98\x90\xc9\x59\x69\x74\x4a\x59\x62\x4b\x2d\x35\x97\x2b\x39\x4f\xd9\x00\xcd\xd2\x04\xb3\xd9\xd1\xd1\x11\x22\x32\x3a\x7a\xd7\x69\xa3\x9b\x06\xbd\xd7\xe5\x11\xb5\x24\x15\x24\x59\x59\x0b\x2f\x47\x3e\xa8\x59\x06\xa4\x85\xad\x78\x54\xb1\xfb\xaf\x8b\x08\xdd\xe7\x75\x93\x55\x6b\xa5\x9d\xa1\x3e\x35\xed\x14\xeb\x9c\xac\x6b\x49\xff\xbe\x5a\xd3\xee\x00\x5d\x03\x26\x07\x1a\x27\x39\x84\xad\x26\x83\x2a\x65\x5d\x71\x59\x3f\xa7\x75\x2c\x35\x1b\xa5\x1c\x54\xb6\x64\x00\xe2\x1b\x21\x95\xca\x3b\xba\x62\xc7\x39\x50\xdf\x56\xe9\x4d\x49\xb6\x28\x53\x2d\xee\x4a\x8b\xca\x3b\xa9\xff\x3a\x86\xd7\xb5\xe7\x35\x70\x64\x3c\x29\xd7\x68\x2a\xd3\x5f\xed\xf7\xd0\x9b\x09\xa4\x25\xa7\x02\x12\x2d\x36\x01\x3c\xb9\x66\x74\xd3\xe0\x9e\x55\x36\x8c\xa6\x47\x33\x85\x68\x00\xc3\xe5\xea\xc9\xe8\x47\x84\x56\x75\xc0\xa7\x5b\x2f\x19\x72\x90\xe8\x46\x56\xcf\xf9\xc5\x79\x50\x00\xee\xf4\xfc\x66\xf4\x69\x74\x15\xc4\xa0\xce\x2e\x86\x37\x41\xbc\xe9\xe6\xaa\x10\xa6\xfa\xe1\xe2\xe2\x6c\x34\x3c\xf7\x3f\x3a\x19\xde\x8c\x6e\x4e\x3f\x07\x8d\x9f\xdc\x5e\x0d\x6f\x4e\x2f\x82\xdf\xfd\x70\x7a\x3e\xbc\xfa\x9b\xff\xc9\xe8\xea\xea\xe2\xaa\xf0\xbe\xdb\xe3\xe6\x48\x56\x30\x8c\xea\x95\xc8\x95\x65\x0f\x2f\x5b\xa5\x14\xde\x60\x71\xbf\xe3\xe8\x2b\xa0\x0d\x36\xac\xd8\x56\x23\x94\x62\x72\xb7\x59\x60\xb6\x2e\xb8\x5c\xf9\x1e\xa5\x0f\xae\xee\xb0\x94\x64\xb1\xdc\x8e\xe8\xa1\xfd\xc1\xe9\x16\xf3\x05\x93\xa6\x45\xcc\x37\x58\xd5\xfd\x89\xf9\x56\x84\x73\xcb\x31\xdf\xd3\xf3\xd3\x9b\xd3\xe1\xd9\xe9\xff\x57\x68\xf1\xcb\xf0\xf4\xe6\xf4\xfc\xd3\xdd\xc7\x8b\xab\xbb\xab\xd1\xf5\xc5\xed\xd5\xf1\xe8\xba\x65\xc4\xb7\xec\x63\x39\x44\xfe\x7b\x3e\xa0\x9b\xd4\xb1\x14\x18\xad\xd0\xd0\x41\xab\x19\x87\xf2\x5a\x54\x02\x0c\x97\xb2\xd9\x00\xca\x05\x7c\x40\x23\xce\x4f\x17\x78\x46\x2e\xb3\x24\x19\x20\x47\x38\x02\xa5\xd6\xe1\x67\x97\x69\x7c\xea\x3d\xa7\x8b\x2e\x56\x0d\x03\xde\x6f\x88\x3d\xf4\xeb\x07\xe6\xfd\x5e\x80\xc3\x39\x48\x0c\xc1\x8a\x63\x91\xf9\x80\x7e\xc0\xd1\x7d\x3a\x35\x34\x0a\x03\x67\xe2\xa2\x5f\xb2\x54\x62\x44\xbe\x46\x84\xc4\x96\xea\xb5\xb8\x4f\xce\xd2\xad\x2a\x73\x75\xa9\xe9\xe1\x9f\xe9\xf5\xa1\xf2\xca\xe7\x4c\x66\xc3\x5d\x75\x95\x88\x6a\x41\x60\x46\xf9\x59\x3f\xaa\x8b\x44\xd4\x44\xd5\x65\xb2\x03\xff\xdd\x59\x3a\xab\x46\x11\xbb\x32\xbc\x54\x78\x3c\x02\x10\x0d\x48\x67\x48\x50\x76\x3f\x66\x5f\x94\x41\x9b\x66\x5c\x7f\x24\x53\x0e\x80\xf4\x69\x92\x89\x39\x01\xfa\xad\x01\x7a\x24\x50\x15\x11\xa2\x02\x21\x3f\x31\x6c\x19\xb5\x39\xe1\xe9\x84\x32\x25\x2d\x96\xd4\x6a\x90\xc5\xa5\xdf\x85\x81\x19\x53\xe1\xec\xec\x27\x0c\xd5\xe4\x9e\xc2\xc7\x39\x01\xdc\xaf\xc7\x6e\x66\x89\x51\xb5\xe4\x86\x1c\xb3\x34\xbd\xcf\x96\xa6\xac\x1d\x16\xf7\xdf\x5a\x14\x1d\x4c\xf7\x43\x4a\x63\x14\x67\xcb\xc4\x2b\x45\xfb\x98\xf2\x5a\xd4\x83\xb6\x74\x3a\xa0\x1e\x0a\xf6\x7b\xd3\xc0\x2a\xcc\x28\xcf\x6a\x6b\xc0\x3f\x3c\x31\x02\xc4\xe3\x3c\xc9\x04\xe1\x87\x92\xd3\xd9\x0c\xf4\x46\xeb\x94\xd9\x7f\x88\x88\xdd\x9b\xab\xbb\xed\xfd\x0f\xbe\xab\x3a\xd1\x8c\xb0\x8e\xaa\x21\x2c\xce\x6a\xb6\x9c\x3b\xf6\x4b\x5d\xd5\x54\xf5\xdb\x75\xa8\x36\x44\xbb\xe4\x44\xbd\x25\xbe\xd3\x34\x32\xdb\xd3\xdb\x9c\x4e\x95\x26\x68\x0a\xa9\xe7\x44\x3c\x39\x59\x89\xbd\xe1\xf2\x77\xdb\xb4\x0a\x9d\xd1\xcc\x74\x41\xc4\x47\x66\x4b\x45\x62\xa1\x5d\x23\x2c\x05\xdd\xc4\xa5\x5a\x40\x41\x3a\xc8\x87\x76\x35\x06\x4d\x86\xa6\xf1\x71\x6a\xa6\xc2\x97\x87\xf4\x38\x41\x0d\x48\xd5\xb0\x64\x55\x51\x44\x6e\x9b\x77\xe1\xf0\x0f\x9b\x6a\xc4\xcd\x36\xdd\x2c\x49\x27\x38\x49\x56\x15\x19\x19\xfe\xad\xd3\xcd\x81\x69\x0b\x6b\x85\x77\x96\x45\x36\x41\xa8\x3c\x6d\xc8\x74\x0f\xca\x3f\xec\x34\x65\x65\xfb\x09\xcb\x64\xaa\xb3\xcd\xc1\x23\xab\x06\x77\x5a\x28\x4f\x70\xa4\xf1\xcb\xa7\x71\x25\x51\x4a\x7e\x62\xec\xcc\xd7\x49\xe7\x0a\x1f\x4a\xa7\x8c\x9b\x25\x27\xd6\x7b\xb6\x22\xd2\x39\xcd\x12\x8b\xaf\x5e\x2d\x43\x46\x7a\x3f\x6a\xe0\x8a\x8c\x9b\x78\x84\x2e\x3a\xef\x71\xde\xa6\x8c\x30\xa9\x99\x3f\x59\x3a\x66\xa6\x71\x9b\xbf\xe7\x28\x70\x4c\x20\x44\x4f\xcc\xc0\xd8\x20\x20\x15\x94\x2e\x9a\x3c\x98\x62\xb0\x6e\x4e\x64\x0a\xf8\x7a\xd5\xc1\x63\x25\xce\x95\xf2\x82\x59\x9c\x73\x96\xce\xc9\x98\x15\x92\xd8\xbc\xda\xf5\x76\xc7\xfa\xcf\xef\x2c\xb1\x27\xd0\x77\x9a\xa6\xbe\x36\xb1\x67\x9d\xe0\x9a\xe2\xa8\x0b\xc0\x7e\xb5\x24\xf1\xa9\x7b\xae\x79\x33\x04\xae\x93\xd8\x0b\x2d\x05\x87\x5c\xef\x01\x2d\xb0\x85\xce\x8e\x12\xae\x92\xac\x5b\x24\x47\xaa\xe4\xc8\xda\xd5\x12\xcd\xb0\x25\xec\x17\x8e\xad\x1d\xa2\xdd\x81\xcb\xbb\x50\x5c\xc9\xe9\x52\x51\x2a\xa4\x8e\xaf\xc1\x23\x53\x4c\x93\x8c\xd7\xaa\x08\x7a\x5b\xee\x3c\xed\xf0\x18\x9a\x45\x55\xab\xe6\xfc\xd2\xde\x31\x72\x3e\x69\x57\xb4\x29\xc9\x66\x94\x89\x70\xd7\xd7\x93\x97\x96\x88\x9c\xd7\x2c\x78\xce\xfd\xdc\x5e\x16\x0f\xf5\x61\x17\x30\x78\x88\x43\xd4\x33\x38\x19\xa5\xcd\xeb\xfb\x98\xdd\xc0\x5d\xad\xb3\xea\xdc\x31\x03\x86\x2d\x4d\x98\x02\x2c\xd6\x55\xe3\x0d\xe4\x79\xb8\x53\xb7\x02\xb4\x54\xe5\xbf\xad\x07\xce\x7d\xc6\xcb\xa6\xd4\xa4\xad\x5b\x5c\xb7\x0c\xce\xbb\x59\x3c\x86\x45\x5a\xe4\x8a\xd9\x73\xe0\xbf\x67\x09\xe2\x75\x49\x94\x76\x18\x50\x43\x31\x50\xca\x72\x0d\x14\x53\xff\xd1\xee\x30\xe0\x3c\x7a\x65\x2a\x31\xea\x06\x27\x1a\xb8\xe9\x63\x4d\xb7\xc8\xb2\x75\x0b\x53\xa8\x94\x5d\xb5\x1c\x5b\xe2\xe0\x72\xe8\xf2\x33\xc2\xe0\x7e\x2e\x4d\x51\x57\x14\xdc\x83\x0f\xfb\x85\xbb\x21\xaf\x53\xd6\x4a\x63\x76\xe8\xb7\x9f\x43\xec\x76\x30\xc5\x29\x6d\x05\x72\x2f\xb3\xef\x81\xd2\x12\x13\x96\x4a\x82\x30\x62\x34\x79\xcf\xb2\x24\x79\x7f\x0e\x65\x62\x84\xa0\x33\xcd\x42\x0d\x1e\x93\xa0\xac\x37\x60\x87\x3d\x57\x99\x77\x04\xe0\x8a\x54\x5d\xd2\x5e\x3c\xa9\x24\xa6\x5a\x82\x64\x35\x66\xea\x09\xad\x62\xb9\x1a\xad\xb6\xd6\x23\xbc\xcd\xe6\x35\x99\x77\x29\xdb\x98\xad\xfc\xc6\x2b\x36\x58\x53\x2a\xd0\x56\x21\xcd\x9e\x23\x72\x6f\x38\x22\x53\x6e\x3d\x4f\x1d\xd8\x22\xeb\x0f\xd5\xc6\x74\x8d\x4e\x11\x73\x21\x81\x16\xfb\xf1\x25\xc3\x01\x4f\x99\x18\xb6\x75\x16\x98\x9d\xa9\x5d\x78\x45\x7f\xc9\x48\x46\xd9\xec\x6e\x92\xc5\x33\xb2\x95\x8f\x2e\x95\x38\x41\x8f\x98\x4a\x70\xd1\xf9\x6a\xbb\x39\x17\x31\x49\xf0\x4a\x67\x52\xa8\xb7\x92\x8e\x25\xed\xed\x68\xdd\xde\x55\xbb\x8c\x7b\x7c\x0d\x63\x76\x93\x3a\xa3\xd2\x9c\xd8\x69\xa6\xb4\xd1\x06\xe9\x67\x5b\x3d\xd1\x33\xbf\x15\x4c\x73\x97\x5e\xa1\x46\x4f\x99\x8d\xb6\x59\x0f\xb3\x5f\xcd\x2d\xe8\x84\x41\x92\xe9\x33\x0f\x15\x10\x64\x68\x18\x69\x96\x0c\x0b\x56\x33\xb5\x48\x32\xec\xb0\xfb\x30\x97\x6a\xc2\x4d\x62\x79\xc6\x00\x7b\x46\xbe\xea\xf4\xfd\x64\xe5\xb7\x0a\x89\x9e\xd0\x62\xc7\x88\x3c\xd8\xdc\x2e\x17\x77\xed\x42\xd7\xaf\xe6\xb6\x4e\x30\x9d\xeb\xb0\x4c\x30\xbb\xd3\xca\xcd\x0b\xb8\xc1\xbc\x7c\x8b\x3a\x2a\x28\xaf\xe6\xe1\x6e\xfa\xe9\x24\xfc\x55\x90\x05\xe5\x17\x41\x1b\x14\xe9\x62\xad\x46\xe2\xaa\xc1\x1b\x63\xdc\xf0\x81\x7f\xad\x02\xb4\xac\x77\xe5\xe1\x82\xe1\xee\x08\xf1\xd7\xf8\xf2\x4a\x55\x4a\xf7\xcc\x9f\xd7\x66\xe5\x0b\x1b\xbc\xb8\xec\xdd\x5d\x49\xa5\x8b\x62\x23\x77\xd2\x9a\x6e\x3d\xad\x4b\xa9\xd6\x74\x2a\xbb\x96\xbe\x84\xc5\xb4\x22\xa8\x4e\x19\x25\x59\x4c\x90\x48\x95\x3e\x67\x2d\xbb\xea\x7c\x9a\x02\x8e\xe3\x49\xf9\x43\xc2\x74\xe9\xd6\x80\x28\xcd\x20\x84\x4e\x19\xb2\x16\xda\x00\x8d\x0f\xf4\xce\x12\xe3\x83\xb0\xf2\xb8\xa5\x27\x0a\x0b\x4a\x14\x1d\xaf\x3a\x26\xe2\xdd\x20\xcc\x73\x0f\x14\xe7\xa5\xc6\x8b\xf1\x92\xbc\x40\x1e\x5a\x4c\x87\x4d\x27\xba\x01\xa3\x94\x6a\x5d\x7b\x65\x49\x83\x20\x75\x98\x67\x91\xf4\x6a\x9b\x5a\x8e\x95\x1f\xec\x83\x6a\x8a\x96\x59\x62\x6a\xb7\x5b\x4e\x93\x94\x8f\x99\x6d\x2d\xa7\x3a\x1c\x26\x49\xa9\xa9\x32\xbd\x90\xb7\x57\x81\x6c\xcc\xe2\xb8\x21\x3f\x40\xfd\x08\x90\x6e\x25\x39\x30\x66\x3a\xab\xcf\x25\x94\x1e\xa1\x61\xa1\xe6\x6b\xc8\xa4\xe3\x13\xe9\x24\x89\x65\x91\xd1\xdc\x2c\x1e\x75\x88\xc8\xa0\x4e\xc3\x34\x53\xe2\xc8\xbd\x5d\xa6\x63\x06\xa4\x4a\xba\x7c\xbf\x9d\x97\x31\xfb\x9c\x0a\x5b\x87\x4e\xe4\xf3\x61\x75\x06\x33\x6d\xdf\x3a\x38\xbb\xf9\xe0\x44\x09\x11\xf5\x94\x32\x6d\x0b\xc9\xcc\x10\xb7\x03\x74\xc1\x00\xad\xd2\x8c\x07\xaa\xe2\x98\xfd\x43\x4d\x8f\x65\x0a\x4a\x5d\x95\x64\x38\xc4\x36\xf9\x1b\x7d\xf7\x77\xdd\xe8\x77\x7f\x7e\xf7\xf7\x77\x9a\x87\x2d\x13\x99\x92\xb0\x83\xf0\x0a\xb1\x1d\x55\x4b\x0a\xd8\x16\x3b\x02\x57\xfa\x21\x7f\x45\x23\xa7\x80\x71\x16\xef\x9a\x41\x3b\xf7\x38\x0d\x51\x84\x65\x34\x3f\xc4\x66\xef\xf9\xec\x49\x54\xe4\xfc\xec\x8f\x73\xc2\xa0\x3c\x59\xc8\xe9\xae\x13\x2a\x50\xac\x24\xdb\xc2\xa5\xe3\x06\xfb\x45\x17\xaa\x31\x5a\x61\x21\x0f\xd9\xbe\x09\x36\x67\x9e\x09\xfb\x25\x97\x0c\xf6\xe7\x36\x3f\x20\x77\x13\x19\xd7\x98\x32\x59\x63\x34\xd6\x78\xda\xf1\x81\x5d\xfe\x31\x5b\x4e\x8e\x92\xd5\x54\x1e\x01\xba\xf7\x48\x4d\xcb\xd1\xa8\xb1\x9e\x8d\xbe\x84\xee\xe2\xb2\x56\xbe\x66\xba\x6b\xf5\xfa\x6a\x7d\xc7\xcd\x8e\x7b\x53\x7b\xa5\x45\x9b\xb6\x6e\x7e\xae\x43\xdf\x37\x71\xb6\x32\xd1\xf1\x8c\x81\x65\xc7\xc1\x2c\x2c\xc1\xec\xce\x27\x50\x35\xa9\x8b\x0e\x4b\x1a\x81\xae\x80\x19\x4e\x56\x90\xa5\x33\x18\xb3\x98\x72\x12\x41\x6d\xc8\x68\x15\x25\x34\x32\x4c\x37\xa1\x2e\x44\x1e\x08\x93\x01\x98\x70\xa4\x3e\x79\x2e\x75\xa8\x0e\xc6\x58\x3d\xfb\xb7\x35\xaa\x90\x63\x25\x0b\xbd\x05\xc5\x6d\x62\x72\xf3\x79\x47\x6e\x03\xf7\x7a\x10\xcd\xb1\xf5\xf3\xa4\x9c\xce\x28\xc3\x32\xe5\xe8\x3b\x70\x7b\x26\x09\xe1\xef\x5c\x81\x1d\x98\xc5\xea\x6e\xcc\x3b\x15\x2e\xa8\xa0\xb9\xa9\xbe\x6c\xa3\x28\xe3\x9c\xc4\x77\x65\xf4\x58\xd7\x3c\xd0\x66\x6c\x8d\x52\xad\xe9\x82\x08\x89\x17\x4b\xbf\xd0\xbc\xcb\x58\x32\x33\x93\xe8\x49\x40\xb6\x63\x03\x44\x01\x20\xe6\xc2\xd4\x63\x66\x02\xd4\x7a\xdd\x52\x5e\x41\x70\x50\x1c\x25\x08\x8e\x16\x45\x88\x1a\xf4\x91\xae\x25\x8c\x8a\x8e\xb2\xab\x33\x8b\x21\x48\x83\x8a\xfc\x5e\x65\x6c\x0a\xe7\x19\xce\x69\x45\x6d\xed\x31\xcb\x21\x48\xc7\x49\x9a\xc5\xc8\xb8\x09\x8d\xd3\x8d\x1f\x21\x4a\x8e\x06\x48\xfc\xe9\xc3\xfb\xf7\x47\x47\x3b\xaa\x7b\x10\x16\xce\xaa\xde\xe1\xba\xb4\x55\x15\xc4\x6f\xcd\xd1\x0a\x78\xce\xee\xba\x59\x1e\x36\x85\x03\x76\x8b\x6f\x99\x87\x00\x96\xe2\x2b\x97\x98\x13\x26\xef\x00\x94\xdd\xed\x85\xf0\xa2\x4b\x78\x3c\xc0\x13\xb7\x32\x7b\x72\x9e\x44\x93\x90\x89\xc5\x3d\xfa\x8e\x82\x07\xfd\x9d\x31\xc6\xa1\x36\x7c\x03\x7d\x59\x59\x02\x37\xf5\xe6\x99\x44\x71\x1d\x60\xbe\x4d\xf7\x83\x67\xb7\xbe\x40\xb6\xc1\xd9\x37\xfa\xc1\x4e\x1c\x17\x2f\xc4\xce\x4f\x19\x8a\xd2\xc5\x44\x09\x71\xb5\xd5\x9d\x63\x02\xe0\xf2\x43\x8b\xb9\x74\x80\x31\x8b\x31\xd3\x6c\x16\x05\xc4\xba\xf3\x66\xfb\x88\x30\xbd\x45\x0b\x77\x53\x5d\xad\x2c\xbd\x9d\x9f\x20\x25\xa0\xfa\xa8\x0f\x8b\x23\xc8\xd9\xa1\xef\x69\x74\x4f\xd4\x3d\x37\xcd\x59\x6c\x7c\xe9\xe6\xee\x37\x07\x91\x33\x85\xf7\x35\x1e\x83\x98\x71\xdf\x51\xcd\x01\x4a\x6c\xc1\x5b\x0f\x4b\xf3\xad\xa8\x9e\x9c\xa7\xce\x5f\xa8\x9e\x0b\x68\xdf\xa1\x6c\x4d\x1e\xad\x53\x2d\xb4\x32\x06\x12\xf9\x8f\x4e\x1e\x0a\x12\xa5\xcc\x21\x73\x77\x72\xd1\x57\xe4\x36\x54\x77\x17\xbe\x2b\x25\xe0\xae\xd3\x3a\xb6\x54\x7e\x72\xc5\xc7\x16\x10\xd7\x06\x33\xc4\x2d\x01\x9e\xa3\xde\x3d\x40\x0b\x4c\x99\x39\x06\x50\x4c\x10\xc5\x64\x92\xcd\x66\xb5\x77\x72\x92\xee\xa2\xfc\x74\xf3\xac\x9e\xa5\x0d\x0e\x02\x37\xc2\xa4\x09\xdd\xbe\x66\x87\xbe\x21\xe5\xab\x11\x0d\xb6\x0b\xf5\xe9\xd4\xbe\x49\x1b\x81\x53\x9a\x90\xe7\xd1\x98\x76\xa4\xfe\x9d\xb6\x51\xff\xac\x17\x01\x22\xb8\x7a\x1c\xce\xce\xfb\x0d\xe9\x85\x1a\x11\x77\xa7\x9e\x7c\x52\x58\x9c\x03\xf2\xc2\x61\xd5\x80\x37\x25\x9b\x62\x01\x09\xf3\xbb\xc7\xc9\x81\x6c\x5f\x87\xbe\xdf\x9a\x30\xe2\x3a\x5d\x10\x04\xaf\x12\x3a\x37\x0b\x99\x10\xf4\x00\xbc\x8e\x6a\x80\x68\x91\x25\x92\x2e\x13\x23\xfc\x8d\x5b\x2d\x9a\x63\x36\xf3\x2a\x25\xa0\xef\x18\x79\x44\x4a\xd6\x0e\x7c\x37\x8c\xb7\x3c\x03\x44\x64\xf4\x4e\xe9\x36\x41\xd4\x86\x93\x28\xe5\x31\x24\x47\xcc\x30\x8f\x21\x9a\x67\x36\x7c\x82\xa3\x7b\x60\xa0\x82\xeb\x48\xbf\xd1\x06\x10\x4d\xfe\x80\x76\x5f\xe6\xad\x51\x16\xe9\x5a\xf2\x96\xe0\xc2\xf5\x4f\x3f\x2e\x10\x8e\x78\x2a\xb4\x27\xca\x12\x0f\x69\x78\x0a\xa8\x5f\x0f\x34\xce\x70\xa2\xdf\xd8\x25\x66\x78\x69\x36\x84\x45\x52\x78\x4e\x30\x90\x92\x41\xaa\xff\xc7\x94\x9b\x5c\x00\x98\xf1\x4b\xc3\x28\xf0\x23\x7d\x20\x03\x74\xbd\xc4\xfc\x7e\x80\x4e\x56\x0c\x2f\x68\xf4\x5f\xe9\xa4\xca\x9f\x52\x82\x26\x6c\xad\x12\xef\x9e\xbd\xb7\xfa\xa0\x7f\x29\x01\x2f\x50\x5d\x12\xfc\xeb\xf4\xa6\xd4\xa0\x46\xde\xfa\xa5\xbe\x26\x26\xd7\x3b\x46\x76\x7a\x01\x56\x1a\xca\xd6\xcd\x81\xe3\x05\x65\x81\xad\xb6\x57\xce\xd6\xe2\xa2\x56\xa1\xb4\x02\x61\xdc\xca\xba\xdd\x85\xe6\x78\x89\x95\x95\xa3\x0c\xca\x45\x2a\x89\xbe\xf7\x85\x4c\x39\x31\x19\xc5\x5a\x9d\x84\x32\x43\x54\xe8\x6f\xea\x28\x38\xa3\x24\x15\x19\x6f\x29\x36\xca\x0b\x76\x6c\x1e\x6f\xd4\x4e\xd2\xc5\x12\xa2\x2f\x9c\x88\x2c\x91\xa2\xc2\x5e\x2b\xb9\xad\x77\x12\xc8\x2f\x77\xf7\x33\x91\xf8\xa4\xe4\xd7\x72\x7b\x3b\xc0\xcf\x40\x22\xd4\xa8\x61\x4f\xd7\x5d\xb1\x23\x3f\x7e\xa1\xce\xb6\x2d\xe2\x64\x0a\x55\x50\x36\x4b\xea\xb8\xdd\xc7\xcc\xd4\xb9\xf0\x64\x1f\xce\xf3\x79\xac\x42\x66\x53\x3a\x1f\x03\x8e\x7f\x57\x24\xc3\x00\x61\xb0\x31\xd8\x9d\x5e\x04\x77\xf9\x00\x08\xaa\x34\x30\x88\x01\x3f\xd9\x98\x89\x6c\x72\x98\xc3\x55\x52\x0e\xd2\x15\x08\x26\x96\x98\x43\xbe\xfc\x9c\x26\xf1\x61\x19\x8c\x68\xb4\x1c\x28\x8f\xe1\xc8\xd8\x26\x04\xf8\x96\x60\xc5\x75\x29\x3a\x1d\x2d\x75\x63\x77\xed\x4c\x32\x89\x88\x2b\x37\x40\x85\x71\x1e\x15\x34\x89\x40\x5e\x04\xbe\x81\x97\xf6\x08\xae\x97\x17\x75\xe9\x7a\x6f\x5f\x4e\x04\x73\xd6\x46\x4e\xdc\x84\x5e\x38\x7b\x6a\x30\x73\x92\xa3\x6e\xaa\xc4\x9d\x76\xa1\x3d\x21\x72\xf0\x8b\x4b\x49\xb7\x49\x56\x62\x89\x1f\x99\x01\x89\x74\xa2\x97\x6d\x27\x1f\xaa\x79\x40\x94\x7c\x28\x7c\xe3\x4b\x0a\x75\x1d\x41\x90\x9f\xba\xe4\xc7\x81\x97\xe5\x0d\xa5\x87\xf2\x8c\x96\xdc\xfc\x19\xb3\x1c\xbd\x94\xd7\x4a\x8d\x8a\x82\xdb\x80\x82\x62\x08\xb4\x92\x81\x45\x34\x0c\x74\x06\xa0\x31\x52\x0e\x27\x18\xa8\x90\xa5\xe4\x74\x92\xc9\x12\x25\x4d\x70\x9a\x2b\x83\x1c\xbb\xb0\x0e\x4e\x9f\xbe\xb4\x47\xf5\xb5\x91\x97\x46\xc9\xa1\x4a\xc5\xa1\x7b\x14\x5d\xcf\x4f\xcb\xd1\x2d\xd3\xc8\xe3\xcd\x6a\xbf\xc3\x4b\xd9\x8c\x86\x33\x0a\x2c\xea\xd8\x63\x3c\x0f\x80\x14\x30\x85\x39\x23\xbc\x03\x99\x78\x49\x1f\x4a\x44\xe1\x19\x41\x0b\x12\xd3\xac\x98\xc8\xb6\x3e\x7a\xb6\x57\x66\x67\x9b\x9d\xa5\x0c\x70\x67\x88\x9e\x83\xb1\xf0\xa8\x6e\x6d\x0d\x41\x03\xa7\x47\x35\xa9\x84\x07\x03\xc5\xf2\x5b\xe1\xa2\x71\xe1\x8c\x59\x17\xd3\x19\x15\xf2\xe7\x02\x9b\xf3\x06\xf9\x52\x49\xf6\x74\xd8\x3f\xdb\x55\xdd\x4d\xef\x89\x46\x8c\xdb\x55\x50\x0a\x17\x36\x99\x76\x57\x00\x46\xc4\x66\x92\xa9\x7e\x77\x11\xe0\x7f\x77\xf3\xf5\x77\x53\xac\x97\xe3\xe5\x92\x70\x64\x0a\xf6\x16\x4b\xf0\xea\xb4\x2c\x78\xcb\x98\x69\x85\xe9\xbf\xae\x2f\xce\x73\xc9\x9d\xdb\x51\x85\xa6\xe1\x67\x30\x75\x47\xd5\x2b\x77\x9e\x25\x49\xed\xca\xb5\x60\x4b\xbb\x3d\x3b\xbb\xfb\x79\x78\x76\x3b\x6a\x66\x23\xcb\x7f\x56\x3b\x27\xae\x27\x66\x4e\xf4\x35\x26\xe1\xea\xca\x16\xc4\x38\xb0\x40\x19\x31\xa3\xd6\x00\x87\x2c\x49\xc2\xcc\x9a\x31\xfb\xbb\x69\x07\x00\x70\x19\xd3\x6a\xe6\x98\xa1\xc6\x89\x0b\xdf\x0f\x3f\xfb\xbb\x6a\xfc\xef\xfa\xd9\x43\x94\x0f\xe2\x03\x3a\x77\x6f\xad\x99\x57\xe3\x74\xdd\xe2\x38\xe8\x04\x9f\xe7\xca\x1d\xdc\xec\x78\xdc\x32\x4b\x14\x68\x52\xfe\x76\x72\x3a\xf4\xdc\xfd\x3d\x34\x61\x5c\x7e\x73\xac\xe5\x3c\xb4\x3b\xd0\x19\x5f\xba\x98\xbb\x4b\x8a\x1a\x33\x8d\x27\x80\x12\xbe\x69\x7d\x9f\xd0\x29\xd3\xc8\xc6\x04\xb3\x59\x86\x67\x44\x0c\x90\x7d\xf9\x98\xb9\x82\xb1\x86\xa0\xc4\x15\x22\xc1\x40\xbb\x1e\x6e\x21\xed\xea\x24\x5f\xf1\x62\x09\x21\x18\x36\x66\x66\x4c\x6c\x96\x37\xaf\xbd\xa0\xff\x75\xed\x86\xa3\x76\x9a\x6b\xc8\x24\xad\xb1\x31\xd3\x8b\xab\x33\x16\xad\x6e\x07\x0e\x20\xa8\x10\x1d\x6c\x5d\xcc\x89\xcd\x93\x05\x99\x3e\x03\x2d\x53\x73\x54\xdb\x10\xa3\x92\xf4\x1e\xc9\x8a\x76\x38\xeb\x2e\xad\x97\x27\x76\x31\xec\x99\x30\x7d\xab\xde\xf5\x5b\xdf\x01\xea\xc0\x55\xd7\x05\x68\xde\xb6\xb9\x18\x5b\x23\xcd\xf3\x0d\xc5\x8a\x47\x18\x15\xa1\xe8\x10\xbc\xde\x41\x0d\x84\xd6\x5d\xd2\xbf\x6f\xec\x54\x87\xd2\x09\xad\x5f\x6b\xd2\xad\x9b\x5e\xab\x2c\x9c\xe6\x97\xee\xc0\x44\x0a\x3a\x65\x1e\x58\x37\x19\x59\x54\x53\xa5\x62\xeb\x98\x58\x71\x8a\xac\xf4\x69\xea\x50\x42\xc5\x46\xdd\xc9\xf5\xa7\xd6\x3d\x72\x1a\x82\xb9\xec\x3a\x49\x58\x73\xcf\x05\x02\xb6\x46\x4c\x1a\x6c\x96\x71\xcb\x10\xaa\xc5\x0b\x03\x3a\x43\x6c\x00\x1e\x03\xb7\x89\x06\xf9\xca\x0d\x34\xbf\x7a\xc6\x85\x12\x97\x46\xde\x19\xa9\xad\xcc\x9c\x31\xb3\xe9\x03\x56\x1c\x0f\x6d\xc9\x27\xee\x3e\xd5\x71\xc6\xa5\x06\xdf\x82\xc6\x2a\xf3\x5a\x61\x58\x8e\x19\xe4\xa6\x33\x30\x21\x27\x02\xb2\xa7\x4c\x06\xb6\xf9\xc2\xa3\xb3\xc2\xcc\x71\xbc\xaf\x91\x79\x05\x35\x20\xb8\xe7\xbf\x51\xff\xff\xd7\x6f\xfe\x6f\x00\x00\x00\xff\xff\xba\x9b\x7a\x6a\xe2\xf7\x02\x00") +var _adminSwaggerJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x7b\x73\x23\xb9\xb1\x27\xfa\xff\x7c\x0a\x5c\xed\x46\xcc\xb4\x4d\xa9\xc7\xf6\xfa\x84\xb7\x4f\x9c\xb8\xc1\x91\xd8\x3d\x3a\xa3\x96\x64\x3d\xa6\xd7\x77\xe9\x90\xc1\x2a\x90\x84\x55\x44\x71\x00\x94\xd4\xb4\x63\xbe\xfb\x0d\x24\x1e\x05\xd4\x8b\x55\x24\x25\x51\x9a\x3a\x1b\xeb\x51\x93\x2c\x14\x90\x48\x24\xf2\xf1\xcb\xcc\x7f\x7f\x83\xd0\x81\x78\xc4\xb3\x19\xe1\x07\x1f\xd0\xc1\x1f\x8f\xbe\x3f\x18\xa8\xcf\x28\x9b\xa6\x07\x1f\x90\xfa\x1e\xa1\x03\x49\x65\x42\xd4\xf7\xd3\x64\x25\x09\x8d\x93\xf7\x82\xf0\x07\x1a\x91\xf7\x38\x5e\x50\x76\xb4\xe4\xa9\x4c\xe1\x41\x84\x0e\x1e\x08\x17\x34\x65\xea\xe7\xe6\x4f\xc4\x52\x89\x04\x91\x07\xdf\x20\xf4\x2b\x0c\x2f\xa2\x39\x59\x10\x71\xf0\x01\xfd\x5f\xfd\xd0\x5c\xca\xa5\x1d\x40\xfd\x2d\xd4\x6f\xff\x0e\xbf\x8d\x52\x26\xb2\xe0\xc7\x78\xb9\x4c\x68\x84\x25\x4d\xd9\xfb\x7f\x8a\x94\xe5\xbf\x5d\xf2\x34\xce\xa2\x96\xbf\xc5\x72\x2e\xf2\x35\xbe\xc7\x4b\xfa\xfe\xe1\x0f\xef\x71\x24\xe9\x03\xb9\x4b\x70\xc6\xa2\xf9\xdd\x32\xc1\x4c\xbc\xff\x37\x8d\xd5\x1a\xff\x49\x22\xf9\x2b\xfc\x23\x4e\x17\x98\x32\xfd\x37\xc3\x0b\xf2\xab\x1b\x07\xa1\x83\x19\x91\xde\x3f\x11\x3a\x88\x89\x88\x38\x5d\x4a\x43\x95\x2b\x22\x39\x25\x0f\x04\xc9\x39\x41\xfa\x75\x48\xbf\x0e\xa9\xd7\x21\x4b\x35\xb1\x24\x11\x9d\x52\x12\xa3\xc9\x0a\x51\xb6\xcc\x24\xe2\xe4\x97\x8c\x08\x89\xa6\x34\x91\x84\x8b\x23\x43\x32\x78\x4b\xba\x24\x1c\xd6\x79\x1a\xab\xb7\x7c\x22\x72\x08\x63\x9f\xc1\xd0\x97\x09\x66\xfe\xaf\x39\x11\xcb\x94\x09\x22\x82\xa9\x22\x74\xf0\xc7\xef\xbf\x2f\x7c\x54\x5e\xc1\x10\x89\x2c\x8a\x88\x10\xd3\x2c\x41\x76\x24\x7f\x32\xf0\x10\x6c\x32\x2e\x0d\x86\xd0\xc1\xff\xe4\x64\xaa\xc6\xf9\x1f\xef\x63\x32\xa5\x8c\xaa\x71\x85\xe6\x25\x6f\xb6\xc1\x53\xbf\x7e\x53\xf5\xf7\xaf\xde\x8a\x96\x98\xe3\x05\x51\x64\x71\xbb\xaf\xff\xaf\xb0\x16\xb5\x5f\xea\xe5\xf9\x9e\x16\x27\x5e\x58\xed\x39\x5e\x10\x94\x4e\x61\xbb\xcc\x13\xf0\x37\x27\x22\xcd\x78\x44\xd0\x84\x24\x29\x9b\x09\x24\xd3\x12\x0d\x28\x8c\xa0\x58\xad\xf8\x8d\xda\x4a\xca\x89\xda\x2b\xc9\x33\x52\xf8\x56\xae\x96\x30\x49\x21\x39\x65\x33\x9f\x14\xbf\x0e\x5a\x2d\x4d\x73\x68\x87\x95\xe9\x07\x6a\x17\x36\x66\x43\xfb\x93\x08\x33\x34\x21\x48\x9d\x4b\x1a\x13\x4e\x62\x84\x05\xc2\x48\x64\x13\x41\x24\x7a\xa4\x72\x4e\x99\xfa\xb7\x66\xdf\xc8\xd2\x6c\x7f\x68\x03\x7f\x36\x53\xe6\x56\x10\xae\x26\xfe\x40\x63\x12\xa3\x07\x9c\x64\x04\x4d\x53\x1e\x90\xe7\x68\xcc\x6e\xe6\x8a\x0e\x8b\x09\x65\x70\xf2\x14\x2d\x2d\x87\xfc\xde\x92\xeb\xf7\x48\xbd\x0f\x65\x8c\xfe\x92\x91\x64\x85\x68\x4c\x98\x54\xe7\x5a\x14\x47\xfb\x7d\x0a\xef\xc7\x09\x3a\x44\x8a\xce\x84\x4b\xa0\x77\xca\x24\xf9\x2a\x05\x3a\x44\x09\xbd\x27\xe8\xdb\x33\x2a\x24\x1a\x5e\x9e\x7e\x3b\x40\xdf\x9e\xe5\x82\x43\x7c\xfb\x0c\x14\x76\x7f\xff\xdd\x3b\x7a\x12\xcf\x8a\x87\xee\x60\xa8\x4e\xf3\xb5\xbe\x26\xf2\x11\xfe\xfe\x8d\x3f\x8e\xd9\xaf\x66\xd9\x9b\x0b\x5e\x23\x75\xbb\xc8\xda\x8f\x44\x46\xf3\x35\x82\x56\x6c\x29\x69\xd5\x76\x14\x45\xad\x78\x5d\xb2\x56\x2d\xe1\xa9\xe5\xed\x36\xc2\x16\x4b\x38\x05\x98\x32\x7d\x68\xdc\x19\x0a\x77\x06\xbd\x9c\x58\xd9\x46\xde\x7a\xab\xf1\x44\xae\x95\xa4\x1e\x25\xf6\x64\xad\x09\x5d\xd0\x75\xfb\x78\xca\x62\xa5\x76\x19\x21\xc7\xb2\xc5\x84\x70\xb5\x74\x2b\xee\x60\x85\x13\x25\xfe\x64\xc6\x19\x89\x6b\x96\xf6\x4b\x46\xf8\xaa\x61\x6d\x53\x9c\x88\xba\xc5\x51\x26\x89\xd2\x6b\x0b\x5f\x4f\x53\xbe\xc0\xd2\xfc\xe0\x3f\xfe\x57\xd7\xc5\xcb\xf4\x9e\xac\xdb\xe7\x53\xbd\x6b\x11\x16\xb0\xdd\x8b\x2c\x91\x74\x99\x10\xb4\xc4\x33\x22\x0c\x15\xb2\x44\x8a\x01\xfc\x4c\xe9\xd2\x84\x1f\xba\xdb\x06\xde\x60\x6f\xd9\x4c\xc0\x27\x68\xea\x04\x19\x23\x5f\x25\x8c\x34\x66\x70\xcf\x02\x89\xfc\xdb\xe3\x09\x48\xb9\x19\x9f\x88\x94\xcb\xbb\xc9\xea\xe8\x9e\x94\xde\x5b\xcb\x2d\x98\x21\x2c\x25\xa7\x93\x4c\x12\xb5\x6e\x35\x86\xbd\x27\x41\xf4\xe9\xcb\x58\xa8\xcb\xf7\xe2\xe4\xe2\xbb\x7b\x2c\x79\x3a\xc3\xec\xdd\x07\x34\x8c\x63\xa4\x27\xaa\x7e\x43\x63\x7d\x25\xcf\x09\x27\x47\xe8\x66\x4e\x05\x12\xf3\x34\x4b\x62\xc4\xc8\x03\xe1\x8a\xb6\x64\xb1\x94\xab\xbd\xa3\x56\x4c\x39\x89\x80\x30\x5d\x4e\x98\x7b\x4a\x11\x4d\x19\x3d\x2b\x4d\xba\x7b\xb2\x02\xc5\xa5\x4c\xbe\x67\xe0\x97\xc2\xb7\x84\x65\x8b\xc2\x5d\x01\x9f\x9f\x8c\xae\x8f\x47\xe7\x27\xa7\xe7\x9f\x0a\x4f\x28\x35\xc2\x7d\x15\x7c\xf3\xf7\x12\x6d\xa6\x38\x4b\xe0\x54\x7b\xa3\x3d\x9b\xe2\x12\xcd\x69\x12\x73\xc2\xde\x4b\x2c\xee\xef\xc8\x57\x12\x65\xfa\x9e\xfd\x77\xf8\xc1\x9d\xd2\x3e\xd3\x98\x84\x9f\x04\xff\xc8\xd5\x9d\xce\x8f\x3a\xab\xb4\xf3\x93\x60\xc3\xb6\x7b\x0e\x3e\xa1\x71\xe5\xaf\xe1\x93\x35\x6b\xb0\xbf\x69\x98\xac\xfd\x49\xed\xac\xec\x0f\x8c\x02\x57\xf9\x1b\x4e\x24\x5f\xdd\x61\x29\xd5\x29\xdf\x40\x67\x84\x2d\x45\x6a\xb5\x28\xdf\x4f\xa3\x3e\x6a\x45\x11\x64\xb7\xd3\x1c\xd5\x0c\xf2\x5f\xae\xd3\x17\xcf\xd3\x98\x8c\xdc\xb0\x1f\x53\x7e\x83\xc5\xfd\x6b\xd0\x19\x83\x89\x3f\x87\xda\xb8\xe9\x01\x7a\x73\x46\xfd\x86\xe2\xa0\x77\x01\x6c\x4f\xc9\xb6\x0e\x83\x94\x23\xb1\x12\x92\x2c\xd6\xba\x0e\x5e\x0f\x21\x8c\xbc\xdf\xd7\x09\x17\xae\x9c\xdf\xc0\xa9\x0f\x2f\xd0\xfe\x78\x77\x20\xd9\xae\x1c\x7f\xfb\xbe\x4e\x1b\x82\x69\x5e\xea\xb5\xdd\x3e\x1b\x70\x30\x7c\xb2\xf7\xcb\x0c\x54\xbb\x5d\x4f\xf2\x89\xbc\x06\xb5\x7b\x65\xa9\x7d\x07\x13\x58\x63\xf2\x85\xae\x63\x77\xfe\xd4\xa3\xbe\x73\x45\x7b\xcc\xa4\xb2\x79\x8d\x6f\x89\x70\x14\xa5\x5c\xab\x82\x71\x83\x78\x7b\x3e\xa3\xef\xf6\xfc\xfa\x72\x74\x7c\xfa\xf1\x74\x74\x52\xb6\xfa\x6e\x86\xd7\x3f\x95\x3f\xfd\x72\x71\xf5\xd3\xc7\xb3\x8b\x2f\xe5\x6f\xce\x86\xb7\xe7\xc7\x3f\xde\x5d\x9e\x0d\xcf\x5b\xdb\x89\xfe\x04\x3a\xee\x66\xef\x00\xdb\xa5\x03\x6c\xf0\x76\x3d\x60\x26\x7a\xd0\xde\xfb\x85\x12\x2a\xa4\x22\x90\x79\x12\x2d\xb1\x10\xfa\xfe\xd5\x33\x38\x1a\xb3\xcf\x29\x27\x88\xb2\x69\x8a\x52\x08\x0e\x09\xc9\xb3\x48\x52\x36\x73\x0f\x7d\x40\xe3\xec\xfb\xef\xff\x14\x9d\x51\x76\x0f\x7f\x91\x7d\x24\x4e\xef\x1e\xdc\x84\x5a\xbd\x7b\xd0\xff\xee\x75\xb8\x07\x63\x2c\xf1\x7b\xdf\x2b\xf8\x34\x78\x12\x1d\xb9\xc4\x2c\x46\x69\x26\xd5\x9f\xea\xbd\x68\xca\xd3\x85\x3a\x37\xe4\x2b\x15\x20\x25\x1e\x53\x7e\x3f\x4d\xd2\xc7\x76\xde\xaa\x4f\x44\x3a\x7f\xcf\x09\x96\xf8\x35\x38\xa9\xbe\x98\x15\xba\x89\x7f\x22\x52\xcd\xfd\xca\xbc\xa5\x87\x96\xf4\xd0\x92\x97\x85\x96\xec\x95\xa7\xe8\xe9\x65\x5f\xe8\x56\xd2\x02\xb0\x26\xea\x51\x1b\xd4\xa8\x89\x59\x78\x21\x89\xa7\x14\x9a\x61\x20\x60\x8d\xc0\x0c\x9c\xe4\xaf\x45\x68\x06\x93\x7e\x7e\x81\xf9\x9b\xf0\xe1\xf7\x2e\xfa\x0d\x09\xf5\x2a\xe5\x6a\xcb\x2b\xe3\xd9\x1c\xec\x4f\x2f\xe7\x4b\xe1\xef\x2e\xf1\xee\x0e\x01\xee\xd6\x11\xed\x35\x21\xec\xca\x98\x75\x55\x90\xba\x1c\x95\xae\x0c\x43\x6f\x15\x77\xee\x7a\x25\xb5\x8f\x38\x7f\x22\xf2\x06\x8b\xfb\x57\x77\x25\x05\x93\x7e\xfe\x2b\xe9\x37\x1a\x68\xee\x23\xcb\x4f\x48\xba\xb7\x7e\x91\xed\x6f\xec\xf8\x37\x10\x2c\xee\xa3\xc3\x9d\x68\xf4\xb6\xc2\xc1\x6f\x35\xfe\xfb\x3a\x03\xbe\x7d\x84\x77\x7f\x23\xbc\x4f\x6a\x07\x91\x07\xc2\xa4\x00\x8f\x97\xaf\x4e\x1f\x2c\x53\xd1\xac\xfe\x1f\x73\x82\x25\x41\xb8\xe0\x6a\x42\x30\x20\xe2\x24\x4a\x79\xac\xd4\x7e\x8c\x96\x73\x2c\x08\x92\x1c\x33\x41\xd7\xa9\xfe\x7a\x54\xf0\xed\xa8\x71\x5e\x83\xd6\x1f\x38\xa2\x60\xd6\xcf\xa5\xf3\x4f\xd2\xb8\x74\x34\xf4\xa9\xa9\xfa\xa6\x59\xbc\xec\x6c\xe9\x90\x87\xd6\x66\xe5\x4f\xc8\xcd\x4a\x94\x6d\xc8\xcd\xa1\x95\xba\x13\x6e\x06\xb3\xf0\xb5\x70\x73\x60\xc3\xfe\xb6\xb8\xb9\x6a\xe9\xfb\xc0\xcd\x36\x00\xba\x21\x47\x97\xe3\xa7\x3b\xe1\x6a\x17\xb4\x7c\x2d\x9c\x5d\x8a\xb2\xfe\xb6\xb8\xbb\x6e\xf9\x2f\xcb\xe1\xce\xf7\xba\x2b\xde\x5e\xcf\xb8\x8e\x00\xaf\x81\x69\xdd\x64\xf5\xdc\x7f\x33\xdc\x5a\x5a\xf7\x9e\xb0\xe9\x7b\x4e\x74\x4e\x55\x27\x7e\xbd\x32\x0f\x75\xe6\x58\xfb\x60\xcf\xb3\xaf\x89\x67\xed\xae\xed\x0f\xd7\xd6\x21\xb8\xba\xe7\x19\x36\xc0\xb2\x04\x5a\x60\x19\xcd\xd5\x97\x3a\x24\xd4\xb2\x18\x45\x9e\x58\xf8\xaa\xb8\xfb\x39\xb2\x09\xdf\xb6\xf3\xb7\x77\xfa\xfe\x06\x8b\xfe\xec\x0d\x42\xb9\xcf\x8a\xd8\x61\x56\x04\x15\x7d\x56\x44\x9f\x15\xd1\x96\x40\x7d\x56\x44\x9f\x15\xe1\x7d\xf7\x3a\xb2\x22\x9e\x3e\x21\x62\x37\x59\x0f\xaf\x4a\x89\xee\x15\xe8\x5e\x81\xee\x53\x1b\xdc\xd2\x76\x25\xc0\xec\xd3\x07\x31\x49\x88\x24\x8d\xe2\xe7\x86\xf0\x85\xb2\x0d\x82\x02\xbf\x15\x41\x83\xbc\x76\x90\xe3\x20\x70\x6f\x34\xc9\x25\x37\xf6\xeb\x94\x4e\x6e\xfa\x7d\x26\x56\x2f\xae\x7a\x71\xb5\xc9\xd2\xf6\xc7\x2b\xeb\x1d\xe6\x17\x75\xcb\x7a\xe5\x82\xef\x68\xbc\x9b\x8a\xc1\x4e\x6d\xf4\xeb\x05\xe7\xa4\x08\x4a\xb6\x6e\xe6\xa4\xcd\x8b\xef\x9e\xc6\xaf\xc2\x4f\xab\xe4\x48\x3c\x62\x92\xca\x95\x43\xa9\xf1\xbe\x70\x70\x5f\x38\xb8\xfd\x5a\x7b\x0f\xe1\x0e\x3d\x84\x7d\xe1\xe0\xde\x07\xd6\xfb\xc0\x5e\xb9\x0f\xcc\x6f\x75\xb0\x11\x62\x87\xc5\x88\x93\x19\x15\x92\x70\x84\x6b\xb4\x95\xf5\x10\x9e\xd7\xda\x23\xa6\x35\x20\xc2\x7f\xed\xc1\xff\x6a\x31\xfd\x2b\x73\xbd\xc0\x19\x98\xe0\xd8\x35\x84\x00\x9d\x62\x81\x57\x68\x8e\x1f\x08\x9a\x62\x9a\x68\x8b\xc1\x88\x8d\x86\x15\x36\x4d\xe8\x7f\x77\x9b\x10\x0e\xa7\xc3\xc9\x94\x70\xc2\x22\x2d\x06\xb5\x56\x10\xe1\x04\x11\xd0\xd6\xf4\x6f\xe6\xca\x7e\x4b\x38\xc1\xf1\x0a\x4d\x08\x61\x8e\x6d\x2a\xae\xd0\x9a\x39\xef\x44\x9b\x7b\x71\xfb\xa5\xcc\x3d\xfb\x62\xbd\x3c\x09\xac\xa4\x5a\x24\x6c\x6f\xb5\x88\x3f\xbe\x2e\x51\xd1\xa3\x4b\x7a\x6f\xd3\xcb\x7b\x9b\x7a\x74\x49\x6f\x3b\xee\x81\xed\xd8\xa3\x4b\x7a\x74\x49\x6f\x59\xb7\xa6\x56\x6f\x59\xfb\xdf\xbd\x3e\xcb\x7a\xc7\xf8\x92\xe7\xd2\xb0\x7b\x05\xdb\xfe\xae\x57\xb0\x7b\x05\xfb\x8d\x2a\xd8\xfb\x41\xe1\x5e\xbb\xee\xb5\xeb\x5e\xbb\xee\xb5\xeb\x5e\xbb\xee\xb5\x6b\xf3\xd4\x2e\xb5\x6b\xf8\xcb\x96\xc9\xdc\x1a\xca\xdd\x3d\xca\xf5\x89\xc8\xd7\x1a\xe2\xea\x55\xea\x5e\xa5\xde\x6f\x95\x7a\x6f\x16\xf4\xf6\xca\xde\xf5\x85\xe3\x4a\xf7\xe3\x5b\x28\x1c\x67\x9f\x3e\x58\x66\xcd\xd7\xdf\xed\x32\xb6\x79\x04\x42\x62\x99\x81\xa5\xd1\xe2\x2a\x44\x43\x89\x16\xa9\xd2\xbb\x19\x09\x7e\x63\x79\x5e\x83\x08\x66\xf4\x81\x30\x64\xf1\xb2\x03\x23\xd9\x06\x60\xfc\xfe\x6a\x05\x9c\x49\x60\xc0\x12\x61\x24\xe9\x82\x1c\xa1\xd3\xa9\x66\xa0\x08\x27\x09\x12\x44\x8a\x02\xf2\x44\x29\x64\xe6\x21\x16\xe7\x73\xb5\xef\xa6\x39\x10\x41\xff\x6c\x60\xcf\x5f\x96\x48\x7d\x1a\xed\xe0\x8f\x34\x49\xd4\x1c\x0c\xd3\x82\xf0\x59\x10\x9e\xd8\x27\x83\xd7\xda\x1f\x2f\x70\xac\xac\x09\x6f\x0a\x79\xa6\x85\xff\x7b\x10\xf3\x54\x38\x28\x45\xf0\xbc\x7e\xfa\x08\x19\xbb\x4f\x17\x78\x6a\x35\x8d\x39\x8e\x95\xd8\x8f\xe6\x24\xce\x12\x82\xb0\x10\x69\x44\xb1\x24\x31\xa2\xfa\x5a\x40\x54\x5a\x2b\xd1\xfe\xc8\xbe\x3a\xa6\x02\x4f\x12\x12\x1b\x1a\x93\x1c\xd9\xd1\x38\x73\x2a\xd0\x84\x28\x12\xab\x9b\x27\xa4\xfe\x5c\x5f\x4a\x15\xb3\xf1\xa6\x42\xca\x33\x21\x4c\x4f\xa4\x41\xa9\xd2\xcc\xf9\x5a\xf5\x2a\x3d\xfb\x3e\x0f\xa5\xd7\xb2\x7a\x2d\xab\xd3\x82\xde\x94\x96\xb5\x47\x68\x34\x2b\x90\x5e\x14\x8d\x06\x31\x2b\x25\xf9\xef\x9c\x53\x4a\x6c\x66\xaf\x3b\xbf\xdf\x67\x3b\xe4\xd0\x8d\x78\x9c\xb2\x29\x9d\x65\xdc\x38\xe0\x27\xea\xc4\xae\x0d\x8c\x55\x8c\xf3\x2a\x6e\x9c\xea\xa9\x3f\xd7\xc5\xd3\xc5\x86\x40\x87\x48\x69\xd7\x77\x57\xa3\xeb\x8b\xdb\xab\xe3\xd1\x07\x34\x5c\x2e\x13\xaa\x1d\xfb\x51\x26\x64\xba\xa0\xff\x52\xcb\xd0\x45\x5d\x9d\xe4\x36\x6a\x88\x00\x85\x03\x22\x09\xe2\x68\xcc\xd0\x21\x3a\x3e\xbb\xbd\xbe\x19\x5d\xd5\x0c\x68\x98\x00\x5a\x99\x90\xc5\x32\x01\xad\xe4\x3e\x9b\x10\xce\x88\x24\x02\x45\x49\x06\xb0\x66\x17\x5f\xd0\x83\x8e\xfe\xcf\xe8\xf8\xf6\xe6\xf4\xe2\xfc\xee\xaf\xb7\xa3\xdb\xd1\x07\x64\xb9\x49\x0d\xab\xe6\xa5\x66\x11\xaf\x18\x5e\x28\xf3\x27\xac\x3e\xfb\x4b\x46\x32\x50\x82\xe8\x8c\x2d\x08\x93\xc5\x11\xed\x84\xcf\x86\x3f\x8c\xce\xc2\x91\xe7\x04\xfd\xf4\x97\x7c\x52\x09\x9e\x90\xc4\x04\x3c\xc0\x9f\xaf\x04\x76\xfe\x22\x13\x09\xc9\x4a\x62\xf2\xb9\x6d\xa9\x60\x43\xcb\xd6\x51\x71\x87\xca\xbf\x28\x90\xbb\xe9\x07\x01\xf5\x5a\x1b\x5b\xe1\x0c\x9f\x4d\xd2\xa9\x03\x12\xdf\x01\x42\x9a\x12\xf1\xfe\xdf\xc1\x41\xf9\xf5\xc9\x2a\x52\x20\x2f\x8d\xce\x48\xbe\x75\xcd\xe4\xf2\x07\x5e\x83\xbc\xf3\xa7\xfb\x92\xb2\x6d\x47\xfa\xc4\x7e\xb9\x2c\xba\x6b\x6b\xbd\xd5\xd1\x5b\x1d\xd5\x94\xe9\xe1\x12\x35\x14\xde\xd5\xb5\xb3\x89\x97\x6f\x4a\x49\x12\x8b\x92\x9b\x26\xb8\x36\xd6\xba\x64\x5e\xef\x8d\xf1\xbc\x4e\x99\x2e\xba\xf1\x95\xf3\x9f\x1b\x87\xba\xda\xad\x05\x91\x18\x7a\xf3\xc9\x14\x65\x30\xf5\xfe\x16\x2a\x93\xb9\xbf\x85\xfa\x5b\xa8\x96\x32\xfd\x2d\xf4\x8a\x9d\x57\x15\x92\xfb\x45\xbd\x57\xeb\x6c\xba\xad\x0a\xc3\x54\xb8\xb6\xca\xb6\x9c\x40\x62\x8e\xb9\x6e\x01\x12\xa5\x8b\x45\xca\xbc\xc8\xeb\x6a\x49\x06\xc8\x05\xdb\xc0\x4d\x01\xd3\x58\xe7\xf9\xca\x5f\x43\x5f\x87\xcf\xcb\xa3\xcb\x73\xa0\xc2\x7b\x3b\x70\x0d\x81\xfa\x0a\x3a\x7d\x05\x9d\x1e\xa7\xdd\x57\xd0\x69\xe6\x96\x1e\x89\xdc\x23\x91\xfd\xef\x5e\x07\x12\x39\xec\x3a\xad\xc1\xc8\x55\x6d\xda\x7f\x2d\x7f\xe3\xbb\xf4\x4b\x4d\xba\x8d\xa7\x5f\x77\xb0\xde\x1e\xb3\x1c\x36\xf5\x5c\xe7\xf2\xf7\xdb\x40\xee\xb9\xc2\x37\x4d\x56\x92\xd0\x38\x29\xf7\xaf\x7c\x06\x4c\xcd\x6f\xa5\x1f\x7f\xdf\x7d\x7f\x13\x42\xbd\xd5\x12\xb0\xcf\xda\x59\xff\x79\x85\xb7\x2d\x93\x7d\x57\x23\xc2\xab\xbf\x77\x82\xbc\xfa\xeb\x6d\x13\xbc\x43\xd9\xbd\x69\x62\x77\x20\x1b\x5f\x87\x19\xef\xcf\xf8\x39\x0c\xf9\xc6\xdd\x7f\x73\x72\xbd\x89\x97\x7b\xe9\xde\x92\x5c\x6f\x55\xc6\xf7\x86\xfe\x2e\x0d\xfd\xc1\xdb\xb5\xf4\xfb\x84\xec\x06\xe2\xf4\x6e\x90\x4d\xa8\xd5\xbb\x41\xfc\xef\x5e\x87\x1b\xc4\xdc\xd5\x77\xfa\xaa\xf7\xd0\xdb\xef\xff\x9d\xff\xed\x29\xd2\xde\x87\x15\xb1\xb0\x0e\x88\x15\x8b\x0b\x26\x71\xae\x7e\xe4\x83\x57\x20\x59\xcc\x1c\x0e\xad\x52\x92\x47\x75\xd7\x02\x5b\x2e\xf5\xa3\x27\xf0\xe4\xeb\x82\x81\xd7\x4c\xfd\x79\x01\x2f\x65\x4e\x58\xa7\x3a\x41\x2c\xdd\xe9\xd3\x54\xc3\x9c\x1f\xe7\x14\xae\x49\xa8\x73\x02\x57\x89\xb7\xe1\x36\x81\x0c\x03\xd2\xbb\x4e\xe7\x78\x6e\x75\xaa\xc4\xee\xed\x16\x6e\x78\xf4\xf5\xae\xfb\xc5\x21\x02\x6b\xf8\xfe\x45\xe1\x02\x0d\x32\x73\x37\x48\x81\xe7\x93\x8f\x9f\x88\x7c\x7b\xc2\xf1\x13\x91\xcf\x25\x19\x37\x15\x87\x8d\x22\x21\x2f\xcb\xbe\x27\xd2\x60\x33\xd1\xf7\xba\xd6\xd8\x27\x3c\xf5\x09\x4f\xbf\xf5\x84\x27\xfb\x74\x9b\x6e\x95\x27\xf0\x93\x67\xbc\xaa\xf4\x0b\xdf\xde\x6d\xa5\xd7\xd5\x5f\x58\xfd\x85\xd5\x6d\x8d\xfb\xaa\xa2\x5b\x7e\xde\x07\x15\xbd\x53\x0e\xba\x8e\xde\xe5\xed\x6d\x2c\xfb\xaf\x8d\xd0\x5d\xda\x97\xbd\x1e\x21\x24\xba\xca\x99\xad\xf2\x98\xd6\x35\xa5\xba\xca\x3b\x51\x55\xc4\x8e\x8a\x24\xb7\xbf\xbe\x2c\x89\xb2\x7d\xa7\xba\x9d\xf9\x73\x09\xfb\x7d\x11\x11\xf9\xba\x5f\x54\x28\x28\x1d\xb7\x08\xf9\x0a\x91\x04\x77\x8d\x20\xb0\x35\xbf\x0d\x32\xbd\x9b\x7f\x5a\x00\x8a\x85\xdf\x19\xe8\x18\x7c\x0d\x53\x2e\xce\xc3\x7e\xe8\xbf\xd0\x7e\x96\x8f\x6c\x3f\xb1\xe5\x33\xe1\x43\x4e\x24\x5f\xdd\x61\xa9\xec\x08\xb9\x3d\x3a\x2d\xb4\x1a\xd6\xa0\xd3\x6e\xb0\xb8\x7f\x95\xe8\xb4\x70\xe2\x4f\x7c\x66\x5b\xf3\xe4\x9b\xc3\x35\xb4\x3d\x61\x3d\xc6\x61\x03\xd2\xbd\x55\xbc\x43\x93\x08\xdd\x9b\x19\x16\xa4\xf8\x5b\x3c\xb9\xe1\x9d\xd4\x1f\xd1\x26\x1a\xbd\xb9\xd2\x6e\x05\x55\x63\xcd\xda\x5e\x49\x89\xb7\xa2\xb6\xb4\xeb\x59\x3d\x0d\x04\xca\xdb\x8d\xbe\x0c\xf0\x1b\x2d\x03\xdc\xce\xb8\x69\x6d\xd9\xb4\x35\x6b\xda\xd9\x34\xf5\x06\xcd\x16\x48\xea\xd0\xce\xd8\x14\x49\x1d\xe8\xf1\xaf\xc2\x5b\x13\xcc\xf8\x39\x90\xd4\xbf\x51\xd3\xa3\xb7\x3b\x9e\x84\x6e\x6f\xd5\xe8\xd8\x73\x8b\xa3\xc7\x80\xef\x12\x03\xde\x43\xc0\x7b\x08\x78\x5b\x02\xf5\x10\xf0\x1e\x02\xee\x7d\xf7\x3a\x20\xe0\xc6\x5e\xdc\x16\xbd\x58\xa5\xb2\xe7\x0a\x6d\x50\x31\x65\x73\xf5\xfd\x34\x7e\x15\x7a\xbb\x57\xc8\xc8\x59\xd6\xfc\x39\xf4\xf7\xbe\x62\x4f\x5f\xb1\xa7\x57\xe2\x7e\x4b\x4a\x5c\xaf\xa7\x6c\x42\xad\x5e\x4f\xf1\xbf\x7b\x3d\x7a\x4a\x00\xe8\x5a\x8b\x2b\x3a\xe6\x04\x4b\xdd\xcf\x8a\xe7\x10\xa3\x82\x66\xd2\xa4\x76\xe8\x01\x94\xe2\xf1\x1a\xb4\x0e\x35\x4f\x3d\xe3\x16\x00\x23\xff\x85\x07\xff\xab\xc5\xc4\xaf\xcc\x25\x02\x9c\x3e\xc1\xb1\xeb\x22\x06\x9a\xc3\x02\xaf\xd0\x1c\x3f\x10\x34\xc5\x34\xd1\xfe\x1b\x23\x1c\x1a\xd6\xd6\x34\xa1\xff\xdd\x6d\x42\x38\x9c\x4e\x8e\xd6\x54\xc2\x4e\xdf\xfd\x11\x4e\x10\xd1\x45\x37\xe1\x37\xd0\xe2\xcc\x34\x94\x9b\x10\xc2\x3c\xe8\x5f\xdb\x39\xef\x44\x67\x7b\x71\x94\x96\xcf\x37\x2f\x0e\xd0\xaa\x6f\x0b\xbc\x3b\x63\x64\x1b\x0b\x44\xfc\xf1\xb5\x88\x82\xe7\xb0\x37\xde\x70\x4c\xa0\xf7\xfb\xff\x36\x6b\x74\xef\x8d\xae\xda\x5b\x80\x3b\xb4\x00\x21\xa7\xe3\x8d\x9a\x80\xbd\x1f\xbf\x81\x38\xbd\x7d\xbc\x09\xb5\x7a\xfb\xd8\xff\xee\x15\xd9\xc7\x3b\x6e\x40\xf7\x84\x7a\x74\xaf\x46\xf7\x6a\x74\xaf\x46\xbf\x59\x35\x7a\x3f\x28\xdc\xeb\xd0\xbd\x0e\xdd\xeb\xd0\xbd\x0e\xdd\xeb\xd0\xbd\x0e\x6d\x9e\xda\x89\x0e\x0d\x7f\xd9\xcc\xda\xdd\xa4\xd1\xb6\x8b\x48\x99\x3c\xda\xd7\xa2\x3c\xf7\x8a\x73\xaf\x38\xef\xb7\xe2\xbc\x37\x0b\x7a\x7b\xc9\x73\x7d\xfa\x59\xe9\x16\x7c\xb3\xe9\x67\xae\xca\xfe\x06\x15\x84\x83\xcf\xec\x40\xcf\x5d\x57\x78\x60\x25\x23\x66\x31\xb2\x93\xe8\x54\x65\xf8\x8b\x79\xe8\x75\x55\x25\x2b\xcf\xba\xaf\x2d\x8c\xbc\x5d\xeb\x6b\x0b\x3f\xe1\xba\xed\x39\x5b\xb3\x72\xcb\xa3\xda\x7b\xf5\x4a\x97\xfd\xe2\x30\x9f\xfa\x93\xfe\xa2\xa0\x9f\xca\x9b\xa3\x94\x89\x90\xf7\x68\x7a\xfe\x92\xca\xdb\x5c\x0d\x9f\x88\x7c\x2b\xf7\x42\x5f\x56\xb9\xaf\x52\xb9\x71\xf7\xa5\x4e\x12\xfe\x75\x2d\xb1\xaf\x1c\xdd\x57\x8e\xee\x2b\x47\xbb\xb7\x3e\x47\xe5\xe8\x6d\x6e\x64\xfd\xfa\xb7\x72\x29\xf7\xd5\xa3\xfb\x7b\xb9\xbf\x97\x2b\x97\xb8\x87\x06\xd7\x5e\xd4\xc6\x76\x06\xd7\xae\x72\xbe\xfd\x50\x96\x13\xc6\x3b\x4d\xfd\xb6\x94\xec\xd3\xbf\xcd\xff\xf5\xe9\xdf\x6d\x16\xd7\xa7\x7f\xf7\xc0\xa5\x3e\xfd\xbb\x87\xe6\xf4\xd0\x9c\x37\x00\xcd\xb1\x9a\xc5\x2e\x52\xc0\x2b\xb4\x94\xf5\x69\xe0\x5f\xca\x2a\xf3\xde\x6a\x20\x76\xae\x7d\x3a\x78\x9f\x0e\xbe\x2d\xef\xec\x85\xb1\xf2\x24\x69\xe1\x15\x62\x60\x5b\x0b\xe5\x75\xa4\x87\xdb\xd9\xf6\xb9\x2d\x3d\x44\x6f\xff\x21\x7a\x7b\x97\xdb\xb2\x37\xfa\x6c\x6f\x25\xee\xd0\x4a\xec\xd3\x5b\xfa\xf4\x96\xde\x86\x6e\x4d\xad\xde\x86\xf6\xbf\x7b\x65\x36\xf4\xd3\xa6\x89\x3f\x85\x5e\xdd\xab\xd5\xfa\x77\xbd\x5a\xdd\xab\xd5\x6f\x54\xad\xde\x0f\x0a\xf7\x3a\x75\xaf\x53\xf7\x3a\x75\xaf\x53\xf7\x3a\x75\xaf\x53\x9b\xa7\x76\xa6\x53\xef\x36\x6d\xbc\x63\x14\xcb\x4b\x45\x78\x4d\xca\x74\xaf\x48\xf7\x8a\xf4\x7e\x2b\xd2\x7b\xb3\xa0\x3e\x85\xbc\x4f\x21\x2f\x7d\xb3\xbf\x29\xe4\xdf\x18\x46\x38\xf0\x64\xbf\xbb\x24\x0e\x7e\x48\xd2\xc9\xcd\x6a\x49\xd4\x7f\x4f\xe8\x82\x30\x01\x1a\x0b\x95\x2b\xff\xe2\xac\x21\x70\x99\xb4\x07\xd7\xa7\xe7\x9f\xce\xfc\xe4\x8a\x83\xcf\xb7\x67\x37\xa7\x97\xc3\xab\x1b\x3b\x43\xb7\x2a\x9f\x16\xe6\xb9\xe0\xee\x3f\x4e\x17\x4b\xcc\xa9\x48\xd9\xe8\xeb\x92\x13\xa1\xa6\x76\x01\xb7\x6d\xca\x37\x9b\xdd\xe8\xaf\xfe\xcc\xce\xc3\x7f\x7e\xba\x09\xff\x15\xac\xe2\xec\x26\xfc\xd7\xa8\x71\x35\xde\xc0\xc5\x13\x74\x88\x3e\xdd\x7c\x40\x9f\x20\xea\xcf\xd1\xcd\x1c\x33\x48\xdd\x39\xbb\xf9\x80\xce\x88\x10\xf0\x49\xfe\xb0\xa4\x32\x81\xb5\xfd\x40\x19\xe6\x2b\x64\x97\xaf\xb3\x74\x30\xb8\x03\x2d\x69\x8a\xc4\x63\xff\xcc\x18\x28\xac\x39\xf5\xce\xd2\x19\x8d\x70\xb2\x1d\x11\x87\xe7\xfe\x79\x39\xb8\xb8\x6a\x24\x85\xff\xeb\x32\x2d\x86\xe7\x27\x90\x9d\x64\xa7\x5a\xb1\xf2\x73\x22\x24\x89\xd5\x05\x18\x6b\xe6\x55\xb6\x06\x59\x79\x17\xe3\x3f\x53\xca\x48\x8c\x32\xa1\xd4\xb5\xe1\xf9\x09\x7a\x8f\x2e\xae\xc6\xec\x82\xc7\xda\x5f\x40\xd4\x8d\xa2\x6d\x15\x2a\x10\x4b\x25\xa2\x8b\x65\xca\x25\x66\x52\x5d\xa6\x4a\x90\xa5\x86\x22\x02\x61\x4e\xd0\x71\xba\x58\x64\x12\x4b\xfa\x40\x4a\x44\x65\xda\x08\xb8\x26\xf2\x34\x06\x0f\x64\x05\x0d\xd3\x49\xa0\xe8\x1c\x2c\xb9\x1a\x5f\xd2\x82\xf6\x77\x40\xe3\x92\x3a\x68\x87\xc0\x9c\xe3\x50\x0c\x1e\x50\x49\x16\xc5\xdf\x37\xcb\xff\x6f\x8a\x7f\x85\xba\xb5\xeb\x79\x3b\xe2\x3c\xe5\xf0\x3f\x3f\x51\x16\x6f\xc6\x15\xb7\xe7\x3f\x9d\x5f\x7c\x39\xf7\x39\xe3\xf6\x7a\x74\xe5\xff\xfb\xfa\x6f\xd7\x37\xa3\xcf\x8d\xdc\x52\x1c\x25\x67\x03\x98\x1e\xdc\x33\x1f\xd0\xb5\x6e\x63\x9a\x72\xa4\x34\x87\x83\xea\x45\x7d\x26\x12\xc7\x58\xe2\xfc\x83\x34\x26\x9b\xad\xed\xf3\xf0\xfc\x76\x78\x16\x2c\xe5\xf8\xc7\xd1\xc9\xed\x59\x70\x73\xd8\xf5\x79\x9f\x5c\x8d\xf4\xbd\xe0\x7f\x76\xfc\xe3\xe9\xd9\xc9\x9d\xbb\x49\x9a\xa8\x51\x78\x6f\xf1\xf8\xdc\xcc\x09\x5a\x10\x39\x4f\x63\x34\x59\xf9\x69\x23\x79\xfa\xde\x23\x16\x28\x01\xef\x1f\x89\x8f\xc6\x5a\xd4\xe8\x51\x3f\xa8\x53\x84\xcc\xcb\xbc\x27\x16\x69\x4c\x06\xe6\x37\xea\x9c\xe8\x2c\x47\x75\x9b\x83\x51\x54\x35\xb0\x7a\x3b\x66\x88\xb2\x98\x3e\xd0\x38\xc3\x89\xce\x46\x74\x34\xfa\x80\x86\x48\x19\x27\x71\x96\x10\x24\x39\x9d\xcd\x40\x8f\x2d\x4c\x55\x8f\x66\x1e\x05\x4a\xc2\x73\xae\x63\xad\xb2\x7f\xe0\xb5\xc6\x00\xa2\x93\x44\x6b\x89\xfa\x41\xc8\xbe\x0c\x47\xe4\x58\xce\x09\xaf\x9a\x9a\xdd\x97\x0f\xda\x6d\x51\xb3\x2c\xc8\x86\xcb\x61\x6c\x10\x51\x11\x5a\xfd\x5e\x72\xf2\x40\xd3\xcc\x7b\xd4\x24\x8a\x06\x9b\x5b\x39\x7c\x4e\x00\x20\x5b\x0a\x73\xcc\x87\x09\xb9\xf9\xca\xba\x3a\xed\x1f\x23\x26\x79\xe5\xd5\xdc\x56\xe6\x18\xc5\x2f\x10\x3a\xd5\xf6\x61\xe9\xdd\xe7\x45\x4d\xbe\x6c\x3f\x1b\xed\x4f\xbd\xe4\xe8\xa0\xd2\x70\x04\xed\xbe\x4e\xea\x55\x28\x70\xb9\x04\xf8\x19\xec\x82\x45\x26\x24\x94\x9d\xd0\x2e\x28\x74\xff\x17\x81\x7e\xc9\x30\x40\x0c\x8f\xd0\x35\x21\x63\x36\x97\x72\x29\x3e\xbc\x7f\x3f\xa3\x72\x9e\x4d\x8e\xa2\x74\xf1\x3e\xcf\xc6\x7d\x8f\x97\x74\x81\x15\xbf\x10\xbe\x7a\x3f\x49\xd2\xc9\xfb\x05\x16\x92\xf0\xf7\xcb\xfb\x19\x78\x1b\xac\x0e\xfb\xde\x0d\x3b\x4b\xff\xc7\xd9\x9f\xbe\x3f\x3c\xfb\xcb\xf7\x07\x65\x91\x5a\x77\x3a\x47\x2c\xc2\x4b\x91\x25\xc6\x2b\xc9\x7d\xda\x00\x52\x16\x28\xb1\x6e\xbf\xcf\xc3\xed\xda\x4e\x20\x1f\x5f\xde\x06\x2a\x4e\xf8\xcf\xcf\xa3\xcf\x17\x57\x7f\x0b\x04\xda\xcd\xc5\xd5\xf0\x53\xb3\xaa\x53\x92\xd8\x05\x32\xfc\xc4\xd2\x47\x16\xae\x5e\x14\x17\x9d\x31\x49\x17\xc4\x0a\x6c\xf3\xcf\x1b\xbd\xd2\x0d\x56\x7e\x71\xf3\x63\x78\xf1\x7c\x3c\xfb\xdb\xcd\xe8\xee\xfa\xe4\xa7\xc6\x95\xe8\xc7\x82\x99\x5d\x83\x4b\xe5\x38\x4d\xb2\x05\xf3\xff\xde\x7c\x6e\xa7\xe7\x37\xa3\x4f\xc5\xd9\x5d\x0c\x6f\x42\xb2\x5f\x85\x9e\xba\x83\x1f\x2e\x2e\xce\x46\xc3\x60\x2f\x4f\x86\x37\xa3\x9b\xd3\xcf\x81\x92\x7a\x72\x7b\x35\xbc\x39\xbd\x38\x6f\x5c\xa6\x9d\x41\xc5\x42\xd5\xb2\xfc\x65\xee\x5a\xce\xb4\x3a\xe6\x43\x13\x05\xd3\x07\xe5\xd0\xcb\x1d\xd2\x0e\x2e\xd0\x01\x0e\x9d\x7f\x20\xd2\x33\xad\x94\x35\x32\xdc\x26\x54\x2f\xeb\x1a\x37\xba\x49\xe4\xdd\xb8\x29\xc0\xbc\x8c\x1f\x1c\x27\x49\xfa\xa8\x63\x11\x0b\xaa\xb4\x57\x93\xc8\xa9\x7e\x22\x50\x94\x71\x4e\x98\x4c\x56\x47\x15\xe2\x24\xdc\x96\x94\xcb\x13\xe7\xad\xde\x88\xe1\x2a\x5d\xbf\x65\xa7\x6f\x25\xab\x14\x1d\xbd\x76\x5a\x50\xb0\x3d\x9d\x7d\x26\x42\xe0\x19\xf9\x68\x83\x61\x3b\x12\x52\xd7\x3f\xfb\xff\xfc\xef\xeb\x35\xfc\x6c\x87\x08\x66\x08\xbe\xcd\xe1\x24\xe5\xd2\x4a\x95\x6d\x78\x39\xc2\x99\xe8\xc4\xcc\xcd\xb1\x3c\x8c\x32\x41\xf8\xa1\x71\x9e\x90\x18\x61\x35\x51\x13\xc8\x83\xb2\x4a\x4b\x2c\x14\x13\xa5\xa0\xd3\x10\xf3\xf3\x4c\x17\x5a\x42\x30\x9b\x9a\xdb\x75\xc9\x29\x8b\xe8\x12\x27\x1b\x1d\xbd\x82\x77\xc7\xe0\xf6\xbf\xa3\x53\x84\xd9\xea\x5d\x49\xf1\x92\x84\x2f\x20\xa8\x6d\xa6\xe9\x94\x98\x75\x6c\xad\x77\x87\xb1\x54\xe2\xd0\x1d\xb1\xc1\xde\xe8\x68\x4b\xdd\x72\x0b\xa3\x98\xb7\x6b\x43\x12\x27\x97\xd5\x63\x56\x11\xcc\x37\xab\x9a\xb6\xfa\x33\x5e\xaa\x2d\xd6\x25\x17\x10\xce\xd7\x68\x62\xd5\xa6\x5a\x96\xfa\x57\x40\x32\xcf\x2f\xd8\x5e\xc5\xc8\x49\x68\x82\x4e\xe5\x97\x04\x4a\xbb\x07\x23\x30\x2c\x39\xcd\x64\xc6\x95\x32\xa5\xd4\x7e\xf4\x1d\x39\x9a\x1d\xa1\x8b\x9f\x47\x57\x57\xa7\x27\xa3\x01\x1a\x5e\x5e\x8e\xce\x4f\x06\x88\xc8\xe8\x9d\xb5\xb7\x41\x6a\x92\x78\xcc\x64\x6a\xdc\x7f\x2b\x34\x4f\x1f\xd5\xbb\x16\x84\xcf\x48\xb0\x66\xf3\x63\x04\xc9\x21\x33\x2a\xa4\x8e\x94\x80\xfa\xe3\xd5\x18\xa1\x8b\xa2\x1e\xa4\x39\x24\x93\xf3\x6d\x58\x03\x0b\x91\x2d\xf0\x24\x21\x77\x14\x2f\xee\x78\x9a\xac\x3b\xc3\x95\x47\x2a\x57\x1d\xef\x84\x76\xb5\xdd\xe1\x28\x4a\x33\x26\x5b\x8f\xb6\x6e\x1f\x4f\x80\x4c\x02\x2d\xd5\x81\x02\x47\x4d\xb9\x2a\x87\x23\x97\x40\x11\x38\x8f\xc0\x7e\x00\x91\x91\xe4\xf0\x0e\xd8\x92\x2a\x5a\x1e\xeb\x72\x2f\x56\xad\xf4\x0a\x72\x6c\x43\xe0\xaa\x51\x5e\xf6\xfc\x1d\xeb\x83\x57\x55\xe7\x44\x1b\xc8\x85\xb2\x75\x80\xa1\x29\xd4\xe7\xd1\x04\x56\x9c\xa9\x0f\xc4\x2f\x59\x2a\xb1\x78\x77\x34\x66\xea\x74\xdf\x93\x95\xf6\x12\xa9\xf3\xf3\x3b\x25\xd3\x0f\x05\x61\x82\x4a\xfa\x40\x7e\xa7\xf5\x5b\x25\x01\x1e\x30\xa7\x8a\xf7\x84\x7a\x83\x29\x0b\x14\x96\x60\x99\xd2\x04\xc2\xc4\x6a\x50\x73\x7c\x4d\xfc\x7c\xe2\xd7\x6d\xb1\xdf\xe9\xe9\xcf\x88\x84\xd8\x8f\xa4\x32\x53\x3c\x10\xeb\xba\x43\xa5\xa9\xaf\x55\x2d\x80\x2b\x4e\x74\xdc\x6a\x2b\x17\xd6\x26\x67\xaa\xab\x72\x58\x3c\x2f\x54\x2c\x13\xbc\x2a\x99\x99\xeb\xce\x99\x32\xa6\xc4\x12\x47\x24\x8f\x9b\xd9\x10\x63\x94\x2e\x16\x29\x4b\x56\x0e\x2b\x13\xd3\x29\x64\xb3\x49\x75\x06\xd1\x84\xc8\x47\x42\x58\xfe\x29\x32\xb2\x00\x51\x26\x24\x66\xba\xa8\x13\x70\xcb\x58\xd1\x2a\xce\x40\x65\x1b\x1f\x0c\xd0\xf8\x20\x26\x0f\x24\x49\x97\x0b\xc2\xa4\xfa\x80\xc8\xca\x13\x3a\x5a\x60\x9a\x9c\xa7\xea\xfe\x8d\x70\x9d\xbe\xd7\x76\x5b\x38\x89\xe8\x92\x12\x26\xc5\x1d\x51\xe3\x3e\xa9\x9b\x71\x9d\x7e\x6c\x01\x39\x30\x13\x84\xe3\x98\x13\x21\xa0\x96\x89\x9d\xa4\xd1\xe6\xb5\x77\xd6\x11\xa0\x1d\x0f\x3b\xff\xde\x6e\xd9\xb8\xda\x4e\x88\x52\xee\x32\x54\xdd\x8b\xf3\xea\x13\x8d\x5c\x6b\x6a\xd9\xe4\x35\x12\x6c\x48\xd0\x21\x0c\x8a\x5e\xa0\xe2\xb1\x51\xc2\xbd\xdd\x3c\x43\xca\x5c\xab\xe7\x1a\xa7\x26\x7c\xec\x98\x2d\x68\x96\xdf\xd5\xc6\xf5\x55\xf4\xb6\x91\xb5\x33\x8e\x92\x54\x64\xbc\xa5\x11\x16\x4e\xfa\xd8\x3c\xda\x34\xef\x91\xaf\xda\x64\x89\x14\x9d\xb4\xa7\x0a\xc2\x23\x4e\x96\x9c\x08\xe0\x49\xf0\x1b\xaa\xc3\x2d\xcd\x35\x6c\x7e\x3d\x40\x94\x45\x49\x16\x2b\x1a\xe0\x24\xf7\x0b\xb2\x18\xe5\x57\xdb\x98\x2d\x8c\xe1\x81\xb0\x40\x8f\x24\x49\xd4\x7f\xa3\x74\xb1\x04\xb1\x6d\xa6\x6b\x46\x52\x06\xa2\xc4\x92\x0c\x50\x9a\x49\x35\xd8\x40\xd7\x7e\x33\x5b\x70\x38\xc1\x00\x60\xcb\x2b\xba\x8e\xd9\xad\xb0\x48\x00\x87\x3b\xd2\xbc\xae\x05\x18\x65\xe8\x13\x91\x30\x0a\x00\x41\xfd\x05\xea\x1a\x77\x95\x22\xa8\x48\xfb\x2d\x4e\x94\x59\x49\x87\x9d\x3f\xa3\x92\x70\x9c\x7c\xc6\xcb\x1f\x92\x74\xd2\xb8\xef\x43\xb4\xd0\x7a\xb6\x79\x0b\xa2\x45\x0b\xcb\x03\xcc\xac\xe3\x51\xc2\x79\x10\x0a\x5b\x73\xfc\xc3\xa8\x49\x33\x7b\x42\xcc\x82\x32\x0d\x17\x85\xf8\x53\x71\x9e\x26\x73\x7b\xdd\x1c\xc1\x42\xbc\x7b\x3d\x76\xa8\x9e\xef\xa2\x6c\x7b\xaf\x63\x82\xd0\x66\x7f\xea\xc5\xc0\x01\x91\x73\x42\x39\x6a\xb5\x2c\x7b\x7e\xef\xf4\x99\x6f\xcf\x34\x39\x6f\xd7\x99\xde\x5a\x88\x38\x01\xa1\x26\x66\x80\xab\x41\x41\xc6\xa3\x31\x2b\x4c\x02\xc5\x64\x49\x58\x2c\x10\xb0\x97\x3d\x0d\x81\xec\x1f\xa0\x29\xfd\x6a\x06\xb5\x11\x9f\xfc\xa7\x9e\xf9\x50\xe3\x54\x98\xe3\x32\xdb\x75\xb8\x1f\x2f\xe1\xf9\x46\xab\x39\x15\xca\x42\x8c\x94\x62\xc5\x49\x94\x72\x25\x12\xe1\xb5\xce\xcf\xb7\xf6\x6e\x94\x98\x2b\xa2\xe0\x75\x66\x59\x30\x8f\x1c\xc8\x1d\x63\x49\x0e\x95\x25\xba\x26\xc2\xb1\x4c\xd5\x6b\x10\x5d\x28\xdb\xc2\x05\xdd\x7c\x4b\x7e\x42\x66\x98\x21\x9e\x31\x46\xd9\xac\x66\xb6\x56\xb4\x6f\x71\x98\x95\x66\x85\x17\xca\x0e\x05\x3d\x42\x4d\x28\x9c\x87\x58\x02\x39\x1b\xe7\x61\x4c\xc9\xe7\xa2\x9a\x6c\x20\xdb\x23\x76\x96\x6d\xcd\x64\x33\x28\xa4\xbd\x37\x93\x4d\xb0\x90\xc8\xcc\xa9\x66\xc6\xbe\x36\xbb\x83\x50\x7f\x53\x31\x34\xdf\x70\xe8\xa2\x9c\xfb\x53\x44\x82\x48\x49\x4d\xd1\xae\x4c\x10\x84\xa7\xca\x2e\x5e\x10\x3e\xb3\x0a\x9f\x2e\x57\xe1\x8e\xb6\xa9\x5b\x61\xe5\xa8\x2f\x4b\xc6\xac\x72\xe8\x23\x34\x64\xa5\xa8\xaf\x75\x72\x04\xf4\xd2\x52\x1b\x27\x8f\x78\x25\xd0\x12\x8a\x8b\xe8\x40\x74\xbe\x78\xf0\x42\x85\x0f\x59\x97\x93\x52\xa8\x68\x84\x93\x64\x85\xc0\xd0\xf3\x66\x56\xb3\x59\x5e\xc5\xbe\xf6\xc2\xae\xa5\xee\x5f\xf0\xac\x56\xd5\xef\x73\x26\x50\xa5\xa4\x2b\x29\xb3\x39\x30\xc2\x8f\x33\x1a\x84\x21\xe8\x96\xc6\xba\x18\x85\x5e\xd9\x3a\x85\x0f\x5c\x20\x67\x78\x42\x92\xad\xbd\xb1\x1b\xf9\x9e\xe1\xd5\x06\xfb\xa9\xcc\x6f\xa2\xbd\xcb\x04\x3d\xce\x09\x2f\x8a\x36\xeb\xc4\xe1\x59\x3b\x5f\x73\xbe\xce\xa0\xda\xca\x16\x0b\xb5\x60\xe6\xcd\xe5\x77\x1d\xd0\xd9\xbf\x48\x72\xa4\x73\xf5\x2d\x52\x74\xdf\x6c\x33\x07\x0f\x92\x5c\x39\x05\xb4\x0b\x50\xf2\x4e\xbc\x41\x8e\x67\x5a\x26\xe0\x9d\x4e\x11\x4b\x19\x41\x54\xe4\x3f\x86\x78\xa2\xc6\x96\x00\x33\xcd\x08\x23\x1c\x6a\x58\xd9\xf0\xa3\x4b\x16\x72\x69\x1c\xcf\x6c\x94\x0f\x9d\x31\x89\xa6\x94\x24\xb1\x40\x8c\x28\x9b\x06\xf3\x95\x3a\x21\x46\xa0\xb5\xd1\x8d\x76\xa5\xad\x56\x5c\x1f\x46\x8d\xb4\x00\x5d\x48\x28\x52\x9a\x58\x61\x5e\x68\x98\x24\xf9\x8f\xcc\x43\x06\xca\x31\x66\xce\x0a\x06\xfe\xa3\x42\x59\x77\x47\x08\xb6\x4d\xe6\x4f\xa9\x3b\x46\x7d\x60\xf7\x70\x60\x75\x59\xa1\xd3\x71\xba\xd8\xfe\xf6\xde\xca\xe9\x18\xa2\x9b\xd4\x65\xa4\x56\x30\xa3\x0f\x84\x55\xd6\xc3\xb6\x4c\x91\x04\x6e\xc8\x66\xa9\x63\xea\x83\xed\x81\x9f\xaa\x3d\xa5\xd4\x26\x67\x25\xcf\x95\xae\xfe\x95\x1b\xd9\xc9\xca\x45\x25\x7c\x53\xe5\x54\x8b\x16\x5d\xd6\x18\x0b\xf4\x3b\x96\xca\xdf\xa1\xdc\x46\xb3\xe6\xb0\x2e\x1f\x67\x5c\x13\x83\x00\x37\xae\xde\x06\x27\xd4\x30\x09\xc2\xee\xac\xc6\xeb\x29\xbf\x2d\x42\x33\x8f\xba\x3c\xa9\xf6\x36\x2a\x47\x4e\xeb\x12\x6f\x74\xee\xe8\xce\x7c\x00\xcf\x51\xd1\x13\x69\x36\xe0\x04\xc2\x26\x2c\x45\x8b\x94\x93\x42\xfe\xaa\x16\xde\xf6\x5e\x37\x79\x83\xed\xb9\xb4\xc2\x1d\xa6\x73\xf2\xf2\x63\x1e\xb8\xc1\x9a\xdd\x5f\xbb\xc0\x0c\x2c\x42\xb4\x69\x03\x07\xac\x41\xac\x56\x9b\xe4\x9b\xc4\xf9\xeb\x74\x52\xe7\x88\xf6\x0b\xf5\xd5\xe1\x34\x8f\xc6\xec\x63\xca\xcd\xdd\x29\x0c\xe8\x7a\x82\xa3\xfb\x43\xc2\x62\x84\x33\x39\xd7\x78\x49\xe3\x3b\x5e\x99\x9d\x55\x7a\x01\xb0\x80\xdd\xe2\x98\x8a\x08\x73\x23\xf4\xa7\xf8\x21\xb5\xb3\x18\x33\x6f\x10\x80\x75\x43\xea\x08\xa4\xb7\xd7\x29\x10\x04\x52\xf5\xea\x68\x51\x95\xc4\x5d\x4a\xe1\x6e\x3e\x33\x7e\x22\xe8\x18\xde\x47\x62\x46\x84\x18\x1f\xe8\x59\x17\x28\x74\x6a\xfd\x51\xd6\xbe\x11\x7e\x39\x4c\xf7\x4b\x7d\xc6\xac\x47\xc6\xac\x42\xa9\x29\xdf\x5b\xd9\x19\xa0\x47\xa7\x19\x07\xb0\x68\xd5\x98\xdf\x45\x73\x9a\xe4\x3e\xea\x77\x03\x73\x1e\xf5\x90\x09\x79\x20\x89\x1a\x98\xb2\x88\x93\x05\x61\x26\x7c\xfc\x3d\xfa\x2f\x9d\xdc\x8c\xfe\x30\x66\x9f\x40\xac\x26\xc9\x6a\x80\xe8\x34\x1f\x19\xcb\xc2\x30\xf7\x95\x13\x50\x5b\xa6\x25\x4b\x30\x11\xbd\xdf\x73\xfc\x40\xc6\xcc\x0e\xf3\x5f\xe8\x1e\xfd\x1e\xfd\xa1\xce\x91\x63\x90\xc2\x4f\x6d\xe7\x03\x17\xdb\x77\x79\x92\x61\x60\xd4\x47\x90\x1c\xd6\x0d\x10\x36\x45\x71\xa6\x9a\x53\x70\x1d\xbc\x99\xb2\x87\xb4\x1c\xbd\xf2\x4f\x2e\xe6\x84\xc9\x3b\x96\xc6\xe4\x8e\x54\x84\xae\x1a\x04\x85\xba\xd4\xcf\xd3\x98\xac\x0d\x3c\x39\x05\xf9\x0b\xb8\x2e\x44\x36\x71\xdb\xa1\xde\x9b\x1b\xdd\x21\x83\x55\x4f\xd8\x55\xf5\xdc\x64\xba\x9b\xc6\xca\x2e\x8c\x76\x35\x00\x89\x6e\x26\x50\x1d\xaf\xd1\xed\x76\x00\x4f\x53\x3c\x85\x45\x0f\xb1\xfa\xb1\x5a\xb9\xb9\x73\xbc\x7a\xa5\x90\x03\xc2\xe9\x8c\x2a\x6d\xbb\x7d\x3c\x0e\x84\xe0\x26\x6e\x6e\x9d\xc1\xd0\xca\xcf\x9d\x93\x62\x99\x60\xa9\xb8\xfc\xd0\xb1\x5d\x1e\x63\x9a\xa4\x59\x51\xe7\x36\x04\xa0\xc2\x47\xfa\x18\xf5\x7a\xa5\x44\xf0\x4c\xa3\x48\xc8\x9c\x2a\xc9\xcd\xd0\xf0\xf8\x0c\xa9\x43\x91\x2e\x88\x4e\x6d\x57\x44\xcb\xe4\x3c\xe5\xf4\x5f\xb5\x01\xd9\x7a\x0d\x3b\x0f\xa4\x79\xbd\x66\x60\x9e\xa1\xae\x0d\x3c\xaa\x35\x03\x19\x18\x12\x55\x16\x0e\x9a\xa8\xe7\x39\x28\x1f\xd3\x0c\x1a\x17\x69\x87\xb1\x2e\xb4\x22\xc2\xce\x36\xdc\xf6\x48\xd2\x18\x24\x3b\x20\x35\x08\xec\x18\x9c\x47\x28\x9a\x63\x36\x6b\xd6\x23\xff\x9a\x91\x6c\x47\xa0\x19\x93\xc8\xf7\x42\xe1\x78\x3c\x13\x79\x9b\x27\x4d\x1b\x25\x92\x0b\x9d\xa5\x4c\x40\x1e\x8b\xfb\xdc\xa1\xe6\x80\xb8\xda\x8c\x2e\xda\xf3\x2d\x9c\x2f\x57\xe6\xf8\xed\xc0\xfd\xf2\x1c\xf1\xfa\xb2\x7e\x54\x21\x7f\x80\xff\x4c\xea\xca\xb3\x7a\x37\x9c\x0c\x2f\xe8\x1d\xbb\xf6\x74\x74\xb0\xa4\xed\xa4\xcc\x0c\x8d\x70\x2d\x07\x37\xab\xb9\xe3\x3a\xf4\xa3\x74\x66\x09\xfd\xee\x3b\x08\x63\x6d\xed\xbe\xf5\xdc\x92\x39\xb6\x4e\x83\x2b\xf5\x6a\x48\xfc\xb4\xae\x96\x30\x30\x18\xc2\x3b\xbd\xb8\x60\x1d\xec\xd6\x9b\xd1\x06\xb7\x53\xd9\x10\xaa\x9e\x9b\xfd\xba\xed\x54\x1a\xc3\x21\x2d\x83\x1b\x60\xd1\x37\x1d\xdb\x33\x83\x36\x0a\xc3\x02\x1a\x42\x91\x7a\x81\x51\x88\x10\x64\x02\x49\x8e\x01\xbd\x97\x32\x31\x66\x5f\xb4\x16\x4b\x85\xb6\x17\x4d\xba\x28\x98\xa3\x88\xc2\xbf\x41\x78\x9a\xcc\x32\x39\xc7\xda\xc6\xa9\x0e\x41\xb8\x02\x0f\xee\x24\xf8\x41\x88\xaa\x97\xc1\x8b\x8c\xea\x5e\x39\xa4\x25\xb4\x0f\xf9\x2c\x35\xe2\xad\xf6\x15\x53\x01\x50\x58\x9c\xd4\xda\x8c\x93\x34\x4d\x08\x66\x75\x6a\x75\xe5\xd7\x25\x6f\x11\xf5\x51\x8c\xca\xea\x53\x9a\x19\xcf\x88\xb2\x29\x70\x92\x14\xd6\x85\xa1\x0e\x93\x24\x4c\x3b\x17\x8c\x61\xa8\x26\x1a\xaf\x09\x88\x0c\xfc\x93\x3f\x21\x49\x27\xa4\x89\x7e\xa0\x91\x8b\xe0\x27\x79\xa9\x9f\x56\x78\x6d\x1f\x00\x51\x89\x6e\x5f\x37\x31\x1f\x13\xdf\xe8\x1a\x0e\x71\xe5\x1d\xa6\xb8\x4e\x9c\x0f\x0b\xd0\x01\x44\x00\x6f\x80\x01\xb0\xa7\xf6\x0f\xce\xbb\xf5\xfc\x38\x79\x1f\xec\x12\x64\x96\xc2\xc3\x71\x4a\x84\xa7\x62\xa1\xf4\x81\x18\xfe\xa5\x53\xa2\xd4\xb0\x31\x53\x3a\xa6\xaf\x0e\x62\xa1\x0e\xda\x92\xa7\x33\x83\x12\xc4\x11\x4f\x85\x30\x68\x00\x3d\x8e\x38\x6a\xbc\x49\x6e\x4c\x5e\xc2\x2e\xe2\x3c\xcf\x07\x0c\x2c\x57\xfd\xcb\xb3\x56\x6b\x34\x8f\x09\x71\x39\x18\xb5\xe7\x7e\x5b\xcc\x90\x35\x3f\x10\x27\x58\x18\xdb\x17\xa0\x35\x05\x50\x41\x07\x3d\xc1\xcd\x59\x43\xec\x0e\xed\x66\xfb\x2c\x64\xf2\xa8\x74\xc1\x2d\x2a\x10\xe5\x9c\x40\x25\x95\x49\x62\x42\x3a\x01\xd7\xd0\xbc\xab\x44\x4e\x11\x67\xe6\xe9\x37\x83\x9c\x14\x74\xa1\xce\x0a\x24\x90\xb2\xf4\x30\x5d\x82\xdd\x50\xfc\xd5\x14\xd3\x44\x09\x2c\x1a\x36\xb5\x50\xca\xd5\x21\x14\x86\x22\x4c\x56\x39\xba\xed\x20\xe0\x18\x27\xb1\xde\x46\xcd\xb9\xe3\x83\xe1\x0f\x17\x57\x37\xa3\x93\xf1\x41\x1e\xbe\xb4\x50\x17\x2b\xd6\x5d\x46\x4d\xca\xc6\xcc\x05\x21\x5c\xc5\x47\xd8\x4b\x84\xe3\x38\x4f\x20\xd1\x00\xb8\x3b\xed\x4c\x6d\x7b\x2a\xd6\xc6\x21\xca\xc3\x7c\xa4\x5f\x49\x7c\x85\xe5\x56\xd1\x8b\xc6\xe8\x70\x2b\x2f\x5d\x25\x8b\x67\x8c\x96\x3c\x45\x0d\x42\xd6\x2d\xe5\x56\x3d\xd7\x9e\x83\xf5\x49\x80\xbd\xb2\xee\x1e\x81\x78\xc6\x94\x65\x89\x5d\x21\xce\x29\xf0\x00\x8b\x56\x03\x04\x70\x70\xc5\xb5\x2b\xf4\x47\xb4\xa0\x0c\xa0\x9b\x4d\xb4\xbd\x0d\x17\xd2\xa5\x42\xc1\xe9\xf9\x6d\x58\xb0\xe4\xc7\x8b\xdb\xab\x30\x5f\xf4\x6f\xcd\xb5\x06\xc2\x11\x9a\xcc\xf9\x7c\x8d\x1e\x3c\x26\xd5\xa4\x70\xa4\xa9\x5a\xe8\x59\xf1\xa2\x7e\x5b\xd9\x5e\x89\xd3\x19\x76\x9d\xe8\xe5\x81\x23\xf6\x22\xc7\xcb\xac\x74\xbb\xf4\x2e\x6d\x5a\x5d\x86\xf6\xda\x93\x5e\xd0\x95\x01\xd0\xcd\x43\xf9\xf9\x02\xc0\x76\xad\xbe\x7e\x3b\x03\xe0\xf3\x51\x2d\x0a\xbb\x83\xf6\x86\xf2\xa7\xad\x07\x40\x18\x27\xe8\x12\x4f\x68\x02\xe1\x9d\xd4\xcb\x47\xaa\xd0\x2c\xc4\xd1\x98\xf9\x15\x83\xf5\x9d\xa9\x78\xc0\xe6\xa4\x51\x36\x43\x29\x23\x28\xe5\x3a\x94\xe7\xc4\xe1\xc0\x07\xc3\x17\xc1\x5c\x72\x8e\x56\x69\xc6\xdd\x1b\x4b\xef\x31\xdc\x27\xe6\xd8\x86\xfb\xad\x9e\x69\x82\x51\x7e\x12\x1c\x8c\xb7\xe4\x24\x37\xb6\xe0\xc5\xe4\x81\x30\xf4\xa8\x0c\xab\x3c\x36\x31\x66\x1e\xcc\x4a\xa9\xa4\xec\x5b\xe9\xb0\x14\x34\x31\x3d\xb4\xb0\x0b\xc4\xe4\xae\x16\x81\xa9\x19\xb9\x99\x81\x77\x80\x97\x87\x04\x80\xcd\x98\x0f\x9e\xac\xf3\x1e\xe8\xc8\x15\xf0\x80\xef\xcb\xd0\x98\xde\x4a\x96\x25\x5f\x97\x24\xda\x04\xe4\x7c\x69\x6b\x42\x36\x79\x33\xfc\x48\x9a\xc9\x8a\x37\x5b\x27\x53\xeb\x5b\x29\xce\x76\xcd\x3c\x3b\xa5\x1a\xa8\x89\xfe\x6c\x72\xf3\x3a\xce\xd3\x26\x1b\x4c\x79\xba\x68\x37\xc5\xe7\x81\xd7\xde\x94\x80\xaa\x81\x7b\x60\x4f\x70\xb5\xeb\x67\x59\x07\xa8\x5d\x27\xf5\x7e\xd6\xf7\xa2\xc3\xce\x43\x5e\x2c\x41\xd3\x64\x25\x89\x0b\x9a\x18\x2c\xab\xff\x4e\xff\xce\x72\xe1\x03\x0b\x33\x29\x9c\x82\x20\x30\x31\x21\xc8\x68\x43\x1a\x5b\x5a\x0d\x8a\x85\xeb\xb3\xca\x23\xea\xc5\x56\x4d\x6a\x90\x22\x9e\x90\x78\xe1\x12\x41\x8b\xd9\xbf\x05\x72\xad\x91\x46\xbb\x02\x39\x3e\x01\x10\xb6\xca\xd6\x0d\xc0\xb9\x06\x84\xb0\x9b\x0c\xb8\xc2\x0d\xdd\x38\xb1\x20\x05\xce\x9f\x50\x4c\x24\xa6\x89\xf0\xd3\xbe\xca\x5b\x19\xdc\x7c\xba\xa6\x93\x75\xbc\x6e\x68\x25\x7b\x8d\x34\xfd\x9d\x47\xfe\x1d\x0f\x4e\x96\x05\x5e\x79\xe0\x28\x75\x0a\x12\x22\xe1\x72\xa6\xcc\xfd\x2b\x14\xb5\x96\x99\x7d\x16\xad\x02\x28\x1c\xa1\x1f\x56\xee\x5a\xc4\x49\xe2\xcf\x44\x3b\xef\xf2\xf6\x8d\xea\x28\xc0\x25\x86\x4e\xcf\x87\xc7\x37\xa7\x3f\x8f\x00\xf8\xb3\x4a\x33\xf4\x48\x85\xb2\x10\xc6\x0c\xfc\x81\x4a\xa0\xc2\xef\x64\x8a\xf4\x0f\x07\xf0\x2b\x80\x03\x8a\x6c\xb2\xa0\xca\x9e\xca\x17\x79\x0b\x12\xe1\xca\x82\xc3\xf4\x39\x56\x0f\xc0\xb5\x6d\x61\x67\x55\x08\xef\x35\xe7\x63\x03\x33\x38\x1f\x64\x5b\x64\x99\x17\xae\x78\x5a\x6c\x99\xa7\x66\xfb\x66\x4d\xe5\xf1\xea\xc1\x65\xd5\x87\x32\xcc\xb0\x84\x34\x58\x2a\x64\xe1\x32\xa9\xcf\xab\xcc\xb7\x60\x17\xc8\x32\xab\x6d\x77\x81\x1b\xd8\x47\xaa\xb5\x9d\x6b\x57\x9c\xaf\x52\x05\xbb\xac\xd5\x6f\xf6\x2d\xbf\x25\x0f\xdb\x6d\x1e\x04\xea\x62\x6e\xe5\x08\x6d\x9f\x15\x3c\x04\x42\x88\x6c\x26\x45\xd1\xcd\x52\x09\xd1\xd7\x48\x26\xab\x0a\xe8\xc3\x98\x55\xeb\x0d\xcd\x3c\xb6\x6d\x20\x75\xa7\x79\x30\x6e\x47\xae\xdc\x2a\x8c\x47\xe4\x8b\x43\x8e\x69\x63\xd4\xd5\x8c\x26\x85\x73\x65\xfd\xaf\x35\x56\x00\xa8\x0b\x9b\x60\x70\x2a\x4e\x65\xcb\x30\xe7\xda\x73\x61\xae\xcc\xa7\xb1\xa0\xb6\x8c\x07\x43\x2a\xe8\xee\x13\x58\xc1\x89\x39\x00\x0f\x79\xfa\x40\x38\xa7\xb1\xb2\xb0\xfc\xca\x01\xad\x28\xd7\xa2\x4a\x4f\x8d\x0c\xd3\x7d\x49\x64\x0a\x61\x13\x67\xf3\xaa\xf1\x6c\x36\x5b\x41\xba\x39\x75\x27\x63\x31\xe1\x8c\x60\x39\x7f\xbe\xf8\xe2\xf1\xb6\x2e\xc3\x67\x8b\x35\x1e\xef\xa4\x94\x95\x3f\xdd\xb0\xac\xd3\xda\x79\x66\x85\x8a\xf8\xcd\xe8\xdc\xbc\x86\x52\xc9\x88\xaa\x70\x75\x79\x30\x67\x63\x67\x85\xf5\x94\x3a\x62\xd0\x6b\x2d\x08\xe7\x7e\x52\xe6\x41\x58\x5f\xc3\xb4\x8b\x69\x16\xe9\xb2\x26\xf2\xd2\xa6\xe0\xa4\xd6\xb1\x83\xea\x7f\xfa\x13\xf3\x41\x4d\x95\xc8\xc2\x63\xc5\xd5\xfa\x86\x01\x5b\x15\xed\x6a\xcc\xe3\x84\x08\x50\xf9\xb4\xae\x5f\xd0\xea\x9a\x6c\x8e\x31\xfb\x31\x7d\x24\x0f\x84\x0f\x10\x96\x68\x91\xaa\x9b\x9c\x11\xbf\x8f\x02\x0e\xf3\x4c\xb5\x4b\x1b\xa3\x73\xbc\x20\xf1\x08\xee\x03\x0f\xbb\x65\x2c\x1f\xe3\x55\xac\x4a\xe5\x81\xf4\x14\xbd\x0d\xd6\x05\x3e\x66\x38\x92\xf4\x81\xe8\xd8\x0e\x00\x06\xa9\x5d\x18\xf0\xff\xef\x9c\xcf\xf3\x77\x47\xe8\x46\x5d\x5c\x54\x84\xf3\xf5\x20\xc1\x75\x73\x1b\xb3\x19\x4f\xb3\xa5\xd3\x4c\xd3\x09\xa8\xc4\xda\xf7\x59\xe1\xf3\x84\xc9\x58\x87\x67\x84\x63\x75\x2d\x36\x33\x4e\x60\x3b\xed\x99\x2b\x20\xc4\xd7\xf9\x0c\xa4\x6e\x0b\x17\x56\x32\xd0\x01\x60\xa3\xfa\xdc\xff\xdd\xf9\x4e\x4b\xb5\xd9\x04\x28\x65\xce\x64\x0d\xc0\x16\x1b\x8a\x0a\xcf\xcc\xb7\x26\x71\x35\x4a\x28\x7f\xad\xae\x75\xaa\x05\x07\xa9\x2e\x1e\x5c\xb3\xf7\xed\xb3\xce\x0a\xb3\xbc\xcc\xf8\x32\x05\x98\x6d\xb2\xb2\xd0\x24\x03\x1d\x5e\xa6\xcb\x4c\x03\xaf\xa9\x1f\x64\xaa\x9c\x10\x15\xf2\x33\x96\xd1\x5c\xe9\x03\x39\x84\x76\x17\xd9\x70\x81\x20\x7d\x5a\xfb\xa3\x62\x05\xc7\xfe\xdb\x6b\x6c\xeb\xd6\xa6\xa5\x4e\xa8\xb3\xf8\x01\xf8\x57\x92\xe4\xdd\x5c\x2b\xea\xd9\x55\xd3\x3a\x28\xa1\xb3\xf3\x40\xeb\x16\xfa\xe1\x89\x52\xa0\x29\x43\xf9\x0f\x91\xf1\x20\x57\x1e\xe9\x8c\xd3\x8d\xd4\x40\xe3\x81\x20\x0f\x84\xc9\xdc\xa0\x58\xe0\x25\xa2\x4a\x6e\xab\x9b\x87\xcf\xc8\x00\x3d\xda\xb6\x91\x08\xa3\x8c\x53\x7b\xc2\xc0\x0a\x68\xd8\xbe\x50\x0d\x7f\xaf\x23\x02\x1a\x13\x15\x61\xaf\x7a\x94\xa9\xee\x1e\xc9\x0c\xbb\xb8\x2d\xec\x70\x42\xd9\xbd\x7a\x99\xce\x6a\xb7\xde\x5e\xae\xe4\x5b\xca\x2d\xa8\x34\xd8\xd3\xb5\x9c\xb7\xc5\x2e\xd7\x17\x70\x5c\x77\x14\x28\x9b\x79\x70\xf8\x6a\x23\xa8\x4d\x76\x7a\xe5\x93\xed\x92\xeb\x2b\x1f\xb5\xfa\xc4\x26\xcf\x36\x20\x88\x37\x2e\xed\x19\xe0\x26\x0c\x4e\xc0\x68\x24\x7e\xa2\x82\x51\xa5\x21\xcd\x88\xea\xae\x05\x46\x43\xf9\x4f\xf7\x97\xae\x09\xa4\x49\xf3\x9f\x28\xe5\x63\xa6\x3f\x1f\xb8\xf2\x01\xea\x07\x79\xa6\x4f\x4d\x6e\xac\xe3\x27\x5b\x0b\x74\x33\xbd\xf2\x66\x78\xfd\xd3\xdd\xd5\xe8\xfa\xe2\xf6\xea\x38\x50\x2e\x8f\xcf\x6e\xaf\x6f\x46\x57\x95\xdf\x8d\xfe\xcf\xe8\xf8\xf6\xe6\xf4\xe2\xfc\xee\xaf\xb7\xa3\xdb\x9a\xaf\xec\x00\x67\xc3\x1f\x46\x67\x8d\x4a\x6a\xf5\x1c\xea\xaa\xab\xe2\x42\x77\xaa\xbc\x88\x81\xbd\x54\x27\x2b\xb3\x45\xf4\x5f\x60\xbc\x5e\x6a\xba\x1e\x0e\xec\x5f\xba\x5e\xe6\xa1\x3a\xca\xd6\x7d\x91\x9f\x82\x31\x73\xfe\x25\x27\xb7\x25\x9e\x09\xdb\x77\x23\x98\xed\x07\x34\x5c\x9a\xde\x1a\x69\xf8\x52\x89\xc5\x7d\x3e\x53\xeb\x56\x84\xbd\x85\x6a\xe2\xc2\x74\x9a\x28\x90\x39\x1c\xd0\xac\x09\xa6\x60\xdc\x2b\x31\xca\x2b\xd9\x96\x4a\x9e\x9a\x41\x0b\xfb\x03\xad\x79\x34\x71\x84\x9e\x17\x64\xcd\xac\x18\x5e\xd0\x48\x7f\x50\x48\x1c\x31\x29\x25\x0b\xc2\x64\x71\xc4\x60\x5b\xc3\x91\xe7\x04\xfd\xf4\x97\x7c\x52\x60\x14\x1b\x23\x33\x2b\x55\xc0\xb2\x4d\x7f\xb3\xaa\x82\x26\x15\xb2\x69\xab\x54\x1d\x71\x7f\xe7\xda\xa3\x6d\x24\x2c\x6f\xb0\xb8\xaf\x28\xba\x5b\x29\x7f\xcc\xfa\xb7\x7c\x63\x7d\xa5\xdf\x6a\xff\x99\xa5\xeb\x1d\x6c\xe0\x66\xef\xac\xcd\x93\x5a\xf3\x4a\xbb\xe2\xa4\x50\x77\xa6\xf5\xfb\x82\xba\x35\xed\xa5\x32\xa4\xba\xd2\x08\xd2\x8a\x31\x65\xa6\xa0\x01\x71\x95\x74\x6c\x69\x47\x5d\xaf\xdf\x64\xff\xe0\x49\xfa\x10\xa4\x97\x2d\x74\xfd\xfb\x4a\x4d\xcc\xb3\xf7\xb6\xe1\xc0\xb0\x37\x5f\x6b\x6d\xcc\x6e\x3e\xb4\x2f\xa8\xdc\x83\xb6\xf6\x5c\x71\x31\xeb\x20\x54\x1b\xf8\x61\xbd\xd1\x9d\x23\xb6\x8d\x0a\x76\x02\x7b\x3a\x01\x2f\x7b\x5e\x61\x51\x17\xf2\x05\x43\xcd\x37\xba\x07\x79\xc0\x59\xab\x66\xee\xd2\x7c\x6f\xef\x51\xf4\x5e\x7b\x02\xde\x7b\xf7\xc4\x6a\x19\xf4\x6e\x6f\xde\x68\x8f\x36\x7b\x59\x59\xa8\xb2\x85\xea\xe6\xaa\x5b\xdb\x29\x3c\x43\xaf\xd3\xca\x45\x3c\x75\x59\xa1\x7d\xeb\xeb\xdf\x5e\xfc\xe5\x25\xc3\xcc\xbc\x4d\x7d\x21\x50\x8b\x02\x60\xc6\x47\xc0\xd0\x78\xd3\x1c\x7a\xa5\xc6\x01\xbd\x2f\x09\xd7\x55\x70\x20\x1a\xef\x22\xbe\xc6\x5b\xb7\x4e\x36\xe6\x47\x66\xeb\x4a\x2d\x6a\xbc\x32\xb6\x77\xc7\x51\xc8\x66\x41\xb8\x06\x2d\x3c\x74\x95\xb0\xf3\xda\x36\xa2\x86\x79\xfb\x48\x7c\xd5\xaa\x02\x6b\xca\x12\xb3\x72\x53\xd6\x31\xde\x6b\x63\xb7\x16\x31\xef\x61\x15\x45\x0c\x66\xa1\x46\x13\xeb\xb9\xec\x69\xb9\x6c\x17\x70\x8f\x70\x72\xdd\x6f\xb3\x63\xad\x10\x79\xc3\xd8\x94\x3a\xa5\xe1\x5a\x39\x1d\x96\x00\x5a\x5f\xf4\xae\xa3\xc7\xdd\xa3\xc9\x7a\x97\xfb\xb5\x0e\xd5\x68\xd7\x77\x79\xae\xc5\xa9\x0e\x4d\xa3\xe9\x65\x4a\x35\x20\x53\xd2\x05\x19\x20\xe8\xe6\x90\x87\x97\xcc\x79\x05\x76\x83\xab\xca\x94\x7d\xd6\x2f\xe1\xd1\x9c\x3e\x54\xa3\x4e\x1b\x37\x78\x8b\xc0\xdc\xf9\xf0\xf3\xe8\xe4\x6e\x74\x7e\x73\x7a\xf3\xb7\xbb\x72\x8c\x2e\xfc\xfa\xea\xf8\xc7\xd3\x9f\xf3\x36\xd1\x95\xde\x90\xa6\x01\xab\xaa\xba\x19\xe8\x4b\x9a\xd7\x68\x8b\x6d\x05\x28\x9b\xe7\xac\x5d\x09\x92\xa7\x09\xa2\x52\xa0\x07\x2a\xa8\x49\x22\x30\x0a\xdd\xed\xa9\xf5\x6e\x54\xbc\xfd\x83\x87\x1e\x1c\xe8\xe4\xdf\xfc\x25\xd4\xf8\x3d\x7d\x65\xcf\x84\xdc\x58\xac\x43\xf2\xc8\x6b\x9c\x71\x54\xf1\x12\x43\x94\x0f\x68\x68\xb6\xaf\x6a\x7c\x96\x22\xa5\x6a\x12\xae\x67\xaf\xe3\x71\x66\xea\xcd\x87\x77\x67\xb1\xb3\x5d\x18\x71\x75\xa0\x1a\xdf\x50\x31\x3b\xe9\x8a\xc2\xc8\xd4\xa0\xa9\x9f\xcc\x04\xac\xf1\xc1\x97\x0a\x67\xb4\x9d\xd2\x8e\xac\xc7\x35\x30\x1e\x03\xe3\x33\xc1\x37\xd3\x01\x9a\x91\x47\x7d\x6f\xec\x47\x18\xaf\x82\x0f\x5f\x38\x8e\x17\x54\x9e\xda\x59\x83\x88\xbb\xf5\x81\x9e\x6a\x1f\xd2\xee\x9a\x36\x14\x5a\x4c\xfb\xce\x04\x6b\xf5\x9d\xd7\x17\xe2\xeb\x56\x1b\x3f\x20\xe2\xfa\xba\xf8\xd0\x3d\x07\x8b\x9a\xa2\xf8\x50\x9d\x22\xde\x97\xd2\xf8\xe5\xfc\x8e\x70\x72\x2f\x5c\x17\xbf\x30\x99\xfd\x29\x8e\xbf\x96\x6e\xfb\x9b\xc0\x53\x31\xd1\x16\x45\xf1\x1d\xbe\x14\x6a\xe0\x75\x13\xf9\x90\xd3\x43\xe3\x04\x24\x92\x0d\xc1\xa8\x43\xd5\xc6\x73\x58\x04\xb6\x05\xce\xdf\xc2\x5a\x4c\xd2\x07\x28\x23\x61\x6f\xa1\x7a\xa1\x38\x7a\x20\x4c\xee\x44\x5f\x80\x21\x2a\xf0\xb7\xed\xdc\x57\xba\xaa\xd3\xe9\x49\x2e\x26\x5c\x1d\x54\x2f\xee\x25\x39\x8e\xa0\xfc\x9b\xee\x6c\x66\xfa\x99\xd5\xb9\xec\xd5\xd2\xda\x6d\x11\xfc\xb4\x4c\x97\x35\x20\x1b\x43\xed\xbc\x8c\x5d\x1e\xc0\x4f\x23\x68\x98\xdb\x29\x25\x2c\xb8\x99\x59\x0c\xa5\x1b\xbc\x66\x04\xba\x9f\x7d\x71\xcf\xf5\x3b\xe7\x58\x14\x5f\xb9\x76\xcb\x37\xc8\x24\x09\x86\xf9\x44\xe4\x09\x96\x78\x27\x15\xa2\x3b\x00\x7b\x61\x22\xb7\x3c\x59\xdb\x6f\xe9\x5a\x97\xd0\xcb\x78\x92\x9b\xe8\x18\xa9\x0b\xed\xc8\xc3\x73\x00\xde\x3e\xa0\xa8\x9e\x4c\x8d\x1c\xe8\xde\x21\xea\x29\xa7\x6a\x66\xb3\x51\x5e\x88\x90\x3c\x8b\x20\xc9\x5e\x9d\xb8\xea\x9d\x35\xd5\x45\x40\x76\x9a\xb0\x93\x08\x72\xc6\x6c\x72\x29\xc0\x44\x2a\xef\xf5\x7a\xfe\xd9\xd6\x9b\x15\x56\x23\x7d\x32\xa7\x56\x20\xbd\x83\x05\xf4\xa9\x49\x9b\xba\xaa\x4c\xc1\x19\xc7\x81\x90\x39\x28\x39\x25\x90\xd2\x9e\xb8\x3c\x98\x50\xd2\x19\x0b\x79\x2d\x63\xa9\x6b\xf5\xa4\xa5\x03\xcb\xb3\x4a\x73\xff\x59\x9e\x21\xe3\x05\x4e\xbd\xa2\xad\x18\x8e\x4b\x63\x93\x92\x5d\xf5\xc4\x04\xd5\xf9\xc9\x78\xbb\xa1\xf3\x95\xcf\xdb\xed\xe2\x03\x7a\xaa\x1a\x27\xa6\x04\x46\x26\x08\xd7\xae\x2b\x87\x69\xaf\x28\x12\x57\x1b\xce\xab\x6c\x01\xda\x14\x5e\x2f\xb5\x22\xad\xd6\x34\xb4\x8f\x10\x7d\xf7\x80\x13\xaa\x34\xbe\x23\x9b\xc2\xf4\x0e\xfd\x17\x14\x7d\xfb\xcf\x1a\xa3\x09\xcf\x08\xbf\x8b\xb3\x20\x36\xbe\x6e\x52\x97\xea\xa1\x93\x4c\xae\xaa\x53\xc1\x02\x83\x27\xc1\xd1\x7d\x97\xf4\x38\xf5\xfb\x9a\x61\xd7\x9f\x40\xcf\x59\x1c\x5e\x04\x35\xc9\x67\xa4\x90\x7c\x66\x42\x89\xfe\xfb\x75\xd8\x8f\x41\x4d\x40\xcf\x5b\x60\x22\xa0\x43\x35\xe7\x23\xf4\x51\xd7\x75\x81\x4b\x4d\xbf\x22\x4a\xb3\x24\x1e\x33\xf2\x55\x99\xfb\x01\x08\xa8\xa2\x16\x87\x01\xa3\x99\x37\x55\x4b\x82\x42\xd9\xc5\xad\x6e\x98\x17\xcf\x14\x2c\xef\x69\x79\xc9\xd5\x4c\xb6\x95\x2e\xbf\x27\x8d\x78\x8f\x95\x42\xcb\x64\xb2\x1a\x20\xb7\xc8\x02\x5b\x24\xe4\x81\x70\x3c\x23\xa6\x51\xaf\x57\x77\x05\x6f\xd0\x97\xf7\xb2\x84\x63\x78\xdd\xcd\xa5\x4b\xf0\x88\xa7\x65\x63\xd3\x9a\x7b\xad\x5e\xd4\x3e\x3c\xd4\x5e\xa6\xdd\xa4\xcb\x43\x5d\xeb\x9f\xb9\x8e\xd9\x2e\x1e\x90\x60\x21\xe8\x74\xe5\xb5\xc2\x76\xfe\x76\x40\x28\xb8\xf2\x3e\x61\x19\xa8\x4a\x5d\x23\x80\x55\xee\x06\xb3\xb7\x3d\x7c\xc6\xd8\xcf\x16\xcb\x41\x63\x3f\x1f\x05\xea\x9b\x96\xf0\xbb\x2d\x4b\xb0\x6e\x8b\xaa\x31\x33\x33\xd8\x92\xdd\x4d\xcc\xc2\x55\x37\x03\xff\x35\xe2\xc1\xd7\xca\x87\xe2\xde\x9f\x90\x84\xec\x49\x87\xb6\x32\x23\x34\xd2\x3a\xcf\x54\x7e\xb6\xfd\xdf\x6e\x3e\x1b\xc4\xa5\x6a\x10\xe4\x3b\xd8\xef\x17\x8e\x6e\xd4\xcc\xee\x13\x69\xe3\xdd\x59\xcb\x8b\x1b\x9d\xab\x3a\xe1\xb8\x05\xb1\x77\x16\xd2\x7c\xe2\x05\xd5\xed\xf5\x35\x91\xc2\x2a\xae\x1e\xa7\x6b\x9f\x89\x39\xa7\x87\x16\x4c\x98\x43\xf3\x3a\x6c\xf8\x9e\x04\xdb\xcc\xec\xae\x4c\x75\x9d\xa7\x13\x87\xeb\xb7\xab\x0b\xbf\xe5\xf3\xdd\xc0\x23\x6a\xc6\xd8\xc5\xed\xff\xb4\xaa\x59\x89\x30\x2d\x8d\x8b\xeb\x72\xe1\x96\xee\x29\x8f\x3c\x65\x77\xe4\xab\xb2\x39\xc5\xa6\x88\xa0\x5b\x41\x04\x1a\x7e\xb9\x46\x62\xc5\x24\xfe\xfa\x01\x8d\x0f\x3e\xeb\xea\xb4\xe8\xc7\x34\xe3\x02\x9d\xe0\xd5\x61\x3a\x3d\x5c\xa4\x4c\xce\xd1\x67\xf8\x5f\xf3\xd1\x23\x21\xf7\xe8\x6f\x04\xf3\xf1\xc1\x98\x41\xda\xb5\xe9\x04\xe8\x2a\xc8\xcc\x31\x84\xd5\x84\x29\x7c\xfb\x87\x3f\xdb\xca\xb7\xea\x35\xdf\xbf\xff\xc3\x9f\xd1\xef\xe0\xff\xfd\xbf\xe8\x77\xe3\x83\x9a\x7b\xa9\x1b\xb6\x28\x2f\x4d\x5c\x39\xda\x3d\x8d\xee\xd3\xe9\xf4\x4e\xd2\x05\xd1\x65\x2f\xee\x30\xaf\xed\x15\xd6\x11\xdb\x4c\x4d\x35\x0e\x5d\x4f\x30\x4f\x38\x34\x2f\xd5\xe1\x47\xab\x84\xb9\x16\xf3\x3a\xff\x8f\x85\x55\x28\xa8\x80\xa7\x48\x8c\xd2\xe9\xb4\x8b\x0f\xd0\xe6\x37\x95\x6b\x7d\xe5\x81\x6c\xbf\xb6\x8c\x33\xea\x7c\x57\x44\xba\xae\x76\x6f\xd9\x47\xf2\xc6\xac\x62\x58\xe0\x93\x5a\xc4\xd7\x29\xdf\x4a\x84\xdf\x93\x92\xbf\xac\x93\x03\xdc\x96\xc9\xf0\x4b\x14\x41\x84\x2c\xe5\x2e\x41\x40\x07\x34\x4c\x4d\x8a\x31\xbb\xb9\x38\xb9\xf8\xee\x1e\x4b\x9e\xce\x30\x7b\xf7\x01\x0d\xe3\xd8\xb4\x8b\x41\xc6\xe9\xa7\x98\x67\x4e\x38\x39\x42\x7e\xef\x07\xa6\x08\x57\xe9\xd1\xf6\xf5\x61\xca\x49\x54\x65\xb8\x56\x1f\x76\x45\xbe\x13\xf7\x48\x0d\xf4\x28\xa8\x05\xe2\x5e\x90\xe7\xed\xc3\x5a\xef\xc9\xca\xb4\x87\x2c\xae\x77\x93\x0e\x38\xd7\x4b\x12\x29\xeb\x57\xb7\xcc\xe2\x31\x01\xf2\xe8\xa6\xe3\x54\x48\x1b\x7c\xad\x3c\x54\x61\x1b\xb0\x6d\xf0\xc8\xc5\x9c\xaa\x2d\x38\x45\x77\x8d\xcb\x65\x83\xcd\xcb\x2b\xb4\x23\xe4\x58\x89\x8d\x0d\x81\xb5\xa6\x23\x91\xdf\x48\x25\x13\x84\x1f\x4e\x71\xa4\xa8\x57\x68\x6c\xe6\x8b\xaa\x2a\x3a\xde\x60\x71\xbf\x5b\x47\xd3\xd6\xd5\x2d\x68\x9c\x67\x83\x6b\x6e\x2c\x77\xd1\x35\x97\x88\xc4\xe2\xbe\x0e\x82\xd2\xb9\x7c\xb4\x22\x85\x45\x67\x35\xcd\xcf\x8c\xec\x25\xbd\x99\x06\x1f\xa0\x98\x7a\xf9\x20\x0b\xbc\xd4\x4d\x46\xe0\x82\xa1\x09\x89\x8b\x40\xdc\xe2\xfc\xd7\xb1\x81\x4e\x2a\xf1\xfc\x44\x00\x03\x5d\x28\xb5\x39\x86\xd8\x1c\x66\x2b\x7d\x90\xd4\x85\x85\xc5\xbd\x70\x25\x56\x90\x58\xe0\x24\x19\x20\x4e\x32\xe8\x12\x33\x40\x82\x24\xd3\x43\x9b\xc7\x17\xa3\x24\x9d\xd1\x08\x27\x68\x92\xa4\xd1\xbd\x18\x33\x75\x83\xb0\x99\xbe\xf8\x96\x3c\x8d\x88\x10\xde\x95\x9b\x87\x5f\x97\x3c\x8d\xb3\x48\x57\x81\xd6\x5d\x18\xa8\x90\x34\x2a\x94\xfe\x55\x12\x11\x9a\xa2\x45\x18\x0c\x0c\x00\x93\x2e\x74\x97\x53\x4e\x09\x38\xc1\x64\x66\x1b\xf5\x40\x9e\x12\x4e\xe8\xbf\x74\x97\x3d\xfc\x40\x53\x5e\xc7\xbd\x3b\x00\xd4\xd9\xed\xb9\x93\xe1\x69\x58\xc3\xcf\xc7\xe6\x31\x38\x43\x4d\x1c\x73\x15\xb2\xb3\xe3\x06\xc7\xe6\x2e\x9d\xc8\x32\x45\x5e\x29\xd9\xa6\x6c\xe9\x9f\xd8\xb0\xea\x9e\xe1\xae\x60\xca\x35\x68\xab\x75\x3c\x7d\xac\x8b\x0f\x9b\x2c\x69\xcf\x01\x07\xa3\xdb\xf2\xac\xa6\xde\x83\xba\x22\x1e\x14\x93\x58\xf2\x28\xda\xab\x6b\x64\xe0\x2a\x02\x63\x81\x96\x49\x36\xa3\x2c\x6f\xf6\xa8\xe4\xe1\x98\x41\x69\x20\xf5\x92\x42\x79\xd9\x32\x47\xed\x71\x15\xe0\xdd\x08\xc7\x8e\xc5\x80\x2d\x91\xbb\x30\x79\xc8\xb7\xb6\x29\xe2\xc6\xc9\x24\xbc\x2a\x5c\x6f\xba\x9f\xab\x6f\x1f\x68\x5e\xe2\xca\x7b\x51\xed\xde\x6e\xec\xa5\x28\xcc\xaa\x84\x63\xa1\x53\xcd\x64\x30\x37\x08\x55\x9a\x8e\x36\x75\x33\x7a\x11\x64\x70\xd3\x46\x5e\x62\xa9\xbb\x92\x90\x45\x2a\x75\x61\x17\x5d\x63\xc5\x94\x5e\x31\xa5\x5b\x26\x49\x3a\x81\x7b\x05\xca\xaf\xc0\xba\x83\x5a\x76\x66\xdd\x24\x46\xdf\x79\xd7\x84\x83\xeb\xbc\xab\x8b\xb8\xef\x0e\x9e\x5c\xcc\xdd\xac\x05\x29\x87\xf5\x18\x8e\xd0\x65\xee\x6e\x2a\xae\x6a\x8a\x95\xe4\xae\xeb\x50\xdc\x0d\xd2\x1c\xec\xfe\x0e\x20\xcd\x85\x65\xd4\x94\x6a\x49\x77\xd1\x44\xb5\x79\x51\x67\x69\x7b\x3b\x52\x03\x18\xb5\xfe\x11\x6c\x8e\x65\xb3\x55\xd5\x16\xed\x17\x5c\xbb\x50\xcf\xe3\x65\xe1\xda\x85\xc9\xec\x33\x5c\xbb\x30\xd5\xfd\x85\x6b\x57\x4c\xb4\x05\x5c\x5b\xbb\xdb\xef\x14\x53\xb7\x13\x0a\x4b\x9e\xca\x74\x92\x4d\xaf\xe1\x36\x69\x53\x5b\x54\x0b\x67\xab\xe7\x98\x2c\x19\x98\xad\xd6\x81\xba\x29\x62\x3e\xaa\xbb\xb0\xe4\x96\xa8\xee\x40\xa4\xf5\xa8\x6e\x87\xea\x2e\xd3\x65\x1f\x51\xdd\x85\x3d\x6f\x87\xea\xae\xda\xf2\x0d\x62\x18\xc1\x30\x6f\x06\xd5\x5d\xa0\xe8\x3e\xa3\xba\x0b\x53\xdd\x1d\xaa\xbb\x7a\x67\xbb\xa1\xba\x2b\xaf\xff\x7a\xfe\xd9\x16\x73\x07\xe5\xab\x9e\x19\xd5\x1d\x2c\xa0\x47\x75\x6f\xd9\x70\x22\x64\x41\x33\x03\xa8\x9f\x6c\x80\xc2\x45\x59\xd7\x80\xeb\x06\x95\x76\x07\x1c\xf5\xb4\xb1\x55\xf0\x42\xb5\xd5\xba\x87\x01\x1d\x84\xa9\xe8\xa9\xae\x3f\x8b\xb5\xf5\x9a\xb2\xf6\x85\x56\xb6\x2d\x81\x51\x20\xb2\xf3\x5e\xc1\xc6\xd5\xb1\x5c\x45\x1d\xba\x2d\x18\xd0\x54\x13\xd8\xb4\x02\x5f\x7d\x9f\x46\x5d\x5a\x71\x37\xc3\x7e\xe3\xff\xb7\x96\x20\xdb\xb6\xe9\x88\x96\xd9\x26\xe8\xd8\xd9\x66\x8f\x2d\xc8\x22\xe5\xeb\xc2\x8f\x35\xe6\x6c\xca\xf1\x6c\x1d\x22\xb7\x2d\xf5\xb6\xa5\x9a\xad\x86\xd9\xcd\xbf\x71\x63\x9f\x6a\x34\xb8\x6c\x1f\x13\xdf\x03\x0e\x3a\x69\x65\x8c\xc5\x85\xb8\x36\x8c\xa2\xd4\x24\x1e\x94\x5f\x08\xee\x55\x41\xf8\xa1\x97\x49\x10\xfa\x35\xcb\x33\x08\xe8\x6e\x15\xb4\x2d\xc8\x9e\xf1\xda\x18\x7f\x0b\x19\x3b\xd4\x75\x94\x95\xf6\xe7\x17\x4c\x28\x72\xda\x64\x55\x81\x47\x6b\x67\x52\xeb\xee\xd2\x5d\x1c\xc3\xf4\x5f\x6e\xa3\xa7\x34\x21\x08\x47\x11\x11\xba\xc0\x88\xc1\x80\xe8\x7a\x91\x19\x4f\xb6\xd9\x55\xca\x66\xb0\x6e\xa5\x4c\x7a\xfd\x2c\x1c\xf3\xe8\x3b\x63\xce\xd3\x6c\x36\xb7\x56\x96\x6d\x79\x58\xb5\x97\x5f\xca\xf5\x91\x5f\x59\x40\xa0\xd0\x04\xa9\xc8\x04\xdd\x23\xa6\x96\x24\xcf\x1c\x35\xad\x5a\x47\x07\xee\x08\xb0\x43\xf9\xf1\xb7\x7e\x6c\xad\x95\x40\xa6\xd0\x98\x0d\x03\x94\x91\xed\x98\x37\x59\xe5\x68\x05\x7d\xb5\xfb\x4c\x06\x3d\x7e\x8d\xf5\x02\x4d\x75\xd4\x5f\xa0\x86\xc0\x43\x26\x9e\x6a\x63\xa6\x00\xb4\x20\xf1\x21\x8e\x56\x51\x42\x23\x4f\x25\x9d\x71\xbc\x9c\x37\x71\x62\x0f\xfb\x7f\x29\xd8\x7f\xcb\x5a\xe9\x8d\x50\x11\xbf\xda\xf8\xab\x4e\x47\x28\xb3\x63\x9f\x89\xd0\x81\x25\xb7\x9b\xcf\xce\x39\xf1\x35\x25\x46\xd4\x73\xde\x0b\x83\xd0\xcb\x13\x7b\xc9\x74\x88\x8a\xfb\x62\x33\xea\xbe\x6c\x12\x44\xab\x65\xd4\x42\x0d\x5b\xe4\x3f\x04\xad\xad\xdc\xbd\xbf\x26\x1b\xa2\x9e\x4a\x7b\xc2\x83\xbb\xc4\x47\xd5\x49\x9b\xf5\x18\xa9\x2e\xaa\x62\x37\xb8\x94\xdb\xa8\xd7\x05\x99\x72\xd3\xde\x10\x36\x35\xf4\x4a\xf0\xcf\xd3\x04\x9a\x6b\x07\xd4\x72\x2f\x70\xc8\x0b\x47\x20\xbb\x19\xd0\x49\x15\x54\xd7\xbc\xd8\x44\x13\x38\xca\x6d\xe2\xdb\x00\x48\xad\xb1\x87\x3a\x82\xa4\x7c\xa2\x6e\x07\x94\xda\xd2\xbe\xe9\x06\x96\x6a\xea\x8c\x5b\xdc\xef\x0d\xc2\x7a\xa5\xc2\x1e\x7d\x50\xd8\x05\x85\xab\x69\xb3\x8f\x81\xe1\x72\xaf\xc9\x96\xc1\xe1\xba\xed\xdf\x05\x27\xed\x30\x48\xfc\xc2\xa1\xd7\xc6\xa8\xab\xc7\x60\x2f\x1b\xcb\x6e\x0a\x63\xaf\x67\xb3\xca\xb8\x5c\xfd\x9e\x76\x0a\x0f\xaf\xc9\x71\xb0\x6f\xd9\x36\x86\xe7\x70\xf7\x4f\x1a\xc7\x73\x7e\x46\xef\x89\x96\xb1\xbc\x3c\x31\xa0\x8f\xe7\x3d\x69\x3c\xaf\x82\xd0\xeb\x63\x7a\x81\x82\xf0\xac\x81\x18\xfb\xe6\xe7\x08\xc6\xac\x53\xaa\xb2\xc9\xdd\x93\x9f\xa3\xca\x35\xb7\x3d\x4e\x5f\xdc\xde\xea\xcb\x8f\x2b\xa6\x99\x90\x38\x06\xa3\x4b\xa6\x28\x85\xc4\xab\x9c\x05\x18\xd1\xcc\x9a\xf7\x93\xc7\xd0\xa2\x87\xc6\x1a\x90\xb9\xc4\x50\xeb\xc5\xdd\xa1\x1a\xa5\x37\x66\xb0\xbf\x49\x42\xb8\xd5\xd9\x39\xfa\x4e\x50\xe8\xf3\x9f\xeb\xf1\x1c\xc5\x29\x11\xec\x5b\xa9\x4b\xef\x63\xb6\x42\xf7\x2c\x7d\x4c\x48\x3c\x83\x1d\x2a\x4e\xe6\x10\x51\x32\x40\x54\xba\xc7\x38\xc1\xd1\x5c\x89\xcb\xb1\x9a\x3b\xb8\xb5\xf5\x65\x4f\xcc\xb3\xdc\x64\x9e\x7b\x26\x83\x78\x77\x84\xd0\x29\x43\x53\xac\x8c\x62\x91\x4d\xf2\xf1\xe3\x54\x29\x08\x70\xfb\xfb\x0b\xcf\x07\x79\xb2\x40\x5c\x65\xe0\xad\x46\x7b\x55\x0c\x30\x4c\x28\xde\xca\x31\xfe\x80\xb7\x49\x05\xfc\x9c\x09\xa9\xbb\x19\x42\x4f\x6b\x33\x5f\x03\x6a\x76\x69\xcf\x50\x25\x48\xa7\x10\xb3\x34\xae\xed\xfb\x5e\x58\x4a\xd7\xb9\xe4\x51\x0c\x53\x9c\xc8\x98\x44\x30\xae\x26\x77\x9c\x3e\x32\x21\x39\xc1\x0b\x98\x88\x30\x4d\x59\xa7\x3a\x5e\xa1\x9d\x0d\x94\xeb\x1b\xb8\xcb\x16\x9f\x51\x76\xaf\x76\x37\x4f\xf4\x4e\x21\x8b\x56\xbd\xb9\x62\xd3\x7e\xa0\x0c\xf3\xad\xfa\xbe\xe9\x4a\xf4\x1b\x99\xf2\x93\x55\x5d\x26\xbc\xc4\xeb\xd2\xde\xbb\x18\xee\x82\x2e\xd4\xbd\xa8\x5e\x87\x40\xd4\xe9\xb2\x72\x18\x49\x3c\x53\xf4\x99\x93\x64\xe9\x15\x89\x5a\x62\x2e\x5d\xb3\x09\x93\xfd\x19\xa5\x8b\x45\xc6\x20\x61\xd7\xd8\x02\x8f\x26\xcd\xcf\xf8\x85\xf2\xc1\x8f\xc6\xec\x54\x7e\x2b\xd4\xf9\x4a\xd9\x2c\x59\x21\x1c\x3f\x50\x91\x27\xdd\x47\x29\x13\xd9\x82\x70\xf3\x0a\x2a\x74\x4b\x04\xdd\x2c\x1d\x61\xcb\x2b\x6a\x6e\x4a\xf1\xb2\x15\x0b\xcd\xdd\x30\x43\x13\x32\x55\x97\xee\x12\x73\x61\x7d\x10\x15\xfe\x03\xb3\xb9\xb1\xa2\xd5\x8b\x9d\xc9\x9f\xfd\x63\x87\x16\xf9\x09\xc5\x46\xa7\x7d\x5f\x3c\x9f\xb6\xc5\x47\xfd\xd9\x9c\x94\x16\x85\x9a\x2f\x26\x43\x85\x93\x52\xbb\x85\xa2\xa9\x67\xbb\x3e\x08\x38\x34\xea\x3d\x56\xa1\xd1\x93\xeb\xe4\x2d\x2a\x2c\xd0\xcc\x5a\xbb\x00\xfc\xb3\x69\x7a\xe8\x0a\x89\x25\x8d\x8c\xee\x94\xd7\xd5\xd5\x4f\xd7\x6f\x6d\xdb\x82\xa7\x75\xdb\x2b\x22\x9c\x94\x77\xb8\x9e\x96\xd7\xfa\xf7\xcd\xb2\xcf\x1c\x37\x3d\x76\x23\x0c\x22\x4a\x93\xa4\x4b\x5e\x7d\x61\xe5\xc7\xf9\xe3\xcd\x33\xca\xdf\xa3\x36\xc0\xee\x05\x9c\x1a\x5d\x0b\x00\x27\x46\xb3\x10\xd2\xec\x92\xff\x23\x2d\x43\x57\x88\x65\x8b\x09\xe1\x63\x96\x4e\xa1\xdc\x42\x52\x67\x36\x2e\x79\xba\xa0\x5d\x12\x93\x2e\x60\x9b\xaf\x6c\xb0\x67\x8d\x37\xcb\x86\x84\xd4\x29\x32\xec\x65\xde\xa8\xfb\x45\x32\xad\x67\x34\x9c\xa1\x05\x5e\x6e\x44\xf0\x52\xcf\xf4\x12\xa5\x17\xda\x74\x35\xd4\x83\x6c\x68\x02\x45\x0c\x80\xc8\x8f\x78\x95\x83\x45\xba\x1c\xa7\x6b\xad\x8b\x10\x91\xf7\x9c\x36\x5c\xe6\x9d\x18\x17\x2c\xd3\xfb\xa5\xa9\xd0\xe6\x04\x1d\x57\xb1\x61\xe7\xb3\x64\xd7\xfc\x94\x4a\xb6\x7f\xec\x7d\xfd\xba\xcb\x6d\x18\x1e\x06\x6f\x44\x04\xd3\x69\x26\xd5\xe7\x80\x73\x76\x4e\xa3\xc2\x38\x48\xdb\x72\xd6\x57\x7e\x59\x3d\xea\x33\xd0\xcc\xb0\x75\x2b\x62\x6d\x89\x3f\xeb\xd6\x65\xc2\xbe\xb1\xa2\xa9\x84\x77\xde\xbb\x74\xae\x59\x6f\x43\x4c\x95\xee\xa2\xd5\xca\x74\x3a\x4d\x52\xac\x2c\x35\x13\xbb\x9e\xd2\x84\x88\x23\x74\x5a\x61\x4f\xf8\x8d\x9f\x74\x7a\x2b\x44\x42\xac\xbe\x93\x71\x6a\x50\x19\x84\x13\xa7\xd5\x20\x6a\x8a\x0e\xe7\x2e\x07\x4e\xd4\x9c\x81\x81\x41\x93\x9f\x2b\x13\x6f\xae\x07\xa0\xe0\xa0\x5a\x60\x29\xd5\x94\xc0\xb6\xa3\x52\xfb\x22\x62\xb2\x24\x2c\x76\x0f\xa4\xba\x21\x28\x8e\x74\xb7\xd6\x7c\x56\x35\x5b\xba\x8b\xca\x27\xed\x63\xf4\xf6\xad\x85\xae\xc8\xdf\xf8\xff\x2d\xce\xf0\x26\x1c\xbd\xf3\xec\x9c\x5e\xde\xdd\xb9\xff\x11\x1e\xb5\xce\x24\x8c\xa6\x9c\x80\xbf\x71\xe1\x70\x81\x2c\x26\x5c\xc8\x34\x85\x1b\xea\xfa\xe4\xa7\xf7\xb7\xa7\x88\xc8\x08\xea\xb0\x8e\x59\x24\x1e\x06\x4a\xa1\xfd\x25\x23\x52\x7d\x5c\x57\x84\x67\x41\x98\x00\x49\x40\xdb\xd6\xe3\xb6\x84\x51\xff\x3d\x09\x9f\x6f\x60\x79\xaf\x71\xb3\x2e\x58\x05\xbc\x6b\x0b\x63\x00\x9b\x42\x36\x76\xd0\xb1\x32\xd8\x8f\x34\x4d\x08\x66\xa3\xaa\xea\x67\x1b\x44\x83\xd9\x3f\x33\xd6\x51\x4d\x3a\xce\x1f\xf2\x66\x51\xa3\x85\x2d\x96\x98\x53\xd1\x6d\x78\xfb\x4c\xe5\xe8\xeb\x84\x88\xa5\x2b\x46\x13\x4d\x29\x94\x17\x8a\x43\x92\x13\x02\x22\xc4\xf1\x93\xb9\xeb\xe1\x96\xf7\xa8\xe1\x3d\x74\x34\x66\x9f\xad\xff\x33\xff\x54\xe4\x7d\x9a\x17\x13\x28\xba\x92\x81\xcd\x14\x8e\x02\xc3\xc6\x54\xb8\x0f\x20\x17\x5f\x64\x89\xd4\xa5\x91\xa6\x94\xe1\xc4\x4d\x54\x7f\x53\x25\x25\x38\x66\xd1\x1c\xfa\x6f\x6d\x13\xa1\x9d\xde\x91\xa4\x8b\xee\x78\x3a\x1d\x25\x42\xf1\x77\x74\x5f\x73\x3a\x7f\x6f\x4b\xaa\x75\xd8\xa0\x7c\x31\xa0\xb9\xd9\x02\x31\xda\x2a\xd1\x7e\xba\x44\x17\x5a\x22\x08\x9c\x6c\x45\x70\x80\x06\x53\xaa\x5d\x34\xba\xb5\x69\x27\x07\x1d\x1a\xad\x5b\x6e\x02\x6f\x41\x58\x8e\x19\xcf\x18\x64\x54\x3b\xff\x39\x46\x82\x70\xaa\x1d\xd9\x51\xca\xb4\x0e\x60\x9c\x27\x33\x25\x26\x94\xe6\x07\xc8\x8c\x94\x81\x45\x95\x66\x42\xc9\x10\xbc\x20\x52\x5d\x50\xdf\x41\xcd\x3f\x1d\xc1\x18\xa0\x25\xa7\x0b\x49\x1f\x88\x2b\x83\xe0\xef\x5c\x25\x33\x6f\x13\xdd\x5a\x12\x8e\x65\xdb\xaa\x0a\x55\x6f\xbf\xb0\x23\x54\x1e\xd8\x84\x4c\xe5\x5d\xa5\xdf\xa5\xc1\xc4\x50\x23\xb2\xb8\x06\x45\x46\x67\xf3\x1d\x8c\xd8\xfe\xd4\xff\xd1\xf8\xc5\xd4\x51\xf7\x6e\x7c\x9e\xa6\x52\xf3\x5b\x2e\x93\x90\xa5\x26\xa8\x0b\xe6\xa5\xba\x12\x93\xda\x54\x0a\xbb\xaa\xce\xf0\x3d\x4b\x1f\x99\xb3\xad\x95\xda\x30\xc2\x50\x1c\xcc\x09\x16\x13\xa7\xd0\xa7\x7a\xed\x79\x0e\xaa\x0d\xed\x49\x1e\x87\xdf\x2a\x17\x2a\x28\x26\x2b\x94\x57\x94\x0a\x9e\x6b\x73\xbd\x69\xbb\xd3\x9e\x5d\xbd\x60\x53\x44\x45\x92\xa5\xb1\x8d\x4d\x0f\x4a\x07\xf2\x00\xf7\xaa\x7a\xd5\x11\xfa\x62\x35\x39\x08\x03\xe5\x95\xd0\x4c\x9b\xdb\x04\xaf\x6c\xcf\xf1\x2a\xc2\xee\x02\xe0\xbf\xeb\xd8\x4c\x33\x81\x1d\x72\xb3\x82\xca\xc1\x85\xca\x98\xb6\xb0\x5a\xc6\x8e\xcd\x85\x6d\x1e\xba\x26\xcd\x98\x84\x8f\x50\x55\x45\x77\xb3\x07\x6f\x55\xca\x92\xd5\xff\xa3\x37\x0b\x80\xfd\xae\x29\xae\xa9\xe5\x61\x7c\x98\xea\xfc\x80\x0f\x8e\xa5\x52\x5d\x8a\x53\x9a\x24\x10\x63\x39\x42\x43\xa8\x0b\x06\x15\x9f\x94\x22\x6f\x83\x77\x74\xc6\xd2\x75\x21\x86\x1a\x66\x8a\x3c\x66\xba\xae\x67\x26\x01\xdc\xe4\xa2\x0a\x3b\xe2\xa8\x1d\x40\xf0\x94\x6c\xc1\xe5\x34\xb2\xf6\xc0\xbb\x0e\x97\xf1\x4b\x84\xeb\x4a\xd3\xf5\x4d\xe3\xea\xa9\x7f\xca\x30\xc7\x4c\x42\x10\xca\x54\x8f\xe5\x26\xd0\x0b\x1d\xac\xc9\x57\x88\xd6\x32\x6d\xd8\xc1\x47\xfe\xe6\x5a\xa7\xfb\x8c\x3e\x10\x86\x68\x3c\x40\xf4\x88\x1c\x0d\x4c\xf5\x5d\x91\x4d\xf2\x5f\xce\xb1\x40\x78\xcc\x4a\x40\xb2\x23\x34\x4c\x44\x6a\x9e\x20\x2c\x4a\xa0\x0e\x9f\x17\x2f\x73\x9c\x6f\xdc\x44\x93\x15\xa0\x4d\x61\x2b\xf3\xe1\x53\xf3\x85\xf7\xe0\x98\x61\xa1\xbd\xd2\x09\x9c\xf4\xfc\xf3\x35\xed\xc5\x9f\x34\xcf\xb8\x74\x0d\x3d\xd9\x26\xe9\x82\x72\x4d\x1b\x04\xbf\x80\x8d\xc9\x01\x7e\x63\xe6\xd8\x19\x7d\x87\x65\x42\xb0\x90\xe8\x0f\xef\x3a\x05\x67\xec\xfa\x72\xe1\x6a\x4e\x6f\x0e\x43\xb1\xa1\xef\xba\x32\xc1\x50\x86\x08\x61\x68\x8c\xec\x80\x29\x03\xb5\xcd\x32\x45\x0f\x54\x64\x50\xd9\xd0\x83\x55\xe9\xda\x74\x54\x0a\x5b\x66\x45\xfb\x29\x6b\xc4\x88\xad\x14\x6b\xfc\x97\x66\x5a\x15\x8c\x35\xd0\x24\xa7\x5a\xd9\x05\x64\x73\x1e\x84\x9e\x2b\x2d\xd7\x08\x56\x1b\xb7\xf1\x4a\x60\x0d\x93\x24\x0c\xfc\x2a\x05\x27\x26\x4c\x2d\x18\xea\x32\x1e\x21\xbf\x89\xa8\xc8\x63\x85\x61\x69\xe6\xbc\xe1\x3f\x4a\xa7\x63\xe6\xd0\xa9\xfe\xd8\x95\xca\x4e\x95\xb9\xf8\x8c\x3a\x70\xc5\xeb\xcf\x74\x81\xcc\x16\xba\x70\x7d\x95\xf1\x06\xf7\x4a\xc9\x44\x6f\x50\x8d\x77\xfd\x82\xf6\x9a\x72\xb5\xb9\x0b\xb7\xec\x63\x5a\x61\x3d\xd7\x6c\xae\xa7\x5a\x6c\xb1\xa9\x79\xd0\xfa\xb9\x1c\xb8\xc1\xd4\x4f\x63\x40\x94\xad\x17\x82\x39\x42\xcb\x8a\x0e\xb0\x5b\x69\xec\x61\x4c\xbc\x00\x3c\x40\x89\xac\xdc\x33\xbf\xac\xab\x87\xf5\xba\x97\x3f\xc8\xd7\x6f\x97\xe2\xa2\xd0\xe5\x85\xd7\xeb\x7a\xc3\xf8\x9f\x38\x22\x2c\x5a\xe9\x37\xd9\xba\x7e\xb9\x1e\x07\xca\x9e\x97\xc1\x89\xc1\x36\xaf\xd4\x0e\x4d\xad\xdb\x23\x34\x82\x7b\xc6\x96\xbe\xc5\x53\xeb\x5f\xf0\x7e\x3c\x66\xca\x30\x51\x57\xbc\xd0\x93\xb6\xe3\x87\x2c\x5e\x75\x02\x34\x74\x7f\x2b\xd7\xcc\x62\x7d\x71\x80\x3a\x63\xc2\x66\x0e\xc0\x18\x90\x69\x8d\x46\xb3\x0f\x28\x4e\xa3\x7b\xc2\xdf\x73\x12\x53\xf1\x01\x5c\xe5\xb2\xd6\x47\xb7\x50\xc6\xf6\xd6\x8a\xc6\xa6\xd5\xe7\xf5\xfb\x0d\xfa\x48\xdf\x5b\x44\x69\x08\x53\xb0\x26\x2c\xaa\x50\x43\x0d\x4d\xe9\x0b\x44\x98\xe4\xab\x65\x4a\x99\xb4\x28\x89\xa8\x40\x08\x6b\x68\x28\x9d\xad\x0e\x8b\xc3\x77\x11\x52\xdb\x70\xd9\x37\x73\x22\x88\x8d\x1f\xe8\x45\xc9\x14\xe9\xaa\xd0\x5a\x5c\x2c\xb1\x9c\x0b\xc0\x45\x86\x34\x30\x36\x17\x3c\xaa\x28\x84\x97\x10\x7e\xd0\x4e\x8a\xfc\x21\x07\xf8\x13\x92\x26\xc9\x98\x31\x42\x62\x81\xa0\x4e\xd1\xb7\x95\xf8\x5b\xf5\xe8\x00\xe1\x38\x46\xff\xf3\xbb\x8f\x67\x7f\xbb\x19\xdd\x9d\x9e\x5f\xde\xde\xdc\x7d\x3c\x3d\x1b\xbd\x1b\xb8\x0f\x2f\x6e\x6f\xdc\xa7\xda\xc1\xf2\x40\x38\x5a\xe0\x7b\xb0\xf0\x98\xd0\xea\x1f\xc0\xe2\xfc\x99\xda\x74\x27\xf5\x8d\x20\x16\x6a\x62\xd4\x14\x97\xf0\x62\xf6\x70\x4d\x4a\x62\x07\xdb\xf7\xca\x3d\xd2\xcc\x83\x96\x79\xdc\x2b\xac\x1a\xb8\x20\x4c\x2a\x19\x63\x30\x6b\xb9\xe9\x9b\x33\x1c\x61\x33\xca\xea\x02\xe2\x84\x3d\x3c\xa5\x0e\xff\x13\x59\xfd\xac\xac\xeb\x4b\x4c\x79\x6b\xde\x1b\xb1\x07\xca\x53\x06\x4b\x73\x5e\xad\xbc\x43\x07\x81\x05\x17\x0e\x95\xd0\xba\x30\x84\x5c\x96\xb5\xa0\x0b\x36\xa5\xb5\xf0\xaa\x17\x5b\xee\x50\xbb\x89\xc9\x57\xc9\xb1\x69\x08\x2a\x8c\xb8\xc1\x0f\x98\x26\x00\x98\xb1\x17\x4d\xce\x83\xba\xf1\xc3\x07\x44\x12\x3c\x49\x39\xc0\x68\x75\x84\xcf\x0e\x61\x08\x06\x25\xd0\xdd\x40\x75\xc0\x8d\x94\x3f\x5d\x43\x9e\xe0\x1e\xba\x4c\x79\x9b\x9b\x5c\xfd\x0c\xa8\x90\x2e\x95\x49\x56\x10\xa2\xe6\x9a\x9d\x12\xac\x2b\x21\x0b\x90\x34\x22\x5b\xaa\x75\x18\x30\x48\x92\x04\x45\xb7\xd4\x19\x10\x47\xc6\x39\x9e\xff\x32\x65\xe8\xa7\xbf\x08\x34\xc9\xe4\x98\x85\x63\xa4\x0c\xfa\xef\xfc\x80\x65\x34\xaf\x32\xec\xea\xaf\xda\xcb\x2d\x7b\x88\xb8\x65\xde\x2d\xc3\x91\x82\xd1\x28\x93\x64\x56\x4c\x51\xeb\x52\x2d\xe5\x1c\x40\x3d\xd0\xca\x18\x9a\x8b\xa4\xc8\x34\xa5\x35\x18\xfe\x65\x1a\x7f\x2b\xd0\xe9\xa5\x92\xb9\x4a\xc7\x86\x70\x34\x15\xda\x93\x06\xd1\x29\x40\xe8\xe9\xa7\x35\x42\x68\x80\xbe\x47\xe3\xec\xfb\xef\xff\x14\xa1\xaf\xf6\x8f\xff\xf8\xf3\x9f\xff\xf4\x1f\x9b\xf4\xca\x81\x71\x73\x1a\x99\x0c\xda\xa2\x10\xf6\x77\x60\x54\xa8\xe8\xdc\x3d\x12\x0c\x05\x82\xef\xa0\xd5\x7a\xb7\x74\xaf\x8a\x8a\xb9\x46\xad\xb4\xde\x08\x4e\x74\xb4\x1e\xca\x4e\xd7\xc1\x93\x88\x10\x1d\x55\xad\xca\xd2\xd3\x66\x1c\x28\x3a\xf3\xb8\x69\xfb\x0f\x65\x5d\xc1\x68\x7a\x14\x6b\x2c\x78\xe8\xaa\x80\xf6\x61\x79\xec\xad\xd8\x3f\xde\x4c\xd9\xd4\x6b\x8f\x80\xec\x79\x23\x1d\x34\xe3\x69\xb6\x74\x10\x44\x0b\xc6\xd0\xdb\x30\x66\x9f\xd5\x3d\x7f\xca\xa6\xe9\x07\xc3\xb0\x67\x94\xdd\xc3\x5f\x35\x3e\xee\xed\xf7\xc8\x15\xa2\xf6\x3e\xb7\xf6\x81\xa6\xf8\xa1\xe9\x46\xa0\x66\x2d\x24\x8e\xee\x75\x7a\x60\x53\x21\xf3\xae\xa5\xd8\x73\x08\x43\xa6\x24\xa5\x21\x1d\xf4\x99\x16\x7e\xa1\xa4\x07\x8a\x11\x46\xb7\x57\xa7\xd5\xef\xbe\xa7\x65\xdd\xbc\xfa\x16\x08\x19\x04\xfe\xe7\x27\xda\x29\x8a\x56\x48\x67\x25\x01\xab\xbb\xac\x98\xba\x04\xad\x42\x66\xef\x56\x09\xa1\x9d\x4b\x4f\xf8\xba\x1e\xc0\x55\x9a\xf8\xc3\xcd\x32\x4c\x47\x70\xac\x6b\xdf\x6f\x25\x8b\x32\x38\xf5\x23\x90\xe1\xc1\x75\xaf\x80\xb8\xa1\xd9\xfc\xf6\xd5\x4e\xfc\x06\x6b\xb6\xe4\x89\x69\x4f\xa5\xe7\x36\x21\x90\x9a\x52\x3f\x87\xad\xeb\x9b\xf8\x53\x30\xe5\x14\xea\x66\x30\x66\x43\xfb\x13\x87\x8b\x60\x82\xea\xee\x35\xe0\xd9\x15\xd9\x44\xc7\x7f\xa0\x7b\xbb\x57\xe9\xda\x2c\xae\x66\x11\x5b\xf6\xb1\xbe\x15\x84\x3b\xf3\xc9\x20\x3a\xad\xa6\x67\xd7\x51\xf3\x66\x53\xa9\x6a\x8b\x97\x5f\xdb\x25\x16\x8a\x5e\x55\xbd\x78\xdd\xd1\x1c\x39\xcc\x9b\x19\xc8\xaf\xb3\xa5\xbd\xe6\xc9\x2a\xf7\xd1\x2a\x8a\x6b\x5b\xb2\xf0\xb2\xe0\xb0\x4e\x35\xb6\x63\x3b\x4d\x4a\xbb\xa0\x76\xee\x1d\x95\x73\xc2\x40\x4f\x68\x3f\x32\x00\x64\xba\xab\x41\x38\x07\x81\x58\xd3\xd5\x53\x6c\x33\x46\x4d\x4e\xb6\xf1\xd5\x7b\x4e\x0a\xdb\x53\x22\x7f\x5e\x99\x49\x58\x52\x31\xa5\xa5\x24\xea\x22\xa2\x66\x1b\xaa\x77\xea\x4d\x61\xb7\xb9\x89\x55\x5d\xb0\xe5\x08\x7d\xa4\x5c\x48\x6f\x49\x4a\x6d\x35\x80\x98\xba\x6a\xd7\x72\x5e\xdf\x6a\x6d\x17\xb6\x8d\x5d\x41\x5b\x83\xcf\x05\xd6\x8e\xd0\x30\x2f\x87\xa1\x21\x41\x44\xb4\x58\x11\x49\x04\xd9\x84\xf9\x5a\x69\xac\x60\x07\x00\x03\x21\x10\x97\x42\x7d\x9e\xe7\x95\xb9\x69\x3e\x02\x76\x05\xdf\x93\xba\x1e\x19\x5d\xfb\xab\xac\x6d\xab\x32\x74\x0a\x69\xaa\x75\xd2\x4d\x26\xd8\xfe\xd8\xe5\x28\x2c\x3a\x7d\xaf\x48\x6e\x1a\x96\xe9\x90\xd9\x14\xf8\xd0\xe0\xb8\x1e\xe7\xca\x6e\xca\x99\xd2\xee\x9f\xd0\xed\x28\x33\x62\x43\x63\x10\x71\x74\x04\x3e\x1a\xb3\xd3\x29\x62\xa9\x0f\xf3\x82\x59\xbb\x43\xaa\x5d\x6a\x6e\xbf\x91\xb9\x1b\x34\x19\xc0\xc0\xb7\x43\x95\x4f\x73\xe0\x8c\xd8\xe2\x38\x6f\xd7\xd2\xd2\x9d\xdc\x9a\x6b\xac\x6b\x12\x5d\xed\x59\xea\x14\x7b\x9d\x11\x46\x38\x8d\x20\x41\x43\x5f\xbb\x4b\x4c\xab\x4c\x4a\x53\x98\x60\x5f\x53\x8d\x76\x9d\x63\x64\x96\xbb\x61\x7e\x51\xa2\x9f\xd6\x18\xf9\x04\x0a\xbd\xe9\xbc\xa2\x5d\x64\xe3\xe4\x25\x22\xda\x65\xe2\x68\xe6\x11\xba\x12\xbb\x9e\x57\x37\x1e\x09\x48\x6c\x3a\xa7\x6a\xef\x90\x80\xa4\x28\x0d\xe4\x4b\xa7\x2e\x79\x4a\xfb\x96\x74\x9e\xa5\xb2\x35\x4b\x7f\xfc\x90\xa4\x13\xf1\xce\xef\x1f\x67\xde\x91\xe3\xf9\xea\x59\x70\x37\xb9\x3a\x96\x14\x4f\x79\x1f\xda\x33\xe3\xdf\x87\x5d\x08\x5f\xcd\x54\x79\x68\x4d\xc3\x19\x30\x4f\x33\x66\x73\x1d\x52\x46\xd2\x29\xe0\x1b\xa1\xb3\x8d\xb5\x0a\x01\x06\xcd\x52\xe9\x41\x17\x38\x59\xea\xc0\x19\x68\xa8\xf5\xe4\xde\x32\xdf\x67\x1d\x9d\x9f\x22\xdf\x67\x5b\xba\x9b\x83\xf3\x42\x04\xdf\x36\x8b\x43\x1f\xa5\x0e\x62\x16\x7e\xbf\xd6\x18\x77\x72\x00\xac\x6f\xbf\x62\x93\x46\xea\x82\xa7\x98\x1c\xca\xf4\x10\x20\x5f\x00\x24\xd2\x19\x78\x75\x75\x29\xa2\x39\x59\x74\x48\x72\xba\x86\xdf\xb7\x98\xa7\xee\x2d\xfe\xd5\x9b\xa8\xb9\x7b\x05\xb2\xd5\x5a\x75\xcb\x71\x68\xbc\x04\xf6\xd9\xda\x9b\xa3\xa3\x8b\xc3\xdf\xca\x66\x0f\x98\xc9\x2e\x29\x64\x47\x99\x9c\xc6\x29\x18\x3d\x76\x0e\x47\xe8\x82\x25\x2b\x34\x4f\x17\xa9\xba\xb6\xd3\x4c\x78\x5f\x6a\xb8\x10\x5c\x36\x0d\xb5\x6a\x97\x1a\xe2\xfd\x72\xab\x51\x47\x4b\x7d\xa5\x75\x47\xff\x47\xeb\x53\x44\xbd\x95\x4c\xc2\x14\xbb\x35\xf3\x77\xb9\x51\xcd\x7c\x03\x09\x3d\x0b\x3a\x9b\x9b\xca\x1f\x7e\x4b\x5c\x60\xfd\x85\x2b\x84\x68\x7b\x73\xe9\x94\x32\x60\x28\x56\x55\xf2\xbc\xd6\xbd\xdd\x25\xc3\xaf\x43\x8f\x32\x0f\x01\xec\xb0\x73\x40\x64\x87\xa3\xb5\xf8\x34\xf7\xe0\x43\x5e\x76\x66\xb5\x24\x03\x34\xc9\xe0\xfb\xf3\x8b\x1b\xdf\x37\x44\x19\x7c\x7d\x18\xcd\x49\x74\xaf\xf6\x05\x69\xa1\xa8\xc9\x65\xeb\x07\x4d\x56\x63\x96\x17\x37\x90\xa9\x75\x74\xac\x5c\xf6\x88\xcb\xa0\x4a\x39\x8a\xa9\x58\x26\x78\x85\xc8\x57\x49\x98\xae\xf5\x52\xd1\x28\x52\x31\xcb\x66\x66\x0b\x54\x5f\x30\x52\xc0\xea\x61\xf0\x2f\xbb\x08\x57\x64\x0e\xb0\xd4\x53\x1c\x55\xaa\x1d\x5b\xe7\xf3\x6c\x13\x3f\xa9\xab\x23\xe2\x95\x56\xd4\x3b\xea\xbb\x4a\x1d\x94\x87\x15\x30\x39\x63\x53\xcf\x6c\x7c\x00\x1e\x94\xb1\xad\xc2\xa6\xfe\xad\xab\x38\x11\xfe\x40\xe2\x31\x0b\xc1\x52\xe6\x2a\xcb\x77\x19\xe5\xf9\xe5\x75\xa2\xb3\x7b\x12\xab\xa2\xb3\xcb\xb1\x6c\x0c\xed\x40\x80\xb8\xd0\x75\x7d\x4d\xcd\x88\xea\x3a\x6e\x4f\x90\x98\xdd\xda\xf9\x91\x27\xb4\x9b\x6c\x54\x53\x6e\x82\xe8\x54\xc9\x64\xa5\x1b\xf3\x1b\xc6\x74\x50\x10\x8d\x13\x75\xd8\x57\x83\x0f\xc9\x51\x0f\x66\xcf\xab\xc6\x18\x33\x1b\xb1\x9c\x66\x49\xa2\xb1\xff\xb5\x5d\x1f\x35\x34\xcc\x46\x00\x5f\x0e\x7f\xe3\xec\x5a\xe4\x55\x00\xf0\x7a\x24\x2e\x63\x25\x3b\x58\xb4\xca\xab\x4a\x02\xf3\x12\x26\x32\x48\x3c\xb5\xd9\xbf\x00\x74\x9e\x11\x89\x94\xde\x11\x67\x89\x06\x0e\xf3\x8c\x19\x9c\x19\x4e\x12\x44\xa5\x18\x33\x07\x8b\xd3\x55\x79\xe0\x2a\x88\x4c\x2e\x48\x6c\x74\x41\x78\x05\x0c\x6b\x6a\x44\xc1\x05\x41\x23\x2a\x83\x29\x81\xa7\x72\xe5\xa7\xcc\x2d\x97\x04\x73\x50\x17\x6d\x93\x02\x5f\x1b\x2c\x6e\x83\x69\x2e\x0c\xa5\x7b\xea\xbb\x85\xec\x82\x7b\x75\xe9\xa6\xce\x9b\x72\x84\x86\x7a\x75\x4a\x15\xb4\xf5\x6b\xf4\x6c\x4d\x98\xda\xc4\x13\x94\xbe\x25\x85\x2b\xb6\xe8\x34\xea\x25\xe6\x92\x46\x59\x82\x79\xb2\x52\xd2\x65\x9a\x25\x88\x4e\xbd\x52\x3c\xb0\x09\x1a\x15\x05\x25\x55\x53\xb8\x23\x2c\xea\x59\x60\x68\x6b\x6f\x18\xdc\x1a\x9e\x89\xe7\x44\xd4\x99\x5e\xda\x3b\xa5\xc6\x7a\x77\x84\x4e\x8a\x85\x97\xe0\x58\x78\x68\x6a\x2a\xb4\x04\x74\xf3\x35\x49\xa3\x50\x6b\x0e\x0a\x38\xd1\xa9\x52\x76\xbf\xf5\x0e\x5e\x5d\x85\x3f\x2c\xee\x3b\x7a\x28\x6f\xb0\xb8\x5f\xeb\xa5\x3c\xf5\xae\xca\x5c\x00\xde\x40\xe1\xb8\xc0\x6f\xe9\x4e\xc4\x9a\x6a\xf6\x1d\x27\xe9\x23\xd1\x37\x98\xe8\x17\xaf\x32\x5b\x71\xb2\x8b\x86\xca\x3f\xb0\x8f\x1d\xa7\xea\x65\xe5\x76\x9f\xa8\xc7\x39\xbe\x3f\xba\x96\xb2\xeb\x8d\xcb\x2f\x41\x7e\x2c\x52\xf3\x52\x8a\x3d\xd1\x11\x8c\x42\xd1\x4f\x98\x83\x49\xa4\x85\x5c\x46\x77\xd8\x26\x04\x25\x94\xdd\xeb\x53\x81\x61\xe7\x07\x08\xe7\xa3\xc3\xe1\xd3\xb3\xd7\xcc\x5c\xa3\xd9\xb8\x68\xf4\x6e\x42\xc2\xed\x10\x23\x95\x9b\xeb\xd6\x5d\xf1\xfc\x7a\x46\xac\x5a\x47\xfb\x6d\x69\x0c\xdb\x39\x25\xd6\xc6\xea\xf4\x05\x13\x36\x32\x5c\xad\xa3\xef\x65\xa1\x53\x79\x9d\x16\x78\x40\x58\xb6\x38\xf8\x80\xfe\x6f\x4e\x99\xdb\xf3\x93\xd1\xc7\xd3\xf3\xd1\x89\xc7\xc0\x07\x7f\xbd\x1d\xdd\x86\x9f\x5c\xdd\x9e\x9f\x9f\x9e\x7f\xf2\x3f\xba\xbe\x3d\x3e\x1e\x8d\x4e\xc2\xdf\x7d\x1c\x9e\x9e\x15\x7e\xa7\x3e\x0a\x7f\x34\xfc\xe1\xe2\xea\x26\xfc\xe8\xfa\xa7\xd3\xcb\xcb\xf0\xa3\x9b\xd3\xcf\xa3\x93\xbb\x8b\xdb\x1b\x4b\xeb\xbf\x7b\x14\x06\xb4\x2c\x44\x77\xdd\xfc\x2b\x49\xb4\x8b\xc2\x1a\x5d\xe3\xcf\x1e\x52\x7e\xca\x29\x61\x71\xb2\xca\xdb\xc2\xa8\x43\x57\x08\x52\xfa\x22\x9d\x2e\x48\x9a\x6d\x83\x19\x50\xa6\x6f\xfa\xa0\x4c\xea\x04\x99\xd1\x0c\x26\xa7\xd0\x56\xcd\x7b\x2b\x27\x92\x97\xdd\x60\x8d\x28\x0b\xc9\x57\xd7\x92\x63\x49\x66\xab\x96\xf8\x37\xf3\x12\xb4\x24\xbc\x69\x2e\x70\xe1\xf2\x6c\x29\xe9\xa4\xec\x68\xb2\x74\x30\x89\x29\xb5\x95\xff\xcc\xd7\xdd\x2d\x3b\x8d\x0f\xa5\x95\xe2\xfa\xbc\x5a\xd0\xd9\x44\xf5\x2d\xb3\x41\xc1\x33\xdd\x7e\x07\x2e\xdd\x23\xd5\xac\x77\x6c\x8b\x5b\x28\x93\x59\x62\x56\x03\xfc\xef\x58\x80\x2f\xcf\xc6\xe5\x79\x19\x4c\x73\x53\x59\x2b\x22\x47\x13\x6f\x62\x59\x9b\x84\x7c\x16\xe7\x3d\xc3\x4c\xa2\xbe\x57\x8d\xa3\x62\x13\x0a\x25\xce\x9e\xfc\x96\x69\xe4\x79\x83\x49\x04\xd5\x4f\x67\x44\x9a\x4e\x78\xfa\x5a\x86\x34\xe3\xda\x50\xdd\x8e\x2b\x22\x3a\xd5\x33\x2f\xe7\xe6\x0a\x04\x5a\x79\xd4\x5d\xd1\x28\x14\x43\xf3\x0a\xc5\xe9\xde\x14\x90\x00\x0b\xc3\xe6\xbe\x38\xa3\x59\x68\x39\xf0\x40\x62\x74\xe8\x17\xa0\x8c\x0f\x01\x5d\x36\x66\x75\x16\x66\x45\xf1\x46\x9f\x03\x2e\x6d\x6d\x8e\x6d\xf6\xbe\x82\xfa\xf5\x47\xd0\x12\xbb\x1d\xa8\x02\xd9\x9f\x1f\xa1\x7a\x57\xa6\xd9\x97\x09\xd6\x2e\x24\x38\x5b\xae\xe8\x48\x1d\xc4\xcb\xdd\x85\xdd\x3c\xae\xad\xbc\xad\xd8\x25\xa6\x68\x3f\x2b\xe8\x2c\x73\x0c\xfe\x37\x5d\x6b\x33\x98\xb8\x57\x6a\xb4\xce\x68\x71\x09\xea\xdb\x89\xf6\x56\x16\xe4\x40\x23\x02\x5c\xd5\x70\x3f\xab\xd7\x55\x28\xe8\xc6\xf8\x6e\x37\x5c\x2e\x38\xb6\x72\x0f\x04\x56\x82\x33\xa5\xd3\x2f\x13\xac\x81\x44\x73\x2c\x34\x4b\x5b\x27\x25\x9e\xd0\x84\x4a\xe8\x5d\xad\xcd\xfb\x02\x85\x53\x8e\x16\x98\xdf\x2b\x8b\x96\x24\x53\x35\x7a\x21\xb8\x5f\xc9\xf4\x5b\x06\xd2\xf2\xc2\x36\xcf\x19\x4a\xcb\x8f\x6c\x5b\xdf\x40\xce\x96\x26\x8c\x96\x6f\x87\x2e\xbd\x2c\x53\xaf\x48\x4f\xb7\x9d\x35\x23\x5e\x16\x1f\x0f\xe8\x5d\x71\x51\x77\xf7\xd9\x9a\x9c\x82\x0e\x62\xbe\x98\x71\x50\x79\xb2\xa6\x49\x8a\x6b\xca\xec\xd8\xb1\x75\x02\x41\xdd\xd8\x71\x9a\x29\x71\x56\x39\xb8\x9e\x55\xf3\xe8\x4d\x06\x98\x3d\xb7\xbb\x52\xe8\x7c\x01\x88\x25\x81\x8e\x4d\x1b\x11\x34\x6f\xf8\x54\x3d\x78\xc6\x71\x15\xba\xa3\x7d\x81\xc3\x3c\xdb\xc6\x32\x0f\xba\x59\x2d\x49\x45\x59\xb7\x00\xbb\xbc\xa1\x31\x77\x7d\x39\x3a\x3e\xfd\x78\x5a\xb0\xa4\x86\xd7\x3f\xf9\xff\xfe\x72\x71\xf5\xd3\xc7\xb3\x8b\x2f\xfe\x67\x67\xc3\xdb\xf3\xe3\x1f\xef\x2e\xcf\x86\xe7\x6b\xec\xad\xf2\x2b\xca\xee\x8e\x3c\x31\x20\xc7\x51\xab\xbb\xc1\x40\x7f\xc1\xd4\xad\x38\x5f\x57\x15\xc9\x7d\x9b\xb6\x12\x7a\x32\x97\xa6\x9b\xa4\xfd\x63\xc4\x24\x5f\x75\x49\xfa\x44\x31\x11\x70\x0f\x19\xef\x65\x98\x70\x48\x04\xf8\x82\xed\xe8\xe7\x20\xd8\xac\x77\xdd\x84\x68\x0c\x1d\xd5\xc5\x92\xd0\xda\x16\x20\xd5\xbd\xdc\xf7\x84\x0e\x3e\x06\x10\xa8\x30\x49\x33\x16\xdb\xca\x6a\x0b\xca\xde\x2f\xf0\xd7\x77\x76\xa5\x79\xa7\x35\xc8\x67\xd5\xe5\xec\x13\xa5\x75\xac\x10\xcf\x58\x33\xb9\xc6\xac\x81\x5e\xeb\x6f\x06\xdd\x67\x90\xfe\x0b\x54\x9c\x5c\x1f\xd5\x1e\xe3\x07\xb2\xaa\xda\xbf\x52\x22\x95\xf6\x4a\x1b\x1d\x18\x06\x59\x72\x02\x85\x44\x9d\x3f\x3a\xd1\x71\x06\xf7\x6f\x88\x77\x06\xf9\xa5\x55\x77\x52\x68\x8b\x6f\x75\x6e\x2a\xbd\x00\x4f\x90\x0a\x67\xde\xa4\x36\x4d\xfb\x04\x6c\xda\xa9\x89\xef\xc6\xe8\x71\x4e\xf4\x6e\xfd\x33\x9d\xa0\x29\x84\xc3\x4d\xf9\x18\x4e\x22\x70\x6f\xa8\xbd\xb0\xe9\x45\x00\xab\x2d\x39\x1a\x2c\x0f\x24\x44\x80\xb3\x0d\x4a\x31\x92\x5f\x32\x83\x9d\xfb\xc3\xf7\xdd\x52\xb6\x24\x5f\x21\x61\xc8\xec\x87\xe3\x0d\x1a\xc5\xf8\xec\x60\x5e\x19\xa3\x55\x25\xdf\xae\x74\x11\xc2\xe7\xad\xf5\x5a\x78\xa9\xf9\xe7\x5a\xc4\xc2\x8d\x4d\x83\xd1\xbf\x7f\xb2\xfc\x88\x9f\x0b\x69\x11\xe6\x75\x10\x88\x34\xa3\x0b\x0f\x75\xaf\x2c\xa3\x47\xcc\x63\xed\x18\x00\x1f\xd1\x11\xfa\x31\x7d\x24\x0f\x84\x0f\x50\x44\xb8\xc4\x06\xae\xac\xce\x5a\x92\xc0\x81\x32\xe3\x8c\x19\xc4\xe6\x35\xf6\x9b\x41\xe9\x1d\x49\x67\x73\xa5\x3c\x1a\x23\xd4\x94\xeb\x14\x44\x02\xd4\x90\x7c\x5d\x92\x48\x83\x32\xea\x22\xd1\xd3\x04\x3f\x94\xf1\xd7\x9b\x40\x6b\xbd\x8a\xa4\xb6\x5d\x92\xc9\x59\x69\x74\x4a\xd9\xc2\x96\x5a\x6a\x2e\x57\x72\x9e\xb2\x01\x9a\xa5\x09\x66\xb3\xa3\xa3\x23\x44\x64\x74\xf4\xae\x13\xa3\x9b\x01\xbd\xd7\xe5\x11\xb5\x24\x15\x24\x59\x59\x0b\x2f\x47\x3e\x28\x2a\x03\xd2\x42\x50\x6d\xde\x54\x70\xff\x75\x11\xa1\xfb\xbc\x6e\xb2\x6a\xad\xb4\x33\xd4\xa7\x66\x9c\x62\x9f\x93\x75\x23\xe9\xdf\x57\x6b\xda\x1d\xa0\x6b\x50\xc9\x81\xc6\x49\x0e\x61\xab\xc9\xa0\x4a\x59\x57\x5c\xd6\xcf\x69\x5d\x95\x9a\x8d\x52\x0e\x2a\x47\x32\x00\xf1\x8d\x90\x4a\x65\x8e\xae\xe0\x38\x07\xea\xdb\x2a\xbd\x29\xc9\x16\xe5\x52\x8b\xbb\xd2\xa2\xf2\x49\xea\xbf\x8e\xe1\x75\xed\xeb\x1a\xb8\x62\x3c\x29\xd7\x68\x2a\x33\x5f\xd3\xf3\x1b\xc6\x04\x69\xc9\xa9\x80\x44\x8b\x4d\x00\x4f\x6e\x18\x3d\x34\xb8\x67\x95\x0d\xa3\xcb\xa3\x99\x46\x34\x80\xe1\x72\xfd\x64\xf4\x23\x42\xab\x3a\xe0\xd3\xad\x97\x0c\x39\x48\x74\x23\xab\xe7\xfc\xe2\x7c\xe4\x9b\x32\xa7\xe7\x37\xa3\x4f\xa3\xab\x20\x06\x75\x76\x31\xbc\x09\xe2\x4d\x37\x57\x85\x30\xd5\x0f\x17\x17\x67\xa3\xe1\xb9\xff\xd1\xc9\xf0\x66\x74\x73\xfa\x39\x18\xfc\xe4\xf6\x6a\x78\x73\x7a\x11\xfc\xee\x87\xd3\xf3\xe1\xd5\xdf\xfc\x4f\x46\x57\x57\x17\x57\x85\xf7\xdd\x1e\x37\x47\xb2\x82\x65\x54\xef\x44\xae\x2c\x7b\x78\xd9\x2a\xa5\xf0\x06\x8b\xfb\x1d\x47\x5f\x01\x6d\xb0\x61\x87\xdf\x1a\xa1\x14\x93\xbb\xcd\x02\xb3\x75\xc1\xe5\xca\xf7\x28\x7d\x70\x75\x87\xa5\x24\x8b\xe5\x76\x85\x1e\xda\x1f\x9c\x6e\x31\x5f\x30\x69\x5a\xc4\x7c\x83\x5d\xdd\x9f\x98\x6f\x45\x38\xb7\x1c\xf3\x3d\x3d\x3f\xbd\x39\x1d\x9e\x9d\xfe\x7f\x85\x11\xbf\x0c\x4f\x6f\x4e\xcf\x3f\xdd\x7d\xbc\xb8\xba\xbb\x1a\x5d\x5f\xdc\x5e\x1d\x8f\xae\x5b\x46\x7c\xcb\x3e\x96\x43\xe4\xbf\xe7\x03\xba\x49\x5d\x95\x02\xa3\x15\x9a\x72\xd0\x8a\xe2\xd0\x5e\x8b\x4a\x80\xe1\x52\x36\x1b\x40\xbb\x80\x0f\x68\xc4\xf9\xe9\x02\xcf\xc8\x65\x96\x24\x03\xe4\x0a\x8e\x40\xd7\x64\xf8\xd9\x65\x1a\x9f\x7a\xcf\x8d\x19\x3a\x44\x95\xcb\x80\xf7\x9b\xc2\x1e\xfa\xf5\x03\xf3\x7e\x2f\xc0\xe1\x1c\x24\xa6\xc0\x8a\xab\x22\xf3\x01\xfd\x80\xa3\xfb\x74\x6a\xca\x28\x0c\x9c\x89\x8b\x7e\xc9\x52\x89\x11\xf9\x1a\x11\x12\xdb\x52\xaf\x45\x3e\x39\x4b\xb7\xea\xcc\xd5\xa5\xa7\x87\x7f\xa6\xd7\x87\xca\x2b\x9f\x33\x99\x0d\x77\xd5\x5d\x22\xaa\x05\x81\x59\xe5\x67\xfd\xa8\x6e\x12\x51\x13\x55\x97\xc9\x0e\xfc\x77\x67\xe9\xac\x1a\x45\xec\x3a\x6a\x52\xe1\xd5\x11\x80\x68\x40\x3a\x43\x82\xb2\xfb\x31\xfb\xa2\x0c\xda\x34\xe3\xfa\x23\x99\x72\x00\xa4\x4f\x93\x4c\xcc\x09\x94\xdf\x1a\xa0\x47\x82\x16\x78\xa5\xa3\x02\x61\x7d\x62\x60\x19\xc5\x9c\xf0\x74\x42\x99\x92\x16\x4b\x6a\x35\xc8\xe2\xd6\xef\xc2\xc0\x8c\xa9\x70\x76\xf6\x13\x86\x6a\x72\x4f\xe1\xe3\x9c\x00\xee\xd7\xab\x6e\x66\x0b\xa3\x6a\xc9\x0d\x39\x66\x69\x7a\x9f\x2d\x4d\x5b\x3b\x2c\xee\xbf\xb5\x28\x3a\x20\xf7\x43\x4a\x63\x14\x67\xcb\xc4\xeb\x2a\xf9\x98\xf2\x5a\xd4\x83\xb6\x74\x3a\xa0\x1e\x0a\xf6\x7b\xd3\xc2\x2a\xcc\x28\xcf\x6a\x6b\xc0\x3f\x3c\x31\x02\xc4\xab\x79\x92\x09\xc2\x0f\x25\xa7\xb3\x19\xe8\x8d\xd6\x29\xb3\xff\x10\x11\xcb\x9b\xab\xbb\xed\xfd\x0f\xbe\xab\x3a\xd1\x15\x61\x5d\xa9\x06\xc5\x53\xcb\x65\xb2\xb2\xc0\x4d\x4d\x40\x7b\xec\x97\x19\xd7\x85\x9c\xa6\xc8\x4d\xa8\x36\x44\xbb\xe4\x44\xbd\x25\xbe\xd3\x65\x64\xb6\x2f\x6f\x73\x3a\x55\x9a\xa0\xe9\x89\x9c\x17\xe2\xc9\x8b\x95\xd8\x1b\x2e\x7f\xb7\x4d\xab\xd0\x19\xcd\x4c\x37\x44\x7c\x64\xb6\x55\x24\x16\xda\x35\x02\x0d\xe3\x57\x79\x1f\x49\x68\x48\x07\xf9\xd0\xae\xc7\xa0\xc9\xd0\x34\x3e\x4e\x5d\xa9\xf0\xe5\x21\x3d\x4e\x50\x03\x52\x35\x6c\x59\x55\x14\x91\xdb\xe6\x5d\x38\xfc\xc3\xa6\x1a\x71\xb3\x4d\x37\x4b\xd2\x09\x4e\x92\x55\x45\x46\x86\x7f\xeb\x74\x73\x60\xda\xc6\x5a\xe1\x9d\x65\x91\x4d\x10\x2a\x4f\x1b\x32\xdd\x83\xf6\x0f\x3b\x4d\x59\xd9\x9e\x60\x99\x4c\x75\xb6\x39\x78\x64\xd5\xe2\x4e\x0b\xed\x09\x8e\x34\x7e\xf9\x34\xae\x2c\x94\x92\x9f\x18\x4b\xf9\x3a\xe9\x5c\xe1\x43\xe9\x94\x71\xb3\xe4\xc4\x7a\xcf\x56\x44\x3a\xa7\x59\x62\xf1\xd5\xab\x65\x58\x91\xde\x8f\x1a\x58\xbf\xa0\x8d\x47\xe8\xfe\xd1\x5e\xcd\xdb\x94\x11\x26\x75\xe5\x4f\x96\x8e\x99\x19\xdc\xe6\xef\xb9\x12\x38\x26\x10\xa2\x09\x33\x30\x36\x08\x48\x05\xa5\x8b\x26\x0f\xa6\x19\xac\xa3\x89\x4c\x01\x5f\xaf\x26\x78\xac\xc4\xb9\x52\x5e\x30\x8b\xf3\x9a\xa5\x73\x32\x66\x85\x24\x36\xaf\x0d\xb5\xe5\x58\xff\xf9\x9d\x25\xf6\x04\xfa\x4e\x13\xe9\x6b\x13\x7b\xd6\x09\xae\x29\x8e\xba\x00\xec\x57\x4b\x12\x9f\xba\xe7\x9a\x99\x21\x70\x9d\xc4\x5e\x68\x29\x38\xe4\x9a\x07\xb4\xc0\x16\x3a\x3b\x4a\xb8\x4e\xb2\x6e\x93\x5c\x51\x25\x57\xac\x5d\x6d\xd1\x0c\xdb\x82\xfd\xc2\x55\x6b\x87\x68\x77\xe0\xf2\x2e\x34\x57\x72\xba\x54\x94\x0a\xa9\xe3\x6b\xf0\xc8\x14\xd3\x24\xe3\xb5\x2a\x82\x66\xcb\x9d\xa7\x1d\x1e\xc3\xb0\xa8\x6a\xd7\x9c\x5f\xda\x3b\x46\xce\x27\xed\x9a\x36\x25\xd9\x8c\x32\x11\x72\x7d\x7d\xf1\xd2\x52\x21\xe7\x35\x1b\x9e\xd7\x7e\x6e\x2f\x8b\x87\xfa\xb0\x17\x5a\xa4\x57\x57\x70\x32\x4a\x9b\x37\xf7\x31\xbb\x81\xbb\x5a\x67\xd5\xb9\x63\x06\x15\xb6\x74\xc1\x14\xa8\x62\x5d\xb5\xde\x40\x9e\x87\x9c\xba\x15\xa0\xa5\x2a\xff\x6d\x3d\x70\xee\x33\x5e\x36\xa5\x26\x6d\x3d\xe2\xba\x6d\x70\xde\xcd\xe2\x31\x2c\x96\x45\xae\xa0\x9e\x03\xff\x3d\x4b\x10\xaf\x4b\xa2\xb4\xc3\x80\x9a\x12\x03\xa5\x2c\xd7\x40\x31\xf5\x1f\xed\x0e\x03\xce\xa3\x57\xa6\x13\xa3\x1e\x70\xa2\x81\x9b\x3e\xd6\x74\x8b\x2c\x5b\xb7\x31\x85\x4e\xd9\x55\xdb\xb1\x25\x0e\x2e\x87\x2e\x3f\x23\x0c\xee\xe7\x12\x89\xba\xa2\xe0\x1e\x7c\xd8\x2f\xdc\x0d\x79\x9f\xb2\x56\x1a\xb3\x43\xbf\xfd\x1c\x62\xb7\x03\x12\xa7\xb4\x15\xc8\xbd\x5c\x7d\x0f\x94\x96\x98\xb0\x54\x12\x84\x11\xa3\xc9\x7b\x96\x25\xc9\xfb\x73\x68\x13\x23\x04\x9d\xe9\x2a\xd4\xe0\x31\x09\xda\x7a\x03\x76\xd8\x73\x95\x79\x47\x00\xae\x48\x35\x25\xed\xc5\x93\x4a\x62\xaa\x2d\x48\x56\x63\xa6\x9e\xd0\x2a\x96\xeb\xd1\x6a\x7b\x3d\xc2\xdb\x6c\x5e\x93\x79\x97\xb2\x8d\xd9\xca\x1f\xbc\x82\xc1\x9a\x52\x81\xb6\x0a\x69\xf6\x35\x22\xf7\xa6\x46\x64\xca\xad\xe7\xa9\x43\xb5\xc8\xfa\x43\xb5\x71\xb9\x46\xa7\x88\xb9\x90\x40\x0b\x7e\x7c\xc9\x70\xc0\x53\x26\x86\x6d\x9d\x05\x66\x29\xb5\x0b\xaf\xe8\x2f\x19\xc9\x28\x9b\xdd\x4d\xb2\x78\x46\xb6\xf2\xd1\xa5\x12\x27\xe8\x11\x53\x09\x2e\x3a\x5f\x6d\x37\xe7\x22\x26\x09\x5e\xe9\x4c\x0a\xf5\x56\xd2\xb1\xa5\xbd\x5d\xad\xe3\x5d\xc5\x65\xdc\xab\xd7\x30\x66\x37\xa9\x33\x2a\xcd\x89\x9d\x66\x4a\x1b\x6d\x90\x7e\x76\xd4\x13\x4d\xf9\xad\x60\x9a\xbb\xf4\x0a\x35\x7a\xca\x6c\xb4\xcd\x7a\x98\xfd\x6e\x6e\xc1\x24\x0c\x92\x4c\x9f\x79\xe8\x80\x20\x43\xc3\x48\x57\xc9\xb0\x60\x35\xd3\x8b\x24\xc3\x0e\xbb\x0f\xb4\x54\x04\x37\x89\xe5\x19\x03\xec\x19\xf9\xaa\xd3\xf7\x93\x95\x3f\x2a\x24\x7a\xc2\x88\x1d\x23\xf2\x60\x73\xbb\x5c\xdc\xb5\x1b\x5d\xbf\x9b\xdb\x3a\xc1\x74\xae\xc3\x32\xc1\xec\x4e\x2b\x37\x2f\xe0\x06\xf3\xf2\x2d\xea\x4a\x41\x79\x3d\x0f\x77\x33\x4f\x27\xe1\xaf\x82\x2c\x28\xbf\x09\xda\xa0\x58\x2e\xd6\x6a\x24\xae\x1b\xbc\x31\xc6\x4d\x3d\xf0\xaf\x55\x80\x96\xf5\xae\x3c\x5c\x30\xdc\x5d\x41\xfc\x35\xbe\xbc\x52\x97\xd2\x3d\xf3\xe7\xb5\xd9\xf9\x02\x83\x17\xb7\xbd\xbb\x2b\xa9\x74\x51\x6c\xe4\x4e\x5a\x33\xad\xa7\x75\x29\xd5\x9a\x4e\x65\xd7\xd2\x97\xb0\x99\x56\x04\xdd\x29\xa3\x24\x8b\x09\x12\xa9\xd2\xe7\xac\x65\x57\x9d\x4f\x53\xc0\x71\x3c\x69\xfd\x90\x30\x5d\xba\x35\x20\x4a\x57\x10\x42\xa7\x0c\x59\x0b\x6d\x80\xc6\x07\x9a\xb3\xc4\xf8\x20\xec\x3c\x6e\xcb\x13\x85\x0d\x25\x8a\x8e\x57\x1d\x13\xf1\x6e\x10\xe6\xb9\x07\x8a\x74\xa9\xf1\x62\xbc\x64\x5d\x20\x0f\x2d\xa6\xc3\xa6\x13\x3d\x80\x51\x4a\xb5\xae\xbd\xb2\x45\x83\x20\x75\x98\x67\x91\xf4\x7a\x9b\xda\x1a\x2b\x3f\xd8\x07\x15\x89\x96\x59\x62\x7a\xb7\xdb\x9a\x26\x29\x1f\x33\x3b\x5a\x5e\xea\x70\x98\x24\xa5\xa1\xca\xe5\x85\x3c\x5e\x85\x62\x63\x16\xc7\x0d\xf9\x01\xea\x47\x80\x74\x2b\xc9\x81\x31\xd3\x59\x7d\x2e\xa1\xf4\x08\x0d\x0b\x3d\x5f\xc3\x4a\x3a\x7e\x21\x9d\x24\xb1\x55\x64\x74\x6d\x16\xaf\x74\x88\xc8\xa0\x4f\xc3\x34\x53\xe2\xc8\xbd\x5d\xa6\x63\x06\x45\x95\x74\xfb\x7e\x4b\x97\x31\xfb\x9c\x0a\xdb\x87\x4e\xe4\xf4\xb0\x3a\x83\x21\xdb\xb7\x0e\xce\x6e\x3e\x38\x51\x42\x44\x3d\xa5\x4c\xdb\x42\x32\x33\xc4\xed\x00\x5d\x30\x40\xab\x34\xe3\x81\xaa\x38\x66\xff\x54\xe4\xb1\x95\x82\x52\xd7\x25\x19\x0e\xb1\x4d\xfe\x46\xdf\xfd\x43\x0f\xfa\xdd\x9f\xdf\xfd\xe3\x9d\xae\xc3\x96\x89\x4c\x49\xd8\x41\x78\x85\xd8\x89\xaa\x2d\x05\x6c\x8b\x5d\x81\x6b\xfd\x90\xbf\xa2\xb1\xa6\x80\x71\x16\xef\xba\x82\x76\xee\x71\x1a\xa2\x08\xcb\x68\x7e\x88\x0d\xef\xf9\xd5\x93\xa8\xc8\xeb\xb3\x3f\xce\x09\x83\xf6\x64\x61\x4d\x77\x9d\x50\x81\x62\x25\xd9\x16\x2e\x1d\x37\xe0\x17\xdd\xa8\xc6\x68\x85\x85\x3c\x64\xfb\x26\x60\xce\x3c\x13\xf6\x4b\x2e\x19\xec\xcf\x6d\x7e\x40\xee\x26\x32\xae\x31\x65\xb2\xc6\x68\xac\xf1\xb4\xe3\x03\xbb\xfd\x63\xb6\x9c\x1c\x25\xab\xa9\x3c\x02\x74\xef\x91\x22\xcb\xd1\xa8\xb1\x9f\x8d\xbe\x84\xee\xe2\xb2\x56\xbe\x86\xdc\xb5\x7a\x7d\xb5\xbe\xe3\xa8\xe3\xde\xd4\x5e\x69\xd1\xa6\xad\xa3\xcf\x75\xe8\xfb\x26\xce\x56\x26\x3a\x9e\x31\xb0\xd5\x71\x30\x0b\x5b\x30\xbb\xf3\x09\xa5\x9a\xd4\x45\x87\x25\x8d\x40\x57\xc0\x0c\x27\x2b\xc8\xd2\x19\x8c\x59\x4c\x39\x89\xa0\x37\x64\xb4\x8a\x12\x1a\x99\x4a\x37\xa1\x2e\x44\x1e\x08\x93\x01\x98\x70\xa4\x3e\x79\x2e\x75\xa8\x0e\xc6\x58\x4d\xfd\xdb\x1a\x55\xc8\x55\x25\x0b\xbd\x05\x45\x36\x31\xb9\xf9\xbc\x63\x6d\x03\xf7\x7a\x10\xcd\xb1\xf5\xf3\xa4\x9c\xce\x28\xc3\x32\xe5\xe8\x3b\x70\x7b\x26\x09\xe1\xef\x5c\x83\x1d\xa0\x62\xf5\x34\xe6\x9d\x1a\x17\x54\x94\xb9\xa9\xbe\x6c\xa3\x28\xe3\x9c\xc4\x77\x65\xf4\x58\xd7\x3c\xd0\x66\x6c\x8d\x52\xad\xe9\x82\x08\x89\x17\x4b\xbf\xd1\xbc\xcb\x58\x32\x94\x49\x34\x11\x90\x9d\xd8\x00\x51\x00\x88\xb9\x30\xf5\x98\x99\x00\xb5\xde\xb7\x94\x57\x14\x38\x28\xae\x12\x04\x47\x8b\x26\x44\x0d\xfa\x48\xd7\x16\x46\x45\x47\xd9\xd5\x99\xc5\x10\xa4\x41\x47\x7e\xaf\x33\x36\x85\xf3\x0c\xe7\xb4\xa2\xb7\xf6\x98\xe5\x10\xa4\xe3\x24\xcd\x62\x64\xdc\x84\xc6\xe9\xc6\x8f\x10\x25\x47\x03\x24\xfe\xf4\xe1\xfd\xfb\xa3\xa3\x1d\xf5\x3d\x08\x1b\x67\x55\x73\xb8\x6e\x6d\x55\x05\xf1\x5b\x73\xb4\x82\x3a\x67\x77\xdd\x2c\x0f\x9b\xc2\x01\xdc\xe2\x5b\xe6\x21\x80\xa5\xf8\xca\x25\xe6\x84\xc9\x3b\x00\x65\x77\x7b\x21\xbc\xe8\x12\x1e\x0f\xf0\xc4\xad\xcc\x9e\xbc\x4e\xa2\x49\xc8\xc4\xe2\x1e\x7d\x47\xc1\x83\xfe\xce\x18\xe3\xd0\x1b\xbe\xa1\x7c\x59\x59\x02\x37\xcd\xe6\x99\x44\x71\x1d\x60\xbe\xcd\xf4\x83\x67\xb7\xbe\x40\xb6\xc1\xd9\x37\xfa\xc1\x4e\x5c\x2d\x5e\x88\x9d\x9f\x32\x14\xa5\x8b\x89\x12\xe2\x8a\xd5\x9d\x63\x02\xe0\xf2\x43\x8b\xb9\x74\x80\x31\x8b\x31\xd3\xd5\x2c\x0a\x88\x75\xe7\xcd\xf6\x11\x61\x9a\x45\x0b\x77\x53\x5d\xaf\x2c\xcd\xce\x4f\x90\x12\x50\x7d\xd4\x87\xc5\x15\xe4\xd5\xa1\xef\x69\x74\x4f\xd4\x3d\x37\xcd\xab\xd8\xf8\xd2\xcd\xdd\x6f\x0e\x22\x67\x1a\xef\x6b\x3c\x06\x31\xeb\xbe\xa3\xba\x06\x28\xb1\x0d\x6f\x3d\x2c\xcd\xb7\xa2\x9a\x38\x4f\x9d\xbf\x50\x4d\x0b\x18\xdf\xa1\x6c\x4d\x1e\xad\x53\x2d\xb4\x32\x06\x12\xf9\x8f\x4e\x1e\x0a\x12\xa5\xcc\x21\x73\x77\x72\xd1\x57\xe4\x36\x54\x4f\x17\xbe\x2b\x25\xe0\xae\xd3\x3a\xb6\x54\x7e\x72\xc5\xc7\x36\x10\xd7\x06\x33\xc4\x2d\x01\x9e\xa3\xde\x3d\x40\x0b\x4c\x99\x39\x06\xd0\x4c\x10\xc5\x64\x92\xcd\x66\xb5\x77\x72\x92\xee\xa2\xfd\x74\x33\x55\xcf\xd2\x06\x07\x81\x5b\x61\xd2\x84\x6e\x5f\xc3\xa1\x6f\x48\xf9\x6a\x44\x83\xed\x42\x7d\x3a\xb5\x6f\xd2\x46\xe0\x94\x26\xe4\x79\x34\xa6\x1d\xa9\x7f\xa7\x6d\xd4\x3f\xeb\x45\x80\x08\xae\x5e\x87\xb3\xf3\x7e\x43\x7a\xa1\x46\xc4\xdd\xa9\x27\x9f\x14\x16\xe7\x80\xbc\x70\x58\x35\xe0\x4d\xc9\xa6\x58\x40\xc2\xfc\xee\x71\x72\x20\xdb\xd7\xa1\xef\xb7\x2e\x18\x71\x9d\x2e\x08\x82\x57\x09\x9d\x9b\x85\x4c\x08\x7a\x00\x5e\x47\xb5\x40\xb4\xc8\x12\x49\x97\x89\x11\xfe\xc6\xad\x16\xcd\x31\x9b\x79\x9d\x12\xd0\x77\x8c\x3c\x22\x25\x6b\x07\xbe\x1b\xc6\xdb\x9e\x01\x22\x32\x7a\xa7\x74\x9b\x20\x6a\xc3\x49\x94\xf2\x18\x92\x23\x66\x98\xc7\x10\xcd\x33\x0c\x9f\xe0\xe8\x1e\x2a\x50\xc1\x75\xa4\xdf\x68\x03\x88\x26\x7f\x40\xbb\x2f\xf3\xd1\x28\x8b\x74\x2f\x79\x5b\xe0\xc2\xcd\x4f\x3f\x2e\x10\x8e\x78\x2a\xb4\x27\xca\x16\x1e\xd2\xf0\x14\x50\xbf\x1e\x68\x9c\xe1\x44\xbf\xb1\x4b\xcc\xf0\xd2\x30\x84\x45\x52\x78\x4e\x30\x90\x92\x41\xaa\xff\xc7\x94\x9b\x5c\x00\xa0\xf8\xa5\xa9\x28\xf0\x23\x7d\x20\x03\x74\xbd\xc4\xfc\x7e\x80\x4e\x56\x0c\x2f\x68\xf4\xdf\xe9\xa4\xca\x9f\x52\x82\x26\x6c\xad\x12\xef\xbe\x7a\x6f\xf5\x41\xff\x52\x02\x5e\xa0\xba\x24\xf8\xd7\xe9\x4d\xa9\x41\x8d\xbc\xf5\x4b\x7d\x4d\x4c\xae\x77\x8c\xec\xf4\x02\xac\x34\x94\xad\x9b\x03\xc7\x0b\xca\x02\x5b\x6d\xaf\x9c\xad\xc5\x4d\xad\x42\x69\x05\xc2\xb8\x95\x75\xbb\x0b\xcd\xf1\x12\x2b\x2b\x47\x19\x94\x8b\x54\x12\x7d\xef\x0b\x99\x72\x62\x32\x8a\xb5\x3a\x09\x6d\x86\xa8\xd0\xdf\xd4\x95\xe0\x8c\x92\x54\x64\xbc\xa5\xd8\x28\x6f\xd8\xb1\x79\xbc\x51\x3b\x49\x17\x4b\x88\xbe\x70\x22\xb2\x44\x8a\x0a\x7b\xad\xe4\xb6\xde\x49\x20\xbf\x3c\xdd\xcf\x44\xe2\x93\x92\x5f\xcb\xf1\x76\x80\x9f\x81\x44\xa8\x51\x03\x4f\xd7\x5d\xb1\x23\x3f\x7e\xa1\xce\xb6\x6d\xe2\x64\x1a\x55\x50\x36\x4b\xea\x6a\xbb\x8f\x99\xe9\x73\xe1\xc9\x3e\x9c\xe7\xf3\x58\x85\xcc\xa6\x74\x3e\x06\x35\xfe\x5d\x93\x0c\x03\x84\xc1\xc6\x60\x77\x7a\x11\xdc\xe5\x03\x28\x50\xa5\x81\x41\x0c\xea\x93\x8d\x99\xc8\x26\x87\x39\x5c\x25\xe5\x20\x5d\xa1\xc0\xc4\x12\x73\xc8\x97\x9f\xd3\x24\x3e\x2c\x83\x11\x8d\x96\x03\xed\x31\x5c\x31\xb6\x09\x81\x7a\x4b\xb0\xe3\xba\x15\x9d\x8e\x96\xba\xb5\xbb\x71\x26\x99\x44\xc4\xb5\x1b\xa0\xc2\x38\x8f\x0a\x9a\x44\x20\x2f\x02\xdf\xc0\x4b\x7b\x04\xd7\xcb\x8b\xba\x74\xbd\xb7\x2f\x27\x02\x9a\xb5\x91\x13\x37\xa1\x17\xce\x9e\x1a\xcc\x9c\xe4\xa8\x23\x95\xb8\xd3\x2e\xb4\x27\x44\x0e\x7e\x71\x29\xe9\x36\xc9\x4a\x2c\xf1\x23\x33\x20\x91\x4e\xe5\x65\xdb\xc9\x87\xea\x3a\x20\x4a\x3e\x14\xbe\xf1\x25\x85\xba\x8e\x20\xc8\x4f\x5d\xf2\xe3\xc0\xcb\xf2\x86\xd6\x43\x79\x46\x4b\x6e\xfe\x8c\x59\x8e\x5e\xca\x7b\xa5\x46\x45\xc1\x6d\x40\x41\x31\x04\x5a\xc9\xc0\x22\x1a\x06\x3a\x03\xd0\x18\x29\x87\x13\x0c\xa5\x90\xa5\xe4\x74\x92\xc9\x52\x49\x9a\xe0\x34\x57\x06\x39\x76\x61\x1d\x9c\x3e\x7d\x6b\x8f\xea\x6b\x23\x6f\x8d\x92\x43\x95\x8a\x4b\xf7\x4a\x74\x3d\x7f\x59\x8e\x6e\x99\x46\x5e\xdd\xac\xf6\x1c\x5e\xca\x66\x34\x35\xa3\xc0\xa2\x8e\xbd\x8a\xe7\x01\x90\x02\x48\x98\x57\x84\x77\x20\x13\x2f\xe9\x43\x89\x28\x3c\x23\x68\x41\x62\x9a\x15\x13\xd9\xd6\x47\xcf\xf6\xca\xec\x6c\xc3\x59\xca\x00\x77\x86\xe8\x39\x18\x0b\x8f\xea\xd6\xd6\x10\x34\x70\x7a\x54\x17\x95\xf0\x60\xa0\x58\x7e\x2b\x5c\x34\x2e\xa4\x98\x75\x31\x9d\x51\x21\x7f\x2e\x54\x73\xde\x20\x5f\x2a\xc9\x9e\x0e\xfb\x67\xa7\xaa\xa7\xe9\x3d\xd1\x88\x71\xbb\x0a\x5a\xe1\x02\x93\x69\x77\x05\x60\x44\x6c\x26\x99\x9a\x77\x17\x01\xfe\x0f\x47\xaf\x7f\x98\x66\xbd\x1c\x2f\x97\x84\x23\xd3\xb0\xb7\xd8\x82\x57\xa7\x65\xc1\x5b\xc6\x4c\x2b\x4c\xff\x7d\x7d\x71\x9e\x4b\xee\xdc\x8e\x2a\x0c\x0d\x3f\x03\xd2\x1d\x55\xef\xdc\x79\x96\x24\xb5\x3b\xd7\xa2\x5a\xda\xed\xd9\xd9\xdd\xcf\xc3\xb3\xdb\x51\x73\x35\xb2\xfc\x67\xb5\x34\x71\x33\x31\x34\xd1\xd7\x98\x84\xab\x2b\x5b\x10\xe3\xc0\x02\x65\xc4\xac\x5a\x03\x1c\xb2\x24\x09\x33\x6b\xc6\xec\x1f\x66\x1c\x00\xc0\x65\x4c\xab\x99\x63\x86\x1a\x09\x17\xbe\x1f\x7e\xf6\x0f\x35\xf8\x3f\xf4\xb3\x87\x28\x5f\xc4\x07\x74\xee\xde\x5a\x43\x57\xe3\x74\xdd\xe2\x38\xe8\x04\x9f\xe7\xca\x1d\xdc\xec\x78\xdc\x32\x5b\x28\xd0\xa4\xfc\xed\xe4\x74\x68\xda\xfd\x23\x34\x61\x5c\x7e\x73\xac\xe5\x3c\x8c\x3b\xd0\x19\x5f\xba\x99\xbb\x4b\x8a\x1a\x33\x8d\x27\x80\x16\xbe\x69\xfd\x9c\xd0\x29\xd3\xc8\xc6\x04\xb3\x59\x86\x67\x44\x0c\x90\x7d\xf9\x98\xb9\x86\xb1\xa6\x40\x89\x6b\x44\x82\xa1\xec\x7a\xc8\x42\xda\xd5\x49\xbe\xe2\xc5\x12\x42\x30\x6c\xcc\xcc\x9a\xd8\x2c\x1f\x5e\x7b\x41\xff\xfb\xda\x2d\x47\x71\x9a\x1b\xc8\x24\xad\xb1\x31\xd3\x9b\xab\x33\x16\xad\x6e\x07\x0e\x20\xe8\x10\x1d\xb0\x2e\xe6\xc4\xe6\xc9\x82\x4c\x9f\x81\x96\xa9\x6b\x54\xdb\x10\xa3\x92\xf4\x5e\x91\x15\xed\x70\xd6\x53\x5a\x2f\x4f\xec\x66\xd8\x33\x61\xe6\x56\xcd\xf5\x5b\xdf\x01\xea\xc0\x55\xf7\x05\x68\x66\xdb\x5c\x8c\xad\x91\xe6\x39\x43\xb1\xe2\x11\x46\x45\x28\x3a\x04\xaf\x77\xd0\x03\xa1\xf5\x94\xf4\xef\x1b\x27\xd5\xa1\x75\x42\xeb\xd7\x9a\x74\xeb\xa6\xd7\x2a\x0b\xa7\xf9\xa5\x3b\x30\x91\x82\x49\x99\x07\xd6\x11\x23\x8b\x6a\xba\x54\x6c\x1d\x13\x2b\x92\xc8\x4a\x9f\xa6\x09\x25\x54\x6c\x34\x9d\x5c\x7f\x6a\x3d\x23\xa7\x21\x98\xcb\xae\x93\x84\x35\xf7\x5c\x20\x60\x6b\xc4\xa4\xc1\x66\x19\xb7\x0c\xa1\x5a\xbc\x30\x28\x67\x88\x0d\xc0\x63\xe0\x98\x68\x90\xef\xdc\x40\xd7\x57\xcf\xb8\x50\xe2\xd2\xc8\x3b\x23\xb5\x95\x99\x33\x66\x36\x7d\xc0\x8a\xe3\xa1\x6d\xf9\xc4\xdd\xa7\x3a\xce\xb8\xd4\xe0\x5b\xd0\x58\x65\xde\x2b\x0c\xcb\x31\x83\xdc\x74\x06\x26\xe4\x44\x40\xf6\x94\xc9\xc0\x36\x5f\x78\xe5\xac\x30\x73\x35\xde\xd7\xc8\xbc\x82\x1a\x10\xdc\xf3\xdf\xa8\xff\xff\xeb\x37\xff\x7f\x00\x00\x00\xff\xff\xd5\x1d\x3d\xb2\x46\xf0\x02\x00") func adminSwaggerJsonBytes() ([]byte, error) { return bindataRead( @@ -92,7 +92,7 @@ func adminSwaggerJson() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "admin.swagger.json", size: 194530, mode: os.FileMode(420), modTime: time.Unix(1562572800, 0)} + info := bindataFileInfo{name: "admin.swagger.json", size: 192582, mode: os.FileMode(420), modTime: time.Unix(1562572800, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/flyteidl/gen/pb-java/flyteidl/admin/Common.java b/flyteidl/gen/pb-java/flyteidl/admin/Common.java index ea5442d1e0..5c1b3640c0 100644 --- a/flyteidl/gen/pb-java/flyteidl/admin/Common.java +++ b/flyteidl/gen/pb-java/flyteidl/admin/Common.java @@ -14,6 +14,124 @@ public static void registerAllExtensions( registerAllExtensions( (com.google.protobuf.ExtensionRegistryLite) registry); } + /** + *
+   * The status of the named entity is used to control its visibility in the UI.
+   * 
+ * + * Protobuf enum {@code flyteidl.admin.NamedEntityState} + */ + public enum NamedEntityState + implements com.google.protobuf.ProtocolMessageEnum { + /** + *
+     * By default, all named entities are considered active and under development.
+     * 
+ * + * NAMED_ENTITY_ACTIVE = 0; + */ + NAMED_ENTITY_ACTIVE(0), + /** + *
+     * Archived named entities are no longer visible in the UI.
+     * 
+ * + * NAMED_ENTITY_ARCHIVED = 1; + */ + NAMED_ENTITY_ARCHIVED(1), + UNRECOGNIZED(-1), + ; + + /** + *
+     * By default, all named entities are considered active and under development.
+     * 
+ * + * NAMED_ENTITY_ACTIVE = 0; + */ + public static final int NAMED_ENTITY_ACTIVE_VALUE = 0; + /** + *
+     * Archived named entities are no longer visible in the UI.
+     * 
+ * + * NAMED_ENTITY_ARCHIVED = 1; + */ + public static final int NAMED_ENTITY_ARCHIVED_VALUE = 1; + + + public final int getNumber() { + if (this == UNRECOGNIZED) { + throw new java.lang.IllegalArgumentException( + "Can't get the number of an unknown enum value."); + } + return value; + } + + /** + * @deprecated Use {@link #forNumber(int)} instead. + */ + @java.lang.Deprecated + public static NamedEntityState valueOf(int value) { + return forNumber(value); + } + + public static NamedEntityState forNumber(int value) { + switch (value) { + case 0: return NAMED_ENTITY_ACTIVE; + case 1: return NAMED_ENTITY_ARCHIVED; + default: return null; + } + } + + public static com.google.protobuf.Internal.EnumLiteMap + internalGetValueMap() { + return internalValueMap; + } + private static final com.google.protobuf.Internal.EnumLiteMap< + NamedEntityState> internalValueMap = + new com.google.protobuf.Internal.EnumLiteMap() { + public NamedEntityState findValueByNumber(int number) { + return NamedEntityState.forNumber(number); + } + }; + + public final com.google.protobuf.Descriptors.EnumValueDescriptor + getValueDescriptor() { + return getDescriptor().getValues().get(ordinal()); + } + public final com.google.protobuf.Descriptors.EnumDescriptor + getDescriptorForType() { + return getDescriptor(); + } + public static final com.google.protobuf.Descriptors.EnumDescriptor + getDescriptor() { + return flyteidl.admin.Common.getDescriptor().getEnumTypes().get(0); + } + + private static final NamedEntityState[] VALUES = values(); + + public static NamedEntityState valueOf( + com.google.protobuf.Descriptors.EnumValueDescriptor desc) { + if (desc.getType() != getDescriptor()) { + throw new java.lang.IllegalArgumentException( + "EnumValueDescriptor is not for this type."); + } + if (desc.getIndex() == -1) { + return UNRECOGNIZED; + } + return VALUES[desc.getIndex()]; + } + + private final int value; + + private NamedEntityState(int value) { + this.value = value; + } + + // @@protoc_insertion_point(enum_scope:flyteidl.admin.NamedEntityState) + } + public interface NamedEntityIdentifierOrBuilder extends // @@protoc_insertion_point(interface_extends:flyteidl.admin.NamedEntityIdentifier) com.google.protobuf.MessageOrBuilder { @@ -1005,6 +1123,25 @@ public interface NamedEntityMetadataOrBuilder extends */ com.google.protobuf.ByteString getDescriptionBytes(); + + /** + *
+     * Shared state across all version of the entity
+     * At this point in time, only workflow entities can have their state archived.
+     * 
+ * + * .flyteidl.admin.NamedEntityState state = 2; + */ + int getStateValue(); + /** + *
+     * Shared state across all version of the entity
+     * At this point in time, only workflow entities can have their state archived.
+     * 
+ * + * .flyteidl.admin.NamedEntityState state = 2; + */ + flyteidl.admin.Common.NamedEntityState getState(); } /** * Protobuf type {@code flyteidl.admin.NamedEntityMetadata} @@ -1020,6 +1157,7 @@ private NamedEntityMetadata(com.google.protobuf.GeneratedMessageV3.Builder bu } private NamedEntityMetadata() { description_ = ""; + state_ = 0; } @java.lang.Override @@ -1052,6 +1190,12 @@ private NamedEntityMetadata( description_ = s; break; } + case 16: { + int rawValue = input.readEnum(); + + state_ = rawValue; + break; + } default: { if (!parseUnknownField( input, unknownFields, extensionRegistry, tag)) { @@ -1128,6 +1272,33 @@ public java.lang.String getDescription() { } } + public static final int STATE_FIELD_NUMBER = 2; + private int state_; + /** + *
+     * Shared state across all version of the entity
+     * At this point in time, only workflow entities can have their state archived.
+     * 
+ * + * .flyteidl.admin.NamedEntityState state = 2; + */ + public int getStateValue() { + return state_; + } + /** + *
+     * Shared state across all version of the entity
+     * At this point in time, only workflow entities can have their state archived.
+     * 
+ * + * .flyteidl.admin.NamedEntityState state = 2; + */ + public flyteidl.admin.Common.NamedEntityState getState() { + @SuppressWarnings("deprecation") + flyteidl.admin.Common.NamedEntityState result = flyteidl.admin.Common.NamedEntityState.valueOf(state_); + return result == null ? flyteidl.admin.Common.NamedEntityState.UNRECOGNIZED : result; + } + private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { @@ -1145,6 +1316,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) if (!getDescriptionBytes().isEmpty()) { com.google.protobuf.GeneratedMessageV3.writeString(output, 1, description_); } + if (state_ != flyteidl.admin.Common.NamedEntityState.NAMED_ENTITY_ACTIVE.getNumber()) { + output.writeEnum(2, state_); + } unknownFields.writeTo(output); } @@ -1157,6 +1331,10 @@ public int getSerializedSize() { if (!getDescriptionBytes().isEmpty()) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, description_); } + if (state_ != flyteidl.admin.Common.NamedEntityState.NAMED_ENTITY_ACTIVE.getNumber()) { + size += com.google.protobuf.CodedOutputStream + .computeEnumSize(2, state_); + } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; @@ -1174,6 +1352,7 @@ public boolean equals(final java.lang.Object obj) { if (!getDescription() .equals(other.getDescription())) return false; + if (state_ != other.state_) return false; if (!unknownFields.equals(other.unknownFields)) return false; return true; } @@ -1187,6 +1366,8 @@ public int hashCode() { hash = (19 * hash) + getDescriptor().hashCode(); hash = (37 * hash) + DESCRIPTION_FIELD_NUMBER; hash = (53 * hash) + getDescription().hashCode(); + hash = (37 * hash) + STATE_FIELD_NUMBER; + hash = (53 * hash) + state_; hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; @@ -1322,6 +1503,8 @@ public Builder clear() { super.clear(); description_ = ""; + state_ = 0; + return this; } @@ -1349,6 +1532,7 @@ public flyteidl.admin.Common.NamedEntityMetadata build() { public flyteidl.admin.Common.NamedEntityMetadata buildPartial() { flyteidl.admin.Common.NamedEntityMetadata result = new flyteidl.admin.Common.NamedEntityMetadata(this); result.description_ = description_; + result.state_ = state_; onBuilt(); return result; } @@ -1401,6 +1585,9 @@ public Builder mergeFrom(flyteidl.admin.Common.NamedEntityMetadata other) { description_ = other.description_; onChanged(); } + if (other.state_ != 0) { + setStateValue(other.getStateValue()); + } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; @@ -1523,6 +1710,76 @@ public Builder setDescriptionBytes( onChanged(); return this; } + + private int state_ = 0; + /** + *
+       * Shared state across all version of the entity
+       * At this point in time, only workflow entities can have their state archived.
+       * 
+ * + * .flyteidl.admin.NamedEntityState state = 2; + */ + public int getStateValue() { + return state_; + } + /** + *
+       * Shared state across all version of the entity
+       * At this point in time, only workflow entities can have their state archived.
+       * 
+ * + * .flyteidl.admin.NamedEntityState state = 2; + */ + public Builder setStateValue(int value) { + state_ = value; + onChanged(); + return this; + } + /** + *
+       * Shared state across all version of the entity
+       * At this point in time, only workflow entities can have their state archived.
+       * 
+ * + * .flyteidl.admin.NamedEntityState state = 2; + */ + public flyteidl.admin.Common.NamedEntityState getState() { + @SuppressWarnings("deprecation") + flyteidl.admin.Common.NamedEntityState result = flyteidl.admin.Common.NamedEntityState.valueOf(state_); + return result == null ? flyteidl.admin.Common.NamedEntityState.UNRECOGNIZED : result; + } + /** + *
+       * Shared state across all version of the entity
+       * At this point in time, only workflow entities can have their state archived.
+       * 
+ * + * .flyteidl.admin.NamedEntityState state = 2; + */ + public Builder setState(flyteidl.admin.Common.NamedEntityState value) { + if (value == null) { + throw new NullPointerException(); + } + + state_ = value.getNumber(); + onChanged(); + return this; + } + /** + *
+       * Shared state across all version of the entity
+       * At this point in time, only workflow entities can have their state archived.
+       * 
+ * + * .flyteidl.admin.NamedEntityState state = 2; + */ + public Builder clearState() { + + state_ = 0; + onChanged(); + return this; + } @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { @@ -18426,60 +18683,63 @@ public flyteidl.admin.Common.Annotations getDefaultInstanceForType() { "admin\032\035flyteidl/core/execution.proto\032\036fl" + "yteidl/core/identifier.proto\"F\n\025NamedEnt" + "ityIdentifier\022\017\n\007project\030\001 \001(\t\022\016\n\006domain" + - "\030\002 \001(\t\022\014\n\004name\030\003 \001(\t\"*\n\023NamedEntityMetad" + - "ata\022\023\n\013description\030\001 \001(\t\"\253\001\n\013NamedEntity" + - "\0222\n\rresource_type\030\001 \001(\0162\033.flyteidl.core." + - "ResourceType\0221\n\002id\030\002 \001(\0132%.flyteidl.admi" + - "n.NamedEntityIdentifier\0225\n\010metadata\030\003 \001(" + - "\0132#.flyteidl.admin.NamedEntityMetadata\"r" + - "\n\004Sort\022\013\n\003key\030\001 \001(\t\0221\n\tdirection\030\002 \001(\0162\036" + - ".flyteidl.admin.Sort.Direction\"*\n\tDirect" + - "ion\022\016\n\nDESCENDING\020\000\022\r\n\tASCENDING\020\001\"\210\001\n N" + - "amedEntityIdentifierListRequest\022\017\n\007proje" + - "ct\030\001 \001(\t\022\016\n\006domain\030\002 \001(\t\022\r\n\005limit\030\003 \001(\r\022" + - "\r\n\005token\030\004 \001(\t\022%\n\007sort_by\030\005 \001(\0132\024.flytei" + - "dl.admin.Sort\"\262\001\n\026NamedEntityListRequest" + - "\0222\n\rresource_type\030\001 \001(\0162\033.flyteidl.core." + - "ResourceType\022\017\n\007project\030\002 \001(\t\022\016\n\006domain\030" + - "\003 \001(\t\022\r\n\005limit\030\004 \001(\r\022\r\n\005token\030\005 \001(\t\022%\n\007s" + - "ort_by\030\006 \001(\0132\024.flyteidl.admin.Sort\"c\n\031Na" + - "medEntityIdentifierList\0227\n\010entities\030\001 \003(" + - "\0132%.flyteidl.admin.NamedEntityIdentifier" + - "\022\r\n\005token\030\002 \001(\t\"O\n\017NamedEntityList\022-\n\010en" + - "tities\030\001 \003(\0132\033.flyteidl.admin.NamedEntit" + - "y\022\r\n\005token\030\002 \001(\t\"~\n\025NamedEntityGetReques" + - "t\0222\n\rresource_type\030\001 \001(\0162\033.flyteidl.core" + - ".ResourceType\0221\n\002id\030\002 \001(\0132%.flyteidl.adm" + - "in.NamedEntityIdentifier\"\270\001\n\030NamedEntity" + - "UpdateRequest\0222\n\rresource_type\030\001 \001(\0162\033.f" + - "lyteidl.core.ResourceType\0221\n\002id\030\002 \001(\0132%." + - "flyteidl.admin.NamedEntityIdentifier\0225\n\010" + - "metadata\030\003 \001(\0132#.flyteidl.admin.NamedEnt" + - "ityMetadata\"\033\n\031NamedEntityUpdateResponse" + - "\"9\n\020ObjectGetRequest\022%\n\002id\030\001 \001(\0132\031.flyte" + - "idl.core.Identifier\"\236\001\n\023ResourceListRequ" + - "est\0221\n\002id\030\001 \001(\0132%.flyteidl.admin.NamedEn" + - "tityIdentifier\022\r\n\005limit\030\002 \001(\r\022\r\n\005token\030\003" + - " \001(\t\022\017\n\007filters\030\004 \001(\t\022%\n\007sort_by\030\005 \001(\0132\024" + - ".flyteidl.admin.Sort\"-\n\021EmailNotificatio" + - "n\022\030\n\020recipients_email\030\001 \003(\t\"1\n\025PagerDuty" + - "Notification\022\030\n\020recipients_email\030\001 \003(\t\"-" + - "\n\021SlackNotification\022\030\n\020recipients_email\030" + - "\001 \003(\t\"\363\001\n\014Notification\0226\n\006phases\030\001 \003(\0162&" + - ".flyteidl.core.WorkflowExecution.Phase\0222" + - "\n\005email\030\002 \001(\0132!.flyteidl.admin.EmailNoti" + - "ficationH\000\022;\n\npager_duty\030\003 \001(\0132%.flyteid" + - "l.admin.PagerDutyNotificationH\000\0222\n\005slack" + - "\030\004 \001(\0132!.flyteidl.admin.SlackNotificatio" + - "nH\000B\006\n\004type\"%\n\007UrlBlob\022\013\n\003url\030\001 \001(\t\022\r\n\005b" + - "ytes\030\002 \001(\003\"k\n\006Labels\0222\n\006values\030\001 \003(\0132\".f" + - "lyteidl.admin.Labels.ValuesEntry\032-\n\013Valu" + - "esEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001\"" + - "u\n\013Annotations\0227\n\006values\030\001 \003(\0132\'.flyteid" + - "l.admin.Annotations.ValuesEntry\032-\n\013Value" + - "sEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001B3" + - "Z1github.com/lyft/flyteidl/gen/pb-go/fly" + - "teidl/adminb\006proto3" + "\030\002 \001(\t\022\014\n\004name\030\003 \001(\t\"[\n\023NamedEntityMetad" + + "ata\022\023\n\013description\030\001 \001(\t\022/\n\005state\030\002 \001(\0162" + + " .flyteidl.admin.NamedEntityState\"\253\001\n\013Na" + + "medEntity\0222\n\rresource_type\030\001 \001(\0162\033.flyte" + + "idl.core.ResourceType\0221\n\002id\030\002 \001(\0132%.flyt" + + "eidl.admin.NamedEntityIdentifier\0225\n\010meta" + + "data\030\003 \001(\0132#.flyteidl.admin.NamedEntityM" + + "etadata\"r\n\004Sort\022\013\n\003key\030\001 \001(\t\0221\n\tdirectio" + + "n\030\002 \001(\0162\036.flyteidl.admin.Sort.Direction\"" + + "*\n\tDirection\022\016\n\nDESCENDING\020\000\022\r\n\tASCENDIN" + + "G\020\001\"\210\001\n NamedEntityIdentifierListRequest" + + "\022\017\n\007project\030\001 \001(\t\022\016\n\006domain\030\002 \001(\t\022\r\n\005lim" + + "it\030\003 \001(\r\022\r\n\005token\030\004 \001(\t\022%\n\007sort_by\030\005 \001(\013" + + "2\024.flyteidl.admin.Sort\"\262\001\n\026NamedEntityLi" + + "stRequest\0222\n\rresource_type\030\001 \001(\0162\033.flyte" + + "idl.core.ResourceType\022\017\n\007project\030\002 \001(\t\022\016" + + "\n\006domain\030\003 \001(\t\022\r\n\005limit\030\004 \001(\r\022\r\n\005token\030\005" + + " \001(\t\022%\n\007sort_by\030\006 \001(\0132\024.flyteidl.admin.S" + + "ort\"c\n\031NamedEntityIdentifierList\0227\n\010enti" + + "ties\030\001 \003(\0132%.flyteidl.admin.NamedEntityI" + + "dentifier\022\r\n\005token\030\002 \001(\t\"O\n\017NamedEntityL" + + "ist\022-\n\010entities\030\001 \003(\0132\033.flyteidl.admin.N" + + "amedEntity\022\r\n\005token\030\002 \001(\t\"~\n\025NamedEntity" + + "GetRequest\0222\n\rresource_type\030\001 \001(\0162\033.flyt" + + "eidl.core.ResourceType\0221\n\002id\030\002 \001(\0132%.fly" + + "teidl.admin.NamedEntityIdentifier\"\270\001\n\030Na" + + "medEntityUpdateRequest\0222\n\rresource_type\030" + + "\001 \001(\0162\033.flyteidl.core.ResourceType\0221\n\002id" + + "\030\002 \001(\0132%.flyteidl.admin.NamedEntityIdent" + + "ifier\0225\n\010metadata\030\003 \001(\0132#.flyteidl.admin" + + ".NamedEntityMetadata\"\033\n\031NamedEntityUpdat" + + "eResponse\"9\n\020ObjectGetRequest\022%\n\002id\030\001 \001(" + + "\0132\031.flyteidl.core.Identifier\"\236\001\n\023Resourc" + + "eListRequest\0221\n\002id\030\001 \001(\0132%.flyteidl.admi" + + "n.NamedEntityIdentifier\022\r\n\005limit\030\002 \001(\r\022\r" + + "\n\005token\030\003 \001(\t\022\017\n\007filters\030\004 \001(\t\022%\n\007sort_b" + + "y\030\005 \001(\0132\024.flyteidl.admin.Sort\"-\n\021EmailNo" + + "tification\022\030\n\020recipients_email\030\001 \003(\t\"1\n\025" + + "PagerDutyNotification\022\030\n\020recipients_emai" + + "l\030\001 \003(\t\"-\n\021SlackNotification\022\030\n\020recipien" + + "ts_email\030\001 \003(\t\"\363\001\n\014Notification\0226\n\006phase" + + "s\030\001 \003(\0162&.flyteidl.core.WorkflowExecutio" + + "n.Phase\0222\n\005email\030\002 \001(\0132!.flyteidl.admin." + + "EmailNotificationH\000\022;\n\npager_duty\030\003 \001(\0132" + + "%.flyteidl.admin.PagerDutyNotificationH\000" + + "\0222\n\005slack\030\004 \001(\0132!.flyteidl.admin.SlackNo" + + "tificationH\000B\006\n\004type\"%\n\007UrlBlob\022\013\n\003url\030\001" + + " \001(\t\022\r\n\005bytes\030\002 \001(\003\"k\n\006Labels\0222\n\006values\030" + + "\001 \003(\0132\".flyteidl.admin.Labels.ValuesEntr" + + "y\032-\n\013ValuesEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002" + + " \001(\t:\0028\001\"u\n\013Annotations\0227\n\006values\030\001 \003(\0132" + + "\'.flyteidl.admin.Annotations.ValuesEntry" + + "\032-\n\013ValuesEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 " + + "\001(\t:\0028\001*F\n\020NamedEntityState\022\027\n\023NAMED_ENT" + + "ITY_ACTIVE\020\000\022\031\n\025NAMED_ENTITY_ARCHIVED\020\001B" + + "3Z1github.com/lyft/flyteidl/gen/pb-go/fl" + + "yteidl/adminb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { @@ -18506,7 +18766,7 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( internal_static_flyteidl_admin_NamedEntityMetadata_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_flyteidl_admin_NamedEntityMetadata_descriptor, - new java.lang.String[] { "Description", }); + new java.lang.String[] { "Description", "State", }); internal_static_flyteidl_admin_NamedEntity_descriptor = getDescriptor().getMessageTypes().get(2); internal_static_flyteidl_admin_NamedEntity_fieldAccessorTable = new diff --git a/flyteidl/gen/pb-java/flyteidl/admin/WorkflowOuterClass.java b/flyteidl/gen/pb-java/flyteidl/admin/WorkflowOuterClass.java index 9491f44fdd..d52dfb9447 100644 --- a/flyteidl/gen/pb-java/flyteidl/admin/WorkflowOuterClass.java +++ b/flyteidl/gen/pb-java/flyteidl/admin/WorkflowOuterClass.java @@ -14,124 +14,6 @@ public static void registerAllExtensions( registerAllExtensions( (com.google.protobuf.ExtensionRegistryLite) registry); } - /** - *
-   * The status of the workflow is used to control its visibility in the UI.
-   * 
- * - * Protobuf enum {@code flyteidl.admin.WorkflowState} - */ - public enum WorkflowState - implements com.google.protobuf.ProtocolMessageEnum { - /** - *
-     * By default, all workflows are considered active and under development.
-     * 
- * - * WORKFLOW_ACTIVE = 0; - */ - WORKFLOW_ACTIVE(0), - /** - *
-     * Archived workflows are no longer visible in the UI.
-     * 
- * - * WORKFLOW_ARCHIVED = 1; - */ - WORKFLOW_ARCHIVED(1), - UNRECOGNIZED(-1), - ; - - /** - *
-     * By default, all workflows are considered active and under development.
-     * 
- * - * WORKFLOW_ACTIVE = 0; - */ - public static final int WORKFLOW_ACTIVE_VALUE = 0; - /** - *
-     * Archived workflows are no longer visible in the UI.
-     * 
- * - * WORKFLOW_ARCHIVED = 1; - */ - public static final int WORKFLOW_ARCHIVED_VALUE = 1; - - - public final int getNumber() { - if (this == UNRECOGNIZED) { - throw new java.lang.IllegalArgumentException( - "Can't get the number of an unknown enum value."); - } - return value; - } - - /** - * @deprecated Use {@link #forNumber(int)} instead. - */ - @java.lang.Deprecated - public static WorkflowState valueOf(int value) { - return forNumber(value); - } - - public static WorkflowState forNumber(int value) { - switch (value) { - case 0: return WORKFLOW_ACTIVE; - case 1: return WORKFLOW_ARCHIVED; - default: return null; - } - } - - public static com.google.protobuf.Internal.EnumLiteMap - internalGetValueMap() { - return internalValueMap; - } - private static final com.google.protobuf.Internal.EnumLiteMap< - WorkflowState> internalValueMap = - new com.google.protobuf.Internal.EnumLiteMap() { - public WorkflowState findValueByNumber(int number) { - return WorkflowState.forNumber(number); - } - }; - - public final com.google.protobuf.Descriptors.EnumValueDescriptor - getValueDescriptor() { - return getDescriptor().getValues().get(ordinal()); - } - public final com.google.protobuf.Descriptors.EnumDescriptor - getDescriptorForType() { - return getDescriptor(); - } - public static final com.google.protobuf.Descriptors.EnumDescriptor - getDescriptor() { - return flyteidl.admin.WorkflowOuterClass.getDescriptor().getEnumTypes().get(0); - } - - private static final WorkflowState[] VALUES = values(); - - public static WorkflowState valueOf( - com.google.protobuf.Descriptors.EnumValueDescriptor desc) { - if (desc.getType() != getDescriptor()) { - throw new java.lang.IllegalArgumentException( - "EnumValueDescriptor is not for this type."); - } - if (desc.getIndex() == -1) { - return UNRECOGNIZED; - } - return VALUES[desc.getIndex()]; - } - - private final int value; - - private WorkflowState(int value) { - this.value = value; - } - - // @@protoc_insertion_point(enum_scope:flyteidl.admin.WorkflowState) - } - public interface WorkflowCreateRequestOrBuilder extends // @@protoc_insertion_point(interface_extends:flyteidl.admin.WorkflowCreateRequest) com.google.protobuf.MessageOrBuilder { @@ -5639,1311 +5521,73 @@ public flyteidl.admin.WorkflowOuterClass.WorkflowClosure getDefaultInstanceForTy } - public interface WorkflowUpdateRequestOrBuilder extends - // @@protoc_insertion_point(interface_extends:flyteidl.admin.WorkflowUpdateRequest) - com.google.protobuf.MessageOrBuilder { - - /** - *
-     * Identifier of workflow for which to change state.
-     * 
- * - * .flyteidl.core.Identifier id = 1; - */ - boolean hasId(); - /** - *
-     * Identifier of workflow for which to change state.
-     * 
- * - * .flyteidl.core.Identifier id = 1; - */ - flyteidl.core.IdentifierOuterClass.Identifier getId(); - /** - *
-     * Identifier of workflow for which to change state.
-     * 
- * - * .flyteidl.core.Identifier id = 1; - */ - flyteidl.core.IdentifierOuterClass.IdentifierOrBuilder getIdOrBuilder(); + private static final com.google.protobuf.Descriptors.Descriptor + internal_static_flyteidl_admin_WorkflowCreateRequest_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_flyteidl_admin_WorkflowCreateRequest_fieldAccessorTable; + private static final com.google.protobuf.Descriptors.Descriptor + internal_static_flyteidl_admin_WorkflowCreateResponse_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_flyteidl_admin_WorkflowCreateResponse_fieldAccessorTable; + private static final com.google.protobuf.Descriptors.Descriptor + internal_static_flyteidl_admin_Workflow_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_flyteidl_admin_Workflow_fieldAccessorTable; + private static final com.google.protobuf.Descriptors.Descriptor + internal_static_flyteidl_admin_WorkflowList_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_flyteidl_admin_WorkflowList_fieldAccessorTable; + private static final com.google.protobuf.Descriptors.Descriptor + internal_static_flyteidl_admin_WorkflowSpec_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_flyteidl_admin_WorkflowSpec_fieldAccessorTable; + private static final com.google.protobuf.Descriptors.Descriptor + internal_static_flyteidl_admin_WorkflowClosure_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_flyteidl_admin_WorkflowClosure_fieldAccessorTable; - /** - *
-     * Desired state to apply to the workflow.
-     * 
- * - * .flyteidl.admin.WorkflowState state = 2; - */ - int getStateValue(); - /** - *
-     * Desired state to apply to the workflow.
-     * 
- * - * .flyteidl.admin.WorkflowState state = 2; - */ - flyteidl.admin.WorkflowOuterClass.WorkflowState getState(); + public static com.google.protobuf.Descriptors.FileDescriptor + getDescriptor() { + return descriptor; } - /** - *
-   * Request to set the referenced workflow state to the configured value.
-   * 
- * - * Protobuf type {@code flyteidl.admin.WorkflowUpdateRequest} - */ - public static final class WorkflowUpdateRequest extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:flyteidl.admin.WorkflowUpdateRequest) - WorkflowUpdateRequestOrBuilder { - private static final long serialVersionUID = 0L; - // Use WorkflowUpdateRequest.newBuilder() to construct. - private WorkflowUpdateRequest(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private WorkflowUpdateRequest() { - state_ = 0; - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private WorkflowUpdateRequest( - 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.core.IdentifierOuterClass.Identifier.Builder subBuilder = null; - if (id_ != null) { - subBuilder = id_.toBuilder(); - } - id_ = input.readMessage(flyteidl.core.IdentifierOuterClass.Identifier.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom(id_); - id_ = subBuilder.buildPartial(); - } - - break; - } - case 16: { - int rawValue = input.readEnum(); - - state_ = rawValue; - 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.WorkflowOuterClass.internal_static_flyteidl_admin_WorkflowUpdateRequest_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return flyteidl.admin.WorkflowOuterClass.internal_static_flyteidl_admin_WorkflowUpdateRequest_fieldAccessorTable - .ensureFieldAccessorsInitialized( - flyteidl.admin.WorkflowOuterClass.WorkflowUpdateRequest.class, flyteidl.admin.WorkflowOuterClass.WorkflowUpdateRequest.Builder.class); - } - - public static final int ID_FIELD_NUMBER = 1; - private flyteidl.core.IdentifierOuterClass.Identifier id_; - /** - *
-     * Identifier of workflow for which to change state.
-     * 
- * - * .flyteidl.core.Identifier id = 1; - */ - public boolean hasId() { - return id_ != null; - } - /** - *
-     * Identifier of workflow for which to change state.
-     * 
- * - * .flyteidl.core.Identifier id = 1; - */ - public flyteidl.core.IdentifierOuterClass.Identifier getId() { - return id_ == null ? flyteidl.core.IdentifierOuterClass.Identifier.getDefaultInstance() : id_; - } - /** - *
-     * Identifier of workflow for which to change state.
-     * 
- * - * .flyteidl.core.Identifier id = 1; - */ - public flyteidl.core.IdentifierOuterClass.IdentifierOrBuilder getIdOrBuilder() { - return getId(); - } - - public static final int STATE_FIELD_NUMBER = 2; - private int state_; - /** - *
-     * Desired state to apply to the workflow.
-     * 
- * - * .flyteidl.admin.WorkflowState state = 2; - */ - public int getStateValue() { - return state_; - } - /** - *
-     * Desired state to apply to the workflow.
-     * 
- * - * .flyteidl.admin.WorkflowState state = 2; - */ - public flyteidl.admin.WorkflowOuterClass.WorkflowState getState() { - @SuppressWarnings("deprecation") - flyteidl.admin.WorkflowOuterClass.WorkflowState result = flyteidl.admin.WorkflowOuterClass.WorkflowState.valueOf(state_); - return result == null ? flyteidl.admin.WorkflowOuterClass.WorkflowState.UNRECOGNIZED : result; - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (id_ != null) { - output.writeMessage(1, getId()); - } - if (state_ != flyteidl.admin.WorkflowOuterClass.WorkflowState.WORKFLOW_ACTIVE.getNumber()) { - output.writeEnum(2, state_); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (id_ != null) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(1, getId()); - } - if (state_ != flyteidl.admin.WorkflowOuterClass.WorkflowState.WORKFLOW_ACTIVE.getNumber()) { - size += com.google.protobuf.CodedOutputStream - .computeEnumSize(2, state_); - } - 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.WorkflowOuterClass.WorkflowUpdateRequest)) { - return super.equals(obj); - } - flyteidl.admin.WorkflowOuterClass.WorkflowUpdateRequest other = (flyteidl.admin.WorkflowOuterClass.WorkflowUpdateRequest) obj; - - if (hasId() != other.hasId()) return false; - if (hasId()) { - if (!getId() - .equals(other.getId())) return false; - } - if (state_ != other.state_) 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(); - if (hasId()) { - hash = (37 * hash) + ID_FIELD_NUMBER; - hash = (53 * hash) + getId().hashCode(); - } - hash = (37 * hash) + STATE_FIELD_NUMBER; - hash = (53 * hash) + state_; - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static flyteidl.admin.WorkflowOuterClass.WorkflowUpdateRequest parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static flyteidl.admin.WorkflowOuterClass.WorkflowUpdateRequest parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static flyteidl.admin.WorkflowOuterClass.WorkflowUpdateRequest parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static flyteidl.admin.WorkflowOuterClass.WorkflowUpdateRequest 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.WorkflowOuterClass.WorkflowUpdateRequest parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static flyteidl.admin.WorkflowOuterClass.WorkflowUpdateRequest parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static flyteidl.admin.WorkflowOuterClass.WorkflowUpdateRequest parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static flyteidl.admin.WorkflowOuterClass.WorkflowUpdateRequest 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.WorkflowOuterClass.WorkflowUpdateRequest parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static flyteidl.admin.WorkflowOuterClass.WorkflowUpdateRequest 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.WorkflowOuterClass.WorkflowUpdateRequest parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static flyteidl.admin.WorkflowOuterClass.WorkflowUpdateRequest 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.WorkflowOuterClass.WorkflowUpdateRequest 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; - } - /** - *
-     * Request to set the referenced workflow state to the configured value.
-     * 
- * - * Protobuf type {@code flyteidl.admin.WorkflowUpdateRequest} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:flyteidl.admin.WorkflowUpdateRequest) - flyteidl.admin.WorkflowOuterClass.WorkflowUpdateRequestOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return flyteidl.admin.WorkflowOuterClass.internal_static_flyteidl_admin_WorkflowUpdateRequest_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return flyteidl.admin.WorkflowOuterClass.internal_static_flyteidl_admin_WorkflowUpdateRequest_fieldAccessorTable - .ensureFieldAccessorsInitialized( - flyteidl.admin.WorkflowOuterClass.WorkflowUpdateRequest.class, flyteidl.admin.WorkflowOuterClass.WorkflowUpdateRequest.Builder.class); - } - - // Construct using flyteidl.admin.WorkflowOuterClass.WorkflowUpdateRequest.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(); - if (idBuilder_ == null) { - id_ = null; - } else { - id_ = null; - idBuilder_ = null; - } - state_ = 0; - - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return flyteidl.admin.WorkflowOuterClass.internal_static_flyteidl_admin_WorkflowUpdateRequest_descriptor; - } - - @java.lang.Override - public flyteidl.admin.WorkflowOuterClass.WorkflowUpdateRequest getDefaultInstanceForType() { - return flyteidl.admin.WorkflowOuterClass.WorkflowUpdateRequest.getDefaultInstance(); - } - - @java.lang.Override - public flyteidl.admin.WorkflowOuterClass.WorkflowUpdateRequest build() { - flyteidl.admin.WorkflowOuterClass.WorkflowUpdateRequest result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public flyteidl.admin.WorkflowOuterClass.WorkflowUpdateRequest buildPartial() { - flyteidl.admin.WorkflowOuterClass.WorkflowUpdateRequest result = new flyteidl.admin.WorkflowOuterClass.WorkflowUpdateRequest(this); - if (idBuilder_ == null) { - result.id_ = id_; - } else { - result.id_ = idBuilder_.build(); - } - result.state_ = state_; - 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.WorkflowOuterClass.WorkflowUpdateRequest) { - return mergeFrom((flyteidl.admin.WorkflowOuterClass.WorkflowUpdateRequest)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(flyteidl.admin.WorkflowOuterClass.WorkflowUpdateRequest other) { - if (other == flyteidl.admin.WorkflowOuterClass.WorkflowUpdateRequest.getDefaultInstance()) return this; - if (other.hasId()) { - mergeId(other.getId()); - } - if (other.state_ != 0) { - setStateValue(other.getStateValue()); - } - 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.WorkflowOuterClass.WorkflowUpdateRequest parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (flyteidl.admin.WorkflowOuterClass.WorkflowUpdateRequest) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - - private flyteidl.core.IdentifierOuterClass.Identifier id_; - private com.google.protobuf.SingleFieldBuilderV3< - flyteidl.core.IdentifierOuterClass.Identifier, flyteidl.core.IdentifierOuterClass.Identifier.Builder, flyteidl.core.IdentifierOuterClass.IdentifierOrBuilder> idBuilder_; - /** - *
-       * Identifier of workflow for which to change state.
-       * 
- * - * .flyteidl.core.Identifier id = 1; - */ - public boolean hasId() { - return idBuilder_ != null || id_ != null; - } - /** - *
-       * Identifier of workflow for which to change state.
-       * 
- * - * .flyteidl.core.Identifier id = 1; - */ - public flyteidl.core.IdentifierOuterClass.Identifier getId() { - if (idBuilder_ == null) { - return id_ == null ? flyteidl.core.IdentifierOuterClass.Identifier.getDefaultInstance() : id_; - } else { - return idBuilder_.getMessage(); - } - } - /** - *
-       * Identifier of workflow for which to change state.
-       * 
- * - * .flyteidl.core.Identifier id = 1; - */ - public Builder setId(flyteidl.core.IdentifierOuterClass.Identifier value) { - if (idBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - id_ = value; - onChanged(); - } else { - idBuilder_.setMessage(value); - } - - return this; - } - /** - *
-       * Identifier of workflow for which to change state.
-       * 
- * - * .flyteidl.core.Identifier id = 1; - */ - public Builder setId( - flyteidl.core.IdentifierOuterClass.Identifier.Builder builderForValue) { - if (idBuilder_ == null) { - id_ = builderForValue.build(); - onChanged(); - } else { - idBuilder_.setMessage(builderForValue.build()); - } - - return this; - } - /** - *
-       * Identifier of workflow for which to change state.
-       * 
- * - * .flyteidl.core.Identifier id = 1; - */ - public Builder mergeId(flyteidl.core.IdentifierOuterClass.Identifier value) { - if (idBuilder_ == null) { - if (id_ != null) { - id_ = - flyteidl.core.IdentifierOuterClass.Identifier.newBuilder(id_).mergeFrom(value).buildPartial(); - } else { - id_ = value; - } - onChanged(); - } else { - idBuilder_.mergeFrom(value); - } - - return this; - } - /** - *
-       * Identifier of workflow for which to change state.
-       * 
- * - * .flyteidl.core.Identifier id = 1; - */ - public Builder clearId() { - if (idBuilder_ == null) { - id_ = null; - onChanged(); - } else { - id_ = null; - idBuilder_ = null; - } - - return this; - } - /** - *
-       * Identifier of workflow for which to change state.
-       * 
- * - * .flyteidl.core.Identifier id = 1; - */ - public flyteidl.core.IdentifierOuterClass.Identifier.Builder getIdBuilder() { - - onChanged(); - return getIdFieldBuilder().getBuilder(); - } - /** - *
-       * Identifier of workflow for which to change state.
-       * 
- * - * .flyteidl.core.Identifier id = 1; - */ - public flyteidl.core.IdentifierOuterClass.IdentifierOrBuilder getIdOrBuilder() { - if (idBuilder_ != null) { - return idBuilder_.getMessageOrBuilder(); - } else { - return id_ == null ? - flyteidl.core.IdentifierOuterClass.Identifier.getDefaultInstance() : id_; - } - } - /** - *
-       * Identifier of workflow for which to change state.
-       * 
- * - * .flyteidl.core.Identifier id = 1; - */ - private com.google.protobuf.SingleFieldBuilderV3< - flyteidl.core.IdentifierOuterClass.Identifier, flyteidl.core.IdentifierOuterClass.Identifier.Builder, flyteidl.core.IdentifierOuterClass.IdentifierOrBuilder> - getIdFieldBuilder() { - if (idBuilder_ == null) { - idBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - flyteidl.core.IdentifierOuterClass.Identifier, flyteidl.core.IdentifierOuterClass.Identifier.Builder, flyteidl.core.IdentifierOuterClass.IdentifierOrBuilder>( - getId(), - getParentForChildren(), - isClean()); - id_ = null; - } - return idBuilder_; - } - - private int state_ = 0; - /** - *
-       * Desired state to apply to the workflow.
-       * 
- * - * .flyteidl.admin.WorkflowState state = 2; - */ - public int getStateValue() { - return state_; - } - /** - *
-       * Desired state to apply to the workflow.
-       * 
- * - * .flyteidl.admin.WorkflowState state = 2; - */ - public Builder setStateValue(int value) { - state_ = value; - onChanged(); - return this; - } - /** - *
-       * Desired state to apply to the workflow.
-       * 
- * - * .flyteidl.admin.WorkflowState state = 2; - */ - public flyteidl.admin.WorkflowOuterClass.WorkflowState getState() { - @SuppressWarnings("deprecation") - flyteidl.admin.WorkflowOuterClass.WorkflowState result = flyteidl.admin.WorkflowOuterClass.WorkflowState.valueOf(state_); - return result == null ? flyteidl.admin.WorkflowOuterClass.WorkflowState.UNRECOGNIZED : result; - } - /** - *
-       * Desired state to apply to the workflow.
-       * 
- * - * .flyteidl.admin.WorkflowState state = 2; - */ - public Builder setState(flyteidl.admin.WorkflowOuterClass.WorkflowState value) { - if (value == null) { - throw new NullPointerException(); - } - - state_ = value.getNumber(); - onChanged(); - return this; - } - /** - *
-       * Desired state to apply to the workflow.
-       * 
- * - * .flyteidl.admin.WorkflowState state = 2; - */ - public Builder clearState() { - - state_ = 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.WorkflowUpdateRequest) - } - - // @@protoc_insertion_point(class_scope:flyteidl.admin.WorkflowUpdateRequest) - private static final flyteidl.admin.WorkflowOuterClass.WorkflowUpdateRequest DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new flyteidl.admin.WorkflowOuterClass.WorkflowUpdateRequest(); - } - - public static flyteidl.admin.WorkflowOuterClass.WorkflowUpdateRequest getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public WorkflowUpdateRequest parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new WorkflowUpdateRequest(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.WorkflowOuterClass.WorkflowUpdateRequest getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public interface WorkflowUpdateResponseOrBuilder extends - // @@protoc_insertion_point(interface_extends:flyteidl.admin.WorkflowUpdateResponse) - com.google.protobuf.MessageOrBuilder { - } - /** - *
-   * Purposefully empty, may be populated in the future.
-   * 
- * - * Protobuf type {@code flyteidl.admin.WorkflowUpdateResponse} - */ - public static final class WorkflowUpdateResponse extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:flyteidl.admin.WorkflowUpdateResponse) - WorkflowUpdateResponseOrBuilder { - private static final long serialVersionUID = 0L; - // Use WorkflowUpdateResponse.newBuilder() to construct. - private WorkflowUpdateResponse(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private WorkflowUpdateResponse() { - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private WorkflowUpdateResponse( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - 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; - 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.WorkflowOuterClass.internal_static_flyteidl_admin_WorkflowUpdateResponse_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return flyteidl.admin.WorkflowOuterClass.internal_static_flyteidl_admin_WorkflowUpdateResponse_fieldAccessorTable - .ensureFieldAccessorsInitialized( - flyteidl.admin.WorkflowOuterClass.WorkflowUpdateResponse.class, flyteidl.admin.WorkflowOuterClass.WorkflowUpdateResponse.Builder.class); - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - 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.WorkflowOuterClass.WorkflowUpdateResponse)) { - return super.equals(obj); - } - flyteidl.admin.WorkflowOuterClass.WorkflowUpdateResponse other = (flyteidl.admin.WorkflowOuterClass.WorkflowUpdateResponse) obj; - - 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 = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static flyteidl.admin.WorkflowOuterClass.WorkflowUpdateResponse parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static flyteidl.admin.WorkflowOuterClass.WorkflowUpdateResponse parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static flyteidl.admin.WorkflowOuterClass.WorkflowUpdateResponse parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static flyteidl.admin.WorkflowOuterClass.WorkflowUpdateResponse 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.WorkflowOuterClass.WorkflowUpdateResponse parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static flyteidl.admin.WorkflowOuterClass.WorkflowUpdateResponse parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static flyteidl.admin.WorkflowOuterClass.WorkflowUpdateResponse parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static flyteidl.admin.WorkflowOuterClass.WorkflowUpdateResponse 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.WorkflowOuterClass.WorkflowUpdateResponse parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static flyteidl.admin.WorkflowOuterClass.WorkflowUpdateResponse 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.WorkflowOuterClass.WorkflowUpdateResponse parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static flyteidl.admin.WorkflowOuterClass.WorkflowUpdateResponse 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.WorkflowOuterClass.WorkflowUpdateResponse 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; - } - /** - *
-     * Purposefully empty, may be populated in the future.
-     * 
- * - * Protobuf type {@code flyteidl.admin.WorkflowUpdateResponse} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:flyteidl.admin.WorkflowUpdateResponse) - flyteidl.admin.WorkflowOuterClass.WorkflowUpdateResponseOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return flyteidl.admin.WorkflowOuterClass.internal_static_flyteidl_admin_WorkflowUpdateResponse_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return flyteidl.admin.WorkflowOuterClass.internal_static_flyteidl_admin_WorkflowUpdateResponse_fieldAccessorTable - .ensureFieldAccessorsInitialized( - flyteidl.admin.WorkflowOuterClass.WorkflowUpdateResponse.class, flyteidl.admin.WorkflowOuterClass.WorkflowUpdateResponse.Builder.class); - } - - // Construct using flyteidl.admin.WorkflowOuterClass.WorkflowUpdateResponse.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(); - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return flyteidl.admin.WorkflowOuterClass.internal_static_flyteidl_admin_WorkflowUpdateResponse_descriptor; - } - - @java.lang.Override - public flyteidl.admin.WorkflowOuterClass.WorkflowUpdateResponse getDefaultInstanceForType() { - return flyteidl.admin.WorkflowOuterClass.WorkflowUpdateResponse.getDefaultInstance(); - } - - @java.lang.Override - public flyteidl.admin.WorkflowOuterClass.WorkflowUpdateResponse build() { - flyteidl.admin.WorkflowOuterClass.WorkflowUpdateResponse result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public flyteidl.admin.WorkflowOuterClass.WorkflowUpdateResponse buildPartial() { - flyteidl.admin.WorkflowOuterClass.WorkflowUpdateResponse result = new flyteidl.admin.WorkflowOuterClass.WorkflowUpdateResponse(this); - 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.WorkflowOuterClass.WorkflowUpdateResponse) { - return mergeFrom((flyteidl.admin.WorkflowOuterClass.WorkflowUpdateResponse)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(flyteidl.admin.WorkflowOuterClass.WorkflowUpdateResponse other) { - if (other == flyteidl.admin.WorkflowOuterClass.WorkflowUpdateResponse.getDefaultInstance()) return this; - 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.WorkflowOuterClass.WorkflowUpdateResponse parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (flyteidl.admin.WorkflowOuterClass.WorkflowUpdateResponse) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - 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.WorkflowUpdateResponse) - } - - // @@protoc_insertion_point(class_scope:flyteidl.admin.WorkflowUpdateResponse) - private static final flyteidl.admin.WorkflowOuterClass.WorkflowUpdateResponse DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new flyteidl.admin.WorkflowOuterClass.WorkflowUpdateResponse(); - } - - public static flyteidl.admin.WorkflowOuterClass.WorkflowUpdateResponse getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public WorkflowUpdateResponse parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new WorkflowUpdateResponse(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.WorkflowOuterClass.WorkflowUpdateResponse getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_flyteidl_admin_WorkflowCreateRequest_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_flyteidl_admin_WorkflowCreateRequest_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_flyteidl_admin_WorkflowCreateResponse_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_flyteidl_admin_WorkflowCreateResponse_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_flyteidl_admin_Workflow_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_flyteidl_admin_Workflow_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_flyteidl_admin_WorkflowList_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_flyteidl_admin_WorkflowList_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_flyteidl_admin_WorkflowSpec_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_flyteidl_admin_WorkflowSpec_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_flyteidl_admin_WorkflowClosure_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_flyteidl_admin_WorkflowClosure_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_flyteidl_admin_WorkflowUpdateRequest_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_flyteidl_admin_WorkflowUpdateRequest_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_flyteidl_admin_WorkflowUpdateResponse_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_flyteidl_admin_WorkflowUpdateResponse_fieldAccessorTable; - - public static com.google.protobuf.Descriptors.FileDescriptor - getDescriptor() { - return descriptor; - } - private static com.google.protobuf.Descriptors.FileDescriptor - descriptor; - static { - java.lang.String[] descriptorData = { - "\n\035flyteidl/admin/workflow.proto\022\016flyteid" + - "l.admin\032\034flyteidl/core/compiler.proto\032\036f" + - "lyteidl/core/identifier.proto\032\034flyteidl/" + - "core/workflow.proto\032\033flyteidl/admin/comm" + - "on.proto\032\037google/protobuf/timestamp.prot" + - "o\"j\n\025WorkflowCreateRequest\022%\n\002id\030\001 \001(\0132\031" + - ".flyteidl.core.Identifier\022*\n\004spec\030\002 \001(\0132" + - "\034.flyteidl.admin.WorkflowSpec\"\030\n\026Workflo" + - "wCreateResponse\"c\n\010Workflow\022%\n\002id\030\001 \001(\0132" + - "\031.flyteidl.core.Identifier\0220\n\007closure\030\002 " + - "\001(\0132\037.flyteidl.admin.WorkflowClosure\"J\n\014" + - "WorkflowList\022+\n\tworkflows\030\001 \003(\0132\030.flytei" + - "dl.admin.Workflow\022\r\n\005token\030\002 \001(\t\"y\n\014Work" + - "flowSpec\0221\n\010template\030\001 \001(\0132\037.flyteidl.co" + - "re.WorkflowTemplate\0226\n\rsub_workflows\030\002 \003" + - "(\0132\037.flyteidl.core.WorkflowTemplate\"\204\001\n\017" + - "WorkflowClosure\022A\n\021compiled_workflow\030\001 \001" + - "(\0132&.flyteidl.core.CompiledWorkflowClosu" + - "re\022.\n\ncreated_at\030\002 \001(\0132\032.google.protobuf" + - ".Timestamp\"l\n\025WorkflowUpdateRequest\022%\n\002i" + - "d\030\001 \001(\0132\031.flyteidl.core.Identifier\022,\n\005st" + - "ate\030\002 \001(\0162\035.flyteidl.admin.WorkflowState" + - "\"\030\n\026WorkflowUpdateResponse*;\n\rWorkflowSt" + - "ate\022\023\n\017WORKFLOW_ACTIVE\020\000\022\025\n\021WORKFLOW_ARC" + - "HIVED\020\001B3Z1github.com/lyft/flyteidl/gen/" + - "pb-go/flyteidl/adminb\006proto3" - }; - com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = - new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { - public com.google.protobuf.ExtensionRegistry assignDescriptors( - com.google.protobuf.Descriptors.FileDescriptor root) { - descriptor = root; - return null; + private static com.google.protobuf.Descriptors.FileDescriptor + descriptor; + static { + java.lang.String[] descriptorData = { + "\n\035flyteidl/admin/workflow.proto\022\016flyteid" + + "l.admin\032\034flyteidl/core/compiler.proto\032\036f" + + "lyteidl/core/identifier.proto\032\034flyteidl/" + + "core/workflow.proto\032\033flyteidl/admin/comm" + + "on.proto\032\037google/protobuf/timestamp.prot" + + "o\"j\n\025WorkflowCreateRequest\022%\n\002id\030\001 \001(\0132\031" + + ".flyteidl.core.Identifier\022*\n\004spec\030\002 \001(\0132" + + "\034.flyteidl.admin.WorkflowSpec\"\030\n\026Workflo" + + "wCreateResponse\"c\n\010Workflow\022%\n\002id\030\001 \001(\0132" + + "\031.flyteidl.core.Identifier\0220\n\007closure\030\002 " + + "\001(\0132\037.flyteidl.admin.WorkflowClosure\"J\n\014" + + "WorkflowList\022+\n\tworkflows\030\001 \003(\0132\030.flytei" + + "dl.admin.Workflow\022\r\n\005token\030\002 \001(\t\"y\n\014Work" + + "flowSpec\0221\n\010template\030\001 \001(\0132\037.flyteidl.co" + + "re.WorkflowTemplate\0226\n\rsub_workflows\030\002 \003" + + "(\0132\037.flyteidl.core.WorkflowTemplate\"\204\001\n\017" + + "WorkflowClosure\022A\n\021compiled_workflow\030\001 \001" + + "(\0132&.flyteidl.core.CompiledWorkflowClosu" + + "re\022.\n\ncreated_at\030\002 \001(\0132\032.google.protobuf" + + ".TimestampB3Z1github.com/lyft/flyteidl/g" + + "en/pb-go/flyteidl/adminb\006proto3" + }; + com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = + new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { + public com.google.protobuf.ExtensionRegistry assignDescriptors( + com.google.protobuf.Descriptors.FileDescriptor root) { + descriptor = root; + return null; } }; com.google.protobuf.Descriptors.FileDescriptor @@ -6991,18 +5635,6 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_flyteidl_admin_WorkflowClosure_descriptor, new java.lang.String[] { "CompiledWorkflow", "CreatedAt", }); - internal_static_flyteidl_admin_WorkflowUpdateRequest_descriptor = - getDescriptor().getMessageTypes().get(6); - internal_static_flyteidl_admin_WorkflowUpdateRequest_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_flyteidl_admin_WorkflowUpdateRequest_descriptor, - new java.lang.String[] { "Id", "State", }); - internal_static_flyteidl_admin_WorkflowUpdateResponse_descriptor = - getDescriptor().getMessageTypes().get(7); - internal_static_flyteidl_admin_WorkflowUpdateResponse_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_flyteidl_admin_WorkflowUpdateResponse_descriptor, - new java.lang.String[] { }); flyteidl.core.Compiler.getDescriptor(); flyteidl.core.IdentifierOuterClass.getDescriptor(); flyteidl.core.Workflow.getDescriptor(); diff --git a/flyteidl/gen/pb-java/flyteidl/service/Admin.java b/flyteidl/gen/pb-java/flyteidl/service/Admin.java index 6d14e252e0..bb5982e250 100644 --- a/flyteidl/gen/pb-java/flyteidl/service/Admin.java +++ b/flyteidl/gen/pb-java/flyteidl/service/Admin.java @@ -36,7 +36,7 @@ public static void registerAllExtensions( "l/admin/node_execution.proto\032#flyteidl/a" + "dmin/task_execution.proto\032\033flyteidl/admi" + "n/common.proto\032,protoc-gen-swagger/optio" + - "ns/annotations.proto2\303`\n\014AdminService\022\305\002" + + "ns/annotations.proto2\331^\n\014AdminService\022\305\002" + "\n\nCreateTask\022!.flyteidl.admin.TaskCreate" + "Request\032\".flyteidl.admin.TaskCreateRespo" + "nse\"\357\001\202\323\344\223\002\022\"\r/api/v1/tasks:\001*\222A\323\001\032&Crea" + @@ -87,267 +87,261 @@ public static void registerAllExtensions( "/{id.domain}/{id.name}Z,\022*/api/v1/workfl" + "ows/{id.project}/{id.domain}\222A=\032;Fetch e" + "xisting workflow definitions matching in" + - "put filters.\022\347\001\n\016UpdateWorkflow\022%.flytei" + - "dl.admin.WorkflowUpdateRequest\032&.flyteid" + - "l.admin.WorkflowUpdateResponse\"\205\001\202\323\344\223\002F\032" + - "A/api/v1/workflows/{id.project}/{id.doma" + - "in}/{id.name}/{id.version}:\001*\222A6\0324Update" + - " the state of an existing workflow defin" + - "ition.\022\345\002\n\020CreateLaunchPlan\022\'.flyteidl.a" + - "dmin.LaunchPlanCreateRequest\032(.flyteidl." + - "admin.LaunchPlanCreateResponse\"\375\001\202\323\344\223\002\031\"" + - "\024/api/v1/launch_plans:\001*\222A\332\001\032-Create and" + - " register a launch plan definition.JB\n\0034" + - "00\022;\n9Returned for bad request that may " + - "have failed validation.Je\n\003409\022^\n\\Return" + - "ed for a request that references an iden" + - "tical entity that has already been regis" + - "tered.\022\314\001\n\rGetLaunchPlan\022 .flyteidl.admi" + - "n.ObjectGetRequest\032\032.flyteidl.admin.Laun" + - "chPlan\"}\202\323\344\223\002F\022D/api/v1/launch_plans/{id" + - ".project}/{id.domain}/{id.name}/{id.vers" + - "ion}\222A.\032,Retrieve an existing launch pla" + - "n definition.\022\363\001\n\023GetActiveLaunchPlan\022\'." + - "flyteidl.admin.ActiveLaunchPlanRequest\032\032" + - ".flyteidl.admin.LaunchPlan\"\226\001\202\323\344\223\002@\022>/ap" + - "i/v1/active_launch_plans/{id.project}/{i" + - "d.domain}/{id.name}\222AM\032KRetrieve the act" + - "ive launch plan version specified by inp" + - "ut request filters.\022\353\001\n\025ListActiveLaunch" + - "Plans\022+.flyteidl.admin.ActiveLaunchPlanL" + - "istRequest\032\036.flyteidl.admin.LaunchPlanLi" + - "st\"\204\001\202\323\344\223\0020\022./api/v1/active_launch_plans" + - "/{project}/{domain}\222AK\032IFetch the active" + - " launch plan versions specified by input" + - " request filters.\022\363\001\n\021ListLaunchPlanIds\022" + - "0.flyteidl.admin.NamedEntityIdentifierLi" + - "stRequest\032).flyteidl.admin.NamedEntityId" + - "entifierList\"\200\001\202\323\344\223\002,\022*/api/v1/launch_pl" + - "an_ids/{project}/{domain}\222AK\032IFetch exis" + - "ting launch plan definition identifiers " + - "matching input filters.\022\214\002\n\017ListLaunchPl" + - "ans\022#.flyteidl.admin.ResourceListRequest" + - "\032\036.flyteidl.admin.LaunchPlanList\"\263\001\202\323\344\223\002" + - "j\0227/api/v1/launch_plans/{id.project}/{id" + - ".domain}/{id.name}Z/\022-/api/v1/launch_pla" + - "ns/{id.project}/{id.domain}\222A@\032>Fetch ex" + - "isting launch plan definitions matching " + - "input filters.\022\300\006\n\020UpdateLaunchPlan\022\'.fl" + - "yteidl.admin.LaunchPlanUpdateRequest\032(.f" + - "lyteidl.admin.LaunchPlanUpdateResponse\"\330" + - "\005\202\323\344\223\002I\032D/api/v1/launch_plans/{id.projec" + - "t}/{id.domain}/{id.name}/{id.version}:\001*" + - "\222A\205\005\032\202\005Update the status of an existing " + - "launch plan definition. At most one laun" + - "ch plan version for a given {project, do" + - "main, name} can be active at a time. If " + - "this call sets a launch plan to active a" + - "nd existing version is already active, t" + - "he result of this call will be that the " + - "formerly active launch plan will be made" + - " inactive and specified launch plan in t" + - "his request will be made active. In the " + - "event that the formerly active launch pl" + - "an had a schedule associated it with it," + - " this schedule will be disabled. If the " + - "reference launch plan in this request is" + - " being set to active and has a schedule " + - "associated with it, the schedule will be" + - " enabled.\022\242\001\n\017CreateExecution\022&.flyteidl" + - ".admin.ExecutionCreateRequest\032\'.flyteidl" + - ".admin.ExecutionCreateResponse\">\202\323\344\223\002\027\"\022" + - "/api/v1/executions:\001*\222A\036\032\034Create a workf" + - "low execution.\022\261\001\n\021RelaunchExecution\022(.f" + - "lyteidl.admin.ExecutionRelaunchRequest\032\'" + - ".flyteidl.admin.ExecutionCreateResponse\"" + - "I\202\323\344\223\002 \"\033/api/v1/executions/relaunch:\001*\222" + - "A \032\036Relaunch a workflow execution.\022\302\001\n\014G" + - "etExecution\022+.flyteidl.admin.WorkflowExe" + - "cutionGetRequest\032\031.flyteidl.admin.Execut" + - "ion\"j\202\323\344\223\0027\0225/api/v1/executions/{id.proj" + - "ect}/{id.domain}/{id.name}\222A*\032(Retrieve " + - "an existing workflow execution.\022\202\002\n\020GetE" + - "xecutionData\022/.flyteidl.admin.WorkflowEx" + - "ecutionGetDataRequest\0320.flyteidl.admin.W" + - "orkflowExecutionGetDataResponse\"\212\001\202\323\344\223\002<" + - "\022:/api/v1/data/executions/{id.project}/{" + - "id.domain}/{id.name}\222AE\032CRetrieve input " + - "and output data from an existing workflo" + - "w execution.\022\310\001\n\016ListExecutions\022#.flytei" + - "dl.admin.ResourceListRequest\032\035.flyteidl." + - "admin.ExecutionList\"r\202\323\344\223\002-\022+/api/v1/exe" + - "cutions/{id.project}/{id.domain}\222A<\032:Fet" + - "ch existing workflow executions matching" + - " input filters.\022\364\001\n\022TerminateExecution\022)" + - ".flyteidl.admin.ExecutionTerminateReques" + - "t\032*.flyteidl.admin.ExecutionTerminateRes" + - "ponse\"\206\001\202\323\344\223\002:*5/api/v1/executions/{id.p" + - "roject}/{id.domain}/{id.name}:\001*\222AC\032ATer" + - "minate the active workflow execution spe" + - "cified in the request.\022\374\001\n\020GetNodeExecut" + - "ion\022\'.flyteidl.admin.NodeExecutionGetReq" + - "uest\032\035.flyteidl.admin.NodeExecution\"\237\001\202\323" + - "\344\223\002p\022n/api/v1/node_executions/{id.execut" + + "put filters.\022\345\002\n\020CreateLaunchPlan\022\'.flyt" + + "eidl.admin.LaunchPlanCreateRequest\032(.fly" + + "teidl.admin.LaunchPlanCreateResponse\"\375\001\202" + + "\323\344\223\002\031\"\024/api/v1/launch_plans:\001*\222A\332\001\032-Crea" + + "te and register a launch plan definition" + + ".JB\n\003400\022;\n9Returned for bad request tha" + + "t may have failed validation.Je\n\003409\022^\n\\" + + "Returned for a request that references a" + + "n identical entity that has already been" + + " registered.\022\314\001\n\rGetLaunchPlan\022 .flyteid" + + "l.admin.ObjectGetRequest\032\032.flyteidl.admi" + + "n.LaunchPlan\"}\202\323\344\223\002F\022D/api/v1/launch_pla" + + "ns/{id.project}/{id.domain}/{id.name}/{i" + + "d.version}\222A.\032,Retrieve an existing laun" + + "ch plan definition.\022\363\001\n\023GetActiveLaunchP" + + "lan\022\'.flyteidl.admin.ActiveLaunchPlanReq" + + "uest\032\032.flyteidl.admin.LaunchPlan\"\226\001\202\323\344\223\002" + + "@\022>/api/v1/active_launch_plans/{id.proje" + + "ct}/{id.domain}/{id.name}\222AM\032KRetrieve t" + + "he active launch plan version specified " + + "by input request filters.\022\353\001\n\025ListActive" + + "LaunchPlans\022+.flyteidl.admin.ActiveLaunc" + + "hPlanListRequest\032\036.flyteidl.admin.Launch" + + "PlanList\"\204\001\202\323\344\223\0020\022./api/v1/active_launch" + + "_plans/{project}/{domain}\222AK\032IFetch the " + + "active launch plan versions specified by" + + " input request filters.\022\363\001\n\021ListLaunchPl" + + "anIds\0220.flyteidl.admin.NamedEntityIdenti" + + "fierListRequest\032).flyteidl.admin.NamedEn" + + "tityIdentifierList\"\200\001\202\323\344\223\002,\022*/api/v1/lau" + + "nch_plan_ids/{project}/{domain}\222AK\032IFetc" + + "h existing launch plan definition identi" + + "fiers matching input filters.\022\214\002\n\017ListLa" + + "unchPlans\022#.flyteidl.admin.ResourceListR" + + "equest\032\036.flyteidl.admin.LaunchPlanList\"\263" + + "\001\202\323\344\223\002j\0227/api/v1/launch_plans/{id.projec" + + "t}/{id.domain}/{id.name}Z/\022-/api/v1/laun" + + "ch_plans/{id.project}/{id.domain}\222A@\032>Fe" + + "tch existing launch plan definitions mat" + + "ching input filters.\022\300\006\n\020UpdateLaunchPla" + + "n\022\'.flyteidl.admin.LaunchPlanUpdateReque" + + "st\032(.flyteidl.admin.LaunchPlanUpdateResp" + + "onse\"\330\005\202\323\344\223\002I\032D/api/v1/launch_plans/{id." + + "project}/{id.domain}/{id.name}/{id.versi" + + "on}:\001*\222A\205\005\032\202\005Update the status of an exi" + + "sting launch plan definition. At most on" + + "e launch plan version for a given {proje" + + "ct, domain, name} can be active at a tim" + + "e. If this call sets a launch plan to ac" + + "tive and existing version is already act" + + "ive, the result of this call will be tha" + + "t the formerly active launch plan will b" + + "e made inactive and specified launch pla" + + "n in this request will be made active. I" + + "n the event that the formerly active lau" + + "nch plan had a schedule associated it wi" + + "th it, this schedule will be disabled. I" + + "f the reference launch plan in this requ" + + "est is being set to active and has a sch" + + "edule associated with it, the schedule w" + + "ill be enabled.\022\242\001\n\017CreateExecution\022&.fl" + + "yteidl.admin.ExecutionCreateRequest\032\'.fl" + + "yteidl.admin.ExecutionCreateResponse\">\202\323" + + "\344\223\002\027\"\022/api/v1/executions:\001*\222A\036\032\034Create a" + + " workflow execution.\022\261\001\n\021RelaunchExecuti" + + "on\022(.flyteidl.admin.ExecutionRelaunchReq" + + "uest\032\'.flyteidl.admin.ExecutionCreateRes" + + "ponse\"I\202\323\344\223\002 \"\033/api/v1/executions/relaun" + + "ch:\001*\222A \032\036Relaunch a workflow execution." + + "\022\302\001\n\014GetExecution\022+.flyteidl.admin.Workf" + + "lowExecutionGetRequest\032\031.flyteidl.admin." + + "Execution\"j\202\323\344\223\0027\0225/api/v1/executions/{i" + + "d.project}/{id.domain}/{id.name}\222A*\032(Ret" + + "rieve an existing workflow execution.\022\202\002" + + "\n\020GetExecutionData\022/.flyteidl.admin.Work" + + "flowExecutionGetDataRequest\0320.flyteidl.a" + + "dmin.WorkflowExecutionGetDataResponse\"\212\001" + + "\202\323\344\223\002<\022:/api/v1/data/executions/{id.proj" + + "ect}/{id.domain}/{id.name}\222AE\032CRetrieve " + + "input and output data from an existing w" + + "orkflow execution.\022\310\001\n\016ListExecutions\022#." + + "flyteidl.admin.ResourceListRequest\032\035.fly" + + "teidl.admin.ExecutionList\"r\202\323\344\223\002-\022+/api/" + + "v1/executions/{id.project}/{id.domain}\222A" + + "<\032:Fetch existing workflow executions ma" + + "tching input filters.\022\364\001\n\022TerminateExecu" + + "tion\022).flyteidl.admin.ExecutionTerminate" + + "Request\032*.flyteidl.admin.ExecutionTermin" + + "ateResponse\"\206\001\202\323\344\223\002:*5/api/v1/executions" + + "/{id.project}/{id.domain}/{id.name}:\001*\222A" + + "C\032ATerminate the active workflow executi" + + "on specified in the request.\022\374\001\n\020GetNode" + + "Execution\022\'.flyteidl.admin.NodeExecution" + + "GetRequest\032\035.flyteidl.admin.NodeExecutio" + + "n\"\237\001\202\323\344\223\002p\022n/api/v1/node_executions/{id." + + "execution_id.project}/{id.execution_id.d" + + "omain}/{id.execution_id.name}/{id.node_i" + + "d}\222A&\032$Retrieve an existing node executi" + + "on.\022\232\002\n\022ListNodeExecutions\022(.flyteidl.ad" + + "min.NodeExecutionListRequest\032!.flyteidl." + + "admin.NodeExecutionList\"\266\001\202\323\344\223\002u\022s/api/v" + + "1/node_executions/{workflow_execution_id" + + ".project}/{workflow_execution_id.domain}" + + "/{workflow_execution_id.name}\222A8\0326Fetch " + + "existing node executions matching input " + + "filters.\022\357\004\n\031ListNodeExecutionsForTask\022/" + + ".flyteidl.admin.NodeExecutionForTaskList" + + "Request\032!.flyteidl.admin.NodeExecutionLi" + + "st\"\375\003\202\323\344\223\002\254\003\022\251\003/api/v1/children/task_exe" + + "cutions/{task_execution_id.node_executio" + + "n_id.execution_id.project}/{task_executi" + + "on_id.node_execution_id.execution_id.dom" + + "ain}/{task_execution_id.node_execution_i" + + "d.execution_id.name}/{task_execution_id." + + "node_execution_id.node_id}/{task_executi" + + "on_id.task_id.project}/{task_execution_i" + + "d.task_id.domain}/{task_execution_id.tas" + + "k_id.name}/{task_execution_id.task_id.ve" + + "rsion}/{task_execution_id.retry_attempt}" + + "\222AG\032EFetch child node executions launche" + + "d by the specified task execution.\022\263\002\n\024G" + + "etNodeExecutionData\022+.flyteidl.admin.Nod" + + "eExecutionGetDataRequest\032,.flyteidl.admi" + + "n.NodeExecutionGetDataResponse\"\277\001\202\323\344\223\002u\022" + + "s/api/v1/data/node_executions/{id.execut" + "ion_id.project}/{id.execution_id.domain}" + - "/{id.execution_id.name}/{id.node_id}\222A&\032" + - "$Retrieve an existing node execution.\022\232\002" + - "\n\022ListNodeExecutions\022(.flyteidl.admin.No" + - "deExecutionListRequest\032!.flyteidl.admin." + - "NodeExecutionList\"\266\001\202\323\344\223\002u\022s/api/v1/node" + - "_executions/{workflow_execution_id.proje" + - "ct}/{workflow_execution_id.domain}/{work" + - "flow_execution_id.name}\222A8\0326Fetch existi" + - "ng node executions matching input filter" + - "s.\022\357\004\n\031ListNodeExecutionsForTask\022/.flyte" + - "idl.admin.NodeExecutionForTaskListReques" + - "t\032!.flyteidl.admin.NodeExecutionList\"\375\003\202" + - "\323\344\223\002\254\003\022\251\003/api/v1/children/task_execution" + - "s/{task_execution_id.node_execution_id.e" + - "xecution_id.project}/{task_execution_id." + - "node_execution_id.execution_id.domain}/{" + - "task_execution_id.node_execution_id.exec" + - "ution_id.name}/{task_execution_id.node_e" + - "xecution_id.node_id}/{task_execution_id." + - "task_id.project}/{task_execution_id.task" + - "_id.domain}/{task_execution_id.task_id.n" + - "ame}/{task_execution_id.task_id.version}" + - "/{task_execution_id.retry_attempt}\222AG\032EF" + - "etch child node executions launched by t" + - "he specified task execution.\022\263\002\n\024GetNode" + - "ExecutionData\022+.flyteidl.admin.NodeExecu" + - "tionGetDataRequest\032,.flyteidl.admin.Node" + - "ExecutionGetDataResponse\"\277\001\202\323\344\223\002u\022s/api/" + - "v1/data/node_executions/{id.execution_id" + - ".project}/{id.execution_id.domain}/{id.e" + - "xecution_id.name}/{id.node_id}\222AA\032?Retri" + - "eve input and output data from an existi" + - "ng node execution.\022\227\001\n\017RegisterProject\022&" + - ".flyteidl.admin.ProjectRegisterRequest\032\'" + - ".flyteidl.admin.ProjectRegisterResponse\"" + - "3\202\323\344\223\002\025\"\020/api/v1/projects:\001*\222A\025\032\023Registe" + - "r a project.\022\205\001\n\014ListProjects\022\".flyteidl" + - ".admin.ProjectListRequest\032\030.flyteidl.adm" + - "in.Projects\"7\202\323\344\223\002\022\022\020/api/v1/projects\222A\034" + - "\032\032Fetch registered projects.\022\335\001\n\023CreateW" + - "orkflowEvent\022-.flyteidl.admin.WorkflowEx" + - "ecutionEventRequest\032..flyteidl.admin.Wor" + - "kflowExecutionEventResponse\"g\202\323\344\223\002\035\"\030/ap" + - "i/v1/events/workflows:\001*\222AA\032?Create a wo" + - "rkflow execution event recording a phase" + - " transition.\022\311\001\n\017CreateNodeEvent\022).flyte" + - "idl.admin.NodeExecutionEventRequest\032*.fl" + - "yteidl.admin.NodeExecutionEventResponse\"" + - "_\202\323\344\223\002\031\"\024/api/v1/events/nodes:\001*\222A=\032;Cre" + - "ate a node execution event recording a p" + - "hase transition.\022\311\001\n\017CreateTaskEvent\022).f" + - "lyteidl.admin.TaskExecutionEventRequest\032" + - "*.flyteidl.admin.TaskExecutionEventRespo" + - "nse\"_\202\323\344\223\002\031\"\024/api/v1/events/tasks:\001*\222A=\032" + - ";Create a task execution event recording" + - " a phase transition.\022\251\003\n\020GetTaskExecutio" + - "n\022\'.flyteidl.admin.TaskExecutionGetReque" + - "st\032\035.flyteidl.admin.TaskExecution\"\314\002\202\323\344\223" + - "\002\234\002\022\231\002/api/v1/task_executions/{id.node_e" + - "xecution_id.execution_id.project}/{id.no" + - "de_execution_id.execution_id.domain}/{id" + - ".node_execution_id.execution_id.name}/{i" + - "d.node_execution_id.node_id}/{id.task_id" + - ".project}/{id.task_id.domain}/{id.task_i" + - "d.name}/{id.task_id.version}/{id.retry_a" + - "ttempt}\222A&\032$Retrieve an existing task ex" + - "ecution.\022\323\002\n\022ListTaskExecutions\022(.flytei" + - "dl.admin.TaskExecutionListRequest\032!.flyt" + - "eidl.admin.TaskExecutionList\"\357\001\202\323\344\223\002\255\001\022\252" + - "\001/api/v1/task_executions/{node_execution" + - "_id.execution_id.project}/{node_executio" + - "n_id.execution_id.domain}/{node_executio" + - "n_id.execution_id.name}/{node_execution_" + - "id.node_id}\222A8\0326Fetch existing task exec" + - "utions matching input filters.\022\340\003\n\024GetTa" + - "skExecutionData\022+.flyteidl.admin.TaskExe" + - "cutionGetDataRequest\032,.flyteidl.admin.Ta" + - "skExecutionGetDataResponse\"\354\002\202\323\344\223\002\241\002\022\236\002/" + - "api/v1/data/task_executions/{id.node_exe" + - "cution_id.execution_id.project}/{id.node" + - "_execution_id.execution_id.domain}/{id.n" + - "ode_execution_id.execution_id.name}/{id." + - "node_execution_id.node_id}/{id.task_id.p" + - "roject}/{id.task_id.domain}/{id.task_id." + - "name}/{id.task_id.version}/{id.retry_att" + - "empt}\222AA\032?Retrieve input and output data" + - " from an existing task execution.\022\277\002\n\035Up" + - "dateProjectDomainAttributes\0224.flyteidl.a" + - "dmin.ProjectDomainAttributesUpdateReques" + - "t\0325.flyteidl.admin.ProjectDomainAttribut" + - "esUpdateResponse\"\260\001\202\323\344\223\002O\032J/api/v1/proje" + - "ct_domain_attributes/{attributes.project" + - "}/{attributes.domain}:\001*\222AX\032VUpdate the " + - "customized resource attributes associate" + - "d with a project-domain combination\022\237\002\n\032" + - "GetProjectDomainAttributes\0221.flyteidl.ad" + - "min.ProjectDomainAttributesGetRequest\0322." + - "flyteidl.admin.ProjectDomainAttributesGe" + - "tResponse\"\231\001\202\323\344\223\0026\0224/api/v1/project_doma" + - "in_attributes/{project}/{domain}\222AZ\032XRet" + - "rieve the customized resource attributes" + - " associated with a project-domain combin" + - "ation\022\251\002\n\035DeleteProjectDomainAttributes\022" + - "4.flyteidl.admin.ProjectDomainAttributes" + - "DeleteRequest\0325.flyteidl.admin.ProjectDo" + - "mainAttributesDeleteResponse\"\232\001\202\323\344\223\0029*4/" + - "api/v1/project_domain_attributes/{projec" + - "t}/{domain}:\001*\222AX\032VDelete the customized" + - " resource attributes associated with a p" + - "roject-domain combination\022\316\002\n\030UpdateWork" + - "flowAttributes\022/.flyteidl.admin.Workflow" + - "AttributesUpdateRequest\0320.flyteidl.admin" + - ".WorkflowAttributesUpdateResponse\"\316\001\202\323\344\223" + - "\002_\032Z/api/v1/workflow_attributes/{attribu" + - "tes.project}/{attributes.domain}/{attrib" + - "utes.workflow}:\001*\222Af\032dUpdate the customi" + - "zed resource attributes associated with " + - "a project, domain and workflow combinati" + - "on\022\243\002\n\025GetWorkflowAttributes\022,.flyteidl." + - "admin.WorkflowAttributesGetRequest\032-.fly" + - "teidl.admin.WorkflowAttributesGetRespons" + - "e\"\254\001\202\323\344\223\002;\0229/api/v1/workflow_attributes/" + - "{project}/{domain}/{workflow}\222Ah\032fRetrie" + - "ve the customized resource attributes as" + - "sociated with a project, domain and work" + - "flow combination\022\255\002\n\030DeleteWorkflowAttri" + - "butes\022/.flyteidl.admin.WorkflowAttribute" + - "sDeleteRequest\0320.flyteidl.admin.Workflow" + - "AttributesDeleteResponse\"\255\001\202\323\344\223\002>*9/api/" + - "v1/workflow_attributes/{project}/{domain" + - "}/{workflow}:\001*\222Af\032dDelete the customize" + - "d resource attributes associated with a " + - "project, domain and workflow combination" + - "\022\341\001\n\027ListMatchableAttributes\022..flyteidl." + - "admin.ListMatchableAttributesRequest\032/.f" + - "lyteidl.admin.ListMatchableAttributesRes" + - "ponse\"e\202\323\344\223\002\036\022\034/api/v1/matchable_attribu" + - "tes\222A>\032*" + + "9/api/v1/workflow_attributes/{project}/{" + + "domain}/{workflow}:\001*\222Af\032dDelete the cus" + + "tomized resource attributes associated w" + + "ith a project, domain and workflow combi" + + "nation\022\341\001\n\027ListMatchableAttributes\022..fly" + + "teidl.admin.ListMatchableAttributesReque" + + "st\032/.flyteidl.admin.ListMatchableAttribu" + + "tesResponse\"e\202\323\344\223\002\036\022\034/api/v1/matchable_a" + + "ttributes\222A>\032; - /** - * Calls UpdateWorkflow. - * @param request WorkflowUpdateRequest message or plain object - * @param callback Node-style callback called with the error, if any, and WorkflowUpdateResponse - */ - public updateWorkflow(request: flyteidl.admin.IWorkflowUpdateRequest, callback: flyteidl.service.AdminService.UpdateWorkflowCallback): void; - - /** - * Calls UpdateWorkflow. - * @param request WorkflowUpdateRequest message or plain object - * @returns Promise - */ - public updateWorkflow(request: flyteidl.admin.IWorkflowUpdateRequest): Promise; - /** * Calls CreateLaunchPlan. * @param request LaunchPlanCreateRequest message or plain object @@ -12695,13 +12583,6 @@ export namespace flyteidl { */ type ListWorkflowsCallback = (error: (Error|null), response?: flyteidl.admin.WorkflowList) => void; - /** - * Callback as used by {@link flyteidl.service.AdminService#updateWorkflow}. - * @param error Error, if any - * @param [response] WorkflowUpdateResponse - */ - type UpdateWorkflowCallback = (error: (Error|null), response?: flyteidl.admin.WorkflowUpdateResponse) => void; - /** * Callback as used by {@link flyteidl.service.AdminService#createLaunchPlan}. * @param error Error, if any diff --git a/flyteidl/gen/pb-js/flyteidl.js b/flyteidl/gen/pb-js/flyteidl.js index fa815ac3a1..cc18ad4f06 100644 --- a/flyteidl/gen/pb-js/flyteidl.js +++ b/flyteidl/gen/pb-js/flyteidl.js @@ -11699,6 +11699,20 @@ export const flyteidl = $root.flyteidl = (() => { return NamedEntityIdentifier; })(); + /** + * NamedEntityState enum. + * @name flyteidl.admin.NamedEntityState + * @enum {string} + * @property {number} NAMED_ENTITY_ACTIVE=0 NAMED_ENTITY_ACTIVE value + * @property {number} NAMED_ENTITY_ARCHIVED=1 NAMED_ENTITY_ARCHIVED value + */ + admin.NamedEntityState = (function() { + const valuesById = {}, values = Object.create(valuesById); + values[valuesById[0] = "NAMED_ENTITY_ACTIVE"] = 0; + values[valuesById[1] = "NAMED_ENTITY_ARCHIVED"] = 1; + return values; + })(); + admin.NamedEntityMetadata = (function() { /** @@ -11706,6 +11720,7 @@ export const flyteidl = $root.flyteidl = (() => { * @memberof flyteidl.admin * @interface INamedEntityMetadata * @property {string|null} [description] NamedEntityMetadata description + * @property {flyteidl.admin.NamedEntityState|null} [state] NamedEntityMetadata state */ /** @@ -11731,6 +11746,14 @@ export const flyteidl = $root.flyteidl = (() => { */ NamedEntityMetadata.prototype.description = ""; + /** + * NamedEntityMetadata state. + * @member {flyteidl.admin.NamedEntityState} state + * @memberof flyteidl.admin.NamedEntityMetadata + * @instance + */ + NamedEntityMetadata.prototype.state = 0; + /** * Creates a new NamedEntityMetadata instance using the specified properties. * @function create @@ -11757,6 +11780,8 @@ export const flyteidl = $root.flyteidl = (() => { writer = $Writer.create(); if (message.description != null && message.hasOwnProperty("description")) writer.uint32(/* id 1, wireType 2 =*/10).string(message.description); + if (message.state != null && message.hasOwnProperty("state")) + writer.uint32(/* id 2, wireType 0 =*/16).int32(message.state); return writer; }; @@ -11781,6 +11806,9 @@ export const flyteidl = $root.flyteidl = (() => { case 1: message.description = reader.string(); break; + case 2: + message.state = reader.int32(); + break; default: reader.skipType(tag & 7); break; @@ -11803,6 +11831,14 @@ export const flyteidl = $root.flyteidl = (() => { if (message.description != null && message.hasOwnProperty("description")) if (!$util.isString(message.description)) return "description: string expected"; + if (message.state != null && message.hasOwnProperty("state")) + switch (message.state) { + default: + return "state: enum value expected"; + case 0: + case 1: + break; + } return null; }; @@ -27216,247 +27252,6 @@ export const flyteidl = $root.flyteidl = (() => { return WorkflowClosure; })(); - /** - * WorkflowState enum. - * @name flyteidl.admin.WorkflowState - * @enum {string} - * @property {number} WORKFLOW_ACTIVE=0 WORKFLOW_ACTIVE value - * @property {number} WORKFLOW_ARCHIVED=1 WORKFLOW_ARCHIVED value - */ - admin.WorkflowState = (function() { - const valuesById = {}, values = Object.create(valuesById); - values[valuesById[0] = "WORKFLOW_ACTIVE"] = 0; - values[valuesById[1] = "WORKFLOW_ARCHIVED"] = 1; - return values; - })(); - - admin.WorkflowUpdateRequest = (function() { - - /** - * Properties of a WorkflowUpdateRequest. - * @memberof flyteidl.admin - * @interface IWorkflowUpdateRequest - * @property {flyteidl.core.IIdentifier|null} [id] WorkflowUpdateRequest id - * @property {flyteidl.admin.WorkflowState|null} [state] WorkflowUpdateRequest state - */ - - /** - * Constructs a new WorkflowUpdateRequest. - * @memberof flyteidl.admin - * @classdesc Represents a WorkflowUpdateRequest. - * @implements IWorkflowUpdateRequest - * @constructor - * @param {flyteidl.admin.IWorkflowUpdateRequest=} [properties] Properties to set - */ - function WorkflowUpdateRequest(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]]; - } - - /** - * WorkflowUpdateRequest id. - * @member {flyteidl.core.IIdentifier|null|undefined} id - * @memberof flyteidl.admin.WorkflowUpdateRequest - * @instance - */ - WorkflowUpdateRequest.prototype.id = null; - - /** - * WorkflowUpdateRequest state. - * @member {flyteidl.admin.WorkflowState} state - * @memberof flyteidl.admin.WorkflowUpdateRequest - * @instance - */ - WorkflowUpdateRequest.prototype.state = 0; - - /** - * Creates a new WorkflowUpdateRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.WorkflowUpdateRequest - * @static - * @param {flyteidl.admin.IWorkflowUpdateRequest=} [properties] Properties to set - * @returns {flyteidl.admin.WorkflowUpdateRequest} WorkflowUpdateRequest instance - */ - WorkflowUpdateRequest.create = function create(properties) { - return new WorkflowUpdateRequest(properties); - }; - - /** - * Encodes the specified WorkflowUpdateRequest message. Does not implicitly {@link flyteidl.admin.WorkflowUpdateRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.WorkflowUpdateRequest - * @static - * @param {flyteidl.admin.IWorkflowUpdateRequest} message WorkflowUpdateRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - WorkflowUpdateRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.id != null && message.hasOwnProperty("id")) - $root.flyteidl.core.Identifier.encode(message.id, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.state != null && message.hasOwnProperty("state")) - writer.uint32(/* id 2, wireType 0 =*/16).int32(message.state); - return writer; - }; - - /** - * Decodes a WorkflowUpdateRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.WorkflowUpdateRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.WorkflowUpdateRequest} WorkflowUpdateRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - WorkflowUpdateRequest.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.WorkflowUpdateRequest(); - while (reader.pos < end) { - let tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.id = $root.flyteidl.core.Identifier.decode(reader, reader.uint32()); - break; - case 2: - message.state = reader.int32(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a WorkflowUpdateRequest message. - * @function verify - * @memberof flyteidl.admin.WorkflowUpdateRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - WorkflowUpdateRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.id != null && message.hasOwnProperty("id")) { - let error = $root.flyteidl.core.Identifier.verify(message.id); - if (error) - return "id." + error; - } - if (message.state != null && message.hasOwnProperty("state")) - switch (message.state) { - default: - return "state: enum value expected"; - case 0: - case 1: - break; - } - return null; - }; - - return WorkflowUpdateRequest; - })(); - - admin.WorkflowUpdateResponse = (function() { - - /** - * Properties of a WorkflowUpdateResponse. - * @memberof flyteidl.admin - * @interface IWorkflowUpdateResponse - */ - - /** - * Constructs a new WorkflowUpdateResponse. - * @memberof flyteidl.admin - * @classdesc Represents a WorkflowUpdateResponse. - * @implements IWorkflowUpdateResponse - * @constructor - * @param {flyteidl.admin.IWorkflowUpdateResponse=} [properties] Properties to set - */ - function WorkflowUpdateResponse(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]]; - } - - /** - * Creates a new WorkflowUpdateResponse instance using the specified properties. - * @function create - * @memberof flyteidl.admin.WorkflowUpdateResponse - * @static - * @param {flyteidl.admin.IWorkflowUpdateResponse=} [properties] Properties to set - * @returns {flyteidl.admin.WorkflowUpdateResponse} WorkflowUpdateResponse instance - */ - WorkflowUpdateResponse.create = function create(properties) { - return new WorkflowUpdateResponse(properties); - }; - - /** - * Encodes the specified WorkflowUpdateResponse message. Does not implicitly {@link flyteidl.admin.WorkflowUpdateResponse.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.WorkflowUpdateResponse - * @static - * @param {flyteidl.admin.IWorkflowUpdateResponse} message WorkflowUpdateResponse message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - WorkflowUpdateResponse.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - return writer; - }; - - /** - * Decodes a WorkflowUpdateResponse message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.WorkflowUpdateResponse - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.WorkflowUpdateResponse} WorkflowUpdateResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - WorkflowUpdateResponse.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.WorkflowUpdateResponse(); - while (reader.pos < end) { - let tag = reader.uint32(); - switch (tag >>> 3) { - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a WorkflowUpdateResponse message. - * @function verify - * @memberof flyteidl.admin.WorkflowUpdateResponse - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - WorkflowUpdateResponse.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - return null; - }; - - return WorkflowUpdateResponse; - })(); - admin.WorkflowAttributes = (function() { /** @@ -28674,39 +28469,6 @@ export const flyteidl = $root.flyteidl = (() => { * @variation 2 */ - /** - * Callback as used by {@link flyteidl.service.AdminService#updateWorkflow}. - * @memberof flyteidl.service.AdminService - * @typedef UpdateWorkflowCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.WorkflowUpdateResponse} [response] WorkflowUpdateResponse - */ - - /** - * Calls UpdateWorkflow. - * @function updateWorkflow - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IWorkflowUpdateRequest} request WorkflowUpdateRequest message or plain object - * @param {flyteidl.service.AdminService.UpdateWorkflowCallback} callback Node-style callback called with the error, if any, and WorkflowUpdateResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.updateWorkflow = function updateWorkflow(request, callback) { - return this.rpcCall(updateWorkflow, $root.flyteidl.admin.WorkflowUpdateRequest, $root.flyteidl.admin.WorkflowUpdateResponse, request, callback); - }, "name", { value: "UpdateWorkflow" }); - - /** - * Calls UpdateWorkflow. - * @function updateWorkflow - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IWorkflowUpdateRequest} request WorkflowUpdateRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - /** * Callback as used by {@link flyteidl.service.AdminService#createLaunchPlan}. * @memberof flyteidl.service.AdminService diff --git a/flyteidl/gen/pb-protodoc/flyteidl/admin/common.proto.rst b/flyteidl/gen/pb-protodoc/flyteidl/admin/common.proto.rst index e0ca61456d..a108870eef 100644 --- a/flyteidl/gen/pb-protodoc/flyteidl/admin/common.proto.rst +++ b/flyteidl/gen/pb-protodoc/flyteidl/admin/common.proto.rst @@ -49,13 +49,14 @@ name flyteidl.admin.NamedEntityMetadata ---------------------------------- -`[flyteidl.admin.NamedEntityMetadata proto] `_ +`[flyteidl.admin.NamedEntityMetadata proto] `_ .. code-block:: json { - "description": "..." + "description": "...", + "state": "..." } .. _api_field_flyteidl.admin.NamedEntityMetadata.description: @@ -65,6 +66,13 @@ description +optional +.. _api_field_flyteidl.admin.NamedEntityMetadata.state: + +state + (:ref:`flyteidl.admin.NamedEntityState `) Shared state across all version of the entity + At this point in time, only workflow entities can have their state archived. + + .. _api_msg_flyteidl.admin.NamedEntity: @@ -72,7 +80,7 @@ description flyteidl.admin.NamedEntity -------------------------- -`[flyteidl.admin.NamedEntity proto] `_ +`[flyteidl.admin.NamedEntity proto] `_ Describes information common to a NamedEntity, identified by a project / domain / name / resource type combination @@ -107,7 +115,7 @@ metadata flyteidl.admin.Sort ------------------- -`[flyteidl.admin.Sort proto] `_ +`[flyteidl.admin.Sort proto] `_ Species sort ordering in a list request. @@ -138,7 +146,7 @@ direction Enum flyteidl.admin.Sort.Direction ---------------------------------- -`[flyteidl.admin.Sort.Direction proto] `_ +`[flyteidl.admin.Sort.Direction proto] `_ .. _api_enum_value_flyteidl.admin.Sort.Direction.DESCENDING: @@ -157,7 +165,7 @@ ASCENDING flyteidl.admin.NamedEntityIdentifierListRequest ----------------------------------------------- -`[flyteidl.admin.NamedEntityIdentifierListRequest proto] `_ +`[flyteidl.admin.NamedEntityIdentifierListRequest proto] `_ Represents a request structure to list identifiers. @@ -211,7 +219,7 @@ sort_by flyteidl.admin.NamedEntityListRequest ------------------------------------- -`[flyteidl.admin.NamedEntityListRequest proto] `_ +`[flyteidl.admin.NamedEntityListRequest proto] `_ Represents a request structure to list NamedEntity objects @@ -271,7 +279,7 @@ sort_by flyteidl.admin.NamedEntityIdentifierList ---------------------------------------- -`[flyteidl.admin.NamedEntityIdentifierList proto] `_ +`[flyteidl.admin.NamedEntityIdentifierList proto] `_ Represents a list of NamedEntityIdentifiers. @@ -302,7 +310,7 @@ token flyteidl.admin.NamedEntityList ------------------------------ -`[flyteidl.admin.NamedEntityList proto] `_ +`[flyteidl.admin.NamedEntityList proto] `_ Represents a list of NamedEntityIdentifiers. @@ -333,7 +341,7 @@ token flyteidl.admin.NamedEntityGetRequest ------------------------------------ -`[flyteidl.admin.NamedEntityGetRequest proto] `_ +`[flyteidl.admin.NamedEntityGetRequest proto] `_ A request to retrieve the metadata associated with a NamedEntityIdentifier @@ -361,7 +369,7 @@ id flyteidl.admin.NamedEntityUpdateRequest --------------------------------------- -`[flyteidl.admin.NamedEntityUpdateRequest proto] `_ +`[flyteidl.admin.NamedEntityUpdateRequest proto] `_ Request to set the referenced launch plan state to the configured value. @@ -398,7 +406,7 @@ metadata flyteidl.admin.NamedEntityUpdateResponse ---------------------------------------- -`[flyteidl.admin.NamedEntityUpdateResponse proto] `_ +`[flyteidl.admin.NamedEntityUpdateResponse proto] `_ Purposefully empty, may be populated in the future. @@ -414,7 +422,7 @@ Purposefully empty, may be populated in the future. flyteidl.admin.ObjectGetRequest ------------------------------- -`[flyteidl.admin.ObjectGetRequest proto] `_ +`[flyteidl.admin.ObjectGetRequest proto] `_ Represents a structure to fetch a single resource. @@ -437,7 +445,7 @@ id flyteidl.admin.ResourceListRequest ---------------------------------- -`[flyteidl.admin.ResourceListRequest proto] `_ +`[flyteidl.admin.ResourceListRequest proto] `_ Represents a request structure to retrieve a list of resources. Resources include: Task, Workflow, LaunchPlan @@ -494,7 +502,7 @@ sort_by flyteidl.admin.EmailNotification -------------------------------- -`[flyteidl.admin.EmailNotification proto] `_ +`[flyteidl.admin.EmailNotification proto] `_ .. code-block:: json @@ -516,7 +524,7 @@ recipients_email flyteidl.admin.PagerDutyNotification ------------------------------------ -`[flyteidl.admin.PagerDutyNotification proto] `_ +`[flyteidl.admin.PagerDutyNotification proto] `_ .. code-block:: json @@ -538,7 +546,7 @@ recipients_email flyteidl.admin.SlackNotification -------------------------------- -`[flyteidl.admin.SlackNotification proto] `_ +`[flyteidl.admin.SlackNotification proto] `_ .. code-block:: json @@ -560,7 +568,7 @@ recipients_email flyteidl.admin.Notification --------------------------- -`[flyteidl.admin.Notification proto] `_ +`[flyteidl.admin.Notification proto] `_ Represents a structure for notifications based on execution status. The Notification content is configured within Admin. Future iterations could @@ -613,7 +621,7 @@ slack flyteidl.admin.UrlBlob ---------------------- -`[flyteidl.admin.UrlBlob proto] `_ +`[flyteidl.admin.UrlBlob proto] `_ Represents a string url and associated metadata used throughout the platform. @@ -643,7 +651,7 @@ bytes flyteidl.admin.Labels --------------------- -`[flyteidl.admin.Labels proto] `_ +`[flyteidl.admin.Labels proto] `_ Label values to be applied to an execution resource. In the future a mode (e.g. OVERRIDE, APPEND, etc) can be defined @@ -668,7 +676,7 @@ values flyteidl.admin.Annotations -------------------------- -`[flyteidl.admin.Annotations proto] `_ +`[flyteidl.admin.Annotations proto] `_ Annotation values to be applied to an execution resource. In the future a mode (e.g. OVERRIDE, APPEND, etc) can be defined @@ -687,3 +695,24 @@ values +.. _api_enum_flyteidl.admin.NamedEntityState: + +Enum flyteidl.admin.NamedEntityState +------------------------------------ + +`[flyteidl.admin.NamedEntityState proto] `_ + +The status of the named entity is used to control its visibility in the UI. + +.. _api_enum_value_flyteidl.admin.NamedEntityState.NAMED_ENTITY_ACTIVE: + +NAMED_ENTITY_ACTIVE + *(DEFAULT)* ⁣By default, all named entities are considered active and under development. + + +.. _api_enum_value_flyteidl.admin.NamedEntityState.NAMED_ENTITY_ARCHIVED: + +NAMED_ENTITY_ARCHIVED + ⁣Archived named entities are no longer visible in the UI. + + diff --git a/flyteidl/gen/pb-protodoc/flyteidl/admin/workflow.proto.rst b/flyteidl/gen/pb-protodoc/flyteidl/admin/workflow.proto.rst index b187cef8f4..789bad838c 100644 --- a/flyteidl/gen/pb-protodoc/flyteidl/admin/workflow.proto.rst +++ b/flyteidl/gen/pb-protodoc/flyteidl/admin/workflow.proto.rst @@ -172,70 +172,3 @@ created_at - -.. _api_msg_flyteidl.admin.WorkflowUpdateRequest: - -flyteidl.admin.WorkflowUpdateRequest ------------------------------------- - -`[flyteidl.admin.WorkflowUpdateRequest proto] `_ - -Request to set the referenced workflow state to the configured value. - -.. code-block:: json - - { - "id": "{...}", - "state": "..." - } - -.. _api_field_flyteidl.admin.WorkflowUpdateRequest.id: - -id - (:ref:`flyteidl.core.Identifier `) Identifier of workflow for which to change state. - - -.. _api_field_flyteidl.admin.WorkflowUpdateRequest.state: - -state - (:ref:`flyteidl.admin.WorkflowState `) Desired state to apply to the workflow. - - - - -.. _api_msg_flyteidl.admin.WorkflowUpdateResponse: - -flyteidl.admin.WorkflowUpdateResponse -------------------------------------- - -`[flyteidl.admin.WorkflowUpdateResponse proto] `_ - -Purposefully empty, may be populated in the future. - -.. code-block:: json - - {} - - - -.. _api_enum_flyteidl.admin.WorkflowState: - -Enum flyteidl.admin.WorkflowState ---------------------------------- - -`[flyteidl.admin.WorkflowState proto] `_ - -The status of the workflow is used to control its visibility in the UI. - -.. _api_enum_value_flyteidl.admin.WorkflowState.WORKFLOW_ACTIVE: - -WORKFLOW_ACTIVE - *(DEFAULT)* ⁣By default, all workflows are considered active and under development. - - -.. _api_enum_value_flyteidl.admin.WorkflowState.WORKFLOW_ARCHIVED: - -WORKFLOW_ARCHIVED - ⁣Archived workflows are no longer visible in the UI. - - diff --git a/flyteidl/gen/pb_python/flyteidl/admin/common_pb2.py b/flyteidl/gen/pb_python/flyteidl/admin/common_pb2.py index ef44742f9c..3c40a6621a 100644 --- a/flyteidl/gen/pb_python/flyteidl/admin/common_pb2.py +++ b/flyteidl/gen/pb_python/flyteidl/admin/common_pb2.py @@ -4,6 +4,7 @@ import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) +from google.protobuf.internal import enum_type_wrapper from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflection as _reflection @@ -22,10 +23,35 @@ package='flyteidl.admin', syntax='proto3', serialized_options=_b('Z1github.com/lyft/flyteidl/gen/pb-go/flyteidl/admin'), - serialized_pb=_b('\n\x1b\x66lyteidl/admin/common.proto\x12\x0e\x66lyteidl.admin\x1a\x1d\x66lyteidl/core/execution.proto\x1a\x1e\x66lyteidl/core/identifier.proto\"F\n\x15NamedEntityIdentifier\x12\x0f\n\x07project\x18\x01 \x01(\t\x12\x0e\n\x06\x64omain\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x03 \x01(\t\"*\n\x13NamedEntityMetadata\x12\x13\n\x0b\x64\x65scription\x18\x01 \x01(\t\"\xab\x01\n\x0bNamedEntity\x12\x32\n\rresource_type\x18\x01 \x01(\x0e\x32\x1b.flyteidl.core.ResourceType\x12\x31\n\x02id\x18\x02 \x01(\x0b\x32%.flyteidl.admin.NamedEntityIdentifier\x12\x35\n\x08metadata\x18\x03 \x01(\x0b\x32#.flyteidl.admin.NamedEntityMetadata\"r\n\x04Sort\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x31\n\tdirection\x18\x02 \x01(\x0e\x32\x1e.flyteidl.admin.Sort.Direction\"*\n\tDirection\x12\x0e\n\nDESCENDING\x10\x00\x12\r\n\tASCENDING\x10\x01\"\x88\x01\n NamedEntityIdentifierListRequest\x12\x0f\n\x07project\x18\x01 \x01(\t\x12\x0e\n\x06\x64omain\x18\x02 \x01(\t\x12\r\n\x05limit\x18\x03 \x01(\r\x12\r\n\x05token\x18\x04 \x01(\t\x12%\n\x07sort_by\x18\x05 \x01(\x0b\x32\x14.flyteidl.admin.Sort\"\xb2\x01\n\x16NamedEntityListRequest\x12\x32\n\rresource_type\x18\x01 \x01(\x0e\x32\x1b.flyteidl.core.ResourceType\x12\x0f\n\x07project\x18\x02 \x01(\t\x12\x0e\n\x06\x64omain\x18\x03 \x01(\t\x12\r\n\x05limit\x18\x04 \x01(\r\x12\r\n\x05token\x18\x05 \x01(\t\x12%\n\x07sort_by\x18\x06 \x01(\x0b\x32\x14.flyteidl.admin.Sort\"c\n\x19NamedEntityIdentifierList\x12\x37\n\x08\x65ntities\x18\x01 \x03(\x0b\x32%.flyteidl.admin.NamedEntityIdentifier\x12\r\n\x05token\x18\x02 \x01(\t\"O\n\x0fNamedEntityList\x12-\n\x08\x65ntities\x18\x01 \x03(\x0b\x32\x1b.flyteidl.admin.NamedEntity\x12\r\n\x05token\x18\x02 \x01(\t\"~\n\x15NamedEntityGetRequest\x12\x32\n\rresource_type\x18\x01 \x01(\x0e\x32\x1b.flyteidl.core.ResourceType\x12\x31\n\x02id\x18\x02 \x01(\x0b\x32%.flyteidl.admin.NamedEntityIdentifier\"\xb8\x01\n\x18NamedEntityUpdateRequest\x12\x32\n\rresource_type\x18\x01 \x01(\x0e\x32\x1b.flyteidl.core.ResourceType\x12\x31\n\x02id\x18\x02 \x01(\x0b\x32%.flyteidl.admin.NamedEntityIdentifier\x12\x35\n\x08metadata\x18\x03 \x01(\x0b\x32#.flyteidl.admin.NamedEntityMetadata\"\x1b\n\x19NamedEntityUpdateResponse\"9\n\x10ObjectGetRequest\x12%\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.Identifier\"\x9e\x01\n\x13ResourceListRequest\x12\x31\n\x02id\x18\x01 \x01(\x0b\x32%.flyteidl.admin.NamedEntityIdentifier\x12\r\n\x05limit\x18\x02 \x01(\r\x12\r\n\x05token\x18\x03 \x01(\t\x12\x0f\n\x07\x66ilters\x18\x04 \x01(\t\x12%\n\x07sort_by\x18\x05 \x01(\x0b\x32\x14.flyteidl.admin.Sort\"-\n\x11\x45mailNotification\x12\x18\n\x10recipients_email\x18\x01 \x03(\t\"1\n\x15PagerDutyNotification\x12\x18\n\x10recipients_email\x18\x01 \x03(\t\"-\n\x11SlackNotification\x12\x18\n\x10recipients_email\x18\x01 \x03(\t\"\xf3\x01\n\x0cNotification\x12\x36\n\x06phases\x18\x01 \x03(\x0e\x32&.flyteidl.core.WorkflowExecution.Phase\x12\x32\n\x05\x65mail\x18\x02 \x01(\x0b\x32!.flyteidl.admin.EmailNotificationH\x00\x12;\n\npager_duty\x18\x03 \x01(\x0b\x32%.flyteidl.admin.PagerDutyNotificationH\x00\x12\x32\n\x05slack\x18\x04 \x01(\x0b\x32!.flyteidl.admin.SlackNotificationH\x00\x42\x06\n\x04type\"%\n\x07UrlBlob\x12\x0b\n\x03url\x18\x01 \x01(\t\x12\r\n\x05\x62ytes\x18\x02 \x01(\x03\"k\n\x06Labels\x12\x32\n\x06values\x18\x01 \x03(\x0b\x32\".flyteidl.admin.Labels.ValuesEntry\x1a-\n\x0bValuesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"u\n\x0b\x41nnotations\x12\x37\n\x06values\x18\x01 \x03(\x0b\x32\'.flyteidl.admin.Annotations.ValuesEntry\x1a-\n\x0bValuesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x42\x33Z1github.com/lyft/flyteidl/gen/pb-go/flyteidl/adminb\x06proto3') + serialized_pb=_b('\n\x1b\x66lyteidl/admin/common.proto\x12\x0e\x66lyteidl.admin\x1a\x1d\x66lyteidl/core/execution.proto\x1a\x1e\x66lyteidl/core/identifier.proto\"F\n\x15NamedEntityIdentifier\x12\x0f\n\x07project\x18\x01 \x01(\t\x12\x0e\n\x06\x64omain\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x03 \x01(\t\"[\n\x13NamedEntityMetadata\x12\x13\n\x0b\x64\x65scription\x18\x01 \x01(\t\x12/\n\x05state\x18\x02 \x01(\x0e\x32 .flyteidl.admin.NamedEntityState\"\xab\x01\n\x0bNamedEntity\x12\x32\n\rresource_type\x18\x01 \x01(\x0e\x32\x1b.flyteidl.core.ResourceType\x12\x31\n\x02id\x18\x02 \x01(\x0b\x32%.flyteidl.admin.NamedEntityIdentifier\x12\x35\n\x08metadata\x18\x03 \x01(\x0b\x32#.flyteidl.admin.NamedEntityMetadata\"r\n\x04Sort\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x31\n\tdirection\x18\x02 \x01(\x0e\x32\x1e.flyteidl.admin.Sort.Direction\"*\n\tDirection\x12\x0e\n\nDESCENDING\x10\x00\x12\r\n\tASCENDING\x10\x01\"\x88\x01\n NamedEntityIdentifierListRequest\x12\x0f\n\x07project\x18\x01 \x01(\t\x12\x0e\n\x06\x64omain\x18\x02 \x01(\t\x12\r\n\x05limit\x18\x03 \x01(\r\x12\r\n\x05token\x18\x04 \x01(\t\x12%\n\x07sort_by\x18\x05 \x01(\x0b\x32\x14.flyteidl.admin.Sort\"\xb2\x01\n\x16NamedEntityListRequest\x12\x32\n\rresource_type\x18\x01 \x01(\x0e\x32\x1b.flyteidl.core.ResourceType\x12\x0f\n\x07project\x18\x02 \x01(\t\x12\x0e\n\x06\x64omain\x18\x03 \x01(\t\x12\r\n\x05limit\x18\x04 \x01(\r\x12\r\n\x05token\x18\x05 \x01(\t\x12%\n\x07sort_by\x18\x06 \x01(\x0b\x32\x14.flyteidl.admin.Sort\"c\n\x19NamedEntityIdentifierList\x12\x37\n\x08\x65ntities\x18\x01 \x03(\x0b\x32%.flyteidl.admin.NamedEntityIdentifier\x12\r\n\x05token\x18\x02 \x01(\t\"O\n\x0fNamedEntityList\x12-\n\x08\x65ntities\x18\x01 \x03(\x0b\x32\x1b.flyteidl.admin.NamedEntity\x12\r\n\x05token\x18\x02 \x01(\t\"~\n\x15NamedEntityGetRequest\x12\x32\n\rresource_type\x18\x01 \x01(\x0e\x32\x1b.flyteidl.core.ResourceType\x12\x31\n\x02id\x18\x02 \x01(\x0b\x32%.flyteidl.admin.NamedEntityIdentifier\"\xb8\x01\n\x18NamedEntityUpdateRequest\x12\x32\n\rresource_type\x18\x01 \x01(\x0e\x32\x1b.flyteidl.core.ResourceType\x12\x31\n\x02id\x18\x02 \x01(\x0b\x32%.flyteidl.admin.NamedEntityIdentifier\x12\x35\n\x08metadata\x18\x03 \x01(\x0b\x32#.flyteidl.admin.NamedEntityMetadata\"\x1b\n\x19NamedEntityUpdateResponse\"9\n\x10ObjectGetRequest\x12%\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.Identifier\"\x9e\x01\n\x13ResourceListRequest\x12\x31\n\x02id\x18\x01 \x01(\x0b\x32%.flyteidl.admin.NamedEntityIdentifier\x12\r\n\x05limit\x18\x02 \x01(\r\x12\r\n\x05token\x18\x03 \x01(\t\x12\x0f\n\x07\x66ilters\x18\x04 \x01(\t\x12%\n\x07sort_by\x18\x05 \x01(\x0b\x32\x14.flyteidl.admin.Sort\"-\n\x11\x45mailNotification\x12\x18\n\x10recipients_email\x18\x01 \x03(\t\"1\n\x15PagerDutyNotification\x12\x18\n\x10recipients_email\x18\x01 \x03(\t\"-\n\x11SlackNotification\x12\x18\n\x10recipients_email\x18\x01 \x03(\t\"\xf3\x01\n\x0cNotification\x12\x36\n\x06phases\x18\x01 \x03(\x0e\x32&.flyteidl.core.WorkflowExecution.Phase\x12\x32\n\x05\x65mail\x18\x02 \x01(\x0b\x32!.flyteidl.admin.EmailNotificationH\x00\x12;\n\npager_duty\x18\x03 \x01(\x0b\x32%.flyteidl.admin.PagerDutyNotificationH\x00\x12\x32\n\x05slack\x18\x04 \x01(\x0b\x32!.flyteidl.admin.SlackNotificationH\x00\x42\x06\n\x04type\"%\n\x07UrlBlob\x12\x0b\n\x03url\x18\x01 \x01(\t\x12\r\n\x05\x62ytes\x18\x02 \x01(\x03\"k\n\x06Labels\x12\x32\n\x06values\x18\x01 \x03(\x0b\x32\".flyteidl.admin.Labels.ValuesEntry\x1a-\n\x0bValuesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"u\n\x0b\x41nnotations\x12\x37\n\x06values\x18\x01 \x03(\x0b\x32\'.flyteidl.admin.Annotations.ValuesEntry\x1a-\n\x0bValuesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01*F\n\x10NamedEntityState\x12\x17\n\x13NAMED_ENTITY_ACTIVE\x10\x00\x12\x19\n\x15NAMED_ENTITY_ARCHIVED\x10\x01\x42\x33Z1github.com/lyft/flyteidl/gen/pb-go/flyteidl/adminb\x06proto3') , dependencies=[flyteidl_dot_core_dot_execution__pb2.DESCRIPTOR,flyteidl_dot_core_dot_identifier__pb2.DESCRIPTOR,]) +_NAMEDENTITYSTATE = _descriptor.EnumDescriptor( + name='NamedEntityState', + full_name='flyteidl.admin.NamedEntityState', + filename=None, + file=DESCRIPTOR, + values=[ + _descriptor.EnumValueDescriptor( + name='NAMED_ENTITY_ACTIVE', index=0, number=0, + serialized_options=None, + type=None), + _descriptor.EnumValueDescriptor( + name='NAMED_ENTITY_ARCHIVED', index=1, number=1, + serialized_options=None, + type=None), + ], + containing_type=None, + serialized_options=None, + serialized_start=2289, + serialized_end=2359, +) +_sym_db.RegisterEnumDescriptor(_NAMEDENTITYSTATE) + +NamedEntityState = enum_type_wrapper.EnumTypeWrapper(_NAMEDENTITYSTATE) +NAMED_ENTITY_ACTIVE = 0 +NAMED_ENTITY_ARCHIVED = 1 _SORT_DIRECTION = _descriptor.EnumDescriptor( @@ -45,8 +71,8 @@ ], containing_type=None, serialized_options=None, - serialized_start=472, - serialized_end=514, + serialized_start=521, + serialized_end=563, ) _sym_db.RegisterEnumDescriptor(_SORT_DIRECTION) @@ -110,6 +136,13 @@ message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='state', full_name='flyteidl.admin.NamedEntityMetadata.state', index=1, + number=2, type=14, cpp_type=8, 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=[ ], @@ -123,7 +156,7 @@ oneofs=[ ], serialized_start=182, - serialized_end=224, + serialized_end=273, ) @@ -167,8 +200,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=227, - serialized_end=398, + serialized_start=276, + serialized_end=447, ) @@ -206,8 +239,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=400, - serialized_end=514, + serialized_start=449, + serialized_end=563, ) @@ -265,8 +298,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=517, - serialized_end=653, + serialized_start=566, + serialized_end=702, ) @@ -331,8 +364,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=656, - serialized_end=834, + serialized_start=705, + serialized_end=883, ) @@ -369,8 +402,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=836, - serialized_end=935, + serialized_start=885, + serialized_end=984, ) @@ -407,8 +440,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=937, - serialized_end=1016, + serialized_start=986, + serialized_end=1065, ) @@ -445,8 +478,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=1018, - serialized_end=1144, + serialized_start=1067, + serialized_end=1193, ) @@ -490,8 +523,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=1147, - serialized_end=1331, + serialized_start=1196, + serialized_end=1380, ) @@ -514,8 +547,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=1333, - serialized_end=1360, + serialized_start=1382, + serialized_end=1409, ) @@ -545,8 +578,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=1362, - serialized_end=1419, + serialized_start=1411, + serialized_end=1468, ) @@ -604,8 +637,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=1422, - serialized_end=1580, + serialized_start=1471, + serialized_end=1629, ) @@ -635,8 +668,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=1582, - serialized_end=1627, + serialized_start=1631, + serialized_end=1676, ) @@ -666,8 +699,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=1629, - serialized_end=1678, + serialized_start=1678, + serialized_end=1727, ) @@ -697,8 +730,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=1680, - serialized_end=1725, + serialized_start=1729, + serialized_end=1774, ) @@ -752,8 +785,8 @@ name='type', full_name='flyteidl.admin.Notification.type', index=0, containing_type=None, fields=[]), ], - serialized_start=1728, - serialized_end=1971, + serialized_start=1777, + serialized_end=2020, ) @@ -790,8 +823,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=1973, - serialized_end=2010, + serialized_start=2022, + serialized_end=2059, ) @@ -828,8 +861,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=2074, - serialized_end=2119, + serialized_start=2123, + serialized_end=2168, ) _LABELS = _descriptor.Descriptor( @@ -858,8 +891,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=2012, - serialized_end=2119, + serialized_start=2061, + serialized_end=2168, ) @@ -896,8 +929,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=2074, - serialized_end=2119, + serialized_start=2123, + serialized_end=2168, ) _ANNOTATIONS = _descriptor.Descriptor( @@ -926,10 +959,11 @@ extension_ranges=[], oneofs=[ ], - serialized_start=2121, - serialized_end=2238, + serialized_start=2170, + serialized_end=2287, ) +_NAMEDENTITYMETADATA.fields_by_name['state'].enum_type = _NAMEDENTITYSTATE _NAMEDENTITY.fields_by_name['resource_type'].enum_type = flyteidl_dot_core_dot_identifier__pb2._RESOURCETYPE _NAMEDENTITY.fields_by_name['id'].message_type = _NAMEDENTITYIDENTIFIER _NAMEDENTITY.fields_by_name['metadata'].message_type = _NAMEDENTITYMETADATA @@ -985,6 +1019,7 @@ DESCRIPTOR.message_types_by_name['UrlBlob'] = _URLBLOB DESCRIPTOR.message_types_by_name['Labels'] = _LABELS DESCRIPTOR.message_types_by_name['Annotations'] = _ANNOTATIONS +DESCRIPTOR.enum_types_by_name['NamedEntityState'] = _NAMEDENTITYSTATE _sym_db.RegisterFileDescriptor(DESCRIPTOR) NamedEntityIdentifier = _reflection.GeneratedProtocolMessageType('NamedEntityIdentifier', (_message.Message,), dict( diff --git a/flyteidl/gen/pb_python/flyteidl/admin/workflow_pb2.py b/flyteidl/gen/pb_python/flyteidl/admin/workflow_pb2.py index a70acad641..074f83d09e 100644 --- a/flyteidl/gen/pb_python/flyteidl/admin/workflow_pb2.py +++ b/flyteidl/gen/pb_python/flyteidl/admin/workflow_pb2.py @@ -4,7 +4,6 @@ import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) -from google.protobuf.internal import enum_type_wrapper from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflection as _reflection @@ -26,35 +25,10 @@ package='flyteidl.admin', syntax='proto3', serialized_options=_b('Z1github.com/lyft/flyteidl/gen/pb-go/flyteidl/admin'), - serialized_pb=_b('\n\x1d\x66lyteidl/admin/workflow.proto\x12\x0e\x66lyteidl.admin\x1a\x1c\x66lyteidl/core/compiler.proto\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x1c\x66lyteidl/core/workflow.proto\x1a\x1b\x66lyteidl/admin/common.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"j\n\x15WorkflowCreateRequest\x12%\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.Identifier\x12*\n\x04spec\x18\x02 \x01(\x0b\x32\x1c.flyteidl.admin.WorkflowSpec\"\x18\n\x16WorkflowCreateResponse\"c\n\x08Workflow\x12%\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.Identifier\x12\x30\n\x07\x63losure\x18\x02 \x01(\x0b\x32\x1f.flyteidl.admin.WorkflowClosure\"J\n\x0cWorkflowList\x12+\n\tworkflows\x18\x01 \x03(\x0b\x32\x18.flyteidl.admin.Workflow\x12\r\n\x05token\x18\x02 \x01(\t\"y\n\x0cWorkflowSpec\x12\x31\n\x08template\x18\x01 \x01(\x0b\x32\x1f.flyteidl.core.WorkflowTemplate\x12\x36\n\rsub_workflows\x18\x02 \x03(\x0b\x32\x1f.flyteidl.core.WorkflowTemplate\"\x84\x01\n\x0fWorkflowClosure\x12\x41\n\x11\x63ompiled_workflow\x18\x01 \x01(\x0b\x32&.flyteidl.core.CompiledWorkflowClosure\x12.\n\ncreated_at\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"l\n\x15WorkflowUpdateRequest\x12%\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.Identifier\x12,\n\x05state\x18\x02 \x01(\x0e\x32\x1d.flyteidl.admin.WorkflowState\"\x18\n\x16WorkflowUpdateResponse*;\n\rWorkflowState\x12\x13\n\x0fWORKFLOW_ACTIVE\x10\x00\x12\x15\n\x11WORKFLOW_ARCHIVED\x10\x01\x42\x33Z1github.com/lyft/flyteidl/gen/pb-go/flyteidl/adminb\x06proto3') + serialized_pb=_b('\n\x1d\x66lyteidl/admin/workflow.proto\x12\x0e\x66lyteidl.admin\x1a\x1c\x66lyteidl/core/compiler.proto\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x1c\x66lyteidl/core/workflow.proto\x1a\x1b\x66lyteidl/admin/common.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"j\n\x15WorkflowCreateRequest\x12%\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.Identifier\x12*\n\x04spec\x18\x02 \x01(\x0b\x32\x1c.flyteidl.admin.WorkflowSpec\"\x18\n\x16WorkflowCreateResponse\"c\n\x08Workflow\x12%\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.Identifier\x12\x30\n\x07\x63losure\x18\x02 \x01(\x0b\x32\x1f.flyteidl.admin.WorkflowClosure\"J\n\x0cWorkflowList\x12+\n\tworkflows\x18\x01 \x03(\x0b\x32\x18.flyteidl.admin.Workflow\x12\r\n\x05token\x18\x02 \x01(\t\"y\n\x0cWorkflowSpec\x12\x31\n\x08template\x18\x01 \x01(\x0b\x32\x1f.flyteidl.core.WorkflowTemplate\x12\x36\n\rsub_workflows\x18\x02 \x03(\x0b\x32\x1f.flyteidl.core.WorkflowTemplate\"\x84\x01\n\x0fWorkflowClosure\x12\x41\n\x11\x63ompiled_workflow\x18\x01 \x01(\x0b\x32&.flyteidl.core.CompiledWorkflowClosure\x12.\n\ncreated_at\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB3Z1github.com/lyft/flyteidl/gen/pb-go/flyteidl/adminb\x06proto3') , dependencies=[flyteidl_dot_core_dot_compiler__pb2.DESCRIPTOR,flyteidl_dot_core_dot_identifier__pb2.DESCRIPTOR,flyteidl_dot_core_dot_workflow__pb2.DESCRIPTOR,flyteidl_dot_admin_dot_common__pb2.DESCRIPTOR,google_dot_protobuf_dot_timestamp__pb2.DESCRIPTOR,]) -_WORKFLOWSTATE = _descriptor.EnumDescriptor( - name='WorkflowState', - full_name='flyteidl.admin.WorkflowState', - filename=None, - file=DESCRIPTOR, - values=[ - _descriptor.EnumValueDescriptor( - name='WORKFLOW_ACTIVE', index=0, number=0, - serialized_options=None, - type=None), - _descriptor.EnumValueDescriptor( - name='WORKFLOW_ARCHIVED', index=1, number=1, - serialized_options=None, - type=None), - ], - containing_type=None, - serialized_options=None, - serialized_start=908, - serialized_end=967, -) -_sym_db.RegisterEnumDescriptor(_WORKFLOWSTATE) - -WorkflowState = enum_type_wrapper.EnumTypeWrapper(_WORKFLOWSTATE) -WORKFLOW_ACTIVE = 0 -WORKFLOW_ARCHIVED = 1 @@ -271,68 +245,6 @@ serialized_end=770, ) - -_WORKFLOWUPDATEREQUEST = _descriptor.Descriptor( - name='WorkflowUpdateRequest', - full_name='flyteidl.admin.WorkflowUpdateRequest', - filename=None, - file=DESCRIPTOR, - containing_type=None, - fields=[ - _descriptor.FieldDescriptor( - name='id', full_name='flyteidl.admin.WorkflowUpdateRequest.id', index=0, - number=1, 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), - _descriptor.FieldDescriptor( - name='state', full_name='flyteidl.admin.WorkflowUpdateRequest.state', index=1, - number=2, type=14, cpp_type=8, 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=772, - serialized_end=880, -) - - -_WORKFLOWUPDATERESPONSE = _descriptor.Descriptor( - name='WorkflowUpdateResponse', - full_name='flyteidl.admin.WorkflowUpdateResponse', - filename=None, - file=DESCRIPTOR, - containing_type=None, - fields=[ - ], - extensions=[ - ], - nested_types=[], - enum_types=[ - ], - serialized_options=None, - is_extendable=False, - syntax='proto3', - extension_ranges=[], - oneofs=[ - ], - serialized_start=882, - serialized_end=906, -) - _WORKFLOWCREATEREQUEST.fields_by_name['id'].message_type = flyteidl_dot_core_dot_identifier__pb2._IDENTIFIER _WORKFLOWCREATEREQUEST.fields_by_name['spec'].message_type = _WORKFLOWSPEC _WORKFLOW.fields_by_name['id'].message_type = flyteidl_dot_core_dot_identifier__pb2._IDENTIFIER @@ -342,17 +254,12 @@ _WORKFLOWSPEC.fields_by_name['sub_workflows'].message_type = flyteidl_dot_core_dot_workflow__pb2._WORKFLOWTEMPLATE _WORKFLOWCLOSURE.fields_by_name['compiled_workflow'].message_type = flyteidl_dot_core_dot_compiler__pb2._COMPILEDWORKFLOWCLOSURE _WORKFLOWCLOSURE.fields_by_name['created_at'].message_type = google_dot_protobuf_dot_timestamp__pb2._TIMESTAMP -_WORKFLOWUPDATEREQUEST.fields_by_name['id'].message_type = flyteidl_dot_core_dot_identifier__pb2._IDENTIFIER -_WORKFLOWUPDATEREQUEST.fields_by_name['state'].enum_type = _WORKFLOWSTATE DESCRIPTOR.message_types_by_name['WorkflowCreateRequest'] = _WORKFLOWCREATEREQUEST DESCRIPTOR.message_types_by_name['WorkflowCreateResponse'] = _WORKFLOWCREATERESPONSE DESCRIPTOR.message_types_by_name['Workflow'] = _WORKFLOW DESCRIPTOR.message_types_by_name['WorkflowList'] = _WORKFLOWLIST DESCRIPTOR.message_types_by_name['WorkflowSpec'] = _WORKFLOWSPEC DESCRIPTOR.message_types_by_name['WorkflowClosure'] = _WORKFLOWCLOSURE -DESCRIPTOR.message_types_by_name['WorkflowUpdateRequest'] = _WORKFLOWUPDATEREQUEST -DESCRIPTOR.message_types_by_name['WorkflowUpdateResponse'] = _WORKFLOWUPDATERESPONSE -DESCRIPTOR.enum_types_by_name['WorkflowState'] = _WORKFLOWSTATE _sym_db.RegisterFileDescriptor(DESCRIPTOR) WorkflowCreateRequest = _reflection.GeneratedProtocolMessageType('WorkflowCreateRequest', (_message.Message,), dict( @@ -397,20 +304,6 @@ )) _sym_db.RegisterMessage(WorkflowClosure) -WorkflowUpdateRequest = _reflection.GeneratedProtocolMessageType('WorkflowUpdateRequest', (_message.Message,), dict( - DESCRIPTOR = _WORKFLOWUPDATEREQUEST, - __module__ = 'flyteidl.admin.workflow_pb2' - # @@protoc_insertion_point(class_scope:flyteidl.admin.WorkflowUpdateRequest) - )) -_sym_db.RegisterMessage(WorkflowUpdateRequest) - -WorkflowUpdateResponse = _reflection.GeneratedProtocolMessageType('WorkflowUpdateResponse', (_message.Message,), dict( - DESCRIPTOR = _WORKFLOWUPDATERESPONSE, - __module__ = 'flyteidl.admin.workflow_pb2' - # @@protoc_insertion_point(class_scope:flyteidl.admin.WorkflowUpdateResponse) - )) -_sym_db.RegisterMessage(WorkflowUpdateResponse) - DESCRIPTOR._options = None # @@protoc_insertion_point(module_scope) diff --git a/flyteidl/gen/pb_python/flyteidl/service/admin_pb2.py b/flyteidl/gen/pb_python/flyteidl/service/admin_pb2.py index 0614058a69..fe083a2f96 100644 --- a/flyteidl/gen/pb_python/flyteidl/service/admin_pb2.py +++ b/flyteidl/gen/pb_python/flyteidl/service/admin_pb2.py @@ -34,7 +34,7 @@ package='flyteidl.service', syntax='proto3', serialized_options=_b('Z3github.com/lyft/flyteidl/gen/pb-go/flyteidl/service'), - serialized_pb=_b('\n\x1c\x66lyteidl/service/admin.proto\x12\x10\x66lyteidl.service\x1a\x1cgoogle/api/annotations.proto\x1a\x1c\x66lyteidl/admin/project.proto\x1a.flyteidl/admin/project_domain_attributes.proto\x1a\x19\x66lyteidl/admin/task.proto\x1a\x1d\x66lyteidl/admin/workflow.proto\x1a(flyteidl/admin/workflow_attributes.proto\x1a flyteidl/admin/launch_plan.proto\x1a\x1a\x66lyteidl/admin/event.proto\x1a\x1e\x66lyteidl/admin/execution.proto\x1a\'flyteidl/admin/matchable_resource.proto\x1a#flyteidl/admin/node_execution.proto\x1a#flyteidl/admin/task_execution.proto\x1a\x1b\x66lyteidl/admin/common.proto\x1a,protoc-gen-swagger/options/annotations.proto2\xc3`\n\x0c\x41\x64minService\x12\xc5\x02\n\nCreateTask\x12!.flyteidl.admin.TaskCreateRequest\x1a\".flyteidl.admin.TaskCreateResponse\"\xef\x01\x82\xd3\xe4\x93\x02\x12\"\r/api/v1/tasks:\x01*\x92\x41\xd3\x01\x1a&Create and register a task definition.JB\n\x03\x34\x30\x30\x12;\n9Returned for bad request that may have failed validation.Je\n\x03\x34\x30\x39\x12^\n\\Returned for a request that references an identical entity that has already been registered.\x12\xb2\x01\n\x07GetTask\x12 .flyteidl.admin.ObjectGetRequest\x1a\x14.flyteidl.admin.Task\"o\x82\xd3\xe4\x93\x02?\x12=/api/v1/tasks/{id.project}/{id.domain}/{id.name}/{id.version}\x92\x41\'\x1a%Retrieve an existing task definition.\x12\xde\x01\n\x0bListTaskIds\x12\x30.flyteidl.admin.NamedEntityIdentifierListRequest\x1a).flyteidl.admin.NamedEntityIdentifierList\"r\x82\xd3\xe4\x93\x02%\x12#/api/v1/task_ids/{project}/{domain}\x92\x41\x44\x1a\x42\x46\x65tch existing task definition identifiers matching input filters.\x12\xeb\x01\n\tListTasks\x12#.flyteidl.admin.ResourceListRequest\x1a\x18.flyteidl.admin.TaskList\"\x9e\x01\x82\xd3\xe4\x93\x02\\\x12\x30/api/v1/tasks/{id.project}/{id.domain}/{id.name}Z(\x12&/api/v1/tasks/{id.project}/{id.domain}\x92\x41\x39\x1a\x37\x46\x65tch existing task definitions matching input filters.\x12\xd9\x02\n\x0e\x43reateWorkflow\x12%.flyteidl.admin.WorkflowCreateRequest\x1a&.flyteidl.admin.WorkflowCreateResponse\"\xf7\x01\x82\xd3\xe4\x93\x02\x16\"\x11/api/v1/workflows:\x01*\x92\x41\xd7\x01\x1a*Create and register a workflow definition.JB\n\x03\x34\x30\x30\x12;\n9Returned for bad request that may have failed validation.Je\n\x03\x34\x30\x39\x12^\n\\Returned for a request that references an identical entity that has already been registered.\x12\xc2\x01\n\x0bGetWorkflow\x12 .flyteidl.admin.ObjectGetRequest\x1a\x18.flyteidl.admin.Workflow\"w\x82\xd3\xe4\x93\x02\x43\x12\x41/api/v1/workflows/{id.project}/{id.domain}/{id.name}/{id.version}\x92\x41+\x1a)Retrieve an existing workflow definition.\x12\xed\x01\n\x0fListWorkflowIds\x12\x30.flyteidl.admin.NamedEntityIdentifierListRequest\x1a).flyteidl.admin.NamedEntityIdentifierList\"}\x82\xd3\xe4\x93\x02)\x12\'/api/v1/workflow_ids/{project}/{domain}\x92\x41K\x1aIFetch an existing workflow definition identifiers matching input filters.\x12\xff\x01\n\rListWorkflows\x12#.flyteidl.admin.ResourceListRequest\x1a\x1c.flyteidl.admin.WorkflowList\"\xaa\x01\x82\xd3\xe4\x93\x02\x64\x12\x34/api/v1/workflows/{id.project}/{id.domain}/{id.name}Z,\x12*/api/v1/workflows/{id.project}/{id.domain}\x92\x41=\x1a;Fetch existing workflow definitions matching input filters.\x12\xe7\x01\n\x0eUpdateWorkflow\x12%.flyteidl.admin.WorkflowUpdateRequest\x1a&.flyteidl.admin.WorkflowUpdateResponse\"\x85\x01\x82\xd3\xe4\x93\x02\x46\x1a\x41/api/v1/workflows/{id.project}/{id.domain}/{id.name}/{id.version}:\x01*\x92\x41\x36\x1a\x34Update the state of an existing workflow definition.\x12\xe5\x02\n\x10\x43reateLaunchPlan\x12\'.flyteidl.admin.LaunchPlanCreateRequest\x1a(.flyteidl.admin.LaunchPlanCreateResponse\"\xfd\x01\x82\xd3\xe4\x93\x02\x19\"\x14/api/v1/launch_plans:\x01*\x92\x41\xda\x01\x1a-Create and register a launch plan definition.JB\n\x03\x34\x30\x30\x12;\n9Returned for bad request that may have failed validation.Je\n\x03\x34\x30\x39\x12^\n\\Returned for a request that references an identical entity that has already been registered.\x12\xcc\x01\n\rGetLaunchPlan\x12 .flyteidl.admin.ObjectGetRequest\x1a\x1a.flyteidl.admin.LaunchPlan\"}\x82\xd3\xe4\x93\x02\x46\x12\x44/api/v1/launch_plans/{id.project}/{id.domain}/{id.name}/{id.version}\x92\x41.\x1a,Retrieve an existing launch plan definition.\x12\xf3\x01\n\x13GetActiveLaunchPlan\x12\'.flyteidl.admin.ActiveLaunchPlanRequest\x1a\x1a.flyteidl.admin.LaunchPlan\"\x96\x01\x82\xd3\xe4\x93\x02@\x12>/api/v1/active_launch_plans/{id.project}/{id.domain}/{id.name}\x92\x41M\x1aKRetrieve the active launch plan version specified by input request filters.\x12\xeb\x01\n\x15ListActiveLaunchPlans\x12+.flyteidl.admin.ActiveLaunchPlanListRequest\x1a\x1e.flyteidl.admin.LaunchPlanList\"\x84\x01\x82\xd3\xe4\x93\x02\x30\x12./api/v1/active_launch_plans/{project}/{domain}\x92\x41K\x1aIFetch the active launch plan versions specified by input request filters.\x12\xf3\x01\n\x11ListLaunchPlanIds\x12\x30.flyteidl.admin.NamedEntityIdentifierListRequest\x1a).flyteidl.admin.NamedEntityIdentifierList\"\x80\x01\x82\xd3\xe4\x93\x02,\x12*/api/v1/launch_plan_ids/{project}/{domain}\x92\x41K\x1aIFetch existing launch plan definition identifiers matching input filters.\x12\x8c\x02\n\x0fListLaunchPlans\x12#.flyteidl.admin.ResourceListRequest\x1a\x1e.flyteidl.admin.LaunchPlanList\"\xb3\x01\x82\xd3\xe4\x93\x02j\x12\x37/api/v1/launch_plans/{id.project}/{id.domain}/{id.name}Z/\x12-/api/v1/launch_plans/{id.project}/{id.domain}\x92\x41@\x1a>Fetch existing launch plan definitions matching input filters.\x12\xc0\x06\n\x10UpdateLaunchPlan\x12\'.flyteidl.admin.LaunchPlanUpdateRequest\x1a(.flyteidl.admin.LaunchPlanUpdateResponse\"\xd8\x05\x82\xd3\xe4\x93\x02I\x1a\x44/api/v1/launch_plans/{id.project}/{id.domain}/{id.name}/{id.version}:\x01*\x92\x41\x85\x05\x1a\x82\x05Update the status of an existing launch plan definition. At most one launch plan version for a given {project, domain, name} can be active at a time. If this call sets a launch plan to active and existing version is already active, the result of this call will be that the formerly active launch plan will be made inactive and specified launch plan in this request will be made active. In the event that the formerly active launch plan had a schedule associated it with it, this schedule will be disabled. If the reference launch plan in this request is being set to active and has a schedule associated with it, the schedule will be enabled.\x12\xa2\x01\n\x0f\x43reateExecution\x12&.flyteidl.admin.ExecutionCreateRequest\x1a\'.flyteidl.admin.ExecutionCreateResponse\">\x82\xd3\xe4\x93\x02\x17\"\x12/api/v1/executions:\x01*\x92\x41\x1e\x1a\x1c\x43reate a workflow execution.\x12\xb1\x01\n\x11RelaunchExecution\x12(.flyteidl.admin.ExecutionRelaunchRequest\x1a\'.flyteidl.admin.ExecutionCreateResponse\"I\x82\xd3\xe4\x93\x02 \"\x1b/api/v1/executions/relaunch:\x01*\x92\x41 \x1a\x1eRelaunch a workflow execution.\x12\xc2\x01\n\x0cGetExecution\x12+.flyteidl.admin.WorkflowExecutionGetRequest\x1a\x19.flyteidl.admin.Execution\"j\x82\xd3\xe4\x93\x02\x37\x12\x35/api/v1/executions/{id.project}/{id.domain}/{id.name}\x92\x41*\x1a(Retrieve an existing workflow execution.\x12\x82\x02\n\x10GetExecutionData\x12/.flyteidl.admin.WorkflowExecutionGetDataRequest\x1a\x30.flyteidl.admin.WorkflowExecutionGetDataResponse\"\x8a\x01\x82\xd3\xe4\x93\x02<\x12:/api/v1/data/executions/{id.project}/{id.domain}/{id.name}\x92\x41\x45\x1a\x43Retrieve input and output data from an existing workflow execution.\x12\xc8\x01\n\x0eListExecutions\x12#.flyteidl.admin.ResourceListRequest\x1a\x1d.flyteidl.admin.ExecutionList\"r\x82\xd3\xe4\x93\x02-\x12+/api/v1/executions/{id.project}/{id.domain}\x92\x41<\x1a:Fetch existing workflow executions matching input filters.\x12\xf4\x01\n\x12TerminateExecution\x12).flyteidl.admin.ExecutionTerminateRequest\x1a*.flyteidl.admin.ExecutionTerminateResponse\"\x86\x01\x82\xd3\xe4\x93\x02:*5/api/v1/executions/{id.project}/{id.domain}/{id.name}:\x01*\x92\x41\x43\x1a\x41Terminate the active workflow execution specified in the request.\x12\xfc\x01\n\x10GetNodeExecution\x12\'.flyteidl.admin.NodeExecutionGetRequest\x1a\x1d.flyteidl.admin.NodeExecution\"\x9f\x01\x82\xd3\xe4\x93\x02p\x12n/api/v1/node_executions/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}\x92\x41&\x1a$Retrieve an existing node execution.\x12\x9a\x02\n\x12ListNodeExecutions\x12(.flyteidl.admin.NodeExecutionListRequest\x1a!.flyteidl.admin.NodeExecutionList\"\xb6\x01\x82\xd3\xe4\x93\x02u\x12s/api/v1/node_executions/{workflow_execution_id.project}/{workflow_execution_id.domain}/{workflow_execution_id.name}\x92\x41\x38\x1a\x36\x46\x65tch existing node executions matching input filters.\x12\xef\x04\n\x19ListNodeExecutionsForTask\x12/.flyteidl.admin.NodeExecutionForTaskListRequest\x1a!.flyteidl.admin.NodeExecutionList\"\xfd\x03\x82\xd3\xe4\x93\x02\xac\x03\x12\xa9\x03/api/v1/children/task_executions/{task_execution_id.node_execution_id.execution_id.project}/{task_execution_id.node_execution_id.execution_id.domain}/{task_execution_id.node_execution_id.execution_id.name}/{task_execution_id.node_execution_id.node_id}/{task_execution_id.task_id.project}/{task_execution_id.task_id.domain}/{task_execution_id.task_id.name}/{task_execution_id.task_id.version}/{task_execution_id.retry_attempt}\x92\x41G\x1a\x45\x46\x65tch child node executions launched by the specified task execution.\x12\xb3\x02\n\x14GetNodeExecutionData\x12+.flyteidl.admin.NodeExecutionGetDataRequest\x1a,.flyteidl.admin.NodeExecutionGetDataResponse\"\xbf\x01\x82\xd3\xe4\x93\x02u\x12s/api/v1/data/node_executions/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}\x92\x41\x41\x1a?Retrieve input and output data from an existing node execution.\x12\x97\x01\n\x0fRegisterProject\x12&.flyteidl.admin.ProjectRegisterRequest\x1a\'.flyteidl.admin.ProjectRegisterResponse\"3\x82\xd3\xe4\x93\x02\x15\"\x10/api/v1/projects:\x01*\x92\x41\x15\x1a\x13Register a project.\x12\x85\x01\n\x0cListProjects\x12\".flyteidl.admin.ProjectListRequest\x1a\x18.flyteidl.admin.Projects\"7\x82\xd3\xe4\x93\x02\x12\x12\x10/api/v1/projects\x92\x41\x1c\x1a\x1a\x46\x65tch registered projects.\x12\xdd\x01\n\x13\x43reateWorkflowEvent\x12-.flyteidl.admin.WorkflowExecutionEventRequest\x1a..flyteidl.admin.WorkflowExecutionEventResponse\"g\x82\xd3\xe4\x93\x02\x1d\"\x18/api/v1/events/workflows:\x01*\x92\x41\x41\x1a?Create a workflow execution event recording a phase transition.\x12\xc9\x01\n\x0f\x43reateNodeEvent\x12).flyteidl.admin.NodeExecutionEventRequest\x1a*.flyteidl.admin.NodeExecutionEventResponse\"_\x82\xd3\xe4\x93\x02\x19\"\x14/api/v1/events/nodes:\x01*\x92\x41=\x1a;Create a node execution event recording a phase transition.\x12\xc9\x01\n\x0f\x43reateTaskEvent\x12).flyteidl.admin.TaskExecutionEventRequest\x1a*.flyteidl.admin.TaskExecutionEventResponse\"_\x82\xd3\xe4\x93\x02\x19\"\x14/api/v1/events/tasks:\x01*\x92\x41=\x1a;Create a task execution event recording a phase transition.\x12\xa9\x03\n\x10GetTaskExecution\x12\'.flyteidl.admin.TaskExecutionGetRequest\x1a\x1d.flyteidl.admin.TaskExecution\"\xcc\x02\x82\xd3\xe4\x93\x02\x9c\x02\x12\x99\x02/api/v1/task_executions/{id.node_execution_id.execution_id.project}/{id.node_execution_id.execution_id.domain}/{id.node_execution_id.execution_id.name}/{id.node_execution_id.node_id}/{id.task_id.project}/{id.task_id.domain}/{id.task_id.name}/{id.task_id.version}/{id.retry_attempt}\x92\x41&\x1a$Retrieve an existing task execution.\x12\xd3\x02\n\x12ListTaskExecutions\x12(.flyteidl.admin.TaskExecutionListRequest\x1a!.flyteidl.admin.TaskExecutionList\"\xef\x01\x82\xd3\xe4\x93\x02\xad\x01\x12\xaa\x01/api/v1/task_executions/{node_execution_id.execution_id.project}/{node_execution_id.execution_id.domain}/{node_execution_id.execution_id.name}/{node_execution_id.node_id}\x92\x41\x38\x1a\x36\x46\x65tch existing task executions matching input filters.\x12\xe0\x03\n\x14GetTaskExecutionData\x12+.flyteidl.admin.TaskExecutionGetDataRequest\x1a,.flyteidl.admin.TaskExecutionGetDataResponse\"\xec\x02\x82\xd3\xe4\x93\x02\xa1\x02\x12\x9e\x02/api/v1/data/task_executions/{id.node_execution_id.execution_id.project}/{id.node_execution_id.execution_id.domain}/{id.node_execution_id.execution_id.name}/{id.node_execution_id.node_id}/{id.task_id.project}/{id.task_id.domain}/{id.task_id.name}/{id.task_id.version}/{id.retry_attempt}\x92\x41\x41\x1a?Retrieve input and output data from an existing task execution.\x12\xbf\x02\n\x1dUpdateProjectDomainAttributes\x12\x34.flyteidl.admin.ProjectDomainAttributesUpdateRequest\x1a\x35.flyteidl.admin.ProjectDomainAttributesUpdateResponse\"\xb0\x01\x82\xd3\xe4\x93\x02O\x1aJ/api/v1/project_domain_attributes/{attributes.project}/{attributes.domain}:\x01*\x92\x41X\x1aVUpdate the customized resource attributes associated with a project-domain combination\x12\x9f\x02\n\x1aGetProjectDomainAttributes\x12\x31.flyteidl.admin.ProjectDomainAttributesGetRequest\x1a\x32.flyteidl.admin.ProjectDomainAttributesGetResponse\"\x99\x01\x82\xd3\xe4\x93\x02\x36\x12\x34/api/v1/project_domain_attributes/{project}/{domain}\x92\x41Z\x1aXRetrieve the customized resource attributes associated with a project-domain combination\x12\xa9\x02\n\x1d\x44\x65leteProjectDomainAttributes\x12\x34.flyteidl.admin.ProjectDomainAttributesDeleteRequest\x1a\x35.flyteidl.admin.ProjectDomainAttributesDeleteResponse\"\x9a\x01\x82\xd3\xe4\x93\x02\x39*4/api/v1/project_domain_attributes/{project}/{domain}:\x01*\x92\x41X\x1aVDelete the customized resource attributes associated with a project-domain combination\x12\xce\x02\n\x18UpdateWorkflowAttributes\x12/.flyteidl.admin.WorkflowAttributesUpdateRequest\x1a\x30.flyteidl.admin.WorkflowAttributesUpdateResponse\"\xce\x01\x82\xd3\xe4\x93\x02_\x1aZ/api/v1/workflow_attributes/{attributes.project}/{attributes.domain}/{attributes.workflow}:\x01*\x92\x41\x66\x1a\x64Update the customized resource attributes associated with a project, domain and workflow combination\x12\xa3\x02\n\x15GetWorkflowAttributes\x12,.flyteidl.admin.WorkflowAttributesGetRequest\x1a-.flyteidl.admin.WorkflowAttributesGetResponse\"\xac\x01\x82\xd3\xe4\x93\x02;\x12\x39/api/v1/workflow_attributes/{project}/{domain}/{workflow}\x92\x41h\x1a\x66Retrieve the customized resource attributes associated with a project, domain and workflow combination\x12\xad\x02\n\x18\x44\x65leteWorkflowAttributes\x12/.flyteidl.admin.WorkflowAttributesDeleteRequest\x1a\x30.flyteidl.admin.WorkflowAttributesDeleteResponse\"\xad\x01\x82\xd3\xe4\x93\x02>*9/api/v1/workflow_attributes/{project}/{domain}/{workflow}:\x01*\x92\x41\x66\x1a\x64\x44\x65lete the customized resource attributes associated with a project, domain and workflow combination\x12\xe1\x01\n\x17ListMatchableAttributes\x12..flyteidl.admin.ListMatchableAttributesRequest\x1a/.flyteidl.admin.ListMatchableAttributesResponse\"e\x82\xd3\xe4\x93\x02\x1e\x12\x1c/api/v1/matchable_attributes\x92\x41>\x1a/api/v1/active_launch_plans/{id.project}/{id.domain}/{id.name}\x92\x41M\x1aKRetrieve the active launch plan version specified by input request filters.\x12\xeb\x01\n\x15ListActiveLaunchPlans\x12+.flyteidl.admin.ActiveLaunchPlanListRequest\x1a\x1e.flyteidl.admin.LaunchPlanList\"\x84\x01\x82\xd3\xe4\x93\x02\x30\x12./api/v1/active_launch_plans/{project}/{domain}\x92\x41K\x1aIFetch the active launch plan versions specified by input request filters.\x12\xf3\x01\n\x11ListLaunchPlanIds\x12\x30.flyteidl.admin.NamedEntityIdentifierListRequest\x1a).flyteidl.admin.NamedEntityIdentifierList\"\x80\x01\x82\xd3\xe4\x93\x02,\x12*/api/v1/launch_plan_ids/{project}/{domain}\x92\x41K\x1aIFetch existing launch plan definition identifiers matching input filters.\x12\x8c\x02\n\x0fListLaunchPlans\x12#.flyteidl.admin.ResourceListRequest\x1a\x1e.flyteidl.admin.LaunchPlanList\"\xb3\x01\x82\xd3\xe4\x93\x02j\x12\x37/api/v1/launch_plans/{id.project}/{id.domain}/{id.name}Z/\x12-/api/v1/launch_plans/{id.project}/{id.domain}\x92\x41@\x1a>Fetch existing launch plan definitions matching input filters.\x12\xc0\x06\n\x10UpdateLaunchPlan\x12\'.flyteidl.admin.LaunchPlanUpdateRequest\x1a(.flyteidl.admin.LaunchPlanUpdateResponse\"\xd8\x05\x82\xd3\xe4\x93\x02I\x1a\x44/api/v1/launch_plans/{id.project}/{id.domain}/{id.name}/{id.version}:\x01*\x92\x41\x85\x05\x1a\x82\x05Update the status of an existing launch plan definition. At most one launch plan version for a given {project, domain, name} can be active at a time. If this call sets a launch plan to active and existing version is already active, the result of this call will be that the formerly active launch plan will be made inactive and specified launch plan in this request will be made active. In the event that the formerly active launch plan had a schedule associated it with it, this schedule will be disabled. If the reference launch plan in this request is being set to active and has a schedule associated with it, the schedule will be enabled.\x12\xa2\x01\n\x0f\x43reateExecution\x12&.flyteidl.admin.ExecutionCreateRequest\x1a\'.flyteidl.admin.ExecutionCreateResponse\">\x82\xd3\xe4\x93\x02\x17\"\x12/api/v1/executions:\x01*\x92\x41\x1e\x1a\x1c\x43reate a workflow execution.\x12\xb1\x01\n\x11RelaunchExecution\x12(.flyteidl.admin.ExecutionRelaunchRequest\x1a\'.flyteidl.admin.ExecutionCreateResponse\"I\x82\xd3\xe4\x93\x02 \"\x1b/api/v1/executions/relaunch:\x01*\x92\x41 \x1a\x1eRelaunch a workflow execution.\x12\xc2\x01\n\x0cGetExecution\x12+.flyteidl.admin.WorkflowExecutionGetRequest\x1a\x19.flyteidl.admin.Execution\"j\x82\xd3\xe4\x93\x02\x37\x12\x35/api/v1/executions/{id.project}/{id.domain}/{id.name}\x92\x41*\x1a(Retrieve an existing workflow execution.\x12\x82\x02\n\x10GetExecutionData\x12/.flyteidl.admin.WorkflowExecutionGetDataRequest\x1a\x30.flyteidl.admin.WorkflowExecutionGetDataResponse\"\x8a\x01\x82\xd3\xe4\x93\x02<\x12:/api/v1/data/executions/{id.project}/{id.domain}/{id.name}\x92\x41\x45\x1a\x43Retrieve input and output data from an existing workflow execution.\x12\xc8\x01\n\x0eListExecutions\x12#.flyteidl.admin.ResourceListRequest\x1a\x1d.flyteidl.admin.ExecutionList\"r\x82\xd3\xe4\x93\x02-\x12+/api/v1/executions/{id.project}/{id.domain}\x92\x41<\x1a:Fetch existing workflow executions matching input filters.\x12\xf4\x01\n\x12TerminateExecution\x12).flyteidl.admin.ExecutionTerminateRequest\x1a*.flyteidl.admin.ExecutionTerminateResponse\"\x86\x01\x82\xd3\xe4\x93\x02:*5/api/v1/executions/{id.project}/{id.domain}/{id.name}:\x01*\x92\x41\x43\x1a\x41Terminate the active workflow execution specified in the request.\x12\xfc\x01\n\x10GetNodeExecution\x12\'.flyteidl.admin.NodeExecutionGetRequest\x1a\x1d.flyteidl.admin.NodeExecution\"\x9f\x01\x82\xd3\xe4\x93\x02p\x12n/api/v1/node_executions/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}\x92\x41&\x1a$Retrieve an existing node execution.\x12\x9a\x02\n\x12ListNodeExecutions\x12(.flyteidl.admin.NodeExecutionListRequest\x1a!.flyteidl.admin.NodeExecutionList\"\xb6\x01\x82\xd3\xe4\x93\x02u\x12s/api/v1/node_executions/{workflow_execution_id.project}/{workflow_execution_id.domain}/{workflow_execution_id.name}\x92\x41\x38\x1a\x36\x46\x65tch existing node executions matching input filters.\x12\xef\x04\n\x19ListNodeExecutionsForTask\x12/.flyteidl.admin.NodeExecutionForTaskListRequest\x1a!.flyteidl.admin.NodeExecutionList\"\xfd\x03\x82\xd3\xe4\x93\x02\xac\x03\x12\xa9\x03/api/v1/children/task_executions/{task_execution_id.node_execution_id.execution_id.project}/{task_execution_id.node_execution_id.execution_id.domain}/{task_execution_id.node_execution_id.execution_id.name}/{task_execution_id.node_execution_id.node_id}/{task_execution_id.task_id.project}/{task_execution_id.task_id.domain}/{task_execution_id.task_id.name}/{task_execution_id.task_id.version}/{task_execution_id.retry_attempt}\x92\x41G\x1a\x45\x46\x65tch child node executions launched by the specified task execution.\x12\xb3\x02\n\x14GetNodeExecutionData\x12+.flyteidl.admin.NodeExecutionGetDataRequest\x1a,.flyteidl.admin.NodeExecutionGetDataResponse\"\xbf\x01\x82\xd3\xe4\x93\x02u\x12s/api/v1/data/node_executions/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}\x92\x41\x41\x1a?Retrieve input and output data from an existing node execution.\x12\x97\x01\n\x0fRegisterProject\x12&.flyteidl.admin.ProjectRegisterRequest\x1a\'.flyteidl.admin.ProjectRegisterResponse\"3\x82\xd3\xe4\x93\x02\x15\"\x10/api/v1/projects:\x01*\x92\x41\x15\x1a\x13Register a project.\x12\x85\x01\n\x0cListProjects\x12\".flyteidl.admin.ProjectListRequest\x1a\x18.flyteidl.admin.Projects\"7\x82\xd3\xe4\x93\x02\x12\x12\x10/api/v1/projects\x92\x41\x1c\x1a\x1a\x46\x65tch registered projects.\x12\xdd\x01\n\x13\x43reateWorkflowEvent\x12-.flyteidl.admin.WorkflowExecutionEventRequest\x1a..flyteidl.admin.WorkflowExecutionEventResponse\"g\x82\xd3\xe4\x93\x02\x1d\"\x18/api/v1/events/workflows:\x01*\x92\x41\x41\x1a?Create a workflow execution event recording a phase transition.\x12\xc9\x01\n\x0f\x43reateNodeEvent\x12).flyteidl.admin.NodeExecutionEventRequest\x1a*.flyteidl.admin.NodeExecutionEventResponse\"_\x82\xd3\xe4\x93\x02\x19\"\x14/api/v1/events/nodes:\x01*\x92\x41=\x1a;Create a node execution event recording a phase transition.\x12\xc9\x01\n\x0f\x43reateTaskEvent\x12).flyteidl.admin.TaskExecutionEventRequest\x1a*.flyteidl.admin.TaskExecutionEventResponse\"_\x82\xd3\xe4\x93\x02\x19\"\x14/api/v1/events/tasks:\x01*\x92\x41=\x1a;Create a task execution event recording a phase transition.\x12\xa9\x03\n\x10GetTaskExecution\x12\'.flyteidl.admin.TaskExecutionGetRequest\x1a\x1d.flyteidl.admin.TaskExecution\"\xcc\x02\x82\xd3\xe4\x93\x02\x9c\x02\x12\x99\x02/api/v1/task_executions/{id.node_execution_id.execution_id.project}/{id.node_execution_id.execution_id.domain}/{id.node_execution_id.execution_id.name}/{id.node_execution_id.node_id}/{id.task_id.project}/{id.task_id.domain}/{id.task_id.name}/{id.task_id.version}/{id.retry_attempt}\x92\x41&\x1a$Retrieve an existing task execution.\x12\xd3\x02\n\x12ListTaskExecutions\x12(.flyteidl.admin.TaskExecutionListRequest\x1a!.flyteidl.admin.TaskExecutionList\"\xef\x01\x82\xd3\xe4\x93\x02\xad\x01\x12\xaa\x01/api/v1/task_executions/{node_execution_id.execution_id.project}/{node_execution_id.execution_id.domain}/{node_execution_id.execution_id.name}/{node_execution_id.node_id}\x92\x41\x38\x1a\x36\x46\x65tch existing task executions matching input filters.\x12\xe0\x03\n\x14GetTaskExecutionData\x12+.flyteidl.admin.TaskExecutionGetDataRequest\x1a,.flyteidl.admin.TaskExecutionGetDataResponse\"\xec\x02\x82\xd3\xe4\x93\x02\xa1\x02\x12\x9e\x02/api/v1/data/task_executions/{id.node_execution_id.execution_id.project}/{id.node_execution_id.execution_id.domain}/{id.node_execution_id.execution_id.name}/{id.node_execution_id.node_id}/{id.task_id.project}/{id.task_id.domain}/{id.task_id.name}/{id.task_id.version}/{id.retry_attempt}\x92\x41\x41\x1a?Retrieve input and output data from an existing task execution.\x12\xbf\x02\n\x1dUpdateProjectDomainAttributes\x12\x34.flyteidl.admin.ProjectDomainAttributesUpdateRequest\x1a\x35.flyteidl.admin.ProjectDomainAttributesUpdateResponse\"\xb0\x01\x82\xd3\xe4\x93\x02O\x1aJ/api/v1/project_domain_attributes/{attributes.project}/{attributes.domain}:\x01*\x92\x41X\x1aVUpdate the customized resource attributes associated with a project-domain combination\x12\x9f\x02\n\x1aGetProjectDomainAttributes\x12\x31.flyteidl.admin.ProjectDomainAttributesGetRequest\x1a\x32.flyteidl.admin.ProjectDomainAttributesGetResponse\"\x99\x01\x82\xd3\xe4\x93\x02\x36\x12\x34/api/v1/project_domain_attributes/{project}/{domain}\x92\x41Z\x1aXRetrieve the customized resource attributes associated with a project-domain combination\x12\xa9\x02\n\x1d\x44\x65leteProjectDomainAttributes\x12\x34.flyteidl.admin.ProjectDomainAttributesDeleteRequest\x1a\x35.flyteidl.admin.ProjectDomainAttributesDeleteResponse\"\x9a\x01\x82\xd3\xe4\x93\x02\x39*4/api/v1/project_domain_attributes/{project}/{domain}:\x01*\x92\x41X\x1aVDelete the customized resource attributes associated with a project-domain combination\x12\xce\x02\n\x18UpdateWorkflowAttributes\x12/.flyteidl.admin.WorkflowAttributesUpdateRequest\x1a\x30.flyteidl.admin.WorkflowAttributesUpdateResponse\"\xce\x01\x82\xd3\xe4\x93\x02_\x1aZ/api/v1/workflow_attributes/{attributes.project}/{attributes.domain}/{attributes.workflow}:\x01*\x92\x41\x66\x1a\x64Update the customized resource attributes associated with a project, domain and workflow combination\x12\xa3\x02\n\x15GetWorkflowAttributes\x12,.flyteidl.admin.WorkflowAttributesGetRequest\x1a-.flyteidl.admin.WorkflowAttributesGetResponse\"\xac\x01\x82\xd3\xe4\x93\x02;\x12\x39/api/v1/workflow_attributes/{project}/{domain}/{workflow}\x92\x41h\x1a\x66Retrieve the customized resource attributes associated with a project, domain and workflow combination\x12\xad\x02\n\x18\x44\x65leteWorkflowAttributes\x12/.flyteidl.admin.WorkflowAttributesDeleteRequest\x1a\x30.flyteidl.admin.WorkflowAttributesDeleteResponse\"\xad\x01\x82\xd3\xe4\x93\x02>*9/api/v1/workflow_attributes/{project}/{domain}/{workflow}:\x01*\x92\x41\x66\x1a\x64\x44\x65lete the customized resource attributes associated with a project, domain and workflow combination\x12\xe1\x01\n\x17ListMatchableAttributes\x12..flyteidl.admin.ListMatchableAttributesRequest\x1a/.flyteidl.admin.ListMatchableAttributesResponse\"e\x82\xd3\xe4\x93\x02\x1e\x12\x1c/api/v1/matchable_attributes\x92\x41>\x1a>> thread = api.update_workflow(id_project, id_domain, id_name, id_version, body, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str id_project: Name of the project the resource belongs to. (required) - :param str id_domain: Name of the domain the resource belongs to. A domain can be considered as a subset within a specific project. (required) - :param str id_name: User provided value for the resource. (required) - :param str id_version: Specific version of the resource. (required) - :param AdminWorkflowUpdateRequest body: (required) - :return: AdminWorkflowUpdateResponse - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.update_workflow_with_http_info(id_project, id_domain, id_name, id_version, body, **kwargs) # noqa: E501 - else: - (data) = self.update_workflow_with_http_info(id_project, id_domain, id_name, id_version, body, **kwargs) # noqa: E501 - return data - - def update_workflow_with_http_info(self, id_project, id_domain, id_name, id_version, body, **kwargs): # noqa: E501 - """update_workflow # noqa: E501 - - Update the state of an existing workflow definition. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_workflow_with_http_info(id_project, id_domain, id_name, id_version, body, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str id_project: Name of the project the resource belongs to. (required) - :param str id_domain: Name of the domain the resource belongs to. A domain can be considered as a subset within a specific project. (required) - :param str id_name: User provided value for the resource. (required) - :param str id_version: Specific version of the resource. (required) - :param AdminWorkflowUpdateRequest body: (required) - :return: AdminWorkflowUpdateResponse - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['id_project', 'id_domain', 'id_name', 'id_version', 'body'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method update_workflow" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'id_project' is set - if ('id_project' not in params or - params['id_project'] is None): - raise ValueError("Missing the required parameter `id_project` when calling `update_workflow`") # noqa: E501 - # verify the required parameter 'id_domain' is set - if ('id_domain' not in params or - params['id_domain'] is None): - raise ValueError("Missing the required parameter `id_domain` when calling `update_workflow`") # noqa: E501 - # verify the required parameter 'id_name' is set - if ('id_name' not in params or - params['id_name'] is None): - raise ValueError("Missing the required parameter `id_name` when calling `update_workflow`") # noqa: E501 - # verify the required parameter 'id_version' is set - if ('id_version' not in params or - params['id_version'] is None): - raise ValueError("Missing the required parameter `id_version` when calling `update_workflow`") # noqa: E501 - # verify the required parameter 'body' is set - if ('body' not in params or - params['body'] is None): - raise ValueError("Missing the required parameter `body` when calling `update_workflow`") # noqa: E501 - - collection_formats = {} - - path_params = {} - if 'id_project' in params: - path_params['id.project'] = params['id_project'] # noqa: E501 - if 'id_domain' in params: - path_params['id.domain'] = params['id_domain'] # noqa: E501 - if 'id_name' in params: - path_params['id.name'] = params['id_name'] # noqa: E501 - if 'id_version' in params: - path_params['id.version'] = params['id_version'] # noqa: E501 - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - if 'body' in params: - body_params = params['body'] - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = [] # noqa: E501 - - return self.api_client.call_api( - '/api/v1/workflows/{id.project}/{id.domain}/{id.name}/{id.version}', 'PUT', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='AdminWorkflowUpdateResponse', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - def update_workflow_attributes(self, attributes_project, attributes_domain, attributes_workflow, body, **kwargs): # noqa: E501 """update_workflow_attributes # noqa: E501 diff --git a/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/__init__.py b/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/__init__.py index 470c471448..8288f7edd0 100644 --- a/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/__init__.py +++ b/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/__init__.py @@ -56,6 +56,7 @@ from flyteadmin.models.admin_named_entity_identifier_list import AdminNamedEntityIdentifierList from flyteadmin.models.admin_named_entity_list import AdminNamedEntityList from flyteadmin.models.admin_named_entity_metadata import AdminNamedEntityMetadata +from flyteadmin.models.admin_named_entity_state import AdminNamedEntityState from flyteadmin.models.admin_named_entity_update_request import AdminNamedEntityUpdateRequest from flyteadmin.models.admin_named_entity_update_response import AdminNamedEntityUpdateResponse from flyteadmin.models.admin_node_execution_closure import AdminNodeExecutionClosure @@ -110,9 +111,6 @@ from flyteadmin.models.admin_workflow_execution_get_data_response import AdminWorkflowExecutionGetDataResponse from flyteadmin.models.admin_workflow_list import AdminWorkflowList from flyteadmin.models.admin_workflow_spec import AdminWorkflowSpec -from flyteadmin.models.admin_workflow_state import AdminWorkflowState -from flyteadmin.models.admin_workflow_update_request import AdminWorkflowUpdateRequest -from flyteadmin.models.admin_workflow_update_response import AdminWorkflowUpdateResponse from flyteadmin.models.blob_type_blob_dimensionality import BlobTypeBlobDimensionality from flyteadmin.models.comparison_expression_operator import ComparisonExpressionOperator from flyteadmin.models.conjunction_expression_logical_operator import ConjunctionExpressionLogicalOperator diff --git a/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/admin_named_entity_metadata.py b/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/admin_named_entity_metadata.py index 897966c9df..e7e538e04c 100644 --- a/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/admin_named_entity_metadata.py +++ b/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/admin_named_entity_metadata.py @@ -16,6 +16,8 @@ import six +from flyteadmin.models.admin_named_entity_state import AdminNamedEntityState # noqa: F401,E501 + class AdminNamedEntityMetadata(object): """NOTE: This class is auto generated by the swagger code generator program. @@ -31,21 +33,26 @@ class AdminNamedEntityMetadata(object): and the value is json key in definition. """ swagger_types = { - 'description': 'str' + 'description': 'str', + 'state': 'AdminNamedEntityState' } attribute_map = { - 'description': 'description' + 'description': 'description', + 'state': 'state' } - def __init__(self, description=None): # noqa: E501 + def __init__(self, description=None, state=None): # noqa: E501 """AdminNamedEntityMetadata - a model defined in Swagger""" # noqa: E501 self._description = None + self._state = None self.discriminator = None if description is not None: self.description = description + if state is not None: + self.state = state @property def description(self): @@ -68,6 +75,29 @@ def description(self, description): self._description = description + @property + def state(self): + """Gets the state of this AdminNamedEntityMetadata. # noqa: E501 + + Shared state across all version of the entity At this point in time, only workflow entities can have their state archived. # noqa: E501 + + :return: The state of this AdminNamedEntityMetadata. # noqa: E501 + :rtype: AdminNamedEntityState + """ + return self._state + + @state.setter + def state(self, state): + """Sets the state of this AdminNamedEntityMetadata. + + Shared state across all version of the entity At this point in time, only workflow entities can have their state archived. # noqa: E501 + + :param state: The state of this AdminNamedEntityMetadata. # noqa: E501 + :type: AdminNamedEntityState + """ + + self._state = state + def to_dict(self): """Returns the model properties as a dict""" result = {} diff --git a/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/admin_workflow_state.py b/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/admin_named_entity_state.py similarity index 88% rename from flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/admin_workflow_state.py rename to flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/admin_named_entity_state.py index dbdba84803..d36c4f69bf 100644 --- a/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/admin_workflow_state.py +++ b/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/admin_named_entity_state.py @@ -17,7 +17,7 @@ import six -class AdminWorkflowState(object): +class AdminNamedEntityState(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. @@ -26,8 +26,8 @@ class AdminWorkflowState(object): """ allowed enum values """ - ACTIVE = "WORKFLOW_ACTIVE" - ARCHIVED = "WORKFLOW_ARCHIVED" + ACTIVE = "NAMED_ENTITY_ACTIVE" + ARCHIVED = "NAMED_ENTITY_ARCHIVED" """ Attributes: @@ -43,7 +43,7 @@ class AdminWorkflowState(object): } def __init__(self): # noqa: E501 - """AdminWorkflowState - a model defined in Swagger""" # noqa: E501 + """AdminNamedEntityState - a model defined in Swagger""" # noqa: E501 self.discriminator = None def to_dict(self): @@ -67,7 +67,7 @@ def to_dict(self): )) else: result[attr] = value - if issubclass(AdminWorkflowState, dict): + if issubclass(AdminNamedEntityState, dict): for key, value in self.items(): result[key] = value @@ -83,7 +83,7 @@ def __repr__(self): def __eq__(self, other): """Returns true if both objects are equal""" - if not isinstance(other, AdminWorkflowState): + if not isinstance(other, AdminNamedEntityState): return False return self.__dict__ == other.__dict__ diff --git a/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/admin_workflow_update_request.py b/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/admin_workflow_update_request.py deleted file mode 100644 index a97084477a..0000000000 --- a/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/admin_workflow_update_request.py +++ /dev/null @@ -1,148 +0,0 @@ -# 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 - -from flyteadmin.models.admin_workflow_state import AdminWorkflowState # noqa: F401,E501 -from flyteadmin.models.core_identifier import CoreIdentifier # noqa: F401,E501 - - -class AdminWorkflowUpdateRequest(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 = { - 'id': 'CoreIdentifier', - 'state': 'AdminWorkflowState' - } - - attribute_map = { - 'id': 'id', - 'state': 'state' - } - - def __init__(self, id=None, state=None): # noqa: E501 - """AdminWorkflowUpdateRequest - a model defined in Swagger""" # noqa: E501 - - self._id = None - self._state = None - self.discriminator = None - - if id is not None: - self.id = id - if state is not None: - self.state = state - - @property - def id(self): - """Gets the id of this AdminWorkflowUpdateRequest. # noqa: E501 - - Identifier of workflow for which to change state. # noqa: E501 - - :return: The id of this AdminWorkflowUpdateRequest. # noqa: E501 - :rtype: CoreIdentifier - """ - return self._id - - @id.setter - def id(self, id): - """Sets the id of this AdminWorkflowUpdateRequest. - - Identifier of workflow for which to change state. # noqa: E501 - - :param id: The id of this AdminWorkflowUpdateRequest. # noqa: E501 - :type: CoreIdentifier - """ - - self._id = id - - @property - def state(self): - """Gets the state of this AdminWorkflowUpdateRequest. # noqa: E501 - - Desired state to apply to the workflow. # noqa: E501 - - :return: The state of this AdminWorkflowUpdateRequest. # noqa: E501 - :rtype: AdminWorkflowState - """ - return self._state - - @state.setter - def state(self, state): - """Sets the state of this AdminWorkflowUpdateRequest. - - Desired state to apply to the workflow. # noqa: E501 - - :param state: The state of this AdminWorkflowUpdateRequest. # noqa: E501 - :type: AdminWorkflowState - """ - - self._state = state - - 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(AdminWorkflowUpdateRequest, 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, AdminWorkflowUpdateRequest): - 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/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/admin_workflow_update_response.py b/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/admin_workflow_update_response.py deleted file mode 100644 index 782589af68..0000000000 --- a/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/admin_workflow_update_response.py +++ /dev/null @@ -1,87 +0,0 @@ -# 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 AdminWorkflowUpdateResponse(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 = { - } - - attribute_map = { - } - - def __init__(self): # noqa: E501 - """AdminWorkflowUpdateResponse - a model defined in Swagger""" # noqa: E501 - self.discriminator = None - - 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(AdminWorkflowUpdateResponse, 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, AdminWorkflowUpdateResponse): - 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/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/test/test_admin_workflow_state.py b/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/test/test_admin_named_entity_state.py similarity index 62% rename from flyteidl/gen/pb_python/flyteidl/service/flyteadmin/test/test_admin_workflow_state.py rename to flyteidl/gen/pb_python/flyteidl/service/flyteadmin/test/test_admin_named_entity_state.py index 17c345abf1..1bdc21796a 100644 --- a/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/test/test_admin_workflow_state.py +++ b/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/test/test_admin_named_entity_state.py @@ -16,12 +16,12 @@ import unittest import flyteadmin -from flyteadmin.models.admin_workflow_state import AdminWorkflowState # noqa: E501 +from flyteadmin.models.admin_named_entity_state import AdminNamedEntityState # noqa: E501 from flyteadmin.rest import ApiException -class TestAdminWorkflowState(unittest.TestCase): - """AdminWorkflowState unit test stubs""" +class TestAdminNamedEntityState(unittest.TestCase): + """AdminNamedEntityState unit test stubs""" def setUp(self): pass @@ -29,10 +29,10 @@ def setUp(self): def tearDown(self): pass - def testAdminWorkflowState(self): - """Test AdminWorkflowState""" + def testAdminNamedEntityState(self): + """Test AdminNamedEntityState""" # FIXME: construct object with mandatory attributes with example values - # model = flyteadmin.models.admin_workflow_state.AdminWorkflowState() # noqa: E501 + # model = flyteadmin.models.admin_named_entity_state.AdminNamedEntityState() # noqa: E501 pass diff --git a/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/test/test_admin_service_api.py b/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/test/test_admin_service_api.py index e1318574ce..01c0ee063f 100644 --- a/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/test/test_admin_service_api.py +++ b/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/test/test_admin_service_api.py @@ -299,12 +299,6 @@ def test_update_project_domain_attributes(self): """ pass - def test_update_workflow(self): - """Test case for update_workflow - - """ - pass - def test_update_workflow_attributes(self): """Test case for update_workflow_attributes diff --git a/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/test/test_admin_workflow_update_request.py b/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/test/test_admin_workflow_update_request.py deleted file mode 100644 index d4833c15f1..0000000000 --- a/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/test/test_admin_workflow_update_request.py +++ /dev/null @@ -1,40 +0,0 @@ -# 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_update_request import AdminWorkflowUpdateRequest # noqa: E501 -from flyteadmin.rest import ApiException - - -class TestAdminWorkflowUpdateRequest(unittest.TestCase): - """AdminWorkflowUpdateRequest unit test stubs""" - - def setUp(self): - pass - - def tearDown(self): - pass - - def testAdminWorkflowUpdateRequest(self): - """Test AdminWorkflowUpdateRequest""" - # FIXME: construct object with mandatory attributes with example values - # model = flyteadmin.models.admin_workflow_update_request.AdminWorkflowUpdateRequest() # noqa: E501 - pass - - -if __name__ == '__main__': - unittest.main() diff --git a/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/test/test_admin_workflow_update_response.py b/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/test/test_admin_workflow_update_response.py deleted file mode 100644 index c0ba1db673..0000000000 --- a/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/test/test_admin_workflow_update_response.py +++ /dev/null @@ -1,40 +0,0 @@ -# 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_update_response import AdminWorkflowUpdateResponse # noqa: E501 -from flyteadmin.rest import ApiException - - -class TestAdminWorkflowUpdateResponse(unittest.TestCase): - """AdminWorkflowUpdateResponse unit test stubs""" - - def setUp(self): - pass - - def tearDown(self): - pass - - def testAdminWorkflowUpdateResponse(self): - """Test AdminWorkflowUpdateResponse""" - # FIXME: construct object with mandatory attributes with example values - # model = flyteadmin.models.admin_workflow_update_response.AdminWorkflowUpdateResponse() # noqa: E501 - pass - - -if __name__ == '__main__': - unittest.main() diff --git a/flyteidl/package.json b/flyteidl/package.json index 2a5bc177c6..a13838fd32 100644 --- a/flyteidl/package.json +++ b/flyteidl/package.json @@ -1,6 +1,6 @@ { "name": "@lyft/flyteidl", - "version": "0.16.1", + "version": "0.17.26", "description": "Compiled protocol buffers and gRPC service clients/servers for Flyte IDLs", "repository": { "type": "git", diff --git a/flyteidl/protos/flyteidl/admin/common.proto b/flyteidl/protos/flyteidl/admin/common.proto index 4ef98032a0..59d339a966 100644 --- a/flyteidl/protos/flyteidl/admin/common.proto +++ b/flyteidl/protos/flyteidl/admin/common.proto @@ -21,10 +21,23 @@ message NamedEntityIdentifier { string name = 3; } +// The status of the named entity is used to control its visibility in the UI. +enum NamedEntityState { + // By default, all named entities are considered active and under development. + NAMED_ENTITY_ACTIVE = 0; + + // Archived named entities are no longer visible in the UI. + NAMED_ENTITY_ARCHIVED = 1; +} + message NamedEntityMetadata { // Common description across all versions of the entity // +optional string description = 1; + + // Shared state across all version of the entity + // At this point in time, only workflow entities can have their state archived. + NamedEntityState state = 2; } // Describes information common to a NamedEntity, identified by a project / diff --git a/flyteidl/protos/flyteidl/admin/workflow.proto b/flyteidl/protos/flyteidl/admin/workflow.proto index 67fbfc4ed0..9f05c7bf11 100644 --- a/flyteidl/protos/flyteidl/admin/workflow.proto +++ b/flyteidl/protos/flyteidl/admin/workflow.proto @@ -63,24 +63,3 @@ message WorkflowClosure { google.protobuf.Timestamp created_at = 2; } -// The status of the workflow is used to control its visibility in the UI. -enum WorkflowState { - // By default, all workflows are considered active and under development. - WORKFLOW_ACTIVE = 0; - - // Archived workflows are no longer visible in the UI. - WORKFLOW_ARCHIVED = 1; -} - -// Request to set the referenced workflow state to the configured value. -message WorkflowUpdateRequest { - // Identifier of workflow for which to change state. - core.Identifier id = 1; - - // Desired state to apply to the workflow. - WorkflowState state = 2; -} - -// Purposefully empty, may be populated in the future. -message WorkflowUpdateResponse { -} diff --git a/flyteidl/protos/flyteidl/service/admin.proto b/flyteidl/protos/flyteidl/service/admin.proto index c0f8621f83..9c08f98d6a 100644 --- a/flyteidl/protos/flyteidl/service/admin.proto +++ b/flyteidl/protos/flyteidl/service/admin.proto @@ -125,16 +125,6 @@ service AdminService { }; } - rpc UpdateWorkflow (flyteidl.admin.WorkflowUpdateRequest) returns (flyteidl.admin.WorkflowUpdateResponse) { - option (google.api.http) = { - put: "/api/v1/workflows/{id.project}/{id.domain}/{id.name}/{id.version}" - body: "*" - }; - option (grpc.gateway.protoc_gen_swagger.options.openapiv2_operation) = { - description: "Update the state of an existing workflow definition." - }; - } - rpc CreateLaunchPlan (flyteidl.admin.LaunchPlanCreateRequest) returns (flyteidl.admin.LaunchPlanCreateResponse) { option (google.api.http) = { post: "/api/v1/launch_plans" diff --git a/flyteidl/setup.py b/flyteidl/setup.py index 7a322d798a..b088738cfe 100644 --- a/flyteidl/setup.py +++ b/flyteidl/setup.py @@ -1,6 +1,6 @@ from setuptools import setup, find_packages -__version__ = '0.17.25' +__version__ = '0.17.26' setup( name='flyteidl',