diff --git a/csi.proto b/csi.proto index cb947757..8d1f706f 100644 --- a/csi.proto +++ b/csi.proto @@ -96,8 +96,8 @@ service Controller { rpc ControllerExpandVolume (ControllerExpandVolumeRequest) returns (ControllerExpandVolumeResponse) {} - rpc GetVolume (GetVolumeRequest) - returns (GetVolumeResponse) { + rpc ControllerGetVolume (ControllerGetVolumeRequest) + returns (ControllerGetVolumeResponse) { option (alpha_method) = true; } } @@ -855,10 +855,11 @@ message ListVolumesResponse { // reported by the SP. The CO MUST be resilient to that. repeated string published_node_ids = 1; - // volume_condition shows error conditions reported by the SP. + // volume_condition shows information about the current health of + // the volume. + // This field is OPTIONAL. // This field MUST be specified if the // LIST_VOLUMES_VOLUME_CONDITION controller capability is supported. - // This field is OPTIONAL. VolumeCondition volume_condition = 2 [(alpha_field) = true]; } @@ -882,31 +883,34 @@ message ListVolumesResponse { // An empty string is equal to an unspecified field value. string next_token = 2; } -message GetVolumeRequest { +message ControllerGetVolumeRequest { option (alpha_message) = true; // Identity information for a specific volume. This field is - // REQUIRED. GetVolume will return with current volume information. + // REQUIRED. ControllerGetVolume will return with current + // volume information. string volume_id = 1; } -message GetVolumeResponse { +message ControllerGetVolumeResponse { option (alpha_message) = true; message VolumeStatus{ // A list of all `node_id` of nodes that the volume in this entry // is controller published on. // This field is OPTIONAL. If it is not specified and the SP has - // the GET_VOLUME_PUBLISHED_NODES controller capability, the CO + // the PUBLISH_UNPUBLISH_VOLUME controller capability, the CO // MAY assume the volume is not controller published to any nodes. // If the field is not specified and the SP does not have the - // GET_VOLUME_PUBLISHED_NODES controller capability, the CO MUST + // PUBLISH_UNPUBLISH_VOLUME controller capability, the CO MUST // not interpret this field. // published_node_ids MAY include nodes not published to or // reported by the SP. The CO MUST be resilient to that. repeated string published_node_ids = 1; - // volume_condition shows error conditions reported by the SP. + // volume_condition shows information about the current health of + // the volume. + // This field is OPTIONAL. // This field MUST be specified if the // GET_VOLUME_VOLUME_CONDITION controller capability is supported. VolumeCondition volume_condition = 2; @@ -995,19 +999,14 @@ message ControllerServiceCapability { LIST_VOLUMES_PUBLISHED_NODES = 10; // Indicates the SP supports the - // ListVolumesResponse.entry.volume_condition field - LIST_VOLUMES_VOLUME_CONDITION = 11 [(alpha_enum_value) = true]; + // ListVolumesResponse.entry.status.volume_condition field + // if SP also supports LIST_VOLUMES capability, or supports the + // ControllerGetVolumeResponse.status.volume_condition field + // if SP also supports GET_VOLUME capability + VOLUME_CONDITION = 11 [(alpha_enum_value) = true]; - // Indicates the SP supports the GetVolume RPC + // Indicates the SP supports the ControllerGetVolume RPC GET_VOLUME = 12 [(alpha_enum_value) = true]; - - // Indicates the SP supports the - // GetVolumeResponse.volume_condition field - GET_VOLUME_VOLUME_CONDITION = 13 [(alpha_enum_value) = true]; - - // Indicates the SP supports the - // GetVolumesResponse.published_node_ids field - GET_VOLUME_PUBLISHED_NODES = 14 [(alpha_enum_value) = true]; } Type type = 1; @@ -1367,9 +1366,8 @@ message VolumeCondition { option (alpha_message) = true; // Indicates the health condition of a volume is not normal. - // This field is OPTIONAL. If not present, it indicates the - // health condition is unknown. - .google.protobuf.BoolValue abnormal = 1; + // This field is REQUIRED. + bool abnormal = 1; // The message describing the health condition of the volume. // This field is REQUIRED. diff --git a/lib/go/csi/csi.pb.go b/lib/go/csi/csi.pb.go index d17a9868..cf615267 100644 --- a/lib/go/csi/csi.pb.go +++ b/lib/go/csi/csi.pb.go @@ -206,16 +206,13 @@ const ( // ListVolumesResponse.entry.published_nodes field ControllerServiceCapability_RPC_LIST_VOLUMES_PUBLISHED_NODES ControllerServiceCapability_RPC_Type = 10 // Indicates the SP supports the - // ListVolumesResponse.entry.volume_condition field - ControllerServiceCapability_RPC_LIST_VOLUMES_VOLUME_CONDITION ControllerServiceCapability_RPC_Type = 11 - // Indicates the SP supports the GetVolume RPC + // ListVolumesResponse.entry.status.volume_condition field + // if SP also supports LIST_VOLUMES capability, or supports the + // ControllerGetVolumeResponse.status.volume_condition field + // if SP also supports GET_VOLUME capability + ControllerServiceCapability_RPC_VOLUME_CONDITION ControllerServiceCapability_RPC_Type = 11 + // Indicates the SP supports the ControllerGetVolume RPC ControllerServiceCapability_RPC_GET_VOLUME ControllerServiceCapability_RPC_Type = 12 - // Indicates the SP supports the - // GetVolumeResponse.volume_condition field - ControllerServiceCapability_RPC_GET_VOLUME_VOLUME_CONDITION ControllerServiceCapability_RPC_Type = 13 - // Indicates the SP supports the - // GetVolumesResponse.published_node_ids field - ControllerServiceCapability_RPC_GET_VOLUME_PUBLISHED_NODES ControllerServiceCapability_RPC_Type = 14 ) var ControllerServiceCapability_RPC_Type_name = map[int32]string{ @@ -230,28 +227,24 @@ var ControllerServiceCapability_RPC_Type_name = map[int32]string{ 8: "PUBLISH_READONLY", 9: "EXPAND_VOLUME", 10: "LIST_VOLUMES_PUBLISHED_NODES", - 11: "LIST_VOLUMES_VOLUME_CONDITION", + 11: "VOLUME_CONDITION", 12: "GET_VOLUME", - 13: "GET_VOLUME_VOLUME_CONDITION", - 14: "GET_VOLUME_PUBLISHED_NODES", } var ControllerServiceCapability_RPC_Type_value = map[string]int32{ - "UNKNOWN": 0, - "CREATE_DELETE_VOLUME": 1, - "PUBLISH_UNPUBLISH_VOLUME": 2, - "LIST_VOLUMES": 3, - "GET_CAPACITY": 4, - "CREATE_DELETE_SNAPSHOT": 5, - "LIST_SNAPSHOTS": 6, - "CLONE_VOLUME": 7, - "PUBLISH_READONLY": 8, - "EXPAND_VOLUME": 9, - "LIST_VOLUMES_PUBLISHED_NODES": 10, - "LIST_VOLUMES_VOLUME_CONDITION": 11, - "GET_VOLUME": 12, - "GET_VOLUME_VOLUME_CONDITION": 13, - "GET_VOLUME_PUBLISHED_NODES": 14, + "UNKNOWN": 0, + "CREATE_DELETE_VOLUME": 1, + "PUBLISH_UNPUBLISH_VOLUME": 2, + "LIST_VOLUMES": 3, + "GET_CAPACITY": 4, + "CREATE_DELETE_SNAPSHOT": 5, + "LIST_SNAPSHOTS": 6, + "CLONE_VOLUME": 7, + "PUBLISH_READONLY": 8, + "EXPAND_VOLUME": 9, + "LIST_VOLUMES_PUBLISHED_NODES": 10, + "VOLUME_CONDITION": 11, + "GET_VOLUME": 12, } func (x ControllerServiceCapability_RPC_Type) String() string { @@ -2413,10 +2406,11 @@ type ListVolumesResponse_VolumeStatus struct { // published_node_ids MAY include nodes not published to or // reported by the SP. The CO MUST be resilient to that. PublishedNodeIds []string `protobuf:"bytes,1,rep,name=published_node_ids,json=publishedNodeIds,proto3" json:"published_node_ids,omitempty"` - // volume_condition shows error conditions reported by the SP. + // volume_condition shows information about the current health of + // the volume. + // This field is OPTIONAL. // This field MUST be specified if the // LIST_VOLUMES_VOLUME_CONDITION controller capability is supported. - // This field is OPTIONAL. VolumeCondition *VolumeCondition `protobuf:"bytes,2,opt,name=volume_condition,json=volumeCondition,proto3" json:"volume_condition,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` @@ -2513,110 +2507,113 @@ func (m *ListVolumesResponse_Entry) GetStatus() *ListVolumesResponse_VolumeStatu return nil } -type GetVolumeRequest struct { +type ControllerGetVolumeRequest struct { // Identity information for a specific volume. This field is - // REQUIRED. GetVolume will return with current volume information. + // REQUIRED. ControllerGetVolume will return with current + // volume information. VolumeId string `protobuf:"bytes,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } -func (m *GetVolumeRequest) Reset() { *m = GetVolumeRequest{} } -func (m *GetVolumeRequest) String() string { return proto.CompactTextString(m) } -func (*GetVolumeRequest) ProtoMessage() {} -func (*GetVolumeRequest) Descriptor() ([]byte, []int) { +func (m *ControllerGetVolumeRequest) Reset() { *m = ControllerGetVolumeRequest{} } +func (m *ControllerGetVolumeRequest) String() string { return proto.CompactTextString(m) } +func (*ControllerGetVolumeRequest) ProtoMessage() {} +func (*ControllerGetVolumeRequest) Descriptor() ([]byte, []int) { return fileDescriptor_9cdb00adce470e01, []int{25} } -func (m *GetVolumeRequest) XXX_Unmarshal(b []byte) error { - return xxx_messageInfo_GetVolumeRequest.Unmarshal(m, b) +func (m *ControllerGetVolumeRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ControllerGetVolumeRequest.Unmarshal(m, b) } -func (m *GetVolumeRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - return xxx_messageInfo_GetVolumeRequest.Marshal(b, m, deterministic) +func (m *ControllerGetVolumeRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ControllerGetVolumeRequest.Marshal(b, m, deterministic) } -func (m *GetVolumeRequest) XXX_Merge(src proto.Message) { - xxx_messageInfo_GetVolumeRequest.Merge(m, src) +func (m *ControllerGetVolumeRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_ControllerGetVolumeRequest.Merge(m, src) } -func (m *GetVolumeRequest) XXX_Size() int { - return xxx_messageInfo_GetVolumeRequest.Size(m) +func (m *ControllerGetVolumeRequest) XXX_Size() int { + return xxx_messageInfo_ControllerGetVolumeRequest.Size(m) } -func (m *GetVolumeRequest) XXX_DiscardUnknown() { - xxx_messageInfo_GetVolumeRequest.DiscardUnknown(m) +func (m *ControllerGetVolumeRequest) XXX_DiscardUnknown() { + xxx_messageInfo_ControllerGetVolumeRequest.DiscardUnknown(m) } -var xxx_messageInfo_GetVolumeRequest proto.InternalMessageInfo +var xxx_messageInfo_ControllerGetVolumeRequest proto.InternalMessageInfo -func (m *GetVolumeRequest) GetVolumeId() string { +func (m *ControllerGetVolumeRequest) GetVolumeId() string { if m != nil { return m.VolumeId } return "" } -type GetVolumeResponse struct { +type ControllerGetVolumeResponse struct { // This field is REQUIRED Volume *Volume `protobuf:"bytes,1,opt,name=volume,proto3" json:"volume,omitempty"` // This field is OPTIONAL. This field MUST be specified if the // GET_VOLUME_VOLUME_CONDITION controller capability is supported. - Status *GetVolumeResponse_VolumeStatus `protobuf:"bytes,2,opt,name=status,proto3" json:"status,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Status *ControllerGetVolumeResponse_VolumeStatus `protobuf:"bytes,2,opt,name=status,proto3" json:"status,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *GetVolumeResponse) Reset() { *m = GetVolumeResponse{} } -func (m *GetVolumeResponse) String() string { return proto.CompactTextString(m) } -func (*GetVolumeResponse) ProtoMessage() {} -func (*GetVolumeResponse) Descriptor() ([]byte, []int) { +func (m *ControllerGetVolumeResponse) Reset() { *m = ControllerGetVolumeResponse{} } +func (m *ControllerGetVolumeResponse) String() string { return proto.CompactTextString(m) } +func (*ControllerGetVolumeResponse) ProtoMessage() {} +func (*ControllerGetVolumeResponse) Descriptor() ([]byte, []int) { return fileDescriptor_9cdb00adce470e01, []int{26} } -func (m *GetVolumeResponse) XXX_Unmarshal(b []byte) error { - return xxx_messageInfo_GetVolumeResponse.Unmarshal(m, b) +func (m *ControllerGetVolumeResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ControllerGetVolumeResponse.Unmarshal(m, b) } -func (m *GetVolumeResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - return xxx_messageInfo_GetVolumeResponse.Marshal(b, m, deterministic) +func (m *ControllerGetVolumeResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ControllerGetVolumeResponse.Marshal(b, m, deterministic) } -func (m *GetVolumeResponse) XXX_Merge(src proto.Message) { - xxx_messageInfo_GetVolumeResponse.Merge(m, src) +func (m *ControllerGetVolumeResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_ControllerGetVolumeResponse.Merge(m, src) } -func (m *GetVolumeResponse) XXX_Size() int { - return xxx_messageInfo_GetVolumeResponse.Size(m) +func (m *ControllerGetVolumeResponse) XXX_Size() int { + return xxx_messageInfo_ControllerGetVolumeResponse.Size(m) } -func (m *GetVolumeResponse) XXX_DiscardUnknown() { - xxx_messageInfo_GetVolumeResponse.DiscardUnknown(m) +func (m *ControllerGetVolumeResponse) XXX_DiscardUnknown() { + xxx_messageInfo_ControllerGetVolumeResponse.DiscardUnknown(m) } -var xxx_messageInfo_GetVolumeResponse proto.InternalMessageInfo +var xxx_messageInfo_ControllerGetVolumeResponse proto.InternalMessageInfo -func (m *GetVolumeResponse) GetVolume() *Volume { +func (m *ControllerGetVolumeResponse) GetVolume() *Volume { if m != nil { return m.Volume } return nil } -func (m *GetVolumeResponse) GetStatus() *GetVolumeResponse_VolumeStatus { +func (m *ControllerGetVolumeResponse) GetStatus() *ControllerGetVolumeResponse_VolumeStatus { if m != nil { return m.Status } return nil } -type GetVolumeResponse_VolumeStatus struct { +type ControllerGetVolumeResponse_VolumeStatus struct { // A list of all `node_id` of nodes that the volume in this entry // is controller published on. // This field is OPTIONAL. If it is not specified and the SP has - // the GET_VOLUME_PUBLISHED_NODES controller capability, the CO + // the PUBLISH_UNPUBLISH_VOLUME controller capability, the CO // MAY assume the volume is not controller published to any nodes. // If the field is not specified and the SP does not have the - // GET_VOLUME_PUBLISHED_NODES controller capability, the CO MUST + // PUBLISH_UNPUBLISH_VOLUME controller capability, the CO MUST // not interpret this field. // published_node_ids MAY include nodes not published to or // reported by the SP. The CO MUST be resilient to that. PublishedNodeIds []string `protobuf:"bytes,1,rep,name=published_node_ids,json=publishedNodeIds,proto3" json:"published_node_ids,omitempty"` - // volume_condition shows error conditions reported by the SP. + // volume_condition shows information about the current health of + // the volume. + // This field is OPTIONAL. // This field MUST be specified if the // GET_VOLUME_VOLUME_CONDITION controller capability is supported. VolumeCondition *VolumeCondition `protobuf:"bytes,2,opt,name=volume_condition,json=volumeCondition,proto3" json:"volume_condition,omitempty"` @@ -2625,39 +2622,41 @@ type GetVolumeResponse_VolumeStatus struct { XXX_sizecache int32 `json:"-"` } -func (m *GetVolumeResponse_VolumeStatus) Reset() { *m = GetVolumeResponse_VolumeStatus{} } -func (m *GetVolumeResponse_VolumeStatus) String() string { return proto.CompactTextString(m) } -func (*GetVolumeResponse_VolumeStatus) ProtoMessage() {} -func (*GetVolumeResponse_VolumeStatus) Descriptor() ([]byte, []int) { +func (m *ControllerGetVolumeResponse_VolumeStatus) Reset() { + *m = ControllerGetVolumeResponse_VolumeStatus{} +} +func (m *ControllerGetVolumeResponse_VolumeStatus) String() string { return proto.CompactTextString(m) } +func (*ControllerGetVolumeResponse_VolumeStatus) ProtoMessage() {} +func (*ControllerGetVolumeResponse_VolumeStatus) Descriptor() ([]byte, []int) { return fileDescriptor_9cdb00adce470e01, []int{26, 0} } -func (m *GetVolumeResponse_VolumeStatus) XXX_Unmarshal(b []byte) error { - return xxx_messageInfo_GetVolumeResponse_VolumeStatus.Unmarshal(m, b) +func (m *ControllerGetVolumeResponse_VolumeStatus) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ControllerGetVolumeResponse_VolumeStatus.Unmarshal(m, b) } -func (m *GetVolumeResponse_VolumeStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - return xxx_messageInfo_GetVolumeResponse_VolumeStatus.Marshal(b, m, deterministic) +func (m *ControllerGetVolumeResponse_VolumeStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ControllerGetVolumeResponse_VolumeStatus.Marshal(b, m, deterministic) } -func (m *GetVolumeResponse_VolumeStatus) XXX_Merge(src proto.Message) { - xxx_messageInfo_GetVolumeResponse_VolumeStatus.Merge(m, src) +func (m *ControllerGetVolumeResponse_VolumeStatus) XXX_Merge(src proto.Message) { + xxx_messageInfo_ControllerGetVolumeResponse_VolumeStatus.Merge(m, src) } -func (m *GetVolumeResponse_VolumeStatus) XXX_Size() int { - return xxx_messageInfo_GetVolumeResponse_VolumeStatus.Size(m) +func (m *ControllerGetVolumeResponse_VolumeStatus) XXX_Size() int { + return xxx_messageInfo_ControllerGetVolumeResponse_VolumeStatus.Size(m) } -func (m *GetVolumeResponse_VolumeStatus) XXX_DiscardUnknown() { - xxx_messageInfo_GetVolumeResponse_VolumeStatus.DiscardUnknown(m) +func (m *ControllerGetVolumeResponse_VolumeStatus) XXX_DiscardUnknown() { + xxx_messageInfo_ControllerGetVolumeResponse_VolumeStatus.DiscardUnknown(m) } -var xxx_messageInfo_GetVolumeResponse_VolumeStatus proto.InternalMessageInfo +var xxx_messageInfo_ControllerGetVolumeResponse_VolumeStatus proto.InternalMessageInfo -func (m *GetVolumeResponse_VolumeStatus) GetPublishedNodeIds() []string { +func (m *ControllerGetVolumeResponse_VolumeStatus) GetPublishedNodeIds() []string { if m != nil { return m.PublishedNodeIds } return nil } -func (m *GetVolumeResponse_VolumeStatus) GetVolumeCondition() *VolumeCondition { +func (m *ControllerGetVolumeResponse_VolumeStatus) GetVolumeCondition() *VolumeCondition { if m != nil { return m.VolumeCondition } @@ -4226,9 +4225,8 @@ func (m *VolumeUsage) GetUnit() VolumeUsage_Unit { // VolumeCondition represents the current health condition of a volume type VolumeCondition struct { // Indicates the health condition of a volume is not normal. - // This field is OPTIONAL. If not present, it indicates the - // health condition is unknown. - Abnormal *wrappers.BoolValue `protobuf:"bytes,1,opt,name=abnormal,proto3" json:"abnormal,omitempty"` + // This field is REQUIRED. + Abnormal bool `protobuf:"varint,1,opt,name=abnormal,proto3" json:"abnormal,omitempty"` // The message describing the health condition of the volume. // This field is REQUIRED. Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"` @@ -4262,11 +4260,11 @@ func (m *VolumeCondition) XXX_DiscardUnknown() { var xxx_messageInfo_VolumeCondition proto.InternalMessageInfo -func (m *VolumeCondition) GetAbnormal() *wrappers.BoolValue { +func (m *VolumeCondition) GetAbnormal() bool { if m != nil { return m.Abnormal } - return nil + return false } func (m *VolumeCondition) GetMessage() string { @@ -4822,9 +4820,9 @@ func init() { proto.RegisterType((*ListVolumesResponse)(nil), "csi.v1.ListVolumesResponse") proto.RegisterType((*ListVolumesResponse_VolumeStatus)(nil), "csi.v1.ListVolumesResponse.VolumeStatus") proto.RegisterType((*ListVolumesResponse_Entry)(nil), "csi.v1.ListVolumesResponse.Entry") - proto.RegisterType((*GetVolumeRequest)(nil), "csi.v1.GetVolumeRequest") - proto.RegisterType((*GetVolumeResponse)(nil), "csi.v1.GetVolumeResponse") - proto.RegisterType((*GetVolumeResponse_VolumeStatus)(nil), "csi.v1.GetVolumeResponse.VolumeStatus") + proto.RegisterType((*ControllerGetVolumeRequest)(nil), "csi.v1.ControllerGetVolumeRequest") + proto.RegisterType((*ControllerGetVolumeResponse)(nil), "csi.v1.ControllerGetVolumeResponse") + proto.RegisterType((*ControllerGetVolumeResponse_VolumeStatus)(nil), "csi.v1.ControllerGetVolumeResponse.VolumeStatus") proto.RegisterType((*GetCapacityRequest)(nil), "csi.v1.GetCapacityRequest") proto.RegisterMapType((map[string]string)(nil), "csi.v1.GetCapacityRequest.ParametersEntry") proto.RegisterType((*GetCapacityResponse)(nil), "csi.v1.GetCapacityResponse") @@ -4887,236 +4885,235 @@ func init() { } var fileDescriptor_9cdb00adce470e01 = []byte{ - // 3667 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x3b, 0x4b, 0x70, 0x1b, 0xc7, - 0xb1, 0x5c, 0x7c, 0xf8, 0x69, 0x90, 0x14, 0x34, 0xfc, 0x08, 0x5a, 0x92, 0x12, 0xb5, 0xfa, 0x98, - 0x92, 0x25, 0xe8, 0x99, 0xb6, 0x54, 0xcf, 0x94, 0xfc, 0x01, 0x40, 0x88, 0x84, 0x45, 0x81, 0xf4, - 0x02, 0x94, 0x2c, 0xbd, 0xe7, 0x5a, 0x2f, 0x81, 0x21, 0xb9, 0x65, 0x60, 0x17, 0xda, 0x5d, 0x30, - 0x62, 0x2e, 0x49, 0xc5, 0xc9, 0x21, 0x95, 0xa4, 0x2a, 0xb7, 0xe4, 0x96, 0x54, 0x92, 0x53, 0x2a, - 0x2e, 0x1f, 0x92, 0x54, 0x8e, 0xa9, 0xca, 0x31, 0x07, 0x57, 0x6e, 0x49, 0xe5, 0xe2, 0xbb, 0xcb, - 0xa9, 0xf2, 0x39, 0xa7, 0xd4, 0xce, 0xcc, 0x2e, 0xf6, 0x0f, 0x40, 0x94, 0xca, 0x87, 0x9c, 0x88, - 0xed, 0xe9, 0xee, 0xe9, 0x99, 0xe9, 0xee, 0xe9, 0xcf, 0x10, 0x6e, 0x1d, 0x28, 0xe6, 0x61, 0x77, - 0x2f, 0xdf, 0xd0, 0xda, 0x37, 0x1b, 0x9a, 0x6a, 0xca, 0x8a, 0x8a, 0xf5, 0x1b, 0x86, 0xa9, 0xe9, - 0xf2, 0x01, 0xbe, 0xa1, 0xa8, 0x26, 0xd6, 0xf7, 0xe5, 0x06, 0xbe, 0x69, 0x74, 0x70, 0xe3, 0x66, - 0xc3, 0x50, 0xf2, 0x1d, 0x5d, 0x33, 0x35, 0x34, 0x6a, 0xfd, 0x3c, 0x7a, 0x8d, 0x5f, 0x3e, 0xd0, - 0xb4, 0x83, 0x16, 0xbe, 0x49, 0xa0, 0x7b, 0xdd, 0xfd, 0x9b, 0x4d, 0x6c, 0x34, 0x74, 0xa5, 0x63, - 0x6a, 0x3a, 0xc5, 0xe4, 0xcf, 0xfb, 0x31, 0x4c, 0xa5, 0x8d, 0x0d, 0x53, 0x6e, 0x77, 0x18, 0xc2, - 0x39, 0x3f, 0xc2, 0xb7, 0x74, 0xb9, 0xd3, 0xc1, 0xba, 0x41, 0xc7, 0x85, 0x79, 0x98, 0xdd, 0xc0, - 0xe6, 0x4e, 0xab, 0x7b, 0xa0, 0xa8, 0x15, 0x75, 0x5f, 0x13, 0xf1, 0xd3, 0x2e, 0x36, 0x4c, 0xe1, - 0x1f, 0x1c, 0xcc, 0xf9, 0x06, 0x8c, 0x8e, 0xa6, 0x1a, 0x18, 0x21, 0x48, 0xa9, 0x72, 0x1b, 0xe7, - 0xb8, 0x65, 0x6e, 0x65, 0x42, 0x24, 0xbf, 0xd1, 0x65, 0x98, 0x3e, 0xc2, 0x6a, 0x53, 0xd3, 0xa5, - 0x23, 0xac, 0x1b, 0x8a, 0xa6, 0xe6, 0x12, 0x64, 0x74, 0x8a, 0x42, 0x1f, 0x52, 0x20, 0xda, 0x80, - 0xf1, 0xb6, 0xac, 0x2a, 0xfb, 0xd8, 0x30, 0x73, 0xc9, 0xe5, 0xe4, 0x4a, 0x66, 0xf5, 0xd5, 0x3c, - 0x5d, 0x6a, 0x3e, 0x74, 0xae, 0xfc, 0x03, 0x86, 0x5d, 0x56, 0x4d, 0xfd, 0x58, 0x74, 0x88, 0xf9, - 0x3b, 0x30, 0xe5, 0x19, 0x42, 0x59, 0x48, 0x7e, 0x8c, 0x8f, 0x99, 0x4c, 0xd6, 0x4f, 0x34, 0x0b, - 0xe9, 0x23, 0xb9, 0xd5, 0xc5, 0x4c, 0x12, 0xfa, 0xb1, 0x96, 0xf8, 0x5f, 0x4e, 0x38, 0x07, 0x8b, - 0xce, 0x6c, 0x25, 0xb9, 0x23, 0xef, 0x29, 0x2d, 0xc5, 0x54, 0xb0, 0x61, 0x2f, 0xfd, 0x43, 0x58, - 0x8a, 0x18, 0x67, 0x3b, 0x70, 0x17, 0x26, 0x1b, 0x2e, 0x78, 0x8e, 0x23, 0x4b, 0xc9, 0xd9, 0x4b, - 0xf1, 0x51, 0x1e, 0x8b, 0x1e, 0x6c, 0xe1, 0xf3, 0x24, 0x64, 0xfd, 0x28, 0xe8, 0x2e, 0x8c, 0x19, - 0x58, 0x3f, 0x52, 0x1a, 0x74, 0x5f, 0x33, 0xab, 0xcb, 0x51, 0xdc, 0xf2, 0x35, 0x8a, 0xb7, 0x39, - 0x22, 0xda, 0x24, 0x68, 0x17, 0xb2, 0x47, 0x5a, 0xab, 0xdb, 0xc6, 0x12, 0x7e, 0xd6, 0x91, 0x55, - 0xe7, 0x00, 0x32, 0xab, 0x2b, 0x91, 0x6c, 0x1e, 0x12, 0x82, 0xb2, 0x8d, 0xbf, 0x39, 0x22, 0x9e, - 0x3a, 0xf2, 0x82, 0xf8, 0x9f, 0x71, 0x30, 0xc6, 0x66, 0x43, 0x6f, 0x42, 0xca, 0x3c, 0xee, 0x50, - 0xe9, 0xa6, 0x57, 0x2f, 0xf7, 0x93, 0x2e, 0x5f, 0x3f, 0xee, 0x60, 0x91, 0x90, 0x08, 0xef, 0x43, - 0xca, 0xfa, 0x42, 0x19, 0x18, 0xdb, 0xad, 0xde, 0xaf, 0x6e, 0x3f, 0xaa, 0x66, 0x47, 0xd0, 0x3c, - 0xa0, 0xd2, 0x76, 0xb5, 0x2e, 0x6e, 0x6f, 0x6d, 0x95, 0x45, 0xa9, 0x56, 0x16, 0x1f, 0x56, 0x4a, - 0xe5, 0x2c, 0x87, 0x2e, 0xc1, 0xf2, 0xc3, 0xed, 0xad, 0xdd, 0x07, 0x65, 0xa9, 0x50, 0x2a, 0x95, - 0x6b, 0xb5, 0x4a, 0xb1, 0xb2, 0x55, 0xa9, 0x3f, 0x96, 0x4a, 0xdb, 0xd5, 0x5a, 0x5d, 0x2c, 0x54, - 0xaa, 0xf5, 0x5a, 0x36, 0xc1, 0x7f, 0x8f, 0x83, 0x53, 0xbe, 0x05, 0xa0, 0x82, 0x47, 0xc2, 0x1b, - 0x83, 0x2e, 0xdc, 0x2d, 0xe9, 0xf5, 0x30, 0x49, 0x01, 0x46, 0xb7, 0xab, 0x5b, 0x95, 0xaa, 0x25, - 0x5d, 0x06, 0xc6, 0xb6, 0xef, 0xdd, 0x23, 0x1f, 0x89, 0xe2, 0x28, 0x9d, 0x50, 0x98, 0x86, 0xc9, - 0x1d, 0x5d, 0xdb, 0xc3, 0xb6, 0xfe, 0x14, 0x60, 0x8a, 0x7d, 0x33, 0x7d, 0xf9, 0x1f, 0x48, 0xeb, - 0x58, 0x6e, 0x1e, 0xb3, 0xa3, 0xe5, 0xf3, 0xd4, 0x26, 0xf3, 0xb6, 0x4d, 0xe6, 0x8b, 0x9a, 0xd6, - 0x7a, 0x68, 0xe9, 0xa7, 0x48, 0x11, 0x85, 0xaf, 0x53, 0x30, 0x53, 0xd2, 0xb1, 0x6c, 0x62, 0x2a, - 0x2d, 0x63, 0x1d, 0x6a, 0x7b, 0x77, 0x61, 0xda, 0xd2, 0xaf, 0x86, 0x62, 0x1e, 0x4b, 0xba, 0xac, - 0x1e, 0x60, 0x76, 0xf4, 0x73, 0xf6, 0x0e, 0x94, 0xd8, 0xa8, 0x68, 0x0d, 0x8a, 0x53, 0x0d, 0xf7, - 0x27, 0xaa, 0xc0, 0x0c, 0x53, 0x1d, 0x8f, 0x4a, 0x27, 0xbd, 0x2a, 0x4d, 0xa5, 0x70, 0xa9, 0x34, - 0x3a, 0xf2, 0x42, 0x14, 0x6c, 0xa0, 0xfb, 0x00, 0x1d, 0x59, 0x97, 0xdb, 0xd8, 0xc4, 0xba, 0x91, - 0x4b, 0x79, 0xed, 0x3b, 0x64, 0x35, 0xf9, 0x1d, 0x07, 0x9b, 0xda, 0xb7, 0x8b, 0x1c, 0x6d, 0x58, - 0x06, 0xd1, 0xd0, 0xb1, 0x69, 0xe4, 0xd2, 0x84, 0xd3, 0x4a, 0x1c, 0xa7, 0x1a, 0x45, 0x25, 0x6c, - 0x8a, 0xc9, 0x9f, 0x17, 0x39, 0xd1, 0xa6, 0x46, 0xdb, 0x30, 0x67, 0x2f, 0x50, 0x53, 0x4d, 0xac, - 0x9a, 0x92, 0xa1, 0x75, 0xf5, 0x06, 0xce, 0x8d, 0x92, 0x5d, 0x5a, 0xf0, 0x2d, 0x91, 0xe2, 0xd4, - 0x08, 0x8a, 0xc8, 0xb6, 0xc6, 0x03, 0x44, 0x4f, 0x80, 0x97, 0x1b, 0x0d, 0x6c, 0x18, 0x0a, 0xdd, - 0x0b, 0x49, 0xc7, 0x4f, 0xbb, 0x8a, 0x8e, 0xdb, 0x58, 0x35, 0x8d, 0xdc, 0x98, 0x97, 0x6b, 0x5d, - 0xeb, 0x68, 0x2d, 0xed, 0xe0, 0x58, 0xec, 0xe1, 0x88, 0x67, 0x3d, 0xe4, 0xae, 0x11, 0x83, 0x7f, - 0x0b, 0x4e, 0xf9, 0x36, 0x65, 0x18, 0xcf, 0xc6, 0xaf, 0xc1, 0xa4, 0x7b, 0x27, 0x86, 0xf2, 0x8a, - 0x3f, 0x4a, 0xc0, 0x4c, 0xc8, 0x1e, 0xa0, 0x4d, 0x18, 0x37, 0x54, 0xb9, 0x63, 0x1c, 0x6a, 0x26, - 0xd3, 0xdf, 0x6b, 0x31, 0x5b, 0x96, 0xaf, 0x31, 0x5c, 0xfa, 0xb9, 0x39, 0x22, 0x3a, 0xd4, 0xa8, - 0x08, 0xa3, 0x74, 0x3f, 0xfd, 0xbe, 0x29, 0x8c, 0x0f, 0x85, 0x39, 0x5c, 0x18, 0x25, 0xff, 0x1a, - 0x4c, 0x7b, 0x67, 0x40, 0xe7, 0x21, 0x63, 0xcf, 0x20, 0x29, 0x4d, 0xb6, 0x56, 0xb0, 0x41, 0x95, - 0x26, 0xff, 0x2a, 0x4c, 0xba, 0x99, 0xa1, 0x05, 0x98, 0x60, 0x0a, 0xe1, 0xa0, 0x8f, 0x53, 0x40, - 0xa5, 0xe9, 0xd8, 0xf4, 0xdb, 0x30, 0xeb, 0xd5, 0x33, 0x66, 0xca, 0x57, 0x9c, 0x35, 0xd0, 0xbd, - 0x98, 0xf6, 0xae, 0xc1, 0x96, 0x53, 0xf8, 0x6d, 0x0a, 0xb2, 0x7e, 0xa3, 0x41, 0x77, 0x21, 0xbd, - 0xd7, 0xd2, 0x1a, 0x1f, 0x33, 0xda, 0x4b, 0x51, 0xd6, 0x95, 0x2f, 0x5a, 0x58, 0x14, 0xba, 0x39, - 0x22, 0x52, 0x22, 0x8b, 0xba, 0xad, 0x75, 0x55, 0x93, 0xed, 0x5e, 0x34, 0xf5, 0x03, 0x0b, 0xab, - 0x47, 0x4d, 0x88, 0xd0, 0x3a, 0x64, 0xa8, 0xda, 0x49, 0x6d, 0xad, 0x89, 0x73, 0x49, 0xc2, 0xe3, - 0x62, 0x24, 0x8f, 0x02, 0xc1, 0x7d, 0xa0, 0x35, 0xb1, 0x08, 0xb2, 0xf3, 0x9b, 0x9f, 0x82, 0x8c, - 0x4b, 0x36, 0x7e, 0x03, 0x32, 0xae, 0xc9, 0xd0, 0x19, 0x18, 0xdb, 0x37, 0x24, 0xc7, 0x09, 0x4f, - 0x88, 0xa3, 0xfb, 0x06, 0xf1, 0xa7, 0xe7, 0x21, 0x43, 0xa4, 0x90, 0xf6, 0x5b, 0xf2, 0x81, 0x91, - 0x4b, 0x2c, 0x27, 0xad, 0x33, 0x22, 0xa0, 0x7b, 0x16, 0x84, 0xff, 0x8a, 0x03, 0xe8, 0x4d, 0x89, - 0xee, 0x42, 0x8a, 0x48, 0x49, 0x5d, 0xf9, 0xca, 0x00, 0x52, 0xe6, 0x89, 0xa8, 0x84, 0x4a, 0xf8, - 0x05, 0x07, 0x29, 0xc2, 0xc6, 0x7f, 0xe1, 0xd4, 0x2a, 0xd5, 0x8d, 0xad, 0xb2, 0x54, 0xdd, 0x5e, - 0x2f, 0x4b, 0x8f, 0xc4, 0x4a, 0xbd, 0x2c, 0x66, 0x39, 0xb4, 0x00, 0x67, 0xdc, 0x70, 0xb1, 0x5c, - 0x58, 0x2f, 0x8b, 0xd2, 0x76, 0x75, 0xeb, 0x71, 0x36, 0x81, 0x78, 0x98, 0x7f, 0xb0, 0xbb, 0x55, - 0xaf, 0x04, 0xc7, 0x92, 0x68, 0x11, 0x72, 0xae, 0x31, 0xc6, 0x83, 0xb1, 0x4d, 0x59, 0x6c, 0x5d, - 0xa3, 0xf4, 0x27, 0x1b, 0x4c, 0x17, 0xa7, 0x9c, 0xc3, 0x20, 0xca, 0xf6, 0x08, 0xa6, 0x3c, 0x3e, - 0xda, 0x0a, 0xa7, 0x98, 0x53, 0x69, 0x4a, 0x7b, 0xc7, 0x26, 0x09, 0x31, 0xb8, 0x95, 0xa4, 0x38, - 0x65, 0x43, 0x8b, 0x16, 0xd0, 0xda, 0xd6, 0x96, 0xd2, 0x56, 0x4c, 0x86, 0x93, 0x20, 0x38, 0x40, - 0x40, 0x04, 0x41, 0xf8, 0x22, 0x01, 0xa3, 0xec, 0x6c, 0x2e, 0xbb, 0x6e, 0x09, 0x0f, 0x4b, 0x1b, - 0x4a, 0x59, 0x7a, 0x8c, 0x23, 0xe1, 0x35, 0x0e, 0xb4, 0x09, 0xd3, 0x6e, 0x57, 0xfa, 0xcc, 0x0e, - 0xe2, 0x2e, 0x78, 0x0f, 0xc8, 0x6d, 0xcf, 0xcf, 0x58, 0xe8, 0x36, 0x75, 0xe4, 0x86, 0xa1, 0x22, - 0x4c, 0xfb, 0xbc, 0x71, 0xaa, 0xbf, 0x37, 0x9e, 0x6a, 0x78, 0x1c, 0x53, 0x01, 0x66, 0x6c, 0x47, - 0xda, 0xc2, 0x92, 0xc9, 0x1c, 0x2d, 0xbb, 0x2d, 0xb2, 0x01, 0x07, 0x8c, 0x7a, 0xc8, 0x36, 0x8c, - 0x7f, 0x17, 0x50, 0x50, 0xd6, 0xa1, 0xbc, 0x66, 0x17, 0x66, 0x42, 0x5c, 0x3c, 0xca, 0xc3, 0x04, - 0x39, 0x2a, 0x43, 0x31, 0x31, 0x0b, 0x0f, 0x83, 0x12, 0xf5, 0x50, 0x2c, 0xfc, 0x8e, 0x8e, 0xf7, - 0xb1, 0xae, 0xe3, 0x26, 0x31, 0x8f, 0x50, 0x7c, 0x07, 0x45, 0xf8, 0x84, 0x83, 0x71, 0x1b, 0x8e, - 0xd6, 0x60, 0xdc, 0xc0, 0x07, 0xf4, 0xfa, 0xa1, 0x73, 0x9d, 0xf3, 0xd3, 0xe6, 0x6b, 0x0c, 0x81, - 0x05, 0xd2, 0x36, 0xbe, 0x15, 0x48, 0x7b, 0x86, 0x86, 0x5a, 0xfc, 0x9f, 0x38, 0x98, 0x59, 0xc7, - 0x2d, 0xec, 0x8f, 0x52, 0xe2, 0x3c, 0xac, 0xfb, 0x62, 0x4f, 0x78, 0x2f, 0xf6, 0x10, 0x56, 0x31, - 0x17, 0xfb, 0x89, 0x2e, 0xbb, 0x79, 0x98, 0xf5, 0xce, 0x46, 0xdd, 0xbb, 0xf0, 0xaf, 0x24, 0x9c, - 0xb3, 0x74, 0x41, 0xd7, 0x5a, 0x2d, 0xac, 0xef, 0x74, 0xf7, 0x5a, 0x8a, 0x71, 0x38, 0xc4, 0xe2, - 0xce, 0xc0, 0x98, 0xaa, 0x35, 0x5d, 0xc6, 0x33, 0x6a, 0x7d, 0x56, 0x9a, 0xa8, 0x0c, 0xa7, 0xfd, - 0x61, 0xd6, 0x31, 0x73, 0xc2, 0xd1, 0x41, 0x56, 0xf6, 0xc8, 0x7f, 0x83, 0xf0, 0x30, 0x6e, 0x05, - 0x88, 0x9a, 0xda, 0x3a, 0x26, 0x16, 0x33, 0x2e, 0x3a, 0xdf, 0x48, 0xf4, 0x47, 0x4c, 0xaf, 0x3b, - 0x11, 0x53, 0xec, 0x8a, 0xe2, 0x82, 0xa7, 0x8f, 0x02, 0x16, 0x3f, 0x4a, 0x58, 0xbf, 0x39, 0x20, - 0xeb, 0xbe, 0x9e, 0xe0, 0x24, 0xa7, 0xf8, 0x02, 0xcc, 0xf7, 0xaf, 0x1c, 0x9c, 0x8f, 0x5c, 0x02, - 0xbb, 0xf2, 0x9b, 0x70, 0xaa, 0x43, 0x07, 0x9c, 0x4d, 0xa0, 0x56, 0x76, 0xa7, 0xef, 0x26, 0xb0, - 0x2c, 0x96, 0x41, 0x3d, 0xdb, 0x30, 0xdd, 0xf1, 0x00, 0xf9, 0x02, 0xcc, 0x84, 0xa0, 0x0d, 0xb5, - 0x98, 0x2f, 0x39, 0x58, 0xee, 0x89, 0xb2, 0xab, 0x76, 0x5e, 0x9c, 0xfa, 0xd6, 0x7b, 0xba, 0x45, - 0x5d, 0xfe, 0xad, 0xe0, 0xda, 0xc3, 0x27, 0x7c, 0x59, 0x16, 0x7c, 0x11, 0x2e, 0xc4, 0x4c, 0xcd, - 0xcc, 0xf9, 0x8b, 0x14, 0x5c, 0x78, 0x28, 0xb7, 0x94, 0xa6, 0x13, 0xc8, 0x85, 0xe4, 0xfb, 0xf1, - 0x5b, 0xd2, 0x08, 0x58, 0x00, 0xf5, 0x5a, 0x77, 0x1d, 0xab, 0xed, 0xc7, 0x7f, 0x80, 0xeb, 0xf0, - 0x05, 0x26, 0x61, 0x8f, 0x43, 0x92, 0xb0, 0x37, 0x07, 0x97, 0x35, 0x2e, 0x25, 0xdb, 0xf5, 0x3b, - 0x98, 0xdb, 0x83, 0xf3, 0x8d, 0xd1, 0x82, 0x13, 0x5b, 0xf1, 0x37, 0x99, 0x35, 0xfd, 0x25, 0x05, - 0x42, 0xdc, 0xea, 0x99, 0x0f, 0x11, 0x61, 0xa2, 0xa1, 0xa9, 0xfb, 0x8a, 0xde, 0xc6, 0x4d, 0x16, - 0xfd, 0xbf, 0x31, 0xc8, 0xe6, 0x31, 0x07, 0x52, 0xb2, 0x69, 0xc5, 0x1e, 0x1b, 0x94, 0x83, 0xb1, - 0x36, 0x36, 0x0c, 0xf9, 0xc0, 0x16, 0xcb, 0xfe, 0xe4, 0x3f, 0x4d, 0xc2, 0x84, 0x43, 0x82, 0xd4, - 0x80, 0x06, 0x53, 0xf7, 0xb5, 0xf1, 0x3c, 0x02, 0x3c, 0xbf, 0x32, 0x27, 0x9e, 0x43, 0x99, 0x9b, - 0x1e, 0x65, 0xa6, 0xe6, 0xb0, 0xfe, 0x5c, 0x62, 0xc7, 0xe8, 0xf5, 0x37, 0xae, 0x80, 0xc2, 0xff, - 0x03, 0xda, 0x52, 0x0c, 0x96, 0x45, 0x39, 0x6e, 0xc9, 0x4a, 0x9a, 0xe4, 0x67, 0x12, 0x56, 0x4d, - 0x5d, 0x61, 0xe1, 0x7a, 0x5a, 0x84, 0xb6, 0xfc, 0xac, 0x4c, 0x21, 0x56, 0x48, 0x6f, 0x98, 0xb2, - 0x6e, 0x2a, 0xea, 0x81, 0x64, 0x6a, 0x1f, 0x63, 0xa7, 0xe8, 0x6a, 0x43, 0xeb, 0x16, 0x50, 0xf8, - 0x2a, 0x01, 0x33, 0x1e, 0xf6, 0x4c, 0x27, 0xef, 0xc0, 0x58, 0x8f, 0xb7, 0x27, 0x8c, 0x0f, 0xc1, - 0xce, 0xd3, 0x6d, 0xb3, 0x29, 0xd0, 0x12, 0x80, 0x8a, 0x9f, 0x99, 0x9e, 0x79, 0x27, 0x2c, 0x08, - 0x99, 0x93, 0xff, 0x01, 0xe7, 0x24, 0xdd, 0xa6, 0x6c, 0x76, 0x0d, 0x74, 0x1d, 0x10, 0x73, 0xd1, - 0xb8, 0x29, 0xb1, 0x3b, 0x86, 0xce, 0x3b, 0x21, 0x66, 0x9d, 0x91, 0x2a, 0xb9, 0x6d, 0x0c, 0xb4, - 0xe1, 0xd4, 0x33, 0x1b, 0x9a, 0xda, 0x54, 0xcc, 0x5e, 0x3d, 0xf3, 0x4c, 0x20, 0x41, 0xa0, 0xc3, - 0xc5, 0xe4, 0x2f, 0x8b, 0x9c, 0x5d, 0xc1, 0x74, 0xa0, 0xfc, 0x53, 0x48, 0xd3, 0xe3, 0x18, 0x30, - 0x6f, 0x47, 0xef, 0xc2, 0xa8, 0x41, 0x24, 0xf6, 0xd7, 0x28, 0xc2, 0xf6, 0xc4, 0xbd, 0x42, 0x91, - 0xd1, 0x09, 0x6f, 0x40, 0x76, 0x03, 0x9b, 0x83, 0x5f, 0xba, 0x6b, 0x96, 0xe4, 0xc2, 0x27, 0x09, - 0x38, 0xed, 0x22, 0x1b, 0xae, 0xda, 0x80, 0xde, 0xf6, 0x49, 0x7d, 0xc5, 0x55, 0x55, 0xf7, 0xc5, - 0x22, 0x61, 0x32, 0xf3, 0xdf, 0x3d, 0xd9, 0x71, 0x15, 0x87, 0x3e, 0xae, 0xc0, 0x49, 0xd1, 0x5d, - 0xf8, 0x34, 0x01, 0x68, 0x03, 0x9b, 0x4e, 0x32, 0xcc, 0xb6, 0x2f, 0xc2, 0xa3, 0x70, 0xcf, 0xe1, - 0x51, 0xde, 0xf3, 0x78, 0x14, 0xea, 0x93, 0xae, 0xb9, 0x76, 0xcb, 0x37, 0x75, 0xec, 0x7d, 0x18, - 0x91, 0x80, 0xd2, 0xa8, 0x7e, 0xb0, 0x04, 0xf4, 0x84, 0x8e, 0x63, 0x1d, 0x66, 0x3c, 0x32, 0x33, - 0xb5, 0xb9, 0x01, 0x48, 0x3e, 0x92, 0x95, 0x96, 0x6c, 0xc9, 0x65, 0xe7, 0xf7, 0x2c, 0xdf, 0x3f, - 0xed, 0x8c, 0xd8, 0x64, 0x82, 0xe0, 0x0e, 0x1b, 0x19, 0x3f, 0x7f, 0x4f, 0xa4, 0xe5, 0x0e, 0xb7, - 0x02, 0x38, 0x6c, 0xde, 0x8d, 0xd0, 0xbe, 0xc8, 0xc5, 0x60, 0xa8, 0xc8, 0x9a, 0x04, 0x91, 0x2d, - 0x92, 0xdf, 0xa7, 0x60, 0x21, 0x06, 0x1b, 0xdd, 0x81, 0xa4, 0xde, 0x69, 0x30, 0xa3, 0x78, 0x65, - 0x00, 0xfe, 0x79, 0x71, 0xa7, 0xb4, 0x39, 0x22, 0x5a, 0x54, 0xfc, 0xe7, 0x49, 0x48, 0x8a, 0x3b, - 0x25, 0xf4, 0xae, 0xa7, 0x5f, 0x70, 0x7d, 0x40, 0x2e, 0xee, 0x76, 0xc1, 0xf7, 0x93, 0x61, 0xfd, - 0x82, 0x1c, 0xcc, 0x96, 0xc4, 0x72, 0xa1, 0x5e, 0x96, 0xd6, 0xcb, 0x5b, 0xe5, 0x7a, 0x59, 0xa2, - 0xfd, 0x8c, 0x2c, 0x87, 0x16, 0x21, 0xb7, 0xb3, 0x5b, 0xdc, 0xaa, 0xd4, 0x36, 0xa5, 0xdd, 0xaa, - 0xfd, 0x8b, 0x8d, 0x26, 0x50, 0x16, 0x26, 0xb7, 0x2a, 0xb5, 0x3a, 0x03, 0xd4, 0xb2, 0x49, 0x0b, - 0xb2, 0x51, 0xae, 0x4b, 0xa5, 0xc2, 0x4e, 0xa1, 0x54, 0xa9, 0x3f, 0xce, 0xa6, 0x10, 0x0f, 0xf3, - 0x5e, 0xde, 0xb5, 0x6a, 0x61, 0xa7, 0xb6, 0xb9, 0x5d, 0xcf, 0xa6, 0x11, 0x82, 0x69, 0x42, 0x6f, - 0x83, 0x6a, 0xd9, 0x51, 0x8b, 0x43, 0x69, 0x6b, 0xbb, 0xea, 0xc8, 0x30, 0x86, 0x66, 0x21, 0x6b, - 0xcf, 0x2c, 0x96, 0x0b, 0xeb, 0xa4, 0x96, 0x35, 0x8e, 0x4e, 0xc3, 0x54, 0xf9, 0x83, 0x9d, 0x42, - 0x75, 0xdd, 0x46, 0x9c, 0x40, 0xcb, 0xb0, 0xe8, 0x16, 0x47, 0x62, 0x54, 0xe5, 0x75, 0x52, 0xd1, - 0xaa, 0x65, 0x01, 0x5d, 0x81, 0x25, 0x0f, 0x06, 0xeb, 0xdb, 0x94, 0xb6, 0xab, 0xeb, 0x95, 0x7a, - 0x65, 0xbb, 0x9a, 0xcd, 0xf0, 0x96, 0x55, 0xa3, 0x19, 0x00, 0x6b, 0x19, 0x8c, 0xf3, 0x24, 0x05, - 0x5e, 0x82, 0x85, 0x1e, 0x30, 0x48, 0x3a, 0x45, 0xb1, 0x2e, 0x02, 0xef, 0xc2, 0xf2, 0x8b, 0x30, - 0x4d, 0x90, 0x9c, 0x9a, 0xed, 0x97, 0x09, 0x98, 0xa3, 0x45, 0x5b, 0xbb, 0x44, 0x6c, 0x3b, 0x90, - 0x15, 0xc8, 0xd2, 0x32, 0x93, 0xe4, 0x77, 0xc3, 0xd3, 0x14, 0xfe, 0xd0, 0x0e, 0xf7, 0xed, 0x06, - 0x4b, 0xc2, 0xd5, 0x60, 0xa9, 0xf8, 0x93, 0x9f, 0x6b, 0xde, 0x56, 0x84, 0x6f, 0xb6, 0xb8, 0x7c, - 0xfa, 0x41, 0x48, 0x74, 0x7e, 0x23, 0x9e, 0x5b, 0x5c, 0xe4, 0x72, 0x92, 0xe4, 0xf9, 0x84, 0xae, - 0xe7, 0x1e, 0xcc, 0xfb, 0xe5, 0x65, 0x5e, 0xe0, 0x7a, 0xa0, 0x61, 0xe0, 0xf8, 0x42, 0x07, 0xd7, - 0xc1, 0x10, 0xfe, 0xce, 0xc1, 0xb8, 0x0d, 0xb6, 0xa2, 0x0a, 0x43, 0xf9, 0x36, 0xf6, 0x14, 0x28, - 0x27, 0x2c, 0x88, 0x53, 0xef, 0x74, 0x97, 0xfa, 0x13, 0xfe, 0x52, 0x7f, 0xe8, 0x39, 0x27, 0x43, - 0xcf, 0xf9, 0x1d, 0x98, 0x6a, 0x58, 0xe2, 0x2b, 0x9a, 0x2a, 0x99, 0x4a, 0xdb, 0xae, 0x3f, 0x06, - 0x5b, 0x73, 0x75, 0xbb, 0x9f, 0x2e, 0x4e, 0xda, 0x04, 0x16, 0x08, 0x2d, 0xc3, 0x24, 0x69, 0xd5, - 0x49, 0xa6, 0x26, 0x75, 0x0d, 0x9c, 0x4b, 0x93, 0x6a, 0x0c, 0x10, 0x58, 0x5d, 0xdb, 0x35, 0xb0, - 0xf0, 0x67, 0x0e, 0xe6, 0x68, 0x91, 0xc9, 0xaf, 0x8e, 0xfd, 0x5a, 0x16, 0x6e, 0x8d, 0xf3, 0x5d, - 0x51, 0xa1, 0x0c, 0x5f, 0x56, 0x8e, 0x9d, 0x83, 0x79, 0xff, 0x7c, 0x2c, 0xb1, 0xfe, 0x2c, 0x01, - 0xb3, 0x56, 0x44, 0x64, 0x0f, 0xbc, 0xe8, 0xa0, 0x75, 0x88, 0x93, 0xf4, 0x6d, 0x66, 0x2a, 0xb0, - 0x99, 0x9b, 0xfe, 0xb4, 0xf5, 0xaa, 0x3b, 0xa6, 0xf3, 0xaf, 0xe0, 0x65, 0xed, 0xe5, 0xef, 0x38, - 0x98, 0xf3, 0xcd, 0xc7, 0xec, 0xe5, 0x2d, 0x7f, 0x1c, 0x7e, 0x31, 0x42, 0xbe, 0xe7, 0x8a, 0xc4, - 0x6f, 0xd9, 0x11, 0xf0, 0x70, 0x66, 0xf9, 0xb7, 0x04, 0x2c, 0xf5, 0x6e, 0x42, 0xd2, 0x2c, 0x6f, - 0x0e, 0x51, 0x48, 0x3a, 0x59, 0x4f, 0xfa, 0x7d, 0xbf, 0xc3, 0x5d, 0x0d, 0x5e, 0xce, 0x21, 0x22, - 0xc5, 0x39, 0xde, 0xd0, 0xfa, 0x6b, 0x6a, 0xd8, 0xfa, 0xeb, 0x89, 0x34, 0xe0, 0x3b, 0xee, 0xd2, - 0xb2, 0x57, 0x7c, 0xa6, 0x09, 0x03, 0xf6, 0x68, 0x6e, 0xc3, 0x19, 0x12, 0x92, 0x3b, 0x6f, 0x3d, - 0xec, 0x0e, 0x34, 0x75, 0x89, 0xe3, 0xe2, 0x9c, 0x35, 0xec, 0x3c, 0x70, 0x60, 0x7d, 0x89, 0xa6, - 0xf0, 0x75, 0x0a, 0xe6, 0xad, 0x90, 0xbd, 0x66, 0xca, 0x07, 0xc3, 0x54, 0xec, 0xff, 0x2f, 0x58, - 0x00, 0x4d, 0x78, 0x8f, 0x25, 0x9c, 0xeb, 0x20, 0x75, 0x4f, 0x94, 0x87, 0x19, 0xc3, 0x94, 0x0f, - 0x88, 0x3b, 0x90, 0xf5, 0x03, 0x6c, 0x4a, 0x1d, 0xd9, 0x3c, 0x64, 0xb6, 0x7e, 0x9a, 0x0d, 0xd5, - 0xc9, 0xc8, 0x8e, 0x6c, 0x1e, 0xbe, 0xa0, 0x83, 0x44, 0xef, 0xf9, 0x9d, 0xc2, 0xab, 0x7d, 0xd6, - 0x12, 0xa3, 0x5b, 0x1f, 0x44, 0x14, 0xc9, 0x5f, 0xeb, 0xc3, 0xb2, 0x7f, 0x71, 0xfc, 0xe4, 0x45, - 0xe1, 0x6f, 0xb8, 0xbe, 0x7e, 0x16, 0xce, 0x04, 0x16, 0xcf, 0xae, 0x90, 0x03, 0xc8, 0x59, 0x43, - 0xbb, 0xaa, 0x31, 0xa4, 0x3a, 0x46, 0x68, 0x4c, 0x22, 0x42, 0x63, 0x84, 0x05, 0x38, 0x1b, 0x32, - 0x11, 0x93, 0xe2, 0x8f, 0x69, 0x2a, 0xc6, 0xf0, 0xad, 0x9e, 0x0f, 0xa3, 0xac, 0xe2, 0x0d, 0xf7, - 0xb1, 0x87, 0x76, 0x45, 0x5e, 0x86, 0x5d, 0x9c, 0x87, 0x8c, 0x1b, 0x8f, 0x5d, 0x83, 0x66, 0x1f, - 0xc3, 0x49, 0x9f, 0xa8, 0x03, 0x35, 0xea, 0xeb, 0x40, 0x6d, 0xf5, 0x8c, 0x6a, 0xcc, 0x1b, 0xda, - 0x46, 0x6e, 0x45, 0x8c, 0x59, 0x3d, 0x09, 0x98, 0xd5, 0xb8, 0xb7, 0xad, 0x15, 0xc9, 0xf4, 0xbf, - 0xc0, 0xb0, 0x98, 0x52, 0x87, 0xf6, 0x9b, 0x84, 0x27, 0xc0, 0x53, 0x8d, 0x1f, 0xbe, 0x03, 0xe4, - 0x53, 0xa3, 0x84, 0x5f, 0x8d, 0x84, 0x25, 0x58, 0x08, 0xe5, 0xcd, 0xa6, 0xfe, 0x21, 0x47, 0x05, - 0x73, 0x0a, 0x4f, 0x35, 0x53, 0x36, 0x8d, 0x41, 0xa7, 0x66, 0x83, 0xee, 0xa9, 0x29, 0x88, 0x68, - 0xf0, 0x90, 0x26, 0x21, 0xfc, 0x94, 0xa3, 0xfb, 0xe0, 0x97, 0x85, 0xdd, 0xb6, 0x57, 0x21, 0xdd, - 0x25, 0xd5, 0x73, 0x1a, 0x75, 0xcd, 0x78, 0x8d, 0x60, 0xd7, 0x1a, 0x12, 0x29, 0xc6, 0x0b, 0xab, - 0x47, 0x0a, 0x9f, 0x71, 0x90, 0x71, 0xf1, 0x47, 0x8b, 0x30, 0xe1, 0xd4, 0x63, 0xec, 0x7c, 0xc7, - 0x01, 0x58, 0xc7, 0x6f, 0x6a, 0xa6, 0xdc, 0x62, 0x2f, 0x3b, 0xe8, 0x87, 0x95, 0xa2, 0x76, 0x0d, - 0x4c, 0xc3, 0xe1, 0xa4, 0x48, 0x7e, 0xa3, 0xeb, 0x90, 0xea, 0xaa, 0x8a, 0x49, 0xcc, 0x7e, 0xda, - 0x6f, 0xcf, 0x64, 0xaa, 0xfc, 0xae, 0xaa, 0x98, 0x22, 0xc1, 0x12, 0xae, 0x41, 0xca, 0xfa, 0xf2, - 0x96, 0x2d, 0x26, 0x20, 0x5d, 0x7c, 0x5c, 0x2f, 0xd7, 0xb2, 0x1c, 0x02, 0x18, 0xad, 0xd0, 0x0c, - 0x3b, 0x21, 0x1c, 0xda, 0x0f, 0x2d, 0x9d, 0x45, 0xa0, 0xdb, 0x30, 0x2e, 0xef, 0xa9, 0x9a, 0xde, - 0x96, 0x5b, 0x03, 0xbc, 0x68, 0x74, 0x70, 0xa3, 0x1b, 0x16, 0xb4, 0xf8, 0xb7, 0xe8, 0x9c, 0x56, - 0x58, 0x01, 0xea, 0x23, 0xaa, 0x77, 0x51, 0xa5, 0xa7, 0x42, 0x68, 0xe9, 0x69, 0xc9, 0x73, 0x03, - 0xf7, 0x29, 0x3a, 0xfd, 0x24, 0x01, 0x73, 0xa1, 0x78, 0xe8, 0x96, 0xbb, 0xdc, 0x74, 0x21, 0x96, - 0xa7, 0xbb, 0xd0, 0xf4, 0x07, 0x8e, 0x16, 0x9a, 0xd6, 0x3c, 0x85, 0xa6, 0x2b, 0x7d, 0xe9, 0xdd, - 0x25, 0xa6, 0xa7, 0x11, 0x15, 0xa6, 0x5a, 0xbd, 0xb0, 0x51, 0x96, 0x76, 0xab, 0xf4, 0xaf, 0x53, - 0x61, 0x9a, 0x85, 0xac, 0xab, 0x5e, 0x52, 0xab, 0x17, 0xea, 0xb5, 0x6c, 0x22, 0x58, 0xdd, 0x49, - 0xa2, 0xb3, 0x90, 0x0d, 0xd4, 0x5c, 0x52, 0xde, 0x72, 0xca, 0x2c, 0x20, 0xb6, 0xe3, 0xee, 0x77, - 0xe1, 0xbf, 0xe2, 0x60, 0xc6, 0x03, 0x66, 0x07, 0xe0, 0x6a, 0x1d, 0x73, 0x9e, 0xd6, 0xf1, 0x4d, - 0x98, 0xb5, 0x32, 0x42, 0x6a, 0x09, 0x86, 0xd4, 0xc1, 0x3a, 0x29, 0x28, 0x33, 0x9d, 0x3e, 0xdd, - 0x96, 0x9f, 0xb1, 0xb2, 0xfa, 0x0e, 0xd6, 0x2d, 0xc6, 0x2f, 0xa0, 0xac, 0x2a, 0xfc, 0x38, 0x41, - 0xe3, 0x8e, 0xa1, 0xf3, 0x96, 0xbe, 0x3e, 0x28, 0x98, 0xd8, 0x24, 0x87, 0x48, 0x6c, 0x22, 0x3c, - 0x58, 0x6a, 0xa8, 0x60, 0x77, 0xe8, 0x3b, 0x5b, 0x28, 0xd0, 0x18, 0xe7, 0x04, 0x39, 0xc7, 0xea, - 0xbf, 0x39, 0x18, 0xaf, 0x34, 0xb1, 0x6a, 0x5a, 0xf6, 0x50, 0x85, 0x29, 0xcf, 0x73, 0x7d, 0xb4, - 0x18, 0xf1, 0x8a, 0x9f, 0xec, 0x38, 0xbf, 0x14, 0xfb, 0xc6, 0x5f, 0x18, 0x41, 0xfb, 0xae, 0x7f, - 0x35, 0xf0, 0x54, 0xeb, 0x2f, 0x05, 0x28, 0x43, 0x5c, 0x03, 0x7f, 0xb9, 0x0f, 0x96, 0x33, 0xcf, - 0x6d, 0x48, 0x93, 0x87, 0xd9, 0x68, 0xd6, 0x79, 0x1c, 0xee, 0x7a, 0xb7, 0xcd, 0xcf, 0xf9, 0xa0, - 0x36, 0xdd, 0xea, 0x67, 0x13, 0x00, 0xbd, 0xd4, 0x0d, 0xdd, 0x87, 0x49, 0xf7, 0xdb, 0x50, 0xb4, - 0x10, 0xf3, 0x32, 0x99, 0x5f, 0x0c, 0x1f, 0x74, 0x64, 0xba, 0x0f, 0x93, 0xee, 0x97, 0x48, 0x3d, - 0x66, 0x21, 0xaf, 0xa1, 0x7a, 0xcc, 0x42, 0x1f, 0x2f, 0x8d, 0xa0, 0x16, 0x9c, 0x89, 0x78, 0x8b, - 0x82, 0xae, 0x0c, 0xf6, 0x62, 0x87, 0x7f, 0x65, 0xc0, 0x47, 0x2d, 0xc2, 0x08, 0xd2, 0xe1, 0x6c, - 0xe4, 0x13, 0x0c, 0xb4, 0x32, 0xe8, 0x03, 0x11, 0xfe, 0xea, 0x00, 0x98, 0xce, 0x9c, 0x5d, 0xe0, - 0xa3, 0xfb, 0xbe, 0xe8, 0xea, 0xc0, 0x0f, 0x12, 0xf8, 0x6b, 0x83, 0xb7, 0x91, 0x85, 0x11, 0xb4, - 0x09, 0x19, 0x57, 0x03, 0x10, 0xf1, 0xa1, 0x5d, 0x41, 0xca, 0x78, 0x21, 0xa6, 0x63, 0x48, 0x39, - 0xb9, 0x5a, 0x36, 0x3d, 0x4e, 0xc1, 0xde, 0x53, 0x8f, 0x53, 0x48, 0x8f, 0xc7, 0xbf, 0xfd, 0xbe, - 0x7b, 0x31, 0x6c, 0xfb, 0xc3, 0x2f, 0xd6, 0xb0, 0xed, 0x8f, 0xb8, 0x64, 0x85, 0x11, 0xf4, 0x3e, - 0x4c, 0x7b, 0xab, 0xbe, 0x68, 0x29, 0xb6, 0x7a, 0xcd, 0x9f, 0x8b, 0x1a, 0x76, 0xb3, 0xf4, 0x16, - 0x19, 0x7b, 0x2c, 0x43, 0x8b, 0x9d, 0x3d, 0x96, 0x11, 0xb5, 0xc9, 0x11, 0xcb, 0x3f, 0x79, 0x4a, - 0x67, 0x3d, 0xff, 0x14, 0x56, 0xf1, 0xeb, 0xf9, 0xa7, 0xd0, 0x7a, 0x9b, 0x30, 0x82, 0x14, 0x98, - 0x0f, 0xaf, 0xdc, 0xa0, 0xcb, 0x03, 0x15, 0xa6, 0xf8, 0x2b, 0xfd, 0xd0, 0x9c, 0xa9, 0xca, 0x30, - 0xe1, 0x84, 0xab, 0x28, 0x17, 0xd2, 0xc6, 0xa5, 0x0c, 0xcf, 0x46, 0x36, 0x78, 0x05, 0xeb, 0x0e, - 0x5f, 0xfd, 0x67, 0x1a, 0x52, 0xe4, 0x32, 0xad, 0xc3, 0x29, 0x5f, 0x02, 0x8e, 0xce, 0xc5, 0x97, - 0x25, 0xf8, 0xf3, 0x91, 0xe3, 0x8e, 0x94, 0x4f, 0xe0, 0x74, 0x20, 0xa5, 0x46, 0xcb, 0x6e, 0xba, - 0xb0, 0xb4, 0x9e, 0xbf, 0x10, 0x83, 0xe1, 0xe7, 0xed, 0xf5, 0x5e, 0xcb, 0xfd, 0x72, 0x3e, 0x2f, - 0xef, 0x28, 0x8f, 0xf5, 0x11, 0x8d, 0x5d, 0xfc, 0xbe, 0x4a, 0xf0, 0xca, 0x15, 0xea, 0xa5, 0x2e, - 0xc6, 0xe2, 0x38, 0x33, 0x7c, 0xe8, 0x04, 0x4d, 0xae, 0x94, 0x03, 0x79, 0x84, 0x0b, 0x4d, 0x8d, - 0x78, 0x21, 0x0e, 0xc5, 0x61, 0xff, 0x08, 0xb2, 0xfe, 0x9b, 0x1c, 0x79, 0xce, 0x2b, 0x4c, 0xfb, - 0x96, 0xa3, 0x11, 0xfc, 0x3b, 0xe3, 0x77, 0x23, 0x7e, 0xa9, 0xc2, 0x1c, 0xc8, 0xc5, 0x58, 0x1c, - 0xb7, 0xe3, 0x73, 0xc5, 0x8d, 0x3d, 0xc7, 0x17, 0x8c, 0x31, 0x7b, 0x8e, 0x2f, 0x24, 0xd0, 0x14, - 0x46, 0xd6, 0xee, 0x02, 0xc8, 0xad, 0xce, 0xa1, 0x2c, 0x61, 0xb5, 0xdb, 0x46, 0x8b, 0x81, 0xdc, - 0xa3, 0xac, 0x76, 0xdb, 0xdb, 0x1d, 0x2b, 0x55, 0x31, 0x72, 0xbf, 0x19, 0x27, 0x35, 0x8a, 0x09, - 0x42, 0x60, 0x0d, 0xac, 0x6d, 0x41, 0xb6, 0x47, 0x2d, 0x91, 0x8c, 0x1a, 0x5d, 0x08, 0xe5, 0x41, - 0xf2, 0x17, 0x1f, 0xa3, 0x69, 0x87, 0x11, 0x19, 0x5d, 0x7b, 0x0b, 0xa0, 0x61, 0x28, 0x12, 0xad, - 0x59, 0xa0, 0xa5, 0x00, 0x9f, 0x7b, 0x0a, 0x6e, 0x35, 0x6d, 0x1e, 0xbf, 0x66, 0xc2, 0x34, 0x0c, - 0x85, 0x96, 0x0e, 0xd6, 0xde, 0x81, 0x0c, 0x15, 0x66, 0xdf, 0xc2, 0xeb, 0x47, 0xcf, 0x64, 0xa0, - 0xab, 0x27, 0x23, 0x6b, 0x65, 0x98, 0xa2, 0x0c, 0x58, 0x2a, 0x85, 0xce, 0x07, 0x58, 0x3c, 0xa0, - 0x23, 0x3e, 0x26, 0x93, 0x84, 0x8c, 0x8d, 0xad, 0x15, 0x61, 0xd2, 0x66, 0x63, 0x1e, 0x6a, 0x4d, - 0x74, 0x2e, 0x84, 0x8b, 0x35, 0xe0, 0x63, 0x92, 0x61, 0x4c, 0xac, 0xa1, 0x9e, 0x28, 0xf6, 0x7f, - 0x25, 0x06, 0x45, 0x61, 0xe9, 0x4e, 0xa8, 0x28, 0x6c, 0xac, 0x98, 0x7e, 0x92, 0x6c, 0x18, 0xca, - 0xde, 0x28, 0x21, 0x7a, 0xfd, 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xe4, 0xc6, 0xb7, 0x99, 0x42, + // 3651 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x3b, 0x4b, 0x6c, 0x1b, 0xd7, + 0xb5, 0x1a, 0x7e, 0xf4, 0x39, 0x94, 0x64, 0xfa, 0xea, 0x63, 0x7a, 0x24, 0xd9, 0xf2, 0x38, 0x76, + 0x64, 0xc7, 0xa6, 0x13, 0x25, 0x0e, 0x5e, 0x64, 0xe7, 0x43, 0x52, 0xb4, 0xc4, 0x98, 0xa6, 0x94, + 0x21, 0x65, 0xc7, 0x7e, 0x2f, 0x98, 0x8c, 0xc8, 0x2b, 0x79, 0x10, 0x72, 0x86, 0x9e, 0x19, 0xea, + 0x59, 0x6f, 0xf3, 0x1e, 0x5e, 0xd1, 0x45, 0xd1, 0x16, 0xe8, 0x2e, 0xdd, 0xb5, 0x68, 0xbb, 0x2a, + 0x12, 0x64, 0xd3, 0xa2, 0xcb, 0x02, 0x5d, 0x16, 0x68, 0xd1, 0x5d, 0x8b, 0x76, 0x91, 0x7d, 0x90, + 0x02, 0x59, 0x75, 0xd1, 0x55, 0x31, 0xf7, 0xde, 0x19, 0xce, 0x9f, 0xa4, 0x65, 0x23, 0x8b, 0xae, + 0xc4, 0x39, 0xf7, 0x9c, 0x73, 0xcf, 0xbd, 0xf7, 0x9c, 0x73, 0xcf, 0xe7, 0x0a, 0x6e, 0x1e, 0x2a, + 0xe6, 0xe3, 0xde, 0x7e, 0xbe, 0xa9, 0x75, 0x6e, 0x34, 0x35, 0xd5, 0x94, 0x15, 0x15, 0xeb, 0xd7, + 0x0d, 0x53, 0xd3, 0xe5, 0x43, 0x7c, 0x5d, 0x51, 0x4d, 0xac, 0x1f, 0xc8, 0x4d, 0x7c, 0xc3, 0xe8, + 0xe2, 0xe6, 0x8d, 0xa6, 0xa1, 0xe4, 0xbb, 0xba, 0x66, 0x6a, 0x68, 0xdc, 0xfa, 0x79, 0xf4, 0x1a, + 0xbf, 0x7a, 0xa8, 0x69, 0x87, 0x6d, 0x7c, 0x83, 0x40, 0xf7, 0x7b, 0x07, 0x37, 0x5a, 0xd8, 0x68, + 0xea, 0x4a, 0xd7, 0xd4, 0x74, 0x8a, 0xc9, 0x9f, 0xf7, 0x63, 0x98, 0x4a, 0x07, 0x1b, 0xa6, 0xdc, + 0xe9, 0x32, 0x84, 0x73, 0x7e, 0x84, 0xff, 0xd6, 0xe5, 0x6e, 0x17, 0xeb, 0x06, 0x1d, 0x17, 0x16, + 0x61, 0x7e, 0x0b, 0x9b, 0xbb, 0xed, 0xde, 0xa1, 0xa2, 0x56, 0xd4, 0x03, 0x4d, 0xc4, 0x4f, 0x7a, + 0xd8, 0x30, 0x85, 0xbf, 0x70, 0xb0, 0xe0, 0x1b, 0x30, 0xba, 0x9a, 0x6a, 0x60, 0x84, 0x20, 0xa5, + 0xca, 0x1d, 0x9c, 0xe3, 0x56, 0xb9, 0xb5, 0x29, 0x91, 0xfc, 0x46, 0x97, 0x60, 0xf6, 0x08, 0xab, + 0x2d, 0x4d, 0x97, 0x8e, 0xb0, 0x6e, 0x28, 0x9a, 0x9a, 0x4b, 0x90, 0xd1, 0x19, 0x0a, 0xbd, 0x4f, + 0x81, 0x68, 0x0b, 0x26, 0x3b, 0xb2, 0xaa, 0x1c, 0x60, 0xc3, 0xcc, 0x25, 0x57, 0x93, 0x6b, 0x99, + 0xf5, 0x57, 0xf2, 0x74, 0xa9, 0xf9, 0xd0, 0xb9, 0xf2, 0xf7, 0x18, 0x76, 0x59, 0x35, 0xf5, 0x63, + 0xd1, 0x21, 0xe6, 0x6f, 0xc1, 0x8c, 0x67, 0x08, 0x65, 0x21, 0xf9, 0x09, 0x3e, 0x66, 0x32, 0x59, + 0x3f, 0xd1, 0x3c, 0xa4, 0x8f, 0xe4, 0x76, 0x0f, 0x33, 0x49, 0xe8, 0xc7, 0x46, 0xe2, 0x3f, 0x38, + 0xe1, 0x1c, 0x2c, 0x3b, 0xb3, 0x95, 0xe4, 0xae, 0xbc, 0xaf, 0xb4, 0x15, 0x53, 0xc1, 0x86, 0xbd, + 0xf4, 0x8f, 0x60, 0x25, 0x62, 0x9c, 0xed, 0xc0, 0x6d, 0x98, 0x6e, 0xba, 0xe0, 0x39, 0x8e, 0x2c, + 0x25, 0x67, 0x2f, 0xc5, 0x47, 0x79, 0x2c, 0x7a, 0xb0, 0x85, 0x3f, 0x26, 0x21, 0xeb, 0x47, 0x41, + 0xb7, 0x61, 0xc2, 0xc0, 0xfa, 0x91, 0xd2, 0xa4, 0xfb, 0x9a, 0x59, 0x5f, 0x8d, 0xe2, 0x96, 0xaf, + 0x53, 0xbc, 0xed, 0x31, 0xd1, 0x26, 0x41, 0x7b, 0x90, 0x3d, 0xd2, 0xda, 0xbd, 0x0e, 0x96, 0xf0, + 0xd3, 0xae, 0xac, 0x3a, 0x07, 0x90, 0x59, 0x5f, 0x8b, 0x64, 0x73, 0x9f, 0x10, 0x94, 0x6d, 0xfc, + 0xed, 0x31, 0xf1, 0xd4, 0x91, 0x17, 0xc4, 0x7f, 0xca, 0xc1, 0x04, 0x9b, 0x0d, 0xbd, 0x05, 0x29, + 0xf3, 0xb8, 0x4b, 0xa5, 0x9b, 0x5d, 0xbf, 0x34, 0x48, 0xba, 0x7c, 0xe3, 0xb8, 0x8b, 0x45, 0x42, + 0x22, 0x7c, 0x00, 0x29, 0xeb, 0x0b, 0x65, 0x60, 0x62, 0xaf, 0x76, 0xb7, 0xb6, 0xf3, 0xa0, 0x96, + 0x1d, 0x43, 0x8b, 0x80, 0x4a, 0x3b, 0xb5, 0x86, 0xb8, 0x53, 0xad, 0x96, 0x45, 0xa9, 0x5e, 0x16, + 0xef, 0x57, 0x4a, 0xe5, 0x2c, 0x87, 0x5e, 0x82, 0xd5, 0xfb, 0x3b, 0xd5, 0xbd, 0x7b, 0x65, 0xa9, + 0x50, 0x2a, 0x95, 0xeb, 0xf5, 0x4a, 0xb1, 0x52, 0xad, 0x34, 0x1e, 0x4a, 0xa5, 0x9d, 0x5a, 0xbd, + 0x21, 0x16, 0x2a, 0xb5, 0x46, 0x3d, 0x9b, 0xe0, 0xff, 0x9f, 0x83, 0x53, 0xbe, 0x05, 0xa0, 0x82, + 0x47, 0xc2, 0xeb, 0xc3, 0x2e, 0xdc, 0x2d, 0xe9, 0xb5, 0x30, 0x49, 0x01, 0xc6, 0x77, 0x6a, 0xd5, + 0x4a, 0xcd, 0x92, 0x2e, 0x03, 0x13, 0x3b, 0x77, 0xee, 0x90, 0x8f, 0x44, 0x71, 0x9c, 0x4e, 0x28, + 0xcc, 0xc2, 0xf4, 0xae, 0xae, 0xed, 0x63, 0x5b, 0x7f, 0x0a, 0x30, 0xc3, 0xbe, 0x99, 0xbe, 0xbc, + 0x0a, 0x69, 0x1d, 0xcb, 0xad, 0x63, 0x76, 0xb4, 0x7c, 0x9e, 0xda, 0x64, 0xde, 0xb6, 0xc9, 0x7c, + 0x51, 0xd3, 0xda, 0xf7, 0x2d, 0xfd, 0x14, 0x29, 0xa2, 0xf0, 0x4d, 0x0a, 0xe6, 0x4a, 0x3a, 0x96, + 0x4d, 0x4c, 0xa5, 0x65, 0xac, 0x43, 0x6d, 0xef, 0x36, 0xcc, 0x5a, 0xfa, 0xd5, 0x54, 0xcc, 0x63, + 0x49, 0x97, 0xd5, 0x43, 0xcc, 0x8e, 0x7e, 0xc1, 0xde, 0x81, 0x12, 0x1b, 0x15, 0xad, 0x41, 0x71, + 0xa6, 0xe9, 0xfe, 0x44, 0x15, 0x98, 0x63, 0xaa, 0xe3, 0x51, 0xe9, 0xa4, 0x57, 0xa5, 0xa9, 0x14, + 0x2e, 0x95, 0x46, 0x47, 0x5e, 0x88, 0x82, 0x0d, 0x74, 0x17, 0xa0, 0x2b, 0xeb, 0x72, 0x07, 0x9b, + 0x58, 0x37, 0x72, 0x29, 0xaf, 0x7d, 0x87, 0xac, 0x26, 0xbf, 0xeb, 0x60, 0x53, 0xfb, 0x76, 0x91, + 0xa3, 0x2d, 0xcb, 0x20, 0x9a, 0x3a, 0x36, 0x8d, 0x5c, 0x9a, 0x70, 0x5a, 0x8b, 0xe3, 0x54, 0xa7, + 0xa8, 0x84, 0x4d, 0x31, 0xf9, 0xe3, 0x22, 0x27, 0xda, 0xd4, 0x68, 0x07, 0x16, 0xec, 0x05, 0x6a, + 0xaa, 0x89, 0x55, 0x53, 0x32, 0xb4, 0x9e, 0xde, 0xc4, 0xb9, 0x71, 0xb2, 0x4b, 0x4b, 0xbe, 0x25, + 0x52, 0x9c, 0x3a, 0x41, 0x11, 0xd9, 0xd6, 0x78, 0x80, 0xe8, 0x11, 0xf0, 0x72, 0xb3, 0x89, 0x0d, + 0x43, 0xa1, 0x7b, 0x21, 0xe9, 0xf8, 0x49, 0x4f, 0xd1, 0x71, 0x07, 0xab, 0xa6, 0x91, 0x9b, 0xf0, + 0x72, 0x6d, 0x68, 0x5d, 0xad, 0xad, 0x1d, 0x1e, 0x8b, 0x7d, 0x1c, 0xf1, 0xac, 0x87, 0xdc, 0x35, + 0x62, 0xf0, 0x6f, 0xc3, 0x29, 0xdf, 0xa6, 0x8c, 0xe2, 0xd9, 0xf8, 0x0d, 0x98, 0x76, 0xef, 0xc4, + 0x48, 0x5e, 0xf1, 0xfb, 0x09, 0x98, 0x0b, 0xd9, 0x03, 0xb4, 0x0d, 0x93, 0x86, 0x2a, 0x77, 0x8d, + 0xc7, 0x9a, 0xc9, 0xf4, 0xf7, 0x6a, 0xcc, 0x96, 0xe5, 0xeb, 0x0c, 0x97, 0x7e, 0x6e, 0x8f, 0x89, + 0x0e, 0x35, 0x2a, 0xc2, 0x38, 0xdd, 0x4f, 0xbf, 0x6f, 0x0a, 0xe3, 0x43, 0x61, 0x0e, 0x17, 0x46, + 0xc9, 0xbf, 0x06, 0xb3, 0xde, 0x19, 0xd0, 0x79, 0xc8, 0xd8, 0x33, 0x48, 0x4a, 0x8b, 0xad, 0x15, + 0x6c, 0x50, 0xa5, 0xc5, 0xbf, 0x02, 0xd3, 0x6e, 0x66, 0x68, 0x09, 0xa6, 0x98, 0x42, 0x38, 0xe8, + 0x93, 0x14, 0x50, 0x69, 0x39, 0x36, 0xfd, 0x0e, 0xcc, 0x7b, 0xf5, 0x8c, 0x99, 0xf2, 0x65, 0x67, + 0x0d, 0x74, 0x2f, 0x66, 0xbd, 0x6b, 0xb0, 0xe5, 0x14, 0x7e, 0x99, 0x82, 0xac, 0xdf, 0x68, 0xd0, + 0x6d, 0x48, 0xef, 0xb7, 0xb5, 0xe6, 0x27, 0x8c, 0xf6, 0xa5, 0x28, 0xeb, 0xca, 0x17, 0x2d, 0x2c, + 0x0a, 0xdd, 0x1e, 0x13, 0x29, 0x91, 0x45, 0xdd, 0xd1, 0x7a, 0xaa, 0xc9, 0x76, 0x2f, 0x9a, 0xfa, + 0x9e, 0x85, 0xd5, 0xa7, 0x26, 0x44, 0x68, 0x13, 0x32, 0x54, 0xed, 0xa4, 0x8e, 0xd6, 0xc2, 0xb9, + 0x24, 0xe1, 0x71, 0x31, 0x92, 0x47, 0x81, 0xe0, 0xde, 0xd3, 0x5a, 0x58, 0x04, 0xd9, 0xf9, 0xcd, + 0xcf, 0x40, 0xc6, 0x25, 0x1b, 0xbf, 0x05, 0x19, 0xd7, 0x64, 0xe8, 0x0c, 0x4c, 0x1c, 0x18, 0x92, + 0xe3, 0x84, 0xa7, 0xc4, 0xf1, 0x03, 0x83, 0xf8, 0xd3, 0xf3, 0x90, 0x21, 0x52, 0x48, 0x07, 0x6d, + 0xf9, 0xd0, 0xc8, 0x25, 0x56, 0x93, 0xd6, 0x19, 0x11, 0xd0, 0x1d, 0x0b, 0xc2, 0x7f, 0xcd, 0x01, + 0xf4, 0xa7, 0x44, 0xb7, 0x21, 0x45, 0xa4, 0xa4, 0xae, 0x7c, 0x6d, 0x08, 0x29, 0xf3, 0x44, 0x54, + 0x42, 0x25, 0xfc, 0x84, 0x83, 0x14, 0x61, 0xe3, 0xbf, 0x70, 0xea, 0x95, 0xda, 0x56, 0xb5, 0x2c, + 0xd5, 0x76, 0x36, 0xcb, 0xd2, 0x03, 0xb1, 0xd2, 0x28, 0x8b, 0x59, 0x0e, 0x2d, 0xc1, 0x19, 0x37, + 0x5c, 0x2c, 0x17, 0x36, 0xcb, 0xa2, 0xb4, 0x53, 0xab, 0x3e, 0xcc, 0x26, 0x10, 0x0f, 0x8b, 0xf7, + 0xf6, 0xaa, 0x8d, 0x4a, 0x70, 0x2c, 0x89, 0x96, 0x21, 0xe7, 0x1a, 0x63, 0x3c, 0x18, 0xdb, 0x94, + 0xc5, 0xd6, 0x35, 0x4a, 0x7f, 0xb2, 0xc1, 0x74, 0x71, 0xc6, 0x39, 0x0c, 0xa2, 0x6c, 0x0f, 0x60, + 0xc6, 0xe3, 0xa3, 0xad, 0x70, 0x8a, 0x39, 0x95, 0x96, 0xb4, 0x7f, 0x6c, 0x92, 0x10, 0x83, 0x5b, + 0x4b, 0x8a, 0x33, 0x36, 0xb4, 0x68, 0x01, 0xad, 0x6d, 0x6d, 0x2b, 0x1d, 0xc5, 0x64, 0x38, 0x09, + 0x82, 0x03, 0x04, 0x44, 0x10, 0x84, 0x2f, 0x13, 0x30, 0xce, 0xce, 0xe6, 0x92, 0xeb, 0x96, 0xf0, + 0xb0, 0xb4, 0xa1, 0x94, 0xa5, 0xc7, 0x38, 0x12, 0x5e, 0xe3, 0x40, 0xdb, 0x30, 0xeb, 0x76, 0xa5, + 0x4f, 0xed, 0x20, 0xee, 0x82, 0xf7, 0x80, 0xdc, 0xf6, 0xfc, 0x94, 0x85, 0x6e, 0x33, 0x47, 0x6e, + 0x18, 0x2a, 0xc2, 0xac, 0xcf, 0x1b, 0xa7, 0x06, 0x7b, 0xe3, 0x99, 0xa6, 0xc7, 0x31, 0x15, 0x60, + 0xce, 0x76, 0xa4, 0x6d, 0x2c, 0x99, 0xcc, 0xd1, 0xb2, 0xdb, 0x22, 0x1b, 0x70, 0xc0, 0xa8, 0x8f, + 0x6c, 0xc3, 0xf8, 0xf7, 0x00, 0x05, 0x65, 0x1d, 0xc9, 0x6b, 0xf6, 0x60, 0x2e, 0xc4, 0xc5, 0xa3, + 0x3c, 0x4c, 0x91, 0xa3, 0x32, 0x14, 0x13, 0xb3, 0xf0, 0x30, 0x28, 0x51, 0x1f, 0xc5, 0xc2, 0xef, + 0xea, 0xf8, 0x00, 0xeb, 0x3a, 0x6e, 0x11, 0xf3, 0x08, 0xc5, 0x77, 0x50, 0x84, 0xef, 0x70, 0x30, + 0x69, 0xc3, 0xd1, 0x06, 0x4c, 0x1a, 0xf8, 0x90, 0x5e, 0x3f, 0x74, 0xae, 0x73, 0x7e, 0xda, 0x7c, + 0x9d, 0x21, 0xb0, 0x40, 0xda, 0xc6, 0xb7, 0x02, 0x69, 0xcf, 0xd0, 0x48, 0x8b, 0xff, 0x0d, 0x07, + 0x73, 0x9b, 0xb8, 0x8d, 0xfd, 0x51, 0x4a, 0x9c, 0x87, 0x75, 0x5f, 0xec, 0x09, 0xef, 0xc5, 0x1e, + 0xc2, 0x2a, 0xe6, 0x62, 0x3f, 0xd1, 0x65, 0xb7, 0x08, 0xf3, 0xde, 0xd9, 0xa8, 0x7b, 0x17, 0xfe, + 0x9e, 0x84, 0x73, 0x96, 0x2e, 0xe8, 0x5a, 0xbb, 0x8d, 0xf5, 0xdd, 0xde, 0x7e, 0x5b, 0x31, 0x1e, + 0x8f, 0xb0, 0xb8, 0x33, 0x30, 0xa1, 0x6a, 0x2d, 0x97, 0xf1, 0x8c, 0x5b, 0x9f, 0x95, 0x16, 0x2a, + 0xc3, 0x69, 0x7f, 0x98, 0x75, 0xcc, 0x9c, 0x70, 0x74, 0x90, 0x95, 0x3d, 0xf2, 0xdf, 0x20, 0x3c, + 0x4c, 0x5a, 0x01, 0xa2, 0xa6, 0xb6, 0x8f, 0x89, 0xc5, 0x4c, 0x8a, 0xce, 0x37, 0x12, 0xfd, 0x11, + 0xd3, 0xeb, 0x4e, 0xc4, 0x14, 0xbb, 0xa2, 0xb8, 0xe0, 0xe9, 0xe3, 0x80, 0xc5, 0x8f, 0x13, 0xd6, + 0x6f, 0x0d, 0xc9, 0x7a, 0xa0, 0x27, 0x38, 0xc9, 0x29, 0x3e, 0x07, 0xf3, 0xfd, 0x3d, 0x07, 0xe7, + 0x23, 0x97, 0xc0, 0xae, 0xfc, 0x16, 0x9c, 0xea, 0xd2, 0x01, 0x67, 0x13, 0xa8, 0x95, 0xdd, 0x1a, + 0xb8, 0x09, 0x2c, 0x8b, 0x65, 0x50, 0xcf, 0x36, 0xcc, 0x76, 0x3d, 0x40, 0xbe, 0x00, 0x73, 0x21, + 0x68, 0x23, 0x2d, 0xe6, 0x2b, 0x0e, 0x56, 0xfb, 0xa2, 0xec, 0xa9, 0xdd, 0xe7, 0xa7, 0xbe, 0x8d, + 0xbe, 0x6e, 0x51, 0x97, 0x7f, 0x33, 0xb8, 0xf6, 0xf0, 0x09, 0x5f, 0x94, 0x05, 0x5f, 0x84, 0x0b, + 0x31, 0x53, 0x33, 0x73, 0xfe, 0x32, 0x05, 0x17, 0xee, 0xcb, 0x6d, 0xa5, 0xe5, 0x04, 0x72, 0x21, + 0xf9, 0x7e, 0xfc, 0x96, 0x34, 0x03, 0x16, 0x40, 0xbd, 0xd6, 0x6d, 0xc7, 0x6a, 0x07, 0xf1, 0x1f, + 0xe2, 0x3a, 0x7c, 0x8e, 0x49, 0xd8, 0xc3, 0x90, 0x24, 0xec, 0xad, 0xe1, 0x65, 0x8d, 0x4b, 0xc9, + 0xf6, 0xfc, 0x0e, 0xe6, 0xcd, 0xe1, 0xf9, 0xc6, 0x68, 0xc1, 0x89, 0xad, 0xf8, 0xdb, 0xcc, 0x9a, + 0x7e, 0x97, 0x02, 0x21, 0x6e, 0xf5, 0xcc, 0x87, 0x88, 0x30, 0xd5, 0xd4, 0xd4, 0x03, 0x45, 0xef, + 0xe0, 0x16, 0x8b, 0xfe, 0xdf, 0x18, 0x66, 0xf3, 0x98, 0x03, 0x29, 0xd9, 0xb4, 0x62, 0x9f, 0x0d, + 0xca, 0xc1, 0x44, 0x07, 0x1b, 0x86, 0x7c, 0x68, 0x8b, 0x65, 0x7f, 0xf2, 0x9f, 0x27, 0x61, 0xca, + 0x21, 0x41, 0x6a, 0x40, 0x83, 0xa9, 0xfb, 0xda, 0x7a, 0x16, 0x01, 0x9e, 0x5d, 0x99, 0x13, 0xcf, + 0xa0, 0xcc, 0x2d, 0x8f, 0x32, 0x53, 0x73, 0xd8, 0x7c, 0x26, 0xb1, 0x63, 0xf4, 0xfa, 0x5b, 0x57, + 0x40, 0xe1, 0xbf, 0x00, 0x55, 0x15, 0x83, 0x65, 0x51, 0x8e, 0x5b, 0xb2, 0x92, 0x26, 0xf9, 0xa9, + 0x84, 0x55, 0x53, 0x57, 0x58, 0xb8, 0x9e, 0x16, 0xa1, 0x23, 0x3f, 0x2d, 0x53, 0x88, 0x15, 0xd2, + 0x1b, 0xa6, 0xac, 0x9b, 0x8a, 0x7a, 0x28, 0x99, 0xda, 0x27, 0xd8, 0x29, 0xba, 0xda, 0xd0, 0x86, + 0x05, 0x14, 0xbe, 0x4e, 0xc0, 0x9c, 0x87, 0x3d, 0xd3, 0xc9, 0x5b, 0x30, 0xd1, 0xe7, 0xed, 0x09, + 0xe3, 0x43, 0xb0, 0xf3, 0x74, 0xdb, 0x6c, 0x0a, 0xb4, 0x02, 0xa0, 0xe2, 0xa7, 0xa6, 0x67, 0xde, + 0x29, 0x0b, 0x42, 0xe6, 0xe4, 0xbf, 0xcb, 0x39, 0x49, 0xb7, 0x29, 0x9b, 0x3d, 0x03, 0x5d, 0x03, + 0xc4, 0x5c, 0x34, 0x6e, 0x49, 0xec, 0x8e, 0xa1, 0xf3, 0x4e, 0x89, 0x59, 0x67, 0xa4, 0x46, 0x6e, + 0x1b, 0x03, 0x6d, 0x39, 0xf5, 0xcc, 0xa6, 0xa6, 0xb6, 0x14, 0xb3, 0x5f, 0xcf, 0x3c, 0x13, 0x48, + 0x10, 0xe8, 0x70, 0x31, 0xf9, 0xd3, 0x22, 0x67, 0x57, 0x30, 0x1d, 0x28, 0xff, 0x04, 0xd2, 0xf4, + 0x38, 0x86, 0xcc, 0xdb, 0xd1, 0x7b, 0x30, 0x6e, 0x10, 0x89, 0xfd, 0x35, 0x8a, 0xb0, 0x3d, 0x71, + 0xaf, 0x50, 0x64, 0x74, 0xc2, 0x3b, 0xc0, 0xf7, 0x2f, 0xa6, 0x2d, 0x6c, 0x0e, 0x7f, 0xfd, 0x6e, + 0x58, 0x6b, 0x10, 0x3e, 0x4d, 0xc0, 0x52, 0x28, 0x83, 0xd1, 0x2a, 0x10, 0x68, 0xdb, 0xb7, 0x92, + 0x57, 0x83, 0x37, 0x76, 0x80, 0x79, 0xe8, 0x8a, 0xf8, 0xff, 0x3b, 0xd9, 0x61, 0x16, 0x47, 0x3e, + 0xcc, 0xc0, 0x39, 0xd2, 0x9d, 0xf9, 0x3c, 0x01, 0x68, 0x0b, 0x9b, 0x4e, 0xaa, 0xcc, 0xb6, 0x34, + 0xc2, 0xdf, 0x70, 0xcf, 0xe0, 0x6f, 0xde, 0xf7, 0xf8, 0x1b, 0xea, 0xb1, 0xae, 0xba, 0x3a, 0x14, + 0xbe, 0xa9, 0x63, 0x6f, 0xcb, 0x88, 0xf4, 0x94, 0xc6, 0xfc, 0xc3, 0xa5, 0xa7, 0x27, 0x74, 0x2b, + 0x9b, 0x30, 0xe7, 0x91, 0x99, 0x29, 0xd0, 0x75, 0x40, 0xf2, 0x91, 0xac, 0xb4, 0x65, 0x4b, 0x2e, + 0x3b, 0xfb, 0x67, 0xd5, 0x80, 0xd3, 0xce, 0x88, 0x4d, 0x26, 0x08, 0xee, 0xa0, 0x92, 0xf1, 0xf3, + 0x77, 0x4c, 0xda, 0xee, 0x60, 0x2c, 0x80, 0xc3, 0xe6, 0xdd, 0x0a, 0xed, 0x9a, 0x5c, 0x0c, 0xaa, + 0x25, 0x6b, 0x21, 0x44, 0x36, 0x50, 0xfe, 0x96, 0x74, 0x5b, 0x48, 0x00, 0x1b, 0xdd, 0x82, 0xa4, + 0xde, 0x6d, 0x32, 0xf3, 0x78, 0x79, 0x08, 0xfe, 0x79, 0x71, 0xb7, 0xb4, 0x3d, 0x26, 0x5a, 0x54, + 0xfc, 0x3f, 0x12, 0x90, 0x14, 0x77, 0x4b, 0xe8, 0x3d, 0x4f, 0x37, 0xe1, 0xda, 0x90, 0x5c, 0xdc, + 0xcd, 0x84, 0xcf, 0x12, 0x61, 0xdd, 0x84, 0x1c, 0xcc, 0x97, 0xc4, 0x72, 0xa1, 0x51, 0x96, 0x36, + 0xcb, 0xd5, 0x72, 0xa3, 0x2c, 0xd1, 0x6e, 0x47, 0x96, 0x43, 0xcb, 0x90, 0xdb, 0xdd, 0x2b, 0x56, + 0x2b, 0xf5, 0x6d, 0x69, 0xaf, 0x66, 0xff, 0x62, 0xa3, 0x09, 0x94, 0x85, 0xe9, 0x6a, 0xa5, 0xde, + 0x60, 0x80, 0x7a, 0x36, 0x69, 0x41, 0xb6, 0xca, 0x0d, 0xa9, 0x54, 0xd8, 0x2d, 0x94, 0x2a, 0x8d, + 0x87, 0xd9, 0x14, 0xe2, 0x61, 0xd1, 0xcb, 0xbb, 0x5e, 0x2b, 0xec, 0xd6, 0xb7, 0x77, 0x1a, 0xd9, + 0x34, 0x42, 0x30, 0x4b, 0xe8, 0x6d, 0x50, 0x3d, 0x3b, 0x6e, 0x71, 0x28, 0x55, 0x77, 0x6a, 0x8e, + 0x0c, 0x13, 0x68, 0x1e, 0xb2, 0xf6, 0xcc, 0x62, 0xb9, 0xb0, 0x49, 0x2a, 0x5d, 0x93, 0xe8, 0x34, + 0xcc, 0x94, 0x3f, 0xdc, 0x2d, 0xd4, 0x36, 0x6d, 0xc4, 0x29, 0xb4, 0x0a, 0xcb, 0x6e, 0x71, 0x24, + 0x46, 0x55, 0xde, 0x24, 0xf5, 0xae, 0x7a, 0x16, 0xd0, 0x59, 0xc8, 0xb2, 0x46, 0x4e, 0x69, 0xa7, + 0xb6, 0x59, 0x69, 0x54, 0x76, 0x6a, 0xd9, 0x0c, 0x6f, 0x19, 0x32, 0x9a, 0x03, 0xb0, 0x24, 0x67, + 0xcc, 0xa6, 0x09, 0xd0, 0xa9, 0xbc, 0x7e, 0x95, 0x80, 0x05, 0x5a, 0x7a, 0xb5, 0x0b, 0xbd, 0xb6, + 0xa1, 0xaf, 0x41, 0x96, 0x16, 0x8b, 0x24, 0xbf, 0x0b, 0x9d, 0xa5, 0xf0, 0xfb, 0x76, 0xd0, 0x6e, + 0xb7, 0x49, 0x12, 0xae, 0x36, 0x49, 0xc5, 0x9f, 0xc2, 0x5c, 0xf5, 0x36, 0x14, 0x7c, 0xb3, 0xc5, + 0x65, 0xc5, 0xf7, 0x42, 0x62, 0xec, 0xeb, 0xf1, 0xdc, 0xe2, 0xe2, 0x8f, 0x93, 0xa4, 0xc0, 0x27, + 0x74, 0x11, 0x77, 0x60, 0xd1, 0x2f, 0x2f, 0xb3, 0xd6, 0x6b, 0x81, 0xb2, 0xbf, 0xe3, 0xb3, 0x1c, + 0x5c, 0x07, 0x43, 0xf8, 0x33, 0x07, 0x93, 0x36, 0xd8, 0x8a, 0x0d, 0x0c, 0xe5, 0x7f, 0xb0, 0xa7, + 0xcc, 0x38, 0x65, 0x41, 0x9c, 0xaa, 0xa5, 0xbb, 0x60, 0x9f, 0xf0, 0x17, 0xec, 0x43, 0xcf, 0x39, + 0x19, 0x7a, 0xce, 0xef, 0xc2, 0x4c, 0xd3, 0x12, 0x5f, 0xd1, 0x54, 0xc9, 0x54, 0x3a, 0x76, 0x15, + 0x31, 0xd8, 0x60, 0x6b, 0xd8, 0x5d, 0x71, 0x71, 0xda, 0x26, 0xb0, 0x40, 0x68, 0x15, 0xa6, 0x49, + 0xc3, 0x4d, 0x32, 0x35, 0xa9, 0x67, 0xe0, 0x5c, 0x9a, 0xd4, 0x54, 0x80, 0xc0, 0x1a, 0xda, 0x9e, + 0x81, 0x85, 0xdf, 0x72, 0xb0, 0x40, 0x4b, 0x45, 0x7e, 0x75, 0x1c, 0xd4, 0x78, 0x70, 0x6b, 0x9c, + 0xef, 0x2a, 0x09, 0x65, 0xf8, 0xa2, 0x32, 0xe5, 0x1c, 0x2c, 0xfa, 0xe7, 0x63, 0xe9, 0xf1, 0x17, + 0x09, 0x98, 0xb7, 0xe2, 0x1a, 0x7b, 0xe0, 0x79, 0x87, 0x9e, 0x23, 0x9c, 0xa4, 0x6f, 0x33, 0x53, + 0x81, 0xcd, 0xdc, 0xf6, 0x27, 0x9f, 0x57, 0xdc, 0x91, 0x99, 0x7f, 0x05, 0x2f, 0x6a, 0x2f, 0x3f, + 0xe3, 0x60, 0xc1, 0x37, 0x1f, 0xb3, 0x97, 0xb7, 0xfd, 0xd1, 0xf4, 0xc5, 0x08, 0xf9, 0x9e, 0x29, + 0x9e, 0xbe, 0x69, 0xc7, 0xb1, 0xa3, 0x99, 0xe5, 0x9f, 0x12, 0xb0, 0xd2, 0xbf, 0xb1, 0x48, 0xcb, + 0xbb, 0x35, 0x42, 0x39, 0xe8, 0x64, 0x9d, 0xe5, 0x0f, 0xfc, 0x0e, 0x77, 0x3d, 0x78, 0x89, 0x86, + 0x88, 0x14, 0xe7, 0x78, 0x43, 0xab, 0xa8, 0xa9, 0x51, 0xab, 0xa8, 0x27, 0xd2, 0x80, 0xff, 0x75, + 0x17, 0x88, 0xbd, 0xe2, 0x33, 0x4d, 0x18, 0xb2, 0xd3, 0xf2, 0x26, 0x9c, 0x21, 0xa1, 0xb3, 0xf3, + 0x62, 0xc3, 0xee, 0x23, 0x53, 0x97, 0x38, 0x29, 0x2e, 0x58, 0xc3, 0xce, 0x33, 0x05, 0xd6, 0x5d, + 0x68, 0x09, 0xdf, 0xa4, 0x60, 0xd1, 0x0a, 0xad, 0xeb, 0xa6, 0x7c, 0x38, 0x4a, 0xdd, 0xfd, 0x3f, + 0x83, 0x65, 0xcc, 0x84, 0xf7, 0x58, 0xc2, 0xb9, 0x0e, 0x53, 0xbd, 0x44, 0x79, 0x98, 0x33, 0x4c, + 0xf9, 0x90, 0xb8, 0x03, 0x59, 0x3f, 0xc4, 0xa6, 0xd4, 0x95, 0xcd, 0xc7, 0xcc, 0xd6, 0x4f, 0xb3, + 0xa1, 0x06, 0x19, 0xd9, 0x95, 0xcd, 0xc7, 0xcf, 0xe9, 0x20, 0xd1, 0xfb, 0x7e, 0xa7, 0xf0, 0xca, + 0x80, 0xb5, 0xc4, 0xe8, 0xd6, 0x87, 0x11, 0xa5, 0xee, 0xd7, 0x06, 0xb0, 0x1c, 0x5c, 0xe2, 0x3e, + 0x79, 0x69, 0xf7, 0x5b, 0xae, 0x92, 0x9f, 0x85, 0x33, 0x81, 0xc5, 0xb3, 0x2b, 0xe4, 0x10, 0x72, + 0xd6, 0xd0, 0x9e, 0x6a, 0x8c, 0xa8, 0x8e, 0x11, 0x1a, 0x93, 0x88, 0xd0, 0x18, 0x61, 0x09, 0xce, + 0x86, 0x4c, 0xc4, 0xa4, 0xf8, 0x75, 0x9a, 0x8a, 0x31, 0x7a, 0xc3, 0xe6, 0xa3, 0x28, 0xab, 0x78, + 0xc3, 0x7d, 0xec, 0xa1, 0xbd, 0x8d, 0x17, 0x61, 0x17, 0xe7, 0x21, 0xe3, 0xc6, 0x63, 0xd7, 0xa0, + 0x39, 0xc0, 0x70, 0xd2, 0x27, 0xea, 0x23, 0x8d, 0xfb, 0xfa, 0x48, 0xd5, 0xbe, 0x51, 0x4d, 0x78, + 0x43, 0xdb, 0xc8, 0xad, 0x88, 0x31, 0xab, 0x47, 0x01, 0xb3, 0x9a, 0xf4, 0x36, 0xa7, 0x22, 0x99, + 0xfe, 0x1b, 0x18, 0x16, 0x53, 0xea, 0xd0, 0xae, 0x91, 0xf0, 0x08, 0x78, 0xaa, 0xf1, 0xa3, 0xf7, + 0x71, 0x7c, 0x6a, 0x94, 0xf0, 0xab, 0x91, 0xb0, 0x02, 0x4b, 0xa1, 0xbc, 0xd9, 0xd4, 0xdf, 0xe3, + 0xa8, 0x60, 0x4e, 0x81, 0xa8, 0x6e, 0xca, 0xa6, 0x31, 0xec, 0xd4, 0x6c, 0xd0, 0x3d, 0x35, 0x05, + 0x11, 0x0d, 0x1e, 0xd1, 0x24, 0x84, 0x1f, 0x71, 0x74, 0x1f, 0xfc, 0xb2, 0xb0, 0xdb, 0xf6, 0x0a, + 0xa4, 0x7b, 0xa4, 0x06, 0x4e, 0xa3, 0xae, 0x39, 0xaf, 0x11, 0xec, 0x59, 0x43, 0x22, 0xc5, 0x78, + 0x6e, 0x55, 0x45, 0xe1, 0x0b, 0x0e, 0x32, 0x2e, 0xfe, 0x68, 0x19, 0xa6, 0x9c, 0xba, 0x89, 0x9d, + 0xef, 0x38, 0x00, 0xeb, 0xf8, 0x4d, 0xcd, 0x94, 0xdb, 0xec, 0x7d, 0x06, 0xfd, 0xb0, 0x52, 0xd4, + 0x9e, 0x81, 0x69, 0x38, 0x9c, 0x14, 0xc9, 0x6f, 0x74, 0x0d, 0x52, 0x3d, 0x55, 0x31, 0x89, 0xd9, + 0xcf, 0xfa, 0xed, 0x99, 0x4c, 0x95, 0xdf, 0x53, 0x15, 0x53, 0x24, 0x58, 0xc2, 0x55, 0x48, 0x59, + 0x5f, 0xde, 0xf2, 0xc2, 0x14, 0xa4, 0x8b, 0x0f, 0x1b, 0xe5, 0x7a, 0x96, 0x43, 0x00, 0xe3, 0x15, + 0x9a, 0x8c, 0x27, 0x84, 0xaa, 0xfd, 0x5c, 0xd2, 0x59, 0x84, 0xe5, 0x02, 0xe4, 0x7d, 0x55, 0xd3, + 0x3b, 0x72, 0x9b, 0xc8, 0x3c, 0x29, 0x3a, 0xdf, 0xd1, 0xad, 0x05, 0x5a, 0x88, 0x5b, 0x76, 0x4e, + 0x24, 0xac, 0x18, 0xf4, 0x31, 0xd5, 0xad, 0xa8, 0x32, 0x50, 0x21, 0xb4, 0x0c, 0xb4, 0xe2, 0xb9, + 0x65, 0x07, 0x14, 0x80, 0x7e, 0x98, 0x80, 0x85, 0x50, 0x3c, 0x74, 0xd3, 0x5d, 0xfa, 0xb9, 0x10, + 0xcb, 0xd3, 0x5d, 0xf4, 0xf9, 0x15, 0x47, 0x8b, 0x3e, 0x1b, 0x9e, 0xa2, 0xcf, 0xe5, 0x81, 0xf4, + 0xee, 0x72, 0xcf, 0x93, 0x88, 0x6a, 0x4f, 0xbd, 0x51, 0xd8, 0x2a, 0x4b, 0x7b, 0x35, 0xfa, 0xd7, + 0xa9, 0xf6, 0xcc, 0x43, 0xb6, 0x5f, 0x03, 0x91, 0xea, 0x8d, 0x42, 0xa3, 0x9e, 0x4d, 0x04, 0x2b, + 0x2d, 0xc9, 0xd0, 0x3a, 0x4a, 0xca, 0x5b, 0x32, 0x99, 0x07, 0xc4, 0x76, 0xdc, 0xfd, 0x82, 0xfb, + 0x67, 0x1c, 0xcc, 0x79, 0xc0, 0xec, 0x00, 0x5c, 0x4d, 0x5e, 0xce, 0xd3, 0xe4, 0xbd, 0x01, 0xf3, + 0x56, 0xd6, 0x47, 0xb5, 0xdd, 0x90, 0xba, 0x58, 0x27, 0xc5, 0x5d, 0xa6, 0xb7, 0xa7, 0x3b, 0xf2, + 0x53, 0x56, 0x00, 0xdf, 0xc5, 0xba, 0xc5, 0xf8, 0x39, 0x94, 0x38, 0x85, 0x1f, 0x24, 0x68, 0x6c, + 0x31, 0x72, 0x6e, 0x32, 0xd0, 0xcf, 0x04, 0x93, 0x97, 0xe4, 0x08, 0xc9, 0x4b, 0x84, 0x97, 0x4a, + 0x8d, 0x14, 0xd0, 0x8e, 0x7c, 0x2f, 0x0b, 0x05, 0x1a, 0xc7, 0x9c, 0x20, 0xaf, 0x58, 0xff, 0x27, + 0x07, 0x93, 0x95, 0x16, 0x56, 0x4d, 0xcb, 0x1e, 0x6a, 0x30, 0xe3, 0x79, 0x58, 0x8f, 0x96, 0x23, + 0xde, 0xdb, 0x93, 0x1d, 0xe7, 0x57, 0x62, 0x5f, 0xe3, 0x0b, 0x63, 0xe8, 0xc0, 0xf5, 0x4f, 0x01, + 0x9e, 0xca, 0xf9, 0x4b, 0x01, 0xca, 0x10, 0xd7, 0xc0, 0x5f, 0x1a, 0x80, 0xe5, 0xcc, 0xf3, 0x26, + 0xa4, 0xc9, 0x13, 0x6a, 0x34, 0xef, 0x3c, 0xe3, 0x76, 0xbd, 0xb0, 0xe6, 0x17, 0x7c, 0x50, 0x9b, + 0x6e, 0xfd, 0x0f, 0x53, 0x00, 0xfd, 0xf4, 0x0c, 0xdd, 0x85, 0x69, 0xf7, 0x2b, 0x4e, 0xb4, 0x14, + 0xf3, 0x86, 0x98, 0x5f, 0x0e, 0x1f, 0x74, 0x64, 0xba, 0x0b, 0xd3, 0xee, 0x37, 0x43, 0x7d, 0x66, + 0x21, 0xef, 0x96, 0xfa, 0xcc, 0x42, 0x9f, 0x19, 0x8d, 0xa1, 0x36, 0x9c, 0x89, 0x78, 0x35, 0x82, + 0x2e, 0x0f, 0xf7, 0xb6, 0x86, 0x7f, 0x79, 0xc8, 0xe7, 0x27, 0xc2, 0x18, 0xd2, 0xe1, 0x6c, 0xe4, + 0x63, 0x09, 0xb4, 0x36, 0xec, 0x53, 0x0e, 0xfe, 0xca, 0x10, 0x98, 0xce, 0x9c, 0x3d, 0xe0, 0xa3, + 0x3b, 0xb4, 0xe8, 0xca, 0xd0, 0x4f, 0x07, 0xf8, 0xab, 0xc3, 0x37, 0x7c, 0x85, 0x31, 0xb4, 0x0d, + 0x19, 0x57, 0xab, 0x0e, 0xf1, 0xa1, 0xfd, 0x3b, 0xca, 0x78, 0x29, 0xa6, 0xb7, 0x47, 0x39, 0xb9, + 0xda, 0x27, 0x7d, 0x4e, 0xc1, 0x3e, 0x50, 0x9f, 0x53, 0x48, 0xbf, 0xc5, 0xbf, 0xfd, 0xbe, 0x7b, + 0x31, 0x6c, 0xfb, 0xc3, 0x2f, 0xd6, 0xb0, 0xed, 0x8f, 0xb8, 0x64, 0x85, 0x31, 0xf4, 0x01, 0xcc, + 0x7a, 0x2b, 0xbb, 0x68, 0x25, 0xb6, 0x42, 0xcd, 0x9f, 0x8b, 0x1a, 0x76, 0xb3, 0xf4, 0x16, 0x12, + 0xfb, 0x2c, 0x43, 0x0b, 0x9a, 0x7d, 0x96, 0x11, 0xf5, 0xc7, 0x31, 0xcb, 0x3f, 0x79, 0xca, 0x63, + 0x7d, 0xff, 0x14, 0x56, 0xd5, 0xeb, 0xfb, 0xa7, 0xd0, 0x9a, 0x9a, 0x30, 0x86, 0x14, 0x58, 0x0c, + 0xaf, 0xce, 0xa0, 0x4b, 0x43, 0x15, 0x9f, 0xf8, 0xcb, 0x83, 0xd0, 0x9c, 0xa9, 0x9a, 0x30, 0x17, + 0xd2, 0x49, 0x45, 0x42, 0x6c, 0x9b, 0x95, 0x4e, 0x72, 0x71, 0x88, 0x56, 0xac, 0x60, 0xdd, 0xf0, + 0xeb, 0x7f, 0x4d, 0x43, 0x8a, 0x5c, 0xb5, 0x0d, 0x38, 0xe5, 0x4b, 0xc1, 0xd1, 0xb9, 0xf8, 0xc2, + 0x04, 0x7f, 0x3e, 0x72, 0xdc, 0x59, 0xc3, 0x23, 0x38, 0x1d, 0x48, 0xaa, 0xd1, 0xaa, 0x9b, 0x2e, + 0x2c, 0xb1, 0xe7, 0x2f, 0xc4, 0x60, 0xf8, 0x79, 0x7b, 0x7d, 0xdb, 0xea, 0xa0, 0xac, 0xcf, 0xcb, + 0x3b, 0xca, 0x9f, 0x7d, 0x4c, 0x23, 0x1b, 0xbf, 0x27, 0x13, 0xbc, 0x72, 0x85, 0xfa, 0xb0, 0x8b, + 0xb1, 0x38, 0xce, 0x0c, 0x1f, 0x39, 0x21, 0x95, 0x2b, 0xe9, 0x40, 0x1e, 0xe1, 0x42, 0x93, 0x23, + 0x5e, 0x88, 0x43, 0x71, 0xd8, 0x3f, 0x80, 0xac, 0xff, 0x9e, 0x47, 0x9e, 0xf3, 0x0a, 0xd3, 0xcd, + 0xd5, 0x68, 0x04, 0xff, 0xce, 0xf8, 0x9d, 0x8c, 0x5f, 0xaa, 0x30, 0xf7, 0x72, 0x31, 0x16, 0xc7, + 0xed, 0x16, 0x5d, 0x51, 0x65, 0xdf, 0x2d, 0x06, 0x23, 0xd0, 0xbe, 0x5b, 0x0c, 0x09, 0x43, 0x85, + 0xb1, 0x8d, 0xdb, 0x00, 0x72, 0xbb, 0xfb, 0x58, 0x96, 0xb0, 0xda, 0xeb, 0xa0, 0xe5, 0x40, 0xd3, + 0xa6, 0xac, 0xf6, 0x3a, 0x3b, 0x5d, 0x2b, 0x59, 0x31, 0x72, 0xbf, 0x98, 0x24, 0x29, 0xca, 0x14, + 0x21, 0xb0, 0x06, 0x36, 0xaa, 0x90, 0xed, 0x53, 0x4b, 0x24, 0xa7, 0x46, 0x17, 0x42, 0x79, 0x90, + 0xff, 0xac, 0xf2, 0x31, 0x9a, 0x75, 0x18, 0x91, 0xd1, 0x8d, 0xb7, 0x01, 0x9a, 0x86, 0x22, 0xd1, + 0xaa, 0x05, 0x5a, 0x09, 0xf0, 0xb9, 0xa3, 0xe0, 0x76, 0xcb, 0xe6, 0xf1, 0x73, 0x26, 0x4c, 0xd3, + 0x50, 0x68, 0xf1, 0x60, 0xe3, 0x5d, 0xc8, 0x50, 0x61, 0x0e, 0x2c, 0xbc, 0x41, 0xf4, 0x4c, 0x06, + 0xba, 0x7a, 0x32, 0xb2, 0x51, 0x86, 0x19, 0xca, 0x80, 0x25, 0x5a, 0xe8, 0x7c, 0x80, 0xc5, 0x3d, + 0x3a, 0xe2, 0x63, 0x32, 0x4d, 0xc8, 0xd8, 0xd8, 0x46, 0x11, 0xa6, 0x6d, 0x36, 0xe6, 0x63, 0xad, + 0x85, 0xce, 0x85, 0x70, 0xb1, 0x06, 0x7c, 0x4c, 0x32, 0x8c, 0x89, 0x35, 0xd4, 0x17, 0xc5, 0xfe, + 0xef, 0xc2, 0xa0, 0x28, 0x2c, 0x19, 0x0a, 0x15, 0x85, 0x8d, 0x15, 0xd3, 0x8f, 0x92, 0x4d, 0x43, + 0xd9, 0x1f, 0x27, 0x44, 0xaf, 0xff, 0x2b, 0x00, 0x00, 0xff, 0xff, 0x60, 0x93, 0x14, 0xd0, 0x0a, 0x3b, 0x00, 0x00, } @@ -5288,7 +5285,7 @@ type ControllerClient interface { DeleteSnapshot(ctx context.Context, in *DeleteSnapshotRequest, opts ...grpc.CallOption) (*DeleteSnapshotResponse, error) ListSnapshots(ctx context.Context, in *ListSnapshotsRequest, opts ...grpc.CallOption) (*ListSnapshotsResponse, error) ControllerExpandVolume(ctx context.Context, in *ControllerExpandVolumeRequest, opts ...grpc.CallOption) (*ControllerExpandVolumeResponse, error) - GetVolume(ctx context.Context, in *GetVolumeRequest, opts ...grpc.CallOption) (*GetVolumeResponse, error) + ControllerGetVolume(ctx context.Context, in *ControllerGetVolumeRequest, opts ...grpc.CallOption) (*ControllerGetVolumeResponse, error) } type controllerClient struct { @@ -5407,9 +5404,9 @@ func (c *controllerClient) ControllerExpandVolume(ctx context.Context, in *Contr return out, nil } -func (c *controllerClient) GetVolume(ctx context.Context, in *GetVolumeRequest, opts ...grpc.CallOption) (*GetVolumeResponse, error) { - out := new(GetVolumeResponse) - err := c.cc.Invoke(ctx, "/csi.v1.Controller/GetVolume", in, out, opts...) +func (c *controllerClient) ControllerGetVolume(ctx context.Context, in *ControllerGetVolumeRequest, opts ...grpc.CallOption) (*ControllerGetVolumeResponse, error) { + out := new(ControllerGetVolumeResponse) + err := c.cc.Invoke(ctx, "/csi.v1.Controller/ControllerGetVolume", in, out, opts...) if err != nil { return nil, err } @@ -5430,7 +5427,7 @@ type ControllerServer interface { DeleteSnapshot(context.Context, *DeleteSnapshotRequest) (*DeleteSnapshotResponse, error) ListSnapshots(context.Context, *ListSnapshotsRequest) (*ListSnapshotsResponse, error) ControllerExpandVolume(context.Context, *ControllerExpandVolumeRequest) (*ControllerExpandVolumeResponse, error) - GetVolume(context.Context, *GetVolumeRequest) (*GetVolumeResponse, error) + ControllerGetVolume(context.Context, *ControllerGetVolumeRequest) (*ControllerGetVolumeResponse, error) } // UnimplementedControllerServer can be embedded to have forward compatible implementations. @@ -5473,8 +5470,8 @@ func (*UnimplementedControllerServer) ListSnapshots(ctx context.Context, req *Li func (*UnimplementedControllerServer) ControllerExpandVolume(ctx context.Context, req *ControllerExpandVolumeRequest) (*ControllerExpandVolumeResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method ControllerExpandVolume not implemented") } -func (*UnimplementedControllerServer) GetVolume(ctx context.Context, req *GetVolumeRequest) (*GetVolumeResponse, error) { - return nil, status.Errorf(codes.Unimplemented, "method GetVolume not implemented") +func (*UnimplementedControllerServer) ControllerGetVolume(ctx context.Context, req *ControllerGetVolumeRequest) (*ControllerGetVolumeResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method ControllerGetVolume not implemented") } func RegisterControllerServer(s *grpc.Server, srv ControllerServer) { @@ -5697,20 +5694,20 @@ func _Controller_ControllerExpandVolume_Handler(srv interface{}, ctx context.Con return interceptor(ctx, in, info, handler) } -func _Controller_GetVolume_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(GetVolumeRequest) +func _Controller_ControllerGetVolume_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(ControllerGetVolumeRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { - return srv.(ControllerServer).GetVolume(ctx, in) + return srv.(ControllerServer).ControllerGetVolume(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/csi.v1.Controller/GetVolume", + FullMethod: "/csi.v1.Controller/ControllerGetVolume", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(ControllerServer).GetVolume(ctx, req.(*GetVolumeRequest)) + return srv.(ControllerServer).ControllerGetVolume(ctx, req.(*ControllerGetVolumeRequest)) } return interceptor(ctx, in, info, handler) } @@ -5768,8 +5765,8 @@ var _Controller_serviceDesc = grpc.ServiceDesc{ Handler: _Controller_ControllerExpandVolume_Handler, }, { - MethodName: "GetVolume", - Handler: _Controller_GetVolume_Handler, + MethodName: "ControllerGetVolume", + Handler: _Controller_ControllerGetVolume_Handler, }, }, Streams: []grpc.StreamDesc{}, diff --git a/spec.md b/spec.md index 03a6deda..997aad54 100644 --- a/spec.md +++ b/spec.md @@ -377,8 +377,8 @@ service Controller { rpc ControllerExpandVolume (ControllerExpandVolumeRequest) returns (ControllerExpandVolumeResponse) {} - rpc GetVolume (GetVolumeRequest) - returns (GetVolumeResponse) { + rpc ControllerGetVolume (ControllerGetVolumeRequest) + returns (ControllerGetVolumeResponse) { option (alpha_method) = true; } } @@ -1457,10 +1457,11 @@ message ListVolumesResponse { // reported by the SP. The CO MUST be resilient to that. repeated string published_node_ids = 1; - // volume_condition shows error conditions reported by the SP. + // volume_condition shows information about the current health of + // the volume. + // This field is OPTIONAL. // This field MUST be specified if the // LIST_VOLUMES_VOLUME_CONDITION controller capability is supported. - // This field is OPTIONAL. VolumeCondition volume_condition = 2 [(alpha_field) = true]; } @@ -1496,48 +1497,53 @@ The CO MUST implement the specified error recovery behavior when it encounters t |-----------|-----------|-------------|-------------------| | Invalid `starting_token` | 10 ABORTED | Indicates that `starting_token` is not valid. | Caller SHOULD start the `ListVolumes` operation again with an empty `starting_token`. | -#### `GetVolume` +#### `ControllerGetVolume` + +**ALPHA FEATURE** -**EXPERIMENTAL FEATURE** +This optional RPC MAY be called by the CO to fetch current information about a volume. -A Controller Plugin MUST implement this `GetVolume` RPC call if it has `GET_VOLUME` capability. +A Controller Plugin MUST implement this `ControllerGetVolume` RPC call if it has `GET_VOLUME` capability. -A Controller Plugin SHOULD provide a non-empty `volume_condition` field in `GetVolumeResponse` if it has `GET_VOLUME_VOLUME_CONDITION` capability. +A Controller Plugin MUST provide a non-empty `volume_condition` field in `ControllerGetVolumeResponse` if it has `GET_VOLUME_VOLUME_CONDITION` capability. -`GetVolumeResponse` should contain current information of a volume if it exists. -If the volume does not exist any more, `GetVolume` should return gRPC error code `NOT_FOUND`. +`ControllerGetVolumeResponse` should contain current information of a volume if it exists. +If the volume does not exist any more, `ControllerGetVolume` should return gRPC error code `NOT_FOUND`. -The `VolumeCondition` message in `VolumeStatus` field in `GetVolumeResponse` can indicate health condition for the volume. +The `VolumeCondition` message in `VolumeStatus` field in `ControllerGetVolumeResponse` can indicate additional health information for the volume. Whether the volume is still attached to a node is already handled by `LIST_VOLUMES_PUBLISHED_NODES` controller capability. This capability MAY be used by CO to reconcile - re-attach the volume if the volume is not attached any more. ```protobuf -message GetVolumeRequest { +message ControllerGetVolumeRequest { option (alpha_message) = true; // Identity information for a specific volume. This field is - // REQUIRED. GetVolume will return with current volume information. + // REQUIRED. ControllerGetVolume will return with current + // volume information. string volume_id = 1; } -message GetVolumeResponse { +message ControllerGetVolumeResponse { option (alpha_message) = true; message VolumeStatus{ // A list of all `node_id` of nodes that the volume in this entry // is controller published on. // This field is OPTIONAL. If it is not specified and the SP has - // the GET_VOLUME_PUBLISHED_NODES controller capability, the CO + // the PUBLISH_UNPUBLISH_VOLUME controller capability, the CO // MAY assume the volume is not controller published to any nodes. // If the field is not specified and the SP does not have the - // GET_VOLUME_PUBLISHED_NODES controller capability, the CO MUST + // PUBLISH_UNPUBLISH_VOLUME controller capability, the CO MUST // not interpret this field. // published_node_ids MAY include nodes not published to or // reported by the SP. The CO MUST be resilient to that. repeated string published_node_ids = 1; - // volume_condition shows error conditions reported by the SP. + // volume_condition shows information about the current health of + // the volume. + // This field is OPTIONAL. // This field MUST be specified if the // GET_VOLUME_VOLUME_CONDITION controller capability is supported. VolumeCondition volume_condition = 2; @@ -1552,9 +1558,9 @@ message GetVolumeResponse { } ``` -##### GetVolume Errors +##### ControllerGetVolume Errors -If the plugin is unable to complete the GetVolume call successfully, it MUST return a non-ok gRPC code in the gRPC status. +If the plugin is unable to complete the ControllerGetVolume call successfully, it MUST return a non-ok gRPC code in the gRPC status. ##### VolumeHealth from Controller vs Node Plugins @@ -1660,19 +1666,14 @@ message ControllerServiceCapability { LIST_VOLUMES_PUBLISHED_NODES = 10; // Indicates the SP supports the - // ListVolumesResponse.entry.volume_condition field - LIST_VOLUMES_VOLUME_CONDITION = 11 [(alpha_enum_value) = true]; + // ListVolumesResponse.entry.status.volume_condition field + // if SP also supports LIST_VOLUMES capability, or supports the + // ControllerGetVolumeResponse.status.volume_condition field + // if SP also supports GET_VOLUME capability + VOLUME_CONDITION = 11 [(alpha_enum_value) = true]; - // Indicates the SP supports the GetVolume RPC + // Indicates the SP supports the ControllerGetVolume RPC GET_VOLUME = 12 [(alpha_enum_value) = true]; - - // Indicates the SP supports the - // GetVolumeResponse.volume_condition field - GET_VOLUME_VOLUME_CONDITION = 13 [(alpha_enum_value) = true]; - - // Indicates the SP supports the - // GetVolumesResponse.published_node_ids field - GET_VOLUME_PUBLISHED_NODES = 14 [(alpha_enum_value) = true]; } Type type = 1; @@ -2380,9 +2381,8 @@ message VolumeCondition { option (alpha_message) = true; // Indicates the health condition of a volume is not normal. - // This field is OPTIONAL. If not present, it indicates the - // health condition is unknown. - .google.protobuf.BoolValue abnormal = 1; + // This field is REQUIRED. + bool abnormal = 1; // The message describing the health condition of the volume. // This field is REQUIRED.