From 187b4e5795fad3adb263093715a82364477e690d Mon Sep 17 00:00:00 2001 From: Kent Rancourt Date: Sun, 29 Sep 2024 11:27:45 -0400 Subject: [PATCH 1/6] add currentStep and state fields to promotionStatus Signed-off-by: Kent Rancourt --- api/v1alpha1/promotion_types.go | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/api/v1alpha1/promotion_types.go b/api/v1alpha1/promotion_types.go index 214a04642..90a8f9529 100644 --- a/api/v1alpha1/promotion_types.go +++ b/api/v1alpha1/promotion_types.go @@ -143,6 +143,26 @@ type PromotionStatus struct { HealthChecks []HealthCheckStep `json:"healthChecks,omitempty" protobuf:"bytes,8,rep,name=healthChecks"` // FinishedAt is the time when the promotion was completed. FinishedAt *metav1.Time `json:"finishedAt,omitempty" protobuf:"bytes,6,opt,name=finishedAt"` + // CurrentStep is the index of the current promotion step being executed. This + // permits steps that have already run successfully to be skipped on + // subsequent reconciliations attempts. + CurrentStep int64 `json:"currentStep,omitempty" protobuf:"varint,9,opt,name=currentStep"` + // State stores the state of the promotion process between reconciliation + // attempts. + State *apiextensionsv1.JSON `json:"state,omitempty" protobuf:"bytes,10,opt,name=state"` +} + +// GetConfig returns the State field as unmarshalled YAML. +func (s *PromotionStatus) GetState() map[string]any { + if s.State == nil { + return nil + } + + var state map[string]any + if err := yaml.Unmarshal(s.State.Raw, &state); err != nil { + return nil + } + return state } // HealthCheckStep describes a health check directive which can be executed by From 32a42f2c3126d6de05ce697bc8a540fe4512e7cf Mon Sep 17 00:00:00 2001 From: Kent Rancourt Date: Sun, 29 Sep 2024 11:57:12 -0400 Subject: [PATCH 2/6] run codegen Signed-off-by: Kent Rancourt --- api/v1alpha1/generated.pb.go | 631 ++++++++++-------- api/v1alpha1/generated.proto | 9 + api/v1alpha1/zz_generated.deepcopy.go | 5 + .../crds/kargo.akuity.io_promotions.yaml | 12 + .../crds/kargo.akuity.io_stages.yaml | 24 + .../promotions.kargo.akuity.io_v1alpha1.json | 11 + .../stages.kargo.akuity.io_v1alpha1.json | 22 + ui/src/gen/v1alpha1/generated_pb.ts | 19 + 8 files changed, 457 insertions(+), 276 deletions(-) diff --git a/api/v1alpha1/generated.pb.go b/api/v1alpha1/generated.pb.go index 5c4be9978..2c5e37875 100644 --- a/api/v1alpha1/generated.pb.go +++ b/api/v1alpha1/generated.pb.go @@ -2161,282 +2161,284 @@ func init() { } var fileDescriptor_e26b7f7bbc391025 = []byte{ - // 4393 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x5c, 0x5b, 0x8c, 0x1c, 0x57, - 0x5a, 0x76, 0x75, 0xcf, 0xad, 0xff, 0x9e, 0xeb, 0xf1, 0xd8, 0x3b, 0x99, 0x60, 0x8f, 0xa9, 0x0d, - 0x51, 0x42, 0x92, 0x1e, 0x6c, 0xc7, 0x89, 0x63, 0x07, 0x2f, 0xd3, 0x33, 0xb1, 0x3d, 0xce, 0xc4, - 0x1e, 0x4e, 0xfb, 0x12, 0xb2, 0xb1, 0x96, 0x33, 0xdd, 0x67, 0xba, 0x8b, 0xe9, 0xae, 0xaa, 0xd4, - 0xa9, 0x9e, 0x64, 0x76, 0x11, 0x84, 0x9b, 0xb4, 0x12, 0x02, 0x21, 0x84, 0xc8, 0xae, 0xe0, 0x01, - 0xc1, 0x23, 0x02, 0x89, 0xc7, 0x15, 0x0f, 0x79, 0x58, 0x09, 0xa2, 0x05, 0xa1, 0x08, 0x78, 0x08, - 0x68, 0x65, 0x6d, 0x66, 0xa5, 0x7d, 0x5c, 0x89, 0x07, 0x1e, 0x30, 0x42, 0x42, 0xe7, 0x56, 0x75, - 0xaa, 0xba, 0xda, 0xd3, 0xd5, 0x9e, 0xc9, 0x1a, 0xde, 0x66, 0xce, 0xff, 0x9f, 0xef, 0x3f, 0x97, - 0xff, 0xfc, 0xb7, 0x73, 0xaa, 0xe1, 0xe5, 0xa6, 0x13, 0xb6, 0xba, 0x5b, 0x95, 0xba, 0xd7, 0x59, - 0x26, 0x3b, 0x5d, 0x27, 0xdc, 0x5b, 0xde, 0x21, 0x41, 0xd3, 0x5b, 0x26, 0xbe, 0xb3, 0xbc, 0x7b, - 0x96, 0xb4, 0xfd, 0x16, 0x39, 0xbb, 0xdc, 0xa4, 0x2e, 0x0d, 0x48, 0x48, 0x1b, 0x15, 0x3f, 0xf0, - 0x42, 0x0f, 0x3d, 0x13, 0xf7, 0xaa, 0xc8, 0x5e, 0x15, 0xd1, 0xab, 0x42, 0x7c, 0xa7, 0xa2, 0x7b, - 0x2d, 0xbe, 0x64, 0x60, 0x37, 0xbd, 0xa6, 0xb7, 0x2c, 0x3a, 0x6f, 0x75, 0xb7, 0xc5, 0x7f, 0xe2, - 0x1f, 0xf1, 0x97, 0x04, 0x5d, 0xbc, 0xbe, 0x73, 0x91, 0x55, 0x1c, 0x21, 0x99, 0x7e, 0x10, 0x52, - 0x97, 0x39, 0x9e, 0xcb, 0x5e, 0x22, 0xbe, 0xc3, 0x68, 0xb0, 0x4b, 0x83, 0x65, 0x7f, 0xa7, 0xc9, - 0x69, 0x2c, 0xc9, 0xb0, 0xbc, 0xdb, 0x33, 0xbc, 0xc5, 0x97, 0x63, 0xa4, 0x0e, 0xa9, 0xb7, 0x1c, - 0x97, 0x06, 0x7b, 0x71, 0xf7, 0x0e, 0x0d, 0x49, 0x56, 0xaf, 0xe5, 0x7e, 0xbd, 0x82, 0xae, 0x1b, - 0x3a, 0x1d, 0xda, 0xd3, 0xe1, 0x95, 0x83, 0x3a, 0xb0, 0x7a, 0x8b, 0x76, 0x48, 0xba, 0x9f, 0xfd, - 0x2e, 0x1c, 0x5f, 0x71, 0x49, 0x7b, 0x8f, 0x39, 0x0c, 0x77, 0xdd, 0x95, 0xa0, 0xd9, 0xed, 0x50, - 0x37, 0x44, 0x67, 0x60, 0xc4, 0x25, 0x1d, 0xba, 0x60, 0x9d, 0xb1, 0x9e, 0x2b, 0x55, 0x27, 0x3f, - 0x79, 0xb0, 0x74, 0x6c, 0xff, 0xc1, 0xd2, 0xc8, 0x4d, 0xd2, 0xa1, 0x58, 0x50, 0xd0, 0x97, 0x61, - 0x74, 0x97, 0xb4, 0xbb, 0x74, 0xa1, 0x20, 0x58, 0xa6, 0x14, 0xcb, 0xe8, 0x5d, 0xde, 0x88, 0x25, - 0xcd, 0xfe, 0xad, 0x62, 0x02, 0xfe, 0x2d, 0x1a, 0x92, 0x06, 0x09, 0x09, 0xea, 0xc0, 0x58, 0x9b, - 0x6c, 0xd1, 0x36, 0x5b, 0xb0, 0xce, 0x14, 0x9f, 0x2b, 0x9f, 0x7b, 0xa3, 0x32, 0xc8, 0x26, 0x56, - 0x32, 0xa0, 0x2a, 0x1b, 0x02, 0xe7, 0x0d, 0x37, 0x0c, 0xf6, 0xaa, 0xd3, 0x6a, 0x10, 0x63, 0xb2, - 0x11, 0x2b, 0x21, 0xe8, 0x37, 0x2c, 0x28, 0x13, 0xd7, 0xf5, 0x42, 0x12, 0xf2, 0x6d, 0x5a, 0x28, - 0x08, 0xa1, 0x37, 0x86, 0x17, 0xba, 0x12, 0x83, 0x49, 0xc9, 0xc7, 0x95, 0xe4, 0xb2, 0x41, 0xc1, - 0xa6, 0xcc, 0xc5, 0xd7, 0xa0, 0x6c, 0x0c, 0x15, 0xcd, 0x42, 0x71, 0x87, 0xee, 0xc9, 0xf5, 0xc5, - 0xfc, 0x4f, 0x34, 0x9f, 0x58, 0x50, 0xb5, 0x82, 0x97, 0x0a, 0x17, 0xad, 0xc5, 0x2b, 0x30, 0x9b, - 0x16, 0x98, 0xa7, 0xbf, 0xfd, 0xfb, 0x16, 0xcc, 0x1b, 0xb3, 0xc0, 0x74, 0x9b, 0x06, 0xd4, 0xad, - 0x53, 0xb4, 0x0c, 0x25, 0xbe, 0x97, 0xcc, 0x27, 0x75, 0xbd, 0xd5, 0x73, 0x6a, 0x22, 0xa5, 0x9b, - 0x9a, 0x80, 0x63, 0x9e, 0x48, 0x2d, 0x0a, 0x8f, 0x52, 0x0b, 0xbf, 0x45, 0x18, 0x5d, 0x28, 0x26, - 0xd5, 0x62, 0x93, 0x37, 0x62, 0x49, 0xb3, 0x7f, 0x1e, 0x9e, 0xd2, 0xe3, 0xb9, 0x4d, 0x3b, 0x7e, - 0x9b, 0x84, 0x34, 0x1e, 0xd4, 0x81, 0xaa, 0x67, 0xcf, 0xc0, 0xd4, 0x8a, 0xef, 0x07, 0xde, 0x2e, - 0x6d, 0xd4, 0x42, 0xd2, 0xa4, 0xf6, 0x6f, 0x5a, 0x70, 0x62, 0x25, 0x68, 0x7a, 0xab, 0x6b, 0x2b, - 0xbe, 0x7f, 0x9d, 0x92, 0x76, 0xd8, 0xaa, 0x85, 0x24, 0xec, 0x32, 0x74, 0x05, 0xc6, 0x98, 0xf8, - 0x4b, 0xc1, 0x3d, 0xab, 0x35, 0x44, 0xd2, 0x1f, 0x3e, 0x58, 0x9a, 0xcf, 0xe8, 0x48, 0xb1, 0xea, - 0x85, 0x9e, 0x87, 0xf1, 0x0e, 0x65, 0x8c, 0x34, 0xf5, 0x9c, 0x67, 0x14, 0xc0, 0xf8, 0x5b, 0xb2, - 0x19, 0x6b, 0xba, 0xfd, 0xbd, 0x02, 0xcc, 0x44, 0x58, 0x4a, 0xfc, 0x11, 0x2c, 0x70, 0x17, 0x26, - 0x5b, 0xc6, 0x0c, 0xc5, 0x3a, 0x97, 0xcf, 0x5d, 0x1e, 0x50, 0x97, 0xb3, 0x16, 0xa9, 0x3a, 0xaf, - 0xc4, 0x4c, 0x9a, 0xad, 0x38, 0x21, 0x06, 0x75, 0x00, 0xd8, 0x9e, 0x5b, 0x57, 0x42, 0x47, 0x84, - 0xd0, 0xd7, 0x72, 0x0a, 0xad, 0x45, 0x00, 0x55, 0xa4, 0x44, 0x42, 0xdc, 0x86, 0x0d, 0x01, 0xf6, - 0x5f, 0x5b, 0x70, 0x3c, 0xa3, 0x1f, 0x7a, 0x3d, 0xb5, 0x9f, 0xcf, 0xf4, 0xec, 0x27, 0xea, 0xe9, - 0x16, 0xef, 0xe6, 0x8b, 0x30, 0x11, 0xd0, 0x5d, 0x87, 0xdb, 0x6a, 0xb5, 0xc2, 0xb3, 0xaa, 0xff, - 0x04, 0x56, 0xed, 0x38, 0xe2, 0x40, 0x2f, 0x40, 0x49, 0xff, 0xcd, 0x97, 0xb9, 0xc8, 0xd5, 0x99, - 0x6f, 0x9c, 0x66, 0x65, 0x38, 0xa6, 0xdb, 0x7f, 0x67, 0xee, 0xfe, 0x1d, 0xbf, 0x41, 0x42, 0xca, - 0x95, 0x87, 0xf8, 0xfe, 0xcd, 0x58, 0x99, 0x23, 0xe5, 0x59, 0x91, 0xcd, 0x58, 0xd3, 0xd1, 0x45, - 0x98, 0x54, 0x7f, 0x4a, 0x5d, 0x91, 0xa3, 0x8b, 0x36, 0x66, 0xc5, 0xa0, 0xe1, 0x04, 0x27, 0xba, - 0x07, 0x63, 0x5e, 0xe0, 0x34, 0x1d, 0x57, 0x6d, 0xca, 0xf9, 0xc1, 0x36, 0xe5, 0x6a, 0x40, 0x9d, - 0x66, 0x2b, 0xbc, 0x25, 0xba, 0x56, 0x81, 0x2f, 0xa1, 0xfc, 0x1b, 0x2b, 0x38, 0xd4, 0x85, 0x29, - 0xe6, 0x75, 0x83, 0x3a, 0x95, 0xb3, 0x91, 0x4b, 0x50, 0x3e, 0x77, 0x31, 0xcf, 0xa6, 0xd7, 0x0c, - 0x80, 0xea, 0x09, 0x35, 0x9b, 0x29, 0xb3, 0x95, 0xe1, 0xa4, 0x14, 0xfb, 0x7b, 0x16, 0x80, 0xec, - 0x7c, 0x9d, 0xb6, 0x3b, 0xa8, 0x0e, 0x63, 0x4e, 0x87, 0x34, 0xa9, 0xf6, 0x14, 0xb9, 0x14, 0x9d, - 0x23, 0xac, 0xf3, 0xde, 0x6a, 0x04, 0x91, 0x7f, 0x10, 0x8d, 0x0c, 0x2b, 0x68, 0x63, 0x0d, 0x0b, - 0x87, 0xba, 0x86, 0xf6, 0x7f, 0x44, 0x86, 0x29, 0x35, 0x14, 0x6e, 0x27, 0x85, 0x70, 0xa5, 0x19, - 0x91, 0x9d, 0x14, 0x3c, 0x58, 0xd2, 0x8e, 0x6e, 0x6f, 0x4f, 0x49, 0xef, 0x21, 0xb5, 0xac, 0xac, - 0x64, 0x17, 0xdf, 0xa4, 0x7b, 0xd2, 0x95, 0x5c, 0xd6, 0xae, 0x44, 0x1a, 0xf1, 0x9f, 0x49, 0xf8, - 0x76, 0x6e, 0x33, 0x8d, 0x99, 0x88, 0xb6, 0xdb, 0x7b, 0x7e, 0xe4, 0xf3, 0xff, 0xd5, 0xd2, 0x27, - 0xe1, 0xcd, 0x2e, 0x0b, 0xbd, 0x8e, 0xf3, 0x75, 0x8a, 0x5a, 0xa9, 0x5d, 0xfc, 0x85, 0x3c, 0xbb, - 0x18, 0xc1, 0xfc, 0x44, 0xb7, 0xf2, 0x1f, 0x2c, 0x58, 0xec, 0x3f, 0x9e, 0xbc, 0xfb, 0x59, 0x3c, - 0xdc, 0xfd, 0x5c, 0x86, 0x52, 0x97, 0xd1, 0x35, 0xa7, 0x49, 0x59, 0x28, 0x26, 0x3e, 0x11, 0xfb, - 0x99, 0x3b, 0x9a, 0x80, 0x63, 0x1e, 0xfb, 0xbb, 0x45, 0x40, 0xbd, 0x47, 0x94, 0x5b, 0xac, 0x80, - 0xfa, 0xde, 0x1d, 0xbc, 0x91, 0xb6, 0x58, 0x58, 0x36, 0x63, 0x4d, 0xe7, 0x13, 0xae, 0xb7, 0x48, - 0x10, 0xa6, 0xe3, 0xbf, 0x55, 0xde, 0x88, 0x25, 0xcd, 0x98, 0xf0, 0xd8, 0xe1, 0x4e, 0x78, 0x13, - 0xe6, 0xbb, 0x62, 0xc8, 0xb7, 0x49, 0xd0, 0xa4, 0xa1, 0x36, 0xc9, 0x62, 0x5d, 0x27, 0xaa, 0x3f, - 0xa5, 0x06, 0x33, 0x7f, 0x27, 0x83, 0x07, 0x67, 0xf6, 0x44, 0x5b, 0x50, 0xda, 0xd1, 0x1b, 0xab, - 0x8e, 0xdb, 0x85, 0xa1, 0xb4, 0x54, 0x3a, 0x89, 0xe8, 0x5f, 0x1c, 0xc3, 0xa2, 0x9b, 0x30, 0xd2, - 0xa2, 0xed, 0xce, 0xc2, 0xa8, 0x80, 0xff, 0xb9, 0xbc, 0xa6, 0xac, 0x3a, 0xc1, 0x63, 0x01, 0xfe, - 0x17, 0x16, 0x38, 0xf6, 0xaf, 0x83, 0x5c, 0xee, 0x3c, 0xfb, 0x76, 0x70, 0x84, 0xf1, 0x3c, 0x8c, - 0xef, 0xd2, 0x20, 0x5a, 0x4e, 0x03, 0xec, 0xae, 0x6c, 0xc6, 0x9a, 0x6e, 0xff, 0x8b, 0x05, 0xf3, - 0x62, 0x04, 0x6b, 0x0e, 0xab, 0x7b, 0xbb, 0x34, 0xd8, 0xc3, 0x94, 0x75, 0xdb, 0x87, 0x3c, 0xa0, - 0x35, 0x98, 0x65, 0xb4, 0xb3, 0x4b, 0x83, 0x55, 0xcf, 0x65, 0x61, 0x40, 0x1c, 0x37, 0x54, 0x23, - 0x5b, 0x50, 0xdc, 0xb3, 0xb5, 0x14, 0x1d, 0xf7, 0xf4, 0x40, 0xcf, 0xc1, 0x84, 0x1a, 0x36, 0x8f, - 0x5f, 0xb8, 0x37, 0x9f, 0xe4, 0x8e, 0x5f, 0xcd, 0x89, 0xe1, 0x88, 0x6a, 0xff, 0xc8, 0x82, 0x39, - 0x31, 0xab, 0x5a, 0x77, 0x8b, 0xd5, 0x03, 0xc7, 0xe7, 0x71, 0xf7, 0x93, 0x38, 0xa5, 0x2b, 0x30, - 0xdd, 0xd0, 0x0b, 0xbf, 0xe1, 0x74, 0x9c, 0x50, 0x28, 0xee, 0x68, 0xf5, 0xa4, 0xc2, 0x98, 0x5e, - 0x4b, 0x50, 0x71, 0x8a, 0xdb, 0xfe, 0xd3, 0x22, 0x1c, 0xd7, 0x2c, 0xb4, 0xb1, 0x12, 0x84, 0xce, - 0x36, 0xa9, 0x87, 0x0c, 0x35, 0x60, 0xb2, 0x11, 0x37, 0x87, 0xea, 0x38, 0xfc, 0x6c, 0x45, 0xe6, - 0x98, 0x15, 0x33, 0xc7, 0xac, 0xf8, 0x3b, 0x4d, 0xde, 0xc0, 0x2a, 0x3c, 0x95, 0xad, 0xec, 0x9e, - 0xad, 0xdc, 0x76, 0x3a, 0x34, 0x8e, 0x5c, 0x0c, 0xf8, 0x10, 0x27, 0x50, 0xd1, 0x3d, 0x28, 0x36, - 0x9d, 0x50, 0x79, 0x84, 0x01, 0xc3, 0x8a, 0x6b, 0x4e, 0x5a, 0xd5, 0x62, 0xf7, 0x75, 0xcd, 0x09, - 0x31, 0x47, 0x44, 0x5b, 0x91, 0xb7, 0x91, 0x89, 0xde, 0xa5, 0xc1, 0xb0, 0x85, 0xa9, 0x4e, 0xa3, - 0xf7, 0xf3, 0x33, 0x5b, 0x30, 0x26, 0x4c, 0x9c, 0x0e, 0x8b, 0x06, 0x94, 0x91, 0x75, 0x58, 0x62, - 0x19, 0x82, 0xca, 0xb0, 0x42, 0xb6, 0x3f, 0x2b, 0xc0, 0x6c, 0xbc, 0x7e, 0xab, 0x5e, 0xa7, 0xe3, - 0x84, 0x68, 0x11, 0x0a, 0x4e, 0x43, 0x69, 0x20, 0xa8, 0x8e, 0x85, 0xf5, 0x35, 0x5c, 0x70, 0x1a, - 0xe8, 0x59, 0x18, 0xdb, 0x0a, 0x88, 0x5b, 0x6f, 0x29, 0xcd, 0x8b, 0x80, 0xab, 0xa2, 0x15, 0x2b, - 0x2a, 0x77, 0xff, 0x21, 0x69, 0x2a, 0x85, 0x8b, 0xd6, 0xef, 0x36, 0x69, 0x62, 0xde, 0xce, 0x35, - 0x9d, 0x75, 0xb7, 0x7e, 0x85, 0xd6, 0xe5, 0xce, 0x1b, 0x9a, 0x5e, 0x93, 0xcd, 0x58, 0xd3, 0xb9, - 0x44, 0xd2, 0x0d, 0x5b, 0x5e, 0x20, 0x6c, 0x9a, 0x21, 0x71, 0x45, 0xb4, 0x62, 0x45, 0xe5, 0x0e, - 0xaa, 0x2e, 0xc6, 0x1f, 0xd2, 0x40, 0xf8, 0x02, 0x23, 0x11, 0x5a, 0xd5, 0x04, 0x1c, 0xf3, 0xa0, - 0xfb, 0x50, 0xae, 0x07, 0x94, 0x84, 0x5e, 0xb0, 0x46, 0x42, 0xba, 0x30, 0x9e, 0x5b, 0x03, 0x67, - 0x78, 0x36, 0xbe, 0x1a, 0x43, 0x60, 0x13, 0xcf, 0xfe, 0xb1, 0x05, 0x0b, 0xf1, 0xd2, 0x4a, 0x27, - 0x1d, 0x65, 0xa0, 0x6a, 0x79, 0xac, 0x3e, 0xcb, 0xf3, 0x2c, 0x8c, 0x35, 0x62, 0x4f, 0x6b, 0xcc, - 0x59, 0xb9, 0x59, 0x45, 0x45, 0xe7, 0x00, 0x9a, 0x4e, 0xa8, 0x8c, 0x83, 0x5a, 0xec, 0x28, 0xef, - 0xb9, 0x16, 0x51, 0xb0, 0xc1, 0x85, 0xee, 0x41, 0x49, 0x0c, 0x73, 0xc8, 0x63, 0x27, 0x5c, 0xcf, - 0xaa, 0x06, 0xc0, 0x31, 0x96, 0xfd, 0xe9, 0x08, 0x8c, 0x2b, 0xb7, 0x8a, 0x7e, 0x19, 0x26, 0x3a, - 0xaa, 0x92, 0x21, 0x26, 0xc9, 0x5d, 0xd1, 0x40, 0x32, 0x6e, 0x89, 0x4d, 0x7f, 0x8b, 0x86, 0x24, - 0x9e, 0x48, 0xdc, 0x86, 0x23, 0x54, 0x1e, 0x1c, 0x90, 0xb6, 0x43, 0x98, 0xd8, 0x37, 0x23, 0x38, - 0x58, 0xe1, 0x8d, 0x58, 0xd2, 0xd0, 0x57, 0xa3, 0xe0, 0xa0, 0x34, 0x7c, 0x70, 0x10, 0x2d, 0x7e, - 0x2a, 0x40, 0x78, 0x07, 0xc6, 0xa5, 0x32, 0xe9, 0x03, 0xba, 0x3c, 0xb0, 0x81, 0x91, 0xfa, 0x18, - 0x2b, 0xbd, 0xfc, 0x9f, 0x61, 0x0d, 0x88, 0x6a, 0x91, 0x7d, 0x19, 0x11, 0xd0, 0x2f, 0xe4, 0xb0, - 0x2f, 0x7d, 0x0d, 0x4a, 0x2d, 0x32, 0x28, 0xa3, 0x79, 0x40, 0x85, 0xc9, 0xe8, 0x67, 0x41, 0xf8, - 0x12, 0xab, 0x74, 0x79, 0x98, 0xf8, 0x4b, 0xe5, 0xea, 0xd3, 0xc9, 0x1c, 0x5b, 0x67, 0xd3, 0xf6, - 0x1f, 0x15, 0x61, 0x4e, 0x71, 0xae, 0x7a, 0xed, 0x36, 0xad, 0x0b, 0x37, 0x29, 0xed, 0x53, 0x31, - 0xd3, 0x3e, 0x39, 0x30, 0xea, 0x84, 0xb4, 0xa3, 0xb3, 0x80, 0x6a, 0xae, 0xd1, 0xc4, 0x32, 0x2a, - 0xeb, 0x1c, 0x44, 0x16, 0xde, 0xa2, 0x5d, 0x52, 0x5c, 0x58, 0x4a, 0x40, 0xbf, 0x63, 0xc1, 0xf1, - 0x5d, 0x1a, 0x38, 0xdb, 0x4e, 0x5d, 0x94, 0xcd, 0xae, 0x3b, 0x2c, 0xf4, 0x82, 0x3d, 0xe5, 0x11, - 0x5e, 0x19, 0x4c, 0xf2, 0x5d, 0x03, 0x60, 0xdd, 0xdd, 0xf6, 0xaa, 0x4f, 0x2b, 0x69, 0xc7, 0xef, - 0xf6, 0x42, 0xe3, 0x2c, 0x79, 0x8b, 0x3e, 0x40, 0x3c, 0xda, 0x8c, 0xaa, 0xdd, 0x86, 0x59, 0xb5, - 0x1b, 0x78, 0x60, 0x7a, 0xb2, 0xda, 0x64, 0x99, 0xd5, 0xbe, 0x8f, 0x2d, 0x28, 0x2b, 0xfa, 0x86, - 0xc3, 0x42, 0xf4, 0x6e, 0xcf, 0x69, 0xaf, 0x0c, 0x76, 0xda, 0x79, 0x6f, 0x71, 0xd6, 0xa3, 0x22, - 0x89, 0x6e, 0x31, 0x4e, 0x3a, 0xd6, 0x5b, 0x2a, 0x17, 0xf6, 0xa5, 0x5c, 0xe3, 0x37, 0xd2, 0x24, - 0x8e, 0xa1, 0xf6, 0xce, 0x0e, 0x60, 0x2a, 0x71, 0xc8, 0xd1, 0x05, 0x18, 0xd9, 0x71, 0x5c, 0xed, - 0xf5, 0x7e, 0x5a, 0xc7, 0x53, 0x6f, 0x3a, 0x6e, 0xe3, 0xe1, 0x83, 0xa5, 0xb9, 0x04, 0x33, 0x6f, - 0xc4, 0x82, 0xfd, 0xe0, 0x30, 0xec, 0xd2, 0xc4, 0xb7, 0xfe, 0x6c, 0xe9, 0xd8, 0x87, 0xdf, 0x3f, - 0x73, 0xcc, 0xfe, 0xa8, 0x08, 0xb3, 0xe9, 0x55, 0x1d, 0xa0, 0x0a, 0x1e, 0xdb, 0xb0, 0x89, 0x23, - 0xb5, 0x61, 0x85, 0xa3, 0xb3, 0x61, 0xc5, 0xa3, 0xb0, 0x61, 0x23, 0x87, 0x66, 0xc3, 0xec, 0x7f, - 0xb2, 0x60, 0x3a, 0xda, 0x99, 0xf7, 0xba, 0xdc, 0xb3, 0xc6, 0xab, 0x6e, 0x1d, 0xfe, 0xaa, 0x7f, - 0x0d, 0xc6, 0x65, 0x45, 0x8a, 0xa9, 0x33, 0xf9, 0x72, 0x3e, 0xa3, 0x29, 0xfb, 0x1a, 0x31, 0x93, - 0x6c, 0xc0, 0x1a, 0xd5, 0x7e, 0x37, 0x9a, 0x8f, 0x22, 0xc9, 0x88, 0x22, 0xe0, 0xf1, 0x96, 0x25, - 0xf2, 0x57, 0x23, 0xa2, 0xe0, 0xad, 0x58, 0x51, 0x91, 0x2d, 0xcc, 0xb9, 0x0e, 0x6c, 0x4b, 0x32, - 0x33, 0x16, 0x25, 0x70, 0x69, 0x95, 0x9b, 0x94, 0xd9, 0x3f, 0x2e, 0x46, 0xa7, 0x47, 0xd5, 0x4c, - 0xdf, 0x07, 0x90, 0x96, 0x89, 0x36, 0xd6, 0x5d, 0x65, 0x7a, 0x57, 0x87, 0x70, 0x04, 0xca, 0x1c, - 0x72, 0x14, 0x69, 0x7b, 0xa3, 0x18, 0x20, 0x26, 0x60, 0x43, 0x14, 0xfa, 0x06, 0x94, 0x89, 0xaa, - 0xd3, 0x5f, 0xf5, 0x02, 0xa5, 0xc3, 0x6b, 0xc3, 0x48, 0x5e, 0x89, 0x61, 0xd2, 0xf7, 0x2d, 0x31, - 0x05, 0x9b, 0xd2, 0x16, 0x03, 0x98, 0x49, 0x8d, 0x37, 0xc3, 0xfa, 0xae, 0x27, 0xad, 0xef, 0xf9, - 0x3c, 0x6e, 0x41, 0x5d, 0x3e, 0x98, 0x17, 0x35, 0x0c, 0x66, 0xd3, 0x23, 0x3d, 0x34, 0xa1, 0x89, - 0x1b, 0x0f, 0xd3, 0xde, 0xff, 0xa8, 0x00, 0xa5, 0xe8, 0xc4, 0xe7, 0xc9, 0x52, 0xa5, 0xa7, 0x2e, - 0x1c, 0x90, 0x49, 0x14, 0x07, 0xc9, 0x24, 0x46, 0xfa, 0x84, 0xca, 0xd7, 0x60, 0x4e, 0xde, 0x22, - 0xac, 0xb6, 0x68, 0x7d, 0x47, 0x0e, 0x51, 0x65, 0x0a, 0x4f, 0x29, 0xe6, 0xb9, 0xeb, 0x69, 0x06, - 0xdc, 0xdb, 0xc7, 0xbc, 0x87, 0x19, 0x7b, 0xf4, 0x3d, 0x8c, 0x91, 0x92, 0x8c, 0x0f, 0x9e, 0x92, - 0x4c, 0x1c, 0x9c, 0x92, 0xd8, 0x7f, 0x6e, 0x01, 0xea, 0xcd, 0x3f, 0xf3, 0xac, 0x38, 0x49, 0x1b, - 0xf4, 0x01, 0xdd, 0x7d, 0x3a, 0x09, 0xec, 0x6f, 0xd7, 0xed, 0xe3, 0x30, 0x77, 0xcd, 0x09, 0xaf, - 0x77, 0xb7, 0x36, 0xbb, 0xed, 0xb6, 0xb2, 0x97, 0xaa, 0x71, 0x83, 0x24, 0x1a, 0x3f, 0x1c, 0x83, - 0x29, 0x9d, 0x85, 0xe4, 0xae, 0xfe, 0xdd, 0x3b, 0x8c, 0xd8, 0x3d, 0xab, 0xb0, 0x57, 0x83, 0x13, - 0x8e, 0xcb, 0x68, 0xbd, 0x1b, 0xd0, 0xda, 0x8e, 0xe3, 0xdf, 0xde, 0xa8, 0x89, 0xd3, 0xb6, 0xa7, - 0xaa, 0x9a, 0xa7, 0xd4, 0x88, 0x4e, 0xac, 0x67, 0x31, 0xe1, 0xec, 0xbe, 0x3c, 0x13, 0x0b, 0x28, - 0x69, 0x54, 0x4d, 0x8d, 0x8e, 0x8c, 0x17, 0x8e, 0x28, 0xd8, 0xe0, 0x42, 0x17, 0xa0, 0xfc, 0x7e, - 0xe0, 0x84, 0x54, 0x75, 0x92, 0x1a, 0x1e, 0x99, 0x9d, 0x7b, 0x31, 0x09, 0x9b, 0x7c, 0x68, 0x17, - 0xca, 0x7e, 0xbc, 0xc8, 0xaa, 0xd2, 0x37, 0xa0, 0xb5, 0x35, 0x76, 0x67, 0x33, 0xf0, 0x3a, 0x1e, - 0x8f, 0x23, 0xdf, 0xa2, 0xf5, 0x16, 0x71, 0x1d, 0xd6, 0x91, 0x09, 0xad, 0xc1, 0x82, 0x4d, 0x41, - 0xa8, 0x09, 0x63, 0x01, 0x75, 0x1b, 0x2a, 0xbb, 0x1e, 0x58, 0xe4, 0x9b, 0xbc, 0x09, 0x8b, 0x8e, - 0x19, 0x22, 0xc5, 0x06, 0x49, 0x2a, 0x56, 0xf0, 0xc8, 0x35, 0xeb, 0xa4, 0x32, 0x2d, 0x5f, 0x19, - 0x50, 0x96, 0xee, 0x96, 0x21, 0xa9, 0x7f, 0xcd, 0xf4, 0x1d, 0x55, 0x33, 0x95, 0xf1, 0xd5, 0xeb, - 0x83, 0x89, 0xba, 0x4e, 0xdb, 0x9d, 0x0c, 0x29, 0xe9, 0xfa, 0xe9, 0xc7, 0xa3, 0x30, 0x73, 0xcd, - 0x19, 0xba, 0xcc, 0x17, 0xc2, 0x97, 0xe4, 0xb1, 0xab, 0x51, 0x95, 0x99, 0xd4, 0xc2, 0x80, 0x84, - 0xb4, 0xa9, 0x6f, 0x56, 0x2e, 0xa9, 0xae, 0x5f, 0x5a, 0xcd, 0x66, 0x7b, 0xd8, 0x9f, 0x84, 0xfb, - 0x41, 0x0f, 0x6c, 0x9a, 0x2f, 0xc3, 0x14, 0x0b, 0x03, 0xa7, 0x1e, 0xca, 0x42, 0x22, 0x5b, 0x28, - 0x8b, 0x13, 0x14, 0xdf, 0xc2, 0x99, 0x44, 0x9c, 0xe4, 0xcd, 0xac, 0x4f, 0x8e, 0xe4, 0xae, 0x4f, - 0x2e, 0x43, 0x89, 0xb4, 0xdb, 0xde, 0xfb, 0xb7, 0x49, 0x93, 0x29, 0xb3, 0x1f, 0x99, 0xd8, 0x15, - 0x4d, 0xc0, 0x31, 0x0f, 0xaa, 0x00, 0x38, 0x4d, 0xd7, 0x0b, 0xa8, 0xe8, 0x31, 0x26, 0x82, 0x9c, - 0x69, 0x7e, 0x48, 0xd7, 0xa3, 0x56, 0x6c, 0x70, 0xf4, 0xb7, 0x16, 0xe3, 0x8f, 0x61, 0x2d, 0x5e, - 0x86, 0x49, 0xc7, 0xad, 0xb7, 0xbb, 0x0d, 0xba, 0x49, 0xc2, 0x16, 0x5b, 0x98, 0x10, 0xc3, 0x98, - 0xdd, 0x7f, 0xb0, 0x34, 0xb9, 0x6e, 0xb4, 0xe3, 0x04, 0x17, 0xef, 0x45, 0x3f, 0x30, 0x7a, 0x95, - 0xe2, 0x5e, 0x6f, 0x7c, 0x60, 0xf6, 0x32, 0xb9, 0x32, 0x2a, 0xb8, 0x90, 0xab, 0x82, 0xfb, 0xc7, - 0x45, 0x18, 0x93, 0x0e, 0x14, 0x5d, 0x48, 0x5d, 0x8d, 0x9f, 0xea, 0xb9, 0x1a, 0x2f, 0x67, 0xbd, - 0x70, 0xb0, 0x61, 0xcc, 0x61, 0xac, 0x9b, 0x8c, 0x29, 0xd7, 0x45, 0x0b, 0x56, 0x14, 0xe4, 0x00, - 0x10, 0x7d, 0xb7, 0xad, 0x13, 0x86, 0x0b, 0x79, 0x2f, 0xff, 0x53, 0x17, 0xff, 0x11, 0x81, 0x61, - 0x03, 0x5c, 0xd4, 0x55, 0x3d, 0x77, 0xdb, 0x69, 0xaa, 0xea, 0xd7, 0x15, 0x23, 0x57, 0x8d, 0x1f, - 0x5a, 0x7d, 0x2d, 0x7a, 0x89, 0x15, 0xa7, 0xad, 0x09, 0x06, 0x9e, 0xbf, 0xde, 0xa8, 0xdd, 0xba, - 0x29, 0xa7, 0xb3, 0x2a, 0x10, 0xb1, 0x42, 0xe6, 0x32, 0xbc, 0x6e, 0xe8, 0x77, 0xb5, 0x79, 0x3e, - 0x14, 0x19, 0xb7, 0x04, 0x22, 0x56, 0xc8, 0xf6, 0x47, 0x16, 0xcc, 0x18, 0x91, 0x4d, 0x2d, 0xa4, - 0x3e, 0x4f, 0x27, 0xbb, 0x8c, 0xb2, 0x74, 0x3a, 0x79, 0x87, 0x51, 0x86, 0x05, 0xc5, 0x98, 0x7d, - 0xe1, 0xa8, 0x66, 0x6f, 0xff, 0xb7, 0x05, 0x4f, 0x71, 0x1b, 0x28, 0x4b, 0xd1, 0xd4, 0xe7, 0x66, - 0xdd, 0xad, 0xef, 0xa9, 0x18, 0x40, 0xb8, 0x4a, 0xdf, 0x63, 0x8e, 0xa8, 0x96, 0x58, 0x69, 0x57, - 0xa9, 0x29, 0xd8, 0xe0, 0x1a, 0xe0, 0xba, 0xe3, 0xc8, 0x2e, 0xb2, 0x79, 0x10, 0xc7, 0xe7, 0xc1, - 0x4f, 0x93, 0xb2, 0x87, 0x71, 0x10, 0xa7, 0x09, 0x38, 0xe6, 0xb1, 0xff, 0xb2, 0xc0, 0xf7, 0xe5, - 0xb1, 0xee, 0xe2, 0x47, 0x0f, 0x77, 0x0a, 0x57, 0x60, 0x5a, 0x04, 0xf3, 0xec, 0xaa, 0xd3, 0x16, - 0x56, 0x41, 0xad, 0x63, 0x64, 0x02, 0xee, 0x26, 0xa8, 0x38, 0xc5, 0xad, 0xef, 0xf2, 0x8b, 0x07, - 0xdd, 0xe5, 0x8f, 0x0c, 0x71, 0x97, 0xff, 0x9d, 0x02, 0x9c, 0xcc, 0xf6, 0xa5, 0xe8, 0x7e, 0xea, - 0x4a, 0xff, 0xc2, 0xe0, 0x9e, 0x79, 0x90, 0x7b, 0xfc, 0x66, 0x54, 0x4a, 0x90, 0x91, 0xf2, 0x57, - 0x06, 0x87, 0xcf, 0x54, 0xec, 0xbe, 0x25, 0xd2, 0xa3, 0xba, 0x93, 0xb7, 0xff, 0xca, 0x02, 0xa9, - 0x41, 0x79, 0x42, 0x8a, 0xe4, 0x9d, 0x41, 0x61, 0xa0, 0x3b, 0x83, 0x03, 0x6e, 0x73, 0xe2, 0xeb, - 0x8a, 0x91, 0x47, 0x5d, 0x57, 0xd8, 0x3f, 0xb4, 0x60, 0x3e, 0xeb, 0x0a, 0x2c, 0xcf, 0xf0, 0x5f, - 0x84, 0x09, 0xbf, 0x4d, 0xc2, 0x6d, 0x2f, 0xe8, 0xa4, 0x1f, 0x58, 0x6d, 0xaa, 0x76, 0x1c, 0x71, - 0xa0, 0x80, 0xdb, 0x1a, 0x55, 0x6b, 0xd3, 0x6e, 0xe5, 0x4a, 0xde, 0x8c, 0x28, 0x79, 0x77, 0x63, - 0xda, 0x2a, 0x8d, 0x8c, 0x0d, 0x29, 0xf6, 0xef, 0x8e, 0xc2, 0x9c, 0xe8, 0x32, 0x6c, 0xd0, 0x37, - 0xcc, 0x0e, 0xf9, 0x70, 0x52, 0xa8, 0x75, 0x6f, 0x9c, 0x28, 0x37, 0xed, 0xa2, 0xea, 0x7f, 0x72, - 0x3d, 0x93, 0xeb, 0x61, 0x5f, 0x0a, 0xee, 0x83, 0xdb, 0x1b, 0xfc, 0xc1, 0xff, 0xbf, 0xe0, 0xcf, - 0x54, 0xb6, 0xf1, 0x03, 0x95, 0xad, 0x6f, 0xa8, 0x38, 0xf1, 0x18, 0xa1, 0x62, 0x6f, 0xf8, 0x56, - 0xca, 0x15, 0xbe, 0xfd, 0xbd, 0x05, 0x27, 0x8d, 0x14, 0xec, 0xff, 0xf0, 0x83, 0xa2, 0x07, 0x16, - 0x9c, 0x7a, 0x64, 0x32, 0x89, 0x1a, 0x29, 0x87, 0xf1, 0x7a, 0xee, 0x0c, 0xf5, 0x27, 0xfa, 0xfe, - 0xeb, 0x0f, 0x0b, 0x30, 0x7f, 0x18, 0x2f, 0xbf, 0x0e, 0x39, 0x00, 0x3a, 0x03, 0x23, 0x7e, 0x1c, - 0x33, 0x44, 0xb1, 0x97, 0x88, 0x14, 0x04, 0x25, 0xb9, 0x95, 0xc5, 0x83, 0xb7, 0x92, 0x1b, 0x43, - 0x97, 0xbe, 0x2f, 0x9e, 0xad, 0x8e, 0x26, 0x8d, 0xe1, 0x4d, 0xd9, 0x8c, 0x35, 0xdd, 0xfe, 0x77, - 0x0b, 0x9e, 0x7e, 0x44, 0x5a, 0x6f, 0xbc, 0xc4, 0xb0, 0xf2, 0xbc, 0x92, 0x78, 0x32, 0x5e, 0xfc, - 0x7d, 0xbb, 0x00, 0xe3, 0x9b, 0x81, 0x27, 0xde, 0x39, 0x1c, 0xfd, 0x95, 0xf9, 0x2d, 0x18, 0x61, - 0x3e, 0xad, 0xab, 0x49, 0x9c, 0x1d, 0xb0, 0x62, 0x24, 0x87, 0x57, 0xf3, 0x69, 0x5d, 0x16, 0x37, - 0xf8, 0x5f, 0x58, 0x00, 0x19, 0x77, 0xbf, 0xb9, 0x6c, 0x83, 0x86, 0x7c, 0xf4, 0xdd, 0xef, 0xc7, - 0x16, 0x94, 0x15, 0xe7, 0x13, 0x7b, 0xc9, 0xa8, 0xc6, 0xd7, 0xe7, 0x92, 0xf1, 0xf7, 0xe2, 0x19, - 0xf0, 0x45, 0x43, 0xbf, 0x06, 0x73, 0xbe, 0x56, 0xe0, 0x4d, 0xaf, 0xed, 0xd4, 0x9d, 0xbc, 0xa1, - 0xed, 0x66, 0xa2, 0xfb, 0x5e, 0x5c, 0xe1, 0xde, 0x4c, 0xe3, 0xe2, 0x5e, 0x51, 0xb6, 0x07, 0x53, - 0x89, 0xa5, 0x47, 0xe7, 0xf5, 0x97, 0x14, 0xc9, 0x74, 0x5e, 0x7e, 0x49, 0xf1, 0xf0, 0xc1, 0xd2, - 0xa4, 0x62, 0x37, 0xbf, 0xac, 0xc8, 0xf3, 0xbd, 0xc2, 0x5f, 0x14, 0xa0, 0x14, 0x8d, 0xec, 0x0b, - 0x50, 0xf0, 0x3b, 0x09, 0x05, 0x3f, 0x9f, 0x73, 0x4d, 0x85, 0x8a, 0x47, 0xe6, 0xcd, 0x50, 0xf3, - 0xfb, 0x29, 0x35, 0xcf, 0xbb, 0x59, 0x07, 0x28, 0xfa, 0x77, 0x2d, 0xb1, 0x2f, 0x92, 0xf7, 0x0b, - 0x50, 0xf5, 0xdb, 0x49, 0x55, 0x5f, 0xce, 0x39, 0x9b, 0x3e, 0xca, 0xfe, 0x83, 0x02, 0x1c, 0xef, - 0x35, 0xcf, 0x47, 0x97, 0xfc, 0x20, 0x06, 0xd3, 0x4d, 0xf3, 0x6e, 0x41, 0x1f, 0xa5, 0xf3, 0x03, - 0xdf, 0x60, 0xc7, 0x7d, 0xe3, 0x68, 0x2a, 0xd1, 0xcc, 0x70, 0x4a, 0x04, 0xfa, 0x06, 0xcc, 0x92, - 0xe4, 0x27, 0x18, 0x7a, 0x19, 0xf3, 0x16, 0xab, 0x94, 0xe0, 0x28, 0xdc, 0x4d, 0x11, 0x18, 0xee, - 0x11, 0x64, 0x7f, 0xd3, 0x82, 0x99, 0x94, 0x05, 0xe0, 0xa1, 0x81, 0xb8, 0x95, 0x4d, 0x87, 0x06, - 0xea, 0x0e, 0x4f, 0xd0, 0xd0, 0x26, 0xcc, 0x93, 0x6e, 0xe8, 0x45, 0x7d, 0xdf, 0x70, 0xc9, 0x56, - 0x9b, 0x36, 0x54, 0xd4, 0x15, 0x3d, 0x65, 0x5e, 0xc9, 0xe0, 0xc1, 0x99, 0x3d, 0xed, 0x7f, 0x2c, - 0x00, 0x8a, 0x1a, 0xf3, 0xbc, 0x66, 0xb8, 0x0f, 0xe3, 0xdb, 0x72, 0x6b, 0x1f, 0xef, 0x39, 0x4a, - 0xb5, 0x6c, 0xbe, 0xc8, 0xd1, 0x98, 0xe8, 0x97, 0x0e, 0xe7, 0xa8, 0x42, 0xef, 0x31, 0x45, 0xef, - 0x00, 0x6c, 0x3b, 0xae, 0xc3, 0x5a, 0x43, 0x3e, 0x9c, 0x13, 0x79, 0xc6, 0xd5, 0x08, 0x01, 0x1b, - 0x68, 0xf6, 0x77, 0x4c, 0x13, 0x20, 0x7c, 0xc5, 0x40, 0xfb, 0xfa, 0x7c, 0x72, 0x31, 0x4b, 0xbd, - 0x4f, 0x95, 0xa2, 0x85, 0x79, 0x9b, 0xe3, 0xd1, 0xa8, 0xb4, 0x9a, 0xdb, 0x36, 0x86, 0xd4, 0x37, - 0x07, 0x41, 0x7d, 0x86, 0x25, 0xa0, 0xfd, 0xed, 0x31, 0x43, 0x2b, 0x95, 0x63, 0xb9, 0x01, 0xa8, - 0x4d, 0x58, 0x78, 0x9d, 0xb8, 0x0d, 0xae, 0x43, 0x74, 0x3b, 0xa0, 0x4c, 0x5f, 0x70, 0x2d, 0x2a, - 0x14, 0xb4, 0xd1, 0xc3, 0x81, 0x33, 0x7a, 0xa1, 0x0b, 0x49, 0x27, 0xb5, 0x94, 0x76, 0x52, 0xd3, - 0xf1, 0x91, 0x18, 0xce, 0x4d, 0xa1, 0xf7, 0x0c, 0x73, 0x5b, 0xcc, 0xf3, 0x76, 0x21, 0x35, 0xed, - 0x8a, 0xfe, 0x78, 0x53, 0x3e, 0x20, 0x88, 0x6c, 0xb0, 0x6e, 0x36, 0x6c, 0xb0, 0x71, 0x0c, 0x46, - 0x8f, 0xe0, 0x18, 0xfc, 0x2a, 0xcc, 0x6d, 0xa7, 0x9f, 0xb4, 0xa9, 0x9b, 0xb4, 0x57, 0x87, 0x7c, - 0x11, 0x57, 0x3d, 0xb1, 0x1f, 0xbf, 0x83, 0x8a, 0x9b, 0x71, 0xaf, 0x20, 0xe4, 0xe9, 0xef, 0x07, - 0x45, 0x5d, 0x5a, 0xde, 0x6e, 0xe4, 0xa8, 0xde, 0x25, 0x2a, 0xda, 0xe9, 0x2f, 0x07, 0x25, 0x24, - 0x4e, 0x08, 0x48, 0x1d, 0xcd, 0xb1, 0xc3, 0x3c, 0x9a, 0x8b, 0x97, 0x61, 0x2a, 0xb1, 0xad, 0xb9, - 0x3e, 0x8b, 0xfd, 0x9b, 0xc4, 0xb9, 0x1e, 0xac, 0x40, 0xbf, 0x08, 0x05, 0xc2, 0xd2, 0x6f, 0x26, - 0x56, 0x18, 0x2e, 0x10, 0xb3, 0x78, 0x5f, 0x3c, 0xb2, 0xe2, 0x7d, 0x00, 0x71, 0x34, 0xa9, 0x3f, - 0x9d, 0x45, 0xf7, 0x55, 0x64, 0x65, 0xe5, 0xf9, 0x14, 0xb4, 0x07, 0xa6, 0x5f, 0x84, 0x65, 0xbf, - 0x07, 0x27, 0x32, 0x99, 0x63, 0xb3, 0x65, 0x1d, 0xb6, 0xd9, 0xfa, 0x37, 0x0b, 0x4e, 0x3d, 0xf2, - 0x36, 0x9c, 0x67, 0x37, 0x52, 0x9a, 0x9a, 0xf5, 0xab, 0x03, 0x07, 0x16, 0xc9, 0xb7, 0x11, 0x72, - 0x95, 0x65, 0x33, 0x56, 0x90, 0x0a, 0xbc, 0x4d, 0xb6, 0x94, 0x1b, 0x1c, 0x1c, 0x3c, 0xf9, 0xc6, - 0x22, 0x02, 0xdf, 0x20, 0x12, 0xbc, 0x4d, 0xb6, 0xec, 0x6f, 0x15, 0x60, 0x96, 0x47, 0x2d, 0x89, - 0x02, 0xe4, 0xa6, 0xfe, 0x16, 0x22, 0x87, 0x5f, 0x4c, 0xdd, 0x5c, 0x57, 0xc7, 0x13, 0x1f, 0x41, - 0xbc, 0xad, 0xcb, 0x12, 0xb9, 0xa6, 0xd0, 0x53, 0x1a, 0xad, 0x96, 0x7a, 0x6a, 0x19, 0x6f, 0xeb, - 0x2f, 0xbf, 0x8a, 0x79, 0x90, 0x7b, 0x3e, 0xa8, 0x91, 0xc8, 0xe6, 0xe7, 0x62, 0xf6, 0x47, 0x05, - 0x90, 0x3e, 0xf4, 0x0b, 0x48, 0x47, 0x7e, 0x31, 0x91, 0x8e, 0x0c, 0x18, 0x67, 0x8b, 0xc1, 0xf5, - 0x4d, 0x45, 0xd2, 0xf1, 0xcd, 0xd9, 0x3c, 0xa0, 0x8f, 0x4e, 0x43, 0xfe, 0xd6, 0x82, 0x92, 0xe0, - 0xfb, 0x02, 0x52, 0x90, 0xcd, 0x64, 0x0a, 0xf2, 0x42, 0x8e, 0x59, 0xf4, 0x49, 0x3f, 0xfe, 0x64, - 0x44, 0x8d, 0x3e, 0x8a, 0x9e, 0x5a, 0x24, 0x68, 0xa8, 0x90, 0x23, 0xb6, 0x00, 0xbc, 0x11, 0x4b, - 0x1a, 0xfa, 0x3a, 0xcc, 0x06, 0xf2, 0x10, 0xd1, 0xc6, 0xd5, 0xc8, 0x19, 0x17, 0x73, 0x3f, 0xc7, - 0xd4, 0x27, 0x31, 0x0a, 0xe5, 0x71, 0x0a, 0x15, 0xf7, 0xc8, 0xe1, 0x0e, 0xda, 0x4f, 0x1b, 0x3c, - 0xe5, 0xb8, 0x5e, 0x1d, 0xd2, 0xb8, 0x4a, 0x07, 0xdd, 0xd3, 0x8c, 0x7b, 0x05, 0xa1, 0xdf, 0xb6, - 0xe0, 0xb8, 0xdf, 0x9b, 0xab, 0x29, 0x45, 0x7d, 0x2d, 0xe7, 0x00, 0x62, 0x80, 0xea, 0x97, 0xf6, - 0x1f, 0x2c, 0x65, 0x65, 0x81, 0x38, 0x4b, 0x1c, 0x6a, 0xc1, 0xa4, 0xf9, 0x9e, 0x5d, 0xa9, 0xf4, - 0xb9, 0xfc, 0x0f, 0xe7, 0xe5, 0x1b, 0x08, 0xb3, 0x05, 0x27, 0x90, 0xed, 0xff, 0x1a, 0x85, 0xb2, - 0x71, 0x06, 0xfa, 0xc4, 0xa7, 0xe5, 0xa1, 0xe2, 0xd3, 0xb3, 0xc9, 0xf8, 0xf4, 0xe9, 0x74, 0x7c, - 0x0a, 0x42, 0x70, 0x22, 0x36, 0x65, 0x30, 0xad, 0xa2, 0x26, 0xfd, 0xcd, 0x80, 0x7c, 0xcc, 0x3c, - 0x74, 0x6c, 0x86, 0x78, 0xea, 0x7a, 0x35, 0x01, 0x89, 0x53, 0x22, 0xd0, 0x95, 0x48, 0x68, 0xad, - 0xdb, 0xe9, 0x90, 0x60, 0x6f, 0x61, 0x32, 0x79, 0x09, 0x7c, 0x35, 0x41, 0xc5, 0x29, 0x6e, 0xb4, - 0x09, 0x63, 0x32, 0xe8, 0x52, 0xef, 0xa4, 0x5e, 0xcc, 0x13, 0xcf, 0x49, 0x37, 0x25, 0xff, 0xc6, - 0x0a, 0xc7, 0x0c, 0xd1, 0x4b, 0x07, 0x84, 0xe8, 0x37, 0x00, 0x79, 0x5b, 0x22, 0xa6, 0x69, 0x5c, - 0x93, 0x3f, 0x2f, 0xc3, 0x15, 0x86, 0x1f, 0x98, 0x62, 0xbc, 0x61, 0xb7, 0x7a, 0x38, 0x70, 0x46, - 0x2f, 0x7e, 0xee, 0xeb, 0xdd, 0x20, 0xa0, 0x6e, 0xec, 0xf4, 0x55, 0x6c, 0x7c, 0x31, 0xa7, 0xe6, - 0xc7, 0x61, 0xf8, 0x3c, 0x3f, 0xf7, 0xab, 0x29, 0x54, 0xdc, 0x23, 0x07, 0xbd, 0x07, 0x53, 0x5c, - 0x85, 0x62, 0xc1, 0xf0, 0x98, 0x82, 0xe7, 0xf6, 0x1f, 0x2c, 0x4d, 0x6d, 0x98, 0x90, 0x38, 0x29, - 0xc1, 0xfe, 0x9f, 0x02, 0x24, 0x8e, 0x06, 0xfa, 0xa6, 0x05, 0x73, 0x24, 0xf5, 0xdb, 0x28, 0x3a, - 0xc0, 0xfa, 0x4a, 0xbe, 0x1f, 0xac, 0xe9, 0xf9, 0x69, 0x95, 0xb8, 0x22, 0x99, 0x66, 0x61, 0xb8, - 0x57, 0xa8, 0x30, 0x44, 0xa4, 0xf7, 0xc7, 0x6f, 0xf2, 0x19, 0xa2, 0x8c, 0x5f, 0xcf, 0x91, 0x86, - 0x28, 0x83, 0x80, 0xb3, 0xc4, 0xa1, 0xaf, 0xc2, 0x08, 0x09, 0x9a, 0x3a, 0x37, 0xce, 0x2f, 0x56, - 0xff, 0xa6, 0x51, 0xec, 0xb2, 0x57, 0x82, 0x26, 0xc3, 0x02, 0xd4, 0xfe, 0x7e, 0x11, 0x66, 0xd3, - 0x5f, 0xf9, 0xa8, 0x87, 0xd1, 0x23, 0x99, 0x0f, 0xa3, 0xbf, 0x0c, 0xa3, 0xa4, 0x1e, 0x46, 0x8f, - 0x8b, 0xe3, 0x2f, 0xdb, 0x78, 0x23, 0x96, 0x34, 0x74, 0x0f, 0x4a, 0x2c, 0x24, 0x41, 0xc8, 0xf3, - 0x17, 0x95, 0x42, 0xe6, 0xfe, 0x8a, 0xaf, 0xa6, 0x01, 0x70, 0x8c, 0x85, 0x2e, 0x26, 0xcd, 0x99, - 0x9d, 0x36, 0x67, 0x73, 0xe6, 0x5c, 0x86, 0xcd, 0xb8, 0x3b, 0x50, 0x36, 0xf6, 0x41, 0x19, 0xfe, - 0x4b, 0xb9, 0xd7, 0x3d, 0x56, 0xbb, 0x19, 0xf9, 0xc3, 0x48, 0x31, 0xc5, 0xc4, 0x8f, 0xf3, 0x43, - 0xb1, 0x5a, 0x8f, 0x95, 0x1f, 0x8a, 0xe5, 0x32, 0xd0, 0xec, 0x19, 0x98, 0x4a, 0x3c, 0xd6, 0x17, - 0x45, 0xef, 0x7b, 0x24, 0xa0, 0x2d, 0xaf, 0xcb, 0xe8, 0x93, 0x5a, 0xf4, 0x8e, 0x06, 0x78, 0xd8, - 0x45, 0xef, 0x18, 0xf8, 0xe0, 0xa2, 0x77, 0xc4, 0xfb, 0xc4, 0x16, 0xbd, 0xa3, 0x11, 0xf6, 0x89, - 0x3a, 0xff, 0xb3, 0x60, 0xcc, 0x22, 0x19, 0x79, 0x16, 0x1e, 0x11, 0x79, 0xbe, 0x0b, 0x13, 0x8e, - 0x1b, 0xd2, 0x60, 0x97, 0xb4, 0x55, 0x21, 0x71, 0xc0, 0xa9, 0xae, 0x75, 0x03, 0x15, 0xf0, 0xe8, - 0xa9, 0xae, 0x2b, 0x1c, 0x1c, 0x21, 0xa2, 0x36, 0x9c, 0xd0, 0x35, 0x99, 0x80, 0x92, 0xb8, 0x56, - 0xac, 0x5e, 0x82, 0xbc, 0xa2, 0x9f, 0x21, 0x5c, 0xcd, 0x62, 0x7a, 0xd8, 0x8f, 0x80, 0xb3, 0x41, - 0x11, 0x83, 0x29, 0x66, 0xa4, 0x5c, 0xda, 0x91, 0x0c, 0x58, 0xcf, 0x4a, 0x67, 0xa9, 0xc6, 0xf3, - 0x11, 0x13, 0x14, 0x27, 0x65, 0xd8, 0xff, 0x5c, 0x84, 0x99, 0x94, 0xa6, 0xa1, 0x3a, 0x40, 0xdd, - 0x73, 0x1b, 0x8e, 0x1c, 0x45, 0x49, 0x6d, 0xf3, 0x40, 0xcb, 0xba, 0xaa, 0xfb, 0xc5, 0x47, 0x2d, - 0x6a, 0x62, 0xd8, 0x80, 0xed, 0x13, 0x38, 0x8e, 0x0d, 0x15, 0x38, 0x66, 0xc7, 0x34, 0x23, 0x43, - 0xc5, 0x34, 0x97, 0x65, 0x5c, 0xa1, 0x76, 0x6e, 0x7d, 0x4d, 0x7d, 0x6d, 0x12, 0xad, 0xe6, 0x86, - 0x49, 0xc4, 0x49, 0x5e, 0xe1, 0x85, 0x1b, 0xbd, 0xbf, 0xd1, 0xa0, 0x82, 0xa2, 0xd7, 0xf2, 0x3e, - 0x97, 0x8a, 0x00, 0xa4, 0x17, 0xce, 0x20, 0xe0, 0x2c, 0x71, 0xd5, 0x1b, 0x9f, 0x7c, 0x7e, 0xfa, - 0xd8, 0xa7, 0x9f, 0x9f, 0x3e, 0xf6, 0xd9, 0xe7, 0xa7, 0x8f, 0x7d, 0xb8, 0x7f, 0xda, 0xfa, 0x64, - 0xff, 0xb4, 0xf5, 0xe9, 0xfe, 0x69, 0xeb, 0xb3, 0xfd, 0xd3, 0xd6, 0x0f, 0xf6, 0x4f, 0x5b, 0x7f, - 0xf0, 0xc3, 0xd3, 0xc7, 0xde, 0x79, 0x66, 0x90, 0x5f, 0x70, 0xfc, 0xdf, 0x00, 0x00, 0x00, 0xff, - 0xff, 0x7e, 0x7c, 0x7a, 0x86, 0xe8, 0x51, 0x00, 0x00, + // 4429 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x3c, 0x5b, 0x8c, 0x1c, 0x57, + 0x56, 0xae, 0xee, 0x99, 0x9e, 0xe9, 0xd3, 0xf3, 0xbc, 0x1e, 0x27, 0x93, 0x09, 0xf6, 0x98, 0xda, + 0x10, 0x25, 0x24, 0xe9, 0xc1, 0x76, 0x9c, 0x38, 0x76, 0xf0, 0x32, 0x8f, 0xd8, 0x1e, 0x67, 0x62, + 0x0f, 0xb7, 0xfd, 0x08, 0xd9, 0x58, 0xe1, 0x4e, 0xf7, 0x9d, 0xee, 0x62, 0xba, 0xab, 0x2a, 0x75, + 0xab, 0x27, 0x99, 0x5d, 0x04, 0xe1, 0x25, 0xad, 0x84, 0x40, 0x08, 0x21, 0xb2, 0x08, 0x3e, 0x10, + 0x7c, 0x22, 0x90, 0xf6, 0x73, 0xc5, 0x47, 0x3e, 0x56, 0x82, 0x68, 0x41, 0x28, 0x02, 0x3e, 0x02, + 0x5a, 0x59, 0x9b, 0x59, 0x69, 0x3f, 0x57, 0xe2, 0x83, 0x0f, 0x8c, 0x90, 0xd0, 0x7d, 0x55, 0xdd, + 0xaa, 0xae, 0xf6, 0x74, 0xb5, 0x67, 0xb2, 0x86, 0xbf, 0x99, 0x7b, 0x5e, 0xf7, 0x71, 0xee, 0x79, + 0xde, 0x6a, 0x78, 0xb9, 0xe9, 0x84, 0xad, 0xee, 0x56, 0xb5, 0xee, 0x75, 0x96, 0xc8, 0x4e, 0xd7, + 0x09, 0xf7, 0x96, 0x76, 0x48, 0xd0, 0xf4, 0x96, 0x88, 0xef, 0x2c, 0xed, 0x9e, 0x21, 0x6d, 0xbf, + 0x45, 0xce, 0x2c, 0x35, 0xa9, 0x4b, 0x03, 0x12, 0xd2, 0x46, 0xd5, 0x0f, 0xbc, 0xd0, 0x43, 0xcf, + 0xc4, 0x54, 0x55, 0x49, 0x55, 0x15, 0x54, 0x55, 0xe2, 0x3b, 0x55, 0x4d, 0xb5, 0xf0, 0x92, 0xc1, + 0xbb, 0xe9, 0x35, 0xbd, 0x25, 0x41, 0xbc, 0xd5, 0xdd, 0x16, 0xff, 0x89, 0x7f, 0xc4, 0x5f, 0x92, + 0xe9, 0xc2, 0xb5, 0x9d, 0x0b, 0xac, 0xea, 0x08, 0xc9, 0xf4, 0xc3, 0x90, 0xba, 0xcc, 0xf1, 0x5c, + 0xf6, 0x12, 0xf1, 0x1d, 0x46, 0x83, 0x5d, 0x1a, 0x2c, 0xf9, 0x3b, 0x4d, 0x0e, 0x63, 0x49, 0x84, + 0xa5, 0xdd, 0x9e, 0xe9, 0x2d, 0xbc, 0x1c, 0x73, 0xea, 0x90, 0x7a, 0xcb, 0x71, 0x69, 0xb0, 0x17, + 0x93, 0x77, 0x68, 0x48, 0xb2, 0xa8, 0x96, 0xfa, 0x51, 0x05, 0x5d, 0x37, 0x74, 0x3a, 0xb4, 0x87, + 0xe0, 0x95, 0x83, 0x08, 0x58, 0xbd, 0x45, 0x3b, 0x24, 0x4d, 0x67, 0xbf, 0x0b, 0xc7, 0x97, 0x5d, + 0xd2, 0xde, 0x63, 0x0e, 0xc3, 0x5d, 0x77, 0x39, 0x68, 0x76, 0x3b, 0xd4, 0x0d, 0xd1, 0x69, 0x18, + 0x71, 0x49, 0x87, 0xce, 0x5b, 0xa7, 0xad, 0xe7, 0xca, 0x2b, 0x13, 0x9f, 0xde, 0x5f, 0x3c, 0xb6, + 0x7f, 0x7f, 0x71, 0xe4, 0x06, 0xe9, 0x50, 0x2c, 0x20, 0xe8, 0x2b, 0x30, 0xba, 0x4b, 0xda, 0x5d, + 0x3a, 0x5f, 0x10, 0x28, 0x93, 0x0a, 0x65, 0xf4, 0x0e, 0x1f, 0xc4, 0x12, 0x66, 0xff, 0x56, 0x31, + 0xc1, 0xfe, 0x2d, 0x1a, 0x92, 0x06, 0x09, 0x09, 0xea, 0x40, 0xa9, 0x4d, 0xb6, 0x68, 0x9b, 0xcd, + 0x5b, 0xa7, 0x8b, 0xcf, 0x55, 0xce, 0xbe, 0x51, 0x1d, 0xe4, 0x10, 0xab, 0x19, 0xac, 0xaa, 0x1b, + 0x82, 0xcf, 0x1b, 0x6e, 0x18, 0xec, 0xad, 0x4c, 0xa9, 0x49, 0x94, 0xe4, 0x20, 0x56, 0x42, 0xd0, + 0x6f, 0x58, 0x50, 0x21, 0xae, 0xeb, 0x85, 0x24, 0xe4, 0xc7, 0x34, 0x5f, 0x10, 0x42, 0xaf, 0x0f, + 0x2f, 0x74, 0x39, 0x66, 0x26, 0x25, 0x1f, 0x57, 0x92, 0x2b, 0x06, 0x04, 0x9b, 0x32, 0x17, 0x5e, + 0x83, 0x8a, 0x31, 0x55, 0x34, 0x03, 0xc5, 0x1d, 0xba, 0x27, 0xf7, 0x17, 0xf3, 0x3f, 0xd1, 0x5c, + 0x62, 0x43, 0xd5, 0x0e, 0x5e, 0x2c, 0x5c, 0xb0, 0x16, 0x2e, 0xc3, 0x4c, 0x5a, 0x60, 0x1e, 0x7a, + 0xfb, 0xf7, 0x2d, 0x98, 0x33, 0x56, 0x81, 0xe9, 0x36, 0x0d, 0xa8, 0x5b, 0xa7, 0x68, 0x09, 0xca, + 0xfc, 0x2c, 0x99, 0x4f, 0xea, 0xfa, 0xa8, 0x67, 0xd5, 0x42, 0xca, 0x37, 0x34, 0x00, 0xc7, 0x38, + 0x91, 0x5a, 0x14, 0x1e, 0xa6, 0x16, 0x7e, 0x8b, 0x30, 0x3a, 0x5f, 0x4c, 0xaa, 0xc5, 0x26, 0x1f, + 0xc4, 0x12, 0x66, 0xff, 0x3c, 0x3c, 0xa5, 0xe7, 0x73, 0x8b, 0x76, 0xfc, 0x36, 0x09, 0x69, 0x3c, + 0xa9, 0x03, 0x55, 0xcf, 0x9e, 0x86, 0xc9, 0x65, 0xdf, 0x0f, 0xbc, 0x5d, 0xda, 0xa8, 0x85, 0xa4, + 0x49, 0xed, 0xdf, 0xb4, 0xe0, 0xc4, 0x72, 0xd0, 0xf4, 0x56, 0xd7, 0x96, 0x7d, 0xff, 0x1a, 0x25, + 0xed, 0xb0, 0x55, 0x0b, 0x49, 0xd8, 0x65, 0xe8, 0x32, 0x94, 0x98, 0xf8, 0x4b, 0xb1, 0x7b, 0x56, + 0x6b, 0x88, 0x84, 0x3f, 0xb8, 0xbf, 0x38, 0x97, 0x41, 0x48, 0xb1, 0xa2, 0x42, 0xcf, 0xc3, 0x58, + 0x87, 0x32, 0x46, 0x9a, 0x7a, 0xcd, 0xd3, 0x8a, 0xc1, 0xd8, 0x5b, 0x72, 0x18, 0x6b, 0xb8, 0xfd, + 0xbd, 0x02, 0x4c, 0x47, 0xbc, 0x94, 0xf8, 0x23, 0xd8, 0xe0, 0x2e, 0x4c, 0xb4, 0x8c, 0x15, 0x8a, + 0x7d, 0xae, 0x9c, 0xbd, 0x34, 0xa0, 0x2e, 0x67, 0x6d, 0xd2, 0xca, 0x9c, 0x12, 0x33, 0x61, 0x8e, + 0xe2, 0x84, 0x18, 0xd4, 0x01, 0x60, 0x7b, 0x6e, 0x5d, 0x09, 0x1d, 0x11, 0x42, 0x5f, 0xcb, 0x29, + 0xb4, 0x16, 0x31, 0x58, 0x41, 0x4a, 0x24, 0xc4, 0x63, 0xd8, 0x10, 0x60, 0xff, 0x8d, 0x05, 0xc7, + 0x33, 0xe8, 0xd0, 0xeb, 0xa9, 0xf3, 0x7c, 0xa6, 0xe7, 0x3c, 0x51, 0x0f, 0x59, 0x7c, 0x9a, 0x2f, + 0xc2, 0x78, 0x40, 0x77, 0x1d, 0x6e, 0xab, 0xd5, 0x0e, 0xcf, 0x28, 0xfa, 0x71, 0xac, 0xc6, 0x71, + 0x84, 0x81, 0x5e, 0x80, 0xb2, 0xfe, 0x9b, 0x6f, 0x73, 0x91, 0xab, 0x33, 0x3f, 0x38, 0x8d, 0xca, + 0x70, 0x0c, 0xb7, 0xff, 0xce, 0x3c, 0xfd, 0xdb, 0x7e, 0x83, 0x84, 0x94, 0x2b, 0x0f, 0xf1, 0xfd, + 0x1b, 0xb1, 0x32, 0x47, 0xca, 0xb3, 0x2c, 0x87, 0xb1, 0x86, 0xa3, 0x0b, 0x30, 0xa1, 0xfe, 0x94, + 0xba, 0x22, 0x67, 0x17, 0x1d, 0xcc, 0xb2, 0x01, 0xc3, 0x09, 0x4c, 0x74, 0x17, 0x4a, 0x5e, 0xe0, + 0x34, 0x1d, 0x57, 0x1d, 0xca, 0xb9, 0xc1, 0x0e, 0xe5, 0x4a, 0x40, 0x9d, 0x66, 0x2b, 0xbc, 0x29, + 0x48, 0x57, 0x80, 0x6f, 0xa1, 0xfc, 0x1b, 0x2b, 0x76, 0xa8, 0x0b, 0x93, 0xcc, 0xeb, 0x06, 0x75, + 0x2a, 0x57, 0x23, 0xb7, 0xa0, 0x72, 0xf6, 0x42, 0x9e, 0x43, 0xaf, 0x19, 0x0c, 0x56, 0x4e, 0xa8, + 0xd5, 0x4c, 0x9a, 0xa3, 0x0c, 0x27, 0xa5, 0xd8, 0xdf, 0xb3, 0x00, 0x24, 0xf1, 0x35, 0xda, 0xee, + 0xa0, 0x3a, 0x94, 0x9c, 0x0e, 0x69, 0x52, 0xed, 0x29, 0x72, 0x29, 0x3a, 0xe7, 0xb0, 0xce, 0xa9, + 0xd5, 0x0c, 0x22, 0xff, 0x20, 0x06, 0x19, 0x56, 0xac, 0x8d, 0x3d, 0x2c, 0x1c, 0xea, 0x1e, 0xda, + 0xff, 0x11, 0x19, 0xa6, 0xd4, 0x54, 0xb8, 0x9d, 0x14, 0xc2, 0x95, 0x66, 0x44, 0x76, 0x52, 0xe0, + 0x60, 0x09, 0x3b, 0xba, 0xb3, 0x3d, 0x29, 0xbd, 0x87, 0xd4, 0xb2, 0x8a, 0x92, 0x5d, 0x7c, 0x93, + 0xee, 0x49, 0x57, 0x72, 0x49, 0xbb, 0x12, 0x69, 0xc4, 0x7f, 0x26, 0xe1, 0xdb, 0xb9, 0xcd, 0x34, + 0x56, 0x22, 0xc6, 0x6e, 0xed, 0xf9, 0x91, 0xcf, 0xff, 0x57, 0x4b, 0xdf, 0x84, 0x37, 0xbb, 0x2c, + 0xf4, 0x3a, 0xce, 0xd7, 0x29, 0x6a, 0xa5, 0x4e, 0xf1, 0x17, 0xf2, 0x9c, 0x62, 0xc4, 0xe6, 0x27, + 0x7a, 0x94, 0xff, 0x60, 0xc1, 0x42, 0xff, 0xf9, 0xe4, 0x3d, 0xcf, 0xe2, 0xe1, 0x9e, 0xe7, 0x12, + 0x94, 0xbb, 0x8c, 0xae, 0x39, 0x4d, 0xca, 0x42, 0xb1, 0xf0, 0xf1, 0xd8, 0xcf, 0xdc, 0xd6, 0x00, + 0x1c, 0xe3, 0xd8, 0xdf, 0x2d, 0x02, 0xea, 0xbd, 0xa2, 0xdc, 0x62, 0x05, 0xd4, 0xf7, 0x6e, 0xe3, + 0x8d, 0xb4, 0xc5, 0xc2, 0x72, 0x18, 0x6b, 0x38, 0x5f, 0x70, 0xbd, 0x45, 0x82, 0x30, 0x1d, 0xff, + 0xad, 0xf2, 0x41, 0x2c, 0x61, 0xc6, 0x82, 0x4b, 0x87, 0xbb, 0xe0, 0x4d, 0x98, 0xeb, 0x8a, 0x29, + 0xdf, 0x22, 0x41, 0x93, 0x86, 0xda, 0x24, 0x8b, 0x7d, 0x1d, 0x5f, 0xf9, 0x29, 0x35, 0x99, 0xb9, + 0xdb, 0x19, 0x38, 0x38, 0x93, 0x12, 0x6d, 0x41, 0x79, 0x47, 0x1f, 0xac, 0xba, 0x6e, 0xe7, 0x87, + 0xd2, 0x52, 0xe9, 0x24, 0xa2, 0x7f, 0x71, 0xcc, 0x16, 0xdd, 0x80, 0x91, 0x16, 0x6d, 0x77, 0xe6, + 0x47, 0x05, 0xfb, 0x9f, 0xcb, 0x6b, 0xca, 0x56, 0xc6, 0x79, 0x2c, 0xc0, 0xff, 0xc2, 0x82, 0x8f, + 0xfd, 0xeb, 0x20, 0xb7, 0x3b, 0xcf, 0xb9, 0x1d, 0x1c, 0x61, 0x3c, 0x0f, 0x63, 0xbb, 0x34, 0x88, + 0xb6, 0xd3, 0x60, 0x76, 0x47, 0x0e, 0x63, 0x0d, 0xb7, 0xff, 0xc5, 0x82, 0x39, 0x31, 0x83, 0x35, + 0x87, 0xd5, 0xbd, 0x5d, 0x1a, 0xec, 0x61, 0xca, 0xba, 0xed, 0x43, 0x9e, 0xd0, 0x1a, 0xcc, 0x30, + 0xda, 0xd9, 0xa5, 0xc1, 0xaa, 0xe7, 0xb2, 0x30, 0x20, 0x8e, 0x1b, 0xaa, 0x99, 0xcd, 0x2b, 0xec, + 0x99, 0x5a, 0x0a, 0x8e, 0x7b, 0x28, 0xd0, 0x73, 0x30, 0xae, 0xa6, 0xcd, 0xe3, 0x17, 0xee, 0xcd, + 0x27, 0xb8, 0xe3, 0x57, 0x6b, 0x62, 0x38, 0x82, 0xda, 0x3f, 0xb2, 0x60, 0x56, 0xac, 0xaa, 0xd6, + 0xdd, 0x62, 0xf5, 0xc0, 0xf1, 0x79, 0xdc, 0xfd, 0x38, 0x2e, 0xe9, 0x32, 0x4c, 0x35, 0xf4, 0xc6, + 0x6f, 0x38, 0x1d, 0x27, 0x14, 0x8a, 0x3b, 0xba, 0xf2, 0x84, 0xe2, 0x31, 0xb5, 0x96, 0x80, 0xe2, + 0x14, 0xb6, 0xfd, 0x67, 0x45, 0x38, 0xae, 0x51, 0x68, 0x63, 0x39, 0x08, 0x9d, 0x6d, 0x52, 0x0f, + 0x19, 0x6a, 0xc0, 0x44, 0x23, 0x1e, 0x0e, 0xd5, 0x75, 0xf8, 0xd9, 0xaa, 0xcc, 0x31, 0xab, 0x66, + 0x8e, 0x59, 0xf5, 0x77, 0x9a, 0x7c, 0x80, 0x55, 0x79, 0x2a, 0x5b, 0xdd, 0x3d, 0x53, 0xbd, 0xe5, + 0x74, 0x68, 0x1c, 0xb9, 0x18, 0xec, 0x43, 0x9c, 0xe0, 0x8a, 0xee, 0x42, 0xb1, 0xe9, 0x84, 0xca, + 0x23, 0x0c, 0x18, 0x56, 0x5c, 0x75, 0xd2, 0xaa, 0x16, 0xbb, 0xaf, 0xab, 0x4e, 0x88, 0x39, 0x47, + 0xb4, 0x15, 0x79, 0x1b, 0x99, 0xe8, 0x5d, 0x1c, 0x8c, 0xb7, 0x30, 0xd5, 0x69, 0xee, 0xfd, 0xfc, + 0xcc, 0x16, 0x94, 0x84, 0x89, 0xd3, 0x61, 0xd1, 0x80, 0x32, 0xb2, 0x2e, 0x4b, 0x2c, 0x43, 0x40, + 0x19, 0x56, 0x9c, 0xed, 0xcf, 0x0b, 0x30, 0x13, 0xef, 0xdf, 0xaa, 0xd7, 0xe9, 0x38, 0x21, 0x5a, + 0x80, 0x82, 0xd3, 0x50, 0x1a, 0x08, 0x8a, 0xb0, 0xb0, 0xbe, 0x86, 0x0b, 0x4e, 0x03, 0x3d, 0x0b, + 0xa5, 0xad, 0x80, 0xb8, 0xf5, 0x96, 0xd2, 0xbc, 0x88, 0xf1, 0x8a, 0x18, 0xc5, 0x0a, 0xca, 0xdd, + 0x7f, 0x48, 0x9a, 0x4a, 0xe1, 0xa2, 0xfd, 0xbb, 0x45, 0x9a, 0x98, 0x8f, 0x73, 0x4d, 0x67, 0xdd, + 0xad, 0x5f, 0xa1, 0x75, 0x79, 0xf2, 0x86, 0xa6, 0xd7, 0xe4, 0x30, 0xd6, 0x70, 0x2e, 0x91, 0x74, + 0xc3, 0x96, 0x17, 0x08, 0x9b, 0x66, 0x48, 0x5c, 0x16, 0xa3, 0x58, 0x41, 0xb9, 0x83, 0xaa, 0x8b, + 0xf9, 0x87, 0x34, 0x10, 0xbe, 0xc0, 0x48, 0x84, 0x56, 0x35, 0x00, 0xc7, 0x38, 0xe8, 0x1e, 0x54, + 0xea, 0x01, 0x25, 0xa1, 0x17, 0xac, 0x91, 0x90, 0xce, 0x8f, 0xe5, 0xd6, 0xc0, 0x69, 0x9e, 0x8d, + 0xaf, 0xc6, 0x2c, 0xb0, 0xc9, 0xcf, 0xfe, 0xb1, 0x05, 0xf3, 0xf1, 0xd6, 0x4a, 0x27, 0x1d, 0x65, + 0xa0, 0x6a, 0x7b, 0xac, 0x3e, 0xdb, 0xf3, 0x2c, 0x94, 0x1a, 0xb1, 0xa7, 0x35, 0xd6, 0xac, 0xdc, + 0xac, 0x82, 0xa2, 0xb3, 0x00, 0x4d, 0x27, 0x54, 0xc6, 0x41, 0x6d, 0x76, 0x94, 0xf7, 0x5c, 0x8d, + 0x20, 0xd8, 0xc0, 0x42, 0x77, 0xa1, 0x2c, 0xa6, 0x39, 0xe4, 0xb5, 0x13, 0xae, 0x67, 0x55, 0x33, + 0xc0, 0x31, 0x2f, 0xfb, 0xb3, 0x11, 0x18, 0x53, 0x6e, 0x15, 0xfd, 0x32, 0x8c, 0x77, 0x54, 0x25, + 0x43, 0x2c, 0x92, 0xbb, 0xa2, 0x81, 0x64, 0xdc, 0x14, 0x87, 0xfe, 0x16, 0x0d, 0x49, 0xbc, 0x90, + 0x78, 0x0c, 0x47, 0x5c, 0x79, 0x70, 0x40, 0xda, 0x0e, 0x61, 0xe2, 0xdc, 0x8c, 0xe0, 0x60, 0x99, + 0x0f, 0x62, 0x09, 0x43, 0x5f, 0x8b, 0x82, 0x83, 0xf2, 0xf0, 0xc1, 0x41, 0xb4, 0xf9, 0xa9, 0x00, + 0xe1, 0x1d, 0x18, 0x93, 0xca, 0xa4, 0x2f, 0xe8, 0xd2, 0xc0, 0x06, 0x46, 0xea, 0x63, 0xac, 0xf4, + 0xf2, 0x7f, 0x86, 0x35, 0x43, 0x54, 0x8b, 0xec, 0xcb, 0x88, 0x60, 0xfd, 0x42, 0x0e, 0xfb, 0xd2, + 0xd7, 0xa0, 0xd4, 0x22, 0x83, 0x32, 0x9a, 0x87, 0xa9, 0x30, 0x19, 0xfd, 0x2c, 0x08, 0xdf, 0x62, + 0x95, 0x2e, 0x0f, 0x13, 0x7f, 0xa9, 0x5c, 0x7d, 0x2a, 0x99, 0x63, 0xeb, 0x6c, 0xda, 0xfe, 0xa3, + 0x22, 0xcc, 0x2a, 0xcc, 0x55, 0xaf, 0xdd, 0xa6, 0x75, 0xe1, 0x26, 0xa5, 0x7d, 0x2a, 0x66, 0xda, + 0x27, 0x07, 0x46, 0x9d, 0x90, 0x76, 0x74, 0x16, 0xb0, 0x92, 0x6b, 0x36, 0xb1, 0x8c, 0xea, 0x3a, + 0x67, 0x22, 0x0b, 0x6f, 0xd1, 0x29, 0x29, 0x2c, 0x2c, 0x25, 0xa0, 0xdf, 0xb1, 0xe0, 0xf8, 0x2e, + 0x0d, 0x9c, 0x6d, 0xa7, 0x2e, 0xca, 0x66, 0xd7, 0x1c, 0x16, 0x7a, 0xc1, 0x9e, 0xf2, 0x08, 0xaf, + 0x0c, 0x26, 0xf9, 0x8e, 0xc1, 0x60, 0xdd, 0xdd, 0xf6, 0x56, 0x9e, 0x56, 0xd2, 0x8e, 0xdf, 0xe9, + 0x65, 0x8d, 0xb3, 0xe4, 0x2d, 0xf8, 0x00, 0xf1, 0x6c, 0x33, 0xaa, 0x76, 0x1b, 0x66, 0xd5, 0x6e, + 0xe0, 0x89, 0xe9, 0xc5, 0x6a, 0x93, 0x65, 0x56, 0xfb, 0x3e, 0xb1, 0xa0, 0xa2, 0xe0, 0x1b, 0x0e, + 0x0b, 0xd1, 0xbb, 0x3d, 0xb7, 0xbd, 0x3a, 0xd8, 0x6d, 0xe7, 0xd4, 0xe2, 0xae, 0x47, 0x45, 0x12, + 0x3d, 0x62, 0xdc, 0x74, 0xac, 0x8f, 0x54, 0x6e, 0xec, 0x4b, 0xb9, 0xe6, 0x6f, 0xa4, 0x49, 0x9c, + 0x87, 0x3a, 0x3b, 0x3b, 0x80, 0xc9, 0xc4, 0x25, 0x47, 0xe7, 0x61, 0x64, 0xc7, 0x71, 0xb5, 0xd7, + 0xfb, 0x69, 0x1d, 0x4f, 0xbd, 0xe9, 0xb8, 0x8d, 0x07, 0xf7, 0x17, 0x67, 0x13, 0xc8, 0x7c, 0x10, + 0x0b, 0xf4, 0x83, 0xc3, 0xb0, 0x8b, 0xe3, 0xdf, 0xfa, 0xf3, 0xc5, 0x63, 0x1f, 0x7d, 0xff, 0xf4, + 0x31, 0xfb, 0xe3, 0x22, 0xcc, 0xa4, 0x77, 0x75, 0x80, 0x2a, 0x78, 0x6c, 0xc3, 0xc6, 0x8f, 0xd4, + 0x86, 0x15, 0x8e, 0xce, 0x86, 0x15, 0x8f, 0xc2, 0x86, 0x8d, 0x1c, 0x9a, 0x0d, 0xb3, 0xff, 0xc9, + 0x82, 0xa9, 0xe8, 0x64, 0xde, 0xef, 0x72, 0xcf, 0x1a, 0xef, 0xba, 0x75, 0xf8, 0xbb, 0xfe, 0x1e, + 0x8c, 0xc9, 0x8a, 0x14, 0x53, 0x77, 0xf2, 0xe5, 0x7c, 0x46, 0x53, 0xd2, 0x1a, 0x31, 0x93, 0x1c, + 0xc0, 0x9a, 0xab, 0xfd, 0x6e, 0xb4, 0x1e, 0x05, 0x92, 0x11, 0x45, 0xc0, 0xe3, 0x2d, 0x4b, 0xe4, + 0xaf, 0x46, 0x44, 0xc1, 0x47, 0xb1, 0x82, 0x22, 0x5b, 0x98, 0x73, 0x1d, 0xd8, 0x96, 0x65, 0x66, + 0x2c, 0x4a, 0xe0, 0xd2, 0x2a, 0x37, 0x29, 0xb3, 0x7f, 0x5c, 0x8c, 0x6e, 0x8f, 0xaa, 0x99, 0x7e, + 0x00, 0x20, 0x2d, 0x13, 0x6d, 0xac, 0xbb, 0xca, 0xf4, 0xae, 0x0e, 0xe1, 0x08, 0x94, 0x39, 0xe4, + 0x5c, 0xa4, 0xed, 0x8d, 0x62, 0x80, 0x18, 0x80, 0x0d, 0x51, 0xe8, 0x1b, 0x50, 0x21, 0xaa, 0x4e, + 0x7f, 0xc5, 0x0b, 0x94, 0x0e, 0xaf, 0x0d, 0x23, 0x79, 0x39, 0x66, 0x93, 0xee, 0xb7, 0xc4, 0x10, + 0x6c, 0x4a, 0x5b, 0x08, 0x60, 0x3a, 0x35, 0xdf, 0x0c, 0xeb, 0xbb, 0x9e, 0xb4, 0xbe, 0xe7, 0xf2, + 0xb8, 0x05, 0xd5, 0x7c, 0x30, 0x1b, 0x35, 0x0c, 0x66, 0xd2, 0x33, 0x3d, 0x34, 0xa1, 0x89, 0x8e, + 0x87, 0x69, 0xef, 0x7f, 0x54, 0x80, 0x72, 0x74, 0xe3, 0xf3, 0x64, 0xa9, 0xd2, 0x53, 0x17, 0x0e, + 0xc8, 0x24, 0x8a, 0x83, 0x64, 0x12, 0x23, 0x7d, 0x42, 0xe5, 0xab, 0x30, 0x2b, 0xbb, 0x08, 0xab, + 0x2d, 0x5a, 0xdf, 0x91, 0x53, 0x54, 0x99, 0xc2, 0x53, 0x0a, 0x79, 0xf6, 0x5a, 0x1a, 0x01, 0xf7, + 0xd2, 0x98, 0x7d, 0x98, 0xd2, 0xc3, 0xfb, 0x30, 0x46, 0x4a, 0x32, 0x36, 0x78, 0x4a, 0x32, 0x7e, + 0x70, 0x4a, 0x62, 0xff, 0x85, 0x05, 0xa8, 0x37, 0xff, 0xcc, 0xb3, 0xe3, 0x24, 0x6d, 0xd0, 0x07, + 0x74, 0xf7, 0xe9, 0x24, 0xb0, 0xbf, 0x5d, 0xb7, 0x8f, 0xc3, 0xec, 0x55, 0x27, 0xbc, 0xd6, 0xdd, + 0xda, 0xec, 0xb6, 0xdb, 0xca, 0x5e, 0xaa, 0xc1, 0x0d, 0x92, 0x18, 0xfc, 0xa8, 0x04, 0x93, 0x3a, + 0x0b, 0xc9, 0x5d, 0xfd, 0xbb, 0x7b, 0x18, 0xb1, 0x7b, 0x56, 0x61, 0xaf, 0x06, 0x27, 0x1c, 0x97, + 0xd1, 0x7a, 0x37, 0xa0, 0xb5, 0x1d, 0xc7, 0xbf, 0xb5, 0x51, 0x13, 0xb7, 0x6d, 0x4f, 0x55, 0x35, + 0x4f, 0xaa, 0x19, 0x9d, 0x58, 0xcf, 0x42, 0xc2, 0xd9, 0xb4, 0x3c, 0x13, 0x0b, 0x28, 0x69, 0xac, + 0x98, 0x1a, 0x1d, 0x19, 0x2f, 0x1c, 0x41, 0xb0, 0x81, 0x85, 0xce, 0x43, 0xe5, 0x83, 0xc0, 0x09, + 0xa9, 0x22, 0x92, 0x1a, 0x1e, 0x99, 0x9d, 0xbb, 0x31, 0x08, 0x9b, 0x78, 0x68, 0x17, 0x2a, 0x7e, + 0xbc, 0xc9, 0xaa, 0xd2, 0x37, 0xa0, 0xb5, 0x35, 0x4e, 0x67, 0x33, 0xf0, 0x3a, 0x1e, 0x8f, 0x23, + 0xdf, 0xa2, 0xf5, 0x16, 0x71, 0x1d, 0xd6, 0x91, 0x09, 0xad, 0x81, 0x82, 0x4d, 0x41, 0xa8, 0x09, + 0xa5, 0x80, 0xba, 0x0d, 0x95, 0x5d, 0x0f, 0x2c, 0xf2, 0x4d, 0x3e, 0x84, 0x05, 0x61, 0x86, 0x48, + 0x71, 0x40, 0x12, 0x8a, 0x15, 0x7b, 0xe4, 0x9a, 0x75, 0x52, 0x99, 0x96, 0x2f, 0x0f, 0x28, 0x4b, + 0x93, 0x65, 0x48, 0xea, 0x5f, 0x33, 0x7d, 0x47, 0xd5, 0x4c, 0x65, 0x7c, 0xf5, 0xfa, 0x60, 0xa2, + 0xae, 0xd1, 0x76, 0x27, 0x43, 0x4a, 0xba, 0x7e, 0xfa, 0xc9, 0x28, 0x4c, 0x5f, 0x75, 0x86, 0x2e, + 0xf3, 0x85, 0xf0, 0xa4, 0xbc, 0x76, 0x35, 0xaa, 0x32, 0x93, 0x5a, 0x18, 0x90, 0x90, 0x36, 0x75, + 0x67, 0xe5, 0xa2, 0x22, 0x7d, 0x72, 0x35, 0x1b, 0xed, 0x41, 0x7f, 0x10, 0xee, 0xc7, 0x7a, 0x60, + 0xd3, 0x7c, 0x09, 0x26, 0x59, 0x18, 0x38, 0xf5, 0x50, 0x16, 0x12, 0xd9, 0x7c, 0x45, 0xdc, 0xa0, + 0xb8, 0x0b, 0x67, 0x02, 0x71, 0x12, 0x37, 0xb3, 0x3e, 0x39, 0x92, 0xbb, 0x3e, 0xb9, 0x04, 0x65, + 0xd2, 0x6e, 0x7b, 0x1f, 0xdc, 0x22, 0x4d, 0xa6, 0xcc, 0x7e, 0x64, 0x62, 0x97, 0x35, 0x00, 0xc7, + 0x38, 0xa8, 0x0a, 0xe0, 0x34, 0x5d, 0x2f, 0xa0, 0x82, 0xa2, 0x24, 0x82, 0x9c, 0x29, 0x7e, 0x49, + 0xd7, 0xa3, 0x51, 0x6c, 0x60, 0xf4, 0xb7, 0x16, 0x63, 0x8f, 0x60, 0x2d, 0x5e, 0x86, 0x09, 0xc7, + 0xad, 0xb7, 0xbb, 0x0d, 0xba, 0x49, 0xc2, 0x16, 0x9b, 0x1f, 0x17, 0xd3, 0x98, 0xd9, 0xbf, 0xbf, + 0x38, 0xb1, 0x6e, 0x8c, 0xe3, 0x04, 0x16, 0xa7, 0xa2, 0x1f, 0x1a, 0x54, 0xe5, 0x98, 0xea, 0x8d, + 0x0f, 0x4d, 0x2a, 0x13, 0x2b, 0xa3, 0x82, 0x0b, 0xb9, 0x2a, 0xb8, 0x7f, 0x5c, 0x84, 0x92, 0x74, + 0xa0, 0xe8, 0x7c, 0xaa, 0x35, 0x7e, 0xb2, 0xa7, 0x35, 0x5e, 0xc9, 0x7a, 0xe1, 0x60, 0x43, 0xc9, + 0x61, 0xac, 0x9b, 0x8c, 0x29, 0xd7, 0xc5, 0x08, 0x56, 0x10, 0xe4, 0x00, 0x10, 0xdd, 0xdb, 0xd6, + 0x09, 0xc3, 0xf9, 0xbc, 0xcd, 0xff, 0x54, 0xe3, 0x3f, 0x02, 0x30, 0x6c, 0x30, 0x17, 0x75, 0x55, + 0xcf, 0xdd, 0x76, 0x9a, 0xaa, 0xfa, 0x75, 0xd9, 0xc8, 0x55, 0xe3, 0x87, 0x56, 0xef, 0x45, 0x2f, + 0xb1, 0xe2, 0xb4, 0x35, 0x81, 0xc0, 0xf3, 0xd7, 0xeb, 0xb5, 0x9b, 0x37, 0xe4, 0x72, 0x56, 0x05, + 0x47, 0xac, 0x38, 0x73, 0x19, 0x5e, 0x37, 0xf4, 0xbb, 0xda, 0x3c, 0x1f, 0x8a, 0x8c, 0x9b, 0x82, + 0x23, 0x56, 0x9c, 0xed, 0x8f, 0x2d, 0x98, 0x36, 0x22, 0x9b, 0x5a, 0x48, 0x7d, 0x9e, 0x4e, 0x76, + 0x19, 0x65, 0xe9, 0x74, 0xf2, 0x36, 0xa3, 0x0c, 0x0b, 0x88, 0xb1, 0xfa, 0xc2, 0x51, 0xad, 0xde, + 0xfe, 0x6f, 0x0b, 0x9e, 0xe2, 0x36, 0x50, 0x96, 0xa2, 0xa9, 0xcf, 0xcd, 0xba, 0x5b, 0xdf, 0x53, + 0x31, 0x80, 0x70, 0x95, 0xbe, 0xc7, 0x1c, 0x51, 0x2d, 0xb1, 0xd2, 0xae, 0x52, 0x43, 0xb0, 0x81, + 0x35, 0x40, 0xbb, 0xe3, 0xc8, 0x1a, 0xd9, 0x3c, 0x88, 0xe3, 0xeb, 0xe0, 0xb7, 0x49, 0xd9, 0xc3, + 0x38, 0x88, 0xd3, 0x00, 0x1c, 0xe3, 0xd8, 0x7f, 0x55, 0xe0, 0xe7, 0xf2, 0x48, 0xbd, 0xf8, 0xd1, + 0xc3, 0x5d, 0xc2, 0x65, 0x98, 0x12, 0xc1, 0x3c, 0xbb, 0xe2, 0xb4, 0x85, 0x55, 0x50, 0xfb, 0x18, + 0x99, 0x80, 0x3b, 0x09, 0x28, 0x4e, 0x61, 0xeb, 0x5e, 0x7e, 0xf1, 0xa0, 0x5e, 0xfe, 0xc8, 0x10, + 0xbd, 0xfc, 0xef, 0x14, 0xe0, 0x89, 0x6c, 0x5f, 0x8a, 0xee, 0xa5, 0x5a, 0xfa, 0xe7, 0x07, 0xf7, + 0xcc, 0x83, 0xf4, 0xf1, 0x9b, 0x51, 0x29, 0x41, 0x46, 0xca, 0x5f, 0x1d, 0x9c, 0x7d, 0xa6, 0x62, + 0xf7, 0x2d, 0x91, 0x1e, 0x55, 0x4f, 0xde, 0xfe, 0x6b, 0x0b, 0xa4, 0x06, 0xe5, 0x09, 0x29, 0x92, + 0x3d, 0x83, 0xc2, 0x40, 0x3d, 0x83, 0x03, 0xba, 0x39, 0x71, 0xbb, 0x62, 0xe4, 0x61, 0xed, 0x0a, + 0xfb, 0x87, 0x16, 0xcc, 0x65, 0xb5, 0xc0, 0xf2, 0x4c, 0xff, 0x45, 0x18, 0xf7, 0xdb, 0x24, 0xdc, + 0xf6, 0x82, 0x4e, 0xfa, 0x81, 0xd5, 0xa6, 0x1a, 0xc7, 0x11, 0x06, 0x0a, 0xb8, 0xad, 0x51, 0xb5, + 0x36, 0xed, 0x56, 0x2e, 0xe7, 0xcd, 0x88, 0x92, 0xbd, 0x1b, 0xd3, 0x56, 0x69, 0xce, 0xd8, 0x90, + 0x62, 0xff, 0xee, 0x28, 0xcc, 0x0a, 0x92, 0x61, 0x83, 0xbe, 0x61, 0x4e, 0xc8, 0x87, 0x27, 0x84, + 0x5a, 0xf7, 0xc6, 0x89, 0xf2, 0xd0, 0x2e, 0x28, 0xfa, 0x27, 0xd6, 0x33, 0xb1, 0x1e, 0xf4, 0x85, + 0xe0, 0x3e, 0x7c, 0x7b, 0x83, 0x3f, 0xf8, 0xff, 0x17, 0xfc, 0x99, 0xca, 0x36, 0x76, 0xa0, 0xb2, + 0xf5, 0x0d, 0x15, 0xc7, 0x1f, 0x21, 0x54, 0xec, 0x0d, 0xdf, 0xca, 0xb9, 0xc2, 0xb7, 0xbf, 0xb7, + 0xe0, 0x09, 0x23, 0x05, 0xfb, 0x3f, 0xfc, 0xa0, 0xe8, 0xbe, 0x05, 0x27, 0x1f, 0x9a, 0x4c, 0xa2, + 0x46, 0xca, 0x61, 0xbc, 0x9e, 0x3b, 0x43, 0xfd, 0x89, 0xbe, 0xff, 0xfa, 0xc3, 0x02, 0xcc, 0x1d, + 0xc6, 0xcb, 0xaf, 0x43, 0x0e, 0x80, 0x4e, 0xc3, 0x88, 0x1f, 0xc7, 0x0c, 0x51, 0xec, 0x25, 0x22, + 0x05, 0x01, 0x49, 0x1e, 0x65, 0xf1, 0xe0, 0xa3, 0xe4, 0xc6, 0xd0, 0xa5, 0x1f, 0x88, 0x67, 0xab, + 0xa3, 0x49, 0x63, 0x78, 0x43, 0x0e, 0x63, 0x0d, 0xb7, 0xff, 0xdd, 0x82, 0xa7, 0x1f, 0x92, 0xd6, + 0x1b, 0x2f, 0x31, 0xac, 0x3c, 0xaf, 0x24, 0x1e, 0x8f, 0x17, 0x7f, 0x7f, 0x52, 0x80, 0xb1, 0xcd, + 0xc0, 0x13, 0xef, 0x1c, 0x8e, 0xbe, 0x65, 0x7e, 0x13, 0x46, 0x98, 0x4f, 0xeb, 0x6a, 0x11, 0x67, + 0x06, 0xac, 0x18, 0xc9, 0xe9, 0xd5, 0x7c, 0x5a, 0x97, 0xc5, 0x0d, 0xfe, 0x17, 0x16, 0x8c, 0x8c, + 0xde, 0x6f, 0x2e, 0xdb, 0xa0, 0x59, 0x3e, 0xbc, 0xf7, 0xfb, 0x89, 0x05, 0x15, 0x85, 0xf9, 0xd8, + 0x36, 0x19, 0xd5, 0xfc, 0xfa, 0x34, 0x19, 0x7f, 0x2f, 0x5e, 0x01, 0xdf, 0x34, 0xf4, 0x6b, 0x30, + 0xeb, 0x6b, 0x05, 0xde, 0xf4, 0xda, 0x4e, 0xdd, 0xc9, 0x1b, 0xda, 0x6e, 0x26, 0xc8, 0xf7, 0xe2, + 0x0a, 0xf7, 0x66, 0x9a, 0x2f, 0xee, 0x15, 0x65, 0x7b, 0x30, 0x99, 0xd8, 0x7a, 0x74, 0x4e, 0x7f, + 0x49, 0x91, 0x4c, 0xe7, 0xe5, 0x97, 0x14, 0x0f, 0xee, 0x2f, 0x4e, 0x28, 0x74, 0xf3, 0xcb, 0x8a, + 0x3c, 0xdf, 0x2b, 0xfc, 0x65, 0x01, 0xca, 0xd1, 0xcc, 0xbe, 0x04, 0x05, 0xbf, 0x9d, 0x50, 0xf0, + 0x73, 0x39, 0xf7, 0x54, 0xa8, 0x78, 0x64, 0xde, 0x0c, 0x35, 0xbf, 0x97, 0x52, 0xf3, 0xbc, 0x87, + 0x75, 0x80, 0xa2, 0x7f, 0xd7, 0x12, 0xe7, 0x22, 0x71, 0xbf, 0x04, 0x55, 0xbf, 0x95, 0x54, 0xf5, + 0xa5, 0x9c, 0xab, 0xe9, 0xa3, 0xec, 0x3f, 0x28, 0xc0, 0xf1, 0x5e, 0xf3, 0x7c, 0x74, 0xc9, 0x0f, + 0x62, 0x30, 0xd5, 0x34, 0x7b, 0x0b, 0xfa, 0x2a, 0x9d, 0x1b, 0xb8, 0x83, 0x1d, 0xd3, 0xc6, 0xd1, + 0x54, 0x62, 0x98, 0xe1, 0x94, 0x08, 0xf4, 0x0d, 0x98, 0x21, 0xc9, 0x4f, 0x30, 0xf4, 0x36, 0xe6, + 0x2d, 0x56, 0x29, 0xc1, 0x51, 0xb8, 0x9b, 0x02, 0x30, 0xdc, 0x23, 0xc8, 0xfe, 0xa6, 0x05, 0xd3, + 0x29, 0x0b, 0xc0, 0x43, 0x03, 0xd1, 0x95, 0x4d, 0x87, 0x06, 0xaa, 0x87, 0x27, 0x60, 0x68, 0x13, + 0xe6, 0x48, 0x37, 0xf4, 0x22, 0xda, 0x37, 0x5c, 0xb2, 0xd5, 0xa6, 0x0d, 0x15, 0x75, 0x45, 0x4f, + 0x99, 0x97, 0x33, 0x70, 0x70, 0x26, 0xa5, 0xfd, 0x8f, 0x05, 0x40, 0xd1, 0x60, 0x9e, 0xd7, 0x0c, + 0xf7, 0x60, 0x6c, 0x5b, 0x1e, 0xed, 0xa3, 0x3d, 0x47, 0x59, 0xa9, 0x98, 0x2f, 0x72, 0x34, 0x4f, + 0xf4, 0x4b, 0x87, 0x73, 0x55, 0xa1, 0xf7, 0x9a, 0xa2, 0x77, 0x00, 0xb6, 0x1d, 0xd7, 0x61, 0xad, + 0x21, 0x1f, 0xce, 0x89, 0x3c, 0xe3, 0x4a, 0xc4, 0x01, 0x1b, 0xdc, 0xec, 0xef, 0x98, 0x26, 0x40, + 0xf8, 0x8a, 0x81, 0xce, 0xf5, 0xf9, 0xe4, 0x66, 0x96, 0x7b, 0x9f, 0x2a, 0x45, 0x1b, 0xf3, 0x36, + 0xe7, 0x47, 0xa3, 0xd2, 0x6a, 0x6e, 0xdb, 0x18, 0x52, 0xdf, 0x9c, 0x04, 0xf5, 0x19, 0x96, 0x0c, + 0xed, 0x6f, 0x8f, 0x19, 0x5a, 0xa9, 0x1c, 0xcb, 0x75, 0x40, 0x6d, 0xc2, 0xc2, 0x6b, 0xc4, 0x6d, + 0x70, 0x1d, 0xa2, 0xdb, 0x01, 0x65, 0xba, 0xc1, 0xb5, 0xa0, 0xb8, 0xa0, 0x8d, 0x1e, 0x0c, 0x9c, + 0x41, 0x85, 0xce, 0x27, 0x9d, 0xd4, 0x62, 0xda, 0x49, 0x4d, 0xc5, 0x57, 0x62, 0x38, 0x37, 0x85, + 0xde, 0x37, 0xcc, 0x6d, 0x31, 0xcf, 0xdb, 0x85, 0xd4, 0xb2, 0xab, 0xfa, 0xe3, 0x4d, 0xf9, 0x80, + 0x20, 0xb2, 0xc1, 0x7a, 0xd8, 0xb0, 0xc1, 0xc6, 0x35, 0x18, 0x3d, 0x82, 0x6b, 0xf0, 0xab, 0x30, + 0xbb, 0x9d, 0x7e, 0xd2, 0xa6, 0x3a, 0x69, 0xaf, 0x0e, 0xf9, 0x22, 0x6e, 0xe5, 0xc4, 0x7e, 0xfc, + 0x0e, 0x2a, 0x1e, 0xc6, 0xbd, 0x82, 0x90, 0xa7, 0xbf, 0x1f, 0x14, 0x75, 0x69, 0xd9, 0xdd, 0xc8, + 0x51, 0xbd, 0x4b, 0x54, 0xb4, 0xd3, 0x5f, 0x0e, 0x4a, 0x96, 0x38, 0x21, 0x20, 0x75, 0x35, 0x4b, + 0x87, 0x79, 0x35, 0xd1, 0x79, 0xa8, 0xd4, 0xbb, 0x41, 0x40, 0xdd, 0x90, 0x4f, 0x47, 0x24, 0xdf, + 0xc5, 0xb8, 0x49, 0xbb, 0x1a, 0x83, 0xb0, 0x89, 0x87, 0xde, 0x13, 0xf7, 0x37, 0xa4, 0xa2, 0x2a, + 0xf2, 0xe8, 0x55, 0xf6, 0xb2, 0xba, 0xfb, 0xa1, 0xbc, 0xfb, 0x21, 0x5d, 0xb8, 0x04, 0x93, 0x09, + 0x75, 0xcb, 0xf5, 0xb9, 0xee, 0xb7, 0x13, 0xf6, 0x66, 0xb0, 0xc6, 0xc1, 0x02, 0x14, 0x08, 0x4b, + 0xbf, 0xe5, 0x58, 0x66, 0xb8, 0x40, 0xcc, 0xa6, 0x42, 0xf1, 0xc8, 0x9a, 0x0a, 0x01, 0xc4, 0x51, + 0xae, 0xfe, 0xa4, 0x17, 0xdd, 0x53, 0x11, 0x9f, 0x95, 0xe7, 0x13, 0xd5, 0x1e, 0x36, 0xfd, 0x22, + 0x3f, 0xfb, 0x7d, 0x38, 0x91, 0x89, 0x1c, 0x9b, 0x53, 0xeb, 0xb0, 0xcd, 0xe9, 0xbf, 0x59, 0x70, + 0xf2, 0xa1, 0x5d, 0x7a, 0x9e, 0x75, 0x49, 0x69, 0x6a, 0xd5, 0xaf, 0x0e, 0x1c, 0xf0, 0x24, 0xdf, + 0x6c, 0xc8, 0x5d, 0x96, 0xc3, 0x58, 0xb1, 0x54, 0xcc, 0xdb, 0x64, 0x4b, 0xb9, 0xe7, 0xc1, 0x99, + 0x27, 0xdf, 0x7e, 0x44, 0xcc, 0x37, 0x88, 0x64, 0xde, 0x26, 0x5b, 0xf6, 0xb7, 0x0a, 0x30, 0xc3, + 0xa3, 0xa9, 0x44, 0x61, 0x74, 0x53, 0x7f, 0xa3, 0x91, 0xc3, 0x5f, 0xa7, 0x3a, 0xea, 0x2b, 0x63, + 0x89, 0x8f, 0x33, 0xde, 0xd6, 0xe5, 0x92, 0x5c, 0x4b, 0xe8, 0x29, 0xd9, 0xca, 0x4b, 0x97, 0xa8, + 0xb1, 0xbc, 0xad, 0xbf, 0x48, 0x2b, 0xe6, 0xe1, 0xdc, 0xf3, 0xa1, 0x8f, 0xe4, 0x6c, 0x7e, 0xc6, + 0x66, 0x7f, 0x5c, 0x00, 0xe9, 0xdb, 0xbf, 0x84, 0x34, 0xe9, 0x17, 0x13, 0x69, 0xd2, 0x80, 0xf1, + 0xbf, 0x98, 0x5c, 0xdf, 0x14, 0x29, 0x1d, 0x77, 0x9d, 0xc9, 0xc3, 0xf4, 0xe1, 0xe9, 0xd1, 0xdf, + 0x5a, 0x50, 0x16, 0x78, 0x5f, 0x42, 0x6a, 0xb4, 0x99, 0x4c, 0x8d, 0x5e, 0xc8, 0xb1, 0x8a, 0x3e, + 0x69, 0xd1, 0x9f, 0x8e, 0xa8, 0xd9, 0x47, 0x51, 0x5d, 0x8b, 0x04, 0x0d, 0x15, 0x0a, 0xc5, 0x16, + 0x80, 0x0f, 0x62, 0x09, 0x43, 0x5f, 0x87, 0x99, 0x40, 0x5e, 0x22, 0xda, 0xb8, 0x12, 0x05, 0x09, + 0xc5, 0xdc, 0xcf, 0x44, 0xf5, 0x4d, 0x8c, 0x52, 0x0c, 0x9c, 0xe2, 0x8a, 0x7b, 0xe4, 0xf0, 0xc0, + 0xc1, 0x4f, 0x1b, 0x3c, 0xe5, 0x50, 0x5f, 0x1d, 0xd2, 0xb8, 0xca, 0xc0, 0xa1, 0x67, 0x18, 0xf7, + 0x0a, 0x42, 0xbf, 0x6d, 0xc1, 0x71, 0xbf, 0x37, 0x87, 0x54, 0x8a, 0xfa, 0x5a, 0xce, 0x09, 0xc4, + 0x0c, 0x56, 0x9e, 0xdc, 0xbf, 0xbf, 0x98, 0x95, 0x9d, 0xe2, 0x2c, 0x71, 0xa8, 0x05, 0x13, 0xe6, + 0x3b, 0x7b, 0xa5, 0xd2, 0x67, 0xf3, 0x3f, 0xe8, 0x97, 0x6f, 0x33, 0xcc, 0x11, 0x9c, 0xe0, 0x6c, + 0xff, 0xd7, 0x28, 0x54, 0x8c, 0x3b, 0xd0, 0x27, 0x6e, 0xae, 0x0c, 0x15, 0x37, 0x9f, 0x49, 0xc6, + 0xcd, 0x4f, 0xa7, 0xe3, 0x66, 0x10, 0x82, 0x13, 0x31, 0x33, 0x83, 0x29, 0x15, 0xcd, 0xe9, 0x6f, + 0x19, 0xe4, 0x23, 0xeb, 0xa1, 0x63, 0x46, 0xc4, 0x53, 0xea, 0x2b, 0x09, 0x96, 0x38, 0x25, 0x02, + 0x5d, 0x8e, 0x84, 0xd6, 0xba, 0x9d, 0x0e, 0x09, 0xf6, 0xe6, 0x27, 0x92, 0xcd, 0xe9, 0x2b, 0x09, + 0x28, 0x4e, 0x61, 0xa3, 0x4d, 0x28, 0xc9, 0x60, 0x50, 0xbd, 0xdf, 0x7a, 0x31, 0x4f, 0x9c, 0x29, + 0xdd, 0x94, 0xfc, 0x1b, 0x2b, 0x3e, 0x66, 0xea, 0x50, 0x3e, 0x20, 0x75, 0xb8, 0x0e, 0xc8, 0xdb, + 0x12, 0x31, 0x4d, 0xe3, 0xaa, 0xfc, 0xd9, 0x1b, 0xae, 0x30, 0x25, 0x11, 0x24, 0x46, 0x07, 0x76, + 0xb3, 0x07, 0x03, 0x67, 0x50, 0xf1, 0x7b, 0xaf, 0x22, 0xc8, 0x48, 0x53, 0x55, 0xcc, 0x7e, 0x21, + 0xa7, 0xe6, 0xc7, 0xe9, 0xc1, 0x1c, 0xbf, 0xf7, 0xab, 0x29, 0xae, 0xb8, 0x47, 0x0e, 0x7a, 0x1f, + 0x26, 0xb9, 0x0a, 0xc5, 0x82, 0xe1, 0x11, 0x05, 0xcf, 0xee, 0xdf, 0x5f, 0x9c, 0xdc, 0x30, 0x59, + 0xe2, 0xa4, 0x04, 0xfb, 0x7f, 0x0a, 0x90, 0xb8, 0x1a, 0xe8, 0x9b, 0x16, 0xcc, 0x92, 0xd4, 0x6f, + 0xb6, 0xe8, 0x00, 0xeb, 0xab, 0xf9, 0x7e, 0x48, 0xa7, 0xe7, 0x27, 0x5f, 0xe2, 0x4a, 0x69, 0x1a, + 0x85, 0xe1, 0x5e, 0xa1, 0xc2, 0x10, 0x91, 0xde, 0x1f, 0xe5, 0xc9, 0x67, 0x88, 0x32, 0x7e, 0xd5, + 0x47, 0x1a, 0xa2, 0x0c, 0x00, 0xce, 0x12, 0x87, 0xbe, 0x06, 0x23, 0x24, 0x68, 0xea, 0x9c, 0x3d, + 0xbf, 0x58, 0xfd, 0x5b, 0x4b, 0xb1, 0xcb, 0x5e, 0x0e, 0x9a, 0x0c, 0x0b, 0xa6, 0xf6, 0xf7, 0x8b, + 0x30, 0x93, 0xfe, 0xfa, 0x48, 0x3d, 0xd8, 0x1e, 0xc9, 0x7c, 0xb0, 0xfd, 0x15, 0x18, 0x25, 0xf5, + 0x30, 0x7a, 0xf4, 0x1c, 0x7f, 0x71, 0xc7, 0x07, 0xb1, 0x84, 0xa1, 0xbb, 0x50, 0x66, 0x21, 0x09, + 0x42, 0x9e, 0x57, 0xa9, 0xd4, 0x36, 0xf7, 0xd7, 0x85, 0x35, 0xcd, 0x00, 0xc7, 0xbc, 0xd0, 0x85, + 0xa4, 0x39, 0xb3, 0xd3, 0xe6, 0x6c, 0xd6, 0x5c, 0xcb, 0xb0, 0x95, 0x80, 0x0e, 0x54, 0x8c, 0x73, + 0x50, 0x86, 0xff, 0x62, 0xee, 0x7d, 0x8f, 0xd5, 0x6e, 0x5a, 0xfe, 0x60, 0x53, 0x0c, 0x31, 0xf9, + 0xc7, 0x79, 0xab, 0xd8, 0xad, 0x47, 0xca, 0x5b, 0xc5, 0x76, 0x19, 0xdc, 0xec, 0x69, 0x98, 0x4c, + 0x7c, 0x44, 0x20, 0x8a, 0xf1, 0x77, 0x49, 0x40, 0x5b, 0x5e, 0x97, 0xd1, 0xc7, 0xb5, 0x18, 0x1f, + 0x4d, 0xf0, 0xb0, 0x8b, 0xf1, 0x31, 0xe3, 0x83, 0x8b, 0xf1, 0x11, 0xee, 0x63, 0x5b, 0x8c, 0x8f, + 0x66, 0xd8, 0x27, 0xea, 0xfc, 0xcf, 0x82, 0xb1, 0x8a, 0x64, 0xe4, 0x59, 0x78, 0x48, 0xe4, 0xf9, + 0x2e, 0x8c, 0x3b, 0x6e, 0x48, 0x83, 0x5d, 0xd2, 0x56, 0x05, 0xce, 0x01, 0x97, 0xba, 0xd6, 0x0d, + 0x54, 0xc0, 0xa3, 0x97, 0xba, 0xae, 0xf8, 0xe0, 0x88, 0x23, 0x6a, 0xc3, 0x09, 0x5d, 0x2b, 0x0a, + 0x28, 0x89, 0x6b, 0xd8, 0xea, 0x85, 0xca, 0x2b, 0xfa, 0x79, 0xc4, 0x95, 0x2c, 0xa4, 0x07, 0xfd, + 0x00, 0x38, 0x9b, 0x29, 0x62, 0x30, 0xc9, 0x8c, 0x94, 0x4b, 0x3b, 0x92, 0x01, 0xeb, 0x6c, 0xe9, + 0x2c, 0xd5, 0x78, 0xd6, 0x62, 0x32, 0xc5, 0x49, 0x19, 0xf6, 0x3f, 0x17, 0x61, 0x3a, 0xa5, 0x69, + 0xa8, 0x0e, 0x50, 0xf7, 0xdc, 0x86, 0x23, 0x67, 0x51, 0x56, 0xc7, 0x3c, 0xd0, 0xb6, 0xae, 0x6a, + 0xba, 0xf8, 0xaa, 0x45, 0x43, 0x0c, 0x1b, 0x6c, 0xfb, 0x04, 0x8e, 0xa5, 0xa1, 0x02, 0xc7, 0xec, + 0x98, 0x66, 0x64, 0xa8, 0x98, 0xe6, 0x92, 0x8c, 0x2b, 0xd4, 0xc9, 0xad, 0xaf, 0xa9, 0xaf, 0x60, + 0xa2, 0xdd, 0xdc, 0x30, 0x81, 0x38, 0x89, 0x2b, 0xbc, 0x70, 0xa3, 0xf7, 0xb7, 0x23, 0x54, 0x50, + 0xf4, 0x5a, 0xde, 0x67, 0x5c, 0x11, 0x03, 0xe9, 0x85, 0x33, 0x00, 0x38, 0x4b, 0xdc, 0xca, 0xf5, + 0x4f, 0xbf, 0x38, 0x75, 0xec, 0xb3, 0x2f, 0x4e, 0x1d, 0xfb, 0xfc, 0x8b, 0x53, 0xc7, 0x3e, 0xda, + 0x3f, 0x65, 0x7d, 0xba, 0x7f, 0xca, 0xfa, 0x6c, 0xff, 0x94, 0xf5, 0xf9, 0xfe, 0x29, 0xeb, 0x07, + 0xfb, 0xa7, 0xac, 0x3f, 0xf8, 0xe1, 0xa9, 0x63, 0xef, 0x3c, 0x33, 0xc8, 0x2f, 0x4b, 0xfe, 0x6f, + 0x00, 0x00, 0x00, 0xff, 0xff, 0x92, 0xf2, 0x6a, 0x55, 0x80, 0x52, 0x00, 0x00, } func (m *AnalysisRunArgument) Marshal() (dAtA []byte, err error) { @@ -5414,6 +5416,21 @@ func (m *PromotionStatus) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if m.State != nil { + { + size, err := m.State.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintGenerated(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x52 + } + i = encodeVarintGenerated(dAtA, i, uint64(m.CurrentStep)) + i-- + dAtA[i] = 0x48 if len(m.HealthChecks) > 0 { for iNdEx := len(m.HealthChecks) - 1; iNdEx >= 0; iNdEx-- { { @@ -7541,6 +7558,11 @@ func (m *PromotionStatus) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } + n += 1 + sovGenerated(uint64(m.CurrentStep)) + if m.State != nil { + l = m.State.Size() + n += 1 + l + sovGenerated(uint64(l)) + } return n } @@ -8766,6 +8788,8 @@ func (this *PromotionStatus) String() string { `FinishedAt:` + strings.Replace(fmt.Sprintf("%v", this.FinishedAt), "Time", "v1.Time", 1) + `,`, `FreightCollection:` + strings.Replace(this.FreightCollection.String(), "FreightCollection", "FreightCollection", 1) + `,`, `HealthChecks:` + repeatedStringForHealthChecks + `,`, + `CurrentStep:` + fmt.Sprintf("%v", this.CurrentStep) + `,`, + `State:` + strings.Replace(fmt.Sprintf("%v", this.State), "JSON", "v11.JSON", 1) + `,`, `}`, }, "") return s @@ -18859,6 +18883,61 @@ func (m *PromotionStatus) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 9: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field CurrentStep", wireType) + } + m.CurrentStep = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.CurrentStep |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 10: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field State", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.State == nil { + m.State = &v11.JSON{} + } + if err := m.State.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(dAtA[iNdEx:]) diff --git a/api/v1alpha1/generated.proto b/api/v1alpha1/generated.proto index e83123021..bfe7fd9c8 100644 --- a/api/v1alpha1/generated.proto +++ b/api/v1alpha1/generated.proto @@ -1389,6 +1389,15 @@ message PromotionStatus { // FinishedAt is the time when the promotion was completed. optional k8s.io.apimachinery.pkg.apis.meta.v1.Time finishedAt = 6; + + // CurrentStep is the index of the current promotion step being executed. This + // permits steps that have already run successfully to be skipped on + // subsequent reconciliations attempts. + optional int64 currentStep = 9; + + // State stores the state of the promotion process between reconciliation + // attempts. + optional k8s.io.apiextensions_apiserver.pkg.apis.apiextensions.v1.JSON state = 10; } // PromotionStep describes a directive to be executed as part of a Promotion. diff --git a/api/v1alpha1/zz_generated.deepcopy.go b/api/v1alpha1/zz_generated.deepcopy.go index ad2fe570f..1bdd7eb15 100644 --- a/api/v1alpha1/zz_generated.deepcopy.go +++ b/api/v1alpha1/zz_generated.deepcopy.go @@ -1374,6 +1374,11 @@ func (in *PromotionStatus) DeepCopyInto(out *PromotionStatus) { in, out := &in.FinishedAt, &out.FinishedAt *out = (*in).DeepCopy() } + if in.State != nil { + in, out := &in.State, &out.State + *out = new(v1.JSON) + (*in).DeepCopyInto(*out) + } } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PromotionStatus. diff --git a/charts/kargo/resources/crds/kargo.akuity.io_promotions.yaml b/charts/kargo/resources/crds/kargo.akuity.io_promotions.yaml index 23ba19b0b..433c718af 100644 --- a/charts/kargo/resources/crds/kargo.akuity.io_promotions.yaml +++ b/charts/kargo/resources/crds/kargo.akuity.io_promotions.yaml @@ -109,6 +109,13 @@ spec: Status describes the current state of the transition represented by this Promotion. properties: + currentStep: + description: |- + CurrentStep is the index of the current promotion step being executed. This + permits steps that have already run successfully to be skipped on + subsequent reconciliations attempts. + format: int64 + type: integer finishedAt: description: FinishedAt is the time when the promotion was completed. format: date-time @@ -501,6 +508,11 @@ spec: description: Phase describes where the Promotion currently is in its lifecycle. type: string + state: + description: |- + State stores the state of the promotion process between reconciliation + attempts. + x-kubernetes-preserve-unknown-fields: true type: object required: - spec diff --git a/charts/kargo/resources/crds/kargo.akuity.io_stages.yaml b/charts/kargo/resources/crds/kargo.akuity.io_stages.yaml index e18aa4c59..a77c656bc 100644 --- a/charts/kargo/resources/crds/kargo.akuity.io_stages.yaml +++ b/charts/kargo/resources/crds/kargo.akuity.io_stages.yaml @@ -1211,6 +1211,13 @@ spec: status: description: Status is the (optional) status of the Promotion. properties: + currentStep: + description: |- + CurrentStep is the index of the current promotion step being executed. This + permits steps that have already run successfully to be skipped on + subsequent reconciliations attempts. + format: int64 + type: integer finishedAt: description: FinishedAt is the time when the promotion was completed. @@ -1611,6 +1618,11 @@ spec: description: Phase describes where the Promotion currently is in its lifecycle. type: string + state: + description: |- + State stores the state of the promotion process between reconciliation + attempts. + x-kubernetes-preserve-unknown-fields: true type: object required: - name @@ -2067,6 +2079,13 @@ spec: status: description: Status is the (optional) status of the Promotion. properties: + currentStep: + description: |- + CurrentStep is the index of the current promotion step being executed. This + permits steps that have already run successfully to be skipped on + subsequent reconciliations attempts. + format: int64 + type: integer finishedAt: description: FinishedAt is the time when the promotion was completed. @@ -2467,6 +2486,11 @@ spec: description: Phase describes where the Promotion currently is in its lifecycle. type: string + state: + description: |- + State stores the state of the promotion process between reconciliation + attempts. + x-kubernetes-preserve-unknown-fields: true type: object required: - name diff --git a/ui/src/gen/schema/promotions.kargo.akuity.io_v1alpha1.json b/ui/src/gen/schema/promotions.kargo.akuity.io_v1alpha1.json index b8525234b..086cff1a2 100644 --- a/ui/src/gen/schema/promotions.kargo.akuity.io_v1alpha1.json +++ b/ui/src/gen/schema/promotions.kargo.akuity.io_v1alpha1.json @@ -63,6 +63,13 @@ "status": { "description": "Status describes the current state of the transition represented by this\nPromotion.", "properties": { + "currentStep": { + "description": "CurrentStep is the index of the current promotion step being executed. This\npermits steps that have already run successfully to be skipped on\nsubsequent reconciliations attempts.", + "format": "int64", + "maximum": 9223372036854776000, + "minimum": -9223372036854776000, + "type": "integer" + }, "finishedAt": { "description": "FinishedAt is the time when the promotion was completed.", "format": "date-time", @@ -426,6 +433,10 @@ "phase": { "description": "Phase describes where the Promotion currently is in its lifecycle.", "type": "string" + }, + "state": { + "description": "State stores the state of the promotion process between reconciliation\nattempts.", + "x-kubernetes-preserve-unknown-fields": true } }, "type": "object" diff --git a/ui/src/gen/schema/stages.kargo.akuity.io_v1alpha1.json b/ui/src/gen/schema/stages.kargo.akuity.io_v1alpha1.json index 0046f0a0b..9e9cdd5fa 100644 --- a/ui/src/gen/schema/stages.kargo.akuity.io_v1alpha1.json +++ b/ui/src/gen/schema/stages.kargo.akuity.io_v1alpha1.json @@ -983,6 +983,13 @@ "status": { "description": "Status is the (optional) status of the Promotion.", "properties": { + "currentStep": { + "description": "CurrentStep is the index of the current promotion step being executed. This\npermits steps that have already run successfully to be skipped on\nsubsequent reconciliations attempts.", + "format": "int64", + "maximum": 9223372036854776000, + "minimum": -9223372036854776000, + "type": "integer" + }, "finishedAt": { "description": "FinishedAt is the time when the promotion was completed.", "format": "date-time", @@ -1346,6 +1353,10 @@ "phase": { "description": "Phase describes where the Promotion currently is in its lifecycle.", "type": "string" + }, + "state": { + "description": "State stores the state of the promotion process between reconciliation\nattempts.", + "x-kubernetes-preserve-unknown-fields": true } }, "type": "object" @@ -1784,6 +1795,13 @@ "status": { "description": "Status is the (optional) status of the Promotion.", "properties": { + "currentStep": { + "description": "CurrentStep is the index of the current promotion step being executed. This\npermits steps that have already run successfully to be skipped on\nsubsequent reconciliations attempts.", + "format": "int64", + "maximum": 9223372036854776000, + "minimum": -9223372036854776000, + "type": "integer" + }, "finishedAt": { "description": "FinishedAt is the time when the promotion was completed.", "format": "date-time", @@ -2147,6 +2165,10 @@ "phase": { "description": "Phase describes where the Promotion currently is in its lifecycle.", "type": "string" + }, + "state": { + "description": "State stores the state of the promotion process between reconciliation\nattempts.", + "x-kubernetes-preserve-unknown-fields": true } }, "type": "object" diff --git a/ui/src/gen/v1alpha1/generated_pb.ts b/ui/src/gen/v1alpha1/generated_pb.ts index c66563a7a..9f58d0fca 100644 --- a/ui/src/gen/v1alpha1/generated_pb.ts +++ b/ui/src/gen/v1alpha1/generated_pb.ts @@ -4043,6 +4043,23 @@ export class PromotionStatus extends Message { */ finishedAt?: Time; + /** + * CurrentStep is the index of the current promotion step being executed. This + * permits steps that have already run successfully to be skipped on + * subsequent reconciliations attempts. + * + * @generated from field: optional int64 currentStep = 9; + */ + currentStep?: bigint; + + /** + * State stores the state of the promotion process between reconciliation + * attempts. + * + * @generated from field: optional k8s.io.apiextensions_apiserver.pkg.apis.apiextensions.v1.JSON state = 10; + */ + state?: JSON; + constructor(data?: PartialMessage) { super(); proto2.util.initPartial(data, this); @@ -4059,6 +4076,8 @@ export class PromotionStatus extends Message { { no: 7, name: "freightCollection", kind: "message", T: FreightCollection, opt: true }, { no: 8, name: "healthChecks", kind: "message", T: HealthCheckStep, repeated: true }, { no: 6, name: "finishedAt", kind: "message", T: Time, opt: true }, + { no: 9, name: "currentStep", kind: "scalar", T: 3 /* ScalarType.INT64 */, opt: true }, + { no: 10, name: "state", kind: "message", T: JSON, opt: true }, ]); static fromBinary(bytes: Uint8Array, options?: Partial): PromotionStatus { From 155fafcbd619035460c7c9ab217144241c2b276f Mon Sep 17 00:00:00 2001 From: Kent Rancourt Date: Sun, 29 Sep 2024 11:52:09 -0400 Subject: [PATCH 3/6] allow simple engine to skip already-completed steps Signed-off-by: Kent Rancourt --- internal/directives/promotions.go | 11 +++++++ internal/directives/simple_engine.go | 47 +++++++++++++++++++++------- internal/directives/state.go | 15 ++++++++- 3 files changed, 61 insertions(+), 12 deletions(-) diff --git a/internal/directives/promotions.go b/internal/directives/promotions.go index f07fe17e9..7844bb7a1 100644 --- a/internal/directives/promotions.go +++ b/internal/directives/promotions.go @@ -44,6 +44,11 @@ type PromotionContext struct { // well as any Freight that has been inherited from the target Stage's current // state. Freight kargoapi.FreightCollection + // SharedState is the index of the step from which the promotion should begin + // execution. + StartFromStep int64 + // State is the current state of the promotion process. + State State } // PromotionStep describes a single step in a user-defined promotion process. @@ -79,6 +84,12 @@ type PromotionResult struct { // PromotionStepRunners. This configuration can later be used as input to // health check processes. HealthCheckSteps []HealthCheckStep + // If the promotion process remains in-progress, perhaps waiting for a change + // in some external state, the value of this field will indicated where to + // resume the process in the next reconciliation. + CurrentStep int64 + // State is the current state of the promotion process. + State State } // PromotionStatus is a type that represents the high-level outcome of the diff --git a/internal/directives/simple_engine.go b/internal/directives/simple_engine.go index 8bad1e8ea..a083e4c23 100644 --- a/internal/directives/simple_engine.go +++ b/internal/directives/simple_engine.go @@ -48,24 +48,40 @@ func (e *SimpleEngine) Promote( var err error workDir, err = os.MkdirTemp("", "run-") if err != nil { - return PromotionResult{Status: PromotionStatusFailure}, + return PromotionResult{ + Status: PromotionStatusFailure, + CurrentStep: 0, + }, fmt.Errorf("temporary working directory creation failed: %w", err) } defer os.RemoveAll(workDir) } // Initialize the shared state that will be passed to each step. - state := make(State) + state := promoCtx.State.DeepCopy() + if state == nil { + state = make(State) + } var healthCheckSteps []HealthCheckStep - for _, step := range steps { + + for i := promoCtx.StartFromStep; i < int64(len(steps)); i++ { + step := steps[i] select { case <-ctx.Done(): - return PromotionResult{Status: PromotionStatusFailure}, ctx.Err() + return PromotionResult{ + Status: PromotionStatusFailure, + CurrentStep: i, + State: state, + }, ctx.Err() default: } reg, err := e.registry.GetPromotionStepRunnerRegistration(step.Kind) if err != nil { - return PromotionResult{Status: PromotionStatusFailure}, + return PromotionResult{ + Status: PromotionStatusFailure, + CurrentStep: i, + State: state, + }, fmt.Errorf("no runner registered for step kind %q: %w", step.Kind, err) } @@ -93,17 +109,24 @@ func (e *SimpleEngine) Promote( } result, err := reg.Runner.RunPromotionStep(ctx, stepCtx) + if step.Alias != "" { + state[step.Alias] = result.Output + } if err != nil { - return PromotionResult{Status: PromotionStatusFailure}, + return PromotionResult{ + Status: PromotionStatusFailure, + CurrentStep: i, + State: state, + }, fmt.Errorf("failed to run step %q: %w", step.Kind, err) } if result.Status != PromotionStatusSuccess { - return PromotionResult{Status: result.Status}, nil - } - - if step.Alias != "" { - state[step.Alias] = result.Output + return PromotionResult{ + Status: result.Status, + CurrentStep: i, + State: state, + }, nil } if result.HealthCheckStep != nil { @@ -113,6 +136,8 @@ func (e *SimpleEngine) Promote( return PromotionResult{ Status: PromotionStatusSuccess, HealthCheckSteps: healthCheckSteps, + CurrentStep: 0, + State: state, }, nil } diff --git a/internal/directives/state.go b/internal/directives/state.go index 7f677608b..596a222d0 100644 --- a/internal/directives/state.go +++ b/internal/directives/state.go @@ -1,6 +1,10 @@ package directives -import "k8s.io/apimachinery/pkg/runtime" +import ( + "encoding/json" + + "k8s.io/apimachinery/pkg/runtime" +) // State is a type that represents shared state between executions of // PromotionSteps. It is not safe for concurrent use at present, as we expect @@ -28,3 +32,12 @@ func (s *State) DeepCopy() State { // consider writing our own implementation in the future. return runtime.DeepCopyJSON(*s) } + +// ToJSON marshals the State to JSON. +func (s State) ToJSON() []byte { + if len(s) == 0 { + return nil + } + b, _ := json.Marshal(s) + return b +} From 35472c7cc6407f31186dca08f590cc9ec77e46b5 Mon Sep 17 00:00:00 2001 From: Kent Rancourt Date: Sun, 29 Sep 2024 11:53:05 -0400 Subject: [PATCH 4/6] corresponding controller changes Signed-off-by: Kent Rancourt --- internal/controller/promotions/promotions.go | 30 +++++++++++++------- 1 file changed, 19 insertions(+), 11 deletions(-) diff --git a/internal/controller/promotions/promotions.go b/internal/controller/promotions/promotions.go index cfa59de90..60f507e9f 100644 --- a/internal/controller/promotions/promotions.go +++ b/internal/controller/promotions/promotions.go @@ -511,25 +511,34 @@ func (r *reconciler) promote( }) } - workDir := filepath.Join(os.TempDir(), "promotion-"+string(workingPromo.UID)) - if err := os.MkdirAll(workDir, 0o700); err != nil && !os.IsExist(err) { + promoCtx := directives.PromotionContext{ + WorkDir: filepath.Join(os.TempDir(), "promotion-"+string(workingPromo.UID)), + Project: stageNamespace, + Stage: stageName, + FreightRequests: stage.Spec.RequestedFreight, + Freight: *workingPromo.Status.FreightCollection.DeepCopy(), + StartFromStep: promo.Status.CurrentStep, + State: directives.State(workingPromo.Status.GetState()), + } + if err := os.Mkdir(promoCtx.WorkDir, 0o700); err == nil { + // If we're working with a fresh directory, we should start the promotion + // process again from the beginning. + promoCtx.StartFromStep = 0 + promoCtx.State = nil + } else if !os.IsExist(err) { return nil, fmt.Errorf("error creating working directory: %w", err) } defer func() { if workingPromo.Status.Phase.IsTerminal() { - if err := os.RemoveAll(workDir); err != nil { + if err := os.RemoveAll(promoCtx.WorkDir); err != nil { logger.Error(err, "could not remove working directory") } } }() - res, err := r.directivesEngine.Promote(ctx, directives.PromotionContext{ - WorkDir: workDir, - Project: stageNamespace, - Stage: stageName, - FreightRequests: stage.Spec.RequestedFreight, - Freight: *workingPromo.Status.FreightCollection.DeepCopy(), - }, steps) + res, err := r.directivesEngine.Promote(ctx, promoCtx, steps) + workingPromo.Status.CurrentStep = res.CurrentStep + workingPromo.Status.State = &apiextensionsv1.JSON{Raw: res.State.ToJSON()} switch res.Status { case directives.PromotionStatusPending: workingPromo.Status.Phase = kargoapi.PromotionPhaseRunning @@ -541,7 +550,6 @@ func (r *reconciler) promote( Config: &apiextensionsv1.JSON{Raw: step.Config.ToJSON()}, }) } - workingPromo.Status.Phase = kargoapi.PromotionPhaseSucceeded workingPromo.Status.HealthChecks = healthChecks case directives.PromotionStatusFailure: From dab7545a19c115e86685027f9d7476b263049ac4 Mon Sep 17 00:00:00 2001 From: Kent Rancourt Date: Sun, 29 Sep 2024 19:37:54 -0400 Subject: [PATCH 5/6] make wait-for-pr tolerate a float64 pr number Signed-off-by: Kent Rancourt --- internal/directives/git_pr_waiter.go | 67 +++++++++++++++------------- 1 file changed, 37 insertions(+), 30 deletions(-) diff --git a/internal/directives/git_pr_waiter.go b/internal/directives/git_pr_waiter.go index e72c7c1e5..7bb54923f 100644 --- a/internal/directives/git_pr_waiter.go +++ b/internal/directives/git_pr_waiter.go @@ -131,35 +131,42 @@ func (g *gitPRWaiter) runPromotionStep( } func getPRNumber(sharedState State, cfg GitWaitForPRConfig) (int64, error) { - prNumber := cfg.PRNumber - if cfg.PRNumberFromOpen != "" { - stepOutput, exists := sharedState.Get(cfg.PRNumberFromOpen) - if !exists { - return 0, fmt.Errorf( - "no output found from step with alias %q", - cfg.PRNumberFromOpen, - ) - } - stepOutputMap, ok := stepOutput.(map[string]any) - if !ok { - return 0, fmt.Errorf( - "output from step with alias %q is not a map[string]any", - cfg.PRNumberFromOpen, - ) - } - prNumberAny, exists := stepOutputMap[prNumberKey] - if !exists { - return 0, fmt.Errorf( - "no PR number found in output from step with alias %q", - cfg.PRNumberFromOpen, - ) - } - if prNumber, ok = prNumberAny.(int64); !ok { - return 0, fmt.Errorf( - "PR number in output from step with alias %q is not an int64", - cfg.PRNumberFromOpen, - ) - } + if cfg.PRNumberFromOpen == "" { + return cfg.PRNumber, nil + } + stepOutput, exists := sharedState.Get(cfg.PRNumberFromOpen) + if !exists { + return 0, fmt.Errorf( + "no output found from step with alias %q", + cfg.PRNumberFromOpen, + ) + } + stepOutputMap, ok := stepOutput.(map[string]any) + if !ok { + return 0, fmt.Errorf( + "output from step with alias %q is not a map[string]any", + cfg.PRNumberFromOpen, + ) + } + prNumberAny, exists := stepOutputMap[prNumberKey] + if !exists { + return 0, fmt.Errorf( + "no PR number found in output from step with alias %q", + cfg.PRNumberFromOpen, + ) + } + // If the state was rehydrated from PromotionStatus, which makes use of + // apiextensions.JSON, the PR number will be a float64. Otherwise, it will be + // an int64. We need to handle both cases. + switch prNumber := prNumberAny.(type) { + case int64: + return prNumber, nil + case float64: + return int64(prNumber), nil + default: + return 0, fmt.Errorf( + "PR number in output from step with alias %q is not an int64", + cfg.PRNumberFromOpen, + ) } - return prNumber, nil } From e98b457ab09c49e5c11ea37852eb6e8fc8be747e Mon Sep 17 00:00:00 2001 From: Kent Rancourt Date: Mon, 30 Sep 2024 07:37:12 -0400 Subject: [PATCH 6/6] Update api/v1alpha1/promotion_types.go Co-authored-by: Hidde Beydals --- api/v1alpha1/promotion_types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/v1alpha1/promotion_types.go b/api/v1alpha1/promotion_types.go index 90a8f9529..9124af864 100644 --- a/api/v1alpha1/promotion_types.go +++ b/api/v1alpha1/promotion_types.go @@ -152,7 +152,7 @@ type PromotionStatus struct { State *apiextensionsv1.JSON `json:"state,omitempty" protobuf:"bytes,10,opt,name=state"` } -// GetConfig returns the State field as unmarshalled YAML. +// GetState returns the State field as unmarshalled YAML. func (s *PromotionStatus) GetState() map[string]any { if s.State == nil { return nil