diff --git a/internal/prober/http/http.go b/internal/prober/http/http.go index 118f010fc..a04292325 100644 --- a/internal/prober/http/http.go +++ b/internal/prober/http/http.go @@ -183,9 +183,44 @@ func settingsToModule(ctx context.Context, settings *sm.HttpSettings, logger zer } } + if settings.Oauth2Config != nil && settings.Oauth2Config.ClientId != "" { + var err error + m.HTTP.HTTPClientConfig.OAuth2, err = convertOAuth2Config(ctx, settings.Oauth2Config, logger.With().Str("prober", m.Prober).Logger()) + if err != nil { + return m, fmt.Errorf("parsing OAuth2 settings: %w", err) + } + } + return m, nil } +func convertOAuth2Config(ctx context.Context, cfg *sm.OAuth2Config, logger zerolog.Logger) (*promconfig.OAuth2, error) { + r := &promconfig.OAuth2{} + r.ClientID = cfg.ClientId + r.ClientSecret = promconfig.Secret(cfg.ClientSecret) + r.TokenURL = cfg.TokenURL + r.Scopes = make([]string, len(cfg.Scopes)) + copy(r.Scopes, cfg.Scopes) + r.EndpointParams = make(map[string]string, len(cfg.EndpointParams)) + for _, pair := range cfg.EndpointParams { + r.EndpointParams[pair.Name] = pair.Value + } + var err error + if cfg.ProxyURL != "" { + r.ProxyURL.URL, err = url.Parse(cfg.ProxyURL) + if err != nil { + return nil, fmt.Errorf("parsing proxy URL: %w", err) + } + } + if cfg.TlsConfig != nil { + r.TLSConfig, err = tls.SMtoProm(ctx, logger, cfg.TlsConfig) + if err != nil { + return nil, fmt.Errorf("parsing TLS config: %w", err) + } + } + return r, nil +} + func buildHttpHeaders(headers []string) map[string]string { userAgentHeader := "user-agent" diff --git a/pkg/pb/synthetic_monitoring/checks.pb.go b/pkg/pb/synthetic_monitoring/checks.pb.go index 0bf0f3e52..18f6fb1ec 100644 --- a/pkg/pb/synthetic_monitoring/checks.pb.go +++ b/pkg/pb/synthetic_monitoring/checks.pb.go @@ -1163,6 +1163,7 @@ type HttpSettings struct { BasicAuth *BasicAuth `protobuf:"bytes,101,opt,name=basicAuth,proto3" json:"basicAuth,omitempty"` BearerToken string `protobuf:"bytes,102,opt,name=bearerToken,proto3" json:"bearerToken,omitempty"` ProxyURL string `protobuf:"bytes,103,opt,name=proxyURL,proto3" json:"proxyURL,omitempty"` + Oauth2Config *OAuth2Config `protobuf:"bytes,104,opt,name=oauth2Config,proto3" json:"oauth2Config,omitempty"` FailIfSSL bool `protobuf:"varint,200,opt,name=failIfSSL,proto3" json:"failIfSSL"` FailIfNotSSL bool `protobuf:"varint,201,opt,name=failIfNotSSL,proto3" json:"failIfNotSSL"` ValidStatusCodes []int32 `protobuf:"varint,202,rep,packed,name=validStatusCodes,proto3" json:"validStatusCodes,omitempty"` @@ -1208,6 +1209,50 @@ func (m *HttpSettings) XXX_DiscardUnknown() { var xxx_messageInfo_HttpSettings proto.InternalMessageInfo +// Configuration for two-legged OAuth2 (client_credentials grant type). +type OAuth2Config struct { + ClientId string `protobuf:"bytes,1,opt,name=clientId,proto3" json:"clientId"` + ClientSecret string `protobuf:"bytes,2,opt,name=clientSecret,proto3" json:"clientSecret"` + TokenURL string `protobuf:"bytes,3,opt,name=tokenURL,proto3" json:"tokenURL"` + Scopes []string `protobuf:"bytes,4,rep,name=scopes,proto3" json:"scopes,omitempty"` + EndpointParams []Label `protobuf:"bytes,5,rep,name=endpointParams,proto3" json:"endpointParams,omitempty"` + TlsConfig *TLSConfig `protobuf:"bytes,6,opt,name=tlsConfig,proto3" json:"tlsConfig,omitempty"` + ProxyURL string `protobuf:"bytes,7,opt,name=proxyURL,proto3" json:"proxyURL,omitempty"` +} + +func (m *OAuth2Config) Reset() { *m = OAuth2Config{} } +func (m *OAuth2Config) String() string { return proto.CompactTextString(m) } +func (*OAuth2Config) ProtoMessage() {} +func (*OAuth2Config) Descriptor() ([]byte, []int) { + return fileDescriptor_a921b63774164c1f, []int{21} +} +func (m *OAuth2Config) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *OAuth2Config) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_OAuth2Config.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *OAuth2Config) XXX_Merge(src proto.Message) { + xxx_messageInfo_OAuth2Config.Merge(m, src) +} +func (m *OAuth2Config) XXX_Size() int { + return m.Size() +} +func (m *OAuth2Config) XXX_DiscardUnknown() { + xxx_messageInfo_OAuth2Config.DiscardUnknown(m) +} + +var xxx_messageInfo_OAuth2Config proto.InternalMessageInfo + // HeaderMatch represents a single header that must match in order for // the check to be considered successful. type HeaderMatch struct { @@ -1220,7 +1265,7 @@ func (m *HeaderMatch) Reset() { *m = HeaderMatch{} } func (m *HeaderMatch) String() string { return proto.CompactTextString(m) } func (*HeaderMatch) ProtoMessage() {} func (*HeaderMatch) Descriptor() ([]byte, []int) { - return fileDescriptor_a921b63774164c1f, []int{21} + return fileDescriptor_a921b63774164c1f, []int{22} } func (m *HeaderMatch) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1259,7 +1304,7 @@ func (m *DNSRRValidator) Reset() { *m = DNSRRValidator{} } func (m *DNSRRValidator) String() string { return proto.CompactTextString(m) } func (*DNSRRValidator) ProtoMessage() {} func (*DNSRRValidator) Descriptor() ([]byte, []int) { - return fileDescriptor_a921b63774164c1f, []int{22} + return fileDescriptor_a921b63774164c1f, []int{23} } func (m *DNSRRValidator) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1312,7 +1357,7 @@ func (m *DnsSettings) Reset() { *m = DnsSettings{} } func (m *DnsSettings) String() string { return proto.CompactTextString(m) } func (*DnsSettings) ProtoMessage() {} func (*DnsSettings) Descriptor() ([]byte, []int) { - return fileDescriptor_a921b63774164c1f, []int{23} + return fileDescriptor_a921b63774164c1f, []int{24} } func (m *DnsSettings) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1356,7 +1401,7 @@ func (m *TcpSettings) Reset() { *m = TcpSettings{} } func (m *TcpSettings) String() string { return proto.CompactTextString(m) } func (*TcpSettings) ProtoMessage() {} func (*TcpSettings) Descriptor() ([]byte, []int) { - return fileDescriptor_a921b63774164c1f, []int{24} + return fileDescriptor_a921b63774164c1f, []int{25} } func (m *TcpSettings) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1398,7 +1443,7 @@ func (m *TCPQueryResponse) Reset() { *m = TCPQueryResponse{} } func (m *TCPQueryResponse) String() string { return proto.CompactTextString(m) } func (*TCPQueryResponse) ProtoMessage() {} func (*TCPQueryResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a921b63774164c1f, []int{25} + return fileDescriptor_a921b63774164c1f, []int{26} } func (m *TCPQueryResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1441,7 +1486,7 @@ func (m *TLSConfig) Reset() { *m = TLSConfig{} } func (m *TLSConfig) String() string { return proto.CompactTextString(m) } func (*TLSConfig) ProtoMessage() {} func (*TLSConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_a921b63774164c1f, []int{26} + return fileDescriptor_a921b63774164c1f, []int{27} } func (m *TLSConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1481,7 +1526,7 @@ func (m *BasicAuth) Reset() { *m = BasicAuth{} } func (m *BasicAuth) String() string { return proto.CompactTextString(m) } func (*BasicAuth) ProtoMessage() {} func (*BasicAuth) Descriptor() ([]byte, []int) { - return fileDescriptor_a921b63774164c1f, []int{27} + return fileDescriptor_a921b63774164c1f, []int{28} } func (m *BasicAuth) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1521,7 +1566,7 @@ func (m *TracerouteSettings) Reset() { *m = TracerouteSettings{} } func (m *TracerouteSettings) String() string { return proto.CompactTextString(m) } func (*TracerouteSettings) ProtoMessage() {} func (*TracerouteSettings) Descriptor() ([]byte, []int) { - return fileDescriptor_a921b63774164c1f, []int{28} + return fileDescriptor_a921b63774164c1f, []int{29} } func (m *TracerouteSettings) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1558,7 +1603,7 @@ func (m *K6Settings) Reset() { *m = K6Settings{} } func (m *K6Settings) String() string { return proto.CompactTextString(m) } func (*K6Settings) ProtoMessage() {} func (*K6Settings) Descriptor() ([]byte, []int) { - return fileDescriptor_a921b63774164c1f, []int{29} + return fileDescriptor_a921b63774164c1f, []int{30} } func (m *K6Settings) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1617,6 +1662,7 @@ func init() { proto.RegisterType((*CheckSettings)(nil), "synthetic_monitoring.CheckSettings") proto.RegisterType((*PingSettings)(nil), "synthetic_monitoring.PingSettings") proto.RegisterType((*HttpSettings)(nil), "synthetic_monitoring.HttpSettings") + proto.RegisterType((*OAuth2Config)(nil), "synthetic_monitoring.OAuth2Config") proto.RegisterType((*HeaderMatch)(nil), "synthetic_monitoring.HeaderMatch") proto.RegisterType((*DNSRRValidator)(nil), "synthetic_monitoring.DNSRRValidator") proto.RegisterType((*DnsSettings)(nil), "synthetic_monitoring.DnsSettings") @@ -1631,213 +1677,222 @@ func init() { func init() { proto.RegisterFile("checks.proto", fileDescriptor_a921b63774164c1f) } var fileDescriptor_a921b63774164c1f = []byte{ - // 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, + // 3432 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x5a, 0xcb, 0x6f, 0x23, 0x47, + 0x7a, 0x67, 0xf3, 0x29, 0x7e, 0xa4, 0xe8, 0x76, 0x79, 0xd6, 0xa6, 0xc7, 0x63, 0xb5, 0xdc, 0x7e, + 0x40, 0x91, 0x8d, 0xd9, 0x85, 0xe2, 0x9d, 0x5d, 0x38, 0x41, 0x10, 0xbe, 0x46, 0xe2, 0x8e, 0x44, + 0xc9, 0x45, 0x4a, 0x18, 0x2f, 0x12, 0x4c, 0x5a, 0xdd, 0x25, 0xb2, 0x57, 0x64, 0x37, 0xb7, 0xbb, + 0xa8, 0x19, 0xf9, 0xbc, 0x08, 0x82, 0x04, 0x01, 0x8c, 0x1c, 0x02, 0xe4, 0x96, 0x3d, 0x26, 0xb9, + 0x07, 0xc9, 0x35, 0xb9, 0x4c, 0x92, 0x4d, 0xe2, 0x43, 0x0e, 0x7b, 0x22, 0x92, 0x31, 0x72, 0xe1, + 0x5f, 0x11, 0xd4, 0xa3, 0xbb, 0x8b, 0xa2, 0x9a, 0x3b, 0xd9, 0x4c, 0x00, 0x5f, 0x58, 0x55, 0xbf, + 0xfa, 0xbe, 0xaf, 0xaa, 0xab, 0xbe, 0x57, 0x55, 0x11, 0xaa, 0xf6, 0x88, 0xd8, 0x97, 0xe1, 0xfd, + 0x69, 0xe0, 0x53, 0x1f, 0xdd, 0x09, 0xaf, 0x3d, 0x3a, 0x22, 0xd4, 0xb5, 0x9f, 0x4c, 0x7c, 0xcf, + 0xa5, 0x7e, 0xe0, 0x7a, 0xc3, 0xbb, 0x77, 0x86, 0xfe, 0xd0, 0xe7, 0x04, 0xdf, 0x65, 0x35, 0x41, + 0x6b, 0x16, 0x21, 0x7f, 0xe6, 0xbb, 0x8e, 0xf9, 0x73, 0x0d, 0xe0, 0x24, 0xf0, 0xcf, 0x49, 0x9f, + 0x5a, 0x94, 0xa0, 0x7d, 0x28, 0x0a, 0x91, 0x75, 0x6d, 0x3b, 0xb7, 0x53, 0xd9, 0x33, 0xee, 0xdf, + 0x26, 0xf3, 0x7e, 0xc7, 0xa3, 0x2e, 0xbd, 0xc6, 0xe4, 0xa2, 0x59, 0x7b, 0x3e, 0x37, 0x32, 0x8b, + 0xb9, 0x21, 0xd9, 0xb0, 0x2c, 0xd1, 0x8f, 0xa0, 0x44, 0x89, 0x67, 0x79, 0x34, 0xac, 0x67, 0x5f, + 0x4e, 0xd2, 0x6b, 0x52, 0x52, 0xc4, 0x87, 0xa3, 0x8a, 0xf9, 0x05, 0x94, 0x63, 0x32, 0xf4, 0x26, + 0x64, 0x5d, 0xa7, 0xae, 0x6d, 0x6b, 0x3b, 0xb9, 0x66, 0x71, 0x31, 0x37, 0xb2, 0xae, 0x83, 0xb3, + 0xae, 0x83, 0x3e, 0x85, 0xea, 0xd8, 0x0a, 0xe9, 0x91, 0xef, 0xb8, 0x17, 0x2e, 0x71, 0xea, 0xd9, + 0x6d, 0x6d, 0x47, 0x6b, 0xea, 0x8b, 0xb9, 0xb1, 0x84, 0xe3, 0xa5, 0x96, 0xf9, 0x87, 0x1a, 0x94, + 0xf9, 0xe7, 0x77, 0xbd, 0x0b, 0x1f, 0x7d, 0x08, 0xa5, 0x33, 0x12, 0x84, 0xae, 0xef, 0xf1, 0x01, + 0xca, 0xcd, 0x0a, 0x9b, 0xcf, 0x95, 0x80, 0x70, 0xd4, 0x87, 0x4c, 0x28, 0xb6, 0xfc, 0xc9, 0xc4, + 0xa5, 0x7c, 0x90, 0x72, 0x13, 0xf8, 0xf7, 0x73, 0x04, 0xcb, 0x1e, 0x74, 0x1f, 0xa0, 0x39, 0x73, + 0xc7, 0x4e, 0x48, 0xad, 0xc9, 0xb4, 0x9e, 0xe3, 0x74, 0xb5, 0xc5, 0xdc, 0x80, 0xf3, 0x18, 0xc5, + 0x0a, 0x85, 0xf9, 0x03, 0xa8, 0x9c, 0xb8, 0xde, 0x10, 0x93, 0x9f, 0xce, 0x48, 0x48, 0xd1, 0x0e, + 0x6c, 0xf4, 0x59, 0xd5, 0xb3, 0x89, 0xfc, 0xd6, 0xea, 0x62, 0x6e, 0x6c, 0x84, 0x12, 0xc3, 0x71, + 0xaf, 0xf9, 0x43, 0xa8, 0x9e, 0xf8, 0x8c, 0x31, 0x9c, 0xfa, 0x5e, 0x48, 0xfe, 0x17, 0x9c, 0x8f, + 0xa1, 0xc8, 0x36, 0x7d, 0x16, 0xa2, 0x4f, 0x21, 0x6f, 0xfb, 0x8e, 0xa0, 0xaf, 0xed, 0x6d, 0xdf, + 0xbe, 0x53, 0x82, 0xb6, 0xe5, 0x3b, 0x04, 0x73, 0x6a, 0x54, 0x87, 0xd2, 0x84, 0x84, 0xa1, 0x35, + 0x24, 0x62, 0x1d, 0x70, 0xd4, 0x34, 0xff, 0x58, 0x83, 0x37, 0x30, 0x19, 0xba, 0x21, 0x25, 0x01, + 0x5f, 0x5d, 0x4c, 0xc2, 0xd9, 0x98, 0xa2, 0x1f, 0x40, 0x61, 0xca, 0x9a, 0x7c, 0xa0, 0xca, 0xde, + 0x3b, 0xb7, 0x0f, 0xc4, 0x39, 0x9a, 0x79, 0xa6, 0x0e, 0x58, 0xd0, 0xa3, 0xcf, 0xa0, 0x18, 0xf2, + 0xe1, 0xf9, 0x48, 0x95, 0xbd, 0x7b, 0xeb, 0xa6, 0x28, 0x59, 0x25, 0x87, 0xf9, 0xf3, 0x02, 0x14, + 0xb8, 0xc8, 0x54, 0xd5, 0xd9, 0x81, 0x0d, 0xa1, 0x6a, 0x5d, 0xa1, 0x36, 0x72, 0xc9, 0x22, 0x0c, + 0xc7, 0x35, 0x74, 0x0f, 0xf2, 0x9e, 0x35, 0x21, 0x72, 0x3f, 0x37, 0x16, 0x73, 0x83, 0xb7, 0x31, + 0xff, 0x65, 0x72, 0xc6, 0x16, 0x75, 0xe9, 0xcc, 0x21, 0xf5, 0xfc, 0xb6, 0xb6, 0x93, 0x15, 0x72, + 0x22, 0x0c, 0xc7, 0x35, 0xf4, 0x31, 0x94, 0xc7, 0xbe, 0x37, 0x14, 0xa4, 0x05, 0x4e, 0xba, 0xb9, + 0x98, 0x1b, 0x09, 0x88, 0x93, 0x2a, 0x6a, 0x41, 0x71, 0x6c, 0x9d, 0x93, 0x71, 0x58, 0x2f, 0x72, + 0x4b, 0x4a, 0x59, 0xb6, 0x43, 0x46, 0x93, 0xd8, 0xa3, 0x60, 0xc1, 0xb2, 0x64, 0x3a, 0x1b, 0x90, + 0x21, 0xd3, 0xec, 0x52, 0xa2, 0xb3, 0x02, 0xc1, 0xb2, 0x64, 0x34, 0xd3, 0xd9, 0xf9, 0xd8, 0xb5, + 0xeb, 0x1b, 0xdb, 0xda, 0xce, 0x86, 0xa0, 0x11, 0x08, 0x96, 0x25, 0xa3, 0xf1, 0xbd, 0xb1, 0xeb, + 0x91, 0x7a, 0x39, 0xa1, 0x11, 0x08, 0x96, 0x25, 0x33, 0x45, 0x51, 0x6b, 0x8d, 0x2c, 0x6f, 0x48, + 0xea, 0x90, 0x98, 0xa2, 0x8a, 0xe3, 0xa5, 0x16, 0x33, 0x3e, 0x69, 0x69, 0xf5, 0xca, 0x2d, 0xc6, + 0x77, 0x95, 0x18, 0x9f, 0x30, 0xb5, 0x7a, 0x75, 0xd5, 0xf8, 0xec, 0xd8, 0xf8, 0x12, 0x33, 0xab, + 0x6f, 0xde, 0x6e, 0x7c, 0x49, 0x9d, 0xd1, 0x3b, 0x64, 0x1a, 0x10, 0xdb, 0xa2, 0xc4, 0xa9, 0xd7, + 0xf8, 0x87, 0x71, 0xfa, 0x04, 0xc5, 0x4a, 0x9d, 0x4d, 0xd5, 0x0e, 0x08, 0x27, 0x76, 0xf8, 0xb7, + 0xf1, 0xa9, 0x4a, 0x08, 0x47, 0x15, 0xa6, 0x0f, 0x93, 0xc8, 0x1d, 0x11, 0x4e, 0xc7, 0xf5, 0x21, + 0xc2, 0x70, 0x5c, 0x33, 0xef, 0x01, 0x0c, 0x84, 0x8e, 0x31, 0x37, 0x54, 0x4b, 0xf4, 0x94, 0xe9, + 0xa7, 0xf9, 0xcb, 0x1c, 0x14, 0x45, 0x77, 0xaa, 0x0a, 0x1b, 0x50, 0xf0, 0x83, 0x61, 0xac, 0xbf, + 0xe5, 0xc5, 0xdc, 0x10, 0x00, 0x16, 0x05, 0xfa, 0x02, 0x36, 0x27, 0x84, 0x06, 0xae, 0x1d, 0x62, + 0x32, 0xf1, 0xa9, 0x50, 0xe1, 0x4a, 0x9a, 0xad, 0x0b, 0x1a, 0x36, 0x99, 0xe6, 0xeb, 0x8b, 0xb9, + 0xb1, 0xcc, 0x8a, 0x97, 0x9b, 0xe8, 0x0c, 0xaa, 0xe4, 0x8a, 0x30, 0x8f, 0x2d, 0x24, 0xe7, 0x5f, + 0x52, 0x32, 0x57, 0x08, 0x95, 0x13, 0x2f, 0xb5, 0xd8, 0x2a, 0x87, 0xd4, 0xb2, 0x2f, 0xbb, 0x0e, + 0x37, 0x91, 0x9c, 0x58, 0x65, 0x09, 0xe1, 0xa8, 0x82, 0x1e, 0xc6, 0xbe, 0xa1, 0xc8, 0xdd, 0x97, + 0x79, 0xfb, 0xc0, 0x62, 0x01, 0xa5, 0x87, 0xe0, 0x4a, 0x23, 0xb8, 0x22, 0x3f, 0x21, 0x2c, 0xc4, + 0x0a, 0x6f, 0x5a, 0x08, 0x43, 0xb0, 0x2c, 0x5f, 0xfd, 0xc6, 0xff, 0x85, 0x06, 0x90, 0x2c, 0x49, + 0xec, 0x5f, 0xb4, 0x5b, 0xfd, 0xcb, 0xdb, 0x90, 0x9b, 0x05, 0x63, 0x19, 0x74, 0x4a, 0x8b, 0xb9, + 0xc1, 0x9a, 0x98, 0xfd, 0xb0, 0x11, 0x67, 0x21, 0x09, 0x14, 0xe7, 0xc4, 0x47, 0x8c, 0x30, 0x1c, + 0xd7, 0x18, 0xe5, 0xd4, 0x0a, 0xc3, 0xa7, 0x7e, 0xe0, 0xf0, 0x9d, 0x92, 0x94, 0x11, 0x86, 0xe3, + 0x1a, 0xf3, 0xe2, 0x95, 0x16, 0x8b, 0xe6, 0xd2, 0x40, 0x9b, 0x50, 0xf6, 0xa7, 0x24, 0xb0, 0x68, + 0x14, 0x1f, 0x6b, 0x7b, 0x1f, 0xdc, 0xbe, 0xd6, 0x9c, 0xeb, 0x38, 0xa2, 0xc5, 0x09, 0x1b, 0x8b, + 0x00, 0x3c, 0x41, 0x90, 0x7e, 0xfc, 0x9d, 0x35, 0xfc, 0x51, 0x04, 0xe0, 0xf4, 0xe6, 0x0b, 0x0d, + 0x4a, 0x62, 0x1e, 0x21, 0xea, 0xde, 0x48, 0x52, 0xde, 0x5b, 0x23, 0x45, 0xf0, 0xa4, 0xa6, 0x29, + 0xfb, 0x37, 0xd3, 0x94, 0x7b, 0xeb, 0xb4, 0x27, 0x3d, 0x47, 0x41, 0x2d, 0x78, 0xdd, 0x0d, 0xdb, + 0x64, 0x4c, 0xad, 0x87, 0x6e, 0x10, 0xd2, 0xa6, 0x45, 0xed, 0x11, 0xdf, 0x89, 0x8d, 0xe6, 0x77, + 0x16, 0x73, 0x63, 0xb5, 0x13, 0xaf, 0x42, 0xe6, 0x5f, 0x6b, 0x50, 0x6d, 0x38, 0x07, 0xbe, 0x1d, + 0xa5, 0x01, 0x03, 0x00, 0x8b, 0xb5, 0xf9, 0xa7, 0xc8, 0xa8, 0x99, 0x62, 0x58, 0x8d, 0x98, 0xae, + 0x89, 0xe4, 0x2c, 0x15, 0x5e, 0xac, 0xd4, 0x51, 0x1b, 0x8a, 0x62, 0xda, 0xeb, 0xa3, 0xa9, 0xfc, + 0x66, 0xb6, 0x74, 0x1a, 0x5b, 0x3a, 0xc1, 0x83, 0x65, 0x69, 0x3e, 0x84, 0x02, 0x0f, 0x39, 0xbf, + 0x42, 0x69, 0x0d, 0x28, 0x5c, 0x59, 0xe3, 0x99, 0xcc, 0x11, 0x84, 0x67, 0xe2, 0x00, 0x16, 0x85, + 0xf9, 0x77, 0x05, 0x28, 0x88, 0x79, 0xfd, 0xdf, 0xe3, 0xf3, 0xc7, 0x50, 0xbe, 0x08, 0x44, 0x7e, + 0x73, 0xcd, 0x57, 0x3f, 0x27, 0xe2, 0x6a, 0x0c, 0xe2, 0xa4, 0xca, 0x43, 0xd9, 0xc5, 0x45, 0x48, + 0x28, 0xb7, 0x83, 0x9c, 0x0c, 0x65, 0x1c, 0xc1, 0xb2, 0x64, 0x06, 0x4f, 0xdd, 0x09, 0xf1, 0x67, + 0x54, 0xf5, 0x41, 0x12, 0xc2, 0x51, 0x85, 0x91, 0x11, 0xcf, 0x3a, 0x1f, 0x13, 0x87, 0x3b, 0xa1, + 0x0d, 0x41, 0x26, 0x21, 0x1c, 0x55, 0x94, 0x48, 0x5e, 0xfa, 0xf5, 0x23, 0xf9, 0xe7, 0xb0, 0x11, + 0x12, 0x4a, 0x5d, 0x6f, 0x18, 0xf2, 0x38, 0x5d, 0xd9, 0x7b, 0x7f, 0x8d, 0xfe, 0xf7, 0x25, 0x69, + 0x53, 0x97, 0xe2, 0x62, 0x66, 0x1c, 0xd7, 0x78, 0xe0, 0x67, 0x19, 0x52, 0x58, 0x2f, 0x6f, 0xe7, + 0xa2, 0x95, 0x10, 0x08, 0x96, 0x25, 0xa3, 0xa1, 0x56, 0x30, 0x24, 0x94, 0x87, 0x73, 0xe9, 0x1e, + 0x05, 0x82, 0x65, 0xc9, 0x1c, 0xd4, 0x4f, 0xfc, 0x73, 0x19, 0xbe, 0xb9, 0x83, 0xfa, 0x89, 0x7f, + 0x8e, 0xd9, 0x0f, 0xfa, 0x5d, 0xd0, 0xcf, 0xad, 0xd0, 0xb5, 0x8f, 0x44, 0xe8, 0x38, 0xf6, 0xc6, + 0xd7, 0x3c, 0x80, 0x6f, 0x34, 0xef, 0x2c, 0xe6, 0xc6, 0x4a, 0x1f, 0x5e, 0x41, 0x98, 0x04, 0x6b, + 0x4c, 0x02, 0xda, 0x27, 0x5e, 0xe8, 0x52, 0xf7, 0xca, 0xa5, 0xd7, 0x32, 0xb4, 0x73, 0x09, 0x37, + 0xfb, 0xf0, 0x0a, 0xf2, 0xea, 0xbd, 0xf7, 0x57, 0x59, 0x80, 0xc4, 0xee, 0x14, 0xfd, 0x2d, 0xff, + 0x9a, 0xfa, 0xab, 0xa8, 0x5b, 0x6e, 0x8d, 0xba, 0xa9, 0x2a, 0x90, 0x7f, 0xd5, 0x2a, 0x50, 0x78, + 0x09, 0x15, 0x28, 0xa6, 0xa9, 0x80, 0xf9, 0xdf, 0x39, 0xd8, 0x5c, 0x1a, 0x15, 0xfd, 0x08, 0xf2, + 0x53, 0xd7, 0x1b, 0x4a, 0xef, 0x95, 0x12, 0x9d, 0xd9, 0xd9, 0x27, 0x9e, 0x27, 0x5a, 0xcc, 0x8d, + 0x1a, 0xe3, 0xf9, 0xc4, 0x9f, 0xb8, 0x94, 0x4c, 0xa6, 0xf4, 0x1a, 0x73, 0x19, 0x4c, 0xd6, 0x88, + 0xd2, 0xa9, 0xf4, 0x5b, 0x29, 0xb2, 0x0e, 0x28, 0x9d, 0x2e, 0xcb, 0x62, 0x3c, 0xaa, 0x2c, 0xd6, + 0x46, 0x0f, 0x21, 0xe7, 0x78, 0xa1, 0xcc, 0x83, 0x52, 0x42, 0x48, 0xdb, 0x0b, 0x63, 0x49, 0x3c, + 0x11, 0x72, 0xbc, 0x50, 0x11, 0xc4, 0x04, 0x30, 0x39, 0xd4, 0x9e, 0xca, 0x7d, 0x48, 0x91, 0x33, + 0xb0, 0xa7, 0xcb, 0x72, 0xa8, 0xad, 0x4e, 0x88, 0x09, 0x40, 0xe7, 0x00, 0x34, 0xb0, 0x6c, 0x12, + 0xf8, 0x33, 0x2a, 0x0e, 0x05, 0x95, 0xbd, 0x9d, 0x14, 0x71, 0x31, 0x5d, 0x2c, 0xb5, 0xbe, 0x98, + 0x1b, 0x77, 0x12, 0x7e, 0x45, 0xb8, 0x22, 0x15, 0x35, 0x21, 0x7b, 0xf9, 0x80, 0xef, 0x5e, 0x6a, + 0x1c, 0x79, 0xf4, 0x20, 0xd1, 0x17, 0x96, 0xa0, 0x5d, 0x3e, 0x50, 0x64, 0x65, 0x2f, 0x1f, 0x7c, + 0x96, 0x7f, 0xfe, 0x97, 0x86, 0x66, 0xfe, 0x22, 0x0b, 0x55, 0x75, 0xd3, 0xd0, 0x21, 0x94, 0xdd, + 0xa9, 0x7a, 0x7a, 0xae, 0xa5, 0x1d, 0xf9, 0xbb, 0x11, 0x99, 0xf0, 0xcd, 0x31, 0x17, 0x4e, 0xaa, + 0x68, 0x1f, 0x5e, 0x0b, 0xfd, 0x59, 0x60, 0x93, 0xee, 0xb4, 0xe1, 0x38, 0x01, 0x09, 0x43, 0x19, + 0x3f, 0xde, 0x5d, 0xcc, 0x8d, 0xb7, 0x6f, 0x74, 0x29, 0x13, 0xbc, 0xc9, 0x85, 0x7e, 0x0b, 0x2a, + 0x53, 0xeb, 0x7a, 0xec, 0x5b, 0x4e, 0xdf, 0xfd, 0x92, 0x48, 0xab, 0x7a, 0x7b, 0x31, 0x37, 0xbe, + 0xa3, 0xc0, 0x8a, 0x00, 0x95, 0x9a, 0x1d, 0x64, 0x1c, 0xdf, 0xa3, 0x0f, 0x03, 0x6b, 0x38, 0x21, + 0x9e, 0x88, 0x13, 0x1b, 0x62, 0x59, 0x54, 0x1c, 0x2f, 0xb5, 0xd0, 0x1e, 0x1b, 0xd2, 0xbe, 0x24, + 0xb4, 0xe5, 0xcf, 0x3c, 0x5a, 0xff, 0x59, 0x89, 0x8f, 0xf9, 0xda, 0x62, 0x6e, 0xa8, 0x38, 0x56, + 0x1b, 0xe6, 0x9f, 0x6d, 0x42, 0x55, 0xd5, 0xdb, 0x57, 0xbc, 0x9c, 0x6d, 0x28, 0x4e, 0x08, 0x1d, + 0xf9, 0xc2, 0xff, 0xa4, 0x1e, 0xf1, 0xd9, 0x0c, 0x8e, 0x38, 0x9d, 0xb0, 0x6d, 0xc1, 0x83, 0x65, + 0x89, 0xbe, 0x0b, 0xa5, 0x11, 0xb1, 0x1c, 0x12, 0x30, 0xab, 0xc9, 0xed, 0x94, 0x45, 0x66, 0x23, + 0x21, 0x65, 0x0d, 0x23, 0x2a, 0xf4, 0x11, 0xe4, 0xcf, 0x7d, 0xe7, 0x5a, 0xe6, 0x99, 0xdc, 0x14, + 0x59, 0x5b, 0x35, 0x45, 0xd6, 0x66, 0xc9, 0x93, 0xe7, 0x3f, 0xf4, 0xc7, 0x63, 0xff, 0x29, 0x26, + 0x8e, 0x1b, 0x10, 0x9b, 0x86, 0xdc, 0x02, 0x64, 0xf2, 0xb4, 0xd2, 0x89, 0x57, 0x21, 0x74, 0x06, + 0x65, 0x3a, 0x0e, 0x5b, 0xbe, 0x77, 0xe1, 0x0e, 0xb9, 0x7f, 0x4f, 0xbd, 0x73, 0x1a, 0x1c, 0xf6, + 0x05, 0x59, 0xf3, 0xad, 0xc5, 0xdc, 0x78, 0x23, 0xe6, 0x52, 0xe6, 0x95, 0x88, 0x62, 0x72, 0x79, + 0x2c, 0x6a, 0xcc, 0xe8, 0x88, 0xc7, 0x83, 0x54, 0xb9, 0xcd, 0x88, 0x4c, 0xc8, 0x8d, 0xb9, 0x54, + 0xb9, 0x31, 0xc8, 0x34, 0xf3, 0x9c, 0x58, 0x01, 0x09, 0x06, 0xfe, 0x25, 0xf1, 0xea, 0x17, 0x7c, + 0x8d, 0xb8, 0x66, 0x2a, 0xb0, 0xaa, 0x99, 0x0a, 0x8c, 0xf6, 0x60, 0x63, 0x1a, 0xf8, 0xcf, 0xae, + 0x4f, 0xf1, 0x61, 0x7d, 0xc8, 0x39, 0xdf, 0x5c, 0xcc, 0x0d, 0x14, 0x61, 0x0a, 0x5b, 0x4c, 0x87, + 0xce, 0xa1, 0xea, 0x5b, 0x33, 0x3a, 0xda, 0x93, 0x6b, 0x34, 0x5a, 0xe7, 0x44, 0x8f, 0x1b, 0x09, + 0x65, 0xf3, 0xee, 0x62, 0x6e, 0xbc, 0xa9, 0xf2, 0x2a, 0xf2, 0x97, 0x64, 0xa2, 0x4f, 0xa0, 0x7c, + 0x61, 0xb9, 0xe3, 0xee, 0x45, 0xbf, 0x7f, 0x58, 0x7f, 0xae, 0xf1, 0x2d, 0x14, 0x19, 0x58, 0x84, + 0xe2, 0xa4, 0x8a, 0xbe, 0x0f, 0x55, 0xd1, 0xe8, 0xf9, 0x94, 0x31, 0xfc, 0x93, 0x96, 0x18, 0x98, + 0xda, 0x81, 0x97, 0x5a, 0xe8, 0x11, 0xe8, 0x57, 0xd6, 0xd8, 0x75, 0x92, 0x1b, 0xa9, 0xb0, 0xfe, + 0xcf, 0xec, 0x28, 0x50, 0x68, 0x6e, 0x2d, 0xe6, 0xc6, 0xdd, 0x9b, 0x9d, 0xca, 0x6c, 0x57, 0x18, + 0x51, 0x0f, 0x5e, 0xe7, 0xd8, 0xc1, 0x60, 0x70, 0x22, 0xcd, 0x25, 0xac, 0xff, 0x8b, 0xc6, 0xf5, + 0xdb, 0x58, 0xcc, 0x8d, 0x77, 0x56, 0x7a, 0x15, 0x71, 0xab, 0xac, 0xe8, 0x0f, 0xe0, 0x2d, 0x31, + 0xd9, 0xa6, 0xef, 0x5c, 0x1f, 0xb1, 0xb4, 0x9e, 0x84, 0x98, 0x0c, 0xc9, 0xb3, 0x69, 0xfd, 0x17, + 0x42, 0xea, 0x87, 0x8b, 0xb9, 0xf1, 0x5e, 0x0a, 0x8d, 0x22, 0x3b, 0x4d, 0x0c, 0x72, 0xe1, 0x6e, + 0xd2, 0xd5, 0xf3, 0xe9, 0xf2, 0x20, 0xff, 0x2a, 0x06, 0xd9, 0x59, 0xcc, 0x8d, 0x0f, 0xd2, 0xc9, + 0x94, 0x71, 0xd6, 0x08, 0x43, 0x7f, 0xaa, 0xc1, 0xdb, 0xa2, 0xfb, 0x80, 0x9b, 0xf4, 0xf2, 0x50, + 0xff, 0xb6, 0xf6, 0xf8, 0xa5, 0x70, 0x34, 0x3f, 0x96, 0x99, 0xc7, 0xfb, 0xa9, 0xc2, 0x94, 0x09, + 0xa5, 0x8f, 0x88, 0xfe, 0x5c, 0x83, 0x7b, 0x6a, 0xef, 0xca, 0xd7, 0xff, 0xfb, 0x4b, 0x4f, 0xe9, + 0xbe, 0x9c, 0xd2, 0x47, 0xeb, 0xe4, 0x29, 0xb3, 0x5a, 0x3b, 0x2e, 0x1a, 0x41, 0xc5, 0xf6, 0x27, + 0x53, 0x16, 0x72, 0x98, 0xc3, 0xfe, 0x5a, 0x78, 0xec, 0xdd, 0x94, 0xac, 0x2c, 0xa1, 0x6c, 0x8c, + 0x87, 0x7e, 0xe0, 0xd2, 0xd1, 0x44, 0x58, 0xbe, 0x22, 0x43, 0xb5, 0x7c, 0x05, 0x66, 0xbb, 0x6f, + 0x5b, 0xf6, 0x88, 0x34, 0x67, 0x21, 0x8b, 0x14, 0x9f, 0xcf, 0x48, 0x70, 0x7d, 0x62, 0x05, 0xd6, + 0xa4, 0xc7, 0xce, 0x60, 0x3f, 0x13, 0x77, 0x17, 0x7c, 0xf7, 0xd3, 0xc9, 0xd4, 0xdd, 0x4f, 0xa7, + 0x32, 0xff, 0x3e, 0x07, 0x55, 0xd5, 0x0f, 0xb0, 0x44, 0xd6, 0x1e, 0xbb, 0x84, 0x27, 0xb2, 0x5a, + 0x72, 0x77, 0x10, 0x61, 0x38, 0xae, 0xb1, 0xc8, 0x29, 0xea, 0x7d, 0x62, 0x07, 0x24, 0xba, 0x28, + 0xe7, 0x86, 0xad, 0xe2, 0x78, 0xa9, 0xc5, 0x13, 0x65, 0xe6, 0xde, 0x98, 0x57, 0x53, 0x6e, 0x31, + 0x22, 0x0c, 0xc7, 0x35, 0xf4, 0x09, 0x14, 0x43, 0xdb, 0x9f, 0x12, 0x96, 0xff, 0xe6, 0xa2, 0x23, + 0x80, 0x40, 0x94, 0x8f, 0x93, 0x34, 0x88, 0x40, 0x8d, 0x78, 0xce, 0xd4, 0x77, 0x3d, 0xca, 0xbf, + 0x4e, 0x24, 0xb9, 0xbf, 0xe2, 0xfc, 0xb5, 0x2d, 0x15, 0xa4, 0xbe, 0xcc, 0xaa, 0x88, 0xbf, 0x21, + 0x74, 0x39, 0x02, 0x15, 0x5f, 0x5d, 0x04, 0x52, 0x9d, 0x7d, 0xe9, 0xe5, 0x9c, 0xbd, 0xf9, 0x57, + 0x1a, 0x54, 0x14, 0x75, 0x67, 0x0b, 0x26, 0xa2, 0xb2, 0xdc, 0x38, 0xbe, 0x60, 0x02, 0x51, 0x17, + 0x4c, 0x20, 0x8c, 0x3a, 0x10, 0x06, 0x95, 0x4d, 0xa8, 0x83, 0x9b, 0x26, 0x21, 0x69, 0xd0, 0xef, + 0x40, 0xd5, 0x62, 0xb1, 0xf8, 0xc8, 0x0d, 0x43, 0x96, 0xe9, 0x8b, 0x6b, 0x0f, 0x1e, 0x34, 0x54, + 0x5c, 0x0d, 0x1a, 0x2a, 0x6e, 0xfe, 0xa3, 0x06, 0xb5, 0x76, 0xaf, 0x8f, 0xf1, 0x19, 0xf3, 0xa6, + 0x16, 0xf5, 0x03, 0xd4, 0x87, 0x37, 0x84, 0xbd, 0x2d, 0x9b, 0xb7, 0xf0, 0x6d, 0xef, 0x2d, 0xe6, + 0xc6, 0xbb, 0xb7, 0x74, 0x2b, 0x03, 0xdc, 0xc6, 0x8d, 0x7e, 0x0f, 0xde, 0x8c, 0xe3, 0xc8, 0xb2, + 0xdc, 0x2c, 0x97, 0xfb, 0xc1, 0x62, 0x6e, 0x6c, 0xdf, 0x4e, 0xa1, 0x88, 0x4e, 0x91, 0x61, 0xfe, + 0x4d, 0x11, 0x2a, 0xca, 0x79, 0xe1, 0xdb, 0x9a, 0x10, 0x9b, 0x50, 0x0c, 0x49, 0x70, 0x45, 0x02, + 0x69, 0x61, 0xe2, 0x2a, 0x94, 0x23, 0x58, 0x96, 0xe8, 0x1e, 0xe4, 0xa7, 0x7e, 0x20, 0xf2, 0xdd, + 0x82, 0xb8, 0xd1, 0x61, 0x6d, 0xcc, 0x7f, 0x51, 0x1f, 0x20, 0x20, 0xb6, 0x1f, 0x38, 0x83, 0xeb, + 0xa9, 0x38, 0xa8, 0xd4, 0xd2, 0xce, 0x9f, 0x6d, 0x2f, 0xc4, 0x31, 0xa9, 0xb8, 0x52, 0x4f, 0x58, + 0xb1, 0x52, 0x47, 0x8f, 0xb8, 0x8e, 0x53, 0xdf, 0xf6, 0xc7, 0xf2, 0x1e, 0x37, 0xfd, 0x48, 0x76, + 0x22, 0x09, 0xe5, 0xcd, 0xa5, 0x6c, 0xe1, 0xb8, 0x86, 0x7e, 0x1b, 0x2a, 0x3c, 0x30, 0x63, 0x91, + 0x1b, 0x3c, 0x17, 0x6a, 0xc3, 0x3d, 0xac, 0x82, 0xab, 0x1e, 0x56, 0x81, 0x91, 0x07, 0xb5, 0x2b, + 0xa1, 0x88, 0xa4, 0xe1, 0x85, 0x4f, 0x49, 0x20, 0xf2, 0x92, 0x4a, 0xda, 0x6d, 0xe7, 0xb2, 0xea, + 0x2a, 0x49, 0x43, 0x2c, 0x00, 0xe3, 0xbe, 0xea, 0x36, 0x96, 0x3b, 0xd1, 0x53, 0x99, 0x81, 0x30, + 0x64, 0x46, 0x47, 0x2c, 0x1e, 0x5c, 0xb3, 0x7c, 0xe6, 0xe5, 0x87, 0x34, 0x17, 0x73, 0x63, 0x6b, + 0x45, 0xc6, 0xf2, 0xa8, 0xab, 0x63, 0xa0, 0x2f, 0x01, 0xc5, 0xa0, 0xe3, 0xb8, 0xd4, 0xf5, 0x3d, + 0x6b, 0xcc, 0x72, 0x9f, 0x97, 0x1f, 0xf9, 0xfd, 0xc5, 0xdc, 0x30, 0x56, 0x85, 0x2c, 0x0f, 0x7d, + 0xcb, 0x28, 0xe6, 0x57, 0x39, 0xa8, 0x28, 0xa7, 0xe2, 0x6f, 0xab, 0xb5, 0xbc, 0x0f, 0x39, 0x3a, + 0x0e, 0xa5, 0x47, 0x13, 0x27, 0xf7, 0xf1, 0xd2, 0x0d, 0x00, 0x1d, 0xdf, 0xf0, 0xfb, 0xf9, 0x57, + 0xe7, 0xf7, 0x27, 0xb0, 0xf9, 0x53, 0x16, 0x91, 0xa3, 0xb7, 0x5d, 0x19, 0xb5, 0x3e, 0x4a, 0x91, + 0xdd, 0x3a, 0xf9, 0x5c, 0xa5, 0x6e, 0x1a, 0x32, 0x80, 0xbd, 0xb5, 0x24, 0x44, 0x19, 0x6a, 0x59, + 0xba, 0xf9, 0x47, 0x1a, 0xe8, 0x37, 0x85, 0x30, 0x57, 0x10, 0x12, 0x4f, 0x84, 0xfb, 0xaa, 0x70, + 0x05, 0xac, 0x8d, 0xf9, 0x2f, 0x73, 0x26, 0xe4, 0xd9, 0x94, 0xd8, 0x22, 0xc0, 0x57, 0x85, 0x33, + 0x11, 0x08, 0x96, 0x25, 0x8b, 0x5e, 0x21, 0xb5, 0x02, 0x3a, 0x38, 0xec, 0xcb, 0x75, 0xe4, 0xd1, + 0x2b, 0xc2, 0xd4, 0xe8, 0x15, 0x61, 0xe6, 0xdf, 0x66, 0xa1, 0x1c, 0xaf, 0x15, 0x3a, 0x01, 0xe4, + 0x7a, 0x21, 0xb1, 0x67, 0x01, 0xe9, 0x5f, 0xf2, 0x4d, 0x76, 0x2f, 0xae, 0xeb, 0xe2, 0xac, 0xb0, + 0xbd, 0x98, 0x1b, 0xf7, 0x56, 0x7b, 0x55, 0xed, 0x5b, 0xed, 0x65, 0xf1, 0xad, 0xd5, 0x68, 0x91, + 0x20, 0x9a, 0x37, 0x8f, 0x6f, 0xb6, 0xc5, 0x10, 0x35, 0xbe, 0x09, 0x1a, 0xf4, 0x43, 0x00, 0x91, + 0xa6, 0x70, 0x8e, 0x1c, 0xe7, 0xe0, 0xf7, 0x2d, 0x09, 0xaa, 0xde, 0xb7, 0x24, 0x28, 0xfa, 0x3e, + 0x94, 0x45, 0xeb, 0x11, 0x11, 0xa7, 0xe0, 0xaa, 0xd8, 0xf8, 0x18, 0x54, 0x37, 0x3e, 0x06, 0xd9, + 0x80, 0xc2, 0x13, 0xf3, 0x9c, 0xae, 0xc0, 0x35, 0x97, 0x0f, 0x98, 0xa0, 0xea, 0x80, 0x09, 0x6a, + 0x86, 0x50, 0x8e, 0x4f, 0xa1, 0x6c, 0xe5, 0xe3, 0x47, 0x21, 0x2d, 0xc9, 0x1b, 0x22, 0x4c, 0x5d, + 0xf9, 0xf8, 0x79, 0x68, 0x4f, 0x79, 0x1e, 0xca, 0x2a, 0xb9, 0x86, 0xc4, 0x96, 0x72, 0x8d, 0xe8, + 0xa1, 0xe8, 0x3f, 0x34, 0x40, 0xab, 0x57, 0x52, 0xe8, 0x43, 0x28, 0x4d, 0xac, 0x67, 0x07, 0xfe, + 0x34, 0x94, 0x77, 0xfa, 0xfc, 0x32, 0x53, 0x42, 0x38, 0xaa, 0xa0, 0xcf, 0xa0, 0x36, 0xb1, 0x9e, + 0x9d, 0x7a, 0x97, 0x9e, 0xff, 0xd4, 0xe3, 0xd4, 0xe2, 0x8e, 0x94, 0x5f, 0x17, 0x2c, 0xf7, 0xe0, + 0x1b, 0x6d, 0xf4, 0x31, 0x94, 0xa7, 0x34, 0x38, 0xf4, 0xfd, 0xcb, 0xd9, 0x54, 0x2a, 0x17, 0x77, + 0x0a, 0x31, 0x88, 0x93, 0x2a, 0xba, 0x0f, 0x30, 0xf2, 0xa7, 0x03, 0x79, 0xbf, 0x2a, 0xee, 0xfc, + 0x79, 0x48, 0x4a, 0x50, 0xac, 0xd4, 0xcd, 0xef, 0x01, 0x24, 0x97, 0x61, 0x3c, 0x6e, 0xda, 0x81, + 0x3b, 0xa5, 0xd2, 0x14, 0x44, 0xdc, 0xe4, 0x08, 0x96, 0xe5, 0xee, 0x0c, 0x20, 0x39, 0x5a, 0xa2, + 0x22, 0x64, 0x8f, 0x1f, 0xe9, 0x19, 0xb4, 0x09, 0xe5, 0xde, 0xf1, 0xe0, 0xc9, 0xc3, 0xe3, 0xd3, + 0x5e, 0x5b, 0xd7, 0xd0, 0x1d, 0xd0, 0xbb, 0xbd, 0xb3, 0xc6, 0x61, 0xb7, 0xfd, 0xa4, 0x81, 0xf7, + 0x4f, 0x8f, 0x3a, 0xbd, 0x81, 0x9e, 0x45, 0x08, 0x6a, 0x8d, 0x43, 0xdc, 0x69, 0xb4, 0xbf, 0x78, + 0xd2, 0x79, 0xdc, 0xed, 0x0f, 0xfa, 0x7a, 0x8e, 0x61, 0xdd, 0xde, 0xa0, 0x83, 0x7b, 0x8d, 0xc3, + 0x27, 0x1d, 0x8c, 0x8f, 0xb1, 0x9e, 0x67, 0x18, 0x13, 0xd6, 0x38, 0x1d, 0x1c, 0x1c, 0xe3, 0xee, + 0x8f, 0x3b, 0x6d, 0xbd, 0xb0, 0xbb, 0x03, 0x55, 0xf5, 0x75, 0x13, 0x01, 0x14, 0x1b, 0xad, 0x41, + 0xf7, 0xac, 0xa3, 0x67, 0x50, 0x15, 0x36, 0xda, 0xdd, 0x7e, 0xa3, 0x79, 0xd8, 0x69, 0xeb, 0xda, + 0x6e, 0x0b, 0x6a, 0xcb, 0x6f, 0x73, 0x6c, 0x72, 0xad, 0x83, 0x4e, 0xeb, 0xd1, 0x93, 0x46, 0xbb, + 0xad, 0x67, 0x90, 0x0e, 0x55, 0xd1, 0x3c, 0x3d, 0x69, 0x37, 0x06, 0x1d, 0x5d, 0x4b, 0x90, 0x76, + 0xe7, 0xb0, 0x33, 0xe8, 0xe8, 0xd9, 0x5d, 0x1b, 0x20, 0xb9, 0x28, 0x42, 0x25, 0xc8, 0xed, 0x77, + 0x06, 0x7a, 0x06, 0x55, 0xa0, 0xd4, 0x3a, 0xee, 0xf5, 0x3a, 0xad, 0x81, 0xae, 0xb1, 0x29, 0x44, + 0xf4, 0x68, 0x03, 0xf2, 0x07, 0x9d, 0x46, 0x5b, 0xcf, 0x31, 0x92, 0xe3, 0x93, 0x41, 0xf7, 0xb8, + 0xd7, 0xd7, 0xf3, 0x0c, 0x3e, 0x39, 0xee, 0x0f, 0xf4, 0x02, 0x13, 0x71, 0x72, 0x3a, 0xd0, 0x8b, + 0xa8, 0x0c, 0x85, 0x01, 0x6e, 0xb4, 0x3a, 0x7a, 0x69, 0x77, 0x04, 0x9b, 0x4b, 0xc9, 0x03, 0x23, + 0x6a, 0xf4, 0xbe, 0xd0, 0x33, 0xa8, 0x00, 0x5a, 0x43, 0xd7, 0x18, 0x7b, 0xa3, 0xd1, 0x68, 0xe8, + 0x59, 0xc6, 0xd5, 0xea, 0x35, 0x8e, 0x3a, 0x7a, 0x8e, 0x2d, 0xf9, 0xd1, 0x63, 0x3d, 0xcf, 0xca, + 0x5e, 0x5f, 0x4a, 0x1e, 0x60, 0xbd, 0xc8, 0x2a, 0xfd, 0xe3, 0x86, 0x5e, 0xe2, 0x15, 0x7c, 0xa6, + 0x6f, 0xb0, 0xca, 0xe0, 0xf1, 0x40, 0x2f, 0xef, 0x1a, 0x3c, 0x6d, 0x8b, 0x72, 0x0a, 0x8e, 0xb7, + 0x4e, 0xf4, 0x0c, 0xab, 0x9c, 0xb6, 0x4f, 0x74, 0x6d, 0xf7, 0x03, 0x28, 0xc7, 0x31, 0x87, 0x4f, + 0xc3, 0xbb, 0xd6, 0x33, 0x6c, 0x88, 0xb3, 0x4f, 0x75, 0x8d, 0x97, 0x0f, 0xf4, 0xec, 0xee, 0x11, + 0xdc, 0xb9, 0xed, 0x5c, 0xc7, 0xe6, 0xe9, 0xf9, 0x1e, 0x11, 0x5b, 0xe1, 0x3a, 0x84, 0xff, 0x91, + 0x49, 0xcc, 0x7f, 0xf8, 0xa5, 0x3b, 0xd5, 0xb3, 0x4c, 0xc2, 0x79, 0x20, 0x56, 0xc7, 0x21, 0x17, + 0x63, 0x8b, 0x12, 0x3d, 0xbf, 0xf7, 0x27, 0x59, 0x28, 0xb6, 0xc4, 0x1b, 0xe5, 0xef, 0xc3, 0xe6, + 0xd2, 0x9f, 0x69, 0x90, 0xb1, 0xe6, 0x7f, 0x33, 0x5d, 0xef, 0xc2, 0xbf, 0xfb, 0x1b, 0x69, 0x6f, + 0xef, 0x2b, 0x7f, 0xc9, 0x31, 0x33, 0xe8, 0x73, 0x80, 0x7d, 0x42, 0xa3, 0xb7, 0xd5, 0xed, 0x35, + 0xb2, 0xf9, 0x5f, 0xc4, 0xee, 0xbe, 0x9b, 0xf6, 0xd4, 0xc0, 0x05, 0x98, 0x99, 0xef, 0x69, 0xe8, + 0x18, 0xf2, 0x27, 0xae, 0x37, 0x44, 0xef, 0xa5, 0x5f, 0xf6, 0xcb, 0x17, 0xce, 0xbb, 0x69, 0xef, + 0x01, 0xca, 0x5f, 0x9a, 0xcc, 0xcc, 0xde, 0x3f, 0x68, 0x50, 0x49, 0x1e, 0x5a, 0xfe, 0xdf, 0x97, + 0x64, 0x00, 0xb5, 0x7d, 0x42, 0xd5, 0x01, 0xef, 0xde, 0xce, 0x7e, 0xe6, 0xbb, 0x4e, 0xda, 0x27, + 0xa8, 0x0f, 0xb9, 0x6c, 0x55, 0xf6, 0x1e, 0x43, 0x69, 0x20, 0x5f, 0x8b, 0x8f, 0xa0, 0xbc, 0x4f, + 0xa8, 0xfc, 0x4f, 0xc7, 0xf6, 0xba, 0xe7, 0x57, 0x3e, 0xf9, 0xb5, 0x0f, 0xb4, 0x66, 0xa6, 0xb9, + 0xf7, 0xfc, 0xbf, 0xb6, 0x32, 0xcf, 0x5f, 0x6c, 0x69, 0x5f, 0xbf, 0xd8, 0xd2, 0xfe, 0xf3, 0xc5, + 0x96, 0xf6, 0xd5, 0x37, 0x5b, 0x99, 0xaf, 0xbf, 0xd9, 0xca, 0xfc, 0xf2, 0x9b, 0xad, 0xcc, 0x8f, + 0x6f, 0xfd, 0x5b, 0xe0, 0x79, 0x91, 0x67, 0xcb, 0xbf, 0xf9, 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, + 0xc3, 0x0d, 0x60, 0x57, 0x43, 0x28, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -3564,6 +3619,20 @@ func (m *HttpSettings) MarshalToSizedBuffer(dAtA []byte) (int, error) { i-- dAtA[i] = 0xc0 } + if m.Oauth2Config != nil { + { + size, err := m.Oauth2Config.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintChecks(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x6 + i-- + dAtA[i] = 0xc2 + } if len(m.ProxyURL) > 0 { i -= len(m.ProxyURL) copy(dAtA[i:], m.ProxyURL) @@ -3649,6 +3718,92 @@ func (m *HttpSettings) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *OAuth2Config) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *OAuth2Config) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *OAuth2Config) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.ProxyURL) > 0 { + i -= len(m.ProxyURL) + copy(dAtA[i:], m.ProxyURL) + i = encodeVarintChecks(dAtA, i, uint64(len(m.ProxyURL))) + i-- + dAtA[i] = 0x3a + } + if m.TlsConfig != nil { + { + size, err := m.TlsConfig.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintChecks(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x32 + } + if len(m.EndpointParams) > 0 { + for iNdEx := len(m.EndpointParams) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.EndpointParams[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintChecks(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x2a + } + } + if len(m.Scopes) > 0 { + for iNdEx := len(m.Scopes) - 1; iNdEx >= 0; iNdEx-- { + i -= len(m.Scopes[iNdEx]) + copy(dAtA[i:], m.Scopes[iNdEx]) + i = encodeVarintChecks(dAtA, i, uint64(len(m.Scopes[iNdEx]))) + i-- + dAtA[i] = 0x22 + } + } + if len(m.TokenURL) > 0 { + i -= len(m.TokenURL) + copy(dAtA[i:], m.TokenURL) + i = encodeVarintChecks(dAtA, i, uint64(len(m.TokenURL))) + i-- + dAtA[i] = 0x1a + } + if len(m.ClientSecret) > 0 { + i -= len(m.ClientSecret) + copy(dAtA[i:], m.ClientSecret) + i = encodeVarintChecks(dAtA, i, uint64(len(m.ClientSecret))) + i-- + dAtA[i] = 0x12 + } + if len(m.ClientId) > 0 { + i -= len(m.ClientId) + copy(dAtA[i:], m.ClientId) + i = encodeVarintChecks(dAtA, i, uint64(len(m.ClientId))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + func (m *HeaderMatch) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -4676,6 +4831,10 @@ func (m *HttpSettings) Size() (n int) { if l > 0 { n += 2 + l + sovChecks(uint64(l)) } + if m.Oauth2Config != nil { + l = m.Oauth2Config.Size() + n += 2 + l + sovChecks(uint64(l)) + } if m.FailIfSSL { n += 3 } @@ -4729,6 +4888,47 @@ func (m *HttpSettings) Size() (n int) { return n } +func (m *OAuth2Config) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.ClientId) + if l > 0 { + n += 1 + l + sovChecks(uint64(l)) + } + l = len(m.ClientSecret) + if l > 0 { + n += 1 + l + sovChecks(uint64(l)) + } + l = len(m.TokenURL) + if l > 0 { + n += 1 + l + sovChecks(uint64(l)) + } + if len(m.Scopes) > 0 { + for _, s := range m.Scopes { + l = len(s) + n += 1 + l + sovChecks(uint64(l)) + } + } + if len(m.EndpointParams) > 0 { + for _, e := range m.EndpointParams { + l = e.Size() + n += 1 + l + sovChecks(uint64(l)) + } + } + if m.TlsConfig != nil { + l = m.TlsConfig.Size() + n += 1 + l + sovChecks(uint64(l)) + } + l = len(m.ProxyURL) + if l > 0 { + n += 1 + l + sovChecks(uint64(l)) + } + return n +} + func (m *HeaderMatch) Size() (n int) { if m == nil { return 0 @@ -8529,6 +8729,42 @@ func (m *HttpSettings) Unmarshal(dAtA []byte) error { } m.ProxyURL = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex + case 104: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Oauth2Config", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowChecks + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthChecks + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthChecks + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Oauth2Config == nil { + m.Oauth2Config = &OAuth2Config{} + } + if err := m.Oauth2Config.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex case 200: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field FailIfSSL", wireType) @@ -8881,6 +9117,286 @@ func (m *HttpSettings) Unmarshal(dAtA []byte) error { } return nil } +func (m *OAuth2Config) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowChecks + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: OAuth2Config: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: OAuth2Config: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ClientId", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowChecks + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthChecks + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthChecks + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.ClientId = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ClientSecret", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowChecks + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthChecks + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthChecks + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.ClientSecret = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field TokenURL", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowChecks + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthChecks + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthChecks + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.TokenURL = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Scopes", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowChecks + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthChecks + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthChecks + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Scopes = append(m.Scopes, string(dAtA[iNdEx:postIndex])) + iNdEx = postIndex + case 5: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field EndpointParams", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowChecks + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthChecks + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthChecks + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.EndpointParams = append(m.EndpointParams, Label{}) + if err := m.EndpointParams[len(m.EndpointParams)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 6: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field TlsConfig", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowChecks + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthChecks + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthChecks + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.TlsConfig == nil { + m.TlsConfig = &TLSConfig{} + } + if err := m.TlsConfig.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 7: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ProxyURL", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowChecks + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthChecks + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthChecks + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.ProxyURL = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipChecks(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthChecks + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *HeaderMatch) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 diff --git a/pkg/pb/synthetic_monitoring/checks.proto b/pkg/pb/synthetic_monitoring/checks.proto index e4f1e5187..5da99d7dc 100644 --- a/pkg/pb/synthetic_monitoring/checks.proto +++ b/pkg/pb/synthetic_monitoring/checks.proto @@ -300,6 +300,7 @@ message HttpSettings { BasicAuth basicAuth = 101 [(gogoproto.jsontag) = "basicAuth,omitempty"]; string bearerToken = 102 [(gogoproto.jsontag) = "bearerToken,omitempty"]; string proxyURL = 103 [(gogoproto.jsontag) = "proxyURL,omitempty"]; + OAuth2Config oauth2Config = 104 [(gogoproto.jsontag) = "oauth2Config,omitempty"]; // validations @@ -318,6 +319,17 @@ message HttpSettings { string cacheBustingQueryParamName = 900 [(gogoproto.jsontag) = "cacheBustingQueryParamName,omitempty"]; } +// Configuration for two-legged OAuth2 (client_credentials grant type). +message OAuth2Config { + string clientId = 1 [(gogoproto.jsontag) = "clientId"]; // (Required) client identifier + string clientSecret = 2 [(gogoproto.jsontag) = "clientSecret"]; // (Required) client secret + string tokenURL = 3 [(gogoproto.jsontag) = "tokenURL"]; // (Required) URL for the token endpoint + repeated string scopes = 4 [(gogoproto.jsontag) = "scopes,omitempty"]; // Service-specific list of scopes + repeated Label endpointParams = 5 [(gogoproto.nullable) = false, (gogoproto.jsontag) = "endpointParams,omitempty"]; // Extra request parameters to use with token endpoint + TLSConfig tlsConfig = 6 [(gogoproto.jsontag) = "tlsConfig,omitempty"]; + string proxyURL = 7 [(gogoproto.jsontag) = "proxyURL,omitempty"]; +} + // HeaderMatch represents a single header that must match in order for // the check to be considered successful. message HeaderMatch {