mirror of https://github.com/grpc/grpc-go.git
internal: update service_config.pb.go (#3584)
This commit is contained in:
parent
fe604e1fdf
commit
661d4c9630
|
|
@ -63,7 +63,7 @@ func (x ServiceConfig_LoadBalancingPolicy) String() string {
|
|||
}
|
||||
|
||||
func (ServiceConfig_LoadBalancingPolicy) EnumDescriptor() ([]byte, []int) {
|
||||
return fileDescriptor_e32d3cb2c41c77ce, []int{7, 0}
|
||||
return fileDescriptor_e32d3cb2c41c77ce, []int{11, 0}
|
||||
}
|
||||
|
||||
// Configuration for a method.
|
||||
|
|
@ -535,6 +535,194 @@ func (m *RoundRobinConfig) XXX_DiscardUnknown() {
|
|||
|
||||
var xxx_messageInfo_RoundRobinConfig proto.InternalMessageInfo
|
||||
|
||||
// Configuration for priority LB policy.
|
||||
type PriorityLoadBalancingPolicyConfig struct {
|
||||
Children map[string]*PriorityLoadBalancingPolicyConfig_Child `protobuf:"bytes,1,rep,name=children,proto3" json:"children,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
|
||||
// A list of child names in decreasing priority order
|
||||
// (i.e., first element is the highest priority).
|
||||
Priorities []string `protobuf:"bytes,2,rep,name=priorities,proto3" json:"priorities,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *PriorityLoadBalancingPolicyConfig) Reset() { *m = PriorityLoadBalancingPolicyConfig{} }
|
||||
func (m *PriorityLoadBalancingPolicyConfig) String() string { return proto.CompactTextString(m) }
|
||||
func (*PriorityLoadBalancingPolicyConfig) ProtoMessage() {}
|
||||
func (*PriorityLoadBalancingPolicyConfig) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_e32d3cb2c41c77ce, []int{3}
|
||||
}
|
||||
|
||||
func (m *PriorityLoadBalancingPolicyConfig) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_PriorityLoadBalancingPolicyConfig.Unmarshal(m, b)
|
||||
}
|
||||
func (m *PriorityLoadBalancingPolicyConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_PriorityLoadBalancingPolicyConfig.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *PriorityLoadBalancingPolicyConfig) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_PriorityLoadBalancingPolicyConfig.Merge(m, src)
|
||||
}
|
||||
func (m *PriorityLoadBalancingPolicyConfig) XXX_Size() int {
|
||||
return xxx_messageInfo_PriorityLoadBalancingPolicyConfig.Size(m)
|
||||
}
|
||||
func (m *PriorityLoadBalancingPolicyConfig) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_PriorityLoadBalancingPolicyConfig.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_PriorityLoadBalancingPolicyConfig proto.InternalMessageInfo
|
||||
|
||||
func (m *PriorityLoadBalancingPolicyConfig) GetChildren() map[string]*PriorityLoadBalancingPolicyConfig_Child {
|
||||
if m != nil {
|
||||
return m.Children
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *PriorityLoadBalancingPolicyConfig) GetPriorities() []string {
|
||||
if m != nil {
|
||||
return m.Priorities
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// A map of name to child policy configuration.
|
||||
// The names are used to allow the priority policy to update
|
||||
// existing child policies instead of creating new ones every
|
||||
// time it receives a config update.
|
||||
type PriorityLoadBalancingPolicyConfig_Child struct {
|
||||
Config []*LoadBalancingConfig `protobuf:"bytes,1,rep,name=config,proto3" json:"config,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *PriorityLoadBalancingPolicyConfig_Child) Reset() {
|
||||
*m = PriorityLoadBalancingPolicyConfig_Child{}
|
||||
}
|
||||
func (m *PriorityLoadBalancingPolicyConfig_Child) String() string { return proto.CompactTextString(m) }
|
||||
func (*PriorityLoadBalancingPolicyConfig_Child) ProtoMessage() {}
|
||||
func (*PriorityLoadBalancingPolicyConfig_Child) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_e32d3cb2c41c77ce, []int{3, 0}
|
||||
}
|
||||
|
||||
func (m *PriorityLoadBalancingPolicyConfig_Child) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_PriorityLoadBalancingPolicyConfig_Child.Unmarshal(m, b)
|
||||
}
|
||||
func (m *PriorityLoadBalancingPolicyConfig_Child) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_PriorityLoadBalancingPolicyConfig_Child.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *PriorityLoadBalancingPolicyConfig_Child) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_PriorityLoadBalancingPolicyConfig_Child.Merge(m, src)
|
||||
}
|
||||
func (m *PriorityLoadBalancingPolicyConfig_Child) XXX_Size() int {
|
||||
return xxx_messageInfo_PriorityLoadBalancingPolicyConfig_Child.Size(m)
|
||||
}
|
||||
func (m *PriorityLoadBalancingPolicyConfig_Child) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_PriorityLoadBalancingPolicyConfig_Child.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_PriorityLoadBalancingPolicyConfig_Child proto.InternalMessageInfo
|
||||
|
||||
func (m *PriorityLoadBalancingPolicyConfig_Child) GetConfig() []*LoadBalancingConfig {
|
||||
if m != nil {
|
||||
return m.Config
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// Configuration for weighted_target LB policy.
|
||||
type WeightedTargetLoadBalancingPolicyConfig struct {
|
||||
Targets map[string]*WeightedTargetLoadBalancingPolicyConfig_Target `protobuf:"bytes,1,rep,name=targets,proto3" json:"targets,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *WeightedTargetLoadBalancingPolicyConfig) Reset() {
|
||||
*m = WeightedTargetLoadBalancingPolicyConfig{}
|
||||
}
|
||||
func (m *WeightedTargetLoadBalancingPolicyConfig) String() string { return proto.CompactTextString(m) }
|
||||
func (*WeightedTargetLoadBalancingPolicyConfig) ProtoMessage() {}
|
||||
func (*WeightedTargetLoadBalancingPolicyConfig) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_e32d3cb2c41c77ce, []int{4}
|
||||
}
|
||||
|
||||
func (m *WeightedTargetLoadBalancingPolicyConfig) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_WeightedTargetLoadBalancingPolicyConfig.Unmarshal(m, b)
|
||||
}
|
||||
func (m *WeightedTargetLoadBalancingPolicyConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_WeightedTargetLoadBalancingPolicyConfig.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *WeightedTargetLoadBalancingPolicyConfig) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_WeightedTargetLoadBalancingPolicyConfig.Merge(m, src)
|
||||
}
|
||||
func (m *WeightedTargetLoadBalancingPolicyConfig) XXX_Size() int {
|
||||
return xxx_messageInfo_WeightedTargetLoadBalancingPolicyConfig.Size(m)
|
||||
}
|
||||
func (m *WeightedTargetLoadBalancingPolicyConfig) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_WeightedTargetLoadBalancingPolicyConfig.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_WeightedTargetLoadBalancingPolicyConfig proto.InternalMessageInfo
|
||||
|
||||
func (m *WeightedTargetLoadBalancingPolicyConfig) GetTargets() map[string]*WeightedTargetLoadBalancingPolicyConfig_Target {
|
||||
if m != nil {
|
||||
return m.Targets
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
type WeightedTargetLoadBalancingPolicyConfig_Target struct {
|
||||
Weight uint32 `protobuf:"varint,1,opt,name=weight,proto3" json:"weight,omitempty"`
|
||||
ChildPolicy []*LoadBalancingConfig `protobuf:"bytes,2,rep,name=child_policy,json=childPolicy,proto3" json:"child_policy,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *WeightedTargetLoadBalancingPolicyConfig_Target) Reset() {
|
||||
*m = WeightedTargetLoadBalancingPolicyConfig_Target{}
|
||||
}
|
||||
func (m *WeightedTargetLoadBalancingPolicyConfig_Target) String() string {
|
||||
return proto.CompactTextString(m)
|
||||
}
|
||||
func (*WeightedTargetLoadBalancingPolicyConfig_Target) ProtoMessage() {}
|
||||
func (*WeightedTargetLoadBalancingPolicyConfig_Target) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_e32d3cb2c41c77ce, []int{4, 0}
|
||||
}
|
||||
|
||||
func (m *WeightedTargetLoadBalancingPolicyConfig_Target) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_WeightedTargetLoadBalancingPolicyConfig_Target.Unmarshal(m, b)
|
||||
}
|
||||
func (m *WeightedTargetLoadBalancingPolicyConfig_Target) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_WeightedTargetLoadBalancingPolicyConfig_Target.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *WeightedTargetLoadBalancingPolicyConfig_Target) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_WeightedTargetLoadBalancingPolicyConfig_Target.Merge(m, src)
|
||||
}
|
||||
func (m *WeightedTargetLoadBalancingPolicyConfig_Target) XXX_Size() int {
|
||||
return xxx_messageInfo_WeightedTargetLoadBalancingPolicyConfig_Target.Size(m)
|
||||
}
|
||||
func (m *WeightedTargetLoadBalancingPolicyConfig_Target) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_WeightedTargetLoadBalancingPolicyConfig_Target.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_WeightedTargetLoadBalancingPolicyConfig_Target proto.InternalMessageInfo
|
||||
|
||||
func (m *WeightedTargetLoadBalancingPolicyConfig_Target) GetWeight() uint32 {
|
||||
if m != nil {
|
||||
return m.Weight
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *WeightedTargetLoadBalancingPolicyConfig_Target) GetChildPolicy() []*LoadBalancingConfig {
|
||||
if m != nil {
|
||||
return m.ChildPolicy
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// Configuration for grpclb LB policy.
|
||||
type GrpcLbConfig struct {
|
||||
// Optional. What LB policy to use for routing between the backend
|
||||
|
|
@ -556,7 +744,7 @@ func (m *GrpcLbConfig) Reset() { *m = GrpcLbConfig{} }
|
|||
func (m *GrpcLbConfig) String() string { return proto.CompactTextString(m) }
|
||||
func (*GrpcLbConfig) ProtoMessage() {}
|
||||
func (*GrpcLbConfig) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_e32d3cb2c41c77ce, []int{3}
|
||||
return fileDescriptor_e32d3cb2c41c77ce, []int{5}
|
||||
}
|
||||
|
||||
func (m *GrpcLbConfig) XXX_Unmarshal(b []byte) error {
|
||||
|
|
@ -603,7 +791,7 @@ func (m *CdsConfig) Reset() { *m = CdsConfig{} }
|
|||
func (m *CdsConfig) String() string { return proto.CompactTextString(m) }
|
||||
func (*CdsConfig) ProtoMessage() {}
|
||||
func (*CdsConfig) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_e32d3cb2c41c77ce, []int{4}
|
||||
return fileDescriptor_e32d3cb2c41c77ce, []int{6}
|
||||
}
|
||||
|
||||
func (m *CdsConfig) XXX_Unmarshal(b []byte) error {
|
||||
|
|
@ -662,7 +850,7 @@ func (m *XdsConfig) Reset() { *m = XdsConfig{} }
|
|||
func (m *XdsConfig) String() string { return proto.CompactTextString(m) }
|
||||
func (*XdsConfig) ProtoMessage() {}
|
||||
func (*XdsConfig) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_e32d3cb2c41c77ce, []int{5}
|
||||
return fileDescriptor_e32d3cb2c41c77ce, []int{7}
|
||||
}
|
||||
|
||||
func (m *XdsConfig) XXX_Unmarshal(b []byte) error {
|
||||
|
|
@ -719,6 +907,230 @@ func (m *XdsConfig) GetLrsLoadReportingServerName() *wrappers.StringValue {
|
|||
return nil
|
||||
}
|
||||
|
||||
// Configuration for eds LB policy.
|
||||
type EdsLoadBalancingPolicyConfig struct {
|
||||
// Cluster name. Required.
|
||||
Cluster string `protobuf:"bytes,1,opt,name=cluster,proto3" json:"cluster,omitempty"`
|
||||
// EDS service name, as returned in CDS.
|
||||
// May be unset if not specified in CDS.
|
||||
EdsServiceName string `protobuf:"bytes,2,opt,name=eds_service_name,json=edsServiceName,proto3" json:"eds_service_name,omitempty"`
|
||||
// Server to send load reports to.
|
||||
// If unset, no load reporting is done.
|
||||
// If set to empty string, load reporting will be sent to the same
|
||||
// server as we are getting xds data from.
|
||||
LrsLoadReportingServerName *wrappers.StringValue `protobuf:"bytes,3,opt,name=lrs_load_reporting_server_name,json=lrsLoadReportingServerName,proto3" json:"lrs_load_reporting_server_name,omitempty"`
|
||||
// Locality-picking policy.
|
||||
// This policy's config is expected to be in the format used
|
||||
// by the weighted_target policy. Note that the config should include
|
||||
// an empty value for the "targets" field; that empty value will be
|
||||
// replaced by one that is dynamically generated based on the EDS data.
|
||||
// Optional; defaults to "weighted_target".
|
||||
LocalityPickingPolicy []*LoadBalancingConfig `protobuf:"bytes,4,rep,name=locality_picking_policy,json=localityPickingPolicy,proto3" json:"locality_picking_policy,omitempty"`
|
||||
// Endpoint-picking policy.
|
||||
// This will be configured as the policy for each child in the
|
||||
// locality-policy's config.
|
||||
// Optional; defaults to "round_robin".
|
||||
EndpointPickingPolicy []*LoadBalancingConfig `protobuf:"bytes,5,rep,name=endpoint_picking_policy,json=endpointPickingPolicy,proto3" json:"endpoint_picking_policy,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *EdsLoadBalancingPolicyConfig) Reset() { *m = EdsLoadBalancingPolicyConfig{} }
|
||||
func (m *EdsLoadBalancingPolicyConfig) String() string { return proto.CompactTextString(m) }
|
||||
func (*EdsLoadBalancingPolicyConfig) ProtoMessage() {}
|
||||
func (*EdsLoadBalancingPolicyConfig) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_e32d3cb2c41c77ce, []int{8}
|
||||
}
|
||||
|
||||
func (m *EdsLoadBalancingPolicyConfig) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_EdsLoadBalancingPolicyConfig.Unmarshal(m, b)
|
||||
}
|
||||
func (m *EdsLoadBalancingPolicyConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_EdsLoadBalancingPolicyConfig.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *EdsLoadBalancingPolicyConfig) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_EdsLoadBalancingPolicyConfig.Merge(m, src)
|
||||
}
|
||||
func (m *EdsLoadBalancingPolicyConfig) XXX_Size() int {
|
||||
return xxx_messageInfo_EdsLoadBalancingPolicyConfig.Size(m)
|
||||
}
|
||||
func (m *EdsLoadBalancingPolicyConfig) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_EdsLoadBalancingPolicyConfig.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_EdsLoadBalancingPolicyConfig proto.InternalMessageInfo
|
||||
|
||||
func (m *EdsLoadBalancingPolicyConfig) GetCluster() string {
|
||||
if m != nil {
|
||||
return m.Cluster
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *EdsLoadBalancingPolicyConfig) GetEdsServiceName() string {
|
||||
if m != nil {
|
||||
return m.EdsServiceName
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *EdsLoadBalancingPolicyConfig) GetLrsLoadReportingServerName() *wrappers.StringValue {
|
||||
if m != nil {
|
||||
return m.LrsLoadReportingServerName
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *EdsLoadBalancingPolicyConfig) GetLocalityPickingPolicy() []*LoadBalancingConfig {
|
||||
if m != nil {
|
||||
return m.LocalityPickingPolicy
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *EdsLoadBalancingPolicyConfig) GetEndpointPickingPolicy() []*LoadBalancingConfig {
|
||||
if m != nil {
|
||||
return m.EndpointPickingPolicy
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// Configuration for lrs LB policy.
|
||||
type LrsLoadBalancingPolicyConfig struct {
|
||||
// Cluster name. Required.
|
||||
ClusterName string `protobuf:"bytes,1,opt,name=cluster_name,json=clusterName,proto3" json:"cluster_name,omitempty"`
|
||||
// EDS service name, as returned in CDS.
|
||||
// May be unset if not specified in CDS.
|
||||
EdsServiceName string `protobuf:"bytes,2,opt,name=eds_service_name,json=edsServiceName,proto3" json:"eds_service_name,omitempty"`
|
||||
// Server to send load reports to. Required.
|
||||
// If set to empty string, load reporting will be sent to the same
|
||||
// server as we are getting xds data from.
|
||||
LrsLoadReportingServerName string `protobuf:"bytes,3,opt,name=lrs_load_reporting_server_name,json=lrsLoadReportingServerName,proto3" json:"lrs_load_reporting_server_name,omitempty"`
|
||||
Locality *LrsLoadBalancingPolicyConfig_Locality `protobuf:"bytes,4,opt,name=locality,proto3" json:"locality,omitempty"`
|
||||
// Endpoint-picking policy.
|
||||
ChildPolicy []*LoadBalancingConfig `protobuf:"bytes,5,rep,name=child_policy,json=childPolicy,proto3" json:"child_policy,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *LrsLoadBalancingPolicyConfig) Reset() { *m = LrsLoadBalancingPolicyConfig{} }
|
||||
func (m *LrsLoadBalancingPolicyConfig) String() string { return proto.CompactTextString(m) }
|
||||
func (*LrsLoadBalancingPolicyConfig) ProtoMessage() {}
|
||||
func (*LrsLoadBalancingPolicyConfig) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_e32d3cb2c41c77ce, []int{9}
|
||||
}
|
||||
|
||||
func (m *LrsLoadBalancingPolicyConfig) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_LrsLoadBalancingPolicyConfig.Unmarshal(m, b)
|
||||
}
|
||||
func (m *LrsLoadBalancingPolicyConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_LrsLoadBalancingPolicyConfig.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *LrsLoadBalancingPolicyConfig) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_LrsLoadBalancingPolicyConfig.Merge(m, src)
|
||||
}
|
||||
func (m *LrsLoadBalancingPolicyConfig) XXX_Size() int {
|
||||
return xxx_messageInfo_LrsLoadBalancingPolicyConfig.Size(m)
|
||||
}
|
||||
func (m *LrsLoadBalancingPolicyConfig) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_LrsLoadBalancingPolicyConfig.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_LrsLoadBalancingPolicyConfig proto.InternalMessageInfo
|
||||
|
||||
func (m *LrsLoadBalancingPolicyConfig) GetClusterName() string {
|
||||
if m != nil {
|
||||
return m.ClusterName
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *LrsLoadBalancingPolicyConfig) GetEdsServiceName() string {
|
||||
if m != nil {
|
||||
return m.EdsServiceName
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *LrsLoadBalancingPolicyConfig) GetLrsLoadReportingServerName() string {
|
||||
if m != nil {
|
||||
return m.LrsLoadReportingServerName
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *LrsLoadBalancingPolicyConfig) GetLocality() *LrsLoadBalancingPolicyConfig_Locality {
|
||||
if m != nil {
|
||||
return m.Locality
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *LrsLoadBalancingPolicyConfig) GetChildPolicy() []*LoadBalancingConfig {
|
||||
if m != nil {
|
||||
return m.ChildPolicy
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// The locality for which this policy will report load. Required.
|
||||
type LrsLoadBalancingPolicyConfig_Locality struct {
|
||||
Region string `protobuf:"bytes,1,opt,name=region,proto3" json:"region,omitempty"`
|
||||
Zone string `protobuf:"bytes,2,opt,name=zone,proto3" json:"zone,omitempty"`
|
||||
Subzone string `protobuf:"bytes,3,opt,name=subzone,proto3" json:"subzone,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *LrsLoadBalancingPolicyConfig_Locality) Reset() { *m = LrsLoadBalancingPolicyConfig_Locality{} }
|
||||
func (m *LrsLoadBalancingPolicyConfig_Locality) String() string { return proto.CompactTextString(m) }
|
||||
func (*LrsLoadBalancingPolicyConfig_Locality) ProtoMessage() {}
|
||||
func (*LrsLoadBalancingPolicyConfig_Locality) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_e32d3cb2c41c77ce, []int{9, 0}
|
||||
}
|
||||
|
||||
func (m *LrsLoadBalancingPolicyConfig_Locality) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_LrsLoadBalancingPolicyConfig_Locality.Unmarshal(m, b)
|
||||
}
|
||||
func (m *LrsLoadBalancingPolicyConfig_Locality) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_LrsLoadBalancingPolicyConfig_Locality.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *LrsLoadBalancingPolicyConfig_Locality) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_LrsLoadBalancingPolicyConfig_Locality.Merge(m, src)
|
||||
}
|
||||
func (m *LrsLoadBalancingPolicyConfig_Locality) XXX_Size() int {
|
||||
return xxx_messageInfo_LrsLoadBalancingPolicyConfig_Locality.Size(m)
|
||||
}
|
||||
func (m *LrsLoadBalancingPolicyConfig_Locality) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_LrsLoadBalancingPolicyConfig_Locality.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_LrsLoadBalancingPolicyConfig_Locality proto.InternalMessageInfo
|
||||
|
||||
func (m *LrsLoadBalancingPolicyConfig_Locality) GetRegion() string {
|
||||
if m != nil {
|
||||
return m.Region
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *LrsLoadBalancingPolicyConfig_Locality) GetZone() string {
|
||||
if m != nil {
|
||||
return m.Zone
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *LrsLoadBalancingPolicyConfig_Locality) GetSubzone() string {
|
||||
if m != nil {
|
||||
return m.Subzone
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
// Selects LB policy and provides corresponding configuration.
|
||||
//
|
||||
// In general, all instances of this field should be repeated. Clients will
|
||||
|
|
@ -737,7 +1149,11 @@ type LoadBalancingConfig struct {
|
|||
// *LoadBalancingConfig_PickFirst
|
||||
// *LoadBalancingConfig_RoundRobin
|
||||
// *LoadBalancingConfig_Grpclb
|
||||
// *LoadBalancingConfig_Priority
|
||||
// *LoadBalancingConfig_WeightedTarget
|
||||
// *LoadBalancingConfig_Cds
|
||||
// *LoadBalancingConfig_Eds
|
||||
// *LoadBalancingConfig_Lrs
|
||||
// *LoadBalancingConfig_Xds
|
||||
// *LoadBalancingConfig_XdsExperimental
|
||||
Policy isLoadBalancingConfig_Policy `protobuf_oneof:"policy"`
|
||||
|
|
@ -750,7 +1166,7 @@ func (m *LoadBalancingConfig) Reset() { *m = LoadBalancingConfig{} }
|
|||
func (m *LoadBalancingConfig) String() string { return proto.CompactTextString(m) }
|
||||
func (*LoadBalancingConfig) ProtoMessage() {}
|
||||
func (*LoadBalancingConfig) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_e32d3cb2c41c77ce, []int{6}
|
||||
return fileDescriptor_e32d3cb2c41c77ce, []int{10}
|
||||
}
|
||||
|
||||
func (m *LoadBalancingConfig) XXX_Unmarshal(b []byte) error {
|
||||
|
|
@ -787,10 +1203,26 @@ type LoadBalancingConfig_Grpclb struct {
|
|||
Grpclb *GrpcLbConfig `protobuf:"bytes,3,opt,name=grpclb,proto3,oneof"`
|
||||
}
|
||||
|
||||
type LoadBalancingConfig_Priority struct {
|
||||
Priority *PriorityLoadBalancingPolicyConfig `protobuf:"bytes,9,opt,name=priority,proto3,oneof"`
|
||||
}
|
||||
|
||||
type LoadBalancingConfig_WeightedTarget struct {
|
||||
WeightedTarget *WeightedTargetLoadBalancingPolicyConfig `protobuf:"bytes,10,opt,name=weighted_target,json=weightedTarget,proto3,oneof"`
|
||||
}
|
||||
|
||||
type LoadBalancingConfig_Cds struct {
|
||||
Cds *CdsConfig `protobuf:"bytes,6,opt,name=cds,proto3,oneof"`
|
||||
}
|
||||
|
||||
type LoadBalancingConfig_Eds struct {
|
||||
Eds *EdsLoadBalancingPolicyConfig `protobuf:"bytes,7,opt,name=eds,proto3,oneof"`
|
||||
}
|
||||
|
||||
type LoadBalancingConfig_Lrs struct {
|
||||
Lrs *LrsLoadBalancingPolicyConfig `protobuf:"bytes,8,opt,name=lrs,proto3,oneof"`
|
||||
}
|
||||
|
||||
type LoadBalancingConfig_Xds struct {
|
||||
Xds *XdsConfig `protobuf:"bytes,2,opt,name=xds,proto3,oneof"`
|
||||
}
|
||||
|
|
@ -805,8 +1237,16 @@ func (*LoadBalancingConfig_RoundRobin) isLoadBalancingConfig_Policy() {}
|
|||
|
||||
func (*LoadBalancingConfig_Grpclb) isLoadBalancingConfig_Policy() {}
|
||||
|
||||
func (*LoadBalancingConfig_Priority) isLoadBalancingConfig_Policy() {}
|
||||
|
||||
func (*LoadBalancingConfig_WeightedTarget) isLoadBalancingConfig_Policy() {}
|
||||
|
||||
func (*LoadBalancingConfig_Cds) isLoadBalancingConfig_Policy() {}
|
||||
|
||||
func (*LoadBalancingConfig_Eds) isLoadBalancingConfig_Policy() {}
|
||||
|
||||
func (*LoadBalancingConfig_Lrs) isLoadBalancingConfig_Policy() {}
|
||||
|
||||
func (*LoadBalancingConfig_Xds) isLoadBalancingConfig_Policy() {}
|
||||
|
||||
func (*LoadBalancingConfig_XdsExperimental) isLoadBalancingConfig_Policy() {}
|
||||
|
|
@ -839,6 +1279,20 @@ func (m *LoadBalancingConfig) GetGrpclb() *GrpcLbConfig {
|
|||
return nil
|
||||
}
|
||||
|
||||
func (m *LoadBalancingConfig) GetPriority() *PriorityLoadBalancingPolicyConfig {
|
||||
if x, ok := m.GetPolicy().(*LoadBalancingConfig_Priority); ok {
|
||||
return x.Priority
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *LoadBalancingConfig) GetWeightedTarget() *WeightedTargetLoadBalancingPolicyConfig {
|
||||
if x, ok := m.GetPolicy().(*LoadBalancingConfig_WeightedTarget); ok {
|
||||
return x.WeightedTarget
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *LoadBalancingConfig) GetCds() *CdsConfig {
|
||||
if x, ok := m.GetPolicy().(*LoadBalancingConfig_Cds); ok {
|
||||
return x.Cds
|
||||
|
|
@ -846,6 +1300,21 @@ func (m *LoadBalancingConfig) GetCds() *CdsConfig {
|
|||
return nil
|
||||
}
|
||||
|
||||
func (m *LoadBalancingConfig) GetEds() *EdsLoadBalancingPolicyConfig {
|
||||
if x, ok := m.GetPolicy().(*LoadBalancingConfig_Eds); ok {
|
||||
return x.Eds
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *LoadBalancingConfig) GetLrs() *LrsLoadBalancingPolicyConfig {
|
||||
if x, ok := m.GetPolicy().(*LoadBalancingConfig_Lrs); ok {
|
||||
return x.Lrs
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// Deprecated: Do not use.
|
||||
func (m *LoadBalancingConfig) GetXds() *XdsConfig {
|
||||
if x, ok := m.GetPolicy().(*LoadBalancingConfig_Xds); ok {
|
||||
return x.Xds
|
||||
|
|
@ -853,6 +1322,7 @@ func (m *LoadBalancingConfig) GetXds() *XdsConfig {
|
|||
return nil
|
||||
}
|
||||
|
||||
// Deprecated: Do not use.
|
||||
func (m *LoadBalancingConfig) GetXdsExperimental() *XdsConfig {
|
||||
if x, ok := m.GetPolicy().(*LoadBalancingConfig_XdsExperimental); ok {
|
||||
return x.XdsExperimental
|
||||
|
|
@ -866,7 +1336,11 @@ func (*LoadBalancingConfig) XXX_OneofWrappers() []interface{} {
|
|||
(*LoadBalancingConfig_PickFirst)(nil),
|
||||
(*LoadBalancingConfig_RoundRobin)(nil),
|
||||
(*LoadBalancingConfig_Grpclb)(nil),
|
||||
(*LoadBalancingConfig_Priority)(nil),
|
||||
(*LoadBalancingConfig_WeightedTarget)(nil),
|
||||
(*LoadBalancingConfig_Cds)(nil),
|
||||
(*LoadBalancingConfig_Eds)(nil),
|
||||
(*LoadBalancingConfig_Lrs)(nil),
|
||||
(*LoadBalancingConfig_Xds)(nil),
|
||||
(*LoadBalancingConfig_XdsExperimental)(nil),
|
||||
}
|
||||
|
|
@ -893,7 +1367,7 @@ func (m *ServiceConfig) Reset() { *m = ServiceConfig{} }
|
|||
func (m *ServiceConfig) String() string { return proto.CompactTextString(m) }
|
||||
func (*ServiceConfig) ProtoMessage() {}
|
||||
func (*ServiceConfig) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_e32d3cb2c41c77ce, []int{7}
|
||||
return fileDescriptor_e32d3cb2c41c77ce, []int{11}
|
||||
}
|
||||
|
||||
func (m *ServiceConfig) XXX_Unmarshal(b []byte) error {
|
||||
|
|
@ -984,7 +1458,7 @@ func (m *ServiceConfig_RetryThrottlingPolicy) Reset() { *m = ServiceConf
|
|||
func (m *ServiceConfig_RetryThrottlingPolicy) String() string { return proto.CompactTextString(m) }
|
||||
func (*ServiceConfig_RetryThrottlingPolicy) ProtoMessage() {}
|
||||
func (*ServiceConfig_RetryThrottlingPolicy) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_e32d3cb2c41c77ce, []int{7, 0}
|
||||
return fileDescriptor_e32d3cb2c41c77ce, []int{11, 0}
|
||||
}
|
||||
|
||||
func (m *ServiceConfig_RetryThrottlingPolicy) XXX_Unmarshal(b []byte) error {
|
||||
|
|
@ -1031,7 +1505,7 @@ func (m *ServiceConfig_HealthCheckConfig) Reset() { *m = ServiceConfig_H
|
|||
func (m *ServiceConfig_HealthCheckConfig) String() string { return proto.CompactTextString(m) }
|
||||
func (*ServiceConfig_HealthCheckConfig) ProtoMessage() {}
|
||||
func (*ServiceConfig_HealthCheckConfig) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_e32d3cb2c41c77ce, []int{7, 1}
|
||||
return fileDescriptor_e32d3cb2c41c77ce, []int{11, 1}
|
||||
}
|
||||
|
||||
func (m *ServiceConfig_HealthCheckConfig) XXX_Unmarshal(b []byte) error {
|
||||
|
|
@ -1067,9 +1541,18 @@ func init() {
|
|||
proto.RegisterType((*MethodConfig_HedgingPolicy)(nil), "grpc.service_config.MethodConfig.HedgingPolicy")
|
||||
proto.RegisterType((*PickFirstConfig)(nil), "grpc.service_config.PickFirstConfig")
|
||||
proto.RegisterType((*RoundRobinConfig)(nil), "grpc.service_config.RoundRobinConfig")
|
||||
proto.RegisterType((*PriorityLoadBalancingPolicyConfig)(nil), "grpc.service_config.PriorityLoadBalancingPolicyConfig")
|
||||
proto.RegisterMapType((map[string]*PriorityLoadBalancingPolicyConfig_Child)(nil), "grpc.service_config.PriorityLoadBalancingPolicyConfig.ChildrenEntry")
|
||||
proto.RegisterType((*PriorityLoadBalancingPolicyConfig_Child)(nil), "grpc.service_config.PriorityLoadBalancingPolicyConfig.Child")
|
||||
proto.RegisterType((*WeightedTargetLoadBalancingPolicyConfig)(nil), "grpc.service_config.WeightedTargetLoadBalancingPolicyConfig")
|
||||
proto.RegisterMapType((map[string]*WeightedTargetLoadBalancingPolicyConfig_Target)(nil), "grpc.service_config.WeightedTargetLoadBalancingPolicyConfig.TargetsEntry")
|
||||
proto.RegisterType((*WeightedTargetLoadBalancingPolicyConfig_Target)(nil), "grpc.service_config.WeightedTargetLoadBalancingPolicyConfig.Target")
|
||||
proto.RegisterType((*GrpcLbConfig)(nil), "grpc.service_config.GrpcLbConfig")
|
||||
proto.RegisterType((*CdsConfig)(nil), "grpc.service_config.CdsConfig")
|
||||
proto.RegisterType((*XdsConfig)(nil), "grpc.service_config.XdsConfig")
|
||||
proto.RegisterType((*EdsLoadBalancingPolicyConfig)(nil), "grpc.service_config.EdsLoadBalancingPolicyConfig")
|
||||
proto.RegisterType((*LrsLoadBalancingPolicyConfig)(nil), "grpc.service_config.LrsLoadBalancingPolicyConfig")
|
||||
proto.RegisterType((*LrsLoadBalancingPolicyConfig_Locality)(nil), "grpc.service_config.LrsLoadBalancingPolicyConfig.Locality")
|
||||
proto.RegisterType((*LoadBalancingConfig)(nil), "grpc.service_config.LoadBalancingConfig")
|
||||
proto.RegisterType((*ServiceConfig)(nil), "grpc.service_config.ServiceConfig")
|
||||
proto.RegisterType((*ServiceConfig_RetryThrottlingPolicy)(nil), "grpc.service_config.ServiceConfig.RetryThrottlingPolicy")
|
||||
|
|
@ -1081,78 +1564,105 @@ func init() {
|
|||
}
|
||||
|
||||
var fileDescriptor_e32d3cb2c41c77ce = []byte{
|
||||
// 1161 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x56, 0xdb, 0x6e, 0x23, 0x45,
|
||||
0x10, 0x8d, 0xed, 0x6c, 0xb2, 0x2e, 0x5f, 0xe2, 0x74, 0x48, 0xd6, 0x6b, 0xc1, 0x92, 0x44, 0x2c,
|
||||
0xf8, 0x25, 0x8e, 0xe4, 0x20, 0x58, 0x2d, 0x12, 0x17, 0x27, 0x31, 0x8e, 0x48, 0xb2, 0xa1, 0x93,
|
||||
0xb0, 0x41, 0x42, 0x6a, 0xda, 0x33, 0x6d, 0x7b, 0x94, 0x99, 0xe9, 0xa1, 0xa7, 0xcd, 0x3a, 0x2f,
|
||||
0xfc, 0x0d, 0xe2, 0x1b, 0xf8, 0x13, 0x9e, 0x10, 0x9f, 0x82, 0xfa, 0x32, 0x8e, 0xc7, 0xf6, 0xe2,
|
||||
0xac, 0x78, 0x9c, 0xaa, 0x3a, 0xa7, 0xab, 0xab, 0x4e, 0x55, 0x0f, 0xd4, 0xfb, 0x22, 0x72, 0xf6,
|
||||
0x63, 0x26, 0x7e, 0xf5, 0x1c, 0x46, 0x1c, 0x1e, 0xf6, 0xbc, 0xfe, 0xd4, 0x67, 0x23, 0x12, 0x5c,
|
||||
0x72, 0xb4, 0xa1, 0x22, 0x1b, 0x69, 0x57, 0xed, 0x59, 0x9f, 0xf3, 0xbe, 0xcf, 0xf6, 0x75, 0x48,
|
||||
0x77, 0xd8, 0xdb, 0x77, 0x87, 0x82, 0x4a, 0x8f, 0x87, 0x06, 0x34, 0xeb, 0x7f, 0x23, 0x68, 0x14,
|
||||
0x31, 0x11, 0x5b, 0xff, 0xa6, 0xf5, 0xab, 0x24, 0x1c, 0xee, 0x32, 0x63, 0xde, 0xfd, 0xfb, 0x31,
|
||||
0x14, 0xcf, 0x98, 0x1c, 0x70, 0xf7, 0x50, 0x9f, 0x83, 0x5e, 0xc2, 0x72, 0x48, 0x03, 0x56, 0xcd,
|
||||
0x6c, 0xe7, 0xea, 0x85, 0xe6, 0xc7, 0x8d, 0x39, 0xb9, 0x34, 0x26, 0x01, 0x8d, 0x73, 0x1a, 0x30,
|
||||
0xac, 0x31, 0xe8, 0x6b, 0x28, 0xbf, 0xa1, 0x9e, 0x24, 0x3d, 0x2e, 0x88, 0x60, 0xd4, 0xbd, 0xab,
|
||||
0x66, 0xb7, 0x33, 0xf5, 0x42, 0xb3, 0xd6, 0x30, 0x87, 0x37, 0x92, 0xe4, 0x1a, 0x2d, 0xce, 0xfd,
|
||||
0x1f, 0xa8, 0x3f, 0x64, 0xb8, 0xa8, 0x10, 0x6d, 0x2e, 0xb0, 0x8a, 0x47, 0x07, 0xb0, 0x2a, 0xbd,
|
||||
0x80, 0xf1, 0xa1, 0xac, 0xe6, 0x34, 0xf4, 0xe9, 0x0c, 0xf4, 0xc8, 0xde, 0x1b, 0x27, 0x91, 0xe8,
|
||||
0x35, 0x3c, 0x0d, 0xe8, 0x88, 0x08, 0xf6, 0xcb, 0x90, 0xc5, 0x92, 0x04, 0x2c, 0x8e, 0x69, 0x9f,
|
||||
0x91, 0xee, 0x9d, 0x64, 0x71, 0x75, 0x59, 0xd3, 0xbc, 0x3f, 0x43, 0x73, 0x7d, 0x12, 0xca, 0x83,
|
||||
0xa6, 0xc9, 0x61, 0x2b, 0xa0, 0x23, 0x6c, 0xd0, 0x67, 0x06, 0xdc, 0x52, 0x58, 0xf4, 0x23, 0xd4,
|
||||
0x0c, 0x71, 0x1c, 0xf1, 0x30, 0x66, 0x53, 0xcc, 0x8f, 0x1e, 0xc0, 0xfc, 0x44, 0x33, 0x1b, 0x78,
|
||||
0x8a, 0x1a, 0x43, 0x51, 0x30, 0x29, 0xee, 0x48, 0xc4, 0x7d, 0xcf, 0xb9, 0xab, 0xae, 0x68, 0xb2,
|
||||
0xbd, 0xc5, 0xe5, 0xc6, 0x0a, 0x75, 0xa1, 0x41, 0x9d, 0x25, 0x5c, 0x10, 0xf7, 0x9f, 0xe8, 0x06,
|
||||
0xca, 0x03, 0xe6, 0xf6, 0xbd, 0xb0, 0x9f, 0xb0, 0xae, 0x6a, 0xd6, 0xfd, 0xc5, 0xac, 0x1d, 0x83,
|
||||
0x1b, 0xf3, 0x96, 0x06, 0x93, 0x86, 0xda, 0x0b, 0x58, 0x56, 0x6d, 0x46, 0x55, 0x58, 0xb5, 0x2c,
|
||||
0xd5, 0xcc, 0x76, 0xa6, 0x9e, 0xc7, 0xc9, 0x27, 0xda, 0x82, 0x95, 0x40, 0x13, 0xea, 0x96, 0xe7,
|
||||
0xb1, 0xfd, 0xaa, 0xfd, 0x91, 0x85, 0xc2, 0x44, 0xca, 0x68, 0x07, 0x8a, 0xaa, 0xa4, 0x54, 0x4a,
|
||||
0x16, 0x44, 0x32, 0xd6, 0x34, 0x25, 0x5c, 0x08, 0xe8, 0xe8, 0x1b, 0x6b, 0x42, 0x2d, 0x58, 0xf3,
|
||||
0x42, 0x4f, 0x7a, 0xd4, 0x27, 0x5d, 0xea, 0xdc, 0xf2, 0x5e, 0xcf, 0xca, 0xe8, 0x3f, 0xb4, 0x50,
|
||||
0xb6, 0x88, 0x96, 0x01, 0xa0, 0x97, 0xa0, 0x28, 0xc7, 0xf8, 0x85, 0x5a, 0x82, 0x80, 0x8e, 0x12,
|
||||
0xec, 0x1e, 0x20, 0x8b, 0x23, 0xc1, 0xd0, 0x97, 0x5e, 0xe4, 0x7b, 0x4c, 0x68, 0x1d, 0x65, 0xf1,
|
||||
0xba, 0xf5, 0x9c, 0x8d, 0x1d, 0xa8, 0x0d, 0x5b, 0xba, 0x09, 0xb4, 0xeb, 0x33, 0x12, 0x4b, 0x2a,
|
||||
0x87, 0x31, 0x51, 0x03, 0xa6, 0x04, 0x92, 0xab, 0x97, 0x9b, 0x95, 0xe4, 0x54, 0xd5, 0x83, 0x43,
|
||||
0xee, 0x32, 0xfc, 0xde, 0x38, 0xfe, 0x52, 0x87, 0x2b, 0x63, 0x5c, 0xfb, 0x33, 0x03, 0xa5, 0x54,
|
||||
0x1b, 0x1e, 0x52, 0xab, 0x2f, 0x21, 0xe9, 0x14, 0x71, 0x99, 0x4f, 0xef, 0x16, 0x57, 0xaa, 0x68,
|
||||
0xe3, 0x8f, 0x54, 0x38, 0x3a, 0x86, 0xad, 0x90, 0x87, 0xa4, 0x47, 0x25, 0xf5, 0xd3, 0xc9, 0xe7,
|
||||
0xde, 0x92, 0xfc, 0x46, 0xc8, 0xc3, 0xb6, 0x0a, 0x9f, 0xc8, 0xbd, 0xf5, 0x14, 0x9e, 0x18, 0x35,
|
||||
0x73, 0x41, 0xd2, 0x12, 0xdc, 0x5d, 0x87, 0xb5, 0x0b, 0xcf, 0xb9, 0x6d, 0x7b, 0x22, 0x96, 0x46,
|
||||
0x6c, 0xbb, 0x08, 0x2a, 0x98, 0x0f, 0x43, 0x17, 0xf3, 0xae, 0x17, 0x5a, 0xdb, 0x6f, 0x50, 0xfc,
|
||||
0x56, 0x44, 0xce, 0x69, 0xd7, 0xae, 0xa1, 0xef, 0xa0, 0xe8, 0x0c, 0x3c, 0xdf, 0x4d, 0x94, 0x6c,
|
||||
0xd6, 0x51, 0x7d, 0xae, 0x92, 0x4f, 0x39, 0x75, 0x5b, 0xd4, 0xa7, 0xa1, 0xe3, 0x85, 0x7d, 0x83,
|
||||
0xc7, 0x05, 0x8d, 0xbe, 0x2f, 0x64, 0x02, 0xd1, 0xbb, 0xcd, 0x48, 0xb4, 0x60, 0x6d, 0x4a, 0xd9,
|
||||
0xbb, 0xcf, 0x21, 0x7f, 0xe8, 0xc6, 0xf6, 0xf0, 0x2a, 0xac, 0x3a, 0xfe, 0x30, 0x96, 0x4c, 0x24,
|
||||
0x32, 0xb7, 0x9f, 0xbb, 0xff, 0x64, 0x21, 0x7f, 0x33, 0x8e, 0xfb, 0x04, 0x4a, 0x5d, 0x7d, 0x2e,
|
||||
0x13, 0xc4, 0x2e, 0xcd, 0x4c, 0x3d, 0xdf, 0xca, 0x56, 0x33, 0xb8, 0x98, 0x38, 0xf4, 0xdc, 0x4c,
|
||||
0xdf, 0x26, 0xfb, 0x7f, 0x6e, 0xf3, 0x3d, 0xac, 0xf5, 0xa8, 0xef, 0x2b, 0x25, 0x26, 0x7c, 0xb9,
|
||||
0x77, 0xe4, 0x2b, 0x27, 0x04, 0x96, 0xb2, 0x0e, 0x15, 0xe6, 0xc6, 0x24, 0x55, 0xa4, 0x65, 0x7d,
|
||||
0xf3, 0x32, 0x73, 0xe3, 0xcb, 0xfb, 0x3a, 0xa1, 0x9f, 0xe1, 0x99, 0x2f, 0x62, 0xe2, 0x73, 0xea,
|
||||
0x12, 0xc1, 0x22, 0x2e, 0xa4, 0xea, 0xb5, 0x02, 0x26, 0x35, 0x78, 0xdb, 0x5a, 0xbc, 0x94, 0xc2,
|
||||
0x0b, 0xfb, 0x66, 0x2d, 0xd6, 0x7c, 0x11, 0xab, 0xbc, 0x70, 0xc2, 0x70, 0xa9, 0x09, 0x74, 0x27,
|
||||
0x7e, 0xcf, 0xc1, 0xc6, 0x9c, 0x9c, 0x51, 0x1b, 0x20, 0xf2, 0x9c, 0x5b, 0xd2, 0x53, 0x4a, 0xb2,
|
||||
0x6b, 0xfd, 0xa3, 0xb9, 0x37, 0x9e, 0xd2, 0x5b, 0x67, 0x09, 0x4f, 0x20, 0xd1, 0x09, 0x14, 0x84,
|
||||
0x52, 0x1f, 0x11, 0x4a, 0x7e, 0xba, 0x65, 0x85, 0xe6, 0xf3, 0xb9, 0x44, 0xd3, 0x2a, 0xd5, 0x0b,
|
||||
0xf7, 0x1e, 0x8b, 0xbe, 0x80, 0x15, 0x05, 0xf3, 0xbb, 0x76, 0xc1, 0xec, 0xcc, 0x65, 0x99, 0xd4,
|
||||
0x75, 0x67, 0x09, 0x5b, 0x08, 0x6a, 0x42, 0xce, 0x71, 0x63, 0xbb, 0xf8, 0x9f, 0xcd, 0x45, 0x8e,
|
||||
0x15, 0xd9, 0x59, 0xc2, 0x2a, 0x58, 0x61, 0x46, 0x6e, 0x6c, 0x87, 0x7c, 0x3e, 0xe6, 0x66, 0x12,
|
||||
0x33, 0x72, 0x63, 0x74, 0x0a, 0x95, 0x91, 0x1b, 0x13, 0x36, 0x8a, 0x98, 0xf0, 0x02, 0x16, 0x4a,
|
||||
0xea, 0xdb, 0x1e, 0x2d, 0x26, 0x98, 0x41, 0xb6, 0x1e, 0xc3, 0x8a, 0x1d, 0xec, 0xbf, 0x1e, 0x41,
|
||||
0xc9, 0x2a, 0xc3, 0x76, 0x28, 0x84, 0x4d, 0xad, 0x8b, 0x6e, 0xd2, 0xb9, 0xfb, 0xe1, 0xcd, 0xd4,
|
||||
0xcb, 0xcd, 0xcf, 0xe6, 0x1e, 0x97, 0xa2, 0x48, 0x8b, 0xd5, 0x88, 0x53, 0x8f, 0xd3, 0x86, 0x3f,
|
||||
0xeb, 0x40, 0x3f, 0xcd, 0x9c, 0x67, 0x38, 0xab, 0xcb, 0xef, 0x38, 0x0e, 0x69, 0xf6, 0xb1, 0xde,
|
||||
0x4a, 0xe6, 0x0d, 0x4b, 0x58, 0xcd, 0xd0, 0xee, 0x2c, 0x7c, 0x4c, 0x71, 0x31, 0x98, 0xfc, 0xa1,
|
||||
0x72, 0xa0, 0x62, 0x76, 0xa3, 0x1c, 0x08, 0x2e, 0xa5, 0xef, 0x85, 0x7d, 0x2b, 0x97, 0x17, 0x0f,
|
||||
0x28, 0x88, 0x7e, 0x3b, 0xaf, 0xc6, 0x48, 0x73, 0x73, 0xbc, 0x26, 0xd2, 0x66, 0xe4, 0xc2, 0xc6,
|
||||
0x80, 0x51, 0x5f, 0x0e, 0x88, 0x33, 0x60, 0xce, 0x6d, 0x92, 0xb2, 0xe9, 0xf3, 0xa7, 0x0f, 0x38,
|
||||
0xa7, 0xa3, 0xd1, 0x87, 0x0a, 0x6c, 0x6f, 0xb1, 0x3e, 0x98, 0x36, 0xd5, 0x5e, 0xc3, 0xe6, 0xdc,
|
||||
0x7c, 0xd0, 0x07, 0xa0, 0x1e, 0x50, 0x22, 0xf9, 0x2d, 0x0b, 0x93, 0x77, 0x2a, 0x1f, 0xd0, 0xd1,
|
||||
0x95, 0x36, 0xa0, 0x0f, 0xa1, 0xa0, 0x5d, 0x44, 0xbf, 0x41, 0x5a, 0xbe, 0x59, 0x0c, 0xda, 0x84,
|
||||
0x95, 0xa5, 0x76, 0x05, 0xeb, 0x33, 0x09, 0xa0, 0xaf, 0xa6, 0xb6, 0x76, 0xe6, 0x01, 0x8b, 0x25,
|
||||
0xb5, 0xd3, 0x3f, 0x9f, 0x5a, 0x24, 0x36, 0xd9, 0x35, 0x28, 0x5c, 0x9f, 0x5f, 0x5e, 0x1c, 0x1f,
|
||||
0x9e, 0xb4, 0x4f, 0x8e, 0x8f, 0x2a, 0x4b, 0xca, 0x80, 0x5f, 0x5d, 0x9f, 0x1f, 0x11, 0xfc, 0xaa,
|
||||
0x75, 0x72, 0x5e, 0xc9, 0xb4, 0xf6, 0x60, 0xd3, 0xe3, 0xa9, 0xa2, 0x99, 0x9a, 0xb5, 0x50, 0xaa,
|
||||
0x68, 0x17, 0x2a, 0x83, 0x8b, 0x4c, 0x77, 0x45, 0xa7, 0x72, 0xf0, 0x6f, 0x00, 0x00, 0x00, 0xff,
|
||||
0xff, 0x2d, 0xca, 0x96, 0x84, 0xe2, 0x0b, 0x00, 0x00,
|
||||
// 1589 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x58, 0x5b, 0x73, 0x1a, 0x47,
|
||||
0x16, 0x16, 0xa0, 0x1b, 0x07, 0x84, 0x50, 0x6b, 0x25, 0x61, 0xca, 0xab, 0x95, 0xa8, 0xf5, 0x9a,
|
||||
0x17, 0xa3, 0x5a, 0x79, 0xcb, 0xeb, 0xd2, 0x6e, 0xed, 0x3a, 0xe8, 0x12, 0x54, 0x91, 0x65, 0xd2,
|
||||
0x92, 0x6f, 0x55, 0xa9, 0x1a, 0x0d, 0x33, 0x0d, 0x4c, 0x69, 0x66, 0x9a, 0xf4, 0x34, 0x16, 0xe4,
|
||||
0x21, 0x79, 0xcd, 0x2f, 0x49, 0x7e, 0x43, 0xfe, 0x49, 0x9e, 0x52, 0x79, 0xcf, 0x3f, 0xc8, 0x43,
|
||||
0x2a, 0xd5, 0x97, 0x41, 0x0c, 0x8c, 0x10, 0xb2, 0xfc, 0xc6, 0x9c, 0xee, 0xef, 0x3b, 0xd7, 0x3e,
|
||||
0x7d, 0x1a, 0x28, 0xb7, 0x58, 0xc7, 0xda, 0x09, 0x08, 0xfb, 0xe0, 0x58, 0xc4, 0xb0, 0xa8, 0xdf,
|
||||
0x74, 0x5a, 0x23, 0x9f, 0x95, 0x0e, 0xa3, 0x9c, 0xa2, 0x55, 0xb1, 0xb3, 0x12, 0x5d, 0x2a, 0x6e,
|
||||
0xb6, 0x28, 0x6d, 0xb9, 0x64, 0x47, 0x6e, 0x69, 0x74, 0x9b, 0x3b, 0x76, 0x97, 0x99, 0xdc, 0xa1,
|
||||
0xbe, 0x02, 0x8d, 0xaf, 0x5f, 0x31, 0xb3, 0xd3, 0x21, 0x2c, 0xd0, 0xeb, 0x6b, 0x7a, 0x5d, 0x18,
|
||||
0x61, 0x51, 0x9b, 0x28, 0x71, 0xe9, 0x97, 0x45, 0xc8, 0xbe, 0x24, 0xbc, 0x4d, 0xed, 0x7d, 0xa9,
|
||||
0x07, 0xed, 0xc1, 0xac, 0x6f, 0x7a, 0xa4, 0x90, 0xd8, 0x4a, 0x95, 0x33, 0xbb, 0xff, 0xa8, 0xc4,
|
||||
0xd8, 0x52, 0x19, 0x06, 0x54, 0x4e, 0x4d, 0x8f, 0x60, 0x89, 0x41, 0x2f, 0x20, 0x77, 0x65, 0x3a,
|
||||
0xdc, 0x68, 0x52, 0x66, 0x30, 0x62, 0xda, 0xfd, 0x42, 0x72, 0x2b, 0x51, 0xce, 0xec, 0x16, 0x2b,
|
||||
0x4a, 0x79, 0x25, 0x34, 0xae, 0x52, 0xa5, 0xd4, 0x7d, 0x63, 0xba, 0x5d, 0x82, 0xb3, 0x02, 0x71,
|
||||
0x44, 0x19, 0x16, 0xfb, 0xd1, 0x53, 0x58, 0xe0, 0x8e, 0x47, 0x68, 0x97, 0x17, 0x52, 0x12, 0xfa,
|
||||
0x60, 0x0c, 0x7a, 0xa0, 0xfd, 0xc6, 0xe1, 0x4e, 0xf4, 0x16, 0x1e, 0x78, 0x66, 0xcf, 0x60, 0xe4,
|
||||
0xeb, 0x2e, 0x09, 0xb8, 0xe1, 0x91, 0x20, 0x30, 0x5b, 0xc4, 0x68, 0xf4, 0x39, 0x09, 0x0a, 0xb3,
|
||||
0x92, 0xe6, 0xe1, 0x18, 0xcd, 0xeb, 0x63, 0x9f, 0x3f, 0xdd, 0x55, 0x36, 0xac, 0x7b, 0x66, 0x0f,
|
||||
0x2b, 0xf4, 0x4b, 0x05, 0xae, 0x0a, 0x2c, 0x7a, 0x0f, 0x45, 0x45, 0x1c, 0x74, 0xa8, 0x1f, 0x90,
|
||||
0x11, 0xe6, 0xb9, 0x29, 0x98, 0x37, 0x24, 0xb3, 0x82, 0x47, 0xa8, 0x31, 0x64, 0x19, 0xe1, 0xac,
|
||||
0x6f, 0x74, 0xa8, 0xeb, 0x58, 0xfd, 0xc2, 0xbc, 0x24, 0x7b, 0x72, 0x7b, 0xb8, 0xb1, 0x40, 0xd5,
|
||||
0x25, 0xa8, 0x36, 0x83, 0x33, 0xec, 0xfa, 0x13, 0xbd, 0x83, 0x5c, 0x9b, 0xd8, 0x2d, 0xc7, 0x6f,
|
||||
0x85, 0xac, 0x0b, 0x92, 0x75, 0xe7, 0x76, 0xd6, 0x9a, 0xc2, 0x0d, 0x78, 0x97, 0xda, 0xc3, 0x82,
|
||||
0xe2, 0x73, 0x98, 0x15, 0x69, 0x46, 0x05, 0x58, 0xd0, 0x2c, 0x85, 0xc4, 0x56, 0xa2, 0x9c, 0xc6,
|
||||
0xe1, 0x27, 0x5a, 0x87, 0x79, 0x4f, 0x12, 0xca, 0x94, 0xa7, 0xb1, 0xfe, 0x2a, 0xfe, 0x98, 0x84,
|
||||
0xcc, 0x90, 0xc9, 0x68, 0x1b, 0xb2, 0x22, 0xa4, 0x26, 0xe7, 0xc4, 0xeb, 0xf0, 0x40, 0xd2, 0x2c,
|
||||
0xe1, 0x8c, 0x67, 0xf6, 0x3e, 0xd3, 0x22, 0x54, 0x85, 0x65, 0xc7, 0x77, 0xb8, 0x63, 0xba, 0x46,
|
||||
0xc3, 0xb4, 0x2e, 0x69, 0xb3, 0xa9, 0xcb, 0x68, 0x42, 0x2d, 0xe4, 0x34, 0xa2, 0xaa, 0x00, 0x68,
|
||||
0x0f, 0x04, 0xe5, 0x00, 0x7f, 0x6b, 0x2d, 0x81, 0x67, 0xf6, 0x42, 0xec, 0x13, 0x40, 0x1a, 0x67,
|
||||
0x78, 0x5d, 0x97, 0x3b, 0x1d, 0xd7, 0x21, 0x4c, 0xd6, 0x51, 0x12, 0xaf, 0xe8, 0x95, 0x97, 0x83,
|
||||
0x05, 0x74, 0x04, 0xeb, 0x32, 0x09, 0x66, 0xc3, 0x25, 0x46, 0xc0, 0x4d, 0xde, 0x0d, 0x0c, 0x71,
|
||||
0xc0, 0x44, 0x81, 0xa4, 0xca, 0xb9, 0xdd, 0x7c, 0xa8, 0x55, 0xe4, 0x60, 0x9f, 0xda, 0x04, 0xff,
|
||||
0x65, 0xb0, 0xff, 0x4c, 0x6e, 0x17, 0xc2, 0xa0, 0xf8, 0x53, 0x02, 0x96, 0x22, 0x69, 0x98, 0x26,
|
||||
0x56, 0xff, 0x83, 0x30, 0x53, 0x86, 0x4d, 0x5c, 0xb3, 0x7f, 0x7b, 0xa4, 0xb2, 0x7a, 0xff, 0x81,
|
||||
0xd8, 0x8e, 0x0e, 0x61, 0xdd, 0xa7, 0xbe, 0xd1, 0x34, 0xb9, 0xe9, 0x46, 0x8d, 0x4f, 0xdd, 0x60,
|
||||
0xfc, 0xaa, 0x4f, 0xfd, 0x23, 0xb1, 0x7d, 0xc8, 0xf6, 0xea, 0x03, 0xd8, 0x50, 0xd5, 0x4c, 0x99,
|
||||
0x11, 0x2d, 0xc1, 0xd2, 0x0a, 0x2c, 0xd7, 0x1d, 0xeb, 0xf2, 0xc8, 0x61, 0x01, 0x57, 0xc5, 0x56,
|
||||
0x42, 0x90, 0xc7, 0xb4, 0xeb, 0xdb, 0x98, 0x36, 0x1c, 0x5f, 0xcb, 0x7e, 0x4b, 0xc2, 0x76, 0x9d,
|
||||
0x39, 0x94, 0x39, 0xbc, 0x7f, 0x42, 0x4d, 0xbb, 0x6a, 0xba, 0xa6, 0x6f, 0x0d, 0x62, 0xa1, 0x9b,
|
||||
0xd3, 0x05, 0x2c, 0x5a, 0x6d, 0xc7, 0xb5, 0x19, 0xf1, 0x75, 0x83, 0x3a, 0x88, 0xad, 0xed, 0x5b,
|
||||
0x99, 0x2a, 0xfb, 0x9a, 0xe6, 0xd0, 0xe7, 0xac, 0x8f, 0x07, 0xac, 0x68, 0x13, 0xa0, 0xa3, 0xc0,
|
||||
0x0e, 0x09, 0x0a, 0xc9, 0xad, 0x54, 0x39, 0x8d, 0x87, 0x24, 0xc5, 0x63, 0x98, 0x93, 0x50, 0xf4,
|
||||
0x02, 0xe6, 0x95, 0x32, 0x6d, 0x48, 0x39, 0xd6, 0x90, 0x88, 0x01, 0x4a, 0x35, 0xd6, 0xb8, 0x62,
|
||||
0x1f, 0x96, 0x22, 0x56, 0xa0, 0x3c, 0xa4, 0x2e, 0x49, 0x5f, 0x9f, 0x2c, 0xf1, 0x13, 0x61, 0x98,
|
||||
0xfb, 0x20, 0xfa, 0x88, 0x4e, 0xeb, 0x7f, 0xef, 0xe3, 0x2c, 0x56, 0x54, 0x7b, 0xc9, 0xe7, 0x89,
|
||||
0xd2, 0x1f, 0x49, 0x78, 0xfc, 0x96, 0x38, 0xad, 0x36, 0x27, 0xf6, 0xb9, 0xc9, 0x5a, 0x84, 0xdf,
|
||||
0x1c, 0x73, 0x0b, 0x16, 0xb8, 0xdc, 0x12, 0x68, 0x4f, 0x8f, 0x63, 0xad, 0x98, 0x92, 0xae, 0xa2,
|
||||
0xd6, 0x03, 0x15, 0xf7, 0x90, 0xb9, 0xe8, 0xc1, 0xbc, 0x5a, 0x10, 0x8d, 0xe4, 0x4a, 0x52, 0xe9,
|
||||
0x72, 0xd7, 0x5f, 0xe8, 0x0b, 0xc8, 0xca, 0x24, 0x85, 0xad, 0x2d, 0x79, 0xc7, 0xa8, 0x67, 0x24,
|
||||
0x5a, 0xf7, 0xb3, 0xef, 0x20, 0x3b, 0x6c, 0x47, 0x4c, 0xe4, 0xdf, 0x47, 0x23, 0xbf, 0xff, 0x09,
|
||||
0x7c, 0x1e, 0x4e, 0xc0, 0xb7, 0x90, 0xfd, 0x9c, 0x75, 0xac, 0x93, 0x86, 0x0e, 0xf2, 0xa8, 0x77,
|
||||
0x89, 0x7b, 0x78, 0x27, 0xfa, 0x46, 0x08, 0x91, 0x57, 0xb9, 0xea, 0xc8, 0x19, 0x2d, 0x13, 0x8d,
|
||||
0xbc, 0xf4, 0x08, 0xd2, 0xfb, 0x76, 0xa0, 0x95, 0x17, 0x60, 0xc1, 0x72, 0xbb, 0x01, 0x27, 0x2c,
|
||||
0xec, 0xea, 0xfa, 0xb3, 0xf4, 0x6b, 0x12, 0xd2, 0xef, 0x06, 0xfb, 0x1e, 0xc3, 0x52, 0x43, 0xea,
|
||||
0x25, 0xcc, 0xd0, 0x33, 0x42, 0xa2, 0x9c, 0xae, 0x26, 0x0b, 0x09, 0x9c, 0x0d, 0x17, 0xe4, 0x35,
|
||||
0xf1, 0x29, 0x73, 0x85, 0xbe, 0x84, 0xe5, 0xa6, 0xe9, 0xba, 0xa2, 0xf1, 0x86, 0x7c, 0xa9, 0x3b,
|
||||
0xf2, 0xe5, 0x42, 0x02, 0x4d, 0x59, 0x86, 0x3c, 0xb1, 0x03, 0x23, 0x12, 0xa4, 0x59, 0xe9, 0x79,
|
||||
0x8e, 0xd8, 0xc1, 0xd9, 0x75, 0x9c, 0xd0, 0x05, 0x6c, 0xba, 0x2c, 0x30, 0x5c, 0x6a, 0xda, 0x06,
|
||||
0x23, 0x1d, 0xca, 0xb8, 0x68, 0x6d, 0x02, 0x18, 0xc6, 0xe0, 0xa6, 0x29, 0xe0, 0x8c, 0x33, 0xc7,
|
||||
0x6f, 0xa9, 0x29, 0xa0, 0xe8, 0xb2, 0x40, 0xd8, 0x85, 0x43, 0x86, 0x33, 0x49, 0x20, 0x33, 0xf1,
|
||||
0x7d, 0x0a, 0x1e, 0x1e, 0xda, 0xc1, 0xcd, 0xe7, 0xef, 0xc6, 0xec, 0xc4, 0xba, 0x91, 0xfc, 0x48,
|
||||
0x37, 0x52, 0xf7, 0x73, 0x03, 0x5d, 0xc0, 0x86, 0x4b, 0x2d, 0xd3, 0x75, 0x78, 0xdf, 0xe8, 0x38,
|
||||
0xd6, 0xe5, 0xd0, 0x10, 0x32, 0x7b, 0xc7, 0x6c, 0xad, 0x85, 0x44, 0x75, 0xc5, 0xa3, 0x93, 0x76,
|
||||
0x01, 0x1b, 0xc4, 0xb7, 0x3b, 0xd4, 0xf1, 0xf9, 0xa8, 0x86, 0xb9, 0xbb, 0x6a, 0x08, 0x89, 0x22,
|
||||
0x1a, 0x4a, 0x3f, 0xa4, 0xe0, 0xe1, 0x09, 0x9b, 0x90, 0x8a, 0x6d, 0xc8, 0xea, 0xd8, 0x0f, 0xd5,
|
||||
0x3f, 0xce, 0x68, 0x99, 0x8c, 0xc3, 0xf4, 0x39, 0xa9, 0x4e, 0x95, 0x93, 0xf4, 0xc4, 0xa8, 0xbf,
|
||||
0x81, 0xc5, 0x30, 0x58, 0x7a, 0xd0, 0xdd, 0x8b, 0x0f, 0xc2, 0x04, 0xaf, 0x2a, 0x27, 0x9a, 0x01,
|
||||
0x0f, 0xb8, 0xc6, 0x0e, 0xf0, 0xdc, 0x7d, 0x9a, 0x6d, 0x1d, 0x16, 0x43, 0x15, 0xa2, 0xbb, 0x33,
|
||||
0xd2, 0x72, 0xa8, 0xaf, 0x63, 0xa7, 0xbf, 0x10, 0x82, 0xd9, 0x6f, 0xa8, 0x1f, 0x86, 0x4a, 0xfe,
|
||||
0x96, 0xc3, 0x66, 0xb7, 0x21, 0xc5, 0x29, 0x3d, 0x6c, 0xaa, 0xcf, 0xd2, 0xef, 0x73, 0xb0, 0x1a,
|
||||
0xa3, 0x16, 0x1d, 0x01, 0x88, 0xca, 0x30, 0x9a, 0x62, 0xd8, 0xd0, 0x01, 0xf9, 0x7b, 0xfc, 0x9d,
|
||||
0x19, 0x1d, 0x49, 0x6a, 0x33, 0x78, 0x08, 0x89, 0x8e, 0x21, 0xc3, 0xc4, 0x80, 0x62, 0x30, 0x31,
|
||||
0xa1, 0x48, 0x53, 0x33, 0xbb, 0x8f, 0x62, 0x89, 0x46, 0x07, 0x19, 0x39, 0x93, 0x5f, 0x63, 0xd1,
|
||||
0x7f, 0x60, 0x5e, 0xc0, 0xdc, 0x86, 0x3e, 0x61, 0xdb, 0xb1, 0x2c, 0xc3, 0x77, 0x41, 0x6d, 0x06,
|
||||
0x6b, 0x08, 0x3a, 0x87, 0x45, 0x3d, 0x7a, 0xf4, 0x0b, 0x69, 0x09, 0x7f, 0xf6, 0x71, 0x13, 0x40,
|
||||
0x6d, 0x06, 0x0f, 0x98, 0x50, 0x0b, 0x96, 0xaf, 0xf4, 0xc5, 0x65, 0xa8, 0xfb, 0xb7, 0x00, 0x13,
|
||||
0xc6, 0x8b, 0x29, 0x2f, 0xb9, 0xda, 0x0c, 0xce, 0x5d, 0x45, 0xb6, 0xa2, 0x5d, 0x48, 0x59, 0x76,
|
||||
0xa0, 0x9f, 0x36, 0x9b, 0xb1, 0xe4, 0x83, 0x4b, 0xa8, 0x36, 0x83, 0xc5, 0x66, 0x74, 0x08, 0x29,
|
||||
0x62, 0x07, 0xfa, 0xe1, 0xf2, 0xcf, 0x58, 0xcc, 0xa4, 0x6e, 0x29, 0x68, 0x88, 0xa2, 0x71, 0x59,
|
||||
0x50, 0x58, 0x9c, 0x40, 0x33, 0xe9, 0x4c, 0x08, 0x1a, 0x97, 0x05, 0xe8, 0x19, 0xa4, 0x7a, 0x76,
|
||||
0xa0, 0x67, 0x80, 0x78, 0x0f, 0x06, 0xd7, 0xa3, 0xb8, 0x07, 0x05, 0xae, 0x67, 0x07, 0xa8, 0x0e,
|
||||
0xf9, 0x9e, 0x1d, 0x18, 0xa4, 0xd7, 0x21, 0xcc, 0xf1, 0x88, 0xcf, 0x4d, 0x57, 0x5f, 0x14, 0xd3,
|
||||
0x91, 0x8c, 0xa1, 0xab, 0x8b, 0x30, 0xaf, 0x07, 0xea, 0x9f, 0xe7, 0x60, 0x49, 0xf7, 0x11, 0x5d,
|
||||
0xf6, 0x3e, 0xac, 0xc9, 0x2e, 0xd2, 0x08, 0x5d, 0xb9, 0x9e, 0x22, 0x12, 0xe5, 0xdc, 0x0d, 0x35,
|
||||
0x13, 0xa1, 0xa8, 0xc4, 0x44, 0x42, 0xde, 0xeb, 0xab, 0xee, 0xf8, 0x02, 0xfa, 0x6a, 0x4c, 0x9f,
|
||||
0x9e, 0x84, 0xef, 0xda, 0xe9, 0xa3, 0xec, 0x83, 0x43, 0xbc, 0xa4, 0xde, 0x8e, 0x21, 0xab, 0x9a,
|
||||
0x1e, 0xb6, 0x6f, 0x7d, 0xc4, 0xe2, 0xac, 0x37, 0xfc, 0x47, 0x86, 0x05, 0x79, 0xf5, 0x26, 0xe1,
|
||||
0x6d, 0x46, 0x39, 0x77, 0x1d, 0xbf, 0xa5, 0xcf, 0xe0, 0xf3, 0x29, 0x02, 0x22, 0xdf, 0xac, 0xe7,
|
||||
0x03, 0xa4, 0xf2, 0x1c, 0x2f, 0xb3, 0xa8, 0x18, 0xd9, 0xb0, 0xda, 0x26, 0xa6, 0xcb, 0xdb, 0x86,
|
||||
0xd5, 0x26, 0xd6, 0x65, 0x68, 0xb2, 0xca, 0xf5, 0xbf, 0xa6, 0xd0, 0x53, 0x93, 0xe8, 0x7d, 0x01,
|
||||
0xd6, 0x5e, 0xac, 0xb4, 0x47, 0x45, 0xc5, 0xb7, 0xb0, 0x16, 0x6b, 0x0f, 0xfa, 0x2b, 0x88, 0x87,
|
||||
0xab, 0xc1, 0xe9, 0x25, 0xf1, 0xc3, 0xf7, 0x61, 0xda, 0x33, 0x7b, 0xe7, 0x52, 0x80, 0xfe, 0x06,
|
||||
0x19, 0xb9, 0x64, 0xc8, 0xb7, 0x9f, 0x2c, 0xe3, 0x24, 0x06, 0x29, 0xc2, 0x42, 0x52, 0x3c, 0x87,
|
||||
0x95, 0x31, 0x03, 0xd0, 0xff, 0x47, 0xc6, 0xc7, 0xc4, 0x14, 0xa3, 0x41, 0x64, 0xb8, 0xfc, 0xf7,
|
||||
0x48, 0x77, 0xd6, 0xc6, 0x2e, 0x43, 0xe6, 0xf5, 0xe9, 0x59, 0xfd, 0x70, 0xff, 0xf8, 0xe8, 0xf8,
|
||||
0xf0, 0x20, 0x3f, 0x23, 0x04, 0xf8, 0xd5, 0xeb, 0xd3, 0x03, 0x03, 0xbf, 0xaa, 0x1e, 0x9f, 0xe6,
|
||||
0x13, 0xd5, 0x27, 0xb0, 0xe6, 0xd0, 0x48, 0xd0, 0x54, 0xcc, 0xaa, 0x28, 0x12, 0xb4, 0xba, 0xb0,
|
||||
0xa0, 0x9e, 0x68, 0xcc, 0x4b, 0x53, 0x9e, 0xfe, 0x19, 0x00, 0x00, 0xff, 0xff, 0xae, 0xd3, 0x19,
|
||||
0x42, 0x5a, 0x13, 0x00, 0x00,
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue