From 277cefef2bda89b97becd65ebfb582bc596a6747 Mon Sep 17 00:00:00 2001 From: xing-yang Date: Mon, 10 Feb 2020 20:41:04 +0000 Subject: [PATCH] WIP: Add Volume Health Support to CSI --- csi.proto | 66 ++++ lib/go/csi/csi.pb.go | 830 +++++++++++++++++++++++++++++-------------- spec.md | 92 +++++ 3 files changed, 730 insertions(+), 258 deletions(-) diff --git a/csi.proto b/csi.proto index ae377b5d..1dd32003 100644 --- a/csi.proto +++ b/csi.proto @@ -60,6 +60,9 @@ service Controller { rpc ControllerExpandVolume (ControllerExpandVolumeRequest) returns (ControllerExpandVolumeResponse) {} + + rpc GetVolume (GetVolumeRequest) + returns (GetVolumeResponse) {} } service Node { @@ -834,6 +837,27 @@ message ListVolumesResponse { // An empty string is equal to an unspecified field value. string next_token = 2; } +message GetVolumeRequest { + // Identity information for a specific volume. This field is + // REQUIRED. GetVolume will return with current volume information. + string volume_id = 1; +} + +message GetVolumeResponse { + message VolumeStatus{ + // volume_health shows error conditions reported by the SP. + // This field MUST be specified if the + // GET_VOLUME_HEALTH controller capability is supported. + repeated VolumeHealth volume_health = 1; + } + + // This field is REQUIRED + Volume volume = 1; + + // This field is OPTIONAL. This field MUST be specified if the + // GET_VOLUME_HEALTH controller capability is supported. + VolumeStatus status = 2; +} message GetCapacityRequest { // If specified, the Plugin SHALL report the capacity of the storage // that can be used to provision volumes that satisfy ALL of the @@ -908,6 +932,13 @@ message ControllerServiceCapability { // Indicates the SP supports the // ListVolumesResponse.entry.published_nodes field LIST_VOLUMES_PUBLISHED_NODES = 10; + + // Indicates the SP supports the GetVolume RPC + GET_VOLUME = 11; + + // Indicates the SP supports the + // GetVolumeResponse.volume_health field + GET_VOLUME_HEALTH = 12; } Type type = 1; @@ -1234,6 +1265,8 @@ message NodeGetVolumeStatsRequest { message NodeGetVolumeStatsResponse { // This field is OPTIONAL. repeated VolumeUsage usage = 1; + // This field is OPTIONAL. + repeated VolumeHealth volume_health = 2; } message VolumeUsage { @@ -1257,6 +1290,35 @@ message VolumeUsage { // Units by which values are measured. This field is REQUIRED. Unit unit = 4; } + +message VolumeHealth { + enum Severity { + // Volume health condition is unknown; treat it as healthy. + UNKNOWN = 0; + // Volume is healthy. + HEALTHY = 1; + // Volume is temporarily unhealthy, but will likely become healthy. + TEMPORARY_UNHEALTHY = 2; + // Volume will fail soon. Move your data off and replace volume or + // you may lose your data. + FATAL_EMINENT = 3; + // Volume is unusable. Data loss is likely. + FATAL = 4; + } + + // The severity level of the health condition of the volume. + // This field is REQUIRED. + Severity severity = 1; + + // The error code describing the health condition of the volume. + // This is an opaque field to CO. + // This field is REQUIRED. + string error_code = 2; + + // The error message associated with the above error_code. + // This field is OPTIONAL. + string message = 3; +} message NodeGetCapabilitiesRequest { // Intentionally empty. } @@ -1279,6 +1341,10 @@ message NodeServiceCapability { GET_VOLUME_STATS = 2; // See VolumeExpansion for details. EXPAND_VOLUME = 3; + // If Plugin implements GET_VOLUME_STATS_HEALTH capability + // then it MUST implement NodeGetVolumeStats RPC + // call for fetching volume health information. + GET_VOLUME_STATS_HEALTH = 4; } Type type = 1; diff --git a/lib/go/csi/csi.pb.go b/lib/go/csi/csi.pb.go index e2e02d80..06a2e6dd 100644 --- a/lib/go/csi/csi.pb.go +++ b/lib/go/csi/csi.pb.go @@ -205,6 +205,11 @@ const ( // Indicates the SP supports the // ListVolumesResponse.entry.published_nodes field ControllerServiceCapability_RPC_LIST_VOLUMES_PUBLISHED_NODES ControllerServiceCapability_RPC_Type = 10 + // Indicates the SP supports the GetVolume RPC + ControllerServiceCapability_RPC_GET_VOLUME ControllerServiceCapability_RPC_Type = 11 + // Indicates the SP supports the + // GetVolumeResponse.volume_health field + ControllerServiceCapability_RPC_GET_VOLUME_HEALTH ControllerServiceCapability_RPC_Type = 12 ) var ControllerServiceCapability_RPC_Type_name = map[int32]string{ @@ -219,6 +224,8 @@ var ControllerServiceCapability_RPC_Type_name = map[int32]string{ 8: "PUBLISH_READONLY", 9: "EXPAND_VOLUME", 10: "LIST_VOLUMES_PUBLISHED_NODES", + 11: "GET_VOLUME", + 12: "GET_VOLUME_HEALTH", } var ControllerServiceCapability_RPC_Type_value = map[string]int32{ @@ -233,6 +240,8 @@ var ControllerServiceCapability_RPC_Type_value = map[string]int32{ "PUBLISH_READONLY": 8, "EXPAND_VOLUME": 9, "LIST_VOLUMES_PUBLISHED_NODES": 10, + "GET_VOLUME": 11, + "GET_VOLUME_HEALTH": 12, } func (x ControllerServiceCapability_RPC_Type) String() string { @@ -240,7 +249,7 @@ func (x ControllerServiceCapability_RPC_Type) String() string { } func (ControllerServiceCapability_RPC_Type) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{29, 0, 0} + return fileDescriptor_9cdb00adce470e01, []int{31, 0, 0} } type VolumeUsage_Unit int32 @@ -268,7 +277,47 @@ func (x VolumeUsage_Unit) String() string { } func (VolumeUsage_Unit) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{49, 0} + return fileDescriptor_9cdb00adce470e01, []int{51, 0} +} + +type VolumeHealth_Severity int32 + +const ( + // Volume health condition is unknown; treat it as healthy. + VolumeHealth_UNKNOWN VolumeHealth_Severity = 0 + // Volume is healthy. + VolumeHealth_HEALTHY VolumeHealth_Severity = 1 + // Volume is temporarily unhealthy, but will likely become healthy. + VolumeHealth_TEMPORARY_UNHEALTHY VolumeHealth_Severity = 2 + // Volume will fail soon. Move your data off and replace volume or + // you may lose your data. + VolumeHealth_FATAL_EMINENT VolumeHealth_Severity = 3 + // Volume is unusable. Data loss is likely. + VolumeHealth_FATAL VolumeHealth_Severity = 4 +) + +var VolumeHealth_Severity_name = map[int32]string{ + 0: "UNKNOWN", + 1: "HEALTHY", + 2: "TEMPORARY_UNHEALTHY", + 3: "FATAL_EMINENT", + 4: "FATAL", +} + +var VolumeHealth_Severity_value = map[string]int32{ + "UNKNOWN": 0, + "HEALTHY": 1, + "TEMPORARY_UNHEALTHY": 2, + "FATAL_EMINENT": 3, + "FATAL": 4, +} + +func (x VolumeHealth_Severity) String() string { + return proto.EnumName(VolumeHealth_Severity_name, int32(x)) +} + +func (VolumeHealth_Severity) EnumDescriptor() ([]byte, []int) { + return fileDescriptor_9cdb00adce470e01, []int{52, 0} } type NodeServiceCapability_RPC_Type int32 @@ -282,6 +331,10 @@ const ( NodeServiceCapability_RPC_GET_VOLUME_STATS NodeServiceCapability_RPC_Type = 2 // See VolumeExpansion for details. NodeServiceCapability_RPC_EXPAND_VOLUME NodeServiceCapability_RPC_Type = 3 + // If Plugin implements GET_VOLUME_STATS_HEALTH capability + // then it MUST implement NodeGetVolumeStats RPC + // call for fetching volume health information. + NodeServiceCapability_RPC_GET_VOLUME_STATS_HEALTH NodeServiceCapability_RPC_Type = 4 ) var NodeServiceCapability_RPC_Type_name = map[int32]string{ @@ -289,13 +342,15 @@ var NodeServiceCapability_RPC_Type_name = map[int32]string{ 1: "STAGE_UNSTAGE_VOLUME", 2: "GET_VOLUME_STATS", 3: "EXPAND_VOLUME", + 4: "GET_VOLUME_STATS_HEALTH", } var NodeServiceCapability_RPC_Type_value = map[string]int32{ - "UNKNOWN": 0, - "STAGE_UNSTAGE_VOLUME": 1, - "GET_VOLUME_STATS": 2, - "EXPAND_VOLUME": 3, + "UNKNOWN": 0, + "STAGE_UNSTAGE_VOLUME": 1, + "GET_VOLUME_STATS": 2, + "EXPAND_VOLUME": 3, + "GET_VOLUME_STATS_HEALTH": 4, } func (x NodeServiceCapability_RPC_Type) String() string { @@ -303,7 +358,7 @@ func (x NodeServiceCapability_RPC_Type) String() string { } func (NodeServiceCapability_RPC_Type) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{52, 0, 0} + return fileDescriptor_9cdb00adce470e01, []int{55, 0, 0} } type GetPluginInfoRequest struct { @@ -2474,6 +2529,139 @@ func (m *ListVolumesResponse_Entry) GetStatus() *ListVolumesResponse_VolumeStatu return nil } +type GetVolumeRequest struct { + // Identity information for a specific volume. This field is + // REQUIRED. GetVolume 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) { + return fileDescriptor_9cdb00adce470e01, []int{25} +} + +func (m *GetVolumeRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_GetVolumeRequest.Unmarshal(m, b) +} +func (m *GetVolumeRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_GetVolumeRequest.Marshal(b, m, deterministic) +} +func (m *GetVolumeRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_GetVolumeRequest.Merge(m, src) +} +func (m *GetVolumeRequest) XXX_Size() int { + return xxx_messageInfo_GetVolumeRequest.Size(m) +} +func (m *GetVolumeRequest) XXX_DiscardUnknown() { + xxx_messageInfo_GetVolumeRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_GetVolumeRequest proto.InternalMessageInfo + +func (m *GetVolumeRequest) GetVolumeId() string { + if m != nil { + return m.VolumeId + } + return "" +} + +type GetVolumeResponse 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_HEALTH 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:"-"` +} + +func (m *GetVolumeResponse) Reset() { *m = GetVolumeResponse{} } +func (m *GetVolumeResponse) String() string { return proto.CompactTextString(m) } +func (*GetVolumeResponse) ProtoMessage() {} +func (*GetVolumeResponse) 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 *GetVolumeResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_GetVolumeResponse.Marshal(b, m, deterministic) +} +func (m *GetVolumeResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_GetVolumeResponse.Merge(m, src) +} +func (m *GetVolumeResponse) XXX_Size() int { + return xxx_messageInfo_GetVolumeResponse.Size(m) +} +func (m *GetVolumeResponse) XXX_DiscardUnknown() { + xxx_messageInfo_GetVolumeResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_GetVolumeResponse proto.InternalMessageInfo + +func (m *GetVolumeResponse) GetVolume() *Volume { + if m != nil { + return m.Volume + } + return nil +} + +func (m *GetVolumeResponse) GetStatus() *GetVolumeResponse_VolumeStatus { + if m != nil { + return m.Status + } + return nil +} + +type GetVolumeResponse_VolumeStatus struct { + // volume_health shows error conditions reported by the SP. + // This field MUST be specified if the + // GET_VOLUME_HEALTH controller capability is supported. + VolumeHealth []*VolumeHealth `protobuf:"bytes,1,rep,name=volume_health,json=volumeHealth,proto3" json:"volume_health,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + 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) { + 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 *GetVolumeResponse_VolumeStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_GetVolumeResponse_VolumeStatus.Marshal(b, m, deterministic) +} +func (m *GetVolumeResponse_VolumeStatus) XXX_Merge(src proto.Message) { + xxx_messageInfo_GetVolumeResponse_VolumeStatus.Merge(m, src) +} +func (m *GetVolumeResponse_VolumeStatus) XXX_Size() int { + return xxx_messageInfo_GetVolumeResponse_VolumeStatus.Size(m) +} +func (m *GetVolumeResponse_VolumeStatus) XXX_DiscardUnknown() { + xxx_messageInfo_GetVolumeResponse_VolumeStatus.DiscardUnknown(m) +} + +var xxx_messageInfo_GetVolumeResponse_VolumeStatus proto.InternalMessageInfo + +func (m *GetVolumeResponse_VolumeStatus) GetVolumeHealth() []*VolumeHealth { + if m != nil { + return m.VolumeHealth + } + return nil +} + type GetCapacityRequest struct { // If specified, the Plugin SHALL report the capacity of the storage // that can be used to provision volumes that satisfy ALL of the @@ -2502,7 +2690,7 @@ func (m *GetCapacityRequest) Reset() { *m = GetCapacityRequest{} } func (m *GetCapacityRequest) String() string { return proto.CompactTextString(m) } func (*GetCapacityRequest) ProtoMessage() {} func (*GetCapacityRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{25} + return fileDescriptor_9cdb00adce470e01, []int{27} } func (m *GetCapacityRequest) XXX_Unmarshal(b []byte) error { @@ -2561,7 +2749,7 @@ func (m *GetCapacityResponse) Reset() { *m = GetCapacityResponse{} } func (m *GetCapacityResponse) String() string { return proto.CompactTextString(m) } func (*GetCapacityResponse) ProtoMessage() {} func (*GetCapacityResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{26} + return fileDescriptor_9cdb00adce470e01, []int{28} } func (m *GetCapacityResponse) XXX_Unmarshal(b []byte) error { @@ -2599,7 +2787,7 @@ func (m *ControllerGetCapabilitiesRequest) Reset() { *m = ControllerGetC func (m *ControllerGetCapabilitiesRequest) String() string { return proto.CompactTextString(m) } func (*ControllerGetCapabilitiesRequest) ProtoMessage() {} func (*ControllerGetCapabilitiesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{27} + return fileDescriptor_9cdb00adce470e01, []int{29} } func (m *ControllerGetCapabilitiesRequest) XXX_Unmarshal(b []byte) error { @@ -2633,7 +2821,7 @@ func (m *ControllerGetCapabilitiesResponse) Reset() { *m = ControllerGet func (m *ControllerGetCapabilitiesResponse) String() string { return proto.CompactTextString(m) } func (*ControllerGetCapabilitiesResponse) ProtoMessage() {} func (*ControllerGetCapabilitiesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{28} + return fileDescriptor_9cdb00adce470e01, []int{30} } func (m *ControllerGetCapabilitiesResponse) XXX_Unmarshal(b []byte) error { @@ -2675,7 +2863,7 @@ func (m *ControllerServiceCapability) Reset() { *m = ControllerServiceCa func (m *ControllerServiceCapability) String() string { return proto.CompactTextString(m) } func (*ControllerServiceCapability) ProtoMessage() {} func (*ControllerServiceCapability) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{29} + return fileDescriptor_9cdb00adce470e01, []int{31} } func (m *ControllerServiceCapability) XXX_Unmarshal(b []byte) error { @@ -2738,7 +2926,7 @@ func (m *ControllerServiceCapability_RPC) Reset() { *m = ControllerServi func (m *ControllerServiceCapability_RPC) String() string { return proto.CompactTextString(m) } func (*ControllerServiceCapability_RPC) ProtoMessage() {} func (*ControllerServiceCapability_RPC) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{29, 0} + return fileDescriptor_9cdb00adce470e01, []int{31, 0} } func (m *ControllerServiceCapability_RPC) XXX_Unmarshal(b []byte) error { @@ -2801,7 +2989,7 @@ func (m *CreateSnapshotRequest) Reset() { *m = CreateSnapshotRequest{} } func (m *CreateSnapshotRequest) String() string { return proto.CompactTextString(m) } func (*CreateSnapshotRequest) ProtoMessage() {} func (*CreateSnapshotRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{30} + return fileDescriptor_9cdb00adce470e01, []int{32} } func (m *CreateSnapshotRequest) XXX_Unmarshal(b []byte) error { @@ -2864,7 +3052,7 @@ func (m *CreateSnapshotResponse) Reset() { *m = CreateSnapshotResponse{} func (m *CreateSnapshotResponse) String() string { return proto.CompactTextString(m) } func (*CreateSnapshotResponse) ProtoMessage() {} func (*CreateSnapshotResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{31} + return fileDescriptor_9cdb00adce470e01, []int{33} } func (m *CreateSnapshotResponse) XXX_Unmarshal(b []byte) error { @@ -2932,7 +3120,7 @@ func (m *Snapshot) Reset() { *m = Snapshot{} } func (m *Snapshot) String() string { return proto.CompactTextString(m) } func (*Snapshot) ProtoMessage() {} func (*Snapshot) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{32} + return fileDescriptor_9cdb00adce470e01, []int{34} } func (m *Snapshot) XXX_Unmarshal(b []byte) error { @@ -3005,7 +3193,7 @@ func (m *DeleteSnapshotRequest) Reset() { *m = DeleteSnapshotRequest{} } func (m *DeleteSnapshotRequest) String() string { return proto.CompactTextString(m) } func (*DeleteSnapshotRequest) ProtoMessage() {} func (*DeleteSnapshotRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{33} + return fileDescriptor_9cdb00adce470e01, []int{35} } func (m *DeleteSnapshotRequest) XXX_Unmarshal(b []byte) error { @@ -3050,7 +3238,7 @@ func (m *DeleteSnapshotResponse) Reset() { *m = DeleteSnapshotResponse{} func (m *DeleteSnapshotResponse) String() string { return proto.CompactTextString(m) } func (*DeleteSnapshotResponse) ProtoMessage() {} func (*DeleteSnapshotResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{34} + return fileDescriptor_9cdb00adce470e01, []int{36} } func (m *DeleteSnapshotResponse) XXX_Unmarshal(b []byte) error { @@ -3110,7 +3298,7 @@ func (m *ListSnapshotsRequest) Reset() { *m = ListSnapshotsRequest{} } func (m *ListSnapshotsRequest) String() string { return proto.CompactTextString(m) } func (*ListSnapshotsRequest) ProtoMessage() {} func (*ListSnapshotsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{35} + return fileDescriptor_9cdb00adce470e01, []int{37} } func (m *ListSnapshotsRequest) XXX_Unmarshal(b []byte) error { @@ -3184,7 +3372,7 @@ func (m *ListSnapshotsResponse) Reset() { *m = ListSnapshotsResponse{} } func (m *ListSnapshotsResponse) String() string { return proto.CompactTextString(m) } func (*ListSnapshotsResponse) ProtoMessage() {} func (*ListSnapshotsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{36} + return fileDescriptor_9cdb00adce470e01, []int{38} } func (m *ListSnapshotsResponse) XXX_Unmarshal(b []byte) error { @@ -3230,7 +3418,7 @@ func (m *ListSnapshotsResponse_Entry) Reset() { *m = ListSnapshotsRespon func (m *ListSnapshotsResponse_Entry) String() string { return proto.CompactTextString(m) } func (*ListSnapshotsResponse_Entry) ProtoMessage() {} func (*ListSnapshotsResponse_Entry) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{36, 0} + return fileDescriptor_9cdb00adce470e01, []int{38, 0} } func (m *ListSnapshotsResponse_Entry) XXX_Unmarshal(b []byte) error { @@ -3284,7 +3472,7 @@ func (m *ControllerExpandVolumeRequest) Reset() { *m = ControllerExpandV func (m *ControllerExpandVolumeRequest) String() string { return proto.CompactTextString(m) } func (*ControllerExpandVolumeRequest) ProtoMessage() {} func (*ControllerExpandVolumeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{37} + return fileDescriptor_9cdb00adce470e01, []int{39} } func (m *ControllerExpandVolumeRequest) XXX_Unmarshal(b []byte) error { @@ -3349,7 +3537,7 @@ func (m *ControllerExpandVolumeResponse) Reset() { *m = ControllerExpand func (m *ControllerExpandVolumeResponse) String() string { return proto.CompactTextString(m) } func (*ControllerExpandVolumeResponse) ProtoMessage() {} func (*ControllerExpandVolumeResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{38} + return fileDescriptor_9cdb00adce470e01, []int{40} } func (m *ControllerExpandVolumeResponse) XXX_Unmarshal(b []byte) error { @@ -3425,7 +3613,7 @@ func (m *NodeStageVolumeRequest) Reset() { *m = NodeStageVolumeRequest{} func (m *NodeStageVolumeRequest) String() string { return proto.CompactTextString(m) } func (*NodeStageVolumeRequest) ProtoMessage() {} func (*NodeStageVolumeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{39} + return fileDescriptor_9cdb00adce470e01, []int{41} } func (m *NodeStageVolumeRequest) XXX_Unmarshal(b []byte) error { @@ -3498,7 +3686,7 @@ func (m *NodeStageVolumeResponse) Reset() { *m = NodeStageVolumeResponse func (m *NodeStageVolumeResponse) String() string { return proto.CompactTextString(m) } func (*NodeStageVolumeResponse) ProtoMessage() {} func (*NodeStageVolumeResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{40} + return fileDescriptor_9cdb00adce470e01, []int{42} } func (m *NodeStageVolumeResponse) XXX_Unmarshal(b []byte) error { @@ -3535,7 +3723,7 @@ func (m *NodeUnstageVolumeRequest) Reset() { *m = NodeUnstageVolumeReque func (m *NodeUnstageVolumeRequest) String() string { return proto.CompactTextString(m) } func (*NodeUnstageVolumeRequest) ProtoMessage() {} func (*NodeUnstageVolumeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{41} + return fileDescriptor_9cdb00adce470e01, []int{43} } func (m *NodeUnstageVolumeRequest) XXX_Unmarshal(b []byte) error { @@ -3580,7 +3768,7 @@ func (m *NodeUnstageVolumeResponse) Reset() { *m = NodeUnstageVolumeResp func (m *NodeUnstageVolumeResponse) String() string { return proto.CompactTextString(m) } func (*NodeUnstageVolumeResponse) ProtoMessage() {} func (*NodeUnstageVolumeResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{42} + return fileDescriptor_9cdb00adce470e01, []int{44} } func (m *NodeUnstageVolumeResponse) XXX_Unmarshal(b []byte) error { @@ -3655,7 +3843,7 @@ func (m *NodePublishVolumeRequest) Reset() { *m = NodePublishVolumeReque func (m *NodePublishVolumeRequest) String() string { return proto.CompactTextString(m) } func (*NodePublishVolumeRequest) ProtoMessage() {} func (*NodePublishVolumeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{43} + return fileDescriptor_9cdb00adce470e01, []int{45} } func (m *NodePublishVolumeRequest) XXX_Unmarshal(b []byte) error { @@ -3742,7 +3930,7 @@ func (m *NodePublishVolumeResponse) Reset() { *m = NodePublishVolumeResp func (m *NodePublishVolumeResponse) String() string { return proto.CompactTextString(m) } func (*NodePublishVolumeResponse) ProtoMessage() {} func (*NodePublishVolumeResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{44} + return fileDescriptor_9cdb00adce470e01, []int{46} } func (m *NodePublishVolumeResponse) XXX_Unmarshal(b []byte) error { @@ -3780,7 +3968,7 @@ func (m *NodeUnpublishVolumeRequest) Reset() { *m = NodeUnpublishVolumeR func (m *NodeUnpublishVolumeRequest) String() string { return proto.CompactTextString(m) } func (*NodeUnpublishVolumeRequest) ProtoMessage() {} func (*NodeUnpublishVolumeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{45} + return fileDescriptor_9cdb00adce470e01, []int{47} } func (m *NodeUnpublishVolumeRequest) XXX_Unmarshal(b []byte) error { @@ -3825,7 +4013,7 @@ func (m *NodeUnpublishVolumeResponse) Reset() { *m = NodeUnpublishVolume func (m *NodeUnpublishVolumeResponse) String() string { return proto.CompactTextString(m) } func (*NodeUnpublishVolumeResponse) ProtoMessage() {} func (*NodeUnpublishVolumeResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{46} + return fileDescriptor_9cdb00adce470e01, []int{48} } func (m *NodeUnpublishVolumeResponse) XXX_Unmarshal(b []byte) error { @@ -3870,7 +4058,7 @@ func (m *NodeGetVolumeStatsRequest) Reset() { *m = NodeGetVolumeStatsReq func (m *NodeGetVolumeStatsRequest) String() string { return proto.CompactTextString(m) } func (*NodeGetVolumeStatsRequest) ProtoMessage() {} func (*NodeGetVolumeStatsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{47} + return fileDescriptor_9cdb00adce470e01, []int{49} } func (m *NodeGetVolumeStatsRequest) XXX_Unmarshal(b []byte) error { @@ -3914,17 +4102,19 @@ func (m *NodeGetVolumeStatsRequest) GetStagingTargetPath() string { type NodeGetVolumeStatsResponse struct { // This field is OPTIONAL. - Usage []*VolumeUsage `protobuf:"bytes,1,rep,name=usage,proto3" json:"usage,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Usage []*VolumeUsage `protobuf:"bytes,1,rep,name=usage,proto3" json:"usage,omitempty"` + // This field is OPTIONAL. + VolumeHealth []*VolumeHealth `protobuf:"bytes,2,rep,name=volume_health,json=volumeHealth,proto3" json:"volume_health,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *NodeGetVolumeStatsResponse) Reset() { *m = NodeGetVolumeStatsResponse{} } func (m *NodeGetVolumeStatsResponse) String() string { return proto.CompactTextString(m) } func (*NodeGetVolumeStatsResponse) ProtoMessage() {} func (*NodeGetVolumeStatsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{48} + return fileDescriptor_9cdb00adce470e01, []int{50} } func (m *NodeGetVolumeStatsResponse) XXX_Unmarshal(b []byte) error { @@ -3952,6 +4142,13 @@ func (m *NodeGetVolumeStatsResponse) GetUsage() []*VolumeUsage { return nil } +func (m *NodeGetVolumeStatsResponse) GetVolumeHealth() []*VolumeHealth { + if m != nil { + return m.VolumeHealth + } + return nil +} + type VolumeUsage struct { // The available capacity in specified Unit. This field is OPTIONAL. // The value of this field MUST NOT be negative. @@ -3973,7 +4170,7 @@ func (m *VolumeUsage) Reset() { *m = VolumeUsage{} } func (m *VolumeUsage) String() string { return proto.CompactTextString(m) } func (*VolumeUsage) ProtoMessage() {} func (*VolumeUsage) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{49} + return fileDescriptor_9cdb00adce470e01, []int{51} } func (m *VolumeUsage) XXX_Unmarshal(b []byte) error { @@ -4022,6 +4219,68 @@ func (m *VolumeUsage) GetUnit() VolumeUsage_Unit { return VolumeUsage_UNKNOWN } +type VolumeHealth struct { + // The severity level of the health condition of the volume. + // This field is REQUIRED. + Severity VolumeHealth_Severity `protobuf:"varint,1,opt,name=severity,proto3,enum=csi.v1.VolumeHealth_Severity" json:"severity,omitempty"` + // The error code describing the health condition of the volume. + // This is an opaque field to CO. + // This field is REQUIRED. + ErrorCode string `protobuf:"bytes,2,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"` + // The error message associated with the above error_code. + // This field is OPTIONAL. + Message string `protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *VolumeHealth) Reset() { *m = VolumeHealth{} } +func (m *VolumeHealth) String() string { return proto.CompactTextString(m) } +func (*VolumeHealth) ProtoMessage() {} +func (*VolumeHealth) Descriptor() ([]byte, []int) { + return fileDescriptor_9cdb00adce470e01, []int{52} +} + +func (m *VolumeHealth) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_VolumeHealth.Unmarshal(m, b) +} +func (m *VolumeHealth) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_VolumeHealth.Marshal(b, m, deterministic) +} +func (m *VolumeHealth) XXX_Merge(src proto.Message) { + xxx_messageInfo_VolumeHealth.Merge(m, src) +} +func (m *VolumeHealth) XXX_Size() int { + return xxx_messageInfo_VolumeHealth.Size(m) +} +func (m *VolumeHealth) XXX_DiscardUnknown() { + xxx_messageInfo_VolumeHealth.DiscardUnknown(m) +} + +var xxx_messageInfo_VolumeHealth proto.InternalMessageInfo + +func (m *VolumeHealth) GetSeverity() VolumeHealth_Severity { + if m != nil { + return m.Severity + } + return VolumeHealth_UNKNOWN +} + +func (m *VolumeHealth) GetErrorCode() string { + if m != nil { + return m.ErrorCode + } + return "" +} + +func (m *VolumeHealth) GetMessage() string { + if m != nil { + return m.Message + } + return "" +} + type NodeGetCapabilitiesRequest struct { XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` @@ -4032,7 +4291,7 @@ func (m *NodeGetCapabilitiesRequest) Reset() { *m = NodeGetCapabilitiesR func (m *NodeGetCapabilitiesRequest) String() string { return proto.CompactTextString(m) } func (*NodeGetCapabilitiesRequest) ProtoMessage() {} func (*NodeGetCapabilitiesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{50} + return fileDescriptor_9cdb00adce470e01, []int{53} } func (m *NodeGetCapabilitiesRequest) XXX_Unmarshal(b []byte) error { @@ -4066,7 +4325,7 @@ func (m *NodeGetCapabilitiesResponse) Reset() { *m = NodeGetCapabilities func (m *NodeGetCapabilitiesResponse) String() string { return proto.CompactTextString(m) } func (*NodeGetCapabilitiesResponse) ProtoMessage() {} func (*NodeGetCapabilitiesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{51} + return fileDescriptor_9cdb00adce470e01, []int{54} } func (m *NodeGetCapabilitiesResponse) XXX_Unmarshal(b []byte) error { @@ -4108,7 +4367,7 @@ func (m *NodeServiceCapability) Reset() { *m = NodeServiceCapability{} } func (m *NodeServiceCapability) String() string { return proto.CompactTextString(m) } func (*NodeServiceCapability) ProtoMessage() {} func (*NodeServiceCapability) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{52} + return fileDescriptor_9cdb00adce470e01, []int{55} } func (m *NodeServiceCapability) XXX_Unmarshal(b []byte) error { @@ -4171,7 +4430,7 @@ func (m *NodeServiceCapability_RPC) Reset() { *m = NodeServiceCapability func (m *NodeServiceCapability_RPC) String() string { return proto.CompactTextString(m) } func (*NodeServiceCapability_RPC) ProtoMessage() {} func (*NodeServiceCapability_RPC) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{52, 0} + return fileDescriptor_9cdb00adce470e01, []int{55, 0} } func (m *NodeServiceCapability_RPC) XXX_Unmarshal(b []byte) error { @@ -4209,7 +4468,7 @@ func (m *NodeGetInfoRequest) Reset() { *m = NodeGetInfoRequest{} } func (m *NodeGetInfoRequest) String() string { return proto.CompactTextString(m) } func (*NodeGetInfoRequest) ProtoMessage() {} func (*NodeGetInfoRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{53} + return fileDescriptor_9cdb00adce470e01, []int{56} } func (m *NodeGetInfoRequest) XXX_Unmarshal(b []byte) error { @@ -4273,7 +4532,7 @@ func (m *NodeGetInfoResponse) Reset() { *m = NodeGetInfoResponse{} } func (m *NodeGetInfoResponse) String() string { return proto.CompactTextString(m) } func (*NodeGetInfoResponse) ProtoMessage() {} func (*NodeGetInfoResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{54} + return fileDescriptor_9cdb00adce470e01, []int{57} } func (m *NodeGetInfoResponse) XXX_Unmarshal(b []byte) error { @@ -4352,7 +4611,7 @@ func (m *NodeExpandVolumeRequest) Reset() { *m = NodeExpandVolumeRequest func (m *NodeExpandVolumeRequest) String() string { return proto.CompactTextString(m) } func (*NodeExpandVolumeRequest) ProtoMessage() {} func (*NodeExpandVolumeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{55} + return fileDescriptor_9cdb00adce470e01, []int{58} } func (m *NodeExpandVolumeRequest) XXX_Unmarshal(b []byte) error { @@ -4420,7 +4679,7 @@ func (m *NodeExpandVolumeResponse) Reset() { *m = NodeExpandVolumeRespon func (m *NodeExpandVolumeResponse) String() string { return proto.CompactTextString(m) } func (*NodeExpandVolumeResponse) ProtoMessage() {} func (*NodeExpandVolumeResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{56} + return fileDescriptor_9cdb00adce470e01, []int{59} } func (m *NodeExpandVolumeResponse) XXX_Unmarshal(b []byte) error { @@ -4463,6 +4722,7 @@ func init() { proto.RegisterEnum("csi.v1.VolumeCapability_AccessMode_Mode", VolumeCapability_AccessMode_Mode_name, VolumeCapability_AccessMode_Mode_value) proto.RegisterEnum("csi.v1.ControllerServiceCapability_RPC_Type", ControllerServiceCapability_RPC_Type_name, ControllerServiceCapability_RPC_Type_value) proto.RegisterEnum("csi.v1.VolumeUsage_Unit", VolumeUsage_Unit_name, VolumeUsage_Unit_value) + proto.RegisterEnum("csi.v1.VolumeHealth_Severity", VolumeHealth_Severity_name, VolumeHealth_Severity_value) proto.RegisterEnum("csi.v1.NodeServiceCapability_RPC_Type", NodeServiceCapability_RPC_Type_name, NodeServiceCapability_RPC_Type_value) proto.RegisterType((*GetPluginInfoRequest)(nil), "csi.v1.GetPluginInfoRequest") proto.RegisterType((*GetPluginInfoResponse)(nil), "csi.v1.GetPluginInfoResponse") @@ -4514,6 +4774,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((*GetCapacityRequest)(nil), "csi.v1.GetCapacityRequest") proto.RegisterMapType((map[string]string)(nil), "csi.v1.GetCapacityRequest.ParametersEntry") proto.RegisterType((*GetCapacityResponse)(nil), "csi.v1.GetCapacityResponse") @@ -4553,6 +4816,7 @@ func init() { proto.RegisterType((*NodeGetVolumeStatsRequest)(nil), "csi.v1.NodeGetVolumeStatsRequest") proto.RegisterType((*NodeGetVolumeStatsResponse)(nil), "csi.v1.NodeGetVolumeStatsResponse") proto.RegisterType((*VolumeUsage)(nil), "csi.v1.VolumeUsage") + proto.RegisterType((*VolumeHealth)(nil), "csi.v1.VolumeHealth") proto.RegisterType((*NodeGetCapabilitiesRequest)(nil), "csi.v1.NodeGetCapabilitiesRequest") proto.RegisterType((*NodeGetCapabilitiesResponse)(nil), "csi.v1.NodeGetCapabilitiesResponse") proto.RegisterType((*NodeServiceCapability)(nil), "csi.v1.NodeServiceCapability") @@ -4569,218 +4833,232 @@ func init() { } var fileDescriptor_9cdb00adce470e01 = []byte{ - // 3366 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x5a, 0x4d, 0x70, 0xdb, 0xc6, - 0xf5, 0x27, 0xf8, 0x25, 0xea, 0xe9, 0xc3, 0xf4, 0xea, 0xc3, 0x34, 0x24, 0xd9, 0x32, 0x1c, 0x3b, - 0xb2, 0x63, 0xd3, 0xff, 0x28, 0x71, 0xe6, 0x1f, 0x5b, 0x69, 0x43, 0x51, 0xb4, 0xc4, 0x98, 0xa6, - 0x14, 0x90, 0x92, 0x63, 0xb7, 0x19, 0x04, 0x22, 0x57, 0x34, 0x26, 0x24, 0xc0, 0x00, 0xa0, 0x2a, - 0xf5, 0xd2, 0x99, 0xf6, 0xd4, 0x69, 0xef, 0x6d, 0x4f, 0x9d, 0x49, 0x6f, 0x6d, 0x33, 0x39, 0x75, - 0x7a, 0xec, 0x4c, 0x0f, 0x3d, 0xf4, 0xd0, 0xe9, 0xad, 0x9d, 0x5e, 0x72, 0xed, 0x64, 0xda, 0x99, - 0x4c, 0x8f, 0x9d, 0x1e, 0x3a, 0xc0, 0x2e, 0x40, 0x2c, 0x08, 0x80, 0xa4, 0x65, 0x4f, 0x0e, 0x3d, - 0x49, 0x7c, 0xfb, 0xf6, 0xed, 0xdb, 0xb7, 0xef, 0xbd, 0x7d, 0xef, 0xb7, 0x80, 0xbb, 0x2d, 0xc5, - 0x7c, 0xd6, 0x3b, 0xcc, 0x37, 0xb4, 0xce, 0x9d, 0x86, 0xa6, 0x9a, 0xb2, 0xa2, 0x62, 0xfd, 0xb6, - 0x61, 0x6a, 0xba, 0xdc, 0xc2, 0xb7, 0x15, 0xd5, 0xc4, 0xfa, 0x91, 0xdc, 0xc0, 0x77, 0x8c, 0x2e, - 0x6e, 0xdc, 0x69, 0x18, 0x4a, 0xbe, 0xab, 0x6b, 0xa6, 0x86, 0xd2, 0xd6, 0xbf, 0xc7, 0xaf, 0xf3, - 0xab, 0x2d, 0x4d, 0x6b, 0xb5, 0xf1, 0x1d, 0x9b, 0x7a, 0xd8, 0x3b, 0xba, 0xd3, 0xc4, 0x46, 0x43, - 0x57, 0xba, 0xa6, 0xa6, 0x13, 0x4e, 0xfe, 0xb2, 0x9f, 0xc3, 0x54, 0x3a, 0xd8, 0x30, 0xe5, 0x4e, - 0x97, 0x32, 0x5c, 0xf2, 0x33, 0x7c, 0x47, 0x97, 0xbb, 0x5d, 0xac, 0x1b, 0x64, 0x5c, 0x58, 0x84, - 0xf9, 0x6d, 0x6c, 0xee, 0xb5, 0x7b, 0x2d, 0x45, 0x2d, 0xab, 0x47, 0x9a, 0x88, 0x3f, 0xe9, 0x61, - 0xc3, 0x14, 0xfe, 0xca, 0xc1, 0x82, 0x6f, 0xc0, 0xe8, 0x6a, 0xaa, 0x81, 0x11, 0x82, 0xa4, 0x2a, - 0x77, 0x70, 0x8e, 0x5b, 0xe5, 0xd6, 0x26, 0x45, 0xfb, 0x7f, 0x74, 0x0d, 0x66, 0x8f, 0xb1, 0xda, - 0xd4, 0x74, 0xe9, 0x18, 0xeb, 0x86, 0xa2, 0xa9, 0xb9, 0xb8, 0x3d, 0x3a, 0x43, 0xa8, 0x07, 0x84, - 0x88, 0xb6, 0x21, 0xd3, 0x91, 0x55, 0xe5, 0x08, 0x1b, 0x66, 0x2e, 0xb1, 0x9a, 0x58, 0x9b, 0x5a, - 0x7f, 0x2d, 0x4f, 0xb6, 0x9a, 0x0f, 0x5c, 0x2b, 0xff, 0x88, 0x72, 0x97, 0x54, 0x53, 0x3f, 0x15, - 0xdd, 0xc9, 0xfc, 0x7d, 0x98, 0x61, 0x86, 0x50, 0x16, 0x12, 0x1f, 0xe3, 0x53, 0xaa, 0x93, 0xf5, - 0x2f, 0x9a, 0x87, 0xd4, 0xb1, 0xdc, 0xee, 0x61, 0xaa, 0x09, 0xf9, 0x71, 0x2f, 0xfe, 0xff, 0x9c, - 0x70, 0x09, 0x96, 0xdd, 0xd5, 0x8a, 0x72, 0x57, 0x3e, 0x54, 0xda, 0x8a, 0xa9, 0x60, 0xc3, 0xd9, - 0xfa, 0x87, 0xb0, 0x12, 0x32, 0x4e, 0x2d, 0xb0, 0x01, 0xd3, 0x0d, 0x0f, 0x3d, 0xc7, 0xd9, 0x5b, - 0xc9, 0x39, 0x5b, 0xf1, 0xcd, 0x3c, 0x15, 0x19, 0x6e, 0xe1, 0x4f, 0x09, 0xc8, 0xfa, 0x59, 0xd0, - 0x06, 0x4c, 0x18, 0x58, 0x3f, 0x56, 0x1a, 0xc4, 0xae, 0x53, 0xeb, 0xab, 0x61, 0xd2, 0xf2, 0x35, - 0xc2, 0xb7, 0x13, 0x13, 0x9d, 0x29, 0x68, 0x1f, 0xb2, 0xc7, 0x5a, 0xbb, 0xd7, 0xc1, 0x12, 0x3e, - 0xe9, 0xca, 0xaa, 0x7b, 0x00, 0x53, 0xeb, 0x6b, 0xa1, 0x62, 0x0e, 0xec, 0x09, 0x25, 0x87, 0x7f, - 0x27, 0x26, 0x9e, 0x3b, 0x66, 0x49, 0xfc, 0x4f, 0x38, 0x98, 0xa0, 0xab, 0xa1, 0xb7, 0x21, 0x69, - 0x9e, 0x76, 0x89, 0x76, 0xb3, 0xeb, 0xd7, 0x86, 0x69, 0x97, 0xaf, 0x9f, 0x76, 0xb1, 0x68, 0x4f, - 0x11, 0xde, 0x87, 0xa4, 0xf5, 0x0b, 0x4d, 0xc1, 0xc4, 0x7e, 0xf5, 0x61, 0x75, 0xf7, 0x71, 0x35, - 0x1b, 0x43, 0x8b, 0x80, 0x8a, 0xbb, 0xd5, 0xba, 0xb8, 0x5b, 0xa9, 0x94, 0x44, 0xa9, 0x56, 0x12, - 0x0f, 0xca, 0xc5, 0x52, 0x96, 0x43, 0xaf, 0xc0, 0xea, 0xc1, 0x6e, 0x65, 0xff, 0x51, 0x49, 0x2a, - 0x14, 0x8b, 0xa5, 0x5a, 0xad, 0xbc, 0x59, 0xae, 0x94, 0xeb, 0x4f, 0xa4, 0xe2, 0x6e, 0xb5, 0x56, - 0x17, 0x0b, 0xe5, 0x6a, 0xbd, 0x96, 0x8d, 0xf3, 0xdf, 0xe7, 0xe0, 0x9c, 0x6f, 0x03, 0xa8, 0xc0, - 0x68, 0x78, 0x7b, 0xd4, 0x8d, 0x7b, 0x35, 0xbd, 0x15, 0xa4, 0x29, 0x40, 0x7a, 0xb7, 0x5a, 0x29, - 0x57, 0x2d, 0xed, 0xa6, 0x60, 0x62, 0xf7, 0xc1, 0x03, 0xfb, 0x47, 0x7c, 0x33, 0x4d, 0x16, 0x14, - 0x66, 0x61, 0x7a, 0x4f, 0xd7, 0x0e, 0xb1, 0xe3, 0x3f, 0x05, 0x98, 0xa1, 0xbf, 0xa9, 0xbf, 0xfc, - 0x1f, 0xa4, 0x74, 0x2c, 0x37, 0x4f, 0xe9, 0xd1, 0xf2, 0x79, 0x12, 0x93, 0x79, 0x27, 0x26, 0xf3, - 0x9b, 0x9a, 0xd6, 0x3e, 0xb0, 0xfc, 0x53, 0x24, 0x8c, 0xc2, 0x57, 0x49, 0x98, 0x2b, 0xea, 0x58, - 0x36, 0x31, 0xd1, 0x96, 0x8a, 0x0e, 0x8c, 0xbd, 0x0d, 0x98, 0xb5, 0xfc, 0xab, 0xa1, 0x98, 0xa7, - 0x92, 0x2e, 0xab, 0x2d, 0x4c, 0x8f, 0x7e, 0xc1, 0xb1, 0x40, 0x91, 0x8e, 0x8a, 0xd6, 0xa0, 0x38, - 0xd3, 0xf0, 0xfe, 0x44, 0x65, 0x98, 0xa3, 0xae, 0xc3, 0xb8, 0x74, 0x82, 0x75, 0x69, 0xa2, 0x85, - 0xc7, 0xa5, 0xd1, 0x31, 0x4b, 0x51, 0xb0, 0x81, 0x1e, 0x02, 0x74, 0x65, 0x5d, 0xee, 0x60, 0x13, - 0xeb, 0x46, 0x2e, 0xc9, 0xc6, 0x77, 0xc0, 0x6e, 0xf2, 0x7b, 0x2e, 0x37, 0x89, 0x6f, 0xcf, 0x74, - 0xb4, 0x6d, 0x05, 0x44, 0x43, 0xc7, 0xa6, 0x91, 0x4b, 0xd9, 0x92, 0xd6, 0xa2, 0x24, 0xd5, 0x08, - 0xab, 0x2d, 0x66, 0x33, 0xf1, 0xd3, 0x4d, 0x4e, 0x74, 0x66, 0xa3, 0x5d, 0x58, 0x70, 0x36, 0xa8, - 0xa9, 0x26, 0x56, 0x4d, 0xc9, 0xd0, 0x7a, 0x7a, 0x03, 0xe7, 0xd2, 0xb6, 0x95, 0x96, 0x7c, 0x5b, - 0x24, 0x3c, 0x35, 0x9b, 0x45, 0xa4, 0xa6, 0x61, 0x88, 0xe8, 0x29, 0xf0, 0x72, 0xa3, 0x81, 0x0d, - 0x43, 0x21, 0xb6, 0x90, 0x74, 0xfc, 0x49, 0x4f, 0xd1, 0x71, 0x07, 0xab, 0xa6, 0x91, 0x9b, 0x60, - 0xa5, 0xd6, 0xb5, 0xae, 0xd6, 0xd6, 0x5a, 0xa7, 0x62, 0x9f, 0x47, 0xbc, 0xc8, 0x4c, 0xf7, 0x8c, - 0x18, 0xfc, 0x3b, 0x70, 0xce, 0x67, 0x94, 0x71, 0x32, 0x1b, 0x7f, 0x0f, 0xa6, 0xbd, 0x96, 0x18, - 0x2b, 0x2b, 0xfe, 0x28, 0x0e, 0x73, 0x01, 0x36, 0x40, 0x3b, 0x90, 0x31, 0x54, 0xb9, 0x6b, 0x3c, - 0xd3, 0x4c, 0xea, 0xbf, 0x37, 0x23, 0x4c, 0x96, 0xaf, 0x51, 0x5e, 0xf2, 0x73, 0x27, 0x26, 0xba, - 0xb3, 0xd1, 0x26, 0xa4, 0x89, 0x3d, 0xfd, 0xb9, 0x29, 0x48, 0x0e, 0xa1, 0xb9, 0x52, 0xe8, 0x4c, - 0xfe, 0x75, 0x98, 0x65, 0x57, 0x40, 0x97, 0x61, 0xca, 0x59, 0x41, 0x52, 0x9a, 0x74, 0xaf, 0xe0, - 0x90, 0xca, 0x4d, 0xfe, 0x35, 0x98, 0xf6, 0x0a, 0x43, 0x4b, 0x30, 0x49, 0x1d, 0xc2, 0x65, 0xcf, - 0x10, 0x42, 0xb9, 0xe9, 0xc6, 0xf4, 0x37, 0x60, 0x9e, 0xf5, 0x33, 0x1a, 0xca, 0xd7, 0xdd, 0x3d, - 0x10, 0x5b, 0xcc, 0xb2, 0x7b, 0x70, 0xf4, 0x14, 0x7e, 0x99, 0x84, 0xac, 0x3f, 0x68, 0xd0, 0x06, - 0xa4, 0x0e, 0xdb, 0x5a, 0xe3, 0x63, 0x3a, 0xf7, 0x95, 0xb0, 0xe8, 0xca, 0x6f, 0x5a, 0x5c, 0x84, - 0xba, 0x13, 0x13, 0xc9, 0x24, 0x6b, 0x76, 0x47, 0xeb, 0xa9, 0x26, 0xb5, 0x5e, 0xf8, 0xec, 0x47, - 0x16, 0x57, 0x7f, 0xb6, 0x3d, 0x09, 0x6d, 0xc1, 0x14, 0x71, 0x3b, 0xa9, 0xa3, 0x35, 0x71, 0x2e, - 0x61, 0xcb, 0xb8, 0x1a, 0x2a, 0xa3, 0x60, 0xf3, 0x3e, 0xd2, 0x9a, 0x58, 0x04, 0xd9, 0xfd, 0x9f, - 0x9f, 0x81, 0x29, 0x8f, 0x6e, 0xfc, 0x36, 0x4c, 0x79, 0x16, 0x43, 0x17, 0x60, 0xe2, 0xc8, 0x90, - 0xdc, 0x24, 0x3c, 0x29, 0xa6, 0x8f, 0x0c, 0x3b, 0x9f, 0x5e, 0x86, 0x29, 0x5b, 0x0b, 0xe9, 0xa8, - 0x2d, 0xb7, 0x8c, 0x5c, 0x7c, 0x35, 0x61, 0x9d, 0x91, 0x4d, 0x7a, 0x60, 0x51, 0xf8, 0x7f, 0x70, - 0x00, 0xfd, 0x25, 0xd1, 0x06, 0x24, 0x6d, 0x2d, 0x49, 0x2a, 0x5f, 0x1b, 0x41, 0xcb, 0xbc, 0xad, - 0xaa, 0x3d, 0x4b, 0xf8, 0x39, 0x07, 0x49, 0x5b, 0x8c, 0xff, 0xc2, 0xa9, 0x95, 0xab, 0xdb, 0x95, - 0x92, 0x54, 0xdd, 0xdd, 0x2a, 0x49, 0x8f, 0xc5, 0x72, 0xbd, 0x24, 0x66, 0x39, 0xb4, 0x04, 0x17, - 0xbc, 0x74, 0xb1, 0x54, 0xd8, 0x2a, 0x89, 0xd2, 0x6e, 0xb5, 0xf2, 0x24, 0x1b, 0x47, 0x3c, 0x2c, - 0x3e, 0xda, 0xaf, 0xd4, 0xcb, 0x83, 0x63, 0x09, 0xb4, 0x0c, 0x39, 0xcf, 0x18, 0x95, 0x41, 0xc5, - 0x26, 0x2d, 0xb1, 0x9e, 0x51, 0xf2, 0x2f, 0x1d, 0x4c, 0x6d, 0xce, 0xb8, 0x87, 0x61, 0x3b, 0xdb, - 0x63, 0x98, 0x61, 0x72, 0xb4, 0x55, 0x4e, 0xd1, 0xa4, 0xd2, 0x94, 0x0e, 0x4f, 0x4d, 0xbb, 0xc4, - 0xe0, 0xd6, 0x12, 0xe2, 0x8c, 0x43, 0xdd, 0xb4, 0x88, 0x96, 0x59, 0xdb, 0x4a, 0x47, 0x31, 0x29, - 0x4f, 0xdc, 0xe6, 0x01, 0x9b, 0x64, 0x33, 0x08, 0x5f, 0xc4, 0x21, 0x4d, 0xcf, 0xe6, 0x9a, 0xe7, - 0x96, 0x60, 0x44, 0x3a, 0x54, 0x22, 0x92, 0x09, 0x8e, 0x38, 0x1b, 0x1c, 0x68, 0x07, 0x66, 0xbd, - 0xa9, 0xf4, 0xc4, 0x29, 0xe2, 0xae, 0xb0, 0x07, 0xe4, 0x8d, 0xe7, 0x13, 0x5a, 0xba, 0xcd, 0x1c, - 0x7b, 0x69, 0x68, 0x13, 0x66, 0x7d, 0xd9, 0x38, 0x39, 0x3c, 0x1b, 0xcf, 0x34, 0x98, 0xc4, 0x54, - 0x80, 0x39, 0x27, 0x91, 0xb6, 0xb1, 0x64, 0xd2, 0x44, 0x4b, 0x6f, 0x8b, 0xec, 0x40, 0x02, 0x46, - 0x7d, 0x66, 0x87, 0xc6, 0xbf, 0x0b, 0x68, 0x50, 0xd7, 0xb1, 0xb2, 0x66, 0x0f, 0xe6, 0x02, 0x52, - 0x3c, 0xca, 0xc3, 0xa4, 0x7d, 0x54, 0x86, 0x62, 0x62, 0x5a, 0x1e, 0x0e, 0x6a, 0xd4, 0x67, 0xb1, - 0xf8, 0xbb, 0x3a, 0x3e, 0xc2, 0xba, 0x8e, 0x9b, 0x76, 0x78, 0x04, 0xf2, 0xbb, 0x2c, 0xc2, 0x0f, - 0x38, 0xc8, 0x38, 0x74, 0x74, 0x0f, 0x32, 0x06, 0x6e, 0x91, 0xeb, 0x87, 0xac, 0x75, 0xc9, 0x3f, - 0x37, 0x5f, 0xa3, 0x0c, 0xb4, 0x90, 0x76, 0xf8, 0xad, 0x42, 0x9a, 0x19, 0x1a, 0x6b, 0xf3, 0xbf, - 0xe5, 0x60, 0x6e, 0x0b, 0xb7, 0xb1, 0xbf, 0x4a, 0x89, 0xca, 0xb0, 0xde, 0x8b, 0x3d, 0xce, 0x5e, - 0xec, 0x01, 0xa2, 0x22, 0x2e, 0xf6, 0x33, 0x5d, 0x76, 0x8b, 0x30, 0xcf, 0xae, 0x46, 0xd2, 0xbb, - 0xf0, 0xcf, 0x04, 0x5c, 0xb2, 0x7c, 0x41, 0xd7, 0xda, 0x6d, 0xac, 0xef, 0xf5, 0x0e, 0xdb, 0x8a, - 0xf1, 0x6c, 0x8c, 0xcd, 0x5d, 0x80, 0x09, 0x55, 0x6b, 0x7a, 0x82, 0x27, 0x6d, 0xfd, 0x2c, 0x37, - 0x51, 0x09, 0xce, 0xfb, 0xcb, 0xac, 0x53, 0x9a, 0x84, 0xc3, 0x8b, 0xac, 0xec, 0xb1, 0xff, 0x06, - 0xe1, 0x21, 0x63, 0x15, 0x88, 0x9a, 0xda, 0x3e, 0xb5, 0x23, 0x26, 0x23, 0xba, 0xbf, 0x91, 0xe8, - 0xaf, 0x98, 0xde, 0x70, 0x2b, 0xa6, 0xc8, 0x1d, 0x45, 0x15, 0x4f, 0x1f, 0x0d, 0x44, 0x7c, 0xda, - 0x16, 0xfd, 0xf6, 0x88, 0xa2, 0x87, 0x66, 0x82, 0xb3, 0x9c, 0xe2, 0x0b, 0x08, 0xdf, 0x3f, 0x72, - 0x70, 0x39, 0x74, 0x0b, 0xf4, 0xca, 0x6f, 0xc2, 0xb9, 0x2e, 0x19, 0x70, 0x8d, 0x40, 0xa2, 0xec, - 0xfe, 0x50, 0x23, 0xd0, 0x2e, 0x96, 0x52, 0x19, 0x33, 0xcc, 0x76, 0x19, 0x22, 0x5f, 0x80, 0xb9, - 0x00, 0xb6, 0xb1, 0x36, 0xf3, 0x25, 0x07, 0xab, 0x7d, 0x55, 0xf6, 0xd5, 0xee, 0x8b, 0x73, 0xdf, - 0x7a, 0xdf, 0xb7, 0x48, 0xca, 0xbf, 0x3b, 0xb8, 0xf7, 0xe0, 0x05, 0x5f, 0x56, 0x04, 0x5f, 0x85, - 0x2b, 0x11, 0x4b, 0xd3, 0x70, 0xfe, 0x22, 0x09, 0x57, 0x0e, 0xe4, 0xb6, 0xd2, 0x74, 0x0b, 0xb9, - 0x80, 0x7e, 0x3f, 0xda, 0x24, 0x8d, 0x81, 0x08, 0x20, 0x59, 0x6b, 0xc3, 0x8d, 0xda, 0x61, 0xf2, - 0x47, 0xb8, 0x0e, 0x5f, 0x60, 0x13, 0xf6, 0x24, 0xa0, 0x09, 0x7b, 0x7b, 0x74, 0x5d, 0xa3, 0x5a, - 0xb2, 0x7d, 0x7f, 0x82, 0x79, 0x6b, 0x74, 0xb9, 0x11, 0x5e, 0x70, 0xe6, 0x28, 0xfe, 0x3a, 0xbb, - 0xa6, 0xdf, 0x27, 0x41, 0x88, 0xda, 0x3d, 0xcd, 0x21, 0x22, 0x4c, 0x36, 0x34, 0xf5, 0x48, 0xd1, - 0x3b, 0xb8, 0x49, 0xab, 0xff, 0x37, 0x47, 0x31, 0x1e, 0x4d, 0x20, 0x45, 0x67, 0xae, 0xd8, 0x17, - 0x83, 0x72, 0x30, 0xd1, 0xc1, 0x86, 0x21, 0xb7, 0x1c, 0xb5, 0x9c, 0x9f, 0xfc, 0x67, 0x09, 0x98, - 0x74, 0xa7, 0x20, 0x75, 0xc0, 0x83, 0x49, 0xfa, 0xda, 0x7e, 0x1e, 0x05, 0x9e, 0xdf, 0x99, 0xe3, - 0xcf, 0xe1, 0xcc, 0x4d, 0xc6, 0x99, 0x49, 0x38, 0x6c, 0x3d, 0x97, 0xda, 0x11, 0x7e, 0xfd, 0xb5, - 0x3b, 0xa0, 0xf0, 0x6d, 0x40, 0x15, 0xc5, 0xa0, 0x5d, 0x94, 0x9b, 0x96, 0xac, 0xa6, 0x49, 0x3e, - 0x91, 0xb0, 0x6a, 0xea, 0x0a, 0x2d, 0xd7, 0x53, 0x22, 0x74, 0xe4, 0x93, 0x12, 0xa1, 0x58, 0x25, - 0xbd, 0x61, 0xca, 0xba, 0xa9, 0xa8, 0x2d, 0xc9, 0xd4, 0x3e, 0xc6, 0x2e, 0xe8, 0xea, 0x50, 0xeb, - 0x16, 0x51, 0xf8, 0x34, 0x0e, 0x73, 0x8c, 0x78, 0xea, 0x93, 0xf7, 0x61, 0xa2, 0x2f, 0x9b, 0x29, - 0xe3, 0x03, 0xb8, 0xf3, 0xc4, 0x6c, 0xce, 0x0c, 0xb4, 0x02, 0xa0, 0xe2, 0x13, 0x93, 0x59, 0x77, - 0xd2, 0xa2, 0xd8, 0x6b, 0xf2, 0x1b, 0x6e, 0xcf, 0x6d, 0xca, 0x66, 0xcf, 0x40, 0xb7, 0x00, 0xd1, - 0x0c, 0x8d, 0x9b, 0x12, 0xbd, 0x62, 0xc8, 0xb2, 0x93, 0x62, 0xd6, 0x1d, 0xa9, 0xda, 0x97, 0x8d, - 0xc1, 0x7f, 0x02, 0x29, 0x62, 0xc4, 0x11, 0xbb, 0x6d, 0xf4, 0x2e, 0xa4, 0x0d, 0x7b, 0x21, 0x3f, - 0xb2, 0x10, 0xb4, 0x13, 0xaf, 0x62, 0x22, 0x9d, 0x27, 0x7c, 0x16, 0x07, 0xb4, 0x8d, 0x4d, 0xb7, - 0x0d, 0xa3, 0x67, 0x10, 0xe2, 0xcb, 0xdc, 0x73, 0xf8, 0xf2, 0x7b, 0x8c, 0x2f, 0x93, 0x68, 0xb8, - 0xe9, 0x41, 0xbf, 0x7d, 0x4b, 0x47, 0x66, 0xe2, 0x90, 0xd6, 0x87, 0xd4, 0x93, 0xa3, 0xb5, 0x3e, - 0x67, 0x74, 0xd9, 0x2d, 0x98, 0x63, 0x74, 0xa6, 0x3e, 0x75, 0x1b, 0x90, 0x7c, 0x2c, 0x2b, 0x6d, - 0xd9, 0xd2, 0xcb, 0xe9, 0x2c, 0x69, 0xa7, 0x79, 0xde, 0x1d, 0x71, 0xa6, 0x09, 0x82, 0xb7, 0x60, - 0xa1, 0xf2, 0xfc, 0x68, 0x7c, 0xdb, 0x7b, 0xd1, 0x0f, 0xf0, 0xd0, 0x75, 0xb7, 0x03, 0x11, 0xf9, - 0xab, 0x83, 0x45, 0x0a, 0x85, 0xa7, 0x43, 0xc1, 0xf9, 0x5f, 0x25, 0x60, 0x29, 0x82, 0x1b, 0xdd, - 0x87, 0x84, 0xde, 0x6d, 0x50, 0x77, 0x7c, 0x75, 0x04, 0xf9, 0x79, 0x71, 0xaf, 0xb8, 0x13, 0x13, - 0xad, 0x59, 0xfc, 0x1f, 0xe2, 0x90, 0x10, 0xf7, 0x8a, 0xe8, 0x5d, 0x06, 0xa9, 0xbe, 0x35, 0xa2, - 0x14, 0x2f, 0x50, 0xfd, 0x1f, 0x2e, 0x08, 0xa9, 0xce, 0xc1, 0x7c, 0x51, 0x2c, 0x15, 0xea, 0x25, - 0x69, 0xab, 0x54, 0x29, 0xd5, 0x4b, 0x12, 0x41, 0xd2, 0xb3, 0x1c, 0x5a, 0x86, 0xdc, 0xde, 0xfe, - 0x66, 0xa5, 0x5c, 0xdb, 0x91, 0xf6, 0xab, 0xce, 0x7f, 0x74, 0x34, 0x8e, 0xb2, 0x30, 0x5d, 0x29, - 0xd7, 0xea, 0x94, 0x50, 0xcb, 0x26, 0x2c, 0xca, 0x76, 0xa9, 0x2e, 0x15, 0x0b, 0x7b, 0x85, 0x62, - 0xb9, 0xfe, 0x24, 0x9b, 0x44, 0x3c, 0x2c, 0xb2, 0xb2, 0x6b, 0xd5, 0xc2, 0x5e, 0x6d, 0x67, 0xb7, - 0x9e, 0x4d, 0x21, 0x04, 0xb3, 0xf6, 0x7c, 0x87, 0x54, 0xcb, 0xa6, 0x2d, 0x09, 0xc5, 0xca, 0x6e, - 0xd5, 0xd5, 0x61, 0x02, 0xcd, 0x43, 0xd6, 0x59, 0x59, 0x2c, 0x15, 0xb6, 0x6c, 0x14, 0x25, 0x83, - 0xce, 0xc3, 0x4c, 0xe9, 0x83, 0xbd, 0x42, 0x75, 0xcb, 0x61, 0x9c, 0x44, 0xab, 0xb0, 0xec, 0x55, - 0x47, 0xa2, 0xb3, 0x4a, 0x5b, 0x36, 0x96, 0x52, 0xcb, 0x82, 0x8b, 0xd2, 0x7d, 0x19, 0x87, 0x05, - 0x02, 0xd3, 0x39, 0xa0, 0xa0, 0x13, 0xb8, 0x6b, 0x90, 0x25, 0xc0, 0x82, 0xe4, 0x2f, 0xed, 0x66, - 0x09, 0xfd, 0xc0, 0x29, 0xf0, 0x1c, 0x48, 0x3d, 0xee, 0x81, 0xd4, 0xcb, 0xfe, 0x72, 0xf7, 0x26, - 0x0b, 0x3e, 0xfb, 0x56, 0x8b, 0xea, 0xa0, 0x1e, 0x05, 0xd4, 0x63, 0xb7, 0xa3, 0xa5, 0x45, 0xdd, - 0x55, 0x67, 0x69, 0x97, 0xce, 0x18, 0xf2, 0x0f, 0x60, 0xd1, 0xaf, 0x2f, 0x8d, 0xbe, 0x5b, 0x03, - 0x10, 0xb1, 0x9b, 0x83, 0x5c, 0x5e, 0x97, 0x43, 0xf8, 0x0b, 0x07, 0x19, 0x87, 0x6c, 0xdd, 0x23, - 0x86, 0xf2, 0x5d, 0xcc, 0x40, 0x52, 0x93, 0x16, 0xc5, 0x45, 0xb8, 0xbc, 0xe0, 0x6e, 0xdc, 0x0f, - 0xee, 0x06, 0x9e, 0x73, 0x22, 0xf0, 0x9c, 0xbf, 0x09, 0x33, 0x0d, 0x4b, 0x7d, 0x45, 0x53, 0x25, - 0x53, 0xe9, 0x38, 0x88, 0xd3, 0xe0, 0x63, 0x4c, 0xdd, 0x79, 0x41, 0x15, 0xa7, 0x9d, 0x09, 0x16, - 0x09, 0xad, 0xc2, 0xb4, 0xfd, 0x38, 0x23, 0x99, 0x9a, 0xd4, 0x33, 0x70, 0x2e, 0x65, 0xf7, 0xdf, - 0x60, 0xd3, 0xea, 0xda, 0xbe, 0x81, 0x85, 0xdf, 0x71, 0xb0, 0x40, 0x60, 0x05, 0xbf, 0x3b, 0x0e, - 0x03, 0xa9, 0xbd, 0x1e, 0xe7, 0xbb, 0x1a, 0x02, 0x05, 0xbe, 0xac, 0xae, 0x2a, 0x07, 0x8b, 0xfe, - 0xf5, 0x68, 0x2b, 0xf5, 0x79, 0x1c, 0xe6, 0xad, 0xdb, 0xd4, 0x19, 0x78, 0xd1, 0x65, 0xca, 0x18, - 0x27, 0xe9, 0x33, 0x66, 0x72, 0xc0, 0x98, 0x3b, 0xfe, 0x46, 0xe5, 0x86, 0xb7, 0x1e, 0xf0, 0xef, - 0xe0, 0x65, 0xd9, 0xf2, 0xd7, 0x1c, 0x2c, 0xf8, 0xd6, 0xa3, 0xf1, 0xf2, 0x8e, 0xbf, 0xf2, 0xba, - 0x1a, 0xa2, 0xdf, 0x73, 0xd5, 0x5e, 0x77, 0x9d, 0xea, 0x69, 0xbc, 0xb0, 0xfc, 0x73, 0x1c, 0x56, - 0xfa, 0x37, 0x90, 0xfd, 0x3c, 0xda, 0x1c, 0x03, 0x3a, 0x38, 0xdb, 0x2b, 0xe4, 0xfb, 0xfe, 0x84, - 0xbb, 0x3e, 0x78, 0x29, 0x06, 0xa8, 0x14, 0x95, 0x78, 0x03, 0x11, 0xb7, 0xe4, 0xb8, 0x88, 0xdb, - 0x99, 0x3c, 0xe0, 0x7b, 0x5e, 0x30, 0x91, 0x55, 0x9f, 0x7a, 0xc2, 0x88, 0xa8, 0xfc, 0x5b, 0x70, - 0xc1, 0x2e, 0x9a, 0xdd, 0xd7, 0x7d, 0xe7, 0xcd, 0x91, 0xa4, 0xc4, 0x8c, 0xb8, 0x60, 0x0d, 0xbb, - 0x4f, 0xda, 0x14, 0x89, 0x6e, 0x0a, 0x5f, 0x25, 0x61, 0xd1, 0x2a, 0xaa, 0x6b, 0xa6, 0xdc, 0x1a, - 0x07, 0xa3, 0xfd, 0xd6, 0x20, 0xe4, 0x15, 0x67, 0x8f, 0x25, 0x58, 0xea, 0x28, 0x48, 0x17, 0xca, - 0xc3, 0x9c, 0x61, 0xca, 0x2d, 0x3b, 0x1d, 0xc8, 0x7a, 0x0b, 0x9b, 0x52, 0x57, 0x36, 0x9f, 0xd1, - 0x58, 0x3f, 0x4f, 0x87, 0xea, 0xf6, 0xc8, 0x9e, 0x6c, 0x3e, 0x7b, 0x41, 0x07, 0x89, 0xde, 0xf3, - 0x27, 0x85, 0xd7, 0x86, 0xec, 0x25, 0xc2, 0xb7, 0x3e, 0x08, 0x81, 0x45, 0x5f, 0x1f, 0x22, 0x72, - 0x38, 0x1c, 0x7a, 0x76, 0x18, 0xf0, 0x6b, 0x46, 0x54, 0x2f, 0xc2, 0x85, 0x81, 0xcd, 0xd3, 0x2b, - 0xa4, 0x05, 0x39, 0x6b, 0x68, 0x5f, 0x35, 0xc6, 0x74, 0xc7, 0x10, 0x8f, 0x89, 0x87, 0x78, 0x8c, - 0xb0, 0x04, 0x17, 0x03, 0x16, 0xa2, 0x5a, 0xfc, 0x26, 0x45, 0xd4, 0x18, 0x1f, 0xdc, 0xff, 0x30, - 0x2c, 0x2a, 0xde, 0xf4, 0x1e, 0x7b, 0x20, 0x0e, 0xfe, 0x32, 0xe2, 0xe2, 0x32, 0x4c, 0x79, 0xf9, - 0xe8, 0x35, 0x68, 0x0e, 0x09, 0x9c, 0xd4, 0x99, 0xde, 0x1c, 0xd2, 0xbe, 0x37, 0x87, 0x4a, 0x3f, - 0xa8, 0x26, 0xd8, 0xd2, 0x36, 0xd4, 0x14, 0x11, 0x61, 0xf5, 0x74, 0x20, 0xac, 0x32, 0xec, 0x43, - 0x46, 0xa8, 0xd0, 0xff, 0x81, 0xc0, 0xa2, 0x4e, 0x1d, 0xf8, 0xc2, 0x20, 0x3c, 0x05, 0x9e, 0x78, - 0xfc, 0xf8, 0x98, 0xbf, 0xcf, 0x8d, 0xe2, 0x7e, 0x37, 0x12, 0x56, 0x60, 0x29, 0x50, 0x36, 0x5d, - 0xfa, 0x87, 0x1c, 0x51, 0x6c, 0x1b, 0x9b, 0x7d, 0x64, 0xc5, 0x18, 0x75, 0x69, 0x3a, 0xe8, 0x5d, - 0x9a, 0x90, 0x6c, 0x0f, 0x1e, 0x33, 0x24, 0x84, 0x6d, 0x62, 0x06, 0xbf, 0x2a, 0xf4, 0xb2, 0xbd, - 0x01, 0xa9, 0x9e, 0x0d, 0x97, 0x92, 0xa2, 0x6b, 0x8e, 0x8d, 0x81, 0x7d, 0x6b, 0x48, 0x24, 0x1c, - 0xc2, 0xe7, 0x1c, 0x4c, 0x79, 0xc8, 0x68, 0x19, 0x26, 0x5d, 0xf4, 0xc2, 0xe9, 0x52, 0x5c, 0x82, - 0x75, 0x68, 0xa6, 0x66, 0xca, 0x6d, 0xfa, 0x02, 0x4f, 0x7e, 0x58, 0x8d, 0x65, 0xcf, 0xc0, 0xa4, - 0x88, 0x4d, 0x88, 0xf6, 0xff, 0xe8, 0x16, 0x24, 0x7b, 0xaa, 0x62, 0xda, 0xc1, 0x3a, 0xeb, 0x8f, - 0x42, 0x7b, 0xa9, 0xfc, 0xbe, 0xaa, 0x98, 0xa2, 0xcd, 0x25, 0xdc, 0x84, 0xa4, 0xf5, 0x8b, 0x6d, - 0xf2, 0x27, 0x21, 0xb5, 0xf9, 0xa4, 0x5e, 0xaa, 0x65, 0x39, 0x04, 0x90, 0x2e, 0x93, 0x96, 0x38, - 0x2e, 0x2c, 0xbb, 0x5b, 0x0f, 0x02, 0x51, 0x3e, 0x22, 0x67, 0x18, 0x06, 0x9f, 0x14, 0x02, 0xe1, - 0x93, 0x15, 0xe6, 0x36, 0x1b, 0x02, 0x9c, 0xfc, 0x8b, 0x83, 0x85, 0x40, 0x3e, 0x74, 0xd7, 0x0b, - 0x99, 0x5c, 0x89, 0x94, 0xe9, 0x05, 0x4b, 0x7e, 0xc6, 0x11, 0xb0, 0xe4, 0x1e, 0x03, 0x96, 0x5c, - 0x1f, 0x3a, 0xdf, 0x0b, 0x93, 0x1c, 0x84, 0xa0, 0x24, 0xb5, 0x7a, 0x61, 0xbb, 0x24, 0xed, 0x57, - 0xc9, 0x5f, 0x17, 0x25, 0x99, 0x87, 0xec, 0x76, 0xc9, 0xc1, 0x1d, 0xa4, 0x5a, 0xbd, 0x50, 0xaf, - 0x65, 0xe3, 0x83, 0x08, 0x45, 0xc2, 0xc5, 0x1f, 0xe6, 0x01, 0x51, 0xb3, 0x7a, 0x3f, 0x9d, 0xfd, - 0x94, 0x83, 0x39, 0x86, 0x4c, 0xad, 0xec, 0x79, 0x5d, 0xe3, 0x98, 0xd7, 0xb5, 0x3b, 0x30, 0x6f, - 0xb5, 0x50, 0xc4, 0xf1, 0x0d, 0xa9, 0x8b, 0x75, 0x1b, 0x23, 0xa5, 0xee, 0x74, 0xbe, 0x23, 0x9f, - 0x50, 0x0c, 0x73, 0x0f, 0xeb, 0x96, 0xe0, 0x17, 0x80, 0xff, 0x09, 0x3f, 0x8e, 0x93, 0x8b, 0x7a, - 0xec, 0x42, 0x7f, 0x68, 0xd0, 0x0e, 0x76, 0x02, 0x89, 0x31, 0x3a, 0x81, 0x90, 0x90, 0x4f, 0x8e, - 0x55, 0x1d, 0x8e, 0x7d, 0xc9, 0x09, 0x05, 0x52, 0x14, 0x9c, 0xa1, 0x48, 0x5f, 0xff, 0x37, 0x07, - 0x99, 0x72, 0x13, 0xab, 0xa6, 0xe5, 0xf4, 0x55, 0x98, 0x61, 0xbe, 0x68, 0x46, 0xcb, 0x21, 0x1f, - 0x3a, 0xdb, 0x16, 0xe7, 0x57, 0x22, 0x3f, 0x83, 0x16, 0x62, 0xe8, 0xc8, 0xf3, 0x35, 0x36, 0x03, - 0x2b, 0xbf, 0x32, 0x30, 0x33, 0x20, 0xfe, 0xf9, 0x6b, 0x43, 0xb8, 0xdc, 0x75, 0xde, 0x82, 0x94, - 0xfd, 0xed, 0x2a, 0x9a, 0x77, 0xbf, 0x9f, 0xf5, 0x7c, 0xda, 0xca, 0x2f, 0xf8, 0xa8, 0xce, 0xbc, - 0xf5, 0xbf, 0x67, 0x00, 0xfa, 0xbd, 0x0e, 0x7a, 0x08, 0xd3, 0xde, 0xcf, 0xe7, 0xd0, 0x52, 0xc4, - 0xc7, 0x9b, 0xfc, 0x72, 0xf0, 0xa0, 0xab, 0xd3, 0x43, 0x98, 0xf6, 0x7e, 0xac, 0xd1, 0x17, 0x16, - 0xf0, 0xc1, 0x48, 0x5f, 0x58, 0xe0, 0xf7, 0x1d, 0x31, 0xd4, 0x86, 0x0b, 0x21, 0xcf, 0xf5, 0xe8, - 0xfa, 0x68, 0x1f, 0x35, 0xf0, 0xaf, 0x8e, 0xf8, 0xee, 0x2f, 0xc4, 0x90, 0x0e, 0x17, 0x43, 0x5f, - 0xa9, 0xd1, 0xda, 0xa8, 0x6f, 0xe8, 0xfc, 0x8d, 0x11, 0x38, 0xdd, 0x35, 0x7b, 0xc0, 0x87, 0x3f, - 0x8d, 0xa1, 0x1b, 0x23, 0xbf, 0xd9, 0xf2, 0x37, 0x47, 0x7f, 0x69, 0x13, 0x62, 0x68, 0x07, 0xa6, - 0x3c, 0xaf, 0x2d, 0x88, 0x0f, 0x7c, 0x82, 0x21, 0x82, 0x97, 0x22, 0x9e, 0x67, 0x88, 0x24, 0xcf, - 0xdb, 0x42, 0x5f, 0xd2, 0xe0, 0x23, 0x49, 0x5f, 0x52, 0xc0, 0x63, 0x84, 0xdf, 0xfc, 0xbe, 0xcb, - 0x2f, 0xc8, 0xfc, 0xc1, 0xb7, 0x67, 0x90, 0xf9, 0x43, 0x6e, 0x52, 0x21, 0x86, 0xde, 0x87, 0x59, - 0x16, 0x26, 0x45, 0x2b, 0x91, 0x70, 0x2f, 0x7f, 0x29, 0x6c, 0xd8, 0x2b, 0x92, 0x45, 0xe5, 0xfa, - 0x22, 0x03, 0xd1, 0xc1, 0xbe, 0xc8, 0x10, 0x30, 0x2f, 0x66, 0xe5, 0x27, 0x06, 0x6b, 0xea, 0xe7, - 0xa7, 0x20, 0x88, 0xac, 0x9f, 0x9f, 0x02, 0x01, 0x2a, 0x21, 0x86, 0x14, 0x58, 0x0c, 0x86, 0x3a, - 0xd0, 0xb5, 0x91, 0x90, 0x1c, 0xfe, 0xfa, 0x30, 0x36, 0x37, 0xd5, 0xfc, 0x2d, 0x05, 0x49, 0xfb, - 0x16, 0xac, 0xc3, 0x39, 0x5f, 0xab, 0x89, 0x2e, 0x45, 0x37, 0xe0, 0xfc, 0xe5, 0xd0, 0x71, 0x77, - 0x27, 0x4f, 0xe1, 0xfc, 0x40, 0xf3, 0x88, 0x56, 0xbd, 0xf3, 0x82, 0x1a, 0x58, 0xfe, 0x4a, 0x04, - 0x87, 0x5f, 0x36, 0x9b, 0x76, 0x56, 0x87, 0x75, 0x37, 0xac, 0xec, 0xb0, 0x54, 0xf3, 0x11, 0x29, - 0x3a, 0xfc, 0x49, 0x46, 0x60, 0xf5, 0x0a, 0x4c, 0x2f, 0x57, 0x23, 0x79, 0xdc, 0x15, 0x3e, 0x74, - 0xab, 0x1d, 0x4f, 0x75, 0x8d, 0x18, 0xe5, 0x02, 0x9b, 0x00, 0x5e, 0x88, 0x62, 0x71, 0xc5, 0x3f, - 0x86, 0xac, 0xff, 0x0a, 0x46, 0xcc, 0x79, 0x05, 0xb9, 0xcd, 0x6a, 0x38, 0x83, 0xdf, 0x32, 0xfe, - 0xf8, 0xf7, 0x6b, 0x15, 0x14, 0xf9, 0x57, 0x23, 0x79, 0xbc, 0x19, 0xcb, 0x53, 0xf0, 0xf5, 0x33, - 0xd6, 0x60, 0x71, 0xd8, 0xcf, 0x58, 0x01, 0x15, 0xa2, 0x10, 0xbb, 0xf7, 0x0e, 0x40, 0xc3, 0x50, - 0x24, 0xd2, 0x11, 0xa3, 0x95, 0x81, 0xc7, 0x89, 0x07, 0x0a, 0x6e, 0x37, 0x77, 0xbb, 0xa6, 0xa2, - 0xa9, 0x46, 0xee, 0x17, 0x19, 0xbb, 0x1d, 0x9f, 0x6c, 0x18, 0x0a, 0x69, 0x4c, 0x37, 0x53, 0x4f, - 0x13, 0x0d, 0x43, 0x39, 0x4c, 0xdb, 0xfc, 0x6f, 0xfc, 0x37, 0x00, 0x00, 0xff, 0xff, 0x16, 0x7c, - 0xfe, 0x46, 0x7f, 0x36, 0x00, 0x00, + // 3585 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x5a, 0x4d, 0x70, 0xdb, 0x46, + 0x96, 0x26, 0x40, 0x52, 0x22, 0x1f, 0x25, 0x9a, 0x6a, 0xfd, 0xd1, 0x90, 0x64, 0xcb, 0x70, 0xec, + 0xc8, 0x8e, 0x4d, 0x6f, 0x94, 0x38, 0xb5, 0xfe, 0x49, 0x36, 0x14, 0x45, 0x4b, 0x8c, 0x29, 0x4a, + 0x01, 0x29, 0x3b, 0x76, 0x36, 0x85, 0x40, 0x64, 0x8b, 0x46, 0x85, 0x04, 0x18, 0x00, 0xd4, 0x5a, + 0x7b, 0xd9, 0xaa, 0xec, 0x69, 0x6b, 0xb7, 0x6a, 0x8f, 0xbb, 0xb7, 0xa9, 0x4a, 0x6e, 0x53, 0x49, + 0xe5, 0x34, 0x33, 0xc7, 0xa9, 0x9a, 0xc3, 0x1c, 0xe6, 0x30, 0x35, 0x35, 0x97, 0x99, 0x9a, 0x4b, + 0xee, 0xa9, 0x49, 0x55, 0xce, 0x73, 0x9a, 0x02, 0xba, 0x01, 0x02, 0x20, 0x00, 0x92, 0x96, 0x5d, + 0x39, 0xcc, 0x89, 0xc4, 0xeb, 0xd7, 0xaf, 0x5f, 0x77, 0xbf, 0xf7, 0xfa, 0xbd, 0xaf, 0x1b, 0x6e, + 0xb7, 0x65, 0xe3, 0x59, 0xff, 0xa8, 0xd0, 0x54, 0xbb, 0xb7, 0x9a, 0xaa, 0x62, 0x48, 0xb2, 0x82, + 0xb5, 0x9b, 0xba, 0xa1, 0x6a, 0x52, 0x1b, 0xdf, 0x94, 0x15, 0x03, 0x6b, 0xc7, 0x52, 0x13, 0xdf, + 0xd2, 0x7b, 0xb8, 0x79, 0xab, 0xa9, 0xcb, 0x85, 0x9e, 0xa6, 0x1a, 0x2a, 0x9a, 0x32, 0xff, 0x9e, + 0xbc, 0xc9, 0xad, 0xb7, 0x55, 0xb5, 0xdd, 0xc1, 0xb7, 0x2c, 0xea, 0x51, 0xff, 0xf8, 0x56, 0x0b, + 0xeb, 0x4d, 0x4d, 0xee, 0x19, 0xaa, 0x46, 0x38, 0xb9, 0x8b, 0x7e, 0x0e, 0x43, 0xee, 0x62, 0xdd, + 0x90, 0xba, 0x3d, 0xca, 0x70, 0xc1, 0xcf, 0xf0, 0x6f, 0x9a, 0xd4, 0xeb, 0x61, 0x4d, 0x27, 0xed, + 0xfc, 0x12, 0x2c, 0xec, 0x60, 0xe3, 0xa0, 0xd3, 0x6f, 0xcb, 0x4a, 0x45, 0x39, 0x56, 0x05, 0xfc, + 0x79, 0x1f, 0xeb, 0x06, 0xff, 0x67, 0x06, 0x16, 0x7d, 0x0d, 0x7a, 0x4f, 0x55, 0x74, 0x8c, 0x10, + 0x24, 0x14, 0xa9, 0x8b, 0xf3, 0xcc, 0x3a, 0xb3, 0x91, 0x16, 0xac, 0xff, 0xe8, 0x0a, 0x64, 0x4f, + 0xb0, 0xd2, 0x52, 0x35, 0xf1, 0x04, 0x6b, 0xba, 0xac, 0x2a, 0x79, 0xd6, 0x6a, 0x9d, 0x25, 0xd4, + 0x47, 0x84, 0x88, 0x76, 0x20, 0xd5, 0x95, 0x14, 0xf9, 0x18, 0xeb, 0x46, 0x3e, 0xbe, 0x1e, 0xdf, + 0xc8, 0x6c, 0xbe, 0x51, 0x20, 0x53, 0x2d, 0x04, 0x8e, 0x55, 0xd8, 0xa3, 0xdc, 0x65, 0xc5, 0xd0, + 0x4e, 0x05, 0xa7, 0x33, 0x77, 0x0f, 0x66, 0x3d, 0x4d, 0x28, 0x07, 0xf1, 0xcf, 0xf0, 0x29, 0xd5, + 0xc9, 0xfc, 0x8b, 0x16, 0x20, 0x79, 0x22, 0x75, 0xfa, 0x98, 0x6a, 0x42, 0x3e, 0xee, 0xb2, 0xff, + 0xcc, 0xf0, 0x17, 0x60, 0xd5, 0x19, 0xad, 0x24, 0xf5, 0xa4, 0x23, 0xb9, 0x23, 0x1b, 0x32, 0xd6, + 0xed, 0xa9, 0x7f, 0x02, 0x6b, 0x21, 0xed, 0x74, 0x05, 0xee, 0xc3, 0x4c, 0xd3, 0x45, 0xcf, 0x33, + 0xd6, 0x54, 0xf2, 0xf6, 0x54, 0x7c, 0x3d, 0x4f, 0x05, 0x0f, 0x37, 0xff, 0xfb, 0x38, 0xe4, 0xfc, + 0x2c, 0xe8, 0x3e, 0x4c, 0xeb, 0x58, 0x3b, 0x91, 0x9b, 0x64, 0x5d, 0x33, 0x9b, 0xeb, 0x61, 0xd2, + 0x0a, 0x75, 0xc2, 0xb7, 0x1b, 0x13, 0xec, 0x2e, 0xe8, 0x10, 0x72, 0x27, 0x6a, 0xa7, 0xdf, 0xc5, + 0x22, 0x7e, 0xde, 0x93, 0x14, 0x67, 0x03, 0x32, 0x9b, 0x1b, 0xa1, 0x62, 0x1e, 0x59, 0x1d, 0xca, + 0x36, 0xff, 0x6e, 0x4c, 0x38, 0x77, 0xe2, 0x25, 0x71, 0xff, 0xc7, 0xc0, 0x34, 0x1d, 0x0d, 0xdd, + 0x81, 0x84, 0x71, 0xda, 0x23, 0xda, 0x65, 0x37, 0xaf, 0x8c, 0xd2, 0xae, 0xd0, 0x38, 0xed, 0x61, + 0xc1, 0xea, 0xc2, 0x7f, 0x08, 0x09, 0xf3, 0x0b, 0x65, 0x60, 0xfa, 0xb0, 0xf6, 0xb0, 0xb6, 0xff, + 0xb8, 0x96, 0x8b, 0xa1, 0x25, 0x40, 0xa5, 0xfd, 0x5a, 0x43, 0xd8, 0xaf, 0x56, 0xcb, 0x82, 0x58, + 0x2f, 0x0b, 0x8f, 0x2a, 0xa5, 0x72, 0x8e, 0x41, 0xaf, 0xc1, 0xfa, 0xa3, 0xfd, 0xea, 0xe1, 0x5e, + 0x59, 0x2c, 0x96, 0x4a, 0xe5, 0x7a, 0xbd, 0xb2, 0x55, 0xa9, 0x56, 0x1a, 0x4f, 0xc4, 0xd2, 0x7e, + 0xad, 0xde, 0x10, 0x8a, 0x95, 0x5a, 0xa3, 0x9e, 0x63, 0xb9, 0x2f, 0x18, 0x38, 0xe7, 0x9b, 0x00, + 0x2a, 0x7a, 0x34, 0xbc, 0x39, 0xee, 0xc4, 0xdd, 0x9a, 0xde, 0x08, 0xd2, 0x14, 0x60, 0x6a, 0xbf, + 0x56, 0xad, 0xd4, 0x4c, 0xed, 0x32, 0x30, 0xbd, 0xff, 0xe0, 0x81, 0xf5, 0xc1, 0x6e, 0x4d, 0x91, + 0x01, 0xf9, 0x2c, 0xcc, 0x1c, 0x68, 0xea, 0x11, 0xb6, 0xed, 0xa7, 0x08, 0xb3, 0xf4, 0x9b, 0xda, + 0xcb, 0x3f, 0x41, 0x52, 0xc3, 0x52, 0xeb, 0x94, 0x6e, 0x2d, 0x57, 0x20, 0x3e, 0x59, 0xb0, 0x7d, + 0xb2, 0xb0, 0xa5, 0xaa, 0x9d, 0x47, 0xa6, 0x7d, 0x0a, 0x84, 0x91, 0xff, 0x31, 0x01, 0xf3, 0x25, + 0x0d, 0x4b, 0x06, 0x26, 0xda, 0x52, 0xd1, 0x81, 0xbe, 0x77, 0x1f, 0xb2, 0xa6, 0x7d, 0x35, 0x65, + 0xe3, 0x54, 0xd4, 0x24, 0xa5, 0x8d, 0xe9, 0xd6, 0x2f, 0xda, 0x2b, 0x50, 0xa2, 0xad, 0x82, 0xd9, + 0x28, 0xcc, 0x36, 0xdd, 0x9f, 0xa8, 0x02, 0xf3, 0xd4, 0x74, 0x3c, 0x26, 0x1d, 0xf7, 0x9a, 0x34, + 0xd1, 0xc2, 0x65, 0xd2, 0xe8, 0xc4, 0x4b, 0x91, 0xb1, 0x8e, 0x1e, 0x02, 0xf4, 0x24, 0x4d, 0xea, + 0x62, 0x03, 0x6b, 0x7a, 0x3e, 0xe1, 0xf5, 0xef, 0x80, 0xd9, 0x14, 0x0e, 0x1c, 0x6e, 0xe2, 0xdf, + 0xae, 0xee, 0x68, 0xc7, 0x74, 0x88, 0xa6, 0x86, 0x0d, 0x3d, 0x9f, 0xb4, 0x24, 0x6d, 0x44, 0x49, + 0xaa, 0x13, 0x56, 0x4b, 0xcc, 0x56, 0xfc, 0xff, 0xb7, 0x18, 0xc1, 0xee, 0x8d, 0xf6, 0x61, 0xd1, + 0x9e, 0xa0, 0xaa, 0x18, 0x58, 0x31, 0x44, 0x5d, 0xed, 0x6b, 0x4d, 0x9c, 0x9f, 0xb2, 0x56, 0x69, + 0xc5, 0x37, 0x45, 0xc2, 0x53, 0xb7, 0x58, 0x04, 0xba, 0x34, 0x1e, 0x22, 0x7a, 0x0a, 0x9c, 0xd4, + 0x6c, 0x62, 0x5d, 0x97, 0xc9, 0x5a, 0x88, 0x1a, 0xfe, 0xbc, 0x2f, 0x6b, 0xb8, 0x8b, 0x15, 0x43, + 0xcf, 0x4f, 0x7b, 0xa5, 0x36, 0xd4, 0x9e, 0xda, 0x51, 0xdb, 0xa7, 0xc2, 0x80, 0x47, 0x38, 0xef, + 0xe9, 0xee, 0x6a, 0xd1, 0xb9, 0x77, 0xe1, 0x9c, 0x6f, 0x51, 0x26, 0x89, 0x6c, 0xdc, 0x5d, 0x98, + 0x71, 0xaf, 0xc4, 0x44, 0x51, 0xf1, 0xbf, 0x59, 0x98, 0x0f, 0x58, 0x03, 0xb4, 0x0b, 0x29, 0x5d, + 0x91, 0x7a, 0xfa, 0x33, 0xd5, 0xa0, 0xf6, 0x7b, 0x3d, 0x62, 0xc9, 0x0a, 0x75, 0xca, 0x4b, 0x3e, + 0x77, 0x63, 0x82, 0xd3, 0x1b, 0x6d, 0xc1, 0x14, 0x59, 0x4f, 0x7f, 0x6c, 0x0a, 0x92, 0x43, 0x68, + 0x8e, 0x14, 0xda, 0x93, 0x7b, 0x13, 0xb2, 0xde, 0x11, 0xd0, 0x45, 0xc8, 0xd8, 0x23, 0x88, 0x72, + 0x8b, 0xce, 0x15, 0x6c, 0x52, 0xa5, 0xc5, 0xbd, 0x01, 0x33, 0x6e, 0x61, 0x68, 0x05, 0xd2, 0xd4, + 0x20, 0x1c, 0xf6, 0x14, 0x21, 0x54, 0x5a, 0x8e, 0x4f, 0xbf, 0x07, 0x0b, 0x5e, 0x3b, 0xa3, 0xae, + 0x7c, 0xd5, 0x99, 0x03, 0x59, 0x8b, 0xac, 0x77, 0x0e, 0xb6, 0x9e, 0xfc, 0xcf, 0x13, 0x90, 0xf3, + 0x3b, 0x0d, 0xba, 0x0f, 0xc9, 0xa3, 0x8e, 0xda, 0xfc, 0x8c, 0xf6, 0x7d, 0x2d, 0xcc, 0xbb, 0x0a, + 0x5b, 0x26, 0x17, 0xa1, 0xee, 0xc6, 0x04, 0xd2, 0xc9, 0xec, 0xdd, 0x55, 0xfb, 0x8a, 0x41, 0x57, + 0x2f, 0xbc, 0xf7, 0x9e, 0xc9, 0x35, 0xe8, 0x6d, 0x75, 0x42, 0xdb, 0x90, 0x21, 0x66, 0x27, 0x76, + 0xd5, 0x16, 0xce, 0xc7, 0x2d, 0x19, 0x97, 0x43, 0x65, 0x14, 0x2d, 0xde, 0x3d, 0xb5, 0x85, 0x05, + 0x90, 0x9c, 0xff, 0xdc, 0x2c, 0x64, 0x5c, 0xba, 0x71, 0x3b, 0x90, 0x71, 0x0d, 0x86, 0x96, 0x61, + 0xfa, 0x58, 0x17, 0x9d, 0x20, 0x9c, 0x16, 0xa6, 0x8e, 0x75, 0x2b, 0x9e, 0x5e, 0x84, 0x8c, 0xa5, + 0x85, 0x78, 0xdc, 0x91, 0xda, 0x7a, 0x9e, 0x5d, 0x8f, 0x9b, 0x7b, 0x64, 0x91, 0x1e, 0x98, 0x14, + 0xee, 0xaf, 0x0c, 0xc0, 0x60, 0x48, 0x74, 0x1f, 0x12, 0x96, 0x96, 0x24, 0x94, 0x6f, 0x8c, 0xa1, + 0x65, 0xc1, 0x52, 0xd5, 0xea, 0xc5, 0xff, 0x8c, 0x81, 0x84, 0x25, 0xc6, 0x7f, 0xe0, 0xd4, 0x2b, + 0xb5, 0x9d, 0x6a, 0x59, 0xac, 0xed, 0x6f, 0x97, 0xc5, 0xc7, 0x42, 0xa5, 0x51, 0x16, 0x72, 0x0c, + 0x5a, 0x81, 0x65, 0x37, 0x5d, 0x28, 0x17, 0xb7, 0xcb, 0x82, 0xb8, 0x5f, 0xab, 0x3e, 0xc9, 0xb1, + 0x88, 0x83, 0xa5, 0xbd, 0xc3, 0x6a, 0xa3, 0x32, 0xdc, 0x16, 0x47, 0xab, 0x90, 0x77, 0xb5, 0x51, + 0x19, 0x54, 0x6c, 0xc2, 0x14, 0xeb, 0x6a, 0x25, 0x7f, 0x69, 0x63, 0x72, 0x6b, 0xd6, 0xd9, 0x0c, + 0xcb, 0xd8, 0x1e, 0xc3, 0xac, 0x27, 0x46, 0x9b, 0xe9, 0x14, 0x0d, 0x2a, 0x2d, 0xf1, 0xe8, 0xd4, + 0xb0, 0x52, 0x0c, 0x66, 0x23, 0x2e, 0xcc, 0xda, 0xd4, 0x2d, 0x93, 0x68, 0x2e, 0x6b, 0x47, 0xee, + 0xca, 0x06, 0xe5, 0x61, 0x2d, 0x1e, 0xb0, 0x48, 0x16, 0x03, 0xff, 0x1d, 0x0b, 0x53, 0x74, 0x6f, + 0xae, 0xb8, 0x4e, 0x09, 0x8f, 0x48, 0x9b, 0x4a, 0x44, 0x7a, 0x9c, 0x83, 0xf5, 0x3a, 0x07, 0xda, + 0x85, 0xac, 0x3b, 0x94, 0x3e, 0xb7, 0x93, 0xb8, 0x4b, 0xde, 0x0d, 0x72, 0xfb, 0xf3, 0x73, 0x9a, + 0xba, 0xcd, 0x9e, 0xb8, 0x69, 0x68, 0x0b, 0xb2, 0xbe, 0x68, 0x9c, 0x18, 0x1d, 0x8d, 0x67, 0x9b, + 0x9e, 0xc0, 0x54, 0x84, 0x79, 0x3b, 0x90, 0x76, 0xb0, 0x68, 0xd0, 0x40, 0x4b, 0x4f, 0x8b, 0xdc, + 0x50, 0x00, 0x46, 0x03, 0x66, 0x9b, 0xc6, 0xbd, 0x0f, 0x68, 0x58, 0xd7, 0x89, 0xa2, 0x66, 0x1f, + 0xe6, 0x03, 0x42, 0x3c, 0x2a, 0x40, 0xda, 0xda, 0x2a, 0x5d, 0x36, 0x30, 0x4d, 0x0f, 0x87, 0x35, + 0x1a, 0xb0, 0x98, 0xfc, 0x3d, 0x0d, 0x1f, 0x63, 0x4d, 0xc3, 0x2d, 0xcb, 0x3d, 0x02, 0xf9, 0x1d, + 0x16, 0xfe, 0x3f, 0x19, 0x48, 0xd9, 0x74, 0x74, 0x17, 0x52, 0x3a, 0x6e, 0x93, 0xe3, 0x87, 0x8c, + 0x75, 0xc1, 0xdf, 0xb7, 0x50, 0xa7, 0x0c, 0x34, 0x91, 0xb6, 0xf9, 0xcd, 0x44, 0xda, 0xd3, 0x34, + 0xd1, 0xe4, 0x7f, 0xc5, 0xc0, 0xfc, 0x36, 0xee, 0x60, 0x7f, 0x96, 0x12, 0x15, 0x61, 0xdd, 0x07, + 0x3b, 0xeb, 0x3d, 0xd8, 0x03, 0x44, 0x45, 0x1c, 0xec, 0x67, 0x3a, 0xec, 0x96, 0x60, 0xc1, 0x3b, + 0x1a, 0x09, 0xef, 0xfc, 0x0f, 0x71, 0xb8, 0x60, 0xda, 0x82, 0xa6, 0x76, 0x3a, 0x58, 0x3b, 0xe8, + 0x1f, 0x75, 0x64, 0xfd, 0xd9, 0x04, 0x93, 0x5b, 0x86, 0x69, 0x45, 0x6d, 0xb9, 0x9c, 0x67, 0xca, + 0xfc, 0xac, 0xb4, 0x50, 0x19, 0xe6, 0xfc, 0x69, 0xd6, 0x29, 0x0d, 0xc2, 0xe1, 0x49, 0x56, 0xee, + 0xc4, 0x7f, 0x82, 0x70, 0x90, 0x32, 0x13, 0x44, 0x55, 0xe9, 0x9c, 0x5a, 0x1e, 0x93, 0x12, 0x9c, + 0x6f, 0x24, 0xf8, 0x33, 0xa6, 0xb7, 0x9c, 0x8c, 0x29, 0x72, 0x46, 0x51, 0xc9, 0xd3, 0xa7, 0x43, + 0x1e, 0x3f, 0x65, 0x89, 0xbe, 0x33, 0xa6, 0xe8, 0x91, 0x91, 0xe0, 0x2c, 0xbb, 0xf8, 0x12, 0xdc, + 0xf7, 0x77, 0x0c, 0x5c, 0x0c, 0x9d, 0x02, 0x3d, 0xf2, 0x5b, 0x70, 0xae, 0x47, 0x1a, 0x9c, 0x45, + 0x20, 0x5e, 0x76, 0x6f, 0xe4, 0x22, 0xd0, 0x2a, 0x96, 0x52, 0x3d, 0xcb, 0x90, 0xed, 0x79, 0x88, + 0x5c, 0x11, 0xe6, 0x03, 0xd8, 0x26, 0x9a, 0xcc, 0xf7, 0x0c, 0xac, 0x0f, 0x54, 0x39, 0x54, 0x7a, + 0x2f, 0xcf, 0x7c, 0x1b, 0x03, 0xdb, 0x22, 0x21, 0xff, 0xf6, 0xf0, 0xdc, 0x83, 0x07, 0x7c, 0x55, + 0x1e, 0x7c, 0x19, 0x2e, 0x45, 0x0c, 0x4d, 0xdd, 0xf9, 0xbb, 0x04, 0x5c, 0x7a, 0x24, 0x75, 0xe4, + 0x96, 0x93, 0xc8, 0x05, 0xd4, 0xfb, 0xd1, 0x4b, 0xd2, 0x1c, 0xf2, 0x00, 0x12, 0xb5, 0xee, 0x3b, + 0x5e, 0x3b, 0x4a, 0xfe, 0x18, 0xc7, 0xe1, 0x4b, 0x2c, 0xc2, 0x9e, 0x04, 0x14, 0x61, 0x77, 0xc6, + 0xd7, 0x35, 0xaa, 0x24, 0x3b, 0xf4, 0x07, 0x98, 0x77, 0xc6, 0x97, 0x1b, 0x61, 0x05, 0x67, 0xf6, + 0xe2, 0x9f, 0xb2, 0x6a, 0xfa, 0x4d, 0x02, 0xf8, 0xa8, 0xd9, 0xd3, 0x18, 0x22, 0x40, 0xba, 0xa9, + 0x2a, 0xc7, 0xb2, 0xd6, 0xc5, 0x2d, 0x9a, 0xfd, 0xbf, 0x3d, 0xce, 0xe2, 0xd1, 0x00, 0x52, 0xb2, + 0xfb, 0x0a, 0x03, 0x31, 0x28, 0x0f, 0xd3, 0x5d, 0xac, 0xeb, 0x52, 0xdb, 0x56, 0xcb, 0xfe, 0xe4, + 0xbe, 0x89, 0x43, 0xda, 0xe9, 0x82, 0x94, 0x21, 0x0b, 0x26, 0xe1, 0x6b, 0xe7, 0x45, 0x14, 0x78, + 0x71, 0x63, 0x66, 0x5f, 0xc0, 0x98, 0x5b, 0x1e, 0x63, 0x26, 0xee, 0xb0, 0xfd, 0x42, 0x6a, 0x47, + 0xd8, 0xf5, 0x4f, 0x6e, 0x80, 0xfc, 0xbf, 0x02, 0xaa, 0xca, 0x3a, 0xad, 0xa2, 0x9c, 0xb0, 0x64, + 0x16, 0x4d, 0xd2, 0x73, 0x11, 0x2b, 0x86, 0x26, 0xd3, 0x74, 0x3d, 0x29, 0x40, 0x57, 0x7a, 0x5e, + 0x26, 0x14, 0x33, 0xa5, 0xd7, 0x0d, 0x49, 0x33, 0x64, 0xa5, 0x2d, 0x1a, 0xea, 0x67, 0xd8, 0x01, + 0x5d, 0x6d, 0x6a, 0xc3, 0x24, 0xf2, 0x5f, 0xb2, 0x30, 0xef, 0x11, 0x4f, 0x6d, 0xf2, 0x1e, 0x4c, + 0x0f, 0x64, 0x7b, 0xd2, 0xf8, 0x00, 0xee, 0x02, 0x59, 0x36, 0xbb, 0x07, 0x5a, 0x03, 0x50, 0xf0, + 0x73, 0xc3, 0x33, 0x6e, 0xda, 0xa4, 0x58, 0x63, 0x72, 0xf7, 0x9d, 0x9a, 0xdb, 0x90, 0x8c, 0xbe, + 0x8e, 0x6e, 0x00, 0xa2, 0x11, 0x1a, 0xb7, 0x44, 0x7a, 0xc4, 0x90, 0x61, 0xd3, 0x42, 0xce, 0x69, + 0xa9, 0x59, 0x87, 0x8d, 0xce, 0x7d, 0x0e, 0x49, 0xb2, 0x88, 0x63, 0x56, 0xdb, 0xe8, 0x7d, 0x98, + 0xd2, 0xad, 0x81, 0xfc, 0xc8, 0x42, 0xd0, 0x4c, 0xdc, 0x8a, 0x09, 0xb4, 0x1f, 0x7f, 0x0b, 0x72, + 0x3b, 0xd8, 0x18, 0xff, 0xa8, 0xe4, 0x7f, 0xcb, 0xc0, 0x9c, 0xab, 0xc7, 0x64, 0xf0, 0x00, 0x7a, + 0xcf, 0xa7, 0xf0, 0x55, 0x17, 0x0c, 0xee, 0x4b, 0x1e, 0x82, 0xd4, 0xe5, 0x2a, 0xbe, 0xf5, 0xbd, + 0x03, 0xd4, 0x09, 0xc5, 0x67, 0x58, 0xea, 0x18, 0xcf, 0xe8, 0x8e, 0x2e, 0x78, 0x87, 0xdf, 0xb5, + 0xda, 0x84, 0x99, 0x13, 0xd7, 0x17, 0xff, 0x0d, 0x0b, 0x68, 0x07, 0x1b, 0x4e, 0x01, 0x4a, 0x27, + 0x1f, 0xe2, 0xc5, 0xcc, 0x0b, 0x78, 0xf1, 0x07, 0x1e, 0x2f, 0x26, 0x71, 0xe0, 0xba, 0x6b, 0xc2, + 0xbe, 0xa1, 0x23, 0xcf, 0xa0, 0x90, 0xa2, 0x8f, 0x64, 0xd2, 0xe3, 0x15, 0x7d, 0x67, 0x74, 0xd6, + 0x6d, 0x98, 0xf7, 0xe8, 0x4c, 0x77, 0xfe, 0x26, 0x20, 0xe9, 0x44, 0x92, 0x3b, 0x92, 0xa9, 0x97, + 0x5d, 0x53, 0xd3, 0x1a, 0x7b, 0xce, 0x69, 0xb1, 0xbb, 0xf1, 0xbc, 0x3b, 0x55, 0xa3, 0xf2, 0xfc, + 0xf7, 0x10, 0x1d, 0x77, 0x8a, 0x33, 0xc4, 0x43, 0xc7, 0xdd, 0x09, 0xbc, 0x8b, 0xb8, 0x3c, 0x9c, + 0x9e, 0x51, 0x60, 0x3e, 0xf4, 0x5a, 0xe2, 0x8f, 0x71, 0x58, 0x89, 0xe0, 0x46, 0xf7, 0x20, 0xae, + 0xf5, 0x9a, 0xd4, 0xae, 0x5f, 0x1f, 0x43, 0x7e, 0x41, 0x38, 0x28, 0xed, 0xc6, 0x04, 0xb3, 0x17, + 0xf7, 0x03, 0x0b, 0x71, 0xe1, 0xa0, 0x84, 0xde, 0xf7, 0x60, 0xf4, 0x37, 0xc6, 0x94, 0xe2, 0x86, + 0xe8, 0xbf, 0x62, 0x83, 0x30, 0xfa, 0x3c, 0x2c, 0x94, 0x84, 0x72, 0xb1, 0x51, 0x16, 0xb7, 0xcb, + 0xd5, 0x72, 0xa3, 0x2c, 0x92, 0x3b, 0x84, 0x1c, 0x83, 0x56, 0x21, 0x7f, 0x70, 0xb8, 0x55, 0xad, + 0xd4, 0x77, 0xc5, 0xc3, 0x9a, 0xfd, 0x8f, 0xb6, 0xb2, 0x28, 0x07, 0x33, 0xd5, 0x4a, 0xbd, 0x41, + 0x09, 0xf5, 0x5c, 0xdc, 0xa4, 0xec, 0x94, 0x1b, 0x62, 0xa9, 0x78, 0x50, 0x2c, 0x55, 0x1a, 0x4f, + 0x72, 0x09, 0xc4, 0xc1, 0x92, 0x57, 0x76, 0xbd, 0x56, 0x3c, 0xa8, 0xef, 0xee, 0x37, 0x72, 0x49, + 0x84, 0x20, 0x6b, 0xf5, 0xb7, 0x49, 0xf5, 0xdc, 0x94, 0x29, 0xa1, 0x54, 0xdd, 0xaf, 0x39, 0x3a, + 0x4c, 0xa3, 0x05, 0xc8, 0xd9, 0x23, 0x0b, 0xe5, 0xe2, 0xb6, 0x85, 0x1f, 0xa5, 0xd0, 0x1c, 0xcc, + 0x96, 0x3f, 0x3a, 0x28, 0xd6, 0xb6, 0x6d, 0xc6, 0x34, 0x5a, 0x87, 0x55, 0xb7, 0x3a, 0x22, 0xed, + 0x55, 0xde, 0xb6, 0x50, 0xa4, 0x7a, 0x0e, 0x50, 0x16, 0xc0, 0x54, 0x8f, 0xf6, 0xc8, 0xa0, 0x45, + 0x98, 0x1b, 0x7c, 0x8b, 0xbb, 0xe5, 0x62, 0xb5, 0xb1, 0x9b, 0x9b, 0x71, 0x60, 0xcc, 0xef, 0x59, + 0x58, 0x24, 0x38, 0xa6, 0x8d, 0x9a, 0xda, 0xfe, 0xbd, 0x01, 0x39, 0x82, 0xbc, 0x88, 0xfe, 0x18, + 0x97, 0x25, 0xf4, 0x47, 0x76, 0x06, 0x6c, 0xdf, 0x39, 0xb0, 0xae, 0x3b, 0x87, 0x8a, 0xbf, 0x1e, + 0xb8, 0xee, 0x45, 0xe7, 0x7d, 0xa3, 0x45, 0x95, 0x98, 0x7b, 0x01, 0x09, 0xeb, 0xcd, 0x68, 0x69, + 0x51, 0x87, 0xf9, 0x59, 0xea, 0xc9, 0x33, 0x46, 0x86, 0x07, 0xb0, 0xe4, 0xd7, 0x97, 0x3a, 0xe9, + 0x8d, 0x21, 0x0c, 0xdd, 0x09, 0x55, 0x0e, 0xaf, 0xc3, 0xc1, 0xff, 0x89, 0x81, 0x94, 0x4d, 0x36, + 0x0f, 0x5a, 0x5d, 0xfe, 0x77, 0xec, 0xc1, 0xec, 0xd2, 0x26, 0xc5, 0x81, 0x00, 0xdd, 0xe8, 0x37, + 0xeb, 0x47, 0xbf, 0x03, 0xf7, 0x39, 0x1e, 0xb8, 0xcf, 0xff, 0x02, 0xb3, 0x4d, 0x53, 0x7d, 0x59, + 0x55, 0x44, 0x43, 0xee, 0xda, 0x90, 0xdc, 0xf0, 0x6d, 0x55, 0xc3, 0xbe, 0x62, 0x16, 0x66, 0xec, + 0x0e, 0x26, 0x09, 0xad, 0xc3, 0x8c, 0x75, 0x7b, 0x25, 0x1a, 0xaa, 0xd8, 0xd7, 0x71, 0x3e, 0x69, + 0x01, 0x14, 0x60, 0xd1, 0x1a, 0xea, 0xa1, 0x8e, 0xf9, 0x5f, 0x33, 0xb0, 0x48, 0x70, 0x17, 0xbf, + 0x39, 0x8e, 0x42, 0xf1, 0xdd, 0x16, 0xe7, 0x3b, 0x41, 0x02, 0x05, 0xbe, 0xaa, 0xb2, 0x33, 0x0f, + 0x4b, 0xfe, 0xf1, 0x68, 0xad, 0xf9, 0x2d, 0x0b, 0x0b, 0x66, 0xba, 0x61, 0x37, 0xbc, 0xec, 0x3c, + 0x6e, 0x82, 0x9d, 0xf4, 0x2d, 0x66, 0x62, 0x68, 0x31, 0x77, 0xfd, 0x95, 0xdc, 0x35, 0x77, 0xc2, + 0xe4, 0x9f, 0xc1, 0xab, 0x5a, 0xcb, 0xaf, 0x19, 0x58, 0xf4, 0x8d, 0x47, 0xfd, 0xe5, 0x5d, 0x7f, + 0x6a, 0x7a, 0x39, 0x44, 0xbf, 0x17, 0x4a, 0x4e, 0x6f, 0xdb, 0xe9, 0xe5, 0x64, 0x6e, 0xf9, 0x07, + 0x16, 0xd6, 0x06, 0x07, 0x95, 0x75, 0x7f, 0xdc, 0x9a, 0x00, 0x5b, 0x39, 0xdb, 0x35, 0xed, 0x87, + 0xfe, 0x80, 0xbb, 0x39, 0x7c, 0x76, 0x06, 0xa8, 0x14, 0x15, 0x78, 0x03, 0x21, 0xc9, 0xc4, 0xa4, + 0x90, 0xe4, 0x99, 0x2c, 0xe0, 0x3f, 0xdc, 0x68, 0xab, 0x57, 0x7d, 0x6a, 0x09, 0x63, 0x5e, 0x5b, + 0xbc, 0x03, 0xcb, 0x56, 0x55, 0xe1, 0x3c, 0x7f, 0xb0, 0x2f, 0x65, 0x49, 0x48, 0x4c, 0x09, 0x8b, + 0x66, 0xb3, 0x73, 0xe7, 0x4f, 0xa1, 0xfa, 0x16, 0xff, 0x63, 0x02, 0x96, 0xcc, 0xaa, 0xa3, 0x6e, + 0x48, 0xed, 0x49, 0x40, 0xec, 0x8f, 0x87, 0x31, 0x41, 0xd6, 0xbb, 0x2d, 0xc1, 0x52, 0xc7, 0x81, + 0x02, 0x51, 0x01, 0xe6, 0x75, 0x43, 0x6a, 0x5b, 0xe1, 0x40, 0xd2, 0xda, 0xd8, 0x10, 0x7b, 0x92, + 0xf1, 0x8c, 0xfa, 0xfa, 0x1c, 0x6d, 0x6a, 0x58, 0x2d, 0x07, 0x92, 0xf1, 0xec, 0x25, 0x6d, 0x24, + 0xfa, 0xc0, 0x1f, 0x14, 0xde, 0x18, 0x31, 0x97, 0x08, 0xdb, 0xfa, 0x28, 0x04, 0x37, 0x7e, 0x73, + 0x84, 0xc8, 0xd1, 0x78, 0xf1, 0xd9, 0x71, 0xd2, 0x9f, 0x18, 0x72, 0x3e, 0x0f, 0xcb, 0x43, 0x93, + 0xa7, 0x47, 0x48, 0x1b, 0xf2, 0x66, 0xd3, 0xa1, 0xa2, 0x4f, 0x68, 0x8e, 0x21, 0x16, 0xc3, 0x86, + 0x58, 0x0c, 0xbf, 0x02, 0xe7, 0x03, 0x06, 0xa2, 0x5a, 0xfc, 0x22, 0x49, 0xd4, 0x98, 0xfc, 0xf6, + 0xe3, 0x93, 0x30, 0xaf, 0x78, 0xdb, 0xbd, 0xed, 0x81, 0x17, 0x05, 0xaf, 0xc2, 0x2f, 0x2e, 0x42, + 0xc6, 0xcd, 0x47, 0x8f, 0x41, 0x63, 0x84, 0xe3, 0x24, 0xcf, 0x74, 0x29, 0x33, 0xe5, 0xbb, 0x94, + 0xa9, 0x0e, 0x9c, 0x6a, 0xda, 0x9b, 0xda, 0x86, 0x2e, 0x45, 0x84, 0x5b, 0x3d, 0x1d, 0x72, 0xab, + 0x94, 0xf7, 0xa6, 0x27, 0x54, 0xe8, 0x3f, 0x80, 0x63, 0x51, 0xa3, 0x0e, 0xbc, 0x82, 0xe1, 0x9f, + 0x02, 0x47, 0x2c, 0x7e, 0xf2, 0x4b, 0x11, 0x9f, 0x19, 0xb1, 0x7e, 0x33, 0xe2, 0xd7, 0x60, 0x25, + 0x50, 0x36, 0x1d, 0xfa, 0xbf, 0x18, 0xa2, 0x98, 0x03, 0xed, 0xd4, 0x0d, 0xc9, 0xd0, 0xc7, 0x1d, + 0x9a, 0x36, 0xba, 0x87, 0x26, 0x24, 0xcb, 0x82, 0x27, 0x74, 0x09, 0xfe, 0x0b, 0x86, 0xac, 0x83, + 0x5f, 0x17, 0x7a, 0xda, 0x5e, 0x83, 0x64, 0xdf, 0x02, 0x94, 0x49, 0xd6, 0x35, 0xef, 0x75, 0x82, + 0x43, 0xb3, 0x49, 0x20, 0x1c, 0xc3, 0x88, 0x13, 0x3b, 0x36, 0xe2, 0xf4, 0x2d, 0x03, 0x19, 0x97, + 0x44, 0xb4, 0x0a, 0x69, 0x07, 0x20, 0xb1, 0x2b, 0x1c, 0x87, 0x60, 0x6e, 0xb8, 0xa1, 0x1a, 0x52, + 0x87, 0x3e, 0x6f, 0x20, 0x1f, 0x66, 0x51, 0xda, 0xd7, 0x31, 0x49, 0x80, 0xe3, 0x82, 0xf5, 0x1f, + 0xdd, 0x80, 0x44, 0x5f, 0x91, 0x0d, 0xcb, 0xd1, 0xb3, 0x7e, 0x0f, 0xb6, 0x86, 0x2a, 0x1c, 0x2a, + 0xb2, 0x21, 0x58, 0x5c, 0xfc, 0x75, 0x48, 0x98, 0x5f, 0x5e, 0x1c, 0x21, 0x0d, 0xc9, 0xad, 0x27, + 0x8d, 0x72, 0x3d, 0xc7, 0x20, 0x80, 0xa9, 0x0a, 0xa9, 0xba, 0x59, 0xfe, 0x3b, 0xc6, 0xc6, 0xdb, + 0xc8, 0x14, 0xd0, 0x1d, 0x48, 0xe9, 0xf8, 0x04, 0x6b, 0x36, 0xc6, 0x93, 0xdd, 0x5c, 0x0b, 0x9a, + 0x78, 0xa1, 0x4e, 0x99, 0x04, 0x87, 0xdd, 0x4c, 0x4e, 0xb1, 0xa6, 0xa9, 0x9a, 0xd8, 0x54, 0x5b, + 0xb6, 0x15, 0xa7, 0x2d, 0x4a, 0x49, 0x6d, 0x61, 0x37, 0xaa, 0x1f, 0xf7, 0xa0, 0xfa, 0xfc, 0xc7, + 0x90, 0xb2, 0xc5, 0x79, 0x95, 0xce, 0xc0, 0x34, 0x29, 0xfc, 0x9f, 0xe4, 0x18, 0xb4, 0x0c, 0xf3, + 0x8d, 0xf2, 0xde, 0xc1, 0xbe, 0x50, 0x14, 0x9e, 0x88, 0x87, 0x35, 0xbb, 0x81, 0x45, 0x73, 0x30, + 0xfb, 0xa0, 0xd8, 0x28, 0x56, 0xc5, 0xf2, 0x5e, 0xa5, 0x56, 0xae, 0x35, 0x72, 0x71, 0x73, 0xb6, + 0x16, 0x29, 0x97, 0xe0, 0x57, 0x1d, 0xbb, 0x08, 0x42, 0xa2, 0x3e, 0x25, 0x16, 0x1e, 0x86, 0x41, + 0x15, 0x03, 0x31, 0xa8, 0x35, 0xcf, 0x59, 0x3f, 0x02, 0x7d, 0xfa, 0x5f, 0x16, 0x16, 0x03, 0xf9, + 0xd0, 0x6d, 0x37, 0xee, 0x74, 0x29, 0x52, 0xa6, 0x1b, 0x71, 0xfa, 0x25, 0x43, 0x10, 0xa7, 0xbb, + 0x1e, 0xc4, 0xe9, 0xea, 0xc8, 0xfe, 0x6e, 0xac, 0x49, 0x0f, 0x81, 0x9a, 0xea, 0x8d, 0xe2, 0x4e, + 0x59, 0x3c, 0xac, 0x91, 0x5f, 0x07, 0x6a, 0x5a, 0x80, 0x9c, 0x0b, 0x8b, 0xa9, 0x37, 0x8a, 0x8d, + 0x3a, 0x59, 0x77, 0x2f, 0xcc, 0x13, 0x47, 0x2b, 0xb0, 0xec, 0x67, 0xb4, 0xa1, 0x9b, 0x84, 0x03, + 0xdd, 0x2c, 0x00, 0xa2, 0x6b, 0xee, 0x7e, 0x96, 0xfd, 0x25, 0x03, 0xf3, 0x1e, 0x32, 0xdd, 0x02, + 0xd7, 0xcd, 0x2d, 0xe3, 0xb9, 0xb9, 0xbd, 0x05, 0x0b, 0x66, 0xf5, 0x49, 0x1c, 0x50, 0x17, 0x7b, + 0x58, 0xb3, 0xf0, 0x77, 0xea, 0x4d, 0x73, 0x5d, 0xe9, 0x39, 0xc5, 0xc7, 0x0f, 0xb0, 0x66, 0x0a, + 0x7e, 0x09, 0x08, 0x2b, 0xff, 0x3f, 0x2c, 0xc9, 0x71, 0x26, 0xae, 0x91, 0x46, 0xc6, 0xbb, 0xe1, + 0x22, 0x2a, 0x3e, 0x41, 0x11, 0x15, 0x12, 0x2d, 0x13, 0x13, 0x25, 0xd6, 0x13, 0xe7, 0x07, 0x7c, + 0x91, 0xe4, 0x53, 0x67, 0xa8, 0x6f, 0x36, 0xff, 0xc6, 0x40, 0xaa, 0xd2, 0xc2, 0x8a, 0x61, 0x7a, + 0x44, 0x0d, 0x66, 0x3d, 0xaf, 0xe5, 0xd1, 0x6a, 0xc8, 0x23, 0x7a, 0x6b, 0xc5, 0xb9, 0xb5, 0xc8, + 0x27, 0xf6, 0x7c, 0x0c, 0x1d, 0xbb, 0x5e, 0xfa, 0x7b, 0x80, 0xfb, 0xd7, 0x86, 0x7a, 0x06, 0x04, + 0x07, 0xee, 0xca, 0x08, 0x2e, 0x67, 0x9c, 0x77, 0x20, 0x69, 0xbd, 0x8b, 0x46, 0xce, 0x21, 0xe1, + 0x7e, 0x36, 0xcd, 0x2d, 0xfa, 0xa8, 0x76, 0xbf, 0xcd, 0xaf, 0xd3, 0x00, 0x83, 0x32, 0x11, 0x3d, + 0x84, 0x19, 0xf7, 0xd3, 0x4c, 0xb4, 0x12, 0xf1, 0x30, 0x98, 0x5b, 0x0d, 0x6e, 0x74, 0x74, 0x7a, + 0x08, 0x33, 0xee, 0x87, 0x40, 0x03, 0x61, 0x01, 0x8f, 0x91, 0x06, 0xc2, 0x02, 0xdf, 0x0e, 0xc5, + 0x50, 0x07, 0x96, 0x43, 0x9e, 0x82, 0xa0, 0xab, 0xe3, 0x3d, 0x98, 0xe1, 0x5e, 0x1f, 0xf3, 0x4d, + 0x09, 0x1f, 0x43, 0x1a, 0x9c, 0x0f, 0x7d, 0x01, 0x81, 0x36, 0xc6, 0x7d, 0x9f, 0xc1, 0x5d, 0x1b, + 0x83, 0xd3, 0x19, 0xb3, 0x0f, 0x5c, 0xf8, 0xb5, 0x2b, 0xba, 0x36, 0xf6, 0x7b, 0x00, 0xee, 0xfa, + 0xf8, 0xb7, 0xb8, 0x7c, 0x0c, 0xed, 0x42, 0xc6, 0x75, 0x93, 0x87, 0xb8, 0xc0, 0xeb, 0x3d, 0x22, + 0x78, 0x25, 0xe2, 0xea, 0x8f, 0x48, 0x72, 0xdd, 0xde, 0x0c, 0x24, 0x0d, 0x5f, 0x43, 0x0d, 0x24, + 0x05, 0x5c, 0xf7, 0xf8, 0x97, 0xdf, 0x77, 0x32, 0x06, 0x2d, 0x7f, 0xf0, 0xd1, 0x1a, 0xb4, 0xfc, + 0x21, 0xc7, 0x2c, 0x1f, 0x43, 0x1f, 0x42, 0xd6, 0x8b, 0x30, 0xa3, 0xb5, 0x48, 0xa4, 0x9c, 0xbb, + 0x10, 0xd6, 0xec, 0x16, 0xe9, 0x05, 0x34, 0x07, 0x22, 0x03, 0x81, 0xd5, 0x81, 0xc8, 0x10, 0x1c, + 0x34, 0x66, 0xc6, 0x27, 0x0f, 0x4c, 0x37, 0x88, 0x4f, 0x41, 0xe8, 0xe2, 0x20, 0x3e, 0x05, 0x62, + 0x7b, 0x7c, 0x0c, 0xc9, 0xb0, 0x14, 0x8c, 0x12, 0xa1, 0x2b, 0x63, 0x81, 0x60, 0xdc, 0xd5, 0x51, + 0x6c, 0xce, 0x50, 0x5b, 0x90, 0x76, 0x52, 0x63, 0x94, 0x0f, 0xb8, 0x94, 0x25, 0x02, 0xcf, 0x87, + 0x5e, 0xd7, 0xf2, 0xb1, 0xcd, 0xbf, 0x24, 0x21, 0x61, 0x9d, 0xa4, 0x0d, 0x38, 0xe7, 0xab, 0xf4, + 0xd1, 0x85, 0x68, 0xfc, 0x83, 0xbb, 0x18, 0xda, 0xee, 0xa8, 0xf8, 0x14, 0xe6, 0x86, 0x6a, 0x77, + 0xb4, 0xee, 0xee, 0x17, 0x84, 0x1f, 0x70, 0x97, 0x22, 0x38, 0xfc, 0xb2, 0xbd, 0xa1, 0x6b, 0x7d, + 0x54, 0x71, 0xe9, 0x95, 0x1d, 0x16, 0xae, 0x3e, 0x25, 0x89, 0x8b, 0x3f, 0x50, 0xf1, 0x5e, 0xbd, + 0x02, 0x43, 0xd4, 0xe5, 0x48, 0x1e, 0x67, 0x84, 0x4f, 0x9c, 0x8c, 0xc9, 0x55, 0xdb, 0x20, 0x8f, + 0x72, 0x81, 0x35, 0x18, 0xc7, 0x47, 0xb1, 0x38, 0xe2, 0x1f, 0x43, 0xce, 0x7f, 0x8c, 0x23, 0xcf, + 0x7e, 0x05, 0x99, 0xde, 0x7a, 0x38, 0x83, 0x7f, 0x65, 0xfc, 0x31, 0xc4, 0xaf, 0x55, 0x50, 0xf4, + 0xb8, 0x1c, 0xc9, 0xe3, 0x8e, 0x7a, 0xae, 0xa4, 0x71, 0x10, 0xf5, 0x86, 0x13, 0xcc, 0x41, 0xd4, + 0x0b, 0xc8, 0x32, 0xf9, 0xd8, 0xdd, 0x77, 0x01, 0x9a, 0xba, 0x2c, 0x12, 0x40, 0x02, 0xad, 0x0d, + 0xdd, 0x0d, 0x3d, 0x90, 0x71, 0xa7, 0xb5, 0xdf, 0x33, 0x64, 0x55, 0xd1, 0xf3, 0x5f, 0xa5, 0x2c, + 0x34, 0x24, 0xdd, 0xd4, 0x65, 0x82, 0x0b, 0x6c, 0x25, 0x9f, 0xc6, 0x9b, 0xba, 0x7c, 0x34, 0x65, + 0xf1, 0xbf, 0xf5, 0xf7, 0x00, 0x00, 0x00, 0xff, 0xff, 0x23, 0xf5, 0x9a, 0x48, 0x1f, 0x39, 0x00, + 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -4951,6 +5229,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) } type controllerClient struct { @@ -5069,6 +5348,15 @@ 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...) + if err != nil { + return nil, err + } + return out, nil +} + // ControllerServer is the server API for Controller service. type ControllerServer interface { CreateVolume(context.Context, *CreateVolumeRequest) (*CreateVolumeResponse, error) @@ -5083,6 +5371,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) } // UnimplementedControllerServer can be embedded to have forward compatible implementations. @@ -5125,6 +5414,9 @@ 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 RegisterControllerServer(s *grpc.Server, srv ControllerServer) { s.RegisterService(&_Controller_serviceDesc, srv) @@ -5346,6 +5638,24 @@ 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) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(ControllerServer).GetVolume(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/csi.v1.Controller/GetVolume", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(ControllerServer).GetVolume(ctx, req.(*GetVolumeRequest)) + } + return interceptor(ctx, in, info, handler) +} + var _Controller_serviceDesc = grpc.ServiceDesc{ ServiceName: "csi.v1.Controller", HandlerType: (*ControllerServer)(nil), @@ -5398,6 +5708,10 @@ var _Controller_serviceDesc = grpc.ServiceDesc{ MethodName: "ControllerExpandVolume", Handler: _Controller_ControllerExpandVolume_Handler, }, + { + MethodName: "GetVolume", + Handler: _Controller_GetVolume_Handler, + }, }, Streams: []grpc.StreamDesc{}, Metadata: "github.com/container-storage-interface/spec/csi.proto", diff --git a/spec.md b/spec.md index ca12793b..9e91b886 100644 --- a/spec.md +++ b/spec.md @@ -341,6 +341,9 @@ service Controller { rpc ControllerExpandVolume (ControllerExpandVolumeRequest) returns (ControllerExpandVolumeResponse) {} + + rpc GetVolume (GetVolumeRequest) + returns (GetVolumeResponse) {} } service Node { @@ -1448,6 +1451,51 @@ 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` + +A Controller Plugin MUST implement this `GetVolume` RPC call if it has `GET_VOLUME` capability. + +A Controller Plugin MUST support the `volume_health` field in the `status` field in `GetVolumeResponse` if it has `GET_VOLUME_HEALTH` 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`. + +The `VolumeHealth` message in `VolumeStatus` field in `GetVolumeResponse` 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 { + // Identity information for a specific volume. This field is + // REQUIRED. GetVolume will return with current volume information. + string volume_id = 1; +} + +message GetVolumeResponse { + message VolumeStatus{ + // volume_health shows error conditions reported by the SP. + // This field MUST be specified if the + // GET_VOLUME_HEALTH controller capability is supported. + repeated VolumeHealth volume_health = 1; + } + + // This field is REQUIRED + Volume volume = 1; + + // This field is OPTIONAL. This field MUST be specified if the + // GET_VOLUME_HEALTH controller capability is supported. + VolumeStatus status = 2; +} +``` + +##### GetVolume Errors + +If the plugin is unable to complete the GetVolume call successfully, it MUST return a non-ok gRPC code in the gRPC status. + +##### VolumeHealth from Controller vs Node Plugins + +If a SP provides `VolumeHealth` information in both Controller and Node Plugins, information provided SHALL not be duplicate. `VolumeHealth` information from the Controller Plugin SHALL be from the storage system but not specific for one node, while information from the Node Plugin SHALL be specific for that node. + +A SP can implement `VolumeHealth` in only the Controller Plugin, only the Node Plugin, or both if possible. #### `GetCapacity` @@ -1540,6 +1588,13 @@ message ControllerServiceCapability { // Indicates the SP supports the // ListVolumesResponse.entry.published_nodes field LIST_VOLUMES_PUBLISHED_NODES = 10; + + // Indicates the SP supports the GetVolume RPC + GET_VOLUME = 11; + + // Indicates the SP supports the + // GetVolumeResponse.volume_health field + GET_VOLUME_HEALTH = 12; } Type type = 1; @@ -2186,6 +2241,8 @@ The `staging_target_path` field is not required, for backwards compatibility, bu Plugins can use this field to determine if `volume_path` is where the volume is published or staged, and setting this field to non-empty allows plugins to function with less stored state on the node. +A Node plugin MUST implement NodeGetVolumeStats RPC call for fetching volume health information if it has GET_VOLUME_STATS_HEALTH node capability. + ```protobuf message NodeGetVolumeStatsRequest { // The ID of the volume. This field is REQUIRED. @@ -2209,6 +2266,8 @@ message NodeGetVolumeStatsRequest { message NodeGetVolumeStatsResponse { // This field is OPTIONAL. repeated VolumeUsage usage = 1; + // This field is OPTIONAL. + repeated VolumeHealth volume_health = 2; } message VolumeUsage { @@ -2232,6 +2291,35 @@ message VolumeUsage { // Units by which values are measured. This field is REQUIRED. Unit unit = 4; } + +message VolumeHealth { + enum Severity { + // Volume health condition is unknown; treat it as healthy. + UNKNOWN = 0; + // Volume is healthy. + HEALTHY = 1; + // Volume is temporarily unhealthy, but will likely become healthy. + TEMPORARY_UNHEALTHY = 2; + // Volume will fail soon. Move your data off and replace volume or + // you may lose your data. + FATAL_EMINENT = 3; + // Volume is unusable. Data loss is likely. + FATAL = 4; + } + + // The severity level of the health condition of the volume. + // This field is REQUIRED. + Severity severity = 1; + + // The error code describing the health condition of the volume. + // This is an opaque field to CO. + // This field is REQUIRED. + string error_code = 2; + + // The error message associated with the above error_code. + // This field is OPTIONAL. + string message = 3; +} ``` ##### NodeGetVolumeStats Errors @@ -2273,6 +2361,10 @@ message NodeServiceCapability { GET_VOLUME_STATS = 2; // See VolumeExpansion for details. EXPAND_VOLUME = 3; + // If Plugin implements GET_VOLUME_STATS_HEALTH capability + // then it MUST implement NodeGetVolumeStats RPC + // call for fetching volume health information. + GET_VOLUME_STATS_HEALTH = 4; } Type type = 1;