VOL-3853:Use strings to convey more info about errors from DM to DM User
Change-Id: I41ce424b3143ed873ce7b6b6bf2a5e826c677f69
diff --git a/go/dmi/hw_management_service.pb.go b/go/dmi/hw_management_service.pb.go
index af6765f..18d6108 100644
--- a/go/dmi/hw_management_service.pb.go
+++ b/go/dmi/hw_management_service.pb.go
@@ -397,12 +397,16 @@
}
type PhysicalInventoryResponse struct {
- Status Status `protobuf:"varint,1,opt,name=status,proto3,enum=dmi.Status" json:"status,omitempty"`
- Reason PhysicalInventoryResponse_Reason `protobuf:"varint,2,opt,name=reason,proto3,enum=dmi.PhysicalInventoryResponse_Reason" json:"reason,omitempty"`
- Inventory *Hardware `protobuf:"bytes,3,opt,name=inventory,proto3" json:"inventory,omitempty"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
+ Status Status `protobuf:"varint,1,opt,name=status,proto3,enum=dmi.Status" json:"status,omitempty"`
+ Reason PhysicalInventoryResponse_Reason `protobuf:"varint,2,opt,name=reason,proto3,enum=dmi.PhysicalInventoryResponse_Reason" json:"reason,omitempty"`
+ Inventory *Hardware `protobuf:"bytes,3,opt,name=inventory,proto3" json:"inventory,omitempty"`
+ // It is recommended that upstream components/users of the DMI interface
+ // do not really interpret/parse the reson_detail, but rather use it for
+ // display purposes to the end user or use it for logging the error
+ ReasonDetail string `protobuf:"bytes,4,opt,name=reason_detail,json=reasonDetail,proto3" json:"reason_detail,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
func (m *PhysicalInventoryResponse) Reset() { *m = PhysicalInventoryResponse{} }
@@ -451,6 +455,13 @@
return nil
}
+func (m *PhysicalInventoryResponse) GetReasonDetail() string {
+ if m != nil {
+ return m.ReasonDetail
+ }
+ return ""
+}
+
type HWComponentInfoGetRequest struct {
DeviceUuid *Uuid `protobuf:"bytes,1,opt,name=device_uuid,json=deviceUuid,proto3" json:"device_uuid,omitempty"`
ComponentUuid *Uuid `protobuf:"bytes,2,opt,name=component_uuid,json=componentUuid,proto3" json:"component_uuid,omitempty"`
@@ -510,6 +521,7 @@
Status Status `protobuf:"varint,1,opt,name=status,proto3,enum=dmi.Status" json:"status,omitempty"`
Reason HWComponentInfoGetResponse_Reason `protobuf:"varint,2,opt,name=reason,proto3,enum=dmi.HWComponentInfoGetResponse_Reason" json:"reason,omitempty"`
Component *Component `protobuf:"bytes,3,opt,name=component,proto3" json:"component,omitempty"`
+ ReasonDetail string `protobuf:"bytes,4,opt,name=reason_detail,json=reasonDetail,proto3" json:"reason_detail,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
@@ -561,6 +573,13 @@
return nil
}
+func (m *HWComponentInfoGetResponse) GetReasonDetail() string {
+ if m != nil {
+ return m.ReasonDetail
+ }
+ return ""
+}
+
type HWComponentInfoSetRequest struct {
DeviceUuid *Uuid `protobuf:"bytes,1,opt,name=device_uuid,json=deviceUuid,proto3" json:"device_uuid,omitempty"`
ComponentUuid *Uuid `protobuf:"bytes,2,opt,name=component_uuid,json=componentUuid,proto3" json:"component_uuid,omitempty"`
@@ -627,6 +646,7 @@
type HWComponentInfoSetResponse struct {
Status Status `protobuf:"varint,1,opt,name=status,proto3,enum=dmi.Status" json:"status,omitempty"`
Reason HWComponentInfoSetResponse_Reason `protobuf:"varint,2,opt,name=reason,proto3,enum=dmi.HWComponentInfoSetResponse_Reason" json:"reason,omitempty"`
+ ReasonDetail string `protobuf:"bytes,3,opt,name=reason_detail,json=reasonDetail,proto3" json:"reason_detail,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
@@ -671,10 +691,18 @@
return HWComponentInfoSetResponse_UNDEFINED_REASON
}
+func (m *HWComponentInfoSetResponse) GetReasonDetail() string {
+ if m != nil {
+ return m.ReasonDetail
+ }
+ return ""
+}
+
type StartManagingDeviceResponse struct {
Status Status `protobuf:"varint,1,opt,name=status,proto3,enum=dmi.Status" json:"status,omitempty"`
Reason StartManagingDeviceResponse_Reason `protobuf:"varint,2,opt,name=reason,proto3,enum=dmi.StartManagingDeviceResponse_Reason" json:"reason,omitempty"`
DeviceUuid *Uuid `protobuf:"bytes,3,opt,name=device_uuid,json=deviceUuid,proto3" json:"device_uuid,omitempty"`
+ ReasonDetail string `protobuf:"bytes,4,opt,name=reason_detail,json=reasonDetail,proto3" json:"reason_detail,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
@@ -726,6 +754,13 @@
return nil
}
+func (m *StartManagingDeviceResponse) GetReasonDetail() string {
+ if m != nil {
+ return m.ReasonDetail
+ }
+ return ""
+}
+
type StopManagingDeviceRequest struct {
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
@@ -768,6 +803,7 @@
type StopManagingDeviceResponse struct {
Status Status `protobuf:"varint,1,opt,name=status,proto3,enum=dmi.Status" json:"status,omitempty"`
Reason StopManagingDeviceResponse_Reason `protobuf:"varint,2,opt,name=reason,proto3,enum=dmi.StopManagingDeviceResponse_Reason" json:"reason,omitempty"`
+ ReasonDetail string `protobuf:"bytes,3,opt,name=reason_detail,json=reasonDetail,proto3" json:"reason_detail,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
@@ -812,6 +848,13 @@
return StopManagingDeviceResponse_UNDEFINED_REASON
}
+func (m *StopManagingDeviceResponse) GetReasonDetail() string {
+ if m != nil {
+ return m.ReasonDetail
+ }
+ return ""
+}
+
type ManagedDevicesResponse struct {
Devices []*ModifiableComponent `protobuf:"bytes,1,rep,name=devices,proto3" json:"devices,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
@@ -909,6 +952,7 @@
type SetRemoteEndpointResponse struct {
Status Status `protobuf:"varint,1,opt,name=status,proto3,enum=dmi.Status" json:"status,omitempty"`
Reason SetRemoteEndpointResponse_Reason `protobuf:"varint,2,opt,name=reason,proto3,enum=dmi.SetRemoteEndpointResponse_Reason" json:"reason,omitempty"`
+ ReasonDetail string `protobuf:"bytes,3,opt,name=reason_detail,json=reasonDetail,proto3" json:"reason_detail,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
@@ -953,11 +997,19 @@
return SetRemoteEndpointResponse_UNDEFINED_REASON
}
+func (m *SetRemoteEndpointResponse) GetReasonDetail() string {
+ if m != nil {
+ return m.ReasonDetail
+ }
+ return ""
+}
+
type GetLoggingEndpointResponse struct {
Status Status `protobuf:"varint,1,opt,name=status,proto3,enum=dmi.Status" json:"status,omitempty"`
Reason GetLoggingEndpointResponse_Reason `protobuf:"varint,2,opt,name=reason,proto3,enum=dmi.GetLoggingEndpointResponse_Reason" json:"reason,omitempty"`
LoggingEndpoint string `protobuf:"bytes,3,opt,name=logging_endpoint,json=loggingEndpoint,proto3" json:"logging_endpoint,omitempty"`
LoggingProtocol string `protobuf:"bytes,4,opt,name=logging_protocol,json=loggingProtocol,proto3" json:"logging_protocol,omitempty"`
+ ReasonDetail string `protobuf:"bytes,5,opt,name=reason_detail,json=reasonDetail,proto3" json:"reason_detail,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
@@ -1016,6 +1068,13 @@
return ""
}
+func (m *GetLoggingEndpointResponse) GetReasonDetail() string {
+ if m != nil {
+ return m.ReasonDetail
+ }
+ return ""
+}
+
type SetMsgBusEndpointRequest struct {
MsgbusEndpoint string `protobuf:"bytes,1,opt,name=msgbus_endpoint,json=msgbusEndpoint,proto3" json:"msgbus_endpoint,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
@@ -1059,6 +1118,7 @@
Status Status `protobuf:"varint,1,opt,name=status,proto3,enum=dmi.Status" json:"status,omitempty"`
Reason GetMsgBusEndpointResponse_Reason `protobuf:"varint,2,opt,name=reason,proto3,enum=dmi.GetMsgBusEndpointResponse_Reason" json:"reason,omitempty"`
MsgbusEndpoint string `protobuf:"bytes,3,opt,name=msgbus_endpoint,json=msgbusEndpoint,proto3" json:"msgbus_endpoint,omitempty"`
+ ReasonDetail string `protobuf:"bytes,4,opt,name=reason_detail,json=reasonDetail,proto3" json:"reason_detail,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
@@ -1110,6 +1170,13 @@
return ""
}
+func (m *GetMsgBusEndpointResponse) GetReasonDetail() string {
+ if m != nil {
+ return m.ReasonDetail
+ }
+ return ""
+}
+
type EntitiesLogLevel struct {
LogLevel LogLevel `protobuf:"varint,1,opt,name=logLevel,proto3,enum=dmi.LogLevel" json:"logLevel,omitempty"`
Entities []string `protobuf:"bytes,2,rep,name=entities,proto3" json:"entities,omitempty"`
@@ -1208,6 +1275,7 @@
DeviceUuid *Uuid `protobuf:"bytes,1,opt,name=device_uuid,json=deviceUuid,proto3" json:"device_uuid,omitempty"`
Status Status `protobuf:"varint,2,opt,name=status,proto3,enum=dmi.Status" json:"status,omitempty"`
Reason SetLogLevelResponse_Reason `protobuf:"varint,3,opt,name=reason,proto3,enum=dmi.SetLogLevelResponse_Reason" json:"reason,omitempty"`
+ ReasonDetail string `protobuf:"bytes,4,opt,name=reason_detail,json=reasonDetail,proto3" json:"reason_detail,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
@@ -1259,6 +1327,13 @@
return SetLogLevelResponse_UNDEFINED_REASON
}
+func (m *SetLogLevelResponse) GetReasonDetail() string {
+ if m != nil {
+ return m.ReasonDetail
+ }
+ return ""
+}
+
type GetLogLevelRequest struct {
DeviceUuid *Uuid `protobuf:"bytes,1,opt,name=device_uuid,json=deviceUuid,proto3" json:"device_uuid,omitempty"`
Entities []string `protobuf:"bytes,2,rep,name=entities,proto3" json:"entities,omitempty"`
@@ -1311,6 +1386,7 @@
LogLevels []*EntitiesLogLevel `protobuf:"bytes,2,rep,name=logLevels,proto3" json:"logLevels,omitempty"`
Status Status `protobuf:"varint,3,opt,name=status,proto3,enum=dmi.Status" json:"status,omitempty"`
Reason GetLogLevelResponse_Reason `protobuf:"varint,4,opt,name=reason,proto3,enum=dmi.GetLogLevelResponse_Reason" json:"reason,omitempty"`
+ ReasonDetail string `protobuf:"bytes,5,opt,name=reason_detail,json=reasonDetail,proto3" json:"reason_detail,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
@@ -1369,6 +1445,13 @@
return GetLogLevelResponse_UNDEFINED_REASON
}
+func (m *GetLogLevelResponse) GetReasonDetail() string {
+ if m != nil {
+ return m.ReasonDetail
+ }
+ return ""
+}
+
type GetLoggableEntitiesRequest struct {
DeviceUuid *Uuid `protobuf:"bytes,1,opt,name=device_uuid,json=deviceUuid,proto3" json:"device_uuid,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
@@ -1445,91 +1528,94 @@
func init() { proto.RegisterFile("dmi/hw_management_service.proto", fileDescriptor_eae902e73066286d) }
var fileDescriptor_eae902e73066286d = []byte{
- // 1332 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x58, 0xcd, 0x6e, 0xdb, 0x46,
- 0x17, 0xfd, 0x48, 0x39, 0x4e, 0x74, 0xfd, 0xc5, 0x91, 0x27, 0x89, 0x2b, 0x31, 0x88, 0x9d, 0x32,
- 0x48, 0x93, 0xb4, 0x8d, 0x14, 0x28, 0x8b, 0xa2, 0x28, 0xfa, 0x23, 0x5b, 0x0c, 0xcd, 0x46, 0x22,
- 0x85, 0xa1, 0x1c, 0x23, 0x45, 0x51, 0x82, 0x16, 0xc7, 0x32, 0x01, 0x91, 0x54, 0x45, 0x4a, 0x81,
- 0x1f, 0xa0, 0x8b, 0x02, 0xed, 0xba, 0xab, 0x02, 0x5d, 0x75, 0xdb, 0x55, 0x51, 0xa0, 0xe8, 0x23,
- 0x74, 0xd9, 0x47, 0xe9, 0x03, 0x14, 0x9c, 0x21, 0xf5, 0x43, 0x91, 0x92, 0xff, 0x02, 0x64, 0x27,
- 0x71, 0xce, 0x1c, 0xde, 0xb9, 0xe7, 0xce, 0x99, 0xcb, 0x81, 0x6d, 0xcb, 0xb1, 0x2b, 0xc7, 0xaf,
- 0x0d, 0xc7, 0x74, 0xcd, 0x2e, 0x71, 0x88, 0x1b, 0x18, 0x3e, 0x19, 0x8c, 0xec, 0x0e, 0x29, 0xf7,
- 0x07, 0x5e, 0xe0, 0xa1, 0x9c, 0xe5, 0xd8, 0xc2, 0x46, 0x88, 0xea, 0x78, 0x8e, 0xe3, 0xb9, 0x3e,
- 0x7b, 0x2e, 0xfc, 0x9f, 0x4d, 0x8c, 0xfe, 0xdd, 0xe9, 0x7a, 0x5e, 0xb7, 0x47, 0x2a, 0xf4, 0xdf,
- 0xe1, 0xf0, 0xa8, 0x42, 0x9c, 0x7e, 0x70, 0xc2, 0x06, 0xc5, 0xe7, 0x50, 0x6c, 0x1d, 0x9f, 0xf8,
- 0x76, 0xc7, 0xec, 0x29, 0xee, 0x88, 0xb8, 0x81, 0x37, 0x38, 0xc1, 0xe4, 0xdb, 0x21, 0xf1, 0x03,
- 0xf4, 0x3e, 0xac, 0x59, 0x24, 0x7c, 0x9d, 0x31, 0x1c, 0xda, 0x56, 0x91, 0xbb, 0xc7, 0x3d, 0x5a,
- 0xab, 0xe6, 0xcb, 0x96, 0x63, 0x97, 0xf7, 0x87, 0xb6, 0x85, 0x81, 0x8d, 0x86, 0xbf, 0xc5, 0x1f,
- 0x78, 0x28, 0xa5, 0x10, 0xf9, 0x7d, 0xcf, 0xf5, 0x09, 0xba, 0x0f, 0xab, 0x7e, 0x60, 0x06, 0x43,
- 0x9f, 0x92, 0xac, 0x57, 0xd7, 0x28, 0x89, 0x4e, 0x1f, 0xe1, 0x68, 0x08, 0x7d, 0x0a, 0xab, 0x03,
- 0x62, 0xfa, 0x9e, 0x5b, 0xe4, 0x29, 0xe8, 0x01, 0x05, 0x65, 0x92, 0x96, 0x31, 0x05, 0xe3, 0x68,
- 0x12, 0xfa, 0x00, 0xf2, 0x76, 0x8c, 0x29, 0xe6, 0x68, 0xac, 0xd7, 0x29, 0xc3, 0x9e, 0x39, 0xb0,
- 0x5e, 0x9b, 0x03, 0x82, 0x27, 0xe3, 0xe2, 0x37, 0xb0, 0xca, 0xa6, 0xa3, 0x5b, 0x50, 0xd8, 0x57,
- 0xeb, 0xd2, 0x73, 0x45, 0x95, 0xea, 0x06, 0x96, 0x6a, 0xba, 0xa6, 0x16, 0xfe, 0x87, 0x10, 0xac,
- 0xef, 0xab, 0x2f, 0x54, 0xed, 0x40, 0x35, 0xea, 0xd2, 0x4b, 0x65, 0x57, 0x2a, 0x70, 0xe1, 0x33,
- 0x45, 0x6d, 0x4b, 0x58, 0xad, 0x35, 0x0c, 0x09, 0x63, 0x0d, 0x17, 0x78, 0xb4, 0x09, 0x88, 0x8d,
- 0x1b, 0xfb, 0x2a, 0x96, 0x6a, 0xbb, 0x7b, 0xb5, 0x9d, 0x86, 0x54, 0xc8, 0x89, 0xbf, 0x70, 0x50,
- 0xda, 0x3b, 0xd8, 0xf5, 0x9c, 0xbe, 0xe7, 0x12, 0x37, 0x50, 0xdc, 0x23, 0x4f, 0x26, 0xc1, 0x39,
- 0x12, 0x8b, 0x9e, 0xc2, 0x7a, 0x27, 0xa6, 0x61, 0x70, 0x3e, 0x09, 0xbf, 0x3e, 0x06, 0xd0, 0x19,
- 0x0f, 0xa6, 0x67, 0xb8, 0xa6, 0x43, 0x68, 0x36, 0xf2, 0x53, 0x30, 0xd5, 0x74, 0x88, 0xf8, 0x2b,
- 0x0f, 0x42, 0x5a, 0x88, 0x67, 0x91, 0xec, 0xb3, 0x84, 0x64, 0xef, 0xb1, 0x84, 0x67, 0xb2, 0x26,
- 0x35, 0xfb, 0x10, 0xf2, 0xe3, 0xa0, 0x22, 0xcd, 0xd6, 0x29, 0xc5, 0x98, 0x00, 0x4f, 0x00, 0xe2,
- 0xf0, 0x1c, 0xa2, 0xdd, 0x86, 0x8d, 0xf8, 0xd9, 0xae, 0xd6, 0x6c, 0x69, 0xaa, 0xa4, 0xb6, 0x0b,
- 0x7c, 0x8a, 0x96, 0xb9, 0x0c, 0x2d, 0x57, 0xc4, 0x7f, 0xe6, 0xb5, 0xd4, 0xdf, 0x2e, 0x2d, 0x51,
- 0x15, 0xae, 0x76, 0x8e, 0x4d, 0xb7, 0x4b, 0xfc, 0xe2, 0x0a, 0x65, 0x2c, 0x52, 0xc6, 0xa6, 0x67,
- 0xd9, 0x47, 0xb6, 0x79, 0xd8, 0x23, 0x93, 0x7c, 0xc6, 0x40, 0xf1, 0xc7, 0x79, 0xfd, 0xf5, 0x37,
- 0xa2, 0xbf, 0x9e, 0xa9, 0xbf, 0xf8, 0x3d, 0x77, 0xc9, 0x92, 0xbe, 0xac, 0x35, 0x94, 0xba, 0xd1,
- 0xaa, 0xe1, 0x5a, 0x53, 0x2f, 0xe4, 0x52, 0x64, 0x5e, 0xc9, 0x90, 0xf9, 0x8a, 0xf8, 0x07, 0x0f,
- 0x77, 0xf4, 0xc0, 0x1c, 0x04, 0xcd, 0xd0, 0x6e, 0x6d, 0xb7, 0x5b, 0xa7, 0xc2, 0x9d, 0x2d, 0x21,
- 0x9f, 0x27, 0x12, 0xf2, 0x30, 0x06, 0x65, 0xd1, 0x26, 0x77, 0x44, 0xa2, 0x9c, 0x72, 0x8b, 0x3c,
- 0xf7, 0xbb, 0x65, 0xd9, 0x13, 0x60, 0x33, 0x5a, 0x6a, 0xad, 0x81, 0xa5, 0x5a, 0xfd, 0x95, 0xd1,
- 0xac, 0xa9, 0x35, 0x59, 0xaa, 0x17, 0x38, 0xf4, 0x2e, 0xdc, 0xd5, 0x5a, 0x12, 0xae, 0xb5, 0x15,
- 0x4d, 0x1d, 0x0f, 0x2b, 0xaa, 0xd1, 0xc2, 0x9a, 0x8c, 0x25, 0x5d, 0x3f, 0x7d, 0x46, 0xc5, 0x0a,
- 0x94, 0xf4, 0xc0, 0xeb, 0x27, 0x17, 0xc8, 0xf6, 0x07, 0x82, 0x15, 0x5a, 0xb7, 0x1c, 0xad, 0x5b,
- 0xfa, 0x5b, 0xfc, 0x9d, 0x03, 0x21, 0x6d, 0xc6, 0xc5, 0x4b, 0x2f, 0x9b, 0x35, 0x59, 0x7a, 0xd5,
- 0xb3, 0x57, 0x9e, 0xd8, 0x80, 0x4d, 0x4a, 0x4e, 0x2c, 0xc6, 0xed, 0x8f, 0x43, 0xae, 0xc2, 0x55,
- 0x26, 0x4c, 0x18, 0x73, 0x6e, 0xf1, 0x06, 0x8c, 0x80, 0xe2, 0xcf, 0x1c, 0x94, 0x74, 0x12, 0x34,
- 0xbc, 0x6e, 0x18, 0xad, 0xe4, 0x5a, 0x7d, 0xcf, 0x76, 0xcf, 0xe5, 0x2b, 0x8f, 0xa1, 0xd0, 0x63,
- 0x2c, 0x06, 0x89, 0x68, 0x68, 0x56, 0xf2, 0xf8, 0x46, 0x6f, 0x96, 0x7d, 0x1a, 0x4a, 0x1b, 0x80,
- 0x8e, 0xd7, 0x8b, 0x2c, 0x25, 0x86, 0xb6, 0xa2, 0xc7, 0xe2, 0x5f, 0x3c, 0x8d, 0x0f, 0x13, 0xc7,
- 0x0b, 0xc8, 0x24, 0xbc, 0x8b, 0x1f, 0xe9, 0x99, 0xa4, 0x49, 0x8d, 0xfe, 0xe4, 0x2e, 0xe9, 0x98,
- 0x16, 0x60, 0xb3, 0xa1, 0xc9, 0xb2, 0xa2, 0xca, 0x86, 0xa4, 0xd6, 0x5b, 0x9a, 0xa2, 0xb6, 0xc7,
- 0xb6, 0x7f, 0x1f, 0xb6, 0xe7, 0xc6, 0x5a, 0x58, 0x6b, 0x6b, 0xbb, 0xda, 0xc4, 0x34, 0x4a, 0x70,
- 0xbb, 0xa9, 0xcb, 0x3b, 0xfb, 0x7a, 0x72, 0xfe, 0x95, 0x0c, 0x3f, 0x59, 0x0d, 0xfd, 0x44, 0x90,
- 0x53, 0xe4, 0xbd, 0x78, 0x91, 0x67, 0xb3, 0x26, 0xdd, 0x24, 0xad, 0x30, 0x72, 0xa7, 0x2f, 0x8c,
- 0x95, 0xf4, 0xc2, 0x78, 0xd3, 0xcd, 0xd3, 0x2e, 0x14, 0x75, 0x12, 0x34, 0xfd, 0xee, 0xce, 0xd0,
- 0x4f, 0x6e, 0x8b, 0x87, 0x70, 0xc3, 0xf1, 0xbb, 0x87, 0x43, 0x7f, 0xb2, 0x20, 0xe6, 0x2c, 0xeb,
- 0xec, 0x71, 0x8c, 0x17, 0xff, 0xe5, 0xa0, 0x24, 0xcf, 0xb3, 0x5c, 0xbc, 0x7a, 0x33, 0x49, 0x93,
- 0xc9, 0x4f, 0x09, 0x35, 0x97, 0x1a, 0xea, 0x97, 0xcb, 0xf3, 0x99, 0xc8, 0x1d, 0x97, 0x91, 0x3b,
- 0x5e, 0x7c, 0x05, 0x05, 0xc9, 0x0d, 0xec, 0xc0, 0x26, 0x7e, 0xc3, 0xeb, 0x36, 0xc8, 0x88, 0xf4,
- 0xd0, 0x63, 0xb8, 0xd6, 0x8b, 0x7e, 0x47, 0xcb, 0x65, 0x8d, 0x71, 0x0c, 0xc0, 0xe3, 0x61, 0x24,
- 0xc0, 0x35, 0x12, 0x4d, 0x2f, 0xf2, 0xf7, 0x72, 0x8f, 0xf2, 0x78, 0xfc, 0x5f, 0x1c, 0x02, 0x62,
- 0x76, 0xc5, 0x26, 0x9d, 0xc3, 0xa7, 0x9e, 0x41, 0xbe, 0x17, 0x7e, 0x8a, 0x8c, 0x48, 0x8f, 0xd1,
- 0xaf, 0x55, 0x6f, 0x53, 0x64, 0x32, 0x64, 0x3c, 0xc1, 0x89, 0x3f, 0xf1, 0x70, 0x73, 0xe6, 0xbd,
- 0x91, 0x84, 0x67, 0x79, 0xf1, 0x44, 0x6e, 0x3e, 0x5b, 0xee, 0x8f, 0xc6, 0x72, 0xe7, 0x28, 0x68,
- 0x3b, 0x36, 0xab, 0xe4, 0xab, 0x93, 0x36, 0x35, 0xba, 0xbc, 0xfd, 0x10, 0xe3, 0x1a, 0x5a, 0xe8,
- 0x46, 0x6d, 0xa5, 0xfd, 0x6a, 0x41, 0x63, 0xfa, 0x35, 0x20, 0xf9, 0x62, 0x82, 0x2c, 0x92, 0xfb,
- 0x6f, 0x1e, 0x6e, 0xca, 0x17, 0xcc, 0x3b, 0x13, 0xbc, 0x71, 0x4a, 0xc1, 0x19, 0x6e, 0x4a, 0xac,
- 0xdc, 0x69, 0xc4, 0x5a, 0x99, 0x12, 0x4b, 0x7e, 0x7b, 0xc5, 0xda, 0x1b, 0x9f, 0x06, 0x61, 0x3b,
- 0x10, 0xaf, 0xff, 0x1c, 0xa2, 0x55, 0x7f, 0xbb, 0x06, 0x25, 0xd5, 0x0c, 0xec, 0x11, 0xd9, 0x3b,
- 0x68, 0x8e, 0xaf, 0x06, 0x74, 0x76, 0x33, 0x80, 0x74, 0xb8, 0x99, 0xd2, 0x6e, 0xa2, 0xcc, 0x7e,
- 0x44, 0xb8, 0xb7, 0xac, 0x45, 0x7d, 0xca, 0xa1, 0x7d, 0x40, 0xf3, 0x9d, 0x15, 0xda, 0xca, 0x6c,
- 0xb9, 0xe8, 0xa2, 0x84, 0xed, 0x25, 0x2d, 0x19, 0xda, 0x83, 0x8d, 0xd0, 0x4d, 0x67, 0x5a, 0x2a,
- 0xb4, 0x59, 0x66, 0xf7, 0x15, 0xe5, 0xf8, 0xbe, 0xa2, 0x2c, 0x39, 0xfd, 0xe0, 0x44, 0xb8, 0xc3,
- 0x56, 0x90, 0xde, 0x7f, 0x1d, 0xc0, 0x2d, 0x99, 0x04, 0x73, 0x77, 0x05, 0xe8, 0x6e, 0xd6, 0x1d,
- 0x02, 0x8b, 0x70, 0x6b, 0xf1, 0x15, 0xc3, 0x53, 0x0e, 0x1d, 0xd0, 0x3d, 0x96, 0xf8, 0xa2, 0x89,
- 0x56, 0x9e, 0xf9, 0x81, 0x1f, 0xad, 0x3c, 0xfb, 0x3b, 0x38, 0x4a, 0xe9, 0x29, 0x89, 0xf5, 0x25,
- 0xc4, 0xd3, 0x9f, 0x6d, 0xed, 0xd8, 0xa4, 0x67, 0x0e, 0xf7, 0xad, 0x29, 0x2b, 0x4b, 0x69, 0x36,
- 0x85, 0xad, 0xc5, 0x7d, 0x19, 0x7a, 0x1e, 0x3b, 0xcd, 0x0c, 0xeb, 0x8d, 0x99, 0xeb, 0x15, 0xa5,
- 0x2e, 0x6c, 0x2f, 0x69, 0x4f, 0x10, 0x86, 0x8d, 0xb9, 0x93, 0x3d, 0xd2, 0x28, 0xeb, 0xc4, 0x5f,
- 0x1a, 0xdb, 0x0b, 0x56, 0x44, 0xb3, 0x9c, 0x59, 0x45, 0xb4, 0xb5, 0xf8, 0x08, 0x47, 0xad, 0xd8,
- 0xf3, 0x66, 0x76, 0x29, 0x9a, 0x59, 0x58, 0xca, 0xfe, 0x15, 0x8a, 0x59, 0xf6, 0x83, 0xbe, 0x80,
- 0xb5, 0xa9, 0x23, 0x04, 0xbd, 0x33, 0x7f, 0xa8, 0x4c, 0x33, 0xe8, 0xe9, 0x0c, 0xf2, 0x1c, 0x83,
- 0x9c, 0xc5, 0x90, 0x12, 0xc3, 0xce, 0x27, 0x5f, 0x7d, 0xdc, 0xb5, 0x83, 0xe3, 0xe1, 0x61, 0xb9,
- 0xe3, 0x39, 0x15, 0xaf, 0x4f, 0xdc, 0x8e, 0x37, 0xb0, 0x2a, 0xcc, 0x53, 0x9e, 0x4c, 0xae, 0x17,
- 0x9f, 0xd8, 0x6e, 0x40, 0x06, 0x47, 0x66, 0x87, 0x54, 0x46, 0xcf, 0x2a, 0x5d, 0xaf, 0x62, 0x39,
- 0xf6, 0xe1, 0x2a, 0x4d, 0xe1, 0xb3, 0xff, 0x02, 0x00, 0x00, 0xff, 0xff, 0xb5, 0x09, 0xbd, 0x17,
- 0x8e, 0x14, 0x00, 0x00,
+ // 1380 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x58, 0xdd, 0x72, 0xdb, 0x44,
+ 0x14, 0x46, 0x52, 0x92, 0xd6, 0x27, 0x6d, 0xea, 0x6c, 0xdb, 0xe0, 0xa8, 0xd3, 0x24, 0xa8, 0x53,
+ 0xda, 0x02, 0xb5, 0x3b, 0xee, 0x05, 0xc3, 0x30, 0xfc, 0x38, 0xb1, 0xaa, 0x98, 0xda, 0x92, 0x67,
+ 0xe5, 0x34, 0x53, 0x86, 0x41, 0xa3, 0x58, 0x1b, 0x47, 0x33, 0x96, 0x64, 0x2c, 0xd9, 0x9d, 0x3c,
+ 0x00, 0x17, 0x3c, 0x02, 0x17, 0xcc, 0xf0, 0x06, 0x0c, 0x5c, 0x32, 0xbc, 0x01, 0xb7, 0x5c, 0x31,
+ 0xdc, 0xf0, 0x08, 0xbc, 0x01, 0xe3, 0x5d, 0xc9, 0x3f, 0xb2, 0x64, 0x3b, 0x4e, 0x19, 0x7a, 0x67,
+ 0xef, 0x7e, 0xfb, 0xe9, 0xec, 0xf9, 0xbe, 0x3d, 0x3a, 0x5a, 0xd8, 0xb5, 0x1c, 0xbb, 0x70, 0xf6,
+ 0xca, 0x70, 0x4c, 0xd7, 0x6c, 0x11, 0x87, 0xb8, 0x81, 0xe1, 0x93, 0x6e, 0xdf, 0x6e, 0x92, 0x7c,
+ 0xa7, 0xeb, 0x05, 0x1e, 0x12, 0x2c, 0xc7, 0x16, 0x37, 0x07, 0xa8, 0xa6, 0xe7, 0x38, 0x9e, 0xeb,
+ 0xb3, 0x71, 0xf1, 0x1a, 0x5b, 0x18, 0xfe, 0xbb, 0xd3, 0xf2, 0xbc, 0x56, 0x9b, 0x14, 0xe8, 0xbf,
+ 0x93, 0xde, 0x69, 0x81, 0x38, 0x9d, 0xe0, 0x9c, 0x4d, 0x4a, 0xcf, 0x20, 0x57, 0x3f, 0x3b, 0xf7,
+ 0xed, 0xa6, 0xd9, 0xae, 0xb8, 0x7d, 0xe2, 0x06, 0x5e, 0xf7, 0x1c, 0x93, 0x6f, 0x7a, 0xc4, 0x0f,
+ 0xd0, 0x7b, 0xb0, 0x6e, 0x91, 0xc1, 0xe3, 0x8c, 0x5e, 0xcf, 0xb6, 0x72, 0xdc, 0x1e, 0xf7, 0x70,
+ 0xbd, 0x98, 0xc9, 0x5b, 0x8e, 0x9d, 0x3f, 0xea, 0xd9, 0x16, 0x06, 0x36, 0x3b, 0xf8, 0x2d, 0xfd,
+ 0xcc, 0xc3, 0x76, 0x02, 0x91, 0xdf, 0xf1, 0x5c, 0x9f, 0xa0, 0x7b, 0xb0, 0xe6, 0x07, 0x66, 0xd0,
+ 0xf3, 0x29, 0xc9, 0x46, 0x71, 0x9d, 0x92, 0xe8, 0x74, 0x08, 0x87, 0x53, 0xe8, 0x13, 0x58, 0xeb,
+ 0x12, 0xd3, 0xf7, 0xdc, 0x1c, 0x4f, 0x41, 0xf7, 0x29, 0x28, 0x95, 0x34, 0x8f, 0x29, 0x18, 0x87,
+ 0x8b, 0xd0, 0xfb, 0x90, 0xb1, 0x23, 0x4c, 0x4e, 0xa0, 0xb1, 0x5e, 0xa7, 0x0c, 0x87, 0x66, 0xd7,
+ 0x7a, 0x65, 0x76, 0x09, 0x1e, 0xcd, 0xa3, 0x7b, 0x70, 0x9d, 0x2d, 0x33, 0x2c, 0x12, 0x98, 0x76,
+ 0x3b, 0xb7, 0xb2, 0xc7, 0x3d, 0xcc, 0xe0, 0x6b, 0x6c, 0xb0, 0x4c, 0xc7, 0xa4, 0xaf, 0x61, 0x8d,
+ 0x3d, 0x03, 0xdd, 0x82, 0xec, 0x91, 0x5a, 0x96, 0x9f, 0x55, 0x54, 0xb9, 0x6c, 0x60, 0xb9, 0xa4,
+ 0x6b, 0x6a, 0xf6, 0x2d, 0x84, 0x60, 0xe3, 0x48, 0x7d, 0xae, 0x6a, 0xc7, 0xaa, 0x51, 0x96, 0x5f,
+ 0x54, 0x0e, 0xe4, 0x2c, 0x37, 0x18, 0xab, 0xa8, 0x0d, 0x19, 0xab, 0xa5, 0xaa, 0x21, 0x63, 0xac,
+ 0xe1, 0x2c, 0x8f, 0xb6, 0x00, 0xb1, 0x79, 0xe3, 0x48, 0xc5, 0x72, 0xe9, 0xe0, 0xb0, 0xb4, 0x5f,
+ 0x95, 0xb3, 0x82, 0xf4, 0x23, 0x07, 0xdb, 0x87, 0xc7, 0x07, 0x9e, 0xd3, 0xf1, 0x5c, 0xe2, 0x06,
+ 0x15, 0xf7, 0xd4, 0x53, 0x48, 0xb0, 0x44, 0xf6, 0xd1, 0x13, 0xd8, 0x68, 0x46, 0x34, 0x0c, 0xce,
+ 0xc7, 0xe1, 0xd7, 0x87, 0x00, 0xba, 0xe2, 0xfe, 0xf8, 0x0a, 0xd7, 0x74, 0x08, 0x4d, 0x59, 0x66,
+ 0x0c, 0xa6, 0x9a, 0x0e, 0x91, 0x7e, 0xe7, 0x41, 0x4c, 0x0a, 0xf1, 0x22, 0xba, 0x7e, 0x1a, 0xd3,
+ 0xf5, 0x5d, 0xa6, 0x4a, 0x2a, 0x6b, 0x5c, 0xd8, 0x0f, 0x20, 0x33, 0x0c, 0x2a, 0x14, 0x76, 0x83,
+ 0x52, 0x0c, 0x09, 0xf0, 0x08, 0xb0, 0x98, 0xb2, 0xbd, 0x25, 0x94, 0xbd, 0x0d, 0x9b, 0xd1, 0xd8,
+ 0x81, 0x56, 0xab, 0x6b, 0xaa, 0xac, 0x36, 0xb2, 0x7c, 0x82, 0xe0, 0x42, 0x8a, 0xe0, 0x2b, 0xd2,
+ 0x1f, 0xd3, 0x82, 0xeb, 0x6f, 0x96, 0xe0, 0xa8, 0x08, 0x57, 0x9a, 0x67, 0xa6, 0xdb, 0x22, 0x3e,
+ 0x4d, 0xdc, 0x7a, 0x31, 0x47, 0x19, 0x6b, 0x9e, 0x65, 0x9f, 0xda, 0xe6, 0x49, 0x9b, 0x8c, 0x92,
+ 0x1e, 0x01, 0xa5, 0x5f, 0xa6, 0x4d, 0xa2, 0xff, 0x27, 0x26, 0xd1, 0xd3, 0x4d, 0x32, 0x25, 0xbb,
+ 0x90, 0x20, 0xfb, 0x77, 0xdc, 0x6b, 0xd6, 0xfd, 0x45, 0xa9, 0x5a, 0x29, 0x1b, 0xf5, 0x12, 0x2e,
+ 0xd5, 0xf4, 0xac, 0x90, 0xe0, 0x85, 0x95, 0x14, 0x2f, 0xac, 0x4a, 0x7f, 0xf1, 0x70, 0x47, 0x0f,
+ 0xcc, 0x6e, 0x50, 0x1b, 0x54, 0x77, 0xdb, 0x6d, 0x95, 0xa9, 0xba, 0x17, 0xcb, 0xda, 0x67, 0xb1,
+ 0xac, 0x3d, 0x88, 0x40, 0x69, 0xb4, 0xf1, 0xb4, 0xc5, 0x3c, 0x27, 0xcc, 0xf2, 0xdc, 0x42, 0x27,
+ 0xeb, 0xdb, 0x79, 0x29, 0x16, 0x61, 0x2b, 0xcc, 0x47, 0xa9, 0x8a, 0xe5, 0x52, 0xf9, 0xa5, 0x51,
+ 0x2b, 0xa9, 0x25, 0x45, 0x2e, 0x67, 0x39, 0xf4, 0x0e, 0xdc, 0xd5, 0xea, 0x32, 0x2e, 0x35, 0x2a,
+ 0x9a, 0x3a, 0x9c, 0xae, 0xa8, 0x46, 0x1d, 0x6b, 0x0a, 0x96, 0x75, 0x7d, 0xf1, 0xb4, 0x4b, 0x05,
+ 0xd8, 0xd6, 0x03, 0xaf, 0x13, 0xcf, 0x02, 0x3b, 0x69, 0x08, 0x56, 0xe8, 0x09, 0xe0, 0xe8, 0x06,
+ 0xe8, 0x6f, 0xe9, 0x4f, 0x0e, 0xc4, 0xa4, 0x15, 0x97, 0x37, 0x71, 0x3a, 0xeb, 0x52, 0x26, 0x2e,
+ 0x5e, 0xdc, 0xc3, 0x52, 0x15, 0xb6, 0x68, 0x04, 0xc4, 0x62, 0x01, 0xf8, 0xc3, 0x7d, 0x15, 0xe1,
+ 0x0a, 0x93, 0x78, 0xb0, 0x31, 0x61, 0xf6, 0x79, 0x0f, 0x81, 0xd2, 0x0f, 0x1c, 0x6c, 0xeb, 0x24,
+ 0xa8, 0x7a, 0xad, 0xc1, 0x96, 0x64, 0xd7, 0xea, 0x78, 0xb6, 0xbb, 0x54, 0x19, 0x7b, 0x04, 0xd9,
+ 0x36, 0x63, 0x31, 0x48, 0x48, 0x43, 0x53, 0x97, 0xc1, 0x37, 0xda, 0x93, 0xec, 0xe3, 0x50, 0xda,
+ 0xb9, 0x34, 0xbd, 0x28, 0x3d, 0x11, 0xb4, 0x1e, 0x0e, 0x4b, 0x7f, 0xf3, 0x34, 0x3e, 0x4c, 0x1c,
+ 0x2f, 0x20, 0xa3, 0xf0, 0x2e, 0xdf, 0x8b, 0xa4, 0x92, 0x2e, 0x25, 0xe4, 0xaf, 0xdc, 0x6b, 0xea,
+ 0x2f, 0x44, 0xd8, 0xaa, 0x6a, 0x8a, 0x52, 0x51, 0x15, 0x43, 0x56, 0xcb, 0x75, 0xad, 0xa2, 0x36,
+ 0x86, 0xaf, 0xa2, 0x7b, 0xb0, 0x3b, 0x35, 0x57, 0xc7, 0x5a, 0x43, 0x3b, 0xd0, 0x46, 0x35, 0x6a,
+ 0x1b, 0x6e, 0xd7, 0x74, 0x65, 0xff, 0x48, 0x8f, 0xaf, 0x5f, 0x4d, 0x29, 0x5f, 0x6b, 0x83, 0xf2,
+ 0x25, 0x2a, 0x09, 0x1e, 0xb8, 0xfc, 0x71, 0x49, 0x67, 0x8d, 0x67, 0x39, 0xc9, 0x3d, 0xc2, 0xe2,
+ 0xee, 0x59, 0x49, 0x74, 0xcf, 0xb4, 0x76, 0xab, 0xff, 0x43, 0x6b, 0x78, 0x00, 0x39, 0x9d, 0x04,
+ 0x35, 0xbf, 0xb5, 0xdf, 0xf3, 0xe3, 0x07, 0xec, 0x01, 0xdc, 0x70, 0xfc, 0xd6, 0x49, 0xcf, 0x1f,
+ 0xed, 0x9a, 0x15, 0xb2, 0x0d, 0x36, 0x1c, 0xe1, 0xa5, 0xef, 0x79, 0xd8, 0x56, 0xa6, 0x59, 0x2e,
+ 0x7f, 0x0e, 0x52, 0x49, 0xe3, 0x0a, 0x25, 0x84, 0x2a, 0x24, 0x85, 0xba, 0xd8, 0xbb, 0xe5, 0x8b,
+ 0xf9, 0x49, 0x8f, 0x25, 0x98, 0x4b, 0x49, 0x30, 0x2f, 0xbd, 0x84, 0xac, 0xec, 0x06, 0x76, 0x60,
+ 0x13, 0xbf, 0xea, 0xb5, 0xaa, 0xa4, 0x4f, 0xda, 0xe8, 0x11, 0x5c, 0x6d, 0x87, 0xbf, 0xc3, 0x9c,
+ 0xb0, 0x0f, 0x88, 0x08, 0x80, 0x87, 0xd3, 0x48, 0x84, 0xab, 0x24, 0x5c, 0x9e, 0xe3, 0xf7, 0x84,
+ 0x87, 0x19, 0x3c, 0xfc, 0x2f, 0xf5, 0x00, 0xb1, 0xea, 0xc8, 0x16, 0x2d, 0x51, 0x16, 0x9f, 0x42,
+ 0xa6, 0x3d, 0xf8, 0x64, 0xeb, 0x93, 0x36, 0xa3, 0x5f, 0x2f, 0xde, 0xa6, 0xc8, 0x78, 0xc8, 0x78,
+ 0x84, 0x93, 0x7e, 0xe3, 0xe1, 0xe6, 0xc4, 0x73, 0x43, 0x9d, 0x2f, 0xf2, 0xe0, 0x91, 0x27, 0xf8,
+ 0x74, 0x4f, 0x7c, 0x38, 0xf4, 0x84, 0x40, 0x41, 0xbb, 0x51, 0x6d, 0x8c, 0x3f, 0x7a, 0x6e, 0x55,
+ 0x4c, 0x12, 0xb9, 0xff, 0xfa, 0x4e, 0x56, 0x84, 0xab, 0x6a, 0x83, 0xe2, 0xd7, 0xa8, 0x34, 0x5e,
+ 0xce, 0xe8, 0xcd, 0xbf, 0x02, 0xa4, 0x5c, 0x4e, 0xb5, 0x59, 0x9e, 0xf8, 0x87, 0x87, 0x9b, 0xca,
+ 0x25, 0xc5, 0x61, 0xae, 0xa8, 0x2e, 0xe8, 0x0a, 0x86, 0x1b, 0x53, 0x54, 0x58, 0x44, 0xd1, 0x95,
+ 0x31, 0x45, 0x95, 0x25, 0x14, 0x5d, 0x7d, 0x83, 0x14, 0x3d, 0x1c, 0xbe, 0xa1, 0x06, 0x7d, 0x4c,
+ 0x94, 0xa4, 0x25, 0x94, 0x2d, 0xfe, 0x74, 0x15, 0xb6, 0x55, 0x33, 0xb0, 0xfb, 0xe4, 0xf0, 0xb8,
+ 0x36, 0xbc, 0x8c, 0xd1, 0xd9, 0x5d, 0x0c, 0xd2, 0xe1, 0x66, 0x42, 0xc7, 0x8d, 0x52, 0x1b, 0x29,
+ 0x71, 0x6f, 0x5e, 0x97, 0xfe, 0x84, 0x43, 0x47, 0x80, 0xa6, 0xfb, 0x46, 0xb4, 0x93, 0xda, 0x50,
+ 0xd2, 0x4d, 0x89, 0xbb, 0x73, 0x1a, 0x4e, 0x74, 0x08, 0x9b, 0x83, 0xe2, 0x3d, 0xd1, 0x0b, 0xa2,
+ 0xad, 0x3c, 0xbb, 0x21, 0xca, 0x47, 0x37, 0x44, 0x79, 0xd9, 0xe9, 0x04, 0xe7, 0xe2, 0x1d, 0xb6,
+ 0x83, 0xe4, 0xc6, 0xf1, 0x18, 0x6e, 0x29, 0x24, 0x98, 0xba, 0x9d, 0x41, 0x77, 0xd3, 0x6e, 0x6d,
+ 0x58, 0x84, 0x3b, 0xb3, 0x2f, 0x75, 0x9e, 0x70, 0xe8, 0x98, 0x1e, 0xc4, 0xd8, 0x97, 0x5f, 0xb8,
+ 0xf3, 0xd4, 0xdb, 0x92, 0x70, 0xe7, 0xe9, 0x97, 0x0a, 0x61, 0x4a, 0x17, 0x24, 0xd6, 0xe7, 0x10,
+ 0x8f, 0x7f, 0xde, 0x36, 0xa2, 0x72, 0x3f, 0xd1, 0x70, 0xec, 0x8c, 0x15, 0xc5, 0x84, 0x2e, 0x59,
+ 0xdc, 0x99, 0xdd, 0x50, 0xa2, 0x67, 0x51, 0x39, 0x9a, 0x60, 0xbd, 0x31, 0x71, 0xa1, 0x55, 0x29,
+ 0x8b, 0xbb, 0x73, 0x5a, 0x26, 0x84, 0x61, 0x73, 0xaa, 0x91, 0x08, 0x35, 0x4a, 0x6b, 0x30, 0xe6,
+ 0xc6, 0xf6, 0x9c, 0x99, 0x68, 0x92, 0x33, 0xcd, 0x44, 0x3b, 0xb3, 0x3b, 0x06, 0x54, 0x8f, 0x0a,
+ 0xe3, 0xc4, 0x29, 0x45, 0x13, 0x1b, 0x4b, 0x38, 0xbf, 0x62, 0x2e, 0xad, 0x46, 0xa1, 0xcf, 0x61,
+ 0x7d, 0xec, 0x65, 0x84, 0xde, 0x9e, 0x7e, 0x3d, 0x8d, 0x33, 0xe8, 0xc9, 0x0c, 0xca, 0x14, 0x83,
+ 0x92, 0xc6, 0x90, 0x10, 0xc3, 0xfe, 0xc7, 0x5f, 0x7e, 0xd4, 0xb2, 0x83, 0xb3, 0xde, 0x49, 0xbe,
+ 0xe9, 0x39, 0x05, 0xaf, 0x43, 0xdc, 0xa6, 0xd7, 0xb5, 0x0a, 0xac, 0xa6, 0x3c, 0x1e, 0x5d, 0xe8,
+ 0x3e, 0xb6, 0xdd, 0x80, 0x74, 0x4f, 0xcd, 0x26, 0x29, 0xf4, 0x9f, 0x16, 0x5a, 0x5e, 0xc1, 0x72,
+ 0xec, 0x93, 0x35, 0x9a, 0xc2, 0xa7, 0xff, 0x06, 0x00, 0x00, 0xff, 0xff, 0xbf, 0x86, 0x1b, 0xa1,
+ 0x00, 0x16, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.