From 5f264207f0f9f227f6dec546febc36bbead1f12f Mon Sep 17 00:00:00 2001 From: Adrian Serrano Date: Mon, 14 Nov 2022 18:15:48 +0100 Subject: [PATCH] grpc: Reduce size of objects in memory (#368) Given that we're not using any of the XXX_ fields (for example to check for unknown fields), and we don't need golang/protobuf compatibility as we're using gogoproto everywhere, we can tune the code generator to not output these `XXX_*` fields and save 28 bytes for each decoded object we keep in memory. Signed-off-by: Adrian Serrano --- pkg/pb/synthetic_monitoring/checks.pb.go | 974 ++++++++--------------- pkg/pb/synthetic_monitoring/checks.proto | 3 + 2 files changed, 325 insertions(+), 652 deletions(-) diff --git a/pkg/pb/synthetic_monitoring/checks.pb.go b/pkg/pb/synthetic_monitoring/checks.pb.go index 840173f2e..0bf0f3e52 100644 --- a/pkg/pb/synthetic_monitoring/checks.pb.go +++ b/pkg/pb/synthetic_monitoring/checks.pb.go @@ -312,9 +312,6 @@ func (CompressionAlgorithm) EnumDescriptor() ([]byte, []int) { // Void is an empty message used by RPC methods that don't take // arguments. type Void struct { - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` } func (m *Void) Reset() { *m = Void{} } @@ -353,11 +350,8 @@ var xxx_messageInfo_Void proto.InternalMessageInfo // ProbeState message is sent by probes as the argument to GetChanges. It contains a list // of the checks and tenants already known to the probe. type ProbeState struct { - Checks []EntityRef `protobuf:"bytes,1,rep,name=checks,proto3" json:"checks"` - Tenants []EntityRef `protobuf:"bytes,2,rep,name=tenants,proto3" json:"tenants"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Checks []EntityRef `protobuf:"bytes,1,rep,name=checks,proto3" json:"checks"` + Tenants []EntityRef `protobuf:"bytes,2,rep,name=tenants,proto3" json:"tenants"` } func (m *ProbeState) Reset() { *m = ProbeState{} } @@ -395,11 +389,8 @@ var xxx_messageInfo_ProbeState proto.InternalMessageInfo // EntityRef represents a reference to an entity (check, tenant) by it's ID and last modification time. type EntityRef struct { - Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"` - LastModified float64 `protobuf:"fixed64,2,opt,name=lastModified,proto3" json:"lastModified"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"` + LastModified float64 `protobuf:"fixed64,2,opt,name=lastModified,proto3" json:"lastModified"` } func (m *EntityRef) Reset() { *m = EntityRef{} } @@ -436,12 +427,9 @@ func (m *EntityRef) XXX_DiscardUnknown() { var xxx_messageInfo_EntityRef proto.InternalMessageInfo type ProbeInfo struct { - Version string `protobuf:"bytes,1,opt,name=Version,proto3" json:"version"` - Commit string `protobuf:"bytes,2,opt,name=Commit,proto3" json:"commit"` - Buildstamp string `protobuf:"bytes,3,opt,name=Buildstamp,proto3" json:"buildstamp"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Version string `protobuf:"bytes,1,opt,name=Version,proto3" json:"version"` + Commit string `protobuf:"bytes,2,opt,name=Commit,proto3" json:"commit"` + Buildstamp string `protobuf:"bytes,3,opt,name=Buildstamp,proto3" json:"buildstamp"` } func (m *ProbeInfo) Reset() { *m = ProbeInfo{} } @@ -479,10 +467,7 @@ var xxx_messageInfo_ProbeInfo proto.InternalMessageInfo // PingRequest is the message sent as argument of the Ping method. type PingRequest struct { - Sequence int64 `protobuf:"varint,1,opt,name=Sequence,proto3" json:"sequence"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Sequence int64 `protobuf:"varint,1,opt,name=Sequence,proto3" json:"sequence"` } func (m *PingRequest) Reset() { *m = PingRequest{} } @@ -520,10 +505,7 @@ var xxx_messageInfo_PingRequest proto.InternalMessageInfo // PongResponse is the message received as response from the Ping method. type PongResponse struct { - Sequence int64 `protobuf:"varint,1,opt,name=Sequence,proto3" json:"sequence"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Sequence int64 `protobuf:"varint,1,opt,name=Sequence,proto3" json:"sequence"` } func (m *PongResponse) Reset() { *m = PongResponse{} } @@ -563,11 +545,8 @@ var xxx_messageInfo_PongResponse proto.InternalMessageInfo // including both a code as well as textual message that can be // presented to the user. type Status struct { - Code StatusCode `protobuf:"varint,1,opt,name=code,proto3,enum=synthetic_monitoring.StatusCode" json:"code,omitempty"` - Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Code StatusCode `protobuf:"varint,1,opt,name=code,proto3,enum=synthetic_monitoring.StatusCode" json:"code,omitempty"` + Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"` } func (m *Status) Reset() { *m = Status{} } @@ -607,11 +586,8 @@ var xxx_messageInfo_Status proto.InternalMessageInfo // method of the Checks service. It provides both the status of the // operation and the probe's details after successful registration. type RegisterProbeResult struct { - Probe Probe `protobuf:"bytes,1,opt,name=probe,proto3" json:"probe"` - Status Status `protobuf:"bytes,2,opt,name=status,proto3" json:"status"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Probe Probe `protobuf:"bytes,1,opt,name=probe,proto3" json:"probe"` + Status Status `protobuf:"bytes,2,opt,name=status,proto3" json:"status"` } func (m *RegisterProbeResult) Reset() { *m = RegisterProbeResult{} } @@ -649,25 +625,22 @@ var xxx_messageInfo_RegisterProbeResult proto.InternalMessageInfo // Probe represents a probe. type Probe struct { - Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"` - TenantId int64 `protobuf:"varint,2,opt,name=tenantId,proto3" json:"tenantId"` - Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name"` - Latitude float32 `protobuf:"fixed32,4,opt,name=latitude,proto3" json:"latitude"` - Longitude float32 `protobuf:"fixed32,5,opt,name=longitude,proto3" json:"longitude"` - Labels []Label `protobuf:"bytes,6,rep,name=labels,proto3" json:"labels"` - Region string `protobuf:"bytes,7,opt,name=region,proto3" json:"region"` - Public bool `protobuf:"varint,8,opt,name=public,proto3" json:"public"` - Online bool `protobuf:"varint,9,opt,name=online,proto3" json:"online"` - OnlineChange float64 `protobuf:"fixed64,10,opt,name=onlineChange,proto3" json:"onlineChange"` - Version string `protobuf:"bytes,11,opt,name=version,proto3" json:"version"` - Commit string `protobuf:"bytes,12,opt,name=commit,proto3" json:"commit"` - Buildstamp string `protobuf:"bytes,13,opt,name=buildstamp,proto3" json:"buildstamp"` - Deprecated bool `protobuf:"varint,14,opt,name=deprecated,proto3" json:"deprecated"` - Created float64 `protobuf:"fixed64,100,opt,name=created,proto3" json:"created"` - Modified float64 `protobuf:"fixed64,101,opt,name=modified,proto3" json:"modified"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"` + TenantId int64 `protobuf:"varint,2,opt,name=tenantId,proto3" json:"tenantId"` + Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name"` + Latitude float32 `protobuf:"fixed32,4,opt,name=latitude,proto3" json:"latitude"` + Longitude float32 `protobuf:"fixed32,5,opt,name=longitude,proto3" json:"longitude"` + Labels []Label `protobuf:"bytes,6,rep,name=labels,proto3" json:"labels"` + Region string `protobuf:"bytes,7,opt,name=region,proto3" json:"region"` + Public bool `protobuf:"varint,8,opt,name=public,proto3" json:"public"` + Online bool `protobuf:"varint,9,opt,name=online,proto3" json:"online"` + OnlineChange float64 `protobuf:"fixed64,10,opt,name=onlineChange,proto3" json:"onlineChange"` + Version string `protobuf:"bytes,11,opt,name=version,proto3" json:"version"` + Commit string `protobuf:"bytes,12,opt,name=commit,proto3" json:"commit"` + Buildstamp string `protobuf:"bytes,13,opt,name=buildstamp,proto3" json:"buildstamp"` + Deprecated bool `protobuf:"varint,14,opt,name=deprecated,proto3" json:"deprecated"` + Created float64 `protobuf:"fixed64,100,opt,name=created,proto3" json:"created"` + Modified float64 `protobuf:"fixed64,101,opt,name=modified,proto3" json:"modified"` } func (m *Probe) Reset() { *m = Probe{} } @@ -706,10 +679,7 @@ var xxx_messageInfo_Probe proto.InternalMessageInfo // TenantInfo identifies the tenant for which information is being // requeted via the GetTenant method of the Tenants service. type TenantInfo struct { - Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"` } func (m *TenantInfo) Reset() { *m = TenantInfo{} } @@ -747,18 +717,15 @@ var xxx_messageInfo_TenantInfo proto.InternalMessageInfo // Tenant represents a user of synthetic-monitoring. type Tenant struct { - Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"` - OrgId int64 `protobuf:"varint,2,opt,name=orgId,proto3" json:"orgId"` - MetricsRemote *RemoteInfo `protobuf:"bytes,3,opt,name=metricsRemote,proto3" json:"metricsRemote"` - EventsRemote *RemoteInfo `protobuf:"bytes,4,opt,name=eventsRemote,proto3" json:"eventsRemote"` - StackId int64 `protobuf:"varint,5,opt,name=stackId,proto3" json:"stackId"` - Status TenantStatus `protobuf:"varint,6,opt,name=status,proto3,enum=synthetic_monitoring.TenantStatus" json:"status"` - Reason string `protobuf:"bytes,7,opt,name=reason,proto3" json:"reason"` - Created float64 `protobuf:"fixed64,100,opt,name=created,proto3" json:"created"` - Modified float64 `protobuf:"fixed64,101,opt,name=modified,proto3" json:"modified"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"` + OrgId int64 `protobuf:"varint,2,opt,name=orgId,proto3" json:"orgId"` + MetricsRemote *RemoteInfo `protobuf:"bytes,3,opt,name=metricsRemote,proto3" json:"metricsRemote"` + EventsRemote *RemoteInfo `protobuf:"bytes,4,opt,name=eventsRemote,proto3" json:"eventsRemote"` + StackId int64 `protobuf:"varint,5,opt,name=stackId,proto3" json:"stackId"` + Status TenantStatus `protobuf:"varint,6,opt,name=status,proto3,enum=synthetic_monitoring.TenantStatus" json:"status"` + Reason string `protobuf:"bytes,7,opt,name=reason,proto3" json:"reason"` + Created float64 `protobuf:"fixed64,100,opt,name=created,proto3" json:"created"` + Modified float64 `protobuf:"fixed64,101,opt,name=modified,proto3" json:"modified"` } func (m *Tenant) Reset() { *m = Tenant{} } @@ -797,13 +764,10 @@ var xxx_messageInfo_Tenant proto.InternalMessageInfo // RemoteInfo represents an instance of the Prometheus remote write // service to send metrics or events to. type RemoteInfo struct { - Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name"` - Url string `protobuf:"bytes,2,opt,name=url,proto3" json:"url"` - Username string `protobuf:"bytes,3,opt,name=username,proto3" json:"username"` - Password string `protobuf:"bytes,4,opt,name=password,proto3" json:"password"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name"` + Url string `protobuf:"bytes,2,opt,name=url,proto3" json:"url"` + Username string `protobuf:"bytes,3,opt,name=username,proto3" json:"username"` + Password string `protobuf:"bytes,4,opt,name=password,proto3" json:"password"` } func (m *RemoteInfo) Reset() { *m = RemoteInfo{} } @@ -841,11 +805,8 @@ var xxx_messageInfo_RemoteInfo proto.InternalMessageInfo // CheckChange represents one change operation for a given check. type CheckChange struct { - Operation CheckOperation `protobuf:"varint,1,opt,name=operation,proto3,enum=synthetic_monitoring.CheckOperation" json:"operation,omitempty"` - Check Check `protobuf:"bytes,2,opt,name=check,proto3" json:"check"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Operation CheckOperation `protobuf:"varint,1,opt,name=operation,proto3,enum=synthetic_monitoring.CheckOperation" json:"operation,omitempty"` + Check Check `protobuf:"bytes,2,opt,name=check,proto3" json:"check"` } func (m *CheckChange) Reset() { *m = CheckChange{} } @@ -896,10 +857,7 @@ type Changes struct { // This field is used to signal that the list of changes should be interpreted as a diff // against the existing changes in the probe. For backwards compatibility, this will be // false if the probe didn't send a list of known changes. - IsDeltaFirstBatch bool `protobuf:"varint,3,opt,name=isDeltaFirstBatch,proto3" json:"isDeltaFirstBatch"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + IsDeltaFirstBatch bool `protobuf:"varint,3,opt,name=isDeltaFirstBatch,proto3" json:"isDeltaFirstBatch"` } func (m *Changes) Reset() { *m = Changes{} } @@ -936,11 +894,8 @@ func (m *Changes) XXX_DiscardUnknown() { var xxx_messageInfo_Changes proto.InternalMessageInfo type AdHocRequest struct { - AdHocCheck AdHocCheck `protobuf:"bytes,1,opt,name=adHocCheck,proto3" json:"adHocCheck"` - Tenant *Tenant `protobuf:"bytes,2,opt,name=tenant,proto3" json:"tenant"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + AdHocCheck AdHocCheck `protobuf:"bytes,1,opt,name=adHocCheck,proto3" json:"adHocCheck"` + Tenant *Tenant `protobuf:"bytes,2,opt,name=tenant,proto3" json:"tenant"` } func (m *AdHocRequest) Reset() { *m = AdHocRequest{} } @@ -979,11 +934,8 @@ var xxx_messageInfo_AdHocRequest proto.InternalMessageInfo // Label represents a single label in synthetic monitoring. These are // applied to the resulting metrics and logs. type Label struct { - Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name"` - Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name"` + Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value"` } func (m *Label) Reset() { *m = Label{} } @@ -1023,24 +975,21 @@ var xxx_messageInfo_Label proto.InternalMessageInfo // // The "settings" field defines the type of check. type Check struct { - Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"` - TenantId int64 `protobuf:"varint,2,opt,name=tenantId,proto3" json:"tenantId"` - Frequency int64 `protobuf:"varint,3,opt,name=frequency,proto3" json:"frequency"` - Offset int64 `protobuf:"varint,4,opt,name=offset,proto3" json:"offset"` - Timeout int64 `protobuf:"varint,5,opt,name=timeout,proto3" json:"timeout"` - Enabled bool `protobuf:"varint,6,opt,name=enabled,proto3" json:"enabled"` - Labels []Label `protobuf:"bytes,7,rep,name=labels,proto3" json:"labels"` - Settings CheckSettings `protobuf:"bytes,8,opt,name=settings,proto3" json:"settings"` - Probes []int64 `protobuf:"varint,9,rep,packed,name=probes,proto3" json:"probes"` - Target string `protobuf:"bytes,10,opt,name=target,proto3" json:"target"` - Job string `protobuf:"bytes,11,opt,name=job,proto3" json:"job"` - BasicMetricsOnly bool `protobuf:"varint,12,opt,name=basicMetricsOnly,proto3" json:"basicMetricsOnly"` - AlertSensitivity string `protobuf:"bytes,13,opt,name=alertSensitivity,proto3" json:"alertSensitivity"` - Created float64 `protobuf:"fixed64,100,opt,name=created,proto3" json:"created"` - Modified float64 `protobuf:"fixed64,101,opt,name=modified,proto3" json:"modified"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"` + TenantId int64 `protobuf:"varint,2,opt,name=tenantId,proto3" json:"tenantId"` + Frequency int64 `protobuf:"varint,3,opt,name=frequency,proto3" json:"frequency"` + Offset int64 `protobuf:"varint,4,opt,name=offset,proto3" json:"offset"` + Timeout int64 `protobuf:"varint,5,opt,name=timeout,proto3" json:"timeout"` + Enabled bool `protobuf:"varint,6,opt,name=enabled,proto3" json:"enabled"` + Labels []Label `protobuf:"bytes,7,rep,name=labels,proto3" json:"labels"` + Settings CheckSettings `protobuf:"bytes,8,opt,name=settings,proto3" json:"settings"` + Probes []int64 `protobuf:"varint,9,rep,packed,name=probes,proto3" json:"probes"` + Target string `protobuf:"bytes,10,opt,name=target,proto3" json:"target"` + Job string `protobuf:"bytes,11,opt,name=job,proto3" json:"job"` + BasicMetricsOnly bool `protobuf:"varint,12,opt,name=basicMetricsOnly,proto3" json:"basicMetricsOnly"` + AlertSensitivity string `protobuf:"bytes,13,opt,name=alertSensitivity,proto3" json:"alertSensitivity"` + Created float64 `protobuf:"fixed64,100,opt,name=created,proto3" json:"created"` + Modified float64 `protobuf:"fixed64,101,opt,name=modified,proto3" json:"modified"` } func (m *Check) Reset() { *m = Check{} } @@ -1077,15 +1026,12 @@ func (m *Check) XXX_DiscardUnknown() { var xxx_messageInfo_Check proto.InternalMessageInfo type AdHocCheck struct { - Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` - TenantId int64 `protobuf:"varint,2,opt,name=tenantId,proto3" json:"tenantId"` - Timeout int64 `protobuf:"varint,3,opt,name=timeout,proto3" json:"timeout"` - Settings CheckSettings `protobuf:"bytes,4,opt,name=settings,proto3" json:"settings"` - Probes []int64 `protobuf:"varint,5,rep,packed,name=probes,proto3" json:"probes"` - Target string `protobuf:"bytes,6,opt,name=target,proto3" json:"target"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` + TenantId int64 `protobuf:"varint,2,opt,name=tenantId,proto3" json:"tenantId"` + Timeout int64 `protobuf:"varint,3,opt,name=timeout,proto3" json:"timeout"` + Settings CheckSettings `protobuf:"bytes,4,opt,name=settings,proto3" json:"settings"` + Probes []int64 `protobuf:"varint,5,rep,packed,name=probes,proto3" json:"probes"` + Target string `protobuf:"bytes,6,opt,name=target,proto3" json:"target"` } func (m *AdHocCheck) Reset() { *m = AdHocCheck{} } @@ -1123,15 +1069,12 @@ var xxx_messageInfo_AdHocCheck proto.InternalMessageInfo // CheckSettings provides the settings for exactly one type of check. type CheckSettings struct { - Ping *PingSettings `protobuf:"bytes,1,opt,name=ping,proto3" json:"ping,omitempty"` - Http *HttpSettings `protobuf:"bytes,2,opt,name=http,proto3" json:"http,omitempty"` - Dns *DnsSettings `protobuf:"bytes,3,opt,name=dns,proto3" json:"dns,omitempty"` - Tcp *TcpSettings `protobuf:"bytes,4,opt,name=tcp,proto3" json:"tcp,omitempty"` - Traceroute *TracerouteSettings `protobuf:"bytes,5,opt,name=traceroute,proto3" json:"traceroute,omitempty"` - K6 *K6Settings `protobuf:"bytes,6,opt,name=k6,proto3" json:"k6,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Ping *PingSettings `protobuf:"bytes,1,opt,name=ping,proto3" json:"ping,omitempty"` + Http *HttpSettings `protobuf:"bytes,2,opt,name=http,proto3" json:"http,omitempty"` + Dns *DnsSettings `protobuf:"bytes,3,opt,name=dns,proto3" json:"dns,omitempty"` + Tcp *TcpSettings `protobuf:"bytes,4,opt,name=tcp,proto3" json:"tcp,omitempty"` + Traceroute *TracerouteSettings `protobuf:"bytes,5,opt,name=traceroute,proto3" json:"traceroute,omitempty"` + K6 *K6Settings `protobuf:"bytes,6,opt,name=k6,proto3" json:"k6,omitempty"` } func (m *CheckSettings) Reset() { *m = CheckSettings{} } @@ -1169,14 +1112,11 @@ var xxx_messageInfo_CheckSettings proto.InternalMessageInfo // PingSettings provides the settings for a ping check. type PingSettings struct { - IpVersion IpVersion `protobuf:"varint,1,opt,name=ipVersion,proto3,enum=synthetic_monitoring.IpVersion" json:"ipVersion"` - SourceIpAddress string `protobuf:"bytes,2,opt,name=sourceIpAddress,proto3" json:"sourceIpAddress,omitempty"` - PayloadSize int64 `protobuf:"varint,3,opt,name=payloadSize,proto3" json:"payloadSize,omitempty"` - DontFragment bool `protobuf:"varint,4,opt,name=dontFragment,proto3" json:"dontFragment"` - PacketCount int64 `protobuf:"varint,900,opt,name=packetCount,proto3" json:"packetCount"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + IpVersion IpVersion `protobuf:"varint,1,opt,name=ipVersion,proto3,enum=synthetic_monitoring.IpVersion" json:"ipVersion"` + SourceIpAddress string `protobuf:"bytes,2,opt,name=sourceIpAddress,proto3" json:"sourceIpAddress,omitempty"` + PayloadSize int64 `protobuf:"varint,3,opt,name=payloadSize,proto3" json:"payloadSize,omitempty"` + DontFragment bool `protobuf:"varint,4,opt,name=dontFragment,proto3" json:"dontFragment"` + PacketCount int64 `protobuf:"varint,900,opt,name=packetCount,proto3" json:"packetCount"` } func (m *PingSettings) Reset() { *m = PingSettings{} } @@ -1233,9 +1173,6 @@ type HttpSettings struct { FailIfHeaderNotMatchesRegexp []HeaderMatch `protobuf:"bytes,207,rep,name=failIfHeaderNotMatchesRegexp,proto3" json:"failIfHeaderNotMatchesRegexp,omitempty"` Compression CompressionAlgorithm `protobuf:"varint,208,opt,name=compression,proto3,enum=synthetic_monitoring.CompressionAlgorithm" json:"compression,omitempty"` CacheBustingQueryParamName string `protobuf:"bytes,900,opt,name=cacheBustingQueryParamName,proto3" json:"cacheBustingQueryParamName,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` } func (m *HttpSettings) Reset() { *m = HttpSettings{} } @@ -1274,12 +1211,9 @@ var xxx_messageInfo_HttpSettings proto.InternalMessageInfo // HeaderMatch represents a single header that must match in order for // the check to be considered successful. type HeaderMatch struct { - Header string `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"` - Regexp string `protobuf:"bytes,2,opt,name=regexp,proto3" json:"regexp,omitempty"` - AllowMissing bool `protobuf:"varint,3,opt,name=allowMissing,proto3" json:"allowMissing,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Header string `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"` + Regexp string `protobuf:"bytes,2,opt,name=regexp,proto3" json:"regexp,omitempty"` + AllowMissing bool `protobuf:"varint,3,opt,name=allowMissing,proto3" json:"allowMissing,omitempty"` } func (m *HeaderMatch) Reset() { *m = HeaderMatch{} } @@ -1319,9 +1253,6 @@ var xxx_messageInfo_HeaderMatch proto.InternalMessageInfo type DNSRRValidator struct { FailIfMatchesRegexp []string `protobuf:"bytes,1,rep,name=failIfMatchesRegexp,proto3" json:"failIfMatchesRegexp,omitempty"` FailIfNotMatchesRegexp []string `protobuf:"bytes,2,rep,name=failIfNotMatchesRegexp,proto3" json:"failIfNotMatchesRegexp,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` } func (m *DNSRRValidator) Reset() { *m = DNSRRValidator{} } @@ -1365,19 +1296,16 @@ var xxx_messageInfo_DNSRRValidator proto.InternalMessageInfo // // "ipVersion" is the IP version to use in the IP layer. type DnsSettings struct { - IpVersion IpVersion `protobuf:"varint,1,opt,name=ipVersion,proto3,enum=synthetic_monitoring.IpVersion" json:"ipVersion"` - SourceIpAddress string `protobuf:"bytes,2,opt,name=sourceIpAddress,proto3" json:"sourceIpAddress,omitempty"` - Server string `protobuf:"bytes,3,opt,name=server,proto3" json:"server"` - Port int32 `protobuf:"varint,4,opt,name=port,proto3" json:"port"` - RecordType DnsRecordType `protobuf:"varint,5,opt,name=recordType,proto3,enum=synthetic_monitoring.DnsRecordType" json:"recordType"` - Protocol DnsProtocol `protobuf:"varint,6,opt,name=protocol,proto3,enum=synthetic_monitoring.DnsProtocol" json:"protocol"` - ValidRCodes []string `protobuf:"bytes,200,rep,name=validRCodes,proto3" json:"validRCodes,omitempty"` - ValidateAnswer *DNSRRValidator `protobuf:"bytes,201,opt,name=validateAnswer,proto3" json:"validateAnswerRRS,omitempty"` - ValidateAuthority *DNSRRValidator `protobuf:"bytes,202,opt,name=validateAuthority,proto3" json:"validateAuthorityRRS,omitempty"` - ValidateAdditional *DNSRRValidator `protobuf:"bytes,203,opt,name=validateAdditional,proto3" json:"validateAdditionalRRS,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + IpVersion IpVersion `protobuf:"varint,1,opt,name=ipVersion,proto3,enum=synthetic_monitoring.IpVersion" json:"ipVersion"` + SourceIpAddress string `protobuf:"bytes,2,opt,name=sourceIpAddress,proto3" json:"sourceIpAddress,omitempty"` + Server string `protobuf:"bytes,3,opt,name=server,proto3" json:"server"` + Port int32 `protobuf:"varint,4,opt,name=port,proto3" json:"port"` + RecordType DnsRecordType `protobuf:"varint,5,opt,name=recordType,proto3,enum=synthetic_monitoring.DnsRecordType" json:"recordType"` + Protocol DnsProtocol `protobuf:"varint,6,opt,name=protocol,proto3,enum=synthetic_monitoring.DnsProtocol" json:"protocol"` + ValidRCodes []string `protobuf:"bytes,200,rep,name=validRCodes,proto3" json:"validRCodes,omitempty"` + ValidateAnswer *DNSRRValidator `protobuf:"bytes,201,opt,name=validateAnswer,proto3" json:"validateAnswerRRS,omitempty"` + ValidateAuthority *DNSRRValidator `protobuf:"bytes,202,opt,name=validateAuthority,proto3" json:"validateAuthorityRRS,omitempty"` + ValidateAdditional *DNSRRValidator `protobuf:"bytes,203,opt,name=validateAdditional,proto3" json:"validateAdditionalRRS,omitempty"` } func (m *DnsSettings) Reset() { *m = DnsSettings{} } @@ -1417,14 +1345,11 @@ var xxx_messageInfo_DnsSettings proto.InternalMessageInfo // // "ipVersion" is the IP version to use in the IP layer. type TcpSettings struct { - IpVersion IpVersion `protobuf:"varint,1,opt,name=ipVersion,proto3,enum=synthetic_monitoring.IpVersion" json:"ipVersion"` - SourceIpAddress string `protobuf:"bytes,2,opt,name=sourceIpAddress,proto3" json:"sourceIpAddress,omitempty"` - Tls bool `protobuf:"varint,3,opt,name=tls,proto3" json:"tls,omitempty"` - TlsConfig *TLSConfig `protobuf:"bytes,4,opt,name=tlsConfig,proto3" json:"tlsConfig,omitempty"` - QueryResponse []TCPQueryResponse `protobuf:"bytes,5,rep,name=queryResponse,proto3" json:"queryResponse,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + IpVersion IpVersion `protobuf:"varint,1,opt,name=ipVersion,proto3,enum=synthetic_monitoring.IpVersion" json:"ipVersion"` + SourceIpAddress string `protobuf:"bytes,2,opt,name=sourceIpAddress,proto3" json:"sourceIpAddress,omitempty"` + Tls bool `protobuf:"varint,3,opt,name=tls,proto3" json:"tls,omitempty"` + TlsConfig *TLSConfig `protobuf:"bytes,4,opt,name=tlsConfig,proto3" json:"tlsConfig,omitempty"` + QueryResponse []TCPQueryResponse `protobuf:"bytes,5,rep,name=queryResponse,proto3" json:"queryResponse,omitempty"` } func (m *TcpSettings) Reset() { *m = TcpSettings{} } @@ -1464,12 +1389,9 @@ var xxx_messageInfo_TcpSettings proto.InternalMessageInfo // send/expect pairs to be used when connecting to a generic TCP // service. type TCPQueryResponse struct { - Send []byte `protobuf:"bytes,1,opt,name=send,proto3" json:"send"` - Expect []byte `protobuf:"bytes,2,opt,name=expect,proto3" json:"expect"` - StartTLS bool `protobuf:"varint,3,opt,name=startTLS,proto3" json:"startTLS,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Send []byte `protobuf:"bytes,1,opt,name=send,proto3" json:"send"` + Expect []byte `protobuf:"bytes,2,opt,name=expect,proto3" json:"expect"` + StartTLS bool `protobuf:"varint,3,opt,name=startTLS,proto3" json:"startTLS,omitempty"` } func (m *TCPQueryResponse) Reset() { *m = TCPQueryResponse{} } @@ -1508,14 +1430,11 @@ var xxx_messageInfo_TCPQueryResponse proto.InternalMessageInfo // TLSConfig represents the TLS data to be used when establishing a // secure connection in the protocols that support it. type TLSConfig struct { - InsecureSkipVerify bool `protobuf:"varint,1,opt,name=insecureSkipVerify,proto3" json:"insecureSkipVerify,omitempty"` - CACert []byte `protobuf:"bytes,2,opt,name=CACert,proto3" json:"caCert,omitempty"` - ClientCert []byte `protobuf:"bytes,3,opt,name=clientCert,proto3" json:"clientCert,omitempty"` - ClientKey []byte `protobuf:"bytes,4,opt,name=clientKey,proto3" json:"clientKey,omitempty"` - ServerName string `protobuf:"bytes,5,opt,name=serverName,proto3" json:"serverName,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + InsecureSkipVerify bool `protobuf:"varint,1,opt,name=insecureSkipVerify,proto3" json:"insecureSkipVerify,omitempty"` + CACert []byte `protobuf:"bytes,2,opt,name=CACert,proto3" json:"caCert,omitempty"` + ClientCert []byte `protobuf:"bytes,3,opt,name=clientCert,proto3" json:"clientCert,omitempty"` + ClientKey []byte `protobuf:"bytes,4,opt,name=clientKey,proto3" json:"clientKey,omitempty"` + ServerName string `protobuf:"bytes,5,opt,name=serverName,proto3" json:"serverName,omitempty"` } func (m *TLSConfig) Reset() { *m = TLSConfig{} } @@ -1554,11 +1473,8 @@ var xxx_messageInfo_TLSConfig proto.InternalMessageInfo // BasicAuth represents the basic authentication credentials to be used // when talking to HTTP servers. type BasicAuth struct { - Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"` - Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"` + Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"` } func (m *BasicAuth) Reset() { *m = BasicAuth{} } @@ -1595,13 +1511,10 @@ func (m *BasicAuth) XXX_DiscardUnknown() { var xxx_messageInfo_BasicAuth proto.InternalMessageInfo type TracerouteSettings struct { - MaxHops int64 `protobuf:"varint,1,opt,name=maxHops,proto3" json:"maxHops"` - MaxUnknownHops int64 `protobuf:"varint,2,opt,name=maxUnknownHops,proto3" json:"maxUnknownHops"` - PtrLookup bool `protobuf:"varint,3,opt,name=ptrLookup,proto3" json:"ptrLookup"` - HopTimeout int64 `protobuf:"varint,4,opt,name=hopTimeout,proto3" json:"hopTimeout"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + MaxHops int64 `protobuf:"varint,1,opt,name=maxHops,proto3" json:"maxHops"` + MaxUnknownHops int64 `protobuf:"varint,2,opt,name=maxUnknownHops,proto3" json:"maxUnknownHops"` + PtrLookup bool `protobuf:"varint,3,opt,name=ptrLookup,proto3" json:"ptrLookup"` + HopTimeout int64 `protobuf:"varint,4,opt,name=hopTimeout,proto3" json:"hopTimeout"` } func (m *TracerouteSettings) Reset() { *m = TracerouteSettings{} } @@ -1638,10 +1551,7 @@ func (m *TracerouteSettings) XXX_DiscardUnknown() { var xxx_messageInfo_TracerouteSettings proto.InternalMessageInfo type K6Settings struct { - Script []byte `protobuf:"bytes,1,opt,name=script,proto3" json:"script"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Script []byte `protobuf:"bytes,1,opt,name=script,proto3" json:"script"` } func (m *K6Settings) Reset() { *m = K6Settings{} } @@ -1721,213 +1631,213 @@ func init() { func init() { proto.RegisterFile("checks.proto", fileDescriptor_a921b63774164c1f) } var fileDescriptor_a921b63774164c1f = []byte{ - // 3286 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x5a, 0xcb, 0x6f, 0x1c, 0xc7, - 0x99, 0x67, 0xcf, 0x8b, 0x9c, 0x6f, 0x86, 0x74, 0xbb, 0x2c, 0xcb, 0x23, 0x5a, 0x56, 0x53, 0x2d, - 0x59, 0xe0, 0x52, 0x86, 0x6c, 0x70, 0x6d, 0xd9, 0xf0, 0x2e, 0x16, 0x3b, 0x2f, 0x91, 0x63, 0x91, - 0x43, 0xaa, 0x66, 0x48, 0x48, 0xc6, 0x2e, 0xb4, 0xcd, 0xee, 0xe2, 0xb0, 0xcd, 0x99, 0xee, 0x71, - 0x77, 0x0d, 0x25, 0xfa, 0x6c, 0x2c, 0x16, 0xbb, 0x58, 0xc0, 0xa7, 0x05, 0xf6, 0xb6, 0x3e, 0x6e, - 0x02, 0xe4, 0x18, 0xe4, 0x9c, 0x5c, 0x94, 0xc4, 0x49, 0x7c, 0xc8, 0x21, 0xa7, 0x41, 0x22, 0x20, - 0x97, 0xf9, 0x2b, 0x82, 0x7a, 0x74, 0x77, 0x0d, 0x87, 0xcd, 0x28, 0x8e, 0x02, 0xf8, 0x32, 0x5d, - 0xf5, 0xab, 0xef, 0x51, 0x5d, 0xf5, 0xbd, 0xaa, 0x7a, 0xa0, 0x6c, 0x1f, 0x11, 0xfb, 0x38, 0xbc, - 0x33, 0x0c, 0x7c, 0xea, 0xa3, 0x4b, 0xe1, 0xa9, 0x47, 0x8f, 0x08, 0x75, 0xed, 0xc7, 0x03, 0xdf, - 0x73, 0xa9, 0x1f, 0xb8, 0x5e, 0x6f, 0xf9, 0x52, 0xcf, 0xef, 0xf9, 0x9c, 0xe0, 0x5d, 0xd6, 0x12, - 0xb4, 0x66, 0x01, 0x72, 0xfb, 0xbe, 0xeb, 0x98, 0x5f, 0x6b, 0x00, 0xbb, 0x81, 0x7f, 0x40, 0x3a, - 0xd4, 0xa2, 0x04, 0x6d, 0x40, 0x41, 0x88, 0xac, 0x68, 0x2b, 0xd9, 0xd5, 0xd2, 0xba, 0x71, 0xe7, - 0x3c, 0x99, 0x77, 0x9a, 0x1e, 0x75, 0xe9, 0x29, 0x26, 0x87, 0xb5, 0xa5, 0x67, 0x63, 0x63, 0x6e, - 0x32, 0x36, 0x24, 0x1b, 0x96, 0x4f, 0xf4, 0x09, 0xcc, 0x53, 0xe2, 0x59, 0x1e, 0x0d, 0x2b, 0x99, - 0x17, 0x93, 0xf4, 0x8a, 0x94, 0x14, 0xf1, 0xe1, 0xa8, 0x61, 0x3e, 0x82, 0x62, 0x4c, 0x86, 0x2e, - 0x43, 0xc6, 0x75, 0x2a, 0xda, 0x8a, 0xb6, 0x9a, 0xad, 0x15, 0x26, 0x63, 0x23, 0xe3, 0x3a, 0x38, - 0xe3, 0x3a, 0xe8, 0x7d, 0x28, 0xf7, 0xad, 0x90, 0x6e, 0xfb, 0x8e, 0x7b, 0xe8, 0x12, 0xa7, 0x92, - 0x59, 0xd1, 0x56, 0xb5, 0x9a, 0x3e, 0x19, 0x1b, 0x53, 0x38, 0x9e, 0xea, 0x99, 0xff, 0xae, 0x41, - 0x91, 0xbf, 0x7e, 0xcb, 0x3b, 0xf4, 0xd1, 0xdb, 0x30, 0xbf, 0x4f, 0x82, 0xd0, 0xf5, 0x3d, 0xae, - 0xa0, 0x58, 0x2b, 0xb1, 0xf9, 0x9c, 0x08, 0x08, 0x47, 0x63, 0xc8, 0x84, 0x42, 0xdd, 0x1f, 0x0c, - 0x5c, 0xca, 0x95, 0x14, 0x6b, 0xc0, 0xdf, 0x9f, 0x23, 0x58, 0x8e, 0xa0, 0x3b, 0x00, 0xb5, 0x91, - 0xdb, 0x77, 0x42, 0x6a, 0x0d, 0x86, 0x95, 0x2c, 0xa7, 0x5b, 0x9a, 0x8c, 0x0d, 0x38, 0x88, 0x51, - 0xac, 0x50, 0x98, 0x1f, 0x42, 0x69, 0xd7, 0xf5, 0x7a, 0x98, 0x7c, 0x3e, 0x22, 0x21, 0x45, 0xab, - 0xb0, 0xd0, 0x61, 0x4d, 0xcf, 0x26, 0xf2, 0x5d, 0xcb, 0x93, 0xb1, 0xb1, 0x10, 0x4a, 0x0c, 0xc7, - 0xa3, 0xe6, 0x47, 0x50, 0xde, 0xf5, 0x19, 0x63, 0x38, 0xf4, 0xbd, 0x90, 0xfc, 0x05, 0x9c, 0x0f, - 0xa1, 0xc0, 0x36, 0x7d, 0x14, 0xa2, 0xf7, 0x21, 0x67, 0xfb, 0x8e, 0xa0, 0x5f, 0x5a, 0x5f, 0x39, - 0x7f, 0xa7, 0x04, 0x6d, 0xdd, 0x77, 0x08, 0xe6, 0xd4, 0xa8, 0x02, 0xf3, 0x03, 0x12, 0x86, 0x56, - 0x8f, 0x88, 0x75, 0xc0, 0x51, 0xd7, 0xfc, 0x4f, 0x0d, 0x5e, 0xc3, 0xa4, 0xe7, 0x86, 0x94, 0x04, - 0x7c, 0x75, 0x31, 0x09, 0x47, 0x7d, 0x8a, 0x3e, 0x84, 0xfc, 0x90, 0x75, 0xb9, 0xa2, 0xd2, 0xfa, - 0x9b, 0xe7, 0x2b, 0xe2, 0x1c, 0xb5, 0x1c, 0x33, 0x07, 0x2c, 0xe8, 0xd1, 0xc7, 0x50, 0x08, 0xb9, - 0x7a, 0xae, 0xa9, 0xb4, 0x7e, 0xf5, 0xa2, 0x29, 0x4a, 0x56, 0xc9, 0x61, 0x7e, 0x9d, 0x87, 0x3c, - 0x17, 0x99, 0x6a, 0x3a, 0xab, 0xb0, 0x20, 0x4c, 0xad, 0x25, 0xcc, 0x46, 0x2e, 0x59, 0x84, 0xe1, - 0xb8, 0x85, 0xae, 0x42, 0xce, 0xb3, 0x06, 0x44, 0xee, 0xe7, 0xc2, 0x64, 0x6c, 0xf0, 0x3e, 0xe6, - 0xbf, 0x4c, 0x4e, 0xdf, 0xa2, 0x2e, 0x1d, 0x39, 0xa4, 0x92, 0x5b, 0xd1, 0x56, 0x33, 0x42, 0x4e, - 0x84, 0xe1, 0xb8, 0x85, 0x6e, 0x43, 0xb1, 0xef, 0x7b, 0x3d, 0x41, 0x9a, 0xe7, 0xa4, 0x8b, 0x93, - 0xb1, 0x91, 0x80, 0x38, 0x69, 0xa2, 0x3a, 0x14, 0xfa, 0xd6, 0x01, 0xe9, 0x87, 0x95, 0x02, 0xf7, - 0xa4, 0x94, 0x65, 0xdb, 0x62, 0x34, 0x89, 0x3f, 0x0a, 0x16, 0x2c, 0x9f, 0xcc, 0x66, 0x03, 0xd2, - 0x63, 0x96, 0x3d, 0x9f, 0xd8, 0xac, 0x40, 0xb0, 0x7c, 0x32, 0x9a, 0xe1, 0xe8, 0xa0, 0xef, 0xda, - 0x95, 0x85, 0x15, 0x6d, 0x75, 0x41, 0xd0, 0x08, 0x04, 0xcb, 0x27, 0xa3, 0xf1, 0xbd, 0xbe, 0xeb, - 0x91, 0x4a, 0x31, 0xa1, 0x11, 0x08, 0x96, 0x4f, 0xe6, 0x8a, 0xa2, 0x55, 0x3f, 0xb2, 0xbc, 0x1e, - 0xa9, 0x40, 0xe2, 0x8a, 0x2a, 0x8e, 0xa7, 0x7a, 0xcc, 0xf9, 0xa4, 0xa7, 0x55, 0x4a, 0xe7, 0x38, - 0xdf, 0x49, 0xe2, 0x7c, 0xc2, 0xd5, 0x2a, 0xe5, 0x59, 0xe7, 0xb3, 0x63, 0xe7, 0x4b, 0xdc, 0xac, - 0xb2, 0x78, 0xbe, 0xf3, 0x25, 0x6d, 0x46, 0xef, 0x90, 0x61, 0x40, 0x6c, 0x8b, 0x12, 0xa7, 0xb2, - 0xc4, 0x5f, 0x8c, 0xd3, 0x27, 0x28, 0x56, 0xda, 0x6c, 0xaa, 0x76, 0x40, 0x38, 0xb1, 0xc3, 0xdf, - 0x8d, 0x4f, 0x55, 0x42, 0x38, 0x6a, 0x30, 0x7b, 0x18, 0x44, 0xe1, 0x88, 0x70, 0x3a, 0x6e, 0x0f, - 0x11, 0x86, 0xe3, 0x96, 0x79, 0x15, 0xa0, 0x2b, 0x6c, 0x8c, 0x85, 0xa1, 0xa5, 0xc4, 0x4e, 0x99, - 0x7d, 0x9a, 0xbf, 0xcb, 0x42, 0x41, 0x0c, 0xa7, 0x9a, 0xb0, 0x01, 0x79, 0x3f, 0xe8, 0xc5, 0xf6, - 0x5b, 0x9c, 0x8c, 0x0d, 0x01, 0x60, 0xf1, 0x40, 0x8f, 0x60, 0x71, 0x40, 0x68, 0xe0, 0xda, 0x21, - 0x26, 0x03, 0x9f, 0x0a, 0x13, 0x2e, 0xa5, 0xf9, 0xba, 0xa0, 0x61, 0x93, 0xa9, 0xbd, 0x3a, 0x19, - 0x1b, 0xd3, 0xac, 0x78, 0xba, 0x8b, 0xf6, 0xa1, 0x4c, 0x4e, 0x08, 0x8b, 0xd8, 0x42, 0x72, 0xee, - 0x05, 0x25, 0x73, 0x83, 0x50, 0x39, 0xf1, 0x54, 0x8f, 0xad, 0x72, 0x48, 0x2d, 0xfb, 0xb8, 0xe5, - 0x70, 0x17, 0xc9, 0x8a, 0x55, 0x96, 0x10, 0x8e, 0x1a, 0xe8, 0x5e, 0x1c, 0x1b, 0x0a, 0x3c, 0x7c, - 0x99, 0xe7, 0x2b, 0x16, 0x0b, 0x28, 0x23, 0x04, 0x37, 0x1a, 0xc1, 0x15, 0xc5, 0x09, 0xe1, 0x21, - 0x56, 0x78, 0xd6, 0x43, 0x18, 0x82, 0xe5, 0xf3, 0xe5, 0x6f, 0xfc, 0xff, 0x6a, 0x00, 0xc9, 0x92, - 0xc4, 0xf1, 0x45, 0x3b, 0x37, 0xbe, 0x5c, 0x81, 0xec, 0x28, 0xe8, 0xcb, 0xa4, 0x33, 0x3f, 0x19, - 0x1b, 0xac, 0x8b, 0xd9, 0x0f, 0xd3, 0x38, 0x0a, 0x49, 0xa0, 0x04, 0x27, 0xae, 0x31, 0xc2, 0x70, - 0xdc, 0x62, 0x94, 0x43, 0x2b, 0x0c, 0x9f, 0xf8, 0x81, 0xc3, 0x77, 0x4a, 0x52, 0x46, 0x18, 0x8e, - 0x5b, 0x2c, 0x8a, 0x97, 0xea, 0x2c, 0x9b, 0x4b, 0x07, 0xad, 0x41, 0xd1, 0x1f, 0x92, 0xc0, 0xa2, - 0x51, 0x7e, 0x5c, 0x5a, 0xbf, 0x79, 0xfe, 0x5a, 0x73, 0xae, 0x9d, 0x88, 0x16, 0x27, 0x6c, 0x2c, - 0x03, 0xf0, 0x02, 0x41, 0xc6, 0xf1, 0x37, 0x2f, 0xe0, 0x8f, 0x32, 0x00, 0xa7, 0x37, 0x9f, 0x6b, - 0x30, 0x2f, 0xe6, 0x11, 0xa2, 0xd6, 0x99, 0x22, 0xe5, 0xfa, 0x05, 0x52, 0x04, 0x4f, 0x6a, 0x99, - 0xb2, 0x71, 0xb6, 0x4c, 0xb9, 0x7a, 0x91, 0xf5, 0xa4, 0xd7, 0x28, 0xa8, 0x0e, 0xaf, 0xba, 0x61, - 0x83, 0xf4, 0xa9, 0x75, 0xcf, 0x0d, 0x42, 0x5a, 0xb3, 0xa8, 0x7d, 0xc4, 0x77, 0x62, 0xa1, 0xf6, - 0xfa, 0x64, 0x6c, 0xcc, 0x0e, 0xe2, 0x59, 0xc8, 0xfc, 0x81, 0x06, 0xe5, 0xaa, 0xb3, 0xe9, 0xdb, - 0x51, 0x19, 0xd0, 0x05, 0xb0, 0x58, 0x9f, 0xbf, 0x8a, 0xcc, 0x9a, 0x29, 0x8e, 0x55, 0x8d, 0xe9, - 0x6a, 0x48, 0xce, 0x52, 0xe1, 0xc5, 0x4a, 0x1b, 0x35, 0xa0, 0x20, 0xa6, 0x7d, 0x71, 0x36, 0x95, - 0xef, 0xcc, 0x96, 0x4e, 0x63, 0x4b, 0x27, 0x78, 0xb0, 0x7c, 0x9a, 0xf7, 0x20, 0xcf, 0x53, 0xce, - 0x9f, 0x31, 0x5a, 0x03, 0xf2, 0x27, 0x56, 0x7f, 0x24, 0x6b, 0x04, 0x11, 0x99, 0x38, 0x80, 0xc5, - 0xc3, 0xfc, 0x49, 0x1e, 0xf2, 0x62, 0x5e, 0x7f, 0x7d, 0x7e, 0xbe, 0x0d, 0xc5, 0xc3, 0x40, 0xd4, - 0x37, 0xa7, 0x7c, 0xf5, 0xb3, 0x22, 0xaf, 0xc6, 0x20, 0x4e, 0x9a, 0x3c, 0x95, 0x1d, 0x1e, 0x86, - 0x84, 0x72, 0x3f, 0xc8, 0xca, 0x54, 0xc6, 0x11, 0x2c, 0x9f, 0xcc, 0xe1, 0xa9, 0x3b, 0x20, 0xfe, - 0x88, 0xaa, 0x31, 0x48, 0x42, 0x38, 0x6a, 0x30, 0x32, 0xe2, 0x59, 0x07, 0x7d, 0xe2, 0xf0, 0x20, - 0xb4, 0x20, 0xc8, 0x24, 0x84, 0xa3, 0x86, 0x92, 0xc9, 0xe7, 0xbf, 0x7b, 0x26, 0x7f, 0x00, 0x0b, - 0x21, 0xa1, 0xd4, 0xf5, 0x7a, 0x21, 0xcf, 0xd3, 0xa5, 0xf5, 0x1b, 0x17, 0xd8, 0x7f, 0x47, 0x92, - 0xd6, 0x74, 0x29, 0x2e, 0x66, 0xc6, 0x71, 0x8b, 0x27, 0x7e, 0x56, 0x21, 0x85, 0x95, 0xe2, 0x4a, - 0x36, 0x5a, 0x09, 0x81, 0x60, 0xf9, 0x64, 0x34, 0xd4, 0x0a, 0x7a, 0x84, 0xf2, 0x74, 0x2e, 0xc3, - 0xa3, 0x40, 0xb0, 0x7c, 0xb2, 0x00, 0xf5, 0x99, 0x7f, 0x20, 0xd3, 0x37, 0x0f, 0x50, 0x9f, 0xf9, - 0x07, 0x98, 0xfd, 0xa0, 0x7f, 0x06, 0xfd, 0xc0, 0x0a, 0x5d, 0x7b, 0x5b, 0xa4, 0x8e, 0x1d, 0xaf, - 0x7f, 0xca, 0x13, 0xf8, 0x42, 0xed, 0xd2, 0x64, 0x6c, 0xcc, 0x8c, 0xe1, 0x19, 0x84, 0x49, 0xb0, - 0xfa, 0x24, 0xa0, 0x1d, 0xe2, 0x85, 0x2e, 0x75, 0x4f, 0x5c, 0x7a, 0x2a, 0x53, 0x3b, 0x97, 0x70, - 0x76, 0x0c, 0xcf, 0x20, 0x2f, 0x3f, 0x7a, 0x7f, 0x95, 0x01, 0x48, 0xfc, 0x4e, 0xb1, 0xdf, 0xe2, - 0x77, 0xb4, 0x5f, 0xc5, 0xdc, 0xb2, 0x17, 0x98, 0x9b, 0x6a, 0x02, 0xb9, 0x97, 0x6d, 0x02, 0xf9, - 0x17, 0x30, 0x81, 0x42, 0x9a, 0x09, 0x98, 0x7f, 0xcc, 0xc2, 0xe2, 0x94, 0x56, 0xf4, 0x09, 0xe4, - 0x86, 0xae, 0xd7, 0x93, 0xd1, 0x2b, 0x25, 0x3b, 0xb3, 0xb3, 0x4f, 0x3c, 0x4f, 0x34, 0x19, 0x1b, - 0x4b, 0x8c, 0xe7, 0x1d, 0x7f, 0xe0, 0x52, 0x32, 0x18, 0xd2, 0x53, 0xcc, 0x65, 0x30, 0x59, 0x47, - 0x94, 0x0e, 0x65, 0xdc, 0x4a, 0x91, 0xb5, 0x49, 0xe9, 0x70, 0x5a, 0x16, 0xe3, 0x51, 0x65, 0xb1, - 0x3e, 0xba, 0x07, 0x59, 0xc7, 0x0b, 0x65, 0x1d, 0x94, 0x92, 0x42, 0x1a, 0x5e, 0x18, 0x4b, 0xe2, - 0x85, 0x90, 0xe3, 0x85, 0x8a, 0x20, 0x26, 0x80, 0xc9, 0xa1, 0xf6, 0x50, 0xee, 0x43, 0x8a, 0x9c, - 0xae, 0x3d, 0x9c, 0x96, 0x43, 0x6d, 0x75, 0x42, 0x4c, 0x00, 0x3a, 0x00, 0xa0, 0x81, 0x65, 0x93, - 0xc0, 0x1f, 0x51, 0x71, 0x28, 0x28, 0xad, 0xaf, 0xa6, 0x88, 0x8b, 0xe9, 0x62, 0xa9, 0x95, 0xc9, - 0xd8, 0xb8, 0x94, 0xf0, 0x2b, 0xc2, 0x15, 0xa9, 0xa8, 0x06, 0x99, 0xe3, 0xbb, 0x7c, 0xf7, 0x52, - 0xf3, 0xc8, 0xfd, 0xbb, 0x89, 0xbd, 0xb0, 0x02, 0xed, 0xf8, 0xae, 0x22, 0x2b, 0x73, 0x7c, 0xf7, - 0xe3, 0xdc, 0xb3, 0xff, 0x33, 0x34, 0xf3, 0x9b, 0x0c, 0x94, 0xd5, 0x4d, 0x43, 0x5b, 0x50, 0x74, - 0x87, 0xea, 0xe9, 0x79, 0x29, 0xed, 0xc8, 0xdf, 0x8a, 0xc8, 0x44, 0x6c, 0x8e, 0xb9, 0x70, 0xd2, - 0x44, 0x1b, 0xf0, 0x4a, 0xe8, 0x8f, 0x02, 0x9b, 0xb4, 0x86, 0x55, 0xc7, 0x09, 0x48, 0x18, 0xca, - 0xfc, 0xf1, 0xd6, 0x64, 0x6c, 0x5c, 0x39, 0x33, 0xa4, 0x4c, 0xf0, 0x2c, 0x17, 0xfa, 0x07, 0x28, - 0x0d, 0xad, 0xd3, 0xbe, 0x6f, 0x39, 0x1d, 0xf7, 0x0b, 0x22, 0xbd, 0xea, 0xca, 0x64, 0x6c, 0xbc, - 0xae, 0xc0, 0x8a, 0x00, 0x95, 0x9a, 0x1d, 0x64, 0x1c, 0xdf, 0xa3, 0xf7, 0x02, 0xab, 0x37, 0x20, - 0x9e, 0xc8, 0x13, 0x0b, 0x62, 0x59, 0x54, 0x1c, 0x4f, 0xf5, 0xd0, 0x3a, 0x53, 0x69, 0x1f, 0x13, - 0x5a, 0xf7, 0x47, 0x1e, 0xad, 0x7c, 0x39, 0xcf, 0x75, 0xbe, 0x32, 0x19, 0x1b, 0x2a, 0x8e, 0xd5, - 0x8e, 0xf9, 0xa3, 0x32, 0x94, 0x55, 0xbb, 0x7d, 0xc9, 0xcb, 0xd9, 0x80, 0xc2, 0x80, 0xd0, 0x23, - 0x5f, 0xc4, 0x9f, 0xd4, 0x23, 0x3e, 0x9b, 0xc1, 0x36, 0xa7, 0x13, 0xbe, 0x2d, 0x78, 0xb0, 0x7c, - 0xa2, 0x77, 0x61, 0xfe, 0x88, 0x58, 0x0e, 0x09, 0x98, 0xd7, 0x64, 0x57, 0x8b, 0xa2, 0xb2, 0x91, - 0x90, 0xb2, 0x86, 0x11, 0x15, 0xba, 0x05, 0xb9, 0x03, 0xdf, 0x39, 0x95, 0x75, 0x26, 0x77, 0x45, - 0xd6, 0x57, 0x5d, 0x91, 0xf5, 0x59, 0xf1, 0xe4, 0xf9, 0xf7, 0xfc, 0x7e, 0xdf, 0x7f, 0x82, 0x89, - 0xe3, 0x06, 0xc4, 0xa6, 0x21, 0xf7, 0x00, 0x59, 0x3c, 0xcd, 0x0c, 0xe2, 0x59, 0x08, 0xed, 0x43, - 0x91, 0xf6, 0xc3, 0xba, 0xef, 0x1d, 0xba, 0x3d, 0x1e, 0xdf, 0x53, 0xef, 0x9c, 0xba, 0x5b, 0x1d, - 0x41, 0x56, 0x7b, 0x63, 0x32, 0x36, 0x5e, 0x8b, 0xb9, 0x94, 0x79, 0x25, 0xa2, 0x98, 0x5c, 0x9e, - 0x8b, 0xaa, 0x23, 0x7a, 0xc4, 0xf3, 0x41, 0xaa, 0xdc, 0x5a, 0x44, 0x26, 0xe4, 0xc6, 0x5c, 0xaa, - 0xdc, 0x18, 0x64, 0x96, 0x79, 0x40, 0xac, 0x80, 0x04, 0x5d, 0xff, 0x98, 0x78, 0x95, 0x43, 0xbe, - 0x46, 0xdc, 0x32, 0x15, 0x58, 0xb5, 0x4c, 0x05, 0x46, 0xeb, 0xb0, 0x30, 0x0c, 0xfc, 0xa7, 0xa7, - 0x7b, 0x78, 0xab, 0xd2, 0xe3, 0x9c, 0x97, 0x27, 0x63, 0x03, 0x45, 0x98, 0xc2, 0x16, 0xd3, 0xa1, - 0x77, 0xa0, 0x78, 0x68, 0xb9, 0xfd, 0xd6, 0x61, 0xa7, 0xb3, 0x55, 0x79, 0xa6, 0xf1, 0xe5, 0x15, - 0xd5, 0x51, 0x84, 0xe2, 0xa4, 0x89, 0x3e, 0x80, 0xb2, 0xe8, 0xb4, 0x7d, 0xca, 0x18, 0x7e, 0xae, - 0x25, 0xc6, 0xaf, 0x0e, 0xe0, 0xa9, 0x1e, 0xba, 0x0f, 0xfa, 0x89, 0xd5, 0x77, 0x9d, 0xe4, 0xb6, - 0x28, 0xac, 0xfc, 0x82, 0x95, 0xe9, 0xf9, 0xda, 0xb5, 0xc9, 0xd8, 0x58, 0x3e, 0x3b, 0xa8, 0xcc, - 0x74, 0x86, 0x11, 0xb5, 0xe1, 0x55, 0x8e, 0x6d, 0x76, 0xbb, 0xbb, 0xd2, 0x94, 0xc3, 0xca, 0x2f, - 0x35, 0x6e, 0x7b, 0xc6, 0x64, 0x6c, 0xbc, 0x39, 0x33, 0xaa, 0x88, 0x9b, 0x65, 0x45, 0xff, 0x06, - 0x6f, 0x88, 0xc9, 0xd6, 0x7c, 0xe7, 0x74, 0x9b, 0x95, 0xdc, 0x24, 0xc4, 0xa4, 0x47, 0x9e, 0x0e, - 0x2b, 0xdf, 0x08, 0xa9, 0x6f, 0x4f, 0xc6, 0xc6, 0xf5, 0x14, 0x1a, 0x45, 0x76, 0x9a, 0x18, 0xe4, - 0xc2, 0x72, 0x32, 0xd4, 0xf6, 0xe9, 0xb4, 0x92, 0x5f, 0x09, 0x25, 0xab, 0x93, 0xb1, 0x71, 0x33, - 0x9d, 0x4c, 0xd1, 0x73, 0x81, 0x30, 0xf4, 0xdf, 0x1a, 0x5c, 0x11, 0xc3, 0x9b, 0xdc, 0xdd, 0xa6, - 0x55, 0xfd, 0xfa, 0xc2, 0xa3, 0x91, 0xc2, 0x51, 0xbb, 0x2d, 0xab, 0x82, 0x1b, 0xa9, 0xc2, 0x94, - 0x09, 0xa5, 0x6b, 0x44, 0xff, 0xa3, 0xc1, 0x55, 0x75, 0x74, 0xe6, 0xed, 0x7f, 0xf3, 0xc2, 0x53, - 0xba, 0x23, 0xa7, 0x74, 0xeb, 0x22, 0x79, 0xca, 0xac, 0x2e, 0xd4, 0x8b, 0x8e, 0xa0, 0x64, 0xfb, - 0x83, 0x21, 0x4b, 0x07, 0x2c, 0x98, 0x7e, 0x2b, 0xa2, 0xe9, 0x5a, 0x4a, 0xc5, 0x94, 0x50, 0x56, - 0xfb, 0x3d, 0x3f, 0x70, 0xe9, 0xd1, 0x40, 0x78, 0xa5, 0x22, 0x43, 0xf5, 0x4a, 0x05, 0x66, 0xbb, - 0x6f, 0x5b, 0xf6, 0x11, 0xa9, 0x8d, 0x42, 0x16, 0xc5, 0x1f, 0x8c, 0x48, 0x70, 0xba, 0x6b, 0x05, - 0xd6, 0xa0, 0xcd, 0xce, 0x47, 0x5f, 0x8a, 0x7b, 0x05, 0xbe, 0xfb, 0xe9, 0x64, 0xea, 0xee, 0xa7, - 0x53, 0x99, 0xff, 0xaf, 0x41, 0x49, 0x59, 0x32, 0xf4, 0x0e, 0x14, 0x44, 0xd4, 0x95, 0xf5, 0x27, - 0xaf, 0x89, 0x05, 0xa2, 0x48, 0x94, 0x34, 0x8c, 0x3a, 0x10, 0x9b, 0x92, 0x49, 0xa8, 0x83, 0xb3, - 0xcb, 0x2a, 0x69, 0xd0, 0x3f, 0x41, 0xd9, 0x62, 0xb1, 0x76, 0xdb, 0x0d, 0x43, 0x56, 0xc9, 0x89, - 0x63, 0xed, 0xf2, 0x64, 0x6c, 0x5c, 0x56, 0x71, 0x85, 0x73, 0x8a, 0xde, 0xfc, 0x99, 0x06, 0x4b, - 0x8d, 0x76, 0x07, 0xe3, 0x7d, 0xe6, 0x91, 0x16, 0xf5, 0x03, 0xd4, 0x81, 0xd7, 0xc4, 0x9e, 0x4d, - 0x9b, 0x88, 0xf0, 0x8f, 0xeb, 0x93, 0xb1, 0xf1, 0xd6, 0x39, 0xc3, 0x8a, 0x82, 0xf3, 0xb8, 0xd1, - 0xbf, 0xc0, 0xe5, 0x38, 0x16, 0x4d, 0xcb, 0xcd, 0x70, 0xb9, 0x37, 0x27, 0x63, 0x63, 0xe5, 0x7c, - 0x0a, 0x45, 0x74, 0x8a, 0x0c, 0xf3, 0x87, 0x05, 0x28, 0x29, 0xf5, 0xe0, 0xf7, 0xb5, 0xe0, 0x31, - 0xa1, 0x10, 0x92, 0xe0, 0x84, 0x04, 0xf2, 0x1e, 0x48, 0x5c, 0x75, 0x71, 0x04, 0xcb, 0x27, 0x3b, - 0xb1, 0x0f, 0xfd, 0x40, 0xd4, 0x33, 0x79, 0x71, 0x62, 0x67, 0x7d, 0xcc, 0x7f, 0x51, 0x07, 0x20, - 0x20, 0xb6, 0x1f, 0x38, 0xdd, 0xd3, 0xa1, 0x28, 0x44, 0x97, 0xd2, 0xce, 0x17, 0x0d, 0x2f, 0xc4, - 0x31, 0xa9, 0xb8, 0x32, 0x4d, 0x58, 0xb1, 0xd2, 0x46, 0xf7, 0x79, 0xc2, 0xa2, 0xbe, 0xed, 0xf7, - 0xe5, 0x3d, 0x5d, 0x7a, 0xc9, 0xbd, 0x2b, 0x09, 0xe5, 0xcd, 0x94, 0xec, 0xe1, 0xb8, 0x85, 0xfe, - 0x11, 0x4a, 0x3c, 0xb8, 0x63, 0x91, 0x5f, 0x9e, 0x09, 0xb3, 0xe1, 0x5e, 0xaa, 0xe0, 0xaa, 0x97, - 0x2a, 0x30, 0xf2, 0x60, 0xe9, 0x44, 0x18, 0x22, 0xa9, 0x7a, 0xe1, 0x13, 0x12, 0x88, 0xdc, 0x56, - 0x4a, 0xbb, 0xcd, 0x9a, 0x36, 0x5d, 0x25, 0xf1, 0xc4, 0x02, 0x30, 0xee, 0x28, 0xca, 0xce, 0x48, - 0x47, 0x4f, 0x64, 0x16, 0x63, 0xc8, 0x88, 0x1e, 0xb1, 0x98, 0x72, 0xca, 0x72, 0xe2, 0x8b, 0xab, - 0x34, 0x27, 0x63, 0xe3, 0xda, 0x8c, 0x8c, 0x69, 0xad, 0xb3, 0x3a, 0xd0, 0x17, 0x80, 0x62, 0xd0, - 0x71, 0x5c, 0xea, 0xfa, 0x9e, 0xd5, 0x67, 0xf9, 0xf3, 0xc5, 0x35, 0xdf, 0x98, 0x8c, 0x0d, 0x63, - 0x56, 0xc8, 0xb4, 0xea, 0x73, 0xb4, 0x98, 0x5f, 0x65, 0xa1, 0xa4, 0x9c, 0x7a, 0xbe, 0xaf, 0xde, - 0x72, 0x03, 0xb2, 0xb4, 0x1f, 0xca, 0x88, 0x26, 0x4e, 0x66, 0xfd, 0xa9, 0x13, 0x1e, 0xed, 0x9f, - 0xa9, 0x2c, 0x73, 0x2f, 0xaf, 0xb2, 0x1c, 0xc0, 0xe2, 0xe7, 0x2c, 0xaa, 0x47, 0xdf, 0xee, 0xf8, - 0xd1, 0xbb, 0xb4, 0x7e, 0x2b, 0x45, 0x76, 0x7d, 0xf7, 0x81, 0x4a, 0x5d, 0x33, 0x64, 0x96, 0x7c, - 0x63, 0x4a, 0x88, 0xa2, 0x6a, 0x5a, 0xba, 0xf9, 0x1f, 0x1a, 0xe8, 0x67, 0x85, 0xb0, 0x50, 0x10, - 0x12, 0x4f, 0xdc, 0x5a, 0x94, 0x45, 0x28, 0x60, 0x7d, 0xcc, 0x7f, 0x59, 0x30, 0x21, 0x4f, 0x87, - 0xc4, 0x16, 0x37, 0x85, 0x65, 0x11, 0x4c, 0x04, 0x82, 0xe5, 0x93, 0x95, 0xa2, 0x21, 0xb5, 0x02, - 0xda, 0xdd, 0xea, 0xc8, 0x75, 0xe4, 0xa5, 0x68, 0x84, 0xa9, 0xa5, 0x68, 0x84, 0x99, 0x3f, 0xce, - 0x40, 0x31, 0x5e, 0x2b, 0xb4, 0x0b, 0xc8, 0xf5, 0x42, 0x62, 0x8f, 0x02, 0xd2, 0x39, 0xe6, 0x9b, - 0xec, 0x1e, 0x9e, 0x56, 0x44, 0xbd, 0xb9, 0x32, 0x19, 0x1b, 0x57, 0x67, 0x47, 0x55, 0xeb, 0x9b, - 0x1d, 0x65, 0xf9, 0xad, 0x5e, 0xad, 0x93, 0x20, 0x9a, 0x37, 0xcf, 0x6f, 0xb6, 0xc5, 0x10, 0x35, - 0xbf, 0x09, 0x1a, 0xf4, 0x11, 0x80, 0xdd, 0x77, 0x89, 0x47, 0x39, 0x47, 0x96, 0x73, 0xf0, 0xf3, - 0x74, 0x82, 0xaa, 0xe7, 0xe9, 0x04, 0x45, 0x1f, 0x40, 0x51, 0xf4, 0xee, 0x13, 0x71, 0xca, 0x29, - 0x8b, 0x8d, 0x8f, 0x41, 0x75, 0xe3, 0x63, 0x90, 0x29, 0x14, 0x91, 0x98, 0xd7, 0x05, 0x79, 0x6e, - 0xb9, 0x5c, 0x61, 0x82, 0xaa, 0x0a, 0x13, 0xd4, 0x0c, 0xa1, 0x18, 0x9f, 0x32, 0xd8, 0xca, 0xc7, - 0x97, 0xfe, 0x5a, 0x72, 0x08, 0x88, 0x30, 0x75, 0xe5, 0xe3, 0xeb, 0xff, 0x75, 0xe5, 0xfa, 0x3f, - 0xa3, 0x1c, 0x1c, 0x24, 0x36, 0x75, 0x70, 0x88, 0x3e, 0x04, 0xfc, 0x56, 0x03, 0x34, 0x7b, 0xe5, - 0x80, 0xde, 0x86, 0xf9, 0x81, 0xf5, 0x74, 0xd3, 0x1f, 0x86, 0xf2, 0xce, 0x96, 0x5f, 0x56, 0x49, - 0x08, 0x47, 0x0d, 0xf4, 0x31, 0x2c, 0x0d, 0xac, 0xa7, 0x7b, 0xde, 0xb1, 0xe7, 0x3f, 0xf1, 0x38, - 0xb5, 0xb8, 0x03, 0xe3, 0xc7, 0xc1, 0xe9, 0x11, 0x7c, 0xa6, 0x8f, 0x6e, 0x43, 0x71, 0x48, 0x83, - 0x2d, 0xdf, 0x3f, 0x1e, 0x0d, 0xa5, 0x71, 0xf1, 0xa0, 0x10, 0x83, 0x38, 0x69, 0xa2, 0x3b, 0x00, - 0x47, 0xfe, 0xb0, 0x2b, 0xef, 0xcf, 0xc4, 0x9d, 0x2e, 0x4f, 0x49, 0x09, 0x8a, 0x95, 0xb6, 0xf9, - 0x1e, 0x40, 0x72, 0xd9, 0xc1, 0xf3, 0xa6, 0x1d, 0xb8, 0x43, 0x2a, 0x5d, 0x41, 0xe4, 0x4d, 0x8e, - 0x60, 0xf9, 0x5c, 0x1b, 0x01, 0x24, 0xc7, 0x13, 0x54, 0x80, 0xcc, 0xce, 0x7d, 0x7d, 0x0e, 0x2d, - 0x42, 0xb1, 0xbd, 0xd3, 0x7d, 0x7c, 0x6f, 0x67, 0xaf, 0xdd, 0xd0, 0x35, 0x74, 0x09, 0xf4, 0x56, - 0x7b, 0xbf, 0xba, 0xd5, 0x6a, 0x3c, 0xae, 0xe2, 0x8d, 0xbd, 0xed, 0x66, 0xbb, 0xab, 0x67, 0x10, - 0x82, 0xa5, 0xea, 0x16, 0x6e, 0x56, 0x1b, 0x8f, 0x1e, 0x37, 0x1f, 0xb6, 0x3a, 0xdd, 0x8e, 0x9e, - 0x65, 0x58, 0xab, 0xdd, 0x6d, 0xe2, 0x76, 0x75, 0xeb, 0x71, 0x13, 0xe3, 0x1d, 0xac, 0xe7, 0x18, - 0xc6, 0x84, 0x55, 0xf7, 0xba, 0x9b, 0x3b, 0xb8, 0xf5, 0x69, 0xb3, 0xa1, 0xe7, 0xd7, 0x56, 0xa1, - 0xac, 0x7e, 0xbd, 0x42, 0x00, 0x85, 0x6a, 0xbd, 0xdb, 0xda, 0x6f, 0xea, 0x73, 0xa8, 0x0c, 0x0b, - 0x8d, 0x56, 0xa7, 0x5a, 0xdb, 0x6a, 0x36, 0x74, 0x6d, 0xad, 0x0e, 0x4b, 0xd3, 0xdf, 0x5e, 0xd8, - 0xe4, 0xea, 0x9b, 0xcd, 0xfa, 0xfd, 0xc7, 0xd5, 0x46, 0x43, 0x9f, 0x43, 0x3a, 0x94, 0x45, 0x77, - 0x6f, 0xb7, 0x51, 0xed, 0x36, 0x75, 0x2d, 0x41, 0x1a, 0xcd, 0xad, 0x66, 0xb7, 0xa9, 0x67, 0xd6, - 0x6c, 0x80, 0xe4, 0x22, 0x00, 0xcd, 0x43, 0x76, 0xa3, 0xd9, 0xd5, 0xe7, 0x50, 0x09, 0xe6, 0xeb, - 0x3b, 0xed, 0x76, 0xb3, 0xde, 0xd5, 0x35, 0x36, 0x85, 0x88, 0x1e, 0x2d, 0x40, 0x6e, 0xb3, 0x59, - 0x6d, 0xe8, 0x59, 0x46, 0xb2, 0xb3, 0xdb, 0x6d, 0xed, 0xb4, 0x3b, 0x7a, 0x8e, 0xc1, 0xbb, 0x3b, - 0x9d, 0xae, 0x9e, 0x67, 0x22, 0x76, 0xf7, 0xba, 0x7a, 0x01, 0x15, 0x21, 0xdf, 0xc5, 0xd5, 0x7a, - 0x53, 0x9f, 0x5f, 0x3b, 0x82, 0xc5, 0xa9, 0xe2, 0x81, 0x11, 0x55, 0xdb, 0x8f, 0xf4, 0x39, 0x94, - 0x07, 0xad, 0xaa, 0x6b, 0x8c, 0xbd, 0x5a, 0xad, 0x56, 0xf5, 0x0c, 0xe3, 0xaa, 0xb7, 0xab, 0xdb, - 0x4d, 0x3d, 0xcb, 0x96, 0x7c, 0xfb, 0xa1, 0x9e, 0x63, 0xcf, 0x76, 0x47, 0x4a, 0xee, 0x62, 0xbd, - 0xc0, 0x1a, 0x9d, 0x9d, 0xaa, 0x3e, 0xcf, 0x1b, 0x78, 0x5f, 0x5f, 0x60, 0x8d, 0xee, 0xc3, 0xae, - 0x5e, 0x5c, 0x33, 0x78, 0xd9, 0x16, 0xd5, 0x14, 0x1c, 0xaf, 0xef, 0xea, 0x73, 0xac, 0xb1, 0xd7, - 0xd8, 0xd5, 0xb5, 0xb5, 0x9b, 0x50, 0x8c, 0x73, 0x0e, 0x9f, 0x86, 0x77, 0xaa, 0xcf, 0x31, 0x15, - 0xfb, 0xef, 0xeb, 0x1a, 0x7f, 0xde, 0xd5, 0x33, 0x6b, 0xdb, 0x70, 0xe9, 0xbc, 0xb3, 0x01, 0x9b, - 0xa7, 0xe7, 0x7b, 0x44, 0x6c, 0x85, 0xeb, 0x10, 0xfe, 0x47, 0x15, 0x31, 0xff, 0xde, 0x17, 0xee, - 0x50, 0xcf, 0x30, 0x09, 0x07, 0x81, 0x58, 0x1d, 0x87, 0x1c, 0xf6, 0x2d, 0x4a, 0xf4, 0xdc, 0xfa, - 0x7f, 0x65, 0xa0, 0x50, 0x17, 0xdf, 0xa0, 0xfe, 0x15, 0x16, 0xa7, 0xfe, 0x2c, 0x81, 0x8c, 0x0b, - 0xfe, 0x17, 0xd1, 0xf2, 0x0e, 0xfd, 0xe5, 0xbf, 0x4b, 0xfb, 0xb6, 0x3a, 0xf3, 0x97, 0x0b, 0x73, - 0x0e, 0x3d, 0x00, 0xd8, 0x20, 0x34, 0xfa, 0x76, 0xb6, 0x72, 0x81, 0x6c, 0xfe, 0x17, 0xa0, 0xe5, - 0xb7, 0xd2, 0xae, 0x92, 0xb9, 0x00, 0x73, 0xee, 0x3d, 0x0d, 0xed, 0x40, 0x6e, 0xd7, 0xf5, 0x7a, - 0xe8, 0x7a, 0xfa, 0x65, 0xae, 0xfc, 0x82, 0xb5, 0x9c, 0x76, 0xdf, 0xab, 0xfc, 0x65, 0xc5, 0x9c, - 0x5b, 0xff, 0xa9, 0x06, 0xa5, 0xe4, 0x22, 0xfd, 0x6f, 0xbe, 0x24, 0x5d, 0x58, 0xda, 0x20, 0x54, - 0x55, 0xb8, 0x7c, 0x3e, 0xfb, 0xbe, 0xef, 0x3a, 0x69, 0xaf, 0xa0, 0x7e, 0xa8, 0x63, 0xab, 0xb2, - 0xfe, 0x10, 0xe6, 0xbb, 0xf2, 0x6b, 0xe0, 0x36, 0x14, 0x37, 0x08, 0x95, 0xdf, 0xec, 0x57, 0x2e, - 0xfa, 0xbc, 0xc6, 0x27, 0x7f, 0xe1, 0x07, 0x38, 0x73, 0xae, 0x76, 0xeb, 0xd9, 0x1f, 0xae, 0xcd, - 0x3d, 0x7b, 0x7e, 0x4d, 0xfb, 0xf6, 0xf9, 0x35, 0xed, 0xf7, 0xcf, 0xaf, 0x69, 0x9f, 0x9e, 0xfb, - 0x57, 0xaf, 0x83, 0x02, 0xaf, 0x90, 0xff, 0xfe, 0x4f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xfe, 0x60, - 0x7b, 0xee, 0x17, 0x26, 0x00, 0x00, + // 3296 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x5a, 0xcb, 0x6f, 0x1b, 0xc7, + 0x7f, 0xe7, 0xf2, 0x25, 0xf1, 0x4b, 0x4a, 0xd9, 0x4c, 0xfc, 0x73, 0x68, 0xc5, 0xd1, 0xca, 0x6b, + 0x27, 0x50, 0xe5, 0xc0, 0xbf, 0x40, 0x4d, 0x9c, 0x20, 0x2d, 0x8a, 0xf2, 0x65, 0x89, 0xb1, 0x44, + 0xc9, 0x43, 0x4a, 0xb0, 0x83, 0x16, 0xee, 0x6a, 0x77, 0x44, 0x6d, 0x44, 0xee, 0x32, 0xbb, 0x43, + 0xd9, 0xca, 0x39, 0x28, 0x8a, 0x16, 0x05, 0x72, 0x2a, 0xd0, 0x5b, 0x73, 0x6c, 0x0b, 0xf4, 0x58, + 0xf4, 0xdc, 0x5e, 0xdc, 0x36, 0x6d, 0x73, 0xe8, 0x21, 0x27, 0xa2, 0x75, 0xd0, 0x0b, 0xff, 0x8a, + 0x62, 0x1e, 0xbb, 0x3b, 0x14, 0xb5, 0xaa, 0x9b, 0xba, 0x40, 0x2e, 0xdc, 0x99, 0xcf, 0x7c, 0x1f, + 0xb3, 0x33, 0xdf, 0xd7, 0xcc, 0x12, 0x2a, 0xf6, 0x09, 0xb1, 0x4f, 0xc3, 0x7b, 0xa3, 0xc0, 0xa7, + 0x3e, 0xba, 0x16, 0x9e, 0x7b, 0xf4, 0x84, 0x50, 0xd7, 0x7e, 0x3a, 0xf4, 0x3d, 0x97, 0xfa, 0x81, + 0xeb, 0xf5, 0x57, 0xae, 0xf5, 0xfd, 0xbe, 0xcf, 0x09, 0x7e, 0xcd, 0x5a, 0x82, 0xd6, 0x2c, 0x42, + 0xfe, 0xd0, 0x77, 0x1d, 0xf3, 0x3b, 0x0d, 0x60, 0x3f, 0xf0, 0x8f, 0x48, 0x97, 0x5a, 0x94, 0xa0, + 0x2d, 0x28, 0x0a, 0x91, 0x55, 0x6d, 0x2d, 0xb7, 0x5e, 0xde, 0x34, 0xee, 0x5d, 0x26, 0xf3, 0x5e, + 0xcb, 0xa3, 0x2e, 0x3d, 0xc7, 0xe4, 0xb8, 0xbe, 0xfc, 0x62, 0x62, 0x64, 0xa6, 0x13, 0x43, 0xb2, + 0x61, 0xf9, 0x44, 0x9f, 0xc3, 0x02, 0x25, 0x9e, 0xe5, 0xd1, 0xb0, 0x9a, 0x7d, 0x35, 0x49, 0x6f, + 0x48, 0x49, 0x11, 0x1f, 0x8e, 0x1a, 0xe6, 0x13, 0x28, 0xc5, 0x64, 0xe8, 0x3a, 0x64, 0x5d, 0xa7, + 0xaa, 0xad, 0x69, 0xeb, 0xb9, 0x7a, 0x71, 0x3a, 0x31, 0xb2, 0xae, 0x83, 0xb3, 0xae, 0x83, 0x3e, + 0x82, 0xca, 0xc0, 0x0a, 0xe9, 0xae, 0xef, 0xb8, 0xc7, 0x2e, 0x71, 0xaa, 0xd9, 0x35, 0x6d, 0x5d, + 0xab, 0xeb, 0xd3, 0x89, 0x31, 0x83, 0xe3, 0x99, 0x9e, 0xf9, 0x87, 0x1a, 0x94, 0xf8, 0xeb, 0xb7, + 0xbd, 0x63, 0x1f, 0xbd, 0x07, 0x0b, 0x87, 0x24, 0x08, 0x5d, 0xdf, 0xe3, 0x0a, 0x4a, 0xf5, 0x32, + 0x9b, 0xcf, 0x99, 0x80, 0x70, 0x34, 0x86, 0x4c, 0x28, 0x36, 0xfc, 0xe1, 0xd0, 0xa5, 0x5c, 0x49, + 0xa9, 0x0e, 0xfc, 0xfd, 0x39, 0x82, 0xe5, 0x08, 0xba, 0x07, 0x50, 0x1f, 0xbb, 0x03, 0x27, 0xa4, + 0xd6, 0x70, 0x54, 0xcd, 0x71, 0xba, 0xe5, 0xe9, 0xc4, 0x80, 0xa3, 0x18, 0xc5, 0x0a, 0x85, 0xf9, + 0x09, 0x94, 0xf7, 0x5d, 0xaf, 0x8f, 0xc9, 0x57, 0x63, 0x12, 0x52, 0xb4, 0x0e, 0x8b, 0x5d, 0xd6, + 0xf4, 0x6c, 0x22, 0xdf, 0xb5, 0x32, 0x9d, 0x18, 0x8b, 0xa1, 0xc4, 0x70, 0x3c, 0x6a, 0x7e, 0x0a, + 0x95, 0x7d, 0x9f, 0x31, 0x86, 0x23, 0xdf, 0x0b, 0xc9, 0xff, 0x82, 0xf3, 0x31, 0x14, 0xd9, 0xa6, + 0x8f, 0x43, 0xf4, 0x11, 0xe4, 0x6d, 0xdf, 0x11, 0xf4, 0xcb, 0x9b, 0x6b, 0x97, 0xef, 0x94, 0xa0, + 0x6d, 0xf8, 0x0e, 0xc1, 0x9c, 0x1a, 0x55, 0x61, 0x61, 0x48, 0xc2, 0xd0, 0xea, 0x13, 0xb1, 0x0e, + 0x38, 0xea, 0x9a, 0x7f, 0xac, 0xc1, 0x5b, 0x98, 0xf4, 0xdd, 0x90, 0x92, 0x80, 0xaf, 0x2e, 0x26, + 0xe1, 0x78, 0x40, 0xd1, 0x27, 0x50, 0x18, 0xb1, 0x2e, 0x57, 0x54, 0xde, 0x7c, 0xe7, 0x72, 0x45, + 0x9c, 0xa3, 0x9e, 0x67, 0xe6, 0x80, 0x05, 0x3d, 0xfa, 0x0c, 0x8a, 0x21, 0x57, 0xcf, 0x35, 0x95, + 0x37, 0x6f, 0x5e, 0x35, 0x45, 0xc9, 0x2a, 0x39, 0xcc, 0xef, 0x0a, 0x50, 0xe0, 0x22, 0x53, 0x4d, + 0x67, 0x1d, 0x16, 0x85, 0xa9, 0xb5, 0x85, 0xd9, 0xc8, 0x25, 0x8b, 0x30, 0x1c, 0xb7, 0xd0, 0x4d, + 0xc8, 0x7b, 0xd6, 0x90, 0xc8, 0xfd, 0x5c, 0x9c, 0x4e, 0x0c, 0xde, 0xc7, 0xfc, 0x97, 0xc9, 0x19, + 0x58, 0xd4, 0xa5, 0x63, 0x87, 0x54, 0xf3, 0x6b, 0xda, 0x7a, 0x56, 0xc8, 0x89, 0x30, 0x1c, 0xb7, + 0xd0, 0x5d, 0x28, 0x0d, 0x7c, 0xaf, 0x2f, 0x48, 0x0b, 0x9c, 0x74, 0x69, 0x3a, 0x31, 0x12, 0x10, + 0x27, 0x4d, 0xd4, 0x80, 0xe2, 0xc0, 0x3a, 0x22, 0x83, 0xb0, 0x5a, 0xe4, 0x9e, 0x94, 0xb2, 0x6c, + 0x3b, 0x8c, 0x26, 0xf1, 0x47, 0xc1, 0x82, 0xe5, 0x93, 0xd9, 0x6c, 0x40, 0xfa, 0xcc, 0xb2, 0x17, + 0x12, 0x9b, 0x15, 0x08, 0x96, 0x4f, 0x46, 0x33, 0x1a, 0x1f, 0x0d, 0x5c, 0xbb, 0xba, 0xb8, 0xa6, + 0xad, 0x2f, 0x0a, 0x1a, 0x81, 0x60, 0xf9, 0x64, 0x34, 0xbe, 0x37, 0x70, 0x3d, 0x52, 0x2d, 0x25, + 0x34, 0x02, 0xc1, 0xf2, 0xc9, 0x5c, 0x51, 0xb4, 0x1a, 0x27, 0x96, 0xd7, 0x27, 0x55, 0x48, 0x5c, + 0x51, 0xc5, 0xf1, 0x4c, 0x8f, 0x39, 0x9f, 0xf4, 0xb4, 0x6a, 0xf9, 0x12, 0xe7, 0x3b, 0x4b, 0x9c, + 0x4f, 0xb8, 0x5a, 0xb5, 0x32, 0xef, 0x7c, 0x76, 0xec, 0x7c, 0x89, 0x9b, 0x55, 0x97, 0x2e, 0x77, + 0xbe, 0xa4, 0xcd, 0xe8, 0x1d, 0x32, 0x0a, 0x88, 0x6d, 0x51, 0xe2, 0x54, 0x97, 0xf9, 0x8b, 0x71, + 0xfa, 0x04, 0xc5, 0x4a, 0x9b, 0x4d, 0xd5, 0x0e, 0x08, 0x27, 0x76, 0xf8, 0xbb, 0xf1, 0xa9, 0x4a, + 0x08, 0x47, 0x0d, 0x66, 0x0f, 0xc3, 0x28, 0x1c, 0x11, 0x4e, 0xc7, 0xed, 0x21, 0xc2, 0x70, 0xdc, + 0x32, 0x6f, 0x02, 0xf4, 0x84, 0x8d, 0xb1, 0x30, 0xb4, 0x9c, 0xd8, 0x29, 0xb3, 0x4f, 0xf3, 0xc7, + 0x1c, 0x14, 0xc5, 0x70, 0xaa, 0x09, 0x1b, 0x50, 0xf0, 0x83, 0x7e, 0x6c, 0xbf, 0xa5, 0xe9, 0xc4, + 0x10, 0x00, 0x16, 0x0f, 0xf4, 0x04, 0x96, 0x86, 0x84, 0x06, 0xae, 0x1d, 0x62, 0x32, 0xf4, 0xa9, + 0x30, 0xe1, 0x72, 0x9a, 0xaf, 0x0b, 0x1a, 0x36, 0x99, 0xfa, 0x9b, 0xd3, 0x89, 0x31, 0xcb, 0x8a, + 0x67, 0xbb, 0xe8, 0x10, 0x2a, 0xe4, 0x8c, 0xb0, 0x88, 0x2d, 0x24, 0xe7, 0x5f, 0x51, 0x32, 0x37, + 0x08, 0x95, 0x13, 0xcf, 0xf4, 0xd8, 0x2a, 0x87, 0xd4, 0xb2, 0x4f, 0xdb, 0x0e, 0x77, 0x91, 0x9c, + 0x58, 0x65, 0x09, 0xe1, 0xa8, 0x81, 0x1e, 0xc4, 0xb1, 0xa1, 0xc8, 0xc3, 0x97, 0x79, 0xb9, 0x62, + 0xb1, 0x80, 0x32, 0x42, 0x70, 0xa3, 0x11, 0x5c, 0x51, 0x9c, 0x10, 0x1e, 0x62, 0x85, 0x17, 0x3d, + 0x84, 0x21, 0x58, 0x3e, 0x5f, 0xff, 0xc6, 0xff, 0xb9, 0x06, 0x90, 0x2c, 0x49, 0x1c, 0x5f, 0xb4, + 0x4b, 0xe3, 0xcb, 0x0d, 0xc8, 0x8d, 0x83, 0x81, 0x4c, 0x3a, 0x0b, 0xd3, 0x89, 0xc1, 0xba, 0x98, + 0xfd, 0x30, 0x8d, 0xe3, 0x90, 0x04, 0x4a, 0x70, 0xe2, 0x1a, 0x23, 0x0c, 0xc7, 0x2d, 0x46, 0x39, + 0xb2, 0xc2, 0xf0, 0x99, 0x1f, 0x38, 0x7c, 0xa7, 0x24, 0x65, 0x84, 0xe1, 0xb8, 0xc5, 0xa2, 0x78, + 0xb9, 0xc1, 0xb2, 0xb9, 0x74, 0xd0, 0x3a, 0x94, 0xfc, 0x11, 0x09, 0x2c, 0x1a, 0xe5, 0xc7, 0xe5, + 0xcd, 0x3b, 0x97, 0xaf, 0x35, 0xe7, 0xda, 0x8b, 0x68, 0x71, 0xc2, 0xc6, 0x32, 0x00, 0x2f, 0x10, + 0x64, 0x1c, 0x7f, 0xe7, 0x0a, 0xfe, 0x28, 0x03, 0x70, 0x7a, 0xf3, 0xa5, 0x06, 0x0b, 0x62, 0x1e, + 0x21, 0x6a, 0x5f, 0x28, 0x52, 0x6e, 0x5d, 0x21, 0x45, 0xf0, 0xa4, 0x96, 0x29, 0x5b, 0x17, 0xcb, + 0x94, 0x9b, 0x57, 0x59, 0x4f, 0x7a, 0x8d, 0x82, 0x1a, 0xf0, 0xa6, 0x1b, 0x36, 0xc9, 0x80, 0x5a, + 0x0f, 0xdc, 0x20, 0xa4, 0x75, 0x8b, 0xda, 0x27, 0x7c, 0x27, 0x16, 0xeb, 0xbf, 0x9a, 0x4e, 0x8c, + 0xf9, 0x41, 0x3c, 0x0f, 0x99, 0x7f, 0xa5, 0x41, 0xa5, 0xe6, 0x6c, 0xfb, 0x76, 0x54, 0x06, 0xf4, + 0x00, 0x2c, 0xd6, 0xe7, 0xaf, 0x22, 0xb3, 0x66, 0x8a, 0x63, 0xd5, 0x62, 0xba, 0x3a, 0x92, 0xb3, + 0x54, 0x78, 0xb1, 0xd2, 0x46, 0x4d, 0x28, 0x8a, 0x69, 0x5f, 0x9d, 0x4d, 0xe5, 0x3b, 0xb3, 0xa5, + 0xd3, 0xd8, 0xd2, 0x09, 0x1e, 0x2c, 0x9f, 0xe6, 0x03, 0x28, 0xf0, 0x94, 0xf3, 0x3f, 0x18, 0xad, + 0x01, 0x85, 0x33, 0x6b, 0x30, 0x96, 0x35, 0x82, 0x88, 0x4c, 0x1c, 0xc0, 0xe2, 0x61, 0xfe, 0x5d, + 0x01, 0x0a, 0x62, 0x5e, 0xff, 0xf7, 0xfc, 0x7c, 0x17, 0x4a, 0xc7, 0x81, 0xa8, 0x6f, 0xce, 0xf9, + 0xea, 0xe7, 0x44, 0x5e, 0x8d, 0x41, 0x9c, 0x34, 0x79, 0x2a, 0x3b, 0x3e, 0x0e, 0x09, 0xe5, 0x7e, + 0x90, 0x93, 0xa9, 0x8c, 0x23, 0x58, 0x3e, 0x99, 0xc3, 0x53, 0x77, 0x48, 0xfc, 0x31, 0x55, 0x63, + 0x90, 0x84, 0x70, 0xd4, 0x60, 0x64, 0xc4, 0xb3, 0x8e, 0x06, 0xc4, 0xe1, 0x41, 0x68, 0x51, 0x90, + 0x49, 0x08, 0x47, 0x0d, 0x25, 0x93, 0x2f, 0xfc, 0xfc, 0x4c, 0xfe, 0x08, 0x16, 0x43, 0x42, 0xa9, + 0xeb, 0xf5, 0x43, 0x9e, 0xa7, 0xcb, 0x9b, 0xb7, 0xaf, 0xb0, 0xff, 0xae, 0x24, 0xad, 0xeb, 0x52, + 0x5c, 0xcc, 0x8c, 0xe3, 0x16, 0x4f, 0xfc, 0xac, 0x42, 0x0a, 0xab, 0xa5, 0xb5, 0x5c, 0xb4, 0x12, + 0x02, 0xc1, 0xf2, 0xc9, 0x68, 0xa8, 0x15, 0xf4, 0x09, 0xe5, 0xe9, 0x5c, 0x86, 0x47, 0x81, 0x60, + 0xf9, 0x64, 0x01, 0xea, 0x4b, 0xff, 0x48, 0xa6, 0x6f, 0x1e, 0xa0, 0xbe, 0xf4, 0x8f, 0x30, 0xfb, + 0x41, 0xbf, 0x0b, 0xfa, 0x91, 0x15, 0xba, 0xf6, 0xae, 0x48, 0x1d, 0x7b, 0xde, 0xe0, 0x9c, 0x27, + 0xf0, 0xc5, 0xfa, 0xb5, 0xe9, 0xc4, 0x98, 0x1b, 0xc3, 0x73, 0x08, 0x93, 0x60, 0x0d, 0x48, 0x40, + 0xbb, 0xc4, 0x0b, 0x5d, 0xea, 0x9e, 0xb9, 0xf4, 0x5c, 0xa6, 0x76, 0x2e, 0xe1, 0xe2, 0x18, 0x9e, + 0x43, 0x5e, 0x7f, 0xf4, 0xfe, 0x36, 0x0b, 0x90, 0xf8, 0x9d, 0x62, 0xbf, 0xa5, 0x9f, 0x69, 0xbf, + 0x8a, 0xb9, 0xe5, 0xae, 0x30, 0x37, 0xd5, 0x04, 0xf2, 0xaf, 0xdb, 0x04, 0x0a, 0xaf, 0x60, 0x02, + 0xc5, 0x34, 0x13, 0x30, 0xff, 0x2b, 0x07, 0x4b, 0x33, 0x5a, 0xd1, 0xe7, 0x90, 0x1f, 0xb9, 0x5e, + 0x5f, 0x46, 0xaf, 0x94, 0xec, 0xcc, 0xce, 0x3e, 0xf1, 0x3c, 0xd1, 0x74, 0x62, 0x2c, 0x33, 0x9e, + 0x0f, 0xfc, 0xa1, 0x4b, 0xc9, 0x70, 0x44, 0xcf, 0x31, 0x97, 0xc1, 0x64, 0x9d, 0x50, 0x3a, 0x92, + 0x71, 0x2b, 0x45, 0xd6, 0x36, 0xa5, 0xa3, 0x59, 0x59, 0x8c, 0x47, 0x95, 0xc5, 0xfa, 0xe8, 0x01, + 0xe4, 0x1c, 0x2f, 0x94, 0x75, 0x50, 0x4a, 0x0a, 0x69, 0x7a, 0x61, 0x2c, 0x89, 0x17, 0x42, 0x8e, + 0x17, 0x2a, 0x82, 0x98, 0x00, 0x26, 0x87, 0xda, 0x23, 0xb9, 0x0f, 0x29, 0x72, 0x7a, 0xf6, 0x68, + 0x56, 0x0e, 0xb5, 0xd5, 0x09, 0x31, 0x01, 0xe8, 0x08, 0x80, 0x06, 0x96, 0x4d, 0x02, 0x7f, 0x4c, + 0xc5, 0xa1, 0xa0, 0xbc, 0xb9, 0x9e, 0x22, 0x2e, 0xa6, 0x8b, 0xa5, 0x56, 0xa7, 0x13, 0xe3, 0x5a, + 0xc2, 0xaf, 0x08, 0x57, 0xa4, 0xa2, 0x3a, 0x64, 0x4f, 0xef, 0xf3, 0xdd, 0x4b, 0xcd, 0x23, 0x0f, + 0xef, 0x27, 0xf6, 0xc2, 0x0a, 0xb4, 0xd3, 0xfb, 0x8a, 0xac, 0xec, 0xe9, 0xfd, 0xcf, 0xf2, 0x2f, + 0xfe, 0xc2, 0xd0, 0xcc, 0xef, 0xb3, 0x50, 0x51, 0x37, 0x0d, 0xed, 0x40, 0xc9, 0x1d, 0xa9, 0xa7, + 0xe7, 0xe5, 0xb4, 0x23, 0x7f, 0x3b, 0x22, 0x13, 0xb1, 0x39, 0xe6, 0xc2, 0x49, 0x13, 0x6d, 0xc1, + 0x1b, 0xa1, 0x3f, 0x0e, 0x6c, 0xd2, 0x1e, 0xd5, 0x1c, 0x27, 0x20, 0x61, 0x28, 0xf3, 0xc7, 0xbb, + 0xd3, 0x89, 0x71, 0xe3, 0xc2, 0x90, 0x32, 0xc1, 0x8b, 0x5c, 0xe8, 0xb7, 0xa0, 0x3c, 0xb2, 0xce, + 0x07, 0xbe, 0xe5, 0x74, 0xdd, 0xaf, 0x89, 0xf4, 0xaa, 0x1b, 0xd3, 0x89, 0xf1, 0x2b, 0x05, 0x56, + 0x04, 0xa8, 0xd4, 0xec, 0x20, 0xe3, 0xf8, 0x1e, 0x7d, 0x10, 0x58, 0xfd, 0x21, 0xf1, 0x44, 0x9e, + 0x58, 0x14, 0xcb, 0xa2, 0xe2, 0x78, 0xa6, 0x87, 0x36, 0x99, 0x4a, 0xfb, 0x94, 0xd0, 0x86, 0x3f, + 0xf6, 0x68, 0xf5, 0x9b, 0x05, 0xae, 0xf3, 0x8d, 0xe9, 0xc4, 0x50, 0x71, 0xac, 0x76, 0xcc, 0xbf, + 0xa9, 0x40, 0x45, 0xb5, 0xdb, 0xd7, 0xbc, 0x9c, 0x4d, 0x28, 0x0e, 0x09, 0x3d, 0xf1, 0x45, 0xfc, + 0x49, 0x3d, 0xe2, 0xb3, 0x19, 0xec, 0x72, 0x3a, 0xe1, 0xdb, 0x82, 0x07, 0xcb, 0x27, 0xfa, 0x35, + 0x2c, 0x9c, 0x10, 0xcb, 0x21, 0x01, 0xf3, 0x9a, 0xdc, 0x7a, 0x49, 0x54, 0x36, 0x12, 0x52, 0xd6, + 0x30, 0xa2, 0x42, 0xef, 0x43, 0xfe, 0xc8, 0x77, 0xce, 0x65, 0x9d, 0xc9, 0x5d, 0x91, 0xf5, 0x55, + 0x57, 0x64, 0x7d, 0x56, 0x3c, 0x79, 0xfe, 0x03, 0x7f, 0x30, 0xf0, 0x9f, 0x61, 0xe2, 0xb8, 0x01, + 0xb1, 0x69, 0xc8, 0x3d, 0x40, 0x16, 0x4f, 0x73, 0x83, 0x78, 0x1e, 0x42, 0x87, 0x50, 0xa2, 0x83, + 0xb0, 0xe1, 0x7b, 0xc7, 0x6e, 0x9f, 0xc7, 0xf7, 0xd4, 0x3b, 0xa7, 0xde, 0x4e, 0x57, 0x90, 0xd5, + 0xdf, 0x9e, 0x4e, 0x8c, 0xb7, 0x62, 0x2e, 0x65, 0x5e, 0x89, 0x28, 0x26, 0x97, 0xe7, 0xa2, 0xda, + 0x98, 0x9e, 0xf0, 0x7c, 0x90, 0x2a, 0xb7, 0x1e, 0x91, 0x09, 0xb9, 0x31, 0x97, 0x2a, 0x37, 0x06, + 0x99, 0x65, 0x1e, 0x11, 0x2b, 0x20, 0x41, 0xcf, 0x3f, 0x25, 0x5e, 0xf5, 0x98, 0xaf, 0x11, 0xb7, + 0x4c, 0x05, 0x56, 0x2d, 0x53, 0x81, 0xd1, 0x26, 0x2c, 0x8e, 0x02, 0xff, 0xf9, 0xf9, 0x01, 0xde, + 0xa9, 0xf6, 0x39, 0xe7, 0xf5, 0xe9, 0xc4, 0x40, 0x11, 0xa6, 0xb0, 0xc5, 0x74, 0xe8, 0x03, 0x28, + 0x1d, 0x5b, 0xee, 0xa0, 0x7d, 0xdc, 0xed, 0xee, 0x54, 0x5f, 0x68, 0x7c, 0x79, 0x45, 0x75, 0x14, + 0xa1, 0x38, 0x69, 0xa2, 0x8f, 0xa1, 0x22, 0x3a, 0x1d, 0x9f, 0x32, 0x86, 0x7f, 0xd4, 0x12, 0xe3, + 0x57, 0x07, 0xf0, 0x4c, 0x0f, 0x3d, 0x04, 0xfd, 0xcc, 0x1a, 0xb8, 0x4e, 0x72, 0x5b, 0x14, 0x56, + 0xff, 0x89, 0x95, 0xe9, 0x85, 0xfa, 0xea, 0x74, 0x62, 0xac, 0x5c, 0x1c, 0x54, 0x66, 0x3a, 0xc7, + 0x88, 0x3a, 0xf0, 0x26, 0xc7, 0xb6, 0x7b, 0xbd, 0x7d, 0x69, 0xca, 0x61, 0xf5, 0x9f, 0x35, 0x6e, + 0x7b, 0xc6, 0x74, 0x62, 0xbc, 0x33, 0x37, 0xaa, 0x88, 0x9b, 0x67, 0x45, 0x7f, 0x00, 0x6f, 0x8b, + 0xc9, 0xd6, 0x7d, 0xe7, 0x7c, 0x97, 0x95, 0xdc, 0x24, 0xc4, 0xa4, 0x4f, 0x9e, 0x8f, 0xaa, 0xdf, + 0x0b, 0xa9, 0xef, 0x4d, 0x27, 0xc6, 0xad, 0x14, 0x1a, 0x45, 0x76, 0x9a, 0x18, 0xe4, 0xc2, 0x4a, + 0x32, 0xd4, 0xf1, 0xe9, 0xac, 0x92, 0x7f, 0x11, 0x4a, 0xd6, 0xa7, 0x13, 0xe3, 0x4e, 0x3a, 0x99, + 0xa2, 0xe7, 0x0a, 0x61, 0xe8, 0x4f, 0x35, 0xb8, 0x21, 0x86, 0xb7, 0xb9, 0xbb, 0xcd, 0xaa, 0xfa, + 0xd7, 0x2b, 0x8f, 0x46, 0x0a, 0x47, 0xfd, 0xae, 0xac, 0x0a, 0x6e, 0xa7, 0x0a, 0x53, 0x26, 0x94, + 0xae, 0x11, 0xfd, 0x99, 0x06, 0x37, 0xd5, 0xd1, 0xb9, 0xb7, 0xff, 0xb7, 0x57, 0x9e, 0xd2, 0x3d, + 0x39, 0xa5, 0xf7, 0xaf, 0x92, 0xa7, 0xcc, 0xea, 0x4a, 0xbd, 0xe8, 0x04, 0xca, 0xb6, 0x3f, 0x1c, + 0xb1, 0x74, 0xc0, 0x82, 0xe9, 0x0f, 0x22, 0x9a, 0x6e, 0xa4, 0x54, 0x4c, 0x09, 0x65, 0x6d, 0xd0, + 0xf7, 0x03, 0x97, 0x9e, 0x0c, 0x85, 0x57, 0x2a, 0x32, 0x54, 0xaf, 0x54, 0x60, 0xb6, 0xfb, 0xb6, + 0x65, 0x9f, 0x90, 0xfa, 0x38, 0x64, 0x51, 0xfc, 0xd1, 0x98, 0x04, 0xe7, 0xfb, 0x56, 0x60, 0x0d, + 0x3b, 0xec, 0x7c, 0xf4, 0x8d, 0xb8, 0x57, 0xe0, 0xbb, 0x9f, 0x4e, 0xa6, 0xee, 0x7e, 0x3a, 0x95, + 0xf9, 0x97, 0x1a, 0x94, 0x95, 0x25, 0x43, 0x1f, 0x40, 0x51, 0x44, 0x5d, 0x59, 0x7f, 0xf2, 0x9a, + 0x58, 0x20, 0x8a, 0x44, 0x49, 0xc3, 0xa8, 0x03, 0xb1, 0x29, 0xd9, 0x84, 0x3a, 0xb8, 0xb8, 0xac, + 0x92, 0x06, 0xfd, 0x0e, 0x54, 0x2c, 0x16, 0x6b, 0x77, 0xdd, 0x30, 0x64, 0x95, 0x9c, 0x38, 0xd6, + 0xae, 0x4c, 0x27, 0xc6, 0x75, 0x15, 0x57, 0x38, 0x67, 0xe8, 0xcd, 0x7f, 0xd0, 0x60, 0xb9, 0xd9, + 0xe9, 0x62, 0x7c, 0xc8, 0x3c, 0xd2, 0xa2, 0x7e, 0x80, 0xba, 0xf0, 0x96, 0xd8, 0xb3, 0x59, 0x13, + 0x11, 0xfe, 0x71, 0x6b, 0x3a, 0x31, 0xde, 0xbd, 0x64, 0x58, 0x51, 0x70, 0x19, 0x37, 0xfa, 0x3d, + 0xb8, 0x1e, 0xc7, 0xa2, 0x59, 0xb9, 0x59, 0x2e, 0xf7, 0xce, 0x74, 0x62, 0xac, 0x5d, 0x4e, 0xa1, + 0x88, 0x4e, 0x91, 0x61, 0xfe, 0x75, 0x11, 0xca, 0x4a, 0x3d, 0xf8, 0x4b, 0x2d, 0x78, 0x4c, 0x28, + 0x86, 0x24, 0x38, 0x23, 0x81, 0xbc, 0x07, 0x12, 0x57, 0x5d, 0x1c, 0xc1, 0xf2, 0xc9, 0x4e, 0xec, + 0x23, 0x3f, 0x10, 0xf5, 0x4c, 0x41, 0x9c, 0xd8, 0x59, 0x1f, 0xf3, 0x5f, 0xd4, 0x05, 0x08, 0x88, + 0xed, 0x07, 0x4e, 0xef, 0x7c, 0x24, 0x0a, 0xd1, 0xe5, 0xb4, 0xf3, 0x45, 0xd3, 0x0b, 0x71, 0x4c, + 0x2a, 0xae, 0x4c, 0x13, 0x56, 0xac, 0xb4, 0xd1, 0x43, 0x9e, 0xb0, 0xa8, 0x6f, 0xfb, 0x03, 0x79, + 0x4f, 0x97, 0x5e, 0x72, 0xef, 0x4b, 0x42, 0x79, 0x33, 0x25, 0x7b, 0x38, 0x6e, 0xa1, 0xdf, 0x86, + 0x32, 0x0f, 0xee, 0x58, 0xe4, 0x97, 0x17, 0xc2, 0x6c, 0xb8, 0x97, 0x2a, 0xb8, 0xea, 0xa5, 0x0a, + 0x8c, 0x3c, 0x58, 0x3e, 0x13, 0x86, 0x48, 0x6a, 0x5e, 0xf8, 0x8c, 0x04, 0x22, 0xb7, 0x95, 0xd3, + 0x6e, 0xb3, 0x66, 0x4d, 0x57, 0x49, 0x3c, 0xb1, 0x00, 0x8c, 0xbb, 0x8a, 0xb2, 0x0b, 0xd2, 0xd1, + 0x33, 0x99, 0xc5, 0x18, 0x32, 0xa6, 0x27, 0x2c, 0xa6, 0x9c, 0xb3, 0x9c, 0xf8, 0xea, 0x2a, 0xcd, + 0xe9, 0xc4, 0x58, 0x9d, 0x93, 0x31, 0xab, 0x75, 0x5e, 0x07, 0xfa, 0x1a, 0x50, 0x0c, 0x3a, 0x8e, + 0x4b, 0x5d, 0xdf, 0xb3, 0x06, 0x2c, 0x7f, 0xbe, 0xba, 0xe6, 0xdb, 0xd3, 0x89, 0x61, 0xcc, 0x0b, + 0x99, 0x55, 0x7d, 0x89, 0x16, 0xf3, 0xdb, 0x1c, 0x94, 0x95, 0x53, 0xcf, 0x2f, 0xd5, 0x5b, 0x6e, + 0x43, 0x8e, 0x0e, 0x42, 0x19, 0xd1, 0xc4, 0xc9, 0x6c, 0x30, 0x73, 0xc2, 0xa3, 0x83, 0x0b, 0x95, + 0x65, 0xfe, 0xf5, 0x55, 0x96, 0x43, 0x58, 0xfa, 0x8a, 0x45, 0xf5, 0xe8, 0xdb, 0x1d, 0x3f, 0x7a, + 0x97, 0x37, 0xdf, 0x4f, 0x91, 0xdd, 0xd8, 0x7f, 0xa4, 0x52, 0xd7, 0x0d, 0x99, 0x25, 0xdf, 0x9e, + 0x11, 0xa2, 0xa8, 0x9a, 0x95, 0x6e, 0xfe, 0x91, 0x06, 0xfa, 0x45, 0x21, 0x2c, 0x14, 0x84, 0xc4, + 0x13, 0xb7, 0x16, 0x15, 0x11, 0x0a, 0x58, 0x1f, 0xf3, 0x5f, 0x16, 0x4c, 0xc8, 0xf3, 0x11, 0xb1, + 0xc5, 0x4d, 0x61, 0x45, 0x04, 0x13, 0x81, 0x60, 0xf9, 0x64, 0xa5, 0x68, 0x48, 0xad, 0x80, 0xf6, + 0x76, 0xba, 0x72, 0x1d, 0x79, 0x29, 0x1a, 0x61, 0x6a, 0x29, 0x1a, 0x61, 0xe6, 0xdf, 0x66, 0xa1, + 0x14, 0xaf, 0x15, 0xda, 0x07, 0xe4, 0x7a, 0x21, 0xb1, 0xc7, 0x01, 0xe9, 0x9e, 0xf2, 0x4d, 0x76, + 0x8f, 0xcf, 0xab, 0xa2, 0xde, 0x5c, 0x9b, 0x4e, 0x8c, 0x9b, 0xf3, 0xa3, 0xaa, 0xf5, 0xcd, 0x8f, + 0xb2, 0xfc, 0xd6, 0xa8, 0x35, 0x48, 0x10, 0xcd, 0x9b, 0xe7, 0x37, 0xdb, 0x62, 0x88, 0x9a, 0xdf, + 0x04, 0x0d, 0xfa, 0x14, 0xc0, 0x1e, 0xb8, 0xc4, 0xa3, 0x9c, 0x23, 0xc7, 0x39, 0xf8, 0x79, 0x3a, + 0x41, 0xd5, 0xf3, 0x74, 0x82, 0xa2, 0x8f, 0xa1, 0x24, 0x7a, 0x0f, 0x89, 0x38, 0xe5, 0x54, 0xc4, + 0xc6, 0xc7, 0xa0, 0xba, 0xf1, 0x31, 0xc8, 0x14, 0x8a, 0x48, 0xcc, 0xeb, 0x82, 0x02, 0xb7, 0x5c, + 0xae, 0x30, 0x41, 0x55, 0x85, 0x09, 0x6a, 0x86, 0x50, 0x8a, 0x4f, 0x19, 0x6c, 0xe5, 0xe3, 0x4b, + 0x7f, 0x2d, 0x39, 0x04, 0x44, 0x98, 0xba, 0xf2, 0xf1, 0xf5, 0xff, 0xa6, 0x72, 0xfd, 0x9f, 0x55, + 0x0e, 0x0e, 0x12, 0x9b, 0x39, 0x38, 0x44, 0x1f, 0x02, 0xfe, 0x5d, 0x03, 0x34, 0x7f, 0xe5, 0x80, + 0xde, 0x83, 0x85, 0xa1, 0xf5, 0x7c, 0xdb, 0x1f, 0x85, 0xf2, 0xce, 0x96, 0x5f, 0x56, 0x49, 0x08, + 0x47, 0x0d, 0xf4, 0x19, 0x2c, 0x0f, 0xad, 0xe7, 0x07, 0xde, 0xa9, 0xe7, 0x3f, 0xf3, 0x38, 0xb5, + 0xb8, 0x03, 0xe3, 0xc7, 0xc1, 0xd9, 0x11, 0x7c, 0xa1, 0x8f, 0xee, 0x42, 0x69, 0x44, 0x83, 0x1d, + 0xdf, 0x3f, 0x1d, 0x8f, 0xa4, 0x71, 0xf1, 0xa0, 0x10, 0x83, 0x38, 0x69, 0xa2, 0x7b, 0x00, 0x27, + 0xfe, 0xa8, 0x27, 0xef, 0xcf, 0xc4, 0x9d, 0x2e, 0x4f, 0x49, 0x09, 0x8a, 0x95, 0xb6, 0xf9, 0x21, + 0x40, 0x72, 0xd9, 0xc1, 0xf3, 0xa6, 0x1d, 0xb8, 0x23, 0x2a, 0x5d, 0x41, 0xe4, 0x4d, 0x8e, 0x60, + 0xf9, 0xdc, 0x18, 0x03, 0x24, 0xc7, 0x13, 0x54, 0x84, 0xec, 0xde, 0x43, 0x3d, 0x83, 0x96, 0xa0, + 0xd4, 0xd9, 0xeb, 0x3d, 0x7d, 0xb0, 0x77, 0xd0, 0x69, 0xea, 0x1a, 0xba, 0x06, 0x7a, 0xbb, 0x73, + 0x58, 0xdb, 0x69, 0x37, 0x9f, 0xd6, 0xf0, 0xd6, 0xc1, 0x6e, 0xab, 0xd3, 0xd3, 0xb3, 0x08, 0xc1, + 0x72, 0x6d, 0x07, 0xb7, 0x6a, 0xcd, 0x27, 0x4f, 0x5b, 0x8f, 0xdb, 0xdd, 0x5e, 0x57, 0xcf, 0x31, + 0xac, 0xdd, 0xe9, 0xb5, 0x70, 0xa7, 0xb6, 0xf3, 0xb4, 0x85, 0xf1, 0x1e, 0xd6, 0xf3, 0x0c, 0x63, + 0xc2, 0x6a, 0x07, 0xbd, 0xed, 0x3d, 0xdc, 0xfe, 0xa2, 0xd5, 0xd4, 0x0b, 0x1b, 0xeb, 0x50, 0x51, + 0xbf, 0x5e, 0x21, 0x80, 0x62, 0xad, 0xd1, 0x6b, 0x1f, 0xb6, 0xf4, 0x0c, 0xaa, 0xc0, 0x62, 0xb3, + 0xdd, 0xad, 0xd5, 0x77, 0x5a, 0x4d, 0x5d, 0xdb, 0x68, 0xc0, 0xf2, 0xec, 0xb7, 0x17, 0x36, 0xb9, + 0xc6, 0x76, 0xab, 0xf1, 0xf0, 0x69, 0xad, 0xd9, 0xd4, 0x33, 0x48, 0x87, 0x8a, 0xe8, 0x1e, 0xec, + 0x37, 0x6b, 0xbd, 0x96, 0xae, 0x25, 0x48, 0xb3, 0xb5, 0xd3, 0xea, 0xb5, 0xf4, 0xec, 0x86, 0x0d, + 0x90, 0x5c, 0x04, 0xa0, 0x05, 0xc8, 0x6d, 0xb5, 0x7a, 0x7a, 0x06, 0x95, 0x61, 0xa1, 0xb1, 0xd7, + 0xe9, 0xb4, 0x1a, 0x3d, 0x5d, 0x63, 0x53, 0x88, 0xe8, 0xd1, 0x22, 0xe4, 0xb7, 0x5b, 0xb5, 0xa6, + 0x9e, 0x63, 0x24, 0x7b, 0xfb, 0xbd, 0xf6, 0x5e, 0xa7, 0xab, 0xe7, 0x19, 0xbc, 0xbf, 0xd7, 0xed, + 0xe9, 0x05, 0x26, 0x62, 0xff, 0xa0, 0xa7, 0x17, 0x51, 0x09, 0x0a, 0x3d, 0x5c, 0x6b, 0xb4, 0xf4, + 0x85, 0x8d, 0x13, 0x58, 0x9a, 0x29, 0x1e, 0x18, 0x51, 0xad, 0xf3, 0x44, 0xcf, 0xa0, 0x02, 0x68, + 0x35, 0x5d, 0x63, 0xec, 0xb5, 0x5a, 0xad, 0xa6, 0x67, 0x19, 0x57, 0xa3, 0x53, 0xdb, 0x6d, 0xe9, + 0x39, 0xb6, 0xe4, 0xbb, 0x8f, 0xf5, 0x3c, 0x7b, 0x76, 0xba, 0x52, 0x72, 0x0f, 0xeb, 0x45, 0xd6, + 0xe8, 0xee, 0xd5, 0xf4, 0x05, 0xde, 0xc0, 0x87, 0xfa, 0x22, 0x6b, 0xf4, 0x1e, 0xf7, 0xf4, 0xd2, + 0x86, 0xc1, 0xcb, 0xb6, 0xa8, 0xa6, 0xe0, 0x78, 0x63, 0x5f, 0xcf, 0xb0, 0xc6, 0x41, 0x73, 0x5f, + 0xd7, 0x36, 0xee, 0x40, 0x29, 0xce, 0x39, 0x7c, 0x1a, 0xde, 0xb9, 0x9e, 0x61, 0x2a, 0x0e, 0x3f, + 0xd2, 0x35, 0xfe, 0xbc, 0xaf, 0x67, 0x37, 0x76, 0xe1, 0xda, 0x65, 0x67, 0x03, 0x36, 0x4f, 0xcf, + 0xf7, 0x88, 0xd8, 0x0a, 0xd7, 0x21, 0xfc, 0x8f, 0x2a, 0x62, 0xfe, 0xfd, 0xaf, 0xdd, 0x91, 0x9e, + 0x65, 0x12, 0x8e, 0x02, 0xb1, 0x3a, 0x0e, 0x39, 0x1e, 0x58, 0x94, 0xe8, 0xf9, 0xcd, 0x3f, 0xc9, + 0x42, 0xb1, 0x21, 0xbe, 0x41, 0xfd, 0x3e, 0x2c, 0xcd, 0xfc, 0x59, 0x02, 0x19, 0x57, 0xfc, 0x2f, + 0xa2, 0xed, 0x1d, 0xfb, 0x2b, 0xbf, 0x91, 0xf6, 0x6d, 0x75, 0xee, 0x2f, 0x17, 0x66, 0x06, 0x3d, + 0x02, 0xd8, 0x22, 0x34, 0xfa, 0x76, 0xb6, 0x76, 0x85, 0x6c, 0xfe, 0x17, 0xa0, 0x95, 0x77, 0xd3, + 0xae, 0x92, 0xb9, 0x00, 0x33, 0xf3, 0xa1, 0x86, 0xf6, 0x20, 0xbf, 0xef, 0x7a, 0x7d, 0x74, 0x2b, + 0xfd, 0x32, 0x57, 0x7e, 0xc1, 0x5a, 0x49, 0xbb, 0xef, 0x55, 0xfe, 0xb2, 0x62, 0x66, 0x36, 0xff, + 0x5e, 0x83, 0x72, 0x72, 0x91, 0xfe, 0xff, 0xbe, 0x24, 0x3d, 0x58, 0xde, 0x22, 0x54, 0x55, 0xb8, + 0x72, 0x39, 0xfb, 0xa1, 0xef, 0x3a, 0x69, 0xaf, 0xa0, 0x7e, 0xa8, 0x63, 0xab, 0xb2, 0xf9, 0x18, + 0x16, 0x7a, 0xf2, 0x6b, 0xe0, 0x2e, 0x94, 0xb6, 0x08, 0x95, 0xdf, 0xec, 0xd7, 0xae, 0xfa, 0xbc, + 0xc6, 0x27, 0x7f, 0xe5, 0x07, 0x38, 0x33, 0x53, 0xdf, 0x7c, 0xf1, 0x9f, 0xab, 0x99, 0x17, 0x2f, + 0x57, 0xb5, 0x1f, 0x5e, 0xae, 0x6a, 0xff, 0xf1, 0x72, 0x55, 0xfb, 0xf6, 0xa7, 0xd5, 0xcc, 0x0f, + 0x3f, 0xad, 0x66, 0x7e, 0xfc, 0x69, 0x35, 0xf3, 0xc5, 0xa5, 0x7f, 0xfb, 0x3a, 0x2a, 0xf2, 0x6a, + 0xf9, 0x37, 0xff, 0x3b, 0x00, 0x00, 0xff, 0xff, 0x4b, 0xaf, 0x5b, 0x64, 0x23, 0x26, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -2370,10 +2280,6 @@ func (m *Void) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - if m.XXX_unrecognized != nil { - i -= len(m.XXX_unrecognized) - copy(dAtA[i:], m.XXX_unrecognized) - } return len(dAtA) - i, nil } @@ -2397,10 +2303,6 @@ func (m *ProbeState) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - if m.XXX_unrecognized != nil { - i -= len(m.XXX_unrecognized) - copy(dAtA[i:], m.XXX_unrecognized) - } if len(m.Tenants) > 0 { for iNdEx := len(m.Tenants) - 1; iNdEx >= 0; iNdEx-- { { @@ -2452,10 +2354,6 @@ func (m *EntityRef) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - if m.XXX_unrecognized != nil { - i -= len(m.XXX_unrecognized) - copy(dAtA[i:], m.XXX_unrecognized) - } if m.LastModified != 0 { i -= 8 encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(m.LastModified)))) @@ -2490,10 +2388,6 @@ func (m *ProbeInfo) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - if m.XXX_unrecognized != nil { - i -= len(m.XXX_unrecognized) - copy(dAtA[i:], m.XXX_unrecognized) - } if len(m.Buildstamp) > 0 { i -= len(m.Buildstamp) copy(dAtA[i:], m.Buildstamp) @@ -2538,10 +2432,6 @@ func (m *PingRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - if m.XXX_unrecognized != nil { - i -= len(m.XXX_unrecognized) - copy(dAtA[i:], m.XXX_unrecognized) - } if m.Sequence != 0 { i = encodeVarintChecks(dAtA, i, uint64(m.Sequence)) i-- @@ -2570,10 +2460,6 @@ func (m *PongResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - if m.XXX_unrecognized != nil { - i -= len(m.XXX_unrecognized) - copy(dAtA[i:], m.XXX_unrecognized) - } if m.Sequence != 0 { i = encodeVarintChecks(dAtA, i, uint64(m.Sequence)) i-- @@ -2602,10 +2488,6 @@ func (m *Status) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - if m.XXX_unrecognized != nil { - i -= len(m.XXX_unrecognized) - copy(dAtA[i:], m.XXX_unrecognized) - } if len(m.Message) > 0 { i -= len(m.Message) copy(dAtA[i:], m.Message) @@ -2641,10 +2523,6 @@ func (m *RegisterProbeResult) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - if m.XXX_unrecognized != nil { - i -= len(m.XXX_unrecognized) - copy(dAtA[i:], m.XXX_unrecognized) - } { size, err := m.Status.MarshalToSizedBuffer(dAtA[:i]) if err != nil { @@ -2688,10 +2566,6 @@ func (m *Probe) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - if m.XXX_unrecognized != nil { - i -= len(m.XXX_unrecognized) - copy(dAtA[i:], m.XXX_unrecognized) - } if m.Modified != 0 { i -= 8 encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(m.Modified)))) @@ -2838,10 +2712,6 @@ func (m *TenantInfo) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - if m.XXX_unrecognized != nil { - i -= len(m.XXX_unrecognized) - copy(dAtA[i:], m.XXX_unrecognized) - } if m.Id != 0 { i = encodeVarintChecks(dAtA, i, uint64(m.Id)) i-- @@ -2870,10 +2740,6 @@ func (m *Tenant) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - if m.XXX_unrecognized != nil { - i -= len(m.XXX_unrecognized) - copy(dAtA[i:], m.XXX_unrecognized) - } if m.Modified != 0 { i -= 8 encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(m.Modified)))) @@ -2964,10 +2830,6 @@ func (m *RemoteInfo) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - if m.XXX_unrecognized != nil { - i -= len(m.XXX_unrecognized) - copy(dAtA[i:], m.XXX_unrecognized) - } if len(m.Password) > 0 { i -= len(m.Password) copy(dAtA[i:], m.Password) @@ -3019,10 +2881,6 @@ func (m *CheckChange) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - if m.XXX_unrecognized != nil { - i -= len(m.XXX_unrecognized) - copy(dAtA[i:], m.XXX_unrecognized) - } { size, err := m.Check.MarshalToSizedBuffer(dAtA[:i]) if err != nil { @@ -3061,10 +2919,6 @@ func (m *Changes) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - if m.XXX_unrecognized != nil { - i -= len(m.XXX_unrecognized) - copy(dAtA[i:], m.XXX_unrecognized) - } if m.IsDeltaFirstBatch { i-- if m.IsDeltaFirstBatch { @@ -3126,10 +2980,6 @@ func (m *AdHocRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - if m.XXX_unrecognized != nil { - i -= len(m.XXX_unrecognized) - copy(dAtA[i:], m.XXX_unrecognized) - } if m.Tenant != nil { { size, err := m.Tenant.MarshalToSizedBuffer(dAtA[:i]) @@ -3175,10 +3025,6 @@ func (m *Label) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - if m.XXX_unrecognized != nil { - i -= len(m.XXX_unrecognized) - copy(dAtA[i:], m.XXX_unrecognized) - } if len(m.Value) > 0 { i -= len(m.Value) copy(dAtA[i:], m.Value) @@ -3216,10 +3062,6 @@ func (m *Check) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - if m.XXX_unrecognized != nil { - i -= len(m.XXX_unrecognized) - copy(dAtA[i:], m.XXX_unrecognized) - } if m.Modified != 0 { i -= 8 encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(m.Modified)))) @@ -3368,10 +3210,6 @@ func (m *AdHocCheck) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - if m.XXX_unrecognized != nil { - i -= len(m.XXX_unrecognized) - copy(dAtA[i:], m.XXX_unrecognized) - } if len(m.Target) > 0 { i -= len(m.Target) copy(dAtA[i:], m.Target) @@ -3448,10 +3286,6 @@ func (m *CheckSettings) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - if m.XXX_unrecognized != nil { - i -= len(m.XXX_unrecognized) - copy(dAtA[i:], m.XXX_unrecognized) - } if m.K6 != nil { { size, err := m.K6.MarshalToSizedBuffer(dAtA[:i]) @@ -3547,10 +3381,6 @@ func (m *PingSettings) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - if m.XXX_unrecognized != nil { - i -= len(m.XXX_unrecognized) - copy(dAtA[i:], m.XXX_unrecognized) - } if m.PacketCount != 0 { i = encodeVarintChecks(dAtA, i, uint64(m.PacketCount)) i-- @@ -3608,10 +3438,6 @@ func (m *HttpSettings) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - if m.XXX_unrecognized != nil { - i -= len(m.XXX_unrecognized) - copy(dAtA[i:], m.XXX_unrecognized) - } if len(m.CacheBustingQueryParamName) > 0 { i -= len(m.CacheBustingQueryParamName) copy(dAtA[i:], m.CacheBustingQueryParamName) @@ -3843,10 +3669,6 @@ func (m *HeaderMatch) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - if m.XXX_unrecognized != nil { - i -= len(m.XXX_unrecognized) - copy(dAtA[i:], m.XXX_unrecognized) - } if m.AllowMissing { i-- if m.AllowMissing { @@ -3894,10 +3716,6 @@ func (m *DNSRRValidator) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - if m.XXX_unrecognized != nil { - i -= len(m.XXX_unrecognized) - copy(dAtA[i:], m.XXX_unrecognized) - } if len(m.FailIfNotMatchesRegexp) > 0 { for iNdEx := len(m.FailIfNotMatchesRegexp) - 1; iNdEx >= 0; iNdEx-- { i -= len(m.FailIfNotMatchesRegexp[iNdEx]) @@ -3939,10 +3757,6 @@ func (m *DnsSettings) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - if m.XXX_unrecognized != nil { - i -= len(m.XXX_unrecognized) - copy(dAtA[i:], m.XXX_unrecognized) - } if m.ValidateAdditional != nil { { size, err := m.ValidateAdditional.MarshalToSizedBuffer(dAtA[:i]) @@ -4053,10 +3867,6 @@ func (m *TcpSettings) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - if m.XXX_unrecognized != nil { - i -= len(m.XXX_unrecognized) - copy(dAtA[i:], m.XXX_unrecognized) - } if len(m.QueryResponse) > 0 { for iNdEx := len(m.QueryResponse) - 1; iNdEx >= 0; iNdEx-- { { @@ -4128,10 +3938,6 @@ func (m *TCPQueryResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - if m.XXX_unrecognized != nil { - i -= len(m.XXX_unrecognized) - copy(dAtA[i:], m.XXX_unrecognized) - } if m.StartTLS { i-- if m.StartTLS { @@ -4179,10 +3985,6 @@ func (m *TLSConfig) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - if m.XXX_unrecognized != nil { - i -= len(m.XXX_unrecognized) - copy(dAtA[i:], m.XXX_unrecognized) - } if len(m.ServerName) > 0 { i -= len(m.ServerName) copy(dAtA[i:], m.ServerName) @@ -4244,10 +4046,6 @@ func (m *BasicAuth) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - if m.XXX_unrecognized != nil { - i -= len(m.XXX_unrecognized) - copy(dAtA[i:], m.XXX_unrecognized) - } if len(m.Password) > 0 { i -= len(m.Password) copy(dAtA[i:], m.Password) @@ -4285,10 +4083,6 @@ func (m *TracerouteSettings) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - if m.XXX_unrecognized != nil { - i -= len(m.XXX_unrecognized) - copy(dAtA[i:], m.XXX_unrecognized) - } if m.HopTimeout != 0 { i = encodeVarintChecks(dAtA, i, uint64(m.HopTimeout)) i-- @@ -4337,10 +4131,6 @@ func (m *K6Settings) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - if m.XXX_unrecognized != nil { - i -= len(m.XXX_unrecognized) - copy(dAtA[i:], m.XXX_unrecognized) - } if len(m.Script) > 0 { i -= len(m.Script) copy(dAtA[i:], m.Script) @@ -4368,9 +4158,6 @@ func (m *Void) Size() (n int) { } var l int _ = l - if m.XXX_unrecognized != nil { - n += len(m.XXX_unrecognized) - } return n } @@ -4392,9 +4179,6 @@ func (m *ProbeState) Size() (n int) { n += 1 + l + sovChecks(uint64(l)) } } - if m.XXX_unrecognized != nil { - n += len(m.XXX_unrecognized) - } return n } @@ -4410,9 +4194,6 @@ func (m *EntityRef) Size() (n int) { if m.LastModified != 0 { n += 9 } - if m.XXX_unrecognized != nil { - n += len(m.XXX_unrecognized) - } return n } @@ -4434,9 +4215,6 @@ func (m *ProbeInfo) Size() (n int) { if l > 0 { n += 1 + l + sovChecks(uint64(l)) } - if m.XXX_unrecognized != nil { - n += len(m.XXX_unrecognized) - } return n } @@ -4449,9 +4227,6 @@ func (m *PingRequest) Size() (n int) { if m.Sequence != 0 { n += 1 + sovChecks(uint64(m.Sequence)) } - if m.XXX_unrecognized != nil { - n += len(m.XXX_unrecognized) - } return n } @@ -4464,9 +4239,6 @@ func (m *PongResponse) Size() (n int) { if m.Sequence != 0 { n += 1 + sovChecks(uint64(m.Sequence)) } - if m.XXX_unrecognized != nil { - n += len(m.XXX_unrecognized) - } return n } @@ -4483,9 +4255,6 @@ func (m *Status) Size() (n int) { if l > 0 { n += 1 + l + sovChecks(uint64(l)) } - if m.XXX_unrecognized != nil { - n += len(m.XXX_unrecognized) - } return n } @@ -4499,9 +4268,6 @@ func (m *RegisterProbeResult) Size() (n int) { n += 1 + l + sovChecks(uint64(l)) l = m.Status.Size() n += 1 + l + sovChecks(uint64(l)) - if m.XXX_unrecognized != nil { - n += len(m.XXX_unrecognized) - } return n } @@ -4567,9 +4333,6 @@ func (m *Probe) Size() (n int) { if m.Modified != 0 { n += 10 } - if m.XXX_unrecognized != nil { - n += len(m.XXX_unrecognized) - } return n } @@ -4582,9 +4345,6 @@ func (m *TenantInfo) Size() (n int) { if m.Id != 0 { n += 1 + sovChecks(uint64(m.Id)) } - if m.XXX_unrecognized != nil { - n += len(m.XXX_unrecognized) - } return n } @@ -4624,9 +4384,6 @@ func (m *Tenant) Size() (n int) { if m.Modified != 0 { n += 10 } - if m.XXX_unrecognized != nil { - n += len(m.XXX_unrecognized) - } return n } @@ -4652,9 +4409,6 @@ func (m *RemoteInfo) Size() (n int) { if l > 0 { n += 1 + l + sovChecks(uint64(l)) } - if m.XXX_unrecognized != nil { - n += len(m.XXX_unrecognized) - } return n } @@ -4669,9 +4423,6 @@ func (m *CheckChange) Size() (n int) { } l = m.Check.Size() n += 1 + l + sovChecks(uint64(l)) - if m.XXX_unrecognized != nil { - n += len(m.XXX_unrecognized) - } return n } @@ -4696,9 +4447,6 @@ func (m *Changes) Size() (n int) { if m.IsDeltaFirstBatch { n += 2 } - if m.XXX_unrecognized != nil { - n += len(m.XXX_unrecognized) - } return n } @@ -4714,9 +4462,6 @@ func (m *AdHocRequest) Size() (n int) { l = m.Tenant.Size() n += 1 + l + sovChecks(uint64(l)) } - if m.XXX_unrecognized != nil { - n += len(m.XXX_unrecognized) - } return n } @@ -4734,9 +4479,6 @@ func (m *Label) Size() (n int) { if l > 0 { n += 1 + l + sovChecks(uint64(l)) } - if m.XXX_unrecognized != nil { - n += len(m.XXX_unrecognized) - } return n } @@ -4800,9 +4542,6 @@ func (m *Check) Size() (n int) { if m.Modified != 0 { n += 10 } - if m.XXX_unrecognized != nil { - n += len(m.XXX_unrecognized) - } return n } @@ -4835,9 +4574,6 @@ func (m *AdHocCheck) Size() (n int) { if l > 0 { n += 1 + l + sovChecks(uint64(l)) } - if m.XXX_unrecognized != nil { - n += len(m.XXX_unrecognized) - } return n } @@ -4871,9 +4607,6 @@ func (m *CheckSettings) Size() (n int) { l = m.K6.Size() n += 1 + l + sovChecks(uint64(l)) } - if m.XXX_unrecognized != nil { - n += len(m.XXX_unrecognized) - } return n } @@ -4899,9 +4632,6 @@ func (m *PingSettings) Size() (n int) { if m.PacketCount != 0 { n += 2 + sovChecks(uint64(m.PacketCount)) } - if m.XXX_unrecognized != nil { - n += len(m.XXX_unrecognized) - } return n } @@ -4996,9 +4726,6 @@ func (m *HttpSettings) Size() (n int) { if l > 0 { n += 2 + l + sovChecks(uint64(l)) } - if m.XXX_unrecognized != nil { - n += len(m.XXX_unrecognized) - } return n } @@ -5019,9 +4746,6 @@ func (m *HeaderMatch) Size() (n int) { if m.AllowMissing { n += 2 } - if m.XXX_unrecognized != nil { - n += len(m.XXX_unrecognized) - } return n } @@ -5043,9 +4767,6 @@ func (m *DNSRRValidator) Size() (n int) { n += 1 + l + sovChecks(uint64(l)) } } - if m.XXX_unrecognized != nil { - n += len(m.XXX_unrecognized) - } return n } @@ -5093,9 +4814,6 @@ func (m *DnsSettings) Size() (n int) { l = m.ValidateAdditional.Size() n += 2 + l + sovChecks(uint64(l)) } - if m.XXX_unrecognized != nil { - n += len(m.XXX_unrecognized) - } return n } @@ -5125,9 +4843,6 @@ func (m *TcpSettings) Size() (n int) { n += 1 + l + sovChecks(uint64(l)) } } - if m.XXX_unrecognized != nil { - n += len(m.XXX_unrecognized) - } return n } @@ -5148,9 +4863,6 @@ func (m *TCPQueryResponse) Size() (n int) { if m.StartTLS { n += 2 } - if m.XXX_unrecognized != nil { - n += len(m.XXX_unrecognized) - } return n } @@ -5179,9 +4891,6 @@ func (m *TLSConfig) Size() (n int) { if l > 0 { n += 1 + l + sovChecks(uint64(l)) } - if m.XXX_unrecognized != nil { - n += len(m.XXX_unrecognized) - } return n } @@ -5199,9 +4908,6 @@ func (m *BasicAuth) Size() (n int) { if l > 0 { n += 1 + l + sovChecks(uint64(l)) } - if m.XXX_unrecognized != nil { - n += len(m.XXX_unrecognized) - } return n } @@ -5223,9 +4929,6 @@ func (m *TracerouteSettings) Size() (n int) { if m.HopTimeout != 0 { n += 1 + sovChecks(uint64(m.HopTimeout)) } - if m.XXX_unrecognized != nil { - n += len(m.XXX_unrecognized) - } return n } @@ -5239,9 +4942,6 @@ func (m *K6Settings) Size() (n int) { if l > 0 { n += 1 + l + sovChecks(uint64(l)) } - if m.XXX_unrecognized != nil { - n += len(m.XXX_unrecognized) - } return n } @@ -5333,7 +5033,6 @@ func (m *Void) Unmarshal(dAtA []byte) error { if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } - m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } @@ -5452,7 +5151,6 @@ func (m *ProbeState) Unmarshal(dAtA []byte) error { if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } - m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } @@ -5533,7 +5231,6 @@ func (m *EntityRef) Unmarshal(dAtA []byte) error { if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } - m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } @@ -5680,7 +5377,6 @@ func (m *ProbeInfo) Unmarshal(dAtA []byte) error { if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } - m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } @@ -5750,7 +5446,6 @@ func (m *PingRequest) Unmarshal(dAtA []byte) error { if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } - m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } @@ -5820,7 +5515,6 @@ func (m *PongResponse) Unmarshal(dAtA []byte) error { if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } - m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } @@ -5922,7 +5616,6 @@ func (m *Status) Unmarshal(dAtA []byte) error { if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } - m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } @@ -6039,7 +5732,6 @@ func (m *RegisterProbeResult) Unmarshal(dAtA []byte) error { if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } - m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } @@ -6437,7 +6129,6 @@ func (m *Probe) Unmarshal(dAtA []byte) error { if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } - m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } @@ -6507,7 +6198,6 @@ func (m *TenantInfo) Unmarshal(dAtA []byte) error { if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } - m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } @@ -6760,7 +6450,6 @@ func (m *Tenant) Unmarshal(dAtA []byte) error { if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } - m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } @@ -6939,7 +6628,6 @@ func (m *RemoteInfo) Unmarshal(dAtA []byte) error { if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } - m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } @@ -7042,7 +6730,6 @@ func (m *CheckChange) Unmarshal(dAtA []byte) error { if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } - m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } @@ -7181,7 +6868,6 @@ func (m *Changes) Unmarshal(dAtA []byte) error { if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } - m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } @@ -7301,7 +6987,6 @@ func (m *AdHocRequest) Unmarshal(dAtA []byte) error { if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } - m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } @@ -7416,7 +7101,6 @@ func (m *Label) Unmarshal(dAtA []byte) error { if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } - m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } @@ -7863,7 +7547,6 @@ func (m *Check) Unmarshal(dAtA []byte) error { if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } - m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } @@ -8125,7 +7808,6 @@ func (m *AdHocCheck) Unmarshal(dAtA []byte) error { if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } - m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } @@ -8392,7 +8074,6 @@ func (m *CheckSettings) Unmarshal(dAtA []byte) error { if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } - m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } @@ -8552,7 +8233,6 @@ func (m *PingSettings) Unmarshal(dAtA []byte) error { if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } - m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } @@ -9192,7 +8872,6 @@ func (m *HttpSettings) Unmarshal(dAtA []byte) error { if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } - m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } @@ -9327,7 +9006,6 @@ func (m *HeaderMatch) Unmarshal(dAtA []byte) error { if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } - m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } @@ -9442,7 +9120,6 @@ func (m *DNSRRValidator) Unmarshal(dAtA []byte) error { if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } - m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } @@ -9773,7 +9450,6 @@ func (m *DnsSettings) Unmarshal(dAtA []byte) error { if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } - m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } @@ -9965,7 +9641,6 @@ func (m *TcpSettings) Unmarshal(dAtA []byte) error { if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } - m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } @@ -10104,7 +9779,6 @@ func (m *TCPQueryResponse) Unmarshal(dAtA []byte) error { if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } - m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } @@ -10309,7 +9983,6 @@ func (m *TLSConfig) Unmarshal(dAtA []byte) error { if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } - m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } @@ -10424,7 +10097,6 @@ func (m *BasicAuth) Unmarshal(dAtA []byte) error { if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } - m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } @@ -10552,7 +10224,6 @@ func (m *TracerouteSettings) Unmarshal(dAtA []byte) error { if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } - m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } @@ -10637,7 +10308,6 @@ func (m *K6Settings) Unmarshal(dAtA []byte) error { if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } - m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } diff --git a/pkg/pb/synthetic_monitoring/checks.proto b/pkg/pb/synthetic_monitoring/checks.proto index b685d0ec6..e4f1e5187 100644 --- a/pkg/pb/synthetic_monitoring/checks.proto +++ b/pkg/pb/synthetic_monitoring/checks.proto @@ -22,6 +22,9 @@ option (gogoproto.marshaler_all) = true; option (gogoproto.sizer_all) = true; option (gogoproto.unmarshaler_all) = true; option (gogoproto.goproto_getters_all) = false; +option (gogoproto.goproto_unkeyed_all) = false; +option (gogoproto.goproto_unrecognized_all) = false; +option (gogoproto.goproto_sizecache_all) = false; service Checks { // RegisterProbe causes this probe to be reported as online with