diff --git a/api/types/events/events.pb.go b/api/types/events/events.pb.go index f09d0e50a9095..8961526036c60 100644 --- a/api/types/events/events.pb.go +++ b/api/types/events/events.pb.go @@ -10,6 +10,8 @@ import ( github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" _ "github.com/golang/protobuf/ptypes/struct" _ "github.com/golang/protobuf/ptypes/timestamp" + _ "github.com/gravitational/teleport/api/types/wrappers" + github_com_gravitational_teleport_api_types_wrappers "github.com/gravitational/teleport/api/types/wrappers" io "io" math "math" math_bits "math/bits" @@ -4117,6 +4119,52 @@ func (m *WindowsDesktopSessionEnd) XXX_DiscardUnknown() { var xxx_messageInfo_WindowsDesktopSessionEnd proto.InternalMessageInfo +// CertificateCreate is emitted when a certificate is issued. +type CertificateCreate struct { + // Metadata is a common event metadata. + Metadata `protobuf:"bytes,1,opt,name=Metadata,proto3,embedded=Metadata" json:""` + // CertificateType is the type of certificate that was just issued. + CertificateType string `protobuf:"bytes,2,opt,name=CertificateType,proto3" json:"cert_type,omitempty"` + // Identity is the identity associated with the certificate, as interpreted by Teleport. + Identity *Identity `protobuf:"bytes,3,opt,name=Identity,proto3" json:"identity"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *CertificateCreate) Reset() { *m = CertificateCreate{} } +func (m *CertificateCreate) String() string { return proto.CompactTextString(m) } +func (*CertificateCreate) ProtoMessage() {} +func (*CertificateCreate) Descriptor() ([]byte, []int) { + return fileDescriptor_8f22242cb04491f9, []int{80} +} +func (m *CertificateCreate) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *CertificateCreate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_CertificateCreate.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 *CertificateCreate) XXX_Merge(src proto.Message) { + xxx_messageInfo_CertificateCreate.Merge(m, src) +} +func (m *CertificateCreate) XXX_Size() int { + return m.Size() +} +func (m *CertificateCreate) XXX_DiscardUnknown() { + xxx_messageInfo_CertificateCreate.DiscardUnknown(m) +} + +var xxx_messageInfo_CertificateCreate proto.InternalMessageInfo + // OneOf is a union of one of audit events submitted to the auth service type OneOf struct { // Event is one of the audit events @@ -4189,6 +4237,7 @@ type OneOf struct { // *OneOf_PostgresFunctionCall // *OneOf_AccessRequestDelete // *OneOf_SessionConnect + // *OneOf_CertificateCreate Event isOneOf_Event `protobuf_oneof:"Event"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` @@ -4199,7 +4248,7 @@ func (m *OneOf) Reset() { *m = OneOf{} } func (m *OneOf) String() string { return proto.CompactTextString(m) } func (*OneOf) ProtoMessage() {} func (*OneOf) Descriptor() ([]byte, []int) { - return fileDescriptor_8f22242cb04491f9, []int{80} + return fileDescriptor_8f22242cb04491f9, []int{81} } func (m *OneOf) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4435,6 +4484,9 @@ type OneOf_AccessRequestDelete struct { type OneOf_SessionConnect struct { SessionConnect *SessionConnect `protobuf:"bytes,67,opt,name=SessionConnect,proto3,oneof" json:"SessionConnect,omitempty"` } +type OneOf_CertificateCreate struct { + CertificateCreate *CertificateCreate `protobuf:"bytes,68,opt,name=CertificateCreate,proto3,oneof" json:"CertificateCreate,omitempty"` +} func (*OneOf_UserLogin) isOneOf_Event() {} func (*OneOf_UserCreate) isOneOf_Event() {} @@ -4503,6 +4555,7 @@ func (*OneOf_PostgresClose) isOneOf_Event() {} func (*OneOf_PostgresFunctionCall) isOneOf_Event() {} func (*OneOf_AccessRequestDelete) isOneOf_Event() {} func (*OneOf_SessionConnect) isOneOf_Event() {} +func (*OneOf_CertificateCreate) isOneOf_Event() {} func (m *OneOf) GetEvent() isOneOf_Event { if m != nil { @@ -4980,6 +5033,13 @@ func (m *OneOf) GetSessionConnect() *SessionConnect { return nil } +func (m *OneOf) GetCertificateCreate() *CertificateCreate { + if x, ok := m.GetEvent().(*OneOf_CertificateCreate); ok { + return x.CertificateCreate + } + return nil +} + // XXX_OneofWrappers is for the internal use of the proto package. func (*OneOf) XXX_OneofWrappers() []interface{} { return []interface{}{ @@ -5050,6 +5110,7 @@ func (*OneOf) XXX_OneofWrappers() []interface{} { (*OneOf_PostgresFunctionCall)(nil), (*OneOf_AccessRequestDelete)(nil), (*OneOf_SessionConnect)(nil), + (*OneOf_CertificateCreate)(nil), } } @@ -5070,7 +5131,7 @@ func (m *StreamStatus) Reset() { *m = StreamStatus{} } func (m *StreamStatus) String() string { return proto.CompactTextString(m) } func (*StreamStatus) ProtoMessage() {} func (*StreamStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_8f22242cb04491f9, []int{81} + return fileDescriptor_8f22242cb04491f9, []int{82} } func (m *StreamStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5118,7 +5179,7 @@ func (m *SessionUpload) Reset() { *m = SessionUpload{} } func (m *SessionUpload) String() string { return proto.CompactTextString(m) } func (*SessionUpload) ProtoMessage() {} func (*SessionUpload) Descriptor() ([]byte, []int) { - return fileDescriptor_8f22242cb04491f9, []int{82} + return fileDescriptor_8f22242cb04491f9, []int{83} } func (m *SessionUpload) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5147,6 +5208,199 @@ func (m *SessionUpload) XXX_DiscardUnknown() { var xxx_messageInfo_SessionUpload proto.InternalMessageInfo +// Identity matches github.com/gravitational/teleport/lib/tlsca.Identity except +// for RouteToApp and RouteToDatabase which are nullable and Traits which is +// represented as a google.protobuf.Struct (still containing a map from string +// to strings). Field names match other names already used in other events +// rather than the field names in tlsca.Identity. +type Identity struct { + // User is a username or name of the node connection + User string `protobuf:"bytes,1,opt,name=User,proto3" json:"user,omitempty"` + // Impersonator is a username of a user impersonating this user + Impersonator string `protobuf:"bytes,2,opt,name=Impersonator,proto3" json:"impersonator,omitempty"` + // Roles is a list of groups (Teleport roles) encoded in the identity + Roles []string `protobuf:"bytes,3,rep,name=Roles,proto3" json:"roles,omitempty"` + // Usage is a list of usage restrictions encoded in the identity + Usage []string `protobuf:"bytes,4,rep,name=Usage,proto3" json:"usage,omitempty"` + // Logins is a list of Unix logins allowed. + Logins []string `protobuf:"bytes,5,rep,name=Logins,proto3" json:"logins,omitempty"` + // KubernetesGroups is a list of Kubernetes groups allowed + KubernetesGroups []string `protobuf:"bytes,6,rep,name=KubernetesGroups,proto3" json:"kubernetes_groups,omitempty"` + // KubernetesUsers is a list of Kubernetes users allowed + KubernetesUsers []string `protobuf:"bytes,7,rep,name=KubernetesUsers,proto3" json:"kubernetes_users,omitempty"` + // Expires specifies whenever the session will expire + Expires time.Time `protobuf:"bytes,8,opt,name=Expires,proto3,stdtime" json:"expires"` + // RouteToCluster specifies the target cluster + // if present in the session + RouteToCluster string `protobuf:"bytes,9,opt,name=RouteToCluster,proto3" json:"route_to_cluster,omitempty"` + // KubernetesCluster specifies the target kubernetes cluster for TLS + // identities. This can be empty on older Teleport clients. + KubernetesCluster string `protobuf:"bytes,10,opt,name=KubernetesCluster,proto3" json:"kubernetes_cluster,omitempty"` + // Traits hold claim data used to populate a role at runtime. + Traits github_com_gravitational_teleport_api_types_wrappers.Traits `protobuf:"bytes,11,opt,name=Traits,proto3,customtype=github.com/gravitational/teleport/api/types/wrappers.Traits" json:"traits,omitempty"` + // RouteToApp holds routing information for applications. Routing metadata + // allows Teleport web proxy to route HTTP requests to the appropriate + // cluster and Teleport application proxy within the cluster. + RouteToApp *RouteToApp `protobuf:"bytes,12,opt,name=RouteToApp,proto3" json:"route_to_app,omitempty"` + // TeleportCluster is the name of the teleport cluster that this identity + // originated from. For TLS certs this may not be the same as cert issuer, + // in case of multi-hop requests that originate from a remote cluster. + TeleportCluster string `protobuf:"bytes,13,opt,name=TeleportCluster,proto3" json:"teleport_cluster,omitempty"` + // RouteToDatabase contains routing information for databases. + RouteToDatabase *RouteToDatabase `protobuf:"bytes,14,opt,name=RouteToDatabase,proto3" json:"route_to_database,omitempty"` + // DatabaseNames is a list of allowed database names. + DatabaseNames []string `protobuf:"bytes,15,rep,name=DatabaseNames,proto3" json:"database_names,omitempty"` + // DatabaseUsers is a list of allowed database users. + DatabaseUsers []string `protobuf:"bytes,16,rep,name=DatabaseUsers,proto3" json:"database_users,omitempty"` + // MFADeviceUUID is the UUID of an MFA device when this Identity was + // confirmed immediately after an MFA check. + MFADeviceUUID string `protobuf:"bytes,17,opt,name=MFADeviceUUID,proto3" json:"mfa_device_uuid,omitempty"` + // ClientIP is an observed IP of the client that this Identity represents. + ClientIP string `protobuf:"bytes,18,opt,name=ClientIP,proto3" json:"client_ip,omitempty"` + // AWSRoleARNs is a list of allowed AWS role ARNs user can assume. + AWSRoleARNs []string `protobuf:"bytes,19,rep,name=AWSRoleARNs,proto3" json:"aws_role_arns,omitempty"` + // AccessRequests is a list of UUIDs of active requests for this Identity. + AccessRequests []string `protobuf:"bytes,20,rep,name=AccessRequests,proto3" json:"access_requests,omitempty"` + // DisallowReissue is a flag that, if set, instructs the auth server to + // deny any attempts to reissue new certificates while authenticated with + // this certificate. + DisallowReissue bool `protobuf:"varint,21,opt,name=DisallowReissue,proto3" json:"disallow_reissue,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *Identity) Reset() { *m = Identity{} } +func (m *Identity) String() string { return proto.CompactTextString(m) } +func (*Identity) ProtoMessage() {} +func (*Identity) Descriptor() ([]byte, []int) { + return fileDescriptor_8f22242cb04491f9, []int{84} +} +func (m *Identity) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *Identity) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_Identity.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 *Identity) XXX_Merge(src proto.Message) { + xxx_messageInfo_Identity.Merge(m, src) +} +func (m *Identity) XXX_Size() int { + return m.Size() +} +func (m *Identity) XXX_DiscardUnknown() { + xxx_messageInfo_Identity.DiscardUnknown(m) +} + +var xxx_messageInfo_Identity proto.InternalMessageInfo + +// RouteToApp contains parameters for application access certificate requests. +type RouteToApp struct { + // Name is the application name certificate is being requested for. + Name string `protobuf:"bytes,1,opt,name=Name,proto3" json:"name"` + // SessionID is the ID of the application session. + SessionID string `protobuf:"bytes,2,opt,name=SessionID,proto3" json:"session_id"` + // PublicAddr is the application public address. + PublicAddr string `protobuf:"bytes,3,opt,name=PublicAddr,proto3" json:"public_addr"` + // ClusterName is the cluster where the application resides. + ClusterName string `protobuf:"bytes,4,opt,name=ClusterName,proto3" json:"cluster_name"` + // AWSRoleARN is the AWS role to assume when accessing AWS API. + AWSRoleARN string `protobuf:"bytes,5,opt,name=AWSRoleARN,proto3" json:"aws_role_arn,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *RouteToApp) Reset() { *m = RouteToApp{} } +func (m *RouteToApp) String() string { return proto.CompactTextString(m) } +func (*RouteToApp) ProtoMessage() {} +func (*RouteToApp) Descriptor() ([]byte, []int) { + return fileDescriptor_8f22242cb04491f9, []int{85} +} +func (m *RouteToApp) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *RouteToApp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_RouteToApp.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 *RouteToApp) XXX_Merge(src proto.Message) { + xxx_messageInfo_RouteToApp.Merge(m, src) +} +func (m *RouteToApp) XXX_Size() int { + return m.Size() +} +func (m *RouteToApp) XXX_DiscardUnknown() { + xxx_messageInfo_RouteToApp.DiscardUnknown(m) +} + +var xxx_messageInfo_RouteToApp proto.InternalMessageInfo + +// RouteToDatabase combines parameters for database service routing information. +type RouteToDatabase struct { + // ServiceName is the Teleport database proxy service name the cert is for. + ServiceName string `protobuf:"bytes,1,opt,name=ServiceName,proto3" json:"service_name"` + // Protocol is the type of the database the cert is for. + Protocol string `protobuf:"bytes,2,opt,name=Protocol,proto3" json:"protocol"` + // Username is an optional database username to embed. + Username string `protobuf:"bytes,3,opt,name=Username,proto3" json:"username,omitempty"` + // Database is an optional database name to embed. + Database string `protobuf:"bytes,4,opt,name=Database,proto3" json:"database,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *RouteToDatabase) Reset() { *m = RouteToDatabase{} } +func (m *RouteToDatabase) String() string { return proto.CompactTextString(m) } +func (*RouteToDatabase) ProtoMessage() {} +func (*RouteToDatabase) Descriptor() ([]byte, []int) { + return fileDescriptor_8f22242cb04491f9, []int{86} +} +func (m *RouteToDatabase) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *RouteToDatabase) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_RouteToDatabase.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 *RouteToDatabase) XXX_Merge(src proto.Message) { + xxx_messageInfo_RouteToDatabase.Merge(m, src) +} +func (m *RouteToDatabase) XXX_Size() int { + return m.Size() +} +func (m *RouteToDatabase) XXX_DiscardUnknown() { + xxx_messageInfo_RouteToDatabase.DiscardUnknown(m) +} + +var xxx_messageInfo_RouteToDatabase proto.InternalMessageInfo + func init() { proto.RegisterEnum("events.EventAction", EventAction_name, EventAction_value) proto.RegisterEnum("events.SessionNetwork_NetworkOperation", SessionNetwork_NetworkOperation_name, SessionNetwork_NetworkOperation_value) @@ -5235,367 +5489,409 @@ func init() { proto.RegisterType((*RecoveryCodeUsed)(nil), "events.RecoveryCodeUsed") proto.RegisterType((*WindowsDesktopSessionEnd)(nil), "events.WindowsDesktopSessionEnd") proto.RegisterMapType((map[string]string)(nil), "events.WindowsDesktopSessionEnd.DesktopLabelsEntry") + proto.RegisterType((*CertificateCreate)(nil), "events.CertificateCreate") proto.RegisterType((*OneOf)(nil), "events.OneOf") proto.RegisterType((*StreamStatus)(nil), "events.StreamStatus") proto.RegisterType((*SessionUpload)(nil), "events.SessionUpload") + proto.RegisterType((*Identity)(nil), "events.Identity") + proto.RegisterType((*RouteToApp)(nil), "events.RouteToApp") + proto.RegisterType((*RouteToDatabase)(nil), "events.RouteToDatabase") } func init() { proto.RegisterFile("events.proto", fileDescriptor_8f22242cb04491f9) } var fileDescriptor_8f22242cb04491f9 = []byte{ - // 5620 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x5d, 0x6c, 0x1c, 0x59, - 0x56, 0x70, 0xff, 0xb8, 0x7f, 0x7c, 0xda, 0x76, 0xec, 0x1b, 0x27, 0xa9, 0x78, 0x92, 0x74, 0xa6, - 0xb2, 0x9b, 0x49, 0x76, 0x33, 0xce, 0x26, 0xf1, 0x4c, 0x76, 0x67, 0x67, 0x36, 0x69, 0x77, 0x3b, - 0xe3, 0xde, 0x75, 0xe2, 0x9e, 0x6b, 0x67, 0x66, 0xa5, 0x4f, 0x3b, 0xad, 0x72, 0xd7, 0x8d, 0x5d, - 0x9b, 0xee, 0xaa, 0xda, 0xaa, 0x6a, 0x27, 0x9e, 0xa7, 0x8f, 0x1f, 0x09, 0xb4, 0x5a, 0x10, 0x5a, - 0x1e, 0x78, 0xe0, 0x01, 0xb4, 0xc0, 0x03, 0x12, 0x62, 0x11, 0x48, 0x2b, 0x24, 0x78, 0x41, 0x03, - 0x28, 0x08, 0x2d, 0x2c, 0x2c, 0xe2, 0xb1, 0x17, 0x06, 0x21, 0xa4, 0x86, 0x37, 0x1e, 0x40, 0x3c, - 0xa1, 0xfb, 0x53, 0x55, 0xb7, 0x7e, 0xda, 0x19, 0xc7, 0x5e, 0x2c, 0x27, 0x79, 0x4a, 0xfa, 0xfc, - 0xdd, 0xba, 0xe7, 0xdc, 0x9f, 0x73, 0xcf, 0xbd, 0xe7, 0x18, 0x26, 0xc8, 0x36, 0x31, 0x3d, 0x77, - 0xde, 0x76, 0x2c, 0xcf, 0x42, 0x45, 0xfe, 0x6b, 0x6e, 0x76, 0xd3, 0xda, 0xb4, 0x18, 0xe8, 0x2a, - 0xfd, 0x1f, 0xc7, 0xce, 0x55, 0x37, 0x2d, 0x6b, 0xb3, 0x4b, 0xae, 0xb2, 0x5f, 0x1b, 0xfd, 0x07, - 0x57, 0x3d, 0xa3, 0x47, 0x5c, 0x4f, 0xeb, 0xd9, 0x82, 0xe0, 0x4c, 0x9c, 0xc0, 0xf5, 0x9c, 0x7e, - 0xc7, 0xe3, 0x58, 0xf5, 0xbb, 0x39, 0x28, 0xdf, 0x25, 0x9e, 0xa6, 0x6b, 0x9e, 0x86, 0xce, 0x40, - 0xa1, 0x69, 0xea, 0xe4, 0xb1, 0x92, 0x3d, 0x9f, 0xbd, 0x94, 0x5f, 0x2c, 0x0e, 0x07, 0xd5, 0x1c, - 0x31, 0x30, 0x07, 0xa2, 0xb3, 0x30, 0xb6, 0xbe, 0x63, 0x13, 0x25, 0x77, 0x3e, 0x7b, 0x69, 0x7c, - 0x71, 0x7c, 0x38, 0xa8, 0x16, 0xd8, 0x97, 0x61, 0x06, 0x46, 0xaf, 0x42, 0xae, 0xd9, 0x50, 0xf2, - 0x0c, 0x39, 0x33, 0x1c, 0x54, 0x27, 0xfb, 0x86, 0x7e, 0xc5, 0xea, 0x19, 0x1e, 0xe9, 0xd9, 0xde, - 0x0e, 0xce, 0x35, 0x1b, 0xe8, 0x22, 0x8c, 0xd5, 0x2d, 0x9d, 0x28, 0x63, 0x8c, 0x08, 0x0d, 0x07, - 0xd5, 0xa9, 0x8e, 0xa5, 0x13, 0x89, 0x8a, 0xe1, 0xd1, 0x6d, 0x18, 0x5b, 0x37, 0x7a, 0x44, 0x29, - 0x9c, 0xcf, 0x5e, 0xaa, 0x5c, 0x9f, 0x9b, 0xe7, 0x3d, 0x98, 0xf7, 0x7b, 0x30, 0xbf, 0xee, 0x77, - 0x71, 0x71, 0xfa, 0xc9, 0xa0, 0x9a, 0x19, 0x0e, 0xaa, 0x63, 0xb4, 0xd7, 0xbf, 0xf2, 0x93, 0x6a, - 0x16, 0x33, 0x4e, 0xf4, 0x36, 0x54, 0xea, 0xdd, 0xbe, 0xeb, 0x11, 0xe7, 0x9e, 0xd6, 0x23, 0x4a, - 0x91, 0x35, 0x38, 0x37, 0x1c, 0x54, 0x4f, 0x76, 0x38, 0xb8, 0x6d, 0x6a, 0x3d, 0xb9, 0x61, 0x99, - 0x5c, 0xfd, 0x26, 0x1c, 0x5b, 0x23, 0xae, 0x6b, 0x58, 0x66, 0xa0, 0x9a, 0xcf, 0xc2, 0xb8, 0x00, - 0x35, 0x1b, 0x4c, 0x3d, 0xe3, 0x8b, 0xa5, 0xe1, 0xa0, 0x9a, 0x77, 0x0d, 0x1d, 0x87, 0x18, 0xf4, - 0x05, 0x28, 0x7d, 0x60, 0x78, 0x5b, 0x77, 0xef, 0xd4, 0x84, 0x9a, 0x4e, 0x0e, 0x07, 0x55, 0xf4, - 0xc8, 0xf0, 0xb6, 0xda, 0xbd, 0x07, 0x9a, 0xd4, 0x9e, 0x4f, 0xa6, 0xfe, 0x76, 0x0e, 0x26, 0xee, - 0xbb, 0xc4, 0x09, 0x5a, 0xba, 0x08, 0x63, 0xf4, 0xb7, 0x68, 0x84, 0x29, 0xa9, 0xef, 0x12, 0x47, - 0x56, 0x12, 0xc5, 0xa3, 0xcb, 0x50, 0x58, 0xb1, 0x36, 0x0d, 0x53, 0x34, 0x74, 0x7c, 0x38, 0xa8, - 0x1e, 0xeb, 0x52, 0x80, 0x44, 0xc9, 0x29, 0xd0, 0x57, 0x60, 0xa2, 0xd9, 0xb3, 0x89, 0xe3, 0x5a, - 0xa6, 0xe6, 0x59, 0x8e, 0x30, 0x12, 0x53, 0x87, 0x21, 0xc1, 0x25, 0xc6, 0x08, 0x3d, 0x7a, 0x0b, - 0xa0, 0xf6, 0xc1, 0x1a, 0xb6, 0xba, 0xa4, 0x86, 0xef, 0x09, 0xeb, 0x31, 0x6e, 0xed, 0x91, 0xdb, - 0x76, 0xac, 0x2e, 0x69, 0x6b, 0x8e, 0xdc, 0xac, 0x44, 0x8d, 0x96, 0x60, 0xaa, 0xd6, 0xe9, 0x10, - 0xd7, 0xc5, 0xe4, 0x5b, 0x7d, 0xe2, 0x7a, 0xae, 0x52, 0x38, 0x9f, 0xbf, 0x34, 0xbe, 0x78, 0x76, - 0x38, 0xa8, 0x9e, 0xd6, 0x18, 0xa6, 0xed, 0x08, 0x94, 0x24, 0x22, 0xc6, 0xa4, 0xfe, 0x41, 0x1e, - 0xa6, 0xd6, 0x88, 0xb3, 0x2d, 0x29, 0xaa, 0x46, 0xad, 0x44, 0x21, 0xd4, 0x66, 0xae, 0xad, 0x75, - 0x88, 0xd0, 0xd9, 0xa9, 0xe1, 0xa0, 0x7a, 0xdc, 0xf4, 0x81, 0x92, 0xd0, 0x38, 0x3d, 0xba, 0x0c, - 0x65, 0x0e, 0x6a, 0x36, 0x84, 0x1a, 0x27, 0x87, 0x83, 0xea, 0xb8, 0xcb, 0x60, 0x6d, 0x43, 0xc7, - 0x01, 0x9a, 0xf6, 0x83, 0xff, 0x7f, 0xd9, 0x72, 0x3d, 0x2a, 0x5c, 0x68, 0x91, 0xf5, 0x43, 0x30, - 0x6c, 0x09, 0x94, 0xdc, 0x8f, 0x28, 0x13, 0xfa, 0x12, 0x00, 0x87, 0xd4, 0x74, 0xdd, 0x11, 0xaa, - 0x3c, 0x3d, 0x1c, 0x54, 0x4f, 0x08, 0x11, 0x9a, 0xae, 0xcb, 0x76, 0x90, 0x88, 0x51, 0x0f, 0x26, - 0xf8, 0xaf, 0x15, 0x6d, 0x83, 0x74, 0xb9, 0x1e, 0x2b, 0xd7, 0x2f, 0xcd, 0x8b, 0xc5, 0x22, 0xaa, - 0x9d, 0x79, 0x99, 0x74, 0xc9, 0xf4, 0x9c, 0x9d, 0xc5, 0xaa, 0x98, 0x2b, 0xa7, 0x44, 0x53, 0x5d, - 0x86, 0x93, 0x8d, 0x2e, 0xf3, 0xcc, 0xdd, 0x82, 0x99, 0x84, 0x0c, 0x34, 0x0d, 0xf9, 0x87, 0x64, - 0x87, 0xeb, 0x19, 0xd3, 0xff, 0xa2, 0x59, 0x28, 0x6c, 0x6b, 0xdd, 0xbe, 0x58, 0x16, 0x30, 0xff, - 0xf1, 0x56, 0xee, 0x8b, 0x59, 0xf5, 0x8f, 0xb3, 0x80, 0xea, 0x96, 0x69, 0x92, 0x8e, 0x27, 0xcf, - 0xa4, 0x37, 0x61, 0x7c, 0xc5, 0xea, 0x68, 0x5d, 0xa6, 0x00, 0x6e, 0x30, 0x65, 0x38, 0xa8, 0xce, - 0xd2, 0x9e, 0xcf, 0x77, 0x29, 0x46, 0xfa, 0xa4, 0x90, 0x94, 0x6a, 0x0e, 0x93, 0x9e, 0xe5, 0x11, - 0xc6, 0x98, 0x0b, 0x35, 0xc7, 0x18, 0x1d, 0x86, 0x92, 0x35, 0x17, 0x12, 0xa3, 0xab, 0x50, 0x6e, - 0xd1, 0xb5, 0xa3, 0x63, 0x75, 0x85, 0xd5, 0xd8, 0x6c, 0x61, 0xeb, 0x89, 0xc4, 0x12, 0x10, 0xa9, - 0x3f, 0x9b, 0x83, 0xd3, 0x5f, 0xeb, 0x6f, 0x10, 0xc7, 0x24, 0x1e, 0x71, 0xc5, 0xd2, 0x10, 0xf4, - 0xe0, 0x1e, 0xcc, 0x24, 0x90, 0xa2, 0x27, 0xe7, 0x87, 0x83, 0xea, 0x99, 0x87, 0x01, 0xb2, 0x2d, - 0x56, 0x1b, 0xa9, 0x91, 0x24, 0x2b, 0x5a, 0x86, 0x63, 0x21, 0x90, 0xce, 0x6d, 0x57, 0xc9, 0xb1, - 0x39, 0x72, 0x6e, 0x38, 0xa8, 0xce, 0x49, 0xd2, 0xe8, 0x3a, 0x20, 0x1b, 0x2c, 0xce, 0x86, 0xbe, - 0x06, 0xd3, 0x21, 0xe8, 0x5d, 0xc7, 0xea, 0xdb, 0xae, 0x92, 0x67, 0xa2, 0xaa, 0xc3, 0x41, 0xf5, - 0x15, 0x49, 0xd4, 0x26, 0x43, 0x4a, 0xb2, 0x12, 0x8c, 0xea, 0xbf, 0xe6, 0xe1, 0x44, 0x08, 0x6c, - 0x59, 0x7a, 0xa0, 0x80, 0x55, 0x59, 0x01, 0x2d, 0x4b, 0x67, 0x6b, 0x2c, 0x57, 0xc0, 0xab, 0xc3, - 0x41, 0xf5, 0xac, 0xd4, 0x8e, 0x6d, 0xe9, 0xf1, 0xa5, 0x36, 0xc9, 0x8b, 0x3e, 0x84, 0x93, 0x09, - 0x20, 0x9f, 0xd1, 0xdc, 0xce, 0x17, 0x87, 0x83, 0xaa, 0x9a, 0x22, 0x35, 0x3e, 0xc1, 0x47, 0x48, - 0x41, 0x1a, 0x9c, 0x92, 0xd4, 0x6e, 0x99, 0x9e, 0x66, 0x98, 0x62, 0x6b, 0xe0, 0xe3, 0xe1, 0xb5, - 0xe1, 0xa0, 0x7a, 0x41, 0xb6, 0x9b, 0x4f, 0x13, 0xff, 0xf8, 0x51, 0x72, 0x90, 0x0e, 0x4a, 0x0a, - 0xaa, 0xd9, 0xd3, 0x36, 0xfd, 0xfd, 0xee, 0xd2, 0x70, 0x50, 0xfd, 0x4c, 0x6a, 0x1b, 0x06, 0xa5, - 0x92, 0x1a, 0x19, 0x29, 0x09, 0x61, 0x40, 0x21, 0xee, 0x9e, 0xa5, 0x13, 0xd6, 0x87, 0x02, 0x93, - 0xaf, 0x0e, 0x07, 0xd5, 0x73, 0x92, 0x7c, 0xd3, 0xd2, 0x49, 0xfc, 0xf3, 0x53, 0xb8, 0xd5, 0x9f, - 0x14, 0xe8, 0xc2, 0xc2, 0x76, 0xb0, 0x35, 0x4f, 0x73, 0x3c, 0xf4, 0x56, 0xe8, 0x12, 0x30, 0xab, - 0x56, 0xae, 0x4f, 0xfb, 0x8b, 0x8c, 0x0f, 0x5f, 0x9c, 0xa0, 0x8b, 0xc9, 0x8f, 0x06, 0xd5, 0xec, - 0x70, 0x50, 0xcd, 0xe0, 0xb2, 0x34, 0xbb, 0xf9, 0xee, 0x95, 0x63, 0x7c, 0xb3, 0x3e, 0x9f, 0xbc, - 0xc3, 0xc5, 0x78, 0xf9, 0x6e, 0x76, 0x0b, 0x4a, 0xe2, 0x1b, 0x98, 0x45, 0x2a, 0xd7, 0x4f, 0x85, - 0xeb, 0x5a, 0x64, 0x27, 0x8e, 0x71, 0xfb, 0x5c, 0xe8, 0x6d, 0x28, 0xf2, 0xe5, 0x8a, 0x69, 0xbb, - 0x72, 0xfd, 0x64, 0xfa, 0xba, 0x18, 0x63, 0x17, 0x3c, 0x68, 0x19, 0x20, 0x5c, 0xaa, 0x02, 0xbf, - 0x43, 0x48, 0x48, 0x2e, 0x62, 0x31, 0x29, 0x12, 0x2f, 0x7a, 0x13, 0x26, 0xd6, 0x89, 0xd3, 0x33, - 0x4c, 0xad, 0xbb, 0x66, 0x7c, 0xe4, 0xbb, 0x1e, 0x6c, 0x1b, 0x77, 0x8d, 0x8f, 0x64, 0x5b, 0x44, - 0xe8, 0xd0, 0x37, 0xd2, 0x16, 0x95, 0x12, 0xfb, 0x90, 0x57, 0xfd, 0x0f, 0x19, 0xb9, 0x24, 0xc5, - 0xbe, 0x27, 0x65, 0x8d, 0x79, 0x0f, 0x26, 0x23, 0x73, 0x43, 0x29, 0x33, 0xd1, 0x67, 0x93, 0xa2, - 0xa5, 0x89, 0x1e, 0x13, 0x1b, 0x95, 0x40, 0x77, 0xc4, 0xa6, 0x69, 0x78, 0x86, 0xd6, 0xad, 0x5b, - 0xbd, 0x9e, 0x66, 0xea, 0xca, 0x78, 0xb8, 0xb3, 0x1b, 0x1c, 0xd3, 0xee, 0x70, 0x94, 0xbc, 0x23, - 0x46, 0x99, 0xe8, 0x9a, 0x25, 0x6c, 0x88, 0x49, 0xc7, 0x72, 0x74, 0xc3, 0xdc, 0x54, 0x80, 0x29, - 0x8d, 0xad, 0x59, 0x2e, 0xc7, 0xb5, 0x1d, 0x1f, 0x29, 0xaf, 0x59, 0x71, 0xc6, 0xaf, 0x8e, 0x95, - 0x2b, 0xd3, 0x13, 0x09, 0xe7, 0xe1, 0x77, 0xf3, 0x50, 0x11, 0xa4, 0x5f, 0xb5, 0x0c, 0xf3, 0xe5, - 0x00, 0xdf, 0xcf, 0x00, 0x4f, 0x1d, 0xa8, 0xc5, 0x83, 0x1a, 0xa8, 0xea, 0x77, 0x72, 0xc1, 0x6a, - 0xd4, 0x72, 0x0c, 0x73, 0x7f, 0xab, 0xd1, 0x45, 0x80, 0xfa, 0x56, 0xdf, 0x7c, 0xc8, 0x4f, 0x35, - 0xb9, 0xf0, 0x54, 0xd3, 0x31, 0xb0, 0x84, 0xa1, 0x47, 0x9b, 0x06, 0x95, 0x4f, 0x2d, 0x33, 0xb1, - 0x38, 0xfe, 0x84, 0x4b, 0xca, 0xbe, 0x8e, 0x19, 0x18, 0x55, 0xa1, 0xb0, 0xb8, 0xe3, 0x11, 0x97, - 0x69, 0x3e, 0xcf, 0x8f, 0x3e, 0x1b, 0x14, 0x80, 0x39, 0x1c, 0x2d, 0xc0, 0x4c, 0x83, 0x74, 0xb5, - 0x9d, 0xbb, 0x46, 0xb7, 0x6b, 0xb8, 0xa4, 0x63, 0x99, 0xba, 0xcb, 0x94, 0x2c, 0x9a, 0xeb, 0xb9, - 0x38, 0x49, 0x80, 0x54, 0x28, 0xae, 0x3e, 0x78, 0xe0, 0x12, 0x8f, 0xa9, 0x2f, 0xbf, 0x08, 0xc3, - 0x41, 0xb5, 0x68, 0x31, 0x08, 0x16, 0x18, 0xf5, 0xef, 0x73, 0x30, 0x19, 0x8c, 0xf2, 0x6f, 0x92, - 0xce, 0xe1, 0xac, 0xce, 0xe1, 0xd8, 0xcb, 0xef, 0x7b, 0xec, 0x8d, 0xed, 0x63, 0xec, 0xa9, 0x50, - 0xc4, 0x44, 0x73, 0xc5, 0x08, 0x1e, 0xe7, 0x1a, 0x73, 0x18, 0x04, 0x0b, 0x0c, 0x7a, 0x15, 0x4a, - 0x77, 0xb5, 0xc7, 0x46, 0xaf, 0xdf, 0x13, 0x6a, 0x65, 0xe7, 0xb4, 0x9e, 0xf6, 0x18, 0xfb, 0x70, - 0xf5, 0x1f, 0xb2, 0xd4, 0x99, 0x67, 0x4a, 0x15, 0xc2, 0xf7, 0xa5, 0xd5, 0x50, 0x3b, 0xb9, 0x7d, - 0x6b, 0x27, 0xff, 0xec, 0xda, 0x51, 0xbf, 0x3f, 0x46, 0xd5, 0x43, 0x77, 0x99, 0xa3, 0xb9, 0xc2, - 0x1d, 0xdc, 0x38, 0x09, 0x2d, 0x52, 0x78, 0x06, 0x8b, 0xbc, 0x30, 0x5b, 0xb8, 0xfa, 0x5f, 0x25, - 0x7a, 0x1c, 0x65, 0xda, 0x5f, 0x32, 0xf5, 0x97, 0xa3, 0x66, 0x3f, 0xa3, 0xa6, 0x01, 0x33, 0x4b, - 0xe6, 0x96, 0x66, 0x76, 0x88, 0x1e, 0x3a, 0x32, 0x74, 0xe8, 0x94, 0x79, 0x10, 0x88, 0x08, 0x64, - 0xe8, 0xc9, 0xe0, 0x24, 0x03, 0xba, 0x06, 0x95, 0xa6, 0xe9, 0x11, 0x47, 0xeb, 0x78, 0xc6, 0x36, - 0x61, 0xa3, 0xa7, 0xbc, 0x78, 0x6c, 0x38, 0xa8, 0x56, 0x8c, 0x10, 0x8c, 0x65, 0x1a, 0xb4, 0x00, - 0x13, 0x2d, 0xcd, 0xf1, 0x8c, 0x8e, 0x61, 0x6b, 0xa6, 0xe7, 0x2a, 0x65, 0xe6, 0x85, 0x4d, 0x0f, - 0x07, 0xd5, 0x09, 0x5b, 0x82, 0xe3, 0x08, 0x15, 0xfa, 0x06, 0x8c, 0x33, 0x6f, 0x9f, 0x05, 0xda, - 0xc6, 0x9f, 0x1a, 0x68, 0xbb, 0x10, 0x06, 0x0f, 0xb8, 0x3f, 0xe6, 0x52, 0xe6, 0x70, 0x2a, 0xb0, - 0xd8, 0x5b, 0x28, 0x11, 0x7d, 0x1d, 0x4a, 0x4b, 0xa6, 0xce, 0x84, 0xc3, 0x53, 0x85, 0xab, 0x42, - 0xf8, 0xc9, 0x50, 0xb8, 0x65, 0xc7, 0x64, 0xfb, 0xe2, 0xd2, 0x67, 0x59, 0xe5, 0xa7, 0x37, 0xcb, - 0x26, 0x7e, 0x0a, 0x8e, 0xf2, 0xe4, 0x41, 0x39, 0xca, 0x53, 0xcf, 0xe8, 0x28, 0xab, 0x1f, 0x41, - 0x65, 0xb1, 0x75, 0x27, 0x98, 0xbd, 0xa7, 0x21, 0xdf, 0x12, 0x81, 0xcd, 0x31, 0xbe, 0x61, 0xda, - 0x86, 0x8e, 0x29, 0x0c, 0x5d, 0x86, 0x72, 0x9d, 0x45, 0x0b, 0x44, 0x8c, 0x6c, 0x8c, 0xc7, 0xc8, - 0x3a, 0x0c, 0xc6, 0x62, 0x64, 0x3e, 0x1a, 0x7d, 0x16, 0x4a, 0x2d, 0xc7, 0xda, 0x74, 0xb4, 0x9e, - 0x38, 0x56, 0x57, 0x86, 0x83, 0x6a, 0xc9, 0xe6, 0x20, 0xec, 0xe3, 0xd4, 0x5f, 0xcd, 0x42, 0x71, - 0xcd, 0xd3, 0xbc, 0xbe, 0x4b, 0x39, 0xd6, 0xfa, 0xcc, 0x59, 0x67, 0x6d, 0x97, 0x39, 0x87, 0xcb, - 0x41, 0xd8, 0xc7, 0xa1, 0xcb, 0x50, 0x58, 0x72, 0x1c, 0xcb, 0x91, 0x63, 0x9d, 0x84, 0x02, 0xe4, - 0x58, 0x27, 0xa3, 0x40, 0x37, 0xa1, 0xc2, 0xd7, 0x1c, 0xd7, 0xa5, 0x47, 0x6f, 0xfe, 0x1d, 0x27, - 0x86, 0x83, 0xea, 0x4c, 0x8f, 0x83, 0xe4, 0xa0, 0xaf, 0x44, 0xa9, 0x7e, 0x9c, 0x97, 0x9c, 0x02, - 0xae, 0xf1, 0x17, 0xf0, 0x9c, 0x70, 0x03, 0xf2, 0x8b, 0xad, 0x3b, 0x62, 0x01, 0x3c, 0xee, 0xb3, - 0x4a, 0x43, 0x25, 0xc6, 0x47, 0xa9, 0xd1, 0x19, 0x18, 0x6b, 0xd1, 0xe1, 0x53, 0x64, 0xc3, 0xa3, - 0x3c, 0x1c, 0x54, 0xc7, 0x6c, 0x3a, 0x7e, 0x18, 0x94, 0x61, 0x35, 0x6f, 0x8b, 0xad, 0x65, 0xe3, - 0x02, 0xab, 0x79, 0x5b, 0x98, 0x41, 0x29, 0xb6, 0xe6, 0x6c, 0x6e, 0x8b, 0x55, 0x8b, 0x61, 0x35, - 0x67, 0x73, 0x1b, 0x33, 0x28, 0xba, 0x0a, 0x80, 0x89, 0xd7, 0x77, 0x4c, 0x76, 0x6f, 0x40, 0x97, - 0xa9, 0x02, 0x5f, 0x0d, 0x1d, 0x06, 0x6d, 0x77, 0x2c, 0x9d, 0x60, 0x89, 0x44, 0xfd, 0x9d, 0xf0, - 0xa8, 0xd7, 0x30, 0xdc, 0x87, 0x2f, 0x4d, 0xb8, 0x07, 0x13, 0x52, 0x23, 0x15, 0x53, 0x8d, 0x54, - 0x85, 0xc2, 0x9d, 0xae, 0xb6, 0xe9, 0x32, 0x1b, 0x16, 0xf8, 0x01, 0xe8, 0x01, 0x05, 0x60, 0x0e, - 0x8f, 0xd9, 0xa9, 0xfc, 0x74, 0x3b, 0xfd, 0x5a, 0x21, 0x98, 0x6d, 0xf7, 0x88, 0xf7, 0xc8, 0x72, - 0x5e, 0x9a, 0xea, 0xd3, 0x9a, 0xea, 0x22, 0x94, 0xd6, 0x9c, 0x0e, 0x8b, 0x82, 0x73, 0x6b, 0x4d, - 0x0c, 0x07, 0xd5, 0xb2, 0xeb, 0x74, 0xd8, 0xe5, 0x01, 0xf6, 0x91, 0x94, 0xae, 0xe1, 0x7a, 0x8c, - 0xae, 0x14, 0xd2, 0xe9, 0xae, 0x27, 0xe8, 0x04, 0x52, 0xd0, 0xb5, 0x2c, 0xc7, 0x13, 0x86, 0x0b, - 0xe8, 0x6c, 0xcb, 0xf1, 0xb0, 0x8f, 0x44, 0x9f, 0x07, 0x58, 0xaf, 0xb7, 0xde, 0x27, 0x0e, 0x53, - 0x17, 0x9f, 0x8b, 0x6c, 0xb9, 0xde, 0xe6, 0x20, 0x2c, 0xa1, 0xd1, 0x3a, 0x8c, 0xaf, 0xda, 0xc4, - 0xd1, 0x98, 0x53, 0x46, 0x3d, 0x80, 0xa9, 0xeb, 0xaf, 0xc5, 0x54, 0x2b, 0xec, 0x3e, 0x2f, 0xfe, - 0x0d, 0xc8, 0xf9, 0xfe, 0x62, 0xf9, 0x3f, 0x71, 0x28, 0x08, 0xdd, 0x84, 0x62, 0x8d, 0xfb, 0x79, - 0x15, 0x26, 0x32, 0x50, 0xd9, 0x12, 0xfd, 0x87, 0xa3, 0xf8, 0xa1, 0x50, 0x63, 0xff, 0xc7, 0x82, - 0x5c, 0xbd, 0x0c, 0xd3, 0xf1, 0x66, 0x50, 0x05, 0x4a, 0xf5, 0xd5, 0x7b, 0xf7, 0x96, 0xea, 0xeb, - 0xd3, 0x19, 0x54, 0x86, 0xb1, 0xb5, 0xa5, 0x7b, 0x8d, 0xe9, 0xac, 0xfa, 0x7b, 0xd2, 0x0a, 0x42, - 0x87, 0xd6, 0xcb, 0x60, 0xd1, 0x3e, 0x5c, 0xea, 0xeb, 0x30, 0xcd, 0x22, 0x24, 0xeb, 0x8e, 0x66, - 0xba, 0x3d, 0xc3, 0xf3, 0x88, 0x2e, 0x76, 0x09, 0x16, 0x17, 0xf1, 0x1e, 0xe3, 0x04, 0x1e, 0x5d, - 0x81, 0x49, 0x06, 0xc3, 0xa4, 0x43, 0x8c, 0x6d, 0xa2, 0xb3, 0xd1, 0x2b, 0x18, 0x9c, 0xc7, 0x38, - 0x8a, 0x54, 0xff, 0x3a, 0x8c, 0x17, 0xad, 0x10, 0x6d, 0x9b, 0xbc, 0xb4, 0xd7, 0x3e, 0xec, 0xa5, - 0xfe, 0x56, 0x1e, 0xc6, 0x69, 0x8f, 0xf8, 0xbd, 0xf1, 0x61, 0xa8, 0x72, 0xc1, 0xf7, 0x0d, 0x85, - 0x26, 0xa7, 0x02, 0x4d, 0x30, 0x68, 0x42, 0x03, 0xdc, 0x8f, 0xbc, 0x02, 0xc5, 0xbb, 0xc4, 0xdb, - 0xb2, 0x74, 0x71, 0xd7, 0x32, 0x3b, 0x1c, 0x54, 0xa7, 0x7b, 0x0c, 0x22, 0xf9, 0x7b, 0x82, 0x06, - 0x3d, 0x04, 0xd4, 0xd4, 0x89, 0xe9, 0x19, 0xde, 0x4e, 0xcd, 0xf3, 0x1c, 0x63, 0xa3, 0xef, 0x11, - 0x57, 0xe8, 0xed, 0x54, 0xe2, 0x9c, 0xb2, 0xc6, 0xde, 0x4b, 0xb0, 0xeb, 0x95, 0x59, 0x2d, 0x20, - 0x0f, 0xc5, 0xfe, 0xcf, 0xa0, 0x5a, 0xe4, 0x34, 0x38, 0x45, 0x2c, 0x7a, 0x0f, 0xc6, 0xef, 0xde, - 0xa9, 0x35, 0xc8, 0xb6, 0xd1, 0x21, 0x22, 0x4e, 0x7a, 0x3a, 0xd0, 0xa2, 0x8f, 0x08, 0x54, 0xc2, - 0xae, 0x42, 0x7b, 0x0f, 0xb4, 0xb6, 0xce, 0xe0, 0xf2, 0x55, 0x68, 0x40, 0xac, 0xfe, 0x47, 0x16, - 0xa6, 0x31, 0x71, 0xad, 0xbe, 0x13, 0x72, 0xa2, 0x8b, 0x30, 0x26, 0xdd, 0xc3, 0xb1, 0x68, 0x45, - 0xec, 0xf2, 0x87, 0xe1, 0xd1, 0x1a, 0x94, 0x96, 0x1e, 0xdb, 0x86, 0x43, 0x5c, 0x61, 0x9b, 0xdd, - 0x4e, 0x66, 0x67, 0xc5, 0xc9, 0x6c, 0x86, 0x70, 0x96, 0xc4, 0xa1, 0x8c, 0x83, 0xd1, 0x9b, 0x30, - 0x7e, 0xdf, 0xd6, 0x35, 0x8f, 0xe8, 0x8b, 0x3b, 0xc2, 0xe7, 0x66, 0x3d, 0xe9, 0x73, 0x60, 0x7b, - 0x63, 0x47, 0xee, 0x49, 0x40, 0x8a, 0x2e, 0x40, 0x7e, 0x7d, 0x7d, 0x45, 0x18, 0x8d, 0xbd, 0x1a, - 0xf1, 0x3c, 0xf9, 0xfe, 0x97, 0x62, 0xd5, 0xef, 0xe6, 0x00, 0xe8, 0xd8, 0xa8, 0x3b, 0x44, 0xf3, - 0x0e, 0x67, 0x82, 0x2f, 0x42, 0xd9, 0x57, 0xb8, 0x18, 0x97, 0x8a, 0xcf, 0x1b, 0x37, 0x44, 0xbc, - 0x6d, 0x1f, 0x4f, 0x9d, 0x28, 0x6c, 0x75, 0x59, 0x14, 0x39, 0xef, 0x3f, 0xa0, 0x71, 0x28, 0x00, - 0x73, 0x38, 0xfa, 0x3c, 0x8c, 0x8b, 0xa9, 0x68, 0x39, 0x22, 0xc0, 0xc9, 0x8f, 0x5a, 0x3e, 0x10, - 0x87, 0x78, 0xf5, 0xcf, 0xb3, 0x5c, 0x29, 0x0d, 0xd2, 0x25, 0x47, 0x57, 0x29, 0xea, 0x2f, 0x66, - 0x01, 0x51, 0x61, 0x2d, 0xcd, 0x75, 0x1f, 0x59, 0x8e, 0x5e, 0xdf, 0xd2, 0xcc, 0xcd, 0x43, 0xe9, - 0x8e, 0xfa, 0xed, 0x02, 0x1c, 0x8f, 0x5c, 0x1c, 0x1d, 0xf1, 0xf1, 0x76, 0x39, 0x3a, 0xde, 0xd8, - 0xa1, 0x99, 0x8d, 0x37, 0xf9, 0xd0, 0xcc, 0x47, 0xde, 0x67, 0x60, 0x5c, 0xf4, 0xb9, 0xd9, 0x10, - 0x23, 0x8f, 0x6d, 0xb7, 0x86, 0x8e, 0x43, 0x04, 0x7a, 0x1d, 0x26, 0xc4, 0x0f, 0xba, 0xea, 0xfa, - 0x71, 0x51, 0x36, 0x8e, 0x5d, 0x0a, 0xc0, 0x11, 0x34, 0x7a, 0x03, 0xc6, 0xe9, 0xe0, 0xdc, 0x64, - 0x4f, 0x8e, 0x4a, 0xe1, 0xcb, 0x1c, 0xdd, 0x07, 0xca, 0x4b, 0x42, 0x40, 0x49, 0x97, 0x72, 0x11, - 0xe3, 0x2f, 0x87, 0x4b, 0x39, 0x8f, 0xf1, 0xcb, 0x4b, 0xb9, 0x88, 0xf6, 0x7f, 0x08, 0x95, 0x9a, - 0x69, 0x5a, 0x1e, 0x73, 0xe9, 0x5c, 0x11, 0xc8, 0x1a, 0xb9, 0x86, 0x5f, 0x60, 0xef, 0x45, 0x42, - 0xfa, 0xd4, 0x45, 0x5c, 0x16, 0x88, 0xae, 0x53, 0x43, 0x6c, 0x1b, 0xe4, 0x11, 0x71, 0xc4, 0xad, - 0x24, 0x0b, 0xe6, 0x39, 0x02, 0x26, 0xbf, 0x1e, 0xf1, 0xe9, 0xd0, 0x22, 0x4c, 0xb6, 0x1c, 0xcb, - 0xb6, 0x5c, 0xa2, 0x73, 0x45, 0x55, 0x18, 0xe3, 0x99, 0xe1, 0xa0, 0xaa, 0xd8, 0x02, 0xd1, 0x66, - 0x1a, 0x93, 0xd8, 0xa3, 0x2c, 0xea, 0xf7, 0xb3, 0xb1, 0xc1, 0x78, 0x88, 0xf3, 0x3c, 0x32, 0x3a, - 0xf2, 0x23, 0x46, 0x87, 0xfa, 0x1b, 0x39, 0xa8, 0xd0, 0x73, 0xc2, 0x1d, 0xcb, 0x79, 0xa4, 0x39, - 0x87, 0x13, 0x3c, 0x39, 0xb0, 0xbb, 0x14, 0xc9, 0x0d, 0x19, 0xdb, 0x83, 0x1b, 0x72, 0x06, 0xc6, - 0xd8, 0x79, 0xab, 0x10, 0x9e, 0xa2, 0xd9, 0x59, 0x8b, 0x41, 0xd5, 0xff, 0x9f, 0x03, 0xf8, 0xfa, - 0xb5, 0x6b, 0x2f, 0xb0, 0x82, 0xd4, 0x5f, 0xcf, 0xc2, 0x31, 0x11, 0x5d, 0x93, 0x9e, 0x56, 0x96, - 0xfc, 0xb8, 0x68, 0x36, 0x8c, 0x1a, 0x8a, 0x78, 0x28, 0xf6, 0x71, 0x74, 0x26, 0x2e, 0x3d, 0x36, - 0x3c, 0x16, 0x60, 0x90, 0xde, 0x56, 0x12, 0x01, 0x93, 0x67, 0xa2, 0x4f, 0x87, 0x5e, 0xf7, 0xe3, - 0x86, 0xf9, 0x70, 0xf9, 0xa1, 0x0c, 0x4b, 0xa9, 0xb1, 0x43, 0xf5, 0x07, 0x63, 0x30, 0xb6, 0xf4, - 0x98, 0x74, 0x8e, 0xb8, 0x69, 0xa4, 0xd3, 0xc8, 0xd8, 0x3e, 0x4f, 0x23, 0xcf, 0x72, 0x11, 0x72, - 0x2b, 0xb4, 0x67, 0x31, 0xda, 0x7c, 0xcc, 0xf2, 0xf1, 0xe6, 0x7d, 0x4b, 0x1f, 0xbd, 0x7b, 0xb4, - 0xbf, 0xc8, 0x43, 0x7e, 0xad, 0xde, 0x7a, 0x39, 0x6e, 0x0e, 0x75, 0xdc, 0xec, 0x1e, 0x68, 0x56, - 0x83, 0xd8, 0x51, 0x39, 0x7c, 0x3b, 0x10, 0x0b, 0x13, 0x7d, 0x27, 0x07, 0xe3, 0x6b, 0xfd, 0x0d, - 0x77, 0xc7, 0xf5, 0x48, 0xef, 0x88, 0x5b, 0xf3, 0x8c, 0x38, 0x0f, 0x8e, 0x85, 0xda, 0xa0, 0xe7, - 0x41, 0x71, 0x0a, 0xbc, 0xe0, 0xaf, 0x8c, 0xd2, 0x39, 0x23, 0x58, 0x19, 0xfd, 0xf5, 0xf0, 0x0f, - 0x73, 0x30, 0x5d, 0xef, 0x1a, 0xc4, 0xf4, 0x1a, 0x86, 0xdb, 0x39, 0x80, 0x97, 0x12, 0x87, 0xaf, - 0x95, 0xfd, 0x05, 0x5a, 0x3e, 0xc5, 0xfb, 0x13, 0xf5, 0x67, 0x72, 0x50, 0xa9, 0xf5, 0xbd, 0xad, - 0x9a, 0xc7, 0x36, 0x97, 0x17, 0x72, 0x9b, 0xff, 0xab, 0x2c, 0x1c, 0xa3, 0x1f, 0xb2, 0x6e, 0x3d, - 0x24, 0xe6, 0x01, 0x1c, 0xa3, 0xe4, 0xe3, 0x50, 0xee, 0x19, 0x8f, 0x43, 0xbe, 0x2e, 0xf3, 0x7b, - 0x3c, 0x16, 0xd2, 0x83, 0x36, 0x3d, 0x25, 0x3d, 0x27, 0xdd, 0x38, 0x80, 0x73, 0xc4, 0x61, 0x76, - 0xe3, 0x6f, 0xb2, 0x30, 0xbb, 0xee, 0xd0, 0x8d, 0x5c, 0x17, 0xfb, 0xf9, 0x11, 0xb7, 0x4b, 0xb2, - 0x43, 0x47, 0xdc, 0x42, 0x3f, 0xce, 0xc2, 0xe9, 0x68, 0x87, 0x9e, 0x87, 0x55, 0xe0, 0x6f, 0xb3, - 0x70, 0xe2, 0x5d, 0xc3, 0xdb, 0xea, 0x6f, 0x04, 0x21, 0xb8, 0xe7, 0xaf, 0x47, 0x47, 0x7c, 0xe4, - 0xfd, 0x30, 0x0b, 0xc7, 0x57, 0x9b, 0x8d, 0xfa, 0xf3, 0x62, 0xa1, 0x44, 0x7f, 0x9e, 0x03, 0xfb, - 0xac, 0xd5, 0xee, 0xae, 0x3c, 0x4f, 0xf6, 0x89, 0xf4, 0xe7, 0x88, 0xdb, 0xe7, 0xe7, 0x8a, 0x50, - 0xa1, 0xe7, 0x5a, 0x11, 0xd3, 0x7b, 0xa1, 0x3d, 0xfd, 0xeb, 0x50, 0x11, 0x6a, 0x60, 0x47, 0x4a, - 0xee, 0xee, 0xb3, 0x37, 0x95, 0x22, 0x59, 0xb5, 0xcd, 0x8e, 0x96, 0x32, 0x11, 0x3d, 0x71, 0xbd, - 0x4f, 0x9c, 0x0d, 0xf9, 0x0d, 0xcd, 0x36, 0x71, 0x36, 0x30, 0x83, 0xa2, 0x95, 0xf0, 0xce, 0xae, - 0xd6, 0x6a, 0xb2, 0x1c, 0x3b, 0x71, 0x52, 0x65, 0x49, 0x83, 0x8e, 0xc0, 0xb5, 0x35, 0xdb, 0xe0, - 0xd9, 0x79, 0xf2, 0xfb, 0xbd, 0x38, 0x27, 0xba, 0x07, 0x33, 0x3e, 0x2c, 0x4c, 0x96, 0x2b, 0xa7, - 0x88, 0x4b, 0x4b, 0x93, 0x4b, 0xb2, 0xa2, 0x5b, 0x30, 0xe1, 0x03, 0xbf, 0x66, 0xb0, 0x54, 0x1e, - 0x2a, 0xea, 0x95, 0xe1, 0xa0, 0x7a, 0x2a, 0x10, 0xf5, 0xd0, 0x88, 0xbc, 0x4f, 0x8c, 0x30, 0xc8, - 0x02, 0xd8, 0xb1, 0x13, 0x52, 0x04, 0xc4, 0xee, 0x23, 0x23, 0x0c, 0xe8, 0x0d, 0x26, 0xc0, 0xb6, - 0x4c, 0x97, 0xb0, 0x18, 0x5f, 0x85, 0x3d, 0x30, 0x61, 0x77, 0x82, 0x8e, 0x80, 0xf3, 0x67, 0x44, - 0x11, 0x32, 0xb4, 0x0a, 0x10, 0xc6, 0x62, 0xc4, 0x63, 0xcd, 0x3d, 0x47, 0x89, 0x24, 0x11, 0xea, - 0xdf, 0xd1, 0xf3, 0x9b, 0x6d, 0x07, 0x23, 0xf9, 0x75, 0x28, 0xd6, 0x6c, 0xfb, 0x3e, 0x6e, 0x8a, - 0xe8, 0x24, 0x7b, 0x4b, 0xa8, 0xd9, 0x76, 0xbb, 0xef, 0x18, 0xf2, 0x85, 0x04, 0x27, 0x42, 0x75, - 0x98, 0xac, 0xd9, 0x76, 0xab, 0xbf, 0xd1, 0x35, 0x3a, 0x52, 0xa6, 0x2a, 0x4f, 0x77, 0xb6, 0xed, - 0xb6, 0xcd, 0x30, 0xf1, 0x3c, 0xdf, 0x28, 0x0f, 0xfa, 0x10, 0xc6, 0x6b, 0xb6, 0x2d, 0xf2, 0x7c, - 0xf3, 0x2c, 0xcf, 0x57, 0xf5, 0xfb, 0x24, 0x7d, 0xdb, 0x7c, 0x40, 0xc4, 0x33, 0x7c, 0xcf, 0x88, - 0xdb, 0xda, 0x59, 0xda, 0x50, 0x22, 0xbd, 0x37, 0x14, 0x89, 0xbe, 0x00, 0xa5, 0x9a, 0x6d, 0x4b, - 0xe1, 0x01, 0x16, 0x4a, 0xa5, 0x5c, 0x31, 0x13, 0xf9, 0x64, 0x73, 0x6f, 0xc3, 0x54, 0xb4, 0xb1, - 0x3d, 0xa5, 0x02, 0xff, 0x77, 0x96, 0x75, 0xe8, 0x88, 0x5f, 0xa8, 0xdd, 0x80, 0x7c, 0xcd, 0xb6, - 0xc5, 0x72, 0x72, 0x3c, 0xc5, 0x1e, 0xf1, 0xd7, 0x5a, 0x35, 0xdb, 0xf6, 0xbb, 0xce, 0xaf, 0xbc, - 0x5f, 0xac, 0xae, 0x7f, 0xcc, 0xbb, 0x7e, 0xc4, 0x6f, 0xa8, 0x7f, 0x90, 0x87, 0x63, 0x35, 0xdb, - 0x7e, 0x99, 0x21, 0x7b, 0x50, 0x6f, 0xc2, 0xae, 0x01, 0x48, 0xcb, 0x63, 0x29, 0x78, 0xfa, 0x51, - 0x91, 0x96, 0x46, 0x25, 0x8b, 0x25, 0x22, 0x7f, 0xf8, 0x95, 0xf7, 0x34, 0xfc, 0xfe, 0x2c, 0x62, - 0x38, 0x96, 0xed, 0xf7, 0xd2, 0x70, 0x85, 0x7d, 0x79, 0x54, 0x53, 0xb2, 0x32, 0xc5, 0x83, 0x6f, - 0x71, 0x43, 0xef, 0xa7, 0x1f, 0x74, 0x28, 0xaa, 0x6d, 0xe8, 0x38, 0x46, 0xeb, 0xdb, 0xb0, 0xb4, - 0x27, 0x1b, 0x7e, 0x2f, 0x07, 0x33, 0xa1, 0x0d, 0x0f, 0xc2, 0x31, 0xbd, 0x0a, 0xc0, 0x83, 0x94, - 0xc1, 0x45, 0xe2, 0x24, 0x7f, 0xa9, 0xec, 0x32, 0xa8, 0x78, 0xa9, 0x1c, 0x92, 0x04, 0xb7, 0x0a, - 0xf9, 0xd4, 0x5b, 0x85, 0xcb, 0x50, 0xc6, 0xda, 0xa3, 0xf7, 0xfa, 0xc4, 0xd9, 0x11, 0x5b, 0x29, - 0x0b, 0xa5, 0x3b, 0xda, 0xa3, 0xf6, 0xb7, 0x28, 0x10, 0x07, 0x68, 0xa4, 0x06, 0x6f, 0xd4, 0xa4, - 0xe0, 0x31, 0x7f, 0xa3, 0x16, 0xbc, 0x4c, 0x13, 0x4a, 0x2a, 0xee, 0x49, 0x49, 0x3f, 0x2e, 0xc2, - 0x74, 0x43, 0xf3, 0xb4, 0x0d, 0xcd, 0x25, 0xd2, 0x41, 0xe2, 0x98, 0x0f, 0xa3, 0x03, 0xc1, 0x08, - 0xaa, 0xa3, 0xb0, 0x77, 0x59, 0xfa, 0x46, 0xdb, 0xe5, 0x50, 0xb9, 0x9c, 0x44, 0x8c, 0x01, 0x7d, - 0x39, 0x94, 0x1b, 0xd4, 0xcf, 0xe0, 0xee, 0x0c, 0xd3, 0x98, 0xbe, 0xd1, 0xb6, 0x05, 0x18, 0x27, - 0x08, 0xd1, 0x15, 0xa8, 0xf8, 0x30, 0xea, 0x3c, 0xe5, 0xc3, 0x3e, 0xeb, 0x1b, 0xd4, 0x77, 0xc2, - 0x32, 0x1a, 0x7d, 0x09, 0x26, 0xfc, 0x9f, 0x92, 0x5b, 0xc2, 0x7c, 0x2d, 0x7d, 0x23, 0xe1, 0x38, - 0xca, 0xa4, 0x32, 0x2b, 0x9b, 0x9f, 0x85, 0x08, 0x6b, 0xac, 0x76, 0x4e, 0x84, 0x14, 0x7d, 0x0b, - 0xa6, 0xfc, 0xdf, 0xc2, 0xd9, 0x2a, 0x32, 0x67, 0xeb, 0x8a, 0xaf, 0xf9, 0xb8, 0x5a, 0xe7, 0xa3, - 0xe4, 0xdc, 0xed, 0x7a, 0x45, 0xb8, 0x5d, 0xc7, 0xf5, 0x8d, 0xa4, 0xd7, 0x15, 0x6b, 0x00, 0x35, - 0x61, 0xc6, 0x87, 0xd4, 0x3e, 0x58, 0xc3, 0x64, 0x93, 0xce, 0xca, 0x52, 0xe8, 0x2c, 0xeb, 0x1b, - 0x6d, 0x56, 0x55, 0x87, 0x21, 0x64, 0x9f, 0x3d, 0xc1, 0x85, 0xba, 0x70, 0x26, 0x02, 0xd4, 0xdd, - 0x2d, 0xe3, 0x81, 0x27, 0x3c, 0xdd, 0x66, 0x43, 0x1c, 0x07, 0x58, 0xd9, 0x89, 0x40, 0x2a, 0xa7, - 0xf1, 0xeb, 0x92, 0xb4, 0x23, 0x25, 0x9a, 0x76, 0x95, 0x86, 0xd6, 0x60, 0xd6, 0xc7, 0xbf, 0x5b, - 0x6f, 0xb5, 0x1c, 0xeb, 0x9b, 0xa4, 0xe3, 0x35, 0x1b, 0xe2, 0xa4, 0xc0, 0x52, 0x90, 0xf4, 0x8d, - 0xf6, 0x66, 0xc7, 0xa6, 0x83, 0x82, 0xe2, 0xa2, 0xc2, 0x53, 0x99, 0xd1, 0xfb, 0x70, 0x42, 0x82, - 0x37, 0x4d, 0xd7, 0xd3, 0xcc, 0x0e, 0x69, 0x36, 0xc4, 0xf1, 0x81, 0x1d, 0x65, 0x84, 0x54, 0x43, - 0x20, 0xa3, 0x62, 0xd3, 0xd9, 0xe7, 0x6a, 0x70, 0x3c, 0xc5, 0x52, 0x7b, 0xf2, 0x59, 0xbf, 0x93, - 0x0b, 0x07, 0xc7, 0x11, 0x77, 0x5c, 0x17, 0xa1, 0xec, 0xf7, 0x44, 0x6c, 0x21, 0xca, 0xa8, 0x01, - 0x1e, 0x97, 0xe1, 0xe3, 0x23, 0xea, 0x38, 0xe2, 0xce, 0xec, 0x41, 0xa8, 0xe3, 0x49, 0x36, 0x54, - 0xc7, 0x11, 0x77, 0x70, 0x7f, 0x98, 0x0f, 0x67, 0xf6, 0x4b, 0x2f, 0xf7, 0xa0, 0x9c, 0xa5, 0xf0, - 0xe2, 0xb4, 0xb8, 0x87, 0x07, 0x64, 0xf2, 0xd0, 0x2c, 0x3d, 0xe3, 0xd0, 0xfc, 0xc7, 0xa4, 0x3d, - 0xb9, 0x03, 0x72, 0x24, 0xed, 0x79, 0x00, 0x93, 0x15, 0x5d, 0x87, 0x49, 0xff, 0xff, 0xdc, 0x53, - 0x2b, 0x48, 0xf9, 0x50, 0x1b, 0xc2, 0x51, 0x8b, 0x92, 0xa0, 0xff, 0x07, 0xa7, 0x22, 0x80, 0x96, - 0xe6, 0x68, 0x3d, 0xe2, 0x11, 0x87, 0xfb, 0x08, 0xa2, 0xd2, 0x95, 0xcf, 0xdd, 0xb6, 0x03, 0xb4, - 0x5c, 0x2c, 0x6a, 0x84, 0x04, 0x69, 0x70, 0x94, 0xf6, 0x70, 0xab, 0xfe, 0x2f, 0x39, 0x98, 0x6c, - 0x59, 0xae, 0xb7, 0xe9, 0x10, 0xb7, 0xa5, 0x39, 0x2e, 0x79, 0x71, 0x2d, 0xfa, 0x45, 0x98, 0x64, - 0xef, 0x64, 0x7b, 0xc4, 0xf4, 0xa4, 0x12, 0x58, 0xbc, 0x46, 0x83, 0x8f, 0x60, 0x6e, 0x23, 0x8e, - 0x12, 0xa2, 0x2a, 0x14, 0xf8, 0x18, 0x90, 0x5e, 0x2f, 0xf3, 0x01, 0xc0, 0xe1, 0xea, 0xf7, 0xf2, - 0x30, 0xe1, 0x6b, 0x79, 0xd1, 0x38, 0xaa, 0x59, 0xc0, 0x87, 0xab, 0xe4, 0xab, 0x00, 0x2d, 0xcb, - 0xf1, 0xb4, 0xae, 0x54, 0x7d, 0x93, 0x1d, 0x19, 0x6c, 0x06, 0xe5, 0x3c, 0x12, 0x09, 0x9a, 0x07, - 0x90, 0x26, 0x58, 0x89, 0x4d, 0xb0, 0xa9, 0xe1, 0xa0, 0x0a, 0xe1, 0xbc, 0xc2, 0x12, 0x85, 0xfa, - 0x27, 0x39, 0x38, 0xe6, 0x1b, 0x69, 0xe9, 0x31, 0xe9, 0xf4, 0xbd, 0x17, 0x78, 0x32, 0x44, 0xb5, - 0x5d, 0x78, 0xaa, 0xb6, 0xd5, 0xff, 0x94, 0x16, 0x92, 0x7a, 0xd7, 0x7a, 0xb9, 0x90, 0xfc, 0x5f, - 0x8c, 0x71, 0xf5, 0xe7, 0xf3, 0x30, 0xeb, 0x6b, 0xfd, 0x4e, 0xdf, 0x64, 0x6e, 0x42, 0x5d, 0xeb, - 0x76, 0x5f, 0xe4, 0x7d, 0xb9, 0xe2, 0x2b, 0x62, 0x55, 0x24, 0x9e, 0x4c, 0xf2, 0x4b, 0xb6, 0x07, - 0x02, 0xdc, 0xb6, 0x0c, 0x1d, 0xcb, 0x44, 0xe8, 0x16, 0x4c, 0xf8, 0x3f, 0x6b, 0xce, 0xa6, 0xbf, - 0x19, 0xb3, 0xa3, 0x73, 0xc0, 0xa4, 0x39, 0x9b, 0x91, 0xba, 0xa6, 0x32, 0x83, 0xfa, 0xef, 0x05, - 0x98, 0xfb, 0xc0, 0x30, 0x75, 0xeb, 0x91, 0xdb, 0x20, 0xee, 0x43, 0xcf, 0x7a, 0x0e, 0x42, 0xbb, - 0x07, 0x57, 0x03, 0x27, 0xf4, 0x4c, 0x0a, 0x7b, 0x70, 0x5b, 0xdf, 0x83, 0x13, 0x71, 0x95, 0x3a, - 0x41, 0xbe, 0xa3, 0xb0, 0xce, 0x23, 0x4e, 0xd0, 0xd6, 0x39, 0x85, 0x1f, 0x7f, 0xc2, 0xe9, 0x9c, - 0x74, 0x6c, 0x08, 0x88, 0x14, 0x26, 0x66, 0x63, 0xc3, 0x17, 0xc0, 0x32, 0x2b, 0x64, 0x22, 0xf4, - 0x39, 0x28, 0x36, 0xac, 0x9e, 0x66, 0xf8, 0x4f, 0x7c, 0xd9, 0x2c, 0x0e, 0xda, 0x65, 0x18, 0x2c, - 0x28, 0xa8, 0x7c, 0xd1, 0x30, 0x33, 0xd9, 0x78, 0x28, 0xdf, 0x67, 0xe8, 0xbb, 0xc4, 0xc1, 0x32, - 0x11, 0xb2, 0x60, 0x52, 0x34, 0x27, 0xa2, 0x45, 0xc0, 0xa2, 0x45, 0x6f, 0xf8, 0x3a, 0x1a, 0x3d, - 0xac, 0xe6, 0x23, 0x7c, 0x3c, 0x6c, 0xc4, 0xbe, 0xce, 0xef, 0x0c, 0x8f, 0x1b, 0xe1, 0xa8, 0xfc, - 0xb9, 0xdb, 0x80, 0x92, 0x8c, 0x7b, 0x8a, 0x62, 0xfc, 0x52, 0x0e, 0x50, 0xec, 0x30, 0xb0, 0xf4, - 0x02, 0xfb, 0x34, 0xea, 0xef, 0x67, 0x61, 0x26, 0x91, 0x75, 0x8b, 0x6e, 0x00, 0x70, 0x88, 0x94, - 0x41, 0xcb, 0xf2, 0xe5, 0xc2, 0x4c, 0x5c, 0xb1, 0x9e, 0x87, 0x64, 0xe8, 0x2a, 0x94, 0xf9, 0xaf, - 0xa0, 0x78, 0x74, 0x9c, 0xa5, 0xdf, 0x37, 0x74, 0x1c, 0x10, 0x85, 0xad, 0xb0, 0x32, 0xea, 0xf9, - 0x54, 0x16, 0x6f, 0xc7, 0x0e, 0x5a, 0xa1, 0x64, 0xea, 0xc7, 0x59, 0x98, 0x08, 0x3e, 0xb8, 0xa6, - 0x1f, 0x96, 0xe9, 0x8a, 0x22, 0x81, 0x39, 0xff, 0xb4, 0x04, 0xe6, 0xd8, 0x02, 0x21, 0x32, 0x96, - 0xff, 0x32, 0x0b, 0xc7, 0x02, 0xda, 0x43, 0x8c, 0x97, 0xec, 0xbb, 0x23, 0xbf, 0x9c, 0x05, 0x65, - 0xd1, 0xe8, 0x76, 0x0d, 0x73, 0xb3, 0x69, 0x3e, 0xb0, 0x9c, 0x1e, 0xcb, 0x13, 0x3c, 0xbc, 0x80, - 0x98, 0xfa, 0x0b, 0x59, 0x98, 0x11, 0x1f, 0x54, 0xd7, 0x1c, 0xfd, 0xf0, 0x22, 0x95, 0xf1, 0x2f, - 0x39, 0x3c, 0x2b, 0xb3, 0xb7, 0xce, 0x2b, 0x56, 0xe7, 0xe1, 0x73, 0xf0, 0x64, 0x9b, 0x76, 0xe3, - 0x88, 0x3f, 0x2b, 0xfb, 0x76, 0x16, 0x66, 0x31, 0xe9, 0x58, 0xdb, 0xc4, 0xd9, 0xa9, 0x5b, 0x3a, - 0x79, 0x97, 0x98, 0xc4, 0x39, 0xac, 0x41, 0xfa, 0xa7, 0xac, 0x74, 0x42, 0xf8, 0x31, 0xf7, 0x5d, - 0xa2, 0x1f, 0x9d, 0x3a, 0x17, 0xea, 0xbf, 0x8d, 0x81, 0x92, 0xea, 0x65, 0x1c, 0xd9, 0x4d, 0x7d, - 0xa4, 0xeb, 0x38, 0x76, 0x50, 0xae, 0x63, 0x61, 0x6f, 0xae, 0x63, 0x71, 0xaf, 0xae, 0x63, 0xe9, - 0xd3, 0xb8, 0x8e, 0xbd, 0xb8, 0xeb, 0x58, 0x66, 0xae, 0xe3, 0x8d, 0x5d, 0x5d, 0xc7, 0x25, 0x53, - 0x3f, 0x34, 0xc7, 0xf1, 0x8f, 0x2e, 0x40, 0x61, 0xd5, 0x24, 0xab, 0x0f, 0xd0, 0x35, 0xa9, 0x24, - 0x8c, 0x18, 0x57, 0x33, 0xf2, 0xf8, 0x60, 0x88, 0xe5, 0x0c, 0x96, 0x0a, 0xc7, 0x2c, 0xc8, 0x05, - 0x3b, 0xc4, 0x98, 0x42, 0x32, 0x0f, 0xc7, 0x2c, 0x67, 0xb0, 0x5c, 0xd8, 0x63, 0x41, 0xae, 0x68, - 0x21, 0x86, 0x53, 0x84, 0x8b, 0x63, 0x7c, 0x2e, 0xb1, 0x2c, 0xae, 0xa4, 0x15, 0x90, 0x88, 0x9f, - 0x81, 0x92, 0x14, 0xcb, 0x19, 0x9c, 0x5e, 0x78, 0x22, 0x52, 0x0b, 0x5f, 0x9c, 0x82, 0x66, 0x63, - 0x83, 0x9a, 0xe1, 0x96, 0x33, 0x38, 0x5a, 0x37, 0xff, 0x66, 0xa4, 0xca, 0x78, 0xfc, 0x12, 0x5f, - 0x42, 0x2d, 0x67, 0x70, 0xac, 0x1e, 0x79, 0xa4, 0xe4, 0xb5, 0x08, 0x0a, 0xc7, 0x1b, 0x65, 0x38, - 0xa9, 0x51, 0x5e, 0x1e, 0xfb, 0x9d, 0x58, 0x7d, 0x68, 0xf1, 0x48, 0xe6, 0x44, 0x8c, 0x99, 0x23, - 0x97, 0x33, 0x38, 0x56, 0x4d, 0xfa, 0x92, 0x5f, 0x32, 0x58, 0x94, 0x4e, 0x98, 0x92, 0xb6, 0x05, - 0xe3, 0x23, 0xaa, 0x25, 0xbf, 0xa4, 0xf0, 0x82, 0x5c, 0x2a, 0x56, 0x14, 0xf5, 0x44, 0xb1, 0x56, - 0x96, 0x4c, 0x9d, 0x5a, 0x47, 0x5a, 0x93, 0x6e, 0xc7, 0x8b, 0x2a, 0x8a, 0x52, 0x9d, 0x27, 0x63, - 0x9c, 0x02, 0xbb, 0x9c, 0xc1, 0xf1, 0x22, 0x8c, 0x37, 0x23, 0x05, 0xfd, 0xc4, 0x0b, 0xcf, 0xb8, - 0x56, 0x29, 0x4a, 0xd2, 0x2a, 0x2b, 0xfd, 0x77, 0x3b, 0x5e, 0x61, 0x4e, 0x99, 0x4c, 0x6d, 0x5a, - 0x60, 0xa5, 0xa6, 0xfd, 0x8a, 0x74, 0x37, 0x23, 0x95, 0xc0, 0x58, 0xb1, 0xcd, 0x94, 0xa6, 0x35, - 0x4f, 0x93, 0x9b, 0xe6, 0x35, 0xc3, 0x22, 0x35, 0xa9, 0x94, 0x63, 0xa9, 0x06, 0x65, 0x38, 0xc9, - 0xa0, 0xbc, 0x7e, 0xd5, 0xcd, 0x48, 0x19, 0x05, 0x65, 0x3a, 0xda, 0xa8, 0x84, 0xa2, 0x8d, 0xca, - 0x05, 0x17, 0x16, 0xe4, 0xea, 0x02, 0xca, 0x4c, 0xd4, 0x40, 0x21, 0x86, 0x1a, 0x48, 0xaa, 0x42, - 0x50, 0x65, 0x99, 0xcb, 0x0a, 0x62, 0xe4, 0x95, 0xe0, 0x0b, 0xeb, 0xad, 0xe5, 0x0c, 0x66, 0x39, - 0xcd, 0x2a, 0xcf, 0x89, 0x57, 0x8e, 0x33, 0x8a, 0x89, 0xa0, 0xe2, 0xda, 0x63, 0xd2, 0x59, 0xce, - 0x60, 0x9e, 0x2f, 0x7f, 0x4d, 0x4a, 0x9b, 0x55, 0x66, 0xa3, 0x4b, 0x44, 0x80, 0xa0, 0x4b, 0x44, - 0x98, 0x5c, 0x7b, 0x27, 0x99, 0x5a, 0xaa, 0x9c, 0x88, 0x7a, 0x26, 0x71, 0xfc, 0x72, 0x06, 0x27, - 0xd3, 0x51, 0x6f, 0x46, 0xb2, 0x2d, 0x95, 0x93, 0xb1, 0x97, 0x33, 0x21, 0x8a, 0xaa, 0x4b, 0xce, - 0xcb, 0x5c, 0x4d, 0xad, 0xf6, 0xa2, 0x9c, 0x62, 0x02, 0x5e, 0x09, 0x04, 0x24, 0x49, 0x96, 0x33, - 0x38, 0xb5, 0x4e, 0x4c, 0x3d, 0x91, 0xf3, 0xa8, 0x28, 0xd1, 0x2d, 0x31, 0x86, 0x5e, 0xce, 0xe0, - 0x44, 0x96, 0xe4, 0x82, 0x9c, 0x6c, 0xa8, 0x9c, 0x8e, 0x1a, 0x31, 0xc4, 0x50, 0x23, 0x4a, 0x49, - 0x89, 0x0b, 0x72, 0x6e, 0x9f, 0x32, 0x97, 0xe4, 0x0a, 0x57, 0x4e, 0x29, 0x07, 0x10, 0xa7, 0xa7, - 0xd2, 0x29, 0xaf, 0x30, 0xfe, 0x33, 0x3e, 0x7f, 0x1a, 0xcd, 0x72, 0x06, 0xa7, 0xa7, 0xe1, 0xe1, - 0xf4, 0x6c, 0x36, 0xe5, 0xcc, 0x6e, 0x32, 0x83, 0xaf, 0x4b, 0xcf, 0x84, 0xd3, 0x76, 0x49, 0x28, - 0x53, 0xce, 0x46, 0x5f, 0x7c, 0x8f, 0x24, 0x5c, 0xce, 0xe0, 0x5d, 0xd2, 0xd2, 0xee, 0x8f, 0xc8, - 0xee, 0x52, 0xce, 0x45, 0x6b, 0x03, 0xa4, 0x12, 0x2d, 0x67, 0xf0, 0x88, 0xdc, 0xb0, 0xfb, 0x23, - 0x52, 0xac, 0x94, 0xea, 0xae, 0x62, 0x03, 0x7d, 0x8c, 0x48, 0xd0, 0x5a, 0x4d, 0xcd, 0x73, 0x52, - 0xce, 0x47, 0x87, 0x6e, 0x0a, 0x09, 0x1d, 0xba, 0x69, 0x19, 0x52, 0xab, 0xa9, 0x89, 0x46, 0xca, - 0xab, 0xbb, 0x08, 0x0c, 0xbe, 0x31, 0x35, 0x45, 0x69, 0x35, 0x35, 0xd3, 0x47, 0x51, 0xa3, 0x02, - 0x53, 0x48, 0xa8, 0xc0, 0xb4, 0x1c, 0xa1, 0xd5, 0xd4, 0x54, 0x1b, 0xe5, 0xc2, 0x2e, 0x02, 0xc3, - 0x2f, 0x4c, 0x4b, 0xd2, 0xb9, 0x19, 0xc9, 0x75, 0x51, 0x3e, 0x13, 0x5d, 0x37, 0x24, 0x14, 0x5d, - 0x37, 0xe4, 0xac, 0x98, 0x7a, 0xe2, 0x39, 0xb0, 0xf2, 0xd9, 0xe8, 0x34, 0x8f, 0xa1, 0xe9, 0x34, - 0x8f, 0x3f, 0x20, 0xae, 0x27, 0x9e, 0xa6, 0x2a, 0x17, 0x47, 0x09, 0x61, 0xe8, 0xa8, 0x10, 0xfe, - 0x98, 0xb5, 0x99, 0xf2, 0x36, 0x52, 0x79, 0x2d, 0x1a, 0xd7, 0x48, 0x10, 0x2c, 0x67, 0x70, 0xca, - 0x8b, 0x4a, 0x9c, 0xfe, 0x04, 0x44, 0xb9, 0x14, 0x9d, 0xb6, 0x69, 0x34, 0x74, 0xda, 0xa6, 0x3e, - 0x1f, 0x59, 0x49, 0x8b, 0x3c, 0x2a, 0x97, 0xa3, 0x8e, 0x59, 0x92, 0x82, 0x3a, 0x66, 0x29, 0x11, - 0x4b, 0x9c, 0xfe, 0xa8, 0x41, 0xf9, 0xdc, 0xae, 0x5f, 0xc8, 0x68, 0x52, 0xbe, 0x90, 0xdf, 0xf1, - 0x87, 0xbe, 0xd3, 0x7d, 0xbb, 0x6b, 0x69, 0xba, 0xf2, 0xf9, 0x54, 0xdf, 0x89, 0x23, 0x25, 0xdf, - 0x89, 0x03, 0xe8, 0x2e, 0x2f, 0x47, 0xe6, 0x94, 0x2b, 0xd1, 0x5d, 0x5e, 0xc6, 0xd1, 0x5d, 0x3e, - 0x12, 0xc5, 0xab, 0x27, 0xe2, 0x61, 0xca, 0xeb, 0xd1, 0x01, 0x10, 0x43, 0xd3, 0x01, 0x10, 0x8f, - 0xa0, 0x7d, 0x38, 0x3a, 0x16, 0xa5, 0xcc, 0x33, 0x69, 0xe7, 0x83, 0x9a, 0xb2, 0x23, 0xe8, 0x96, - 0x33, 0x78, 0x74, 0x3c, 0xab, 0x99, 0x12, 0x5a, 0x52, 0xae, 0x46, 0x07, 0x58, 0x82, 0x80, 0x0e, - 0xb0, 0x64, 0x40, 0xaa, 0x99, 0x12, 0x1b, 0x52, 0xbe, 0x30, 0x52, 0x54, 0xd0, 0xe7, 0x94, 0x88, - 0xd2, 0x82, 0x1c, 0xdc, 0x51, 0xae, 0x45, 0x37, 0xbb, 0x10, 0x43, 0x37, 0x3b, 0x29, 0x08, 0xb4, - 0x20, 0xc7, 0x52, 0x94, 0xeb, 0x49, 0xae, 0x70, 0x8b, 0x94, 0x62, 0x2e, 0x38, 0x3d, 0x74, 0xa1, - 0xdc, 0x88, 0x8e, 0xba, 0x34, 0x1a, 0x3a, 0xea, 0x52, 0xc3, 0x1e, 0x77, 0x92, 0x11, 0x08, 0x65, - 0x21, 0x1e, 0x93, 0x89, 0xe2, 0xa9, 0xe7, 0x93, 0x88, 0x5a, 0xdc, 0x8e, 0xbf, 0x4f, 0x54, 0xde, - 0x88, 0xfa, 0xb7, 0x51, 0x2c, 0xf5, 0x6f, 0x63, 0xef, 0x19, 0x6f, 0xc7, 0x9f, 0xf4, 0x29, 0x6f, - 0xa6, 0x4b, 0x08, 0xc6, 0x4a, 0xfc, 0x09, 0xe0, 0xed, 0xf8, 0x2b, 0x38, 0xe5, 0x66, 0xba, 0x84, - 0x40, 0xbb, 0xf1, 0x57, 0x73, 0xd7, 0xa4, 0xcc, 0x20, 0xe5, 0x8b, 0x51, 0xd7, 0x31, 0x40, 0x50, - 0xd7, 0x31, 0xcc, 0x1f, 0xba, 0x26, 0x65, 0xd4, 0x28, 0x5f, 0x4a, 0xb0, 0x04, 0x1f, 0x2b, 0xe5, - 0xdd, 0x5c, 0x93, 0x32, 0x51, 0x94, 0xb7, 0x12, 0x2c, 0xc1, 0xd7, 0x49, 0xf9, 0x2a, 0xfa, 0x6e, - 0xd7, 0x84, 0xca, 0x97, 0x99, 0x0c, 0xf5, 0xe9, 0x37, 0x3f, 0xcb, 0x19, 0xbc, 0xdb, 0x75, 0xe3, - 0x87, 0xa3, 0xe3, 0x39, 0xca, 0xdb, 0xd1, 0x29, 0x3c, 0x8a, 0x8e, 0x4e, 0xe1, 0x91, 0x31, 0xa1, - 0x77, 0x62, 0x4f, 0x86, 0x94, 0x77, 0xa2, 0x4b, 0x5c, 0x04, 0x49, 0x97, 0xb8, 0xf8, 0x03, 0xa3, - 0xc8, 0x5b, 0x18, 0xe5, 0x2b, 0xd1, 0x25, 0x4e, 0xc6, 0xd1, 0x25, 0x2e, 0xf2, 0x6e, 0xa6, 0x9e, - 0x78, 0xa2, 0xa1, 0xdc, 0x8a, 0x2e, 0x71, 0x31, 0x34, 0x5d, 0xe2, 0xe2, 0x8f, 0x3a, 0xde, 0x89, - 0xbd, 0x54, 0x50, 0x6e, 0xa7, 0x7f, 0x3f, 0x43, 0xca, 0xdf, 0xcf, 0xdf, 0x35, 0xe0, 0xf4, 0x2b, - 0x77, 0xa5, 0x16, 0x9d, 0xbf, 0x69, 0x34, 0x74, 0xfe, 0xa6, 0x5e, 0xd7, 0xaf, 0xa6, 0x56, 0xe6, - 0x53, 0x16, 0x77, 0x39, 0x38, 0x84, 0xae, 0x48, 0x5a, 0x4d, 0xbf, 0xdb, 0xf1, 0xbf, 0x46, 0xa4, - 0xd4, 0x47, 0x9c, 0x91, 0xfd, 0x63, 0x50, 0x8c, 0x7e, 0xb1, 0x04, 0x05, 0x56, 0x01, 0x5b, 0xfd, - 0xcd, 0x2c, 0x4c, 0xac, 0x79, 0x0e, 0xd1, 0x7a, 0xe2, 0x66, 0x76, 0x0e, 0xca, 0x7c, 0xb7, 0xf2, - 0xff, 0x6c, 0x2d, 0x0e, 0x7e, 0xa3, 0x8b, 0x30, 0xb5, 0xa2, 0xb9, 0x1e, 0xe3, 0x94, 0xfe, 0x42, - 0x16, 0x8e, 0x41, 0xd1, 0x0a, 0xa7, 0xe3, 0x7c, 0xec, 0x4f, 0x7a, 0xe4, 0x9f, 0x5a, 0x38, 0xb6, - 0xfc, 0x64, 0x50, 0xcd, 0xb0, 0x1a, 0xb1, 0x31, 0x5e, 0x75, 0x98, 0x85, 0xc4, 0x3e, 0xfa, 0xec, - 0x71, 0xcb, 0xd5, 0xc4, 0x9f, 0xea, 0x15, 0xe1, 0xa6, 0x4f, 0x19, 0x87, 0x4c, 0xfc, 0xa1, 0xdf, - 0x0b, 0x90, 0xbf, 0xdf, 0x6c, 0xc8, 0x15, 0x69, 0xa3, 0x7f, 0xc7, 0x98, 0x62, 0xd1, 0x6b, 0x41, - 0x2c, 0xe4, 0x3e, 0x5e, 0x11, 0x01, 0x46, 0xf6, 0x57, 0x33, 0xfa, 0x4e, 0x17, 0x4b, 0xa8, 0xcf, - 0xbd, 0x06, 0x15, 0xa9, 0x34, 0x39, 0x9a, 0x80, 0xf2, 0xea, 0xe2, 0xda, 0x12, 0x7e, 0x7f, 0xa9, - 0x31, 0x9d, 0x41, 0x00, 0xc5, 0xc6, 0xd2, 0xbd, 0xe6, 0x52, 0x63, 0x3a, 0xbb, 0x38, 0xfd, 0xe4, - 0x9f, 0xcf, 0x65, 0x9e, 0x7c, 0x72, 0x2e, 0xfb, 0xa3, 0x4f, 0xce, 0x65, 0xff, 0xe9, 0x93, 0x73, - 0xd9, 0x8d, 0x22, 0xd3, 0xea, 0x8d, 0xff, 0x0d, 0x00, 0x00, 0xff, 0xff, 0xde, 0xe3, 0xa4, 0x7d, - 0x0d, 0x7a, 0x00, 0x00, + // 6231 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x4b, 0x6c, 0x1c, 0xc9, + 0x79, 0x30, 0x67, 0x86, 0xf3, 0xe0, 0x37, 0x7c, 0x96, 0x28, 0xa9, 0xa5, 0xd5, 0x6a, 0xb4, 0x2d, + 0x5b, 0x2b, 0xd9, 0x5a, 0xd2, 0xa2, 0xb4, 0x2b, 0x7b, 0xbd, 0xeb, 0xd5, 0x3c, 0xa8, 0xe5, 0xd8, + 0x94, 0xc8, 0x2d, 0x52, 0xbb, 0x06, 0x7e, 0x78, 0x07, 0xcd, 0xe9, 0x12, 0xd5, 0xd6, 0xcc, 0x74, + 0xbb, 0xbb, 0x87, 0x12, 0xf7, 0xf4, 0xe7, 0x81, 0x24, 0x30, 0x9c, 0x20, 0x70, 0x0e, 0x39, 0xe4, + 0x90, 0xc0, 0x49, 0x0e, 0x01, 0x82, 0x38, 0xc8, 0xc1, 0x08, 0x90, 0x5c, 0x02, 0x27, 0xc1, 0x1a, + 0x81, 0x1d, 0x27, 0x0e, 0x12, 0x20, 0x87, 0x71, 0xb2, 0x41, 0x10, 0x60, 0x92, 0x5b, 0x0e, 0x79, + 0x1c, 0x82, 0xa0, 0x1e, 0xdd, 0x5d, 0xd5, 0xdd, 0xa4, 0x96, 0x0f, 0x87, 0xa0, 0xa4, 0x13, 0x39, + 0xdf, 0xab, 0xba, 0xbf, 0xfa, 0xaa, 0xfa, 0xab, 0xaf, 0xea, 0xfb, 0x0a, 0xc6, 0xc9, 0x16, 0xe9, + 0xf9, 0xde, 0x9c, 0xe3, 0xda, 0xbe, 0x8d, 0x0a, 0xfc, 0xd7, 0xd9, 0xd9, 0x4d, 0x7b, 0xd3, 0x66, + 0xa0, 0x79, 0xfa, 0x1f, 0xc7, 0x9e, 0xad, 0x6c, 0xda, 0xf6, 0x66, 0x87, 0xcc, 0xb3, 0x5f, 0x1b, + 0xfd, 0xfb, 0xf3, 0xbe, 0xd5, 0x25, 0x9e, 0x6f, 0x74, 0x1d, 0x41, 0x70, 0x2e, 0x4e, 0xe0, 0xf9, + 0x6e, 0xbf, 0xed, 0x0b, 0x6c, 0x7d, 0xd3, 0xf2, 0x1f, 0xf4, 0x37, 0xe6, 0xda, 0x76, 0x77, 0x7e, + 0xd3, 0x35, 0xb6, 0x2c, 0xdf, 0xf0, 0x2d, 0xbb, 0x67, 0x74, 0xe6, 0x7d, 0xd2, 0x21, 0x8e, 0xed, + 0xfa, 0xf3, 0x86, 0x63, 0xcd, 0xfb, 0xdb, 0x0e, 0xf1, 0xe6, 0x1f, 0xb9, 0x86, 0xe3, 0x10, 0x37, + 0xfa, 0x87, 0x0b, 0xd1, 0xbf, 0x99, 0x85, 0xd2, 0x1d, 0xe2, 0x1b, 0xa6, 0xe1, 0x1b, 0xe8, 0x1c, + 0xe4, 0x9b, 0x3d, 0x93, 0x3c, 0xd6, 0x32, 0x17, 0x32, 0x97, 0x73, 0xb5, 0xc2, 0x70, 0x50, 0xc9, + 0x12, 0x0b, 0x73, 0x20, 0x7a, 0x11, 0x46, 0xd7, 0xb7, 0x1d, 0xa2, 0x65, 0x2f, 0x64, 0x2e, 0x8f, + 0xd5, 0xc6, 0x86, 0x83, 0x4a, 0x9e, 0xbd, 0x1e, 0x66, 0x60, 0xf4, 0x12, 0x64, 0x9b, 0x0d, 0x2d, + 0xc7, 0x90, 0x33, 0xc3, 0x41, 0x65, 0xa2, 0x6f, 0x99, 0x57, 0xed, 0xae, 0xe5, 0x93, 0xae, 0xe3, + 0x6f, 0xe3, 0x6c, 0xb3, 0x81, 0x2e, 0xc1, 0x68, 0xdd, 0x36, 0x89, 0x36, 0xca, 0x88, 0xd0, 0x70, + 0x50, 0x99, 0x6c, 0xdb, 0x26, 0x91, 0xa8, 0x18, 0x1e, 0xdd, 0x82, 0xd1, 0x75, 0xab, 0x4b, 0xb4, + 0xfc, 0x85, 0xcc, 0xe5, 0xf2, 0xc2, 0xd9, 0x39, 0xae, 0x86, 0xb9, 0x40, 0x0d, 0x73, 0xeb, 0x81, + 0x9e, 0x6a, 0xd3, 0x1f, 0x0e, 0x2a, 0x23, 0xc3, 0x41, 0x65, 0x94, 0xaa, 0xee, 0x97, 0x7f, 0x5c, + 0xc9, 0x60, 0xc6, 0x89, 0xde, 0x80, 0x72, 0xbd, 0xd3, 0xf7, 0x7c, 0xe2, 0xde, 0x35, 0xba, 0x44, + 0x2b, 0xb0, 0x06, 0xcf, 0x0e, 0x07, 0x95, 0x53, 0x6d, 0x0e, 0x6e, 0xf5, 0x8c, 0xae, 0xdc, 0xb0, + 0x4c, 0xae, 0x7f, 0x15, 0xa6, 0xd6, 0x88, 0xe7, 0x59, 0x76, 0x2f, 0x54, 0xcd, 0x27, 0x61, 0x4c, + 0x80, 0x9a, 0x0d, 0xa6, 0x9e, 0xb1, 0x5a, 0x71, 0x38, 0xa8, 0xe4, 0x3c, 0xcb, 0xc4, 0x11, 0x06, + 0x7d, 0x06, 0x8a, 0xef, 0x59, 0xfe, 0x83, 0x3b, 0xb7, 0xab, 0x42, 0x4d, 0xa7, 0x86, 0x83, 0x0a, + 0x7a, 0x64, 0xf9, 0x0f, 0x5a, 0xdd, 0xfb, 0x86, 0xd4, 0x5e, 0x40, 0xa6, 0xff, 0x56, 0x16, 0xc6, + 0xef, 0x79, 0xc4, 0x0d, 0x5b, 0xba, 0x04, 0xa3, 0xf4, 0xb7, 0x68, 0x84, 0x29, 0xa9, 0xef, 0x11, + 0x57, 0x56, 0x12, 0xc5, 0xa3, 0x2b, 0x90, 0x5f, 0xb6, 0x37, 0xad, 0x9e, 0x68, 0xe8, 0xc4, 0x70, + 0x50, 0x99, 0xea, 0x50, 0x80, 0x44, 0xc9, 0x29, 0xd0, 0x17, 0x60, 0xbc, 0xd9, 0xa5, 0x9d, 0x6e, + 0xf7, 0x0c, 0xdf, 0x76, 0x45, 0x27, 0x31, 0x75, 0x58, 0x12, 0x5c, 0x62, 0x54, 0xe8, 0xd1, 0xeb, + 0x00, 0xd5, 0xf7, 0xd6, 0xb0, 0xdd, 0x21, 0x55, 0x7c, 0x57, 0xf4, 0x1e, 0xe3, 0x36, 0x1e, 0x79, + 0x2d, 0xd7, 0xee, 0x90, 0x96, 0xe1, 0xca, 0xcd, 0x4a, 0xd4, 0x68, 0x11, 0x26, 0xab, 0xed, 0x36, + 0xf1, 0x3c, 0x4c, 0xbe, 0xd6, 0x27, 0x9e, 0xef, 0x69, 0xf9, 0x0b, 0xb9, 0xcb, 0x63, 0xb5, 0x17, + 0x87, 0x83, 0xca, 0x19, 0x83, 0x61, 0x5a, 0xae, 0x40, 0x49, 0x22, 0x62, 0x4c, 0xfa, 0xef, 0xe7, + 0x60, 0x72, 0x8d, 0xb8, 0x5b, 0x92, 0xa2, 0xaa, 0xb4, 0x97, 0x28, 0x84, 0xf6, 0x99, 0xe7, 0x18, + 0x6d, 0x22, 0x74, 0x76, 0x7a, 0x38, 0xa8, 0x9c, 0xe8, 0x05, 0x40, 0x49, 0x68, 0x9c, 0x1e, 0x5d, + 0x81, 0x12, 0x07, 0x35, 0x1b, 0x42, 0x8d, 0x13, 0xc3, 0x41, 0x65, 0xcc, 0x63, 0xb0, 0x96, 0x65, + 0xe2, 0x10, 0x4d, 0xdf, 0x83, 0xff, 0xbf, 0x64, 0x7b, 0x3e, 0x15, 0x2e, 0xb4, 0xc8, 0xde, 0x43, + 0x30, 0x3c, 0x10, 0x28, 0xf9, 0x3d, 0x54, 0x26, 0xf4, 0x39, 0x00, 0x0e, 0xa9, 0x9a, 0xa6, 0x2b, + 0x54, 0x79, 0x66, 0x38, 0xa8, 0x9c, 0x14, 0x22, 0x0c, 0xd3, 0x94, 0xfb, 0x41, 0x22, 0x46, 0x5d, + 0x18, 0xe7, 0xbf, 0x96, 0x8d, 0x0d, 0xd2, 0xe1, 0x7a, 0x2c, 0x2f, 0x5c, 0x9e, 0x13, 0x33, 0x8e, + 0xaa, 0x9d, 0x39, 0x99, 0x74, 0xb1, 0xe7, 0xbb, 0xdb, 0xb5, 0x8a, 0x18, 0x2b, 0xa7, 0x45, 0x53, + 0x1d, 0x86, 0x93, 0x3b, 0x5d, 0xe6, 0x39, 0xfb, 0x16, 0xcc, 0x24, 0x64, 0xa0, 0x69, 0xc8, 0x3d, + 0x24, 0xdb, 0x5c, 0xcf, 0x98, 0xfe, 0x8b, 0x66, 0x21, 0xbf, 0x65, 0x74, 0xfa, 0x62, 0x5a, 0xc0, + 0xfc, 0xc7, 0xeb, 0xd9, 0xcf, 0x66, 0xf4, 0x3f, 0xcc, 0x00, 0xaa, 0xdb, 0xbd, 0x1e, 0x69, 0xfb, + 0xf2, 0x48, 0x7a, 0x0d, 0xc6, 0x96, 0xed, 0xb6, 0xd1, 0x61, 0x0a, 0xe0, 0x1d, 0xa6, 0x0d, 0x07, + 0x95, 0x59, 0xfa, 0xe6, 0x73, 0x1d, 0x8a, 0x91, 0x1e, 0x29, 0x22, 0xa5, 0x9a, 0xc3, 0xa4, 0x6b, + 0xfb, 0x84, 0x31, 0x66, 0x23, 0xcd, 0x31, 0x46, 0x97, 0xa1, 0x64, 0xcd, 0x45, 0xc4, 0x68, 0x1e, + 0x4a, 0xab, 0x74, 0xee, 0x68, 0xdb, 0x1d, 0xd1, 0x6b, 0x6c, 0xb4, 0xb0, 0xf9, 0x44, 0x62, 0x09, + 0x89, 0xf4, 0x9f, 0xce, 0xc2, 0x99, 0x2f, 0xf5, 0x37, 0x88, 0xdb, 0x23, 0x3e, 0xf1, 0xc4, 0xd4, + 0x10, 0xbe, 0xc1, 0x5d, 0x98, 0x49, 0x20, 0xc5, 0x9b, 0x5c, 0x18, 0x0e, 0x2a, 0xe7, 0x1e, 0x86, + 0xc8, 0x96, 0x98, 0x6d, 0xa4, 0x46, 0x92, 0xac, 0x68, 0x09, 0xa6, 0x22, 0x20, 0x1d, 0xdb, 0x9e, + 0x96, 0x65, 0x63, 0xe4, 0xfc, 0x70, 0x50, 0x39, 0x2b, 0x49, 0xa3, 0xf3, 0x80, 0xdc, 0x61, 0x71, + 0x36, 0xf4, 0x25, 0x98, 0x8e, 0x40, 0x6f, 0xbb, 0x76, 0xdf, 0xf1, 0xb4, 0x1c, 0x13, 0x55, 0x19, + 0x0e, 0x2a, 0x2f, 0x48, 0xa2, 0x36, 0x19, 0x52, 0x92, 0x95, 0x60, 0xd4, 0xff, 0x39, 0x07, 0x27, + 0x23, 0xe0, 0xaa, 0x6d, 0x86, 0x0a, 0x58, 0x91, 0x15, 0xb0, 0x6a, 0x9b, 0x6c, 0x8e, 0xe5, 0x0a, + 0x78, 0x69, 0x38, 0xa8, 0xbc, 0x28, 0xb5, 0xe3, 0xd8, 0x66, 0x7c, 0xaa, 0x4d, 0xf2, 0xa2, 0xf7, + 0xe1, 0x54, 0x02, 0xc8, 0x47, 0x34, 0xef, 0xe7, 0x4b, 0xc3, 0x41, 0x45, 0x4f, 0x91, 0x1a, 0x1f, + 0xe0, 0x3b, 0x48, 0x41, 0x06, 0x9c, 0x96, 0xd4, 0x6e, 0xf7, 0x7c, 0xc3, 0xea, 0x89, 0x4f, 0x03, + 0xb7, 0x87, 0x97, 0x87, 0x83, 0xca, 0x45, 0xb9, 0xdf, 0x02, 0x9a, 0xf8, 0xc3, 0xef, 0x24, 0x07, + 0x99, 0xa0, 0xa5, 0xa0, 0x9a, 0x5d, 0x63, 0x33, 0xf8, 0xde, 0x5d, 0x1e, 0x0e, 0x2a, 0x9f, 0x48, + 0x6d, 0xc3, 0xa2, 0x54, 0x52, 0x23, 0x3b, 0x4a, 0x42, 0x18, 0x50, 0x84, 0xbb, 0x6b, 0x9b, 0x84, + 0xbd, 0x43, 0x9e, 0xc9, 0xd7, 0x87, 0x83, 0xca, 0x79, 0x49, 0x7e, 0xcf, 0x36, 0x49, 0xfc, 0xf1, + 0x53, 0xb8, 0xf5, 0x1f, 0xe7, 0xe9, 0xc4, 0xc2, 0xbe, 0x60, 0x6b, 0xbe, 0xe1, 0xfa, 0xe8, 0xf5, + 0xc8, 0x25, 0x60, 0xbd, 0x5a, 0x5e, 0x98, 0x0e, 0x26, 0x99, 0x00, 0x5e, 0x1b, 0xa7, 0x93, 0xc9, + 0x0f, 0x07, 0x95, 0xcc, 0x70, 0x50, 0x19, 0xc1, 0x25, 0x69, 0x74, 0xf3, 0xaf, 0x57, 0x96, 0xf1, + 0xcd, 0x06, 0x7c, 0xf2, 0x17, 0x2e, 0xc6, 0xcb, 0xbf, 0x66, 0x6f, 0x41, 0x51, 0x3c, 0x03, 0xeb, + 0x91, 0xf2, 0xc2, 0xe9, 0x68, 0x5e, 0x53, 0xbe, 0xc4, 0x31, 0xee, 0x80, 0x0b, 0xbd, 0x01, 0x05, + 0x3e, 0x5d, 0x31, 0x6d, 0x97, 0x17, 0x4e, 0xa5, 0xcf, 0x8b, 0x31, 0x76, 0xc1, 0x83, 0x96, 0x00, + 0xa2, 0xa9, 0x2a, 0xf4, 0x3b, 0x84, 0x84, 0xe4, 0x24, 0x16, 0x93, 0x22, 0xf1, 0xa2, 0xd7, 0x60, + 0x7c, 0x9d, 0xb8, 0x5d, 0xab, 0x67, 0x74, 0xd6, 0xac, 0x0f, 0x02, 0xd7, 0x83, 0x7d, 0xc6, 0x3d, + 0xeb, 0x03, 0xb9, 0x2f, 0x14, 0x3a, 0xf4, 0x95, 0xb4, 0x49, 0xa5, 0xc8, 0x1e, 0xe4, 0xa5, 0xe0, + 0x41, 0x76, 0x9c, 0x92, 0x62, 0xcf, 0x93, 0x32, 0xc7, 0xbc, 0x03, 0x13, 0xca, 0xd8, 0xd0, 0x4a, + 0x4c, 0xf4, 0x8b, 0x49, 0xd1, 0xd2, 0x40, 0x8f, 0x89, 0x55, 0x25, 0xd0, 0x2f, 0x62, 0xb3, 0x67, + 0xf9, 0x96, 0xd1, 0xa9, 0xdb, 0xdd, 0xae, 0xd1, 0x33, 0xb5, 0xb1, 0xe8, 0xcb, 0x6e, 0x71, 0x4c, + 0xab, 0xcd, 0x51, 0xf2, 0x17, 0x51, 0x65, 0xa2, 0x73, 0x96, 0xe8, 0x43, 0x4c, 0xda, 0xb6, 0x6b, + 0x5a, 0xbd, 0x4d, 0x0d, 0x98, 0xd2, 0xd8, 0x9c, 0xe5, 0x71, 0x5c, 0xcb, 0x0d, 0x90, 0xf2, 0x9c, + 0x15, 0x67, 0xfc, 0xe2, 0x68, 0xa9, 0x3c, 0x3d, 0x9e, 0x70, 0x1e, 0x7e, 0x27, 0x07, 0x65, 0x41, + 0xfa, 0x45, 0xdb, 0xea, 0x3d, 0x37, 0xf0, 0x83, 0x18, 0x78, 0xaa, 0xa1, 0x16, 0x0e, 0xcb, 0x50, + 0xf5, 0x6f, 0x64, 0xc3, 0xd9, 0x68, 0xd5, 0xb5, 0x7a, 0x07, 0x9b, 0x8d, 0x2e, 0x01, 0xd4, 0x1f, + 0xf4, 0x7b, 0x0f, 0xf9, 0xaa, 0x26, 0x1b, 0xad, 0x6a, 0xda, 0x16, 0x96, 0x30, 0x74, 0x69, 0xd3, + 0xa0, 0xf2, 0x69, 0xcf, 0x8c, 0xd7, 0xc6, 0x3e, 0xe4, 0x92, 0x32, 0xaf, 0x60, 0x06, 0x46, 0x15, + 0xc8, 0xd7, 0xb6, 0x7d, 0xe2, 0x31, 0xcd, 0xe7, 0xf8, 0xd2, 0x67, 0x83, 0x02, 0x30, 0x87, 0xa3, + 0x1b, 0x30, 0xd3, 0x20, 0x1d, 0x63, 0xfb, 0x8e, 0xd5, 0xe9, 0x58, 0x1e, 0x69, 0xdb, 0x3d, 0xd3, + 0x63, 0x4a, 0x16, 0xcd, 0x75, 0x3d, 0x9c, 0x24, 0x40, 0x3a, 0x14, 0x56, 0xee, 0xdf, 0xf7, 0x88, + 0xcf, 0xd4, 0x97, 0xab, 0xc1, 0x70, 0x50, 0x29, 0xd8, 0x0c, 0x82, 0x05, 0x46, 0xff, 0xeb, 0x2c, + 0x4c, 0x84, 0x56, 0xfe, 0x55, 0xd2, 0x3e, 0x9a, 0xd9, 0x39, 0xb2, 0xbd, 0xdc, 0x81, 0x6d, 0x6f, + 0xf4, 0x00, 0xb6, 0xa7, 0x43, 0x01, 0x13, 0xc3, 0x13, 0x16, 0x3c, 0xc6, 0x35, 0xe6, 0x32, 0x08, + 0x16, 0x18, 0xf4, 0x12, 0x14, 0xef, 0x18, 0x8f, 0xad, 0x6e, 0xbf, 0x2b, 0xd4, 0xca, 0xd6, 0x69, + 0x5d, 0xe3, 0x31, 0x0e, 0xe0, 0xfa, 0xdf, 0x64, 0xa8, 0x33, 0xcf, 0x94, 0x2a, 0x84, 0x1f, 0x48, + 0xab, 0x91, 0x76, 0xb2, 0x07, 0xd6, 0x4e, 0x6e, 0xff, 0xda, 0xd1, 0xbf, 0x3d, 0x4a, 0xd5, 0x43, + 0xbf, 0x32, 0xc7, 0x73, 0x86, 0x3b, 0x3c, 0x3b, 0x89, 0x7a, 0x24, 0xbf, 0x8f, 0x1e, 0x79, 0x66, + 0x3e, 0xe1, 0xfa, 0x7f, 0x14, 0xe9, 0x72, 0x94, 0x69, 0x7f, 0xb1, 0x67, 0x3e, 0xb7, 0x9a, 0x83, + 0x58, 0x4d, 0x03, 0x66, 0x16, 0x7b, 0x0f, 0x8c, 0x5e, 0x9b, 0x98, 0x91, 0x23, 0x43, 0x4d, 0xa7, + 0xc4, 0x83, 0x40, 0x44, 0x20, 0x23, 0x4f, 0x06, 0x27, 0x19, 0xd0, 0x35, 0x28, 0x37, 0x7b, 0x3e, + 0x71, 0x8d, 0xb6, 0x6f, 0x6d, 0x11, 0x66, 0x3d, 0xa5, 0xda, 0xd4, 0x70, 0x50, 0x29, 0x5b, 0x11, + 0x18, 0xcb, 0x34, 0xe8, 0x06, 0x8c, 0xaf, 0x1a, 0xae, 0x6f, 0xb5, 0x2d, 0xc7, 0xe8, 0xf9, 0x9e, + 0x56, 0x62, 0x5e, 0xd8, 0xf4, 0x70, 0x50, 0x19, 0x77, 0x24, 0x38, 0x56, 0xa8, 0xd0, 0x57, 0x60, + 0x8c, 0x79, 0xfb, 0x2c, 0xd0, 0x36, 0xf6, 0xc4, 0x40, 0xdb, 0xc5, 0x28, 0x78, 0xc0, 0xfd, 0x31, + 0x8f, 0x32, 0x47, 0x43, 0x81, 0xc5, 0xde, 0x22, 0x89, 0xe8, 0xcb, 0x50, 0x5c, 0xec, 0x99, 0x4c, + 0x38, 0x3c, 0x51, 0xb8, 0x2e, 0x84, 0x9f, 0x8a, 0x84, 0xdb, 0x4e, 0x4c, 0x76, 0x20, 0x2e, 0x7d, + 0x94, 0x95, 0x7f, 0x72, 0xa3, 0x6c, 0xfc, 0x27, 0xe0, 0x28, 0x4f, 0x1c, 0x96, 0xa3, 0x3c, 0xb9, + 0x4f, 0x47, 0x59, 0xff, 0x00, 0xca, 0xb5, 0xd5, 0xdb, 0xe1, 0xe8, 0x3d, 0x03, 0xb9, 0x55, 0x11, + 0xd8, 0x1c, 0xe5, 0x1f, 0x4c, 0xc7, 0x32, 0x31, 0x85, 0xa1, 0x2b, 0x50, 0xaa, 0xb3, 0x68, 0x81, + 0x88, 0x91, 0x8d, 0xf2, 0x18, 0x59, 0x9b, 0xc1, 0x58, 0x8c, 0x2c, 0x40, 0xa3, 0x4f, 0x42, 0x71, + 0xd5, 0xb5, 0x37, 0x5d, 0xa3, 0x2b, 0x96, 0xd5, 0xe5, 0xe1, 0xa0, 0x52, 0x74, 0x38, 0x08, 0x07, + 0x38, 0xfd, 0x57, 0x32, 0x50, 0x58, 0xf3, 0x0d, 0xbf, 0xef, 0x51, 0x8e, 0xb5, 0x3e, 0x73, 0xd6, + 0x59, 0xdb, 0x25, 0xce, 0xe1, 0x71, 0x10, 0x0e, 0x70, 0xe8, 0x0a, 0xe4, 0x17, 0x5d, 0xd7, 0x76, + 0xe5, 0x58, 0x27, 0xa1, 0x00, 0x39, 0xd6, 0xc9, 0x28, 0xd0, 0x4d, 0x28, 0xf3, 0x39, 0xc7, 0xf3, + 0xe8, 0xd2, 0x9b, 0x3f, 0xc7, 0xc9, 0xe1, 0xa0, 0x32, 0xd3, 0xe5, 0x20, 0x39, 0xe8, 0x2b, 0x51, + 0xea, 0xdf, 0xcd, 0x49, 0x4e, 0x01, 0xd7, 0xf8, 0x33, 0xb8, 0x4e, 0xb8, 0x0e, 0xb9, 0xda, 0xea, + 0x6d, 0x31, 0x01, 0x9e, 0x08, 0x58, 0x25, 0x53, 0x89, 0xf1, 0x51, 0x6a, 0x74, 0x0e, 0x46, 0x57, + 0xa9, 0xf9, 0x14, 0x98, 0x79, 0x94, 0x86, 0x83, 0xca, 0xa8, 0x43, 0xed, 0x87, 0x41, 0x19, 0xd6, + 0xf0, 0x1f, 0xb0, 0xb9, 0x6c, 0x4c, 0x60, 0x0d, 0xff, 0x01, 0x66, 0x50, 0x8a, 0xad, 0xba, 0x9b, + 0x5b, 0x62, 0xd6, 0x62, 0x58, 0xc3, 0xdd, 0xdc, 0xc2, 0x0c, 0x8a, 0xe6, 0x01, 0x30, 0xf1, 0xfb, + 0x6e, 0x8f, 0xed, 0x1b, 0xd0, 0x69, 0x2a, 0xcf, 0x67, 0x43, 0x97, 0x41, 0x5b, 0x6d, 0xdb, 0x24, + 0x58, 0x22, 0xd1, 0x7f, 0x3b, 0x5a, 0xea, 0x35, 0x2c, 0xef, 0xe1, 0xf3, 0x2e, 0xdc, 0x43, 0x17, + 0xd2, 0x4e, 0x2a, 0xa4, 0x76, 0x52, 0x05, 0xf2, 0xb7, 0x3b, 0xc6, 0xa6, 0xc7, 0xfa, 0x30, 0xcf, + 0x17, 0x40, 0xf7, 0x29, 0x00, 0x73, 0x78, 0xac, 0x9f, 0x4a, 0x4f, 0xee, 0xa7, 0x5f, 0xcd, 0x87, + 0xa3, 0xed, 0x2e, 0xf1, 0x1f, 0xd9, 0xee, 0xf3, 0xae, 0xfa, 0xb8, 0x5d, 0x75, 0x09, 0x8a, 0x6b, + 0x6e, 0x9b, 0x45, 0xc1, 0x79, 0x6f, 0x8d, 0x0f, 0x07, 0x95, 0x92, 0xe7, 0xb6, 0xd9, 0xe6, 0x01, + 0x0e, 0x90, 0x94, 0xae, 0xe1, 0xf9, 0x8c, 0xae, 0x18, 0xd1, 0x99, 0x9e, 0x2f, 0xe8, 0x04, 0x52, + 0xd0, 0xad, 0xda, 0xae, 0x2f, 0x3a, 0x2e, 0xa4, 0x73, 0x6c, 0xd7, 0xc7, 0x01, 0x12, 0x7d, 0x1a, + 0x60, 0xbd, 0xbe, 0xfa, 0x2e, 0x71, 0x99, 0xba, 0xf8, 0x58, 0x64, 0xd3, 0xf5, 0x16, 0x07, 0x61, + 0x09, 0x8d, 0xd6, 0x61, 0x6c, 0xc5, 0x21, 0x2e, 0xdb, 0x91, 0x64, 0x1e, 0xc0, 0xe4, 0xc2, 0xcb, + 0x31, 0xd5, 0x8a, 0x7e, 0x9f, 0x13, 0x7f, 0x43, 0x72, 0xfe, 0x7d, 0xb1, 0x83, 0x9f, 0x38, 0x12, + 0x84, 0x6e, 0x42, 0xa1, 0xca, 0xfd, 0xbc, 0x32, 0x13, 0x19, 0xaa, 0x6c, 0x91, 0xfe, 0xe1, 0x28, + 0xbe, 0x28, 0x34, 0xd8, 0xff, 0x58, 0x90, 0xeb, 0x57, 0x60, 0x3a, 0xde, 0x0c, 0x2a, 0x43, 0xb1, + 0xbe, 0x72, 0xf7, 0xee, 0x62, 0x7d, 0x7d, 0x7a, 0x04, 0x95, 0x60, 0x74, 0x6d, 0xf1, 0x6e, 0x63, + 0x3a, 0xa3, 0xff, 0xae, 0x34, 0x83, 0x50, 0xd3, 0x7a, 0x1e, 0x2c, 0x3a, 0x80, 0x4b, 0xbd, 0x00, + 0xd3, 0x2c, 0x42, 0xb2, 0xee, 0x1a, 0x3d, 0xaf, 0x6b, 0xf9, 0x3e, 0x31, 0xc5, 0x57, 0x82, 0xc5, + 0x45, 0xfc, 0xc7, 0x38, 0x81, 0x47, 0x57, 0x61, 0x82, 0xc1, 0x30, 0x69, 0x13, 0x6b, 0x8b, 0x98, + 0xcc, 0x7a, 0x05, 0x83, 0xfb, 0x18, 0xab, 0x48, 0xfd, 0x2f, 0xa2, 0x78, 0xd1, 0x32, 0x31, 0xb6, + 0xc8, 0xf3, 0xfe, 0x3a, 0x40, 0x7f, 0xe9, 0xbf, 0x99, 0x83, 0x31, 0xfa, 0x46, 0x7c, 0xdf, 0xf8, + 0x28, 0x54, 0x79, 0x23, 0xf0, 0x0d, 0x85, 0x26, 0x27, 0x43, 0x4d, 0x30, 0x68, 0x42, 0x03, 0xdc, + 0x8f, 0xbc, 0x0a, 0x85, 0x3b, 0xc4, 0x7f, 0x60, 0x9b, 0x62, 0xaf, 0x65, 0x76, 0x38, 0xa8, 0x4c, + 0x77, 0x19, 0x44, 0xf2, 0xf7, 0x04, 0x0d, 0x7a, 0x08, 0xa8, 0x69, 0x92, 0x9e, 0x6f, 0xf9, 0xdb, + 0x55, 0xdf, 0x77, 0xad, 0x8d, 0xbe, 0x4f, 0x3c, 0xa1, 0xb7, 0xd3, 0x89, 0x75, 0xca, 0x1a, 0x3b, + 0x74, 0xc1, 0xb6, 0x57, 0x66, 0x8d, 0x90, 0x3c, 0x12, 0xfb, 0xdf, 0x83, 0x4a, 0x81, 0xd3, 0xe0, + 0x14, 0xb1, 0xe8, 0x1d, 0x18, 0xbb, 0x73, 0xbb, 0xda, 0x20, 0x5b, 0x56, 0x9b, 0x88, 0x38, 0xe9, + 0x99, 0x50, 0x8b, 0x01, 0x22, 0x54, 0x09, 0xdb, 0x0a, 0xed, 0xde, 0x37, 0x5a, 0x26, 0x83, 0xcb, + 0x5b, 0xa1, 0x21, 0xb1, 0xfe, 0x6f, 0x19, 0x98, 0xc6, 0xc4, 0xb3, 0xfb, 0x6e, 0xc4, 0x89, 0x2e, + 0xc1, 0xa8, 0xb4, 0x0f, 0xc7, 0xa2, 0x15, 0xb1, 0xcd, 0x1f, 0x86, 0x47, 0x6b, 0x50, 0x5c, 0x7c, + 0xec, 0x58, 0x2e, 0xf1, 0x44, 0xdf, 0xec, 0xb6, 0x32, 0x7b, 0x51, 0xac, 0xcc, 0x66, 0x08, 0x67, + 0x49, 0x2c, 0xca, 0x38, 0x18, 0xbd, 0x06, 0x63, 0xf7, 0x1c, 0xd3, 0xf0, 0x89, 0x59, 0xdb, 0x16, + 0x3e, 0x37, 0x7b, 0x93, 0x3e, 0x07, 0xb6, 0x36, 0xb6, 0xe5, 0x37, 0x09, 0x49, 0xd1, 0x45, 0xc8, + 0xad, 0xaf, 0x2f, 0x8b, 0x4e, 0x63, 0xa7, 0x46, 0x7c, 0x5f, 0xde, 0xff, 0xa5, 0x58, 0xfd, 0x9b, + 0x59, 0x00, 0x6a, 0x1b, 0x75, 0x97, 0x18, 0xfe, 0xd1, 0x0c, 0xf0, 0x1a, 0x94, 0x02, 0x85, 0x0b, + 0xbb, 0xd4, 0x02, 0xde, 0x78, 0x47, 0xc4, 0xdb, 0x0e, 0xf0, 0xd4, 0x89, 0xc2, 0x76, 0x87, 0x45, + 0x91, 0x73, 0xc1, 0x01, 0x1a, 0x97, 0x02, 0x30, 0x87, 0xa3, 0x4f, 0xc3, 0x98, 0x18, 0x8a, 0xb6, + 0x2b, 0x02, 0x9c, 0x7c, 0xa9, 0x15, 0x00, 0x71, 0x84, 0xd7, 0xff, 0x34, 0xc3, 0x95, 0xd2, 0x20, + 0x1d, 0x72, 0x7c, 0x95, 0xa2, 0xff, 0x42, 0x06, 0x10, 0x15, 0xb6, 0x6a, 0x78, 0xde, 0x23, 0xdb, + 0x35, 0xeb, 0x0f, 0x8c, 0xde, 0xe6, 0x91, 0xbc, 0x8e, 0xfe, 0xf5, 0x3c, 0x9c, 0x50, 0x36, 0x8e, + 0x8e, 0xb9, 0xbd, 0x5d, 0x51, 0xed, 0x8d, 0x2d, 0x9a, 0x99, 0xbd, 0xc9, 0x8b, 0x66, 0x6e, 0x79, + 0x9f, 0x80, 0x31, 0xf1, 0xce, 0xcd, 0x86, 0xb0, 0x3c, 0xf6, 0xb9, 0xb5, 0x4c, 0x1c, 0x21, 0xd0, + 0x2b, 0x30, 0x2e, 0x7e, 0xd0, 0x59, 0x37, 0x88, 0x8b, 0x32, 0x3b, 0xf6, 0x28, 0x00, 0x2b, 0x68, + 0xf4, 0x2a, 0x8c, 0x51, 0xe3, 0xdc, 0x64, 0x47, 0x8e, 0x8a, 0xd1, 0xc9, 0x1c, 0x33, 0x00, 0xca, + 0x53, 0x42, 0x48, 0x49, 0xa7, 0x72, 0x11, 0xe3, 0x2f, 0x45, 0x53, 0x39, 0x8f, 0xf1, 0xcb, 0x53, + 0xb9, 0x88, 0xf6, 0xbf, 0x0f, 0xe5, 0x6a, 0xaf, 0x67, 0xf3, 0xa3, 0x6f, 0x9e, 0x08, 0x64, 0xed, + 0x38, 0x87, 0x5f, 0x64, 0xe7, 0x45, 0x22, 0xfa, 0xd4, 0x49, 0x5c, 0x16, 0x88, 0x16, 0x68, 0x47, + 0x6c, 0x59, 0xe4, 0x11, 0x71, 0xc5, 0xae, 0x24, 0x0b, 0xe6, 0xb9, 0x02, 0x26, 0x9f, 0x1e, 0x09, + 0xe8, 0x50, 0x0d, 0x26, 0x56, 0x5d, 0xdb, 0xb1, 0x3d, 0x62, 0x72, 0x45, 0x95, 0x19, 0xe3, 0xb9, + 0xe1, 0xa0, 0xa2, 0x39, 0x02, 0xd1, 0x62, 0x1a, 0x93, 0xd8, 0x55, 0x16, 0xfd, 0xdb, 0x99, 0x98, + 0x31, 0x1e, 0xe1, 0x38, 0x57, 0xac, 0x23, 0xb7, 0x83, 0x75, 0xe8, 0xbf, 0x9e, 0x85, 0x32, 0x5d, + 0x27, 0xdc, 0xb6, 0xdd, 0x47, 0x86, 0x7b, 0x34, 0xc1, 0x93, 0x43, 0xdb, 0x4b, 0x91, 0xdc, 0x90, + 0xd1, 0x3d, 0xb8, 0x21, 0xe7, 0x60, 0x94, 0xad, 0xb7, 0xf2, 0xd1, 0x2a, 0x9a, 0xad, 0xb5, 0x18, + 0x54, 0xff, 0xff, 0x59, 0x80, 0x2f, 0x5f, 0xbb, 0xf6, 0x0c, 0x2b, 0x48, 0xff, 0xb5, 0x0c, 0x4c, + 0x89, 0xe8, 0x9a, 0x74, 0xb4, 0xb2, 0x18, 0xc4, 0x45, 0x33, 0x51, 0xd4, 0x50, 0xc4, 0x43, 0x71, + 0x80, 0xa3, 0x23, 0x71, 0xf1, 0xb1, 0xe5, 0xb3, 0x00, 0x83, 0x74, 0xb6, 0x92, 0x08, 0x98, 0x3c, + 0x12, 0x03, 0x3a, 0xf4, 0x4a, 0x10, 0x37, 0xcc, 0x45, 0xd3, 0x0f, 0x65, 0x58, 0x4c, 0x8d, 0x1d, + 0xea, 0xdf, 0x19, 0x85, 0xd1, 0xc5, 0xc7, 0xa4, 0x7d, 0xcc, 0xbb, 0x46, 0x5a, 0x8d, 0x8c, 0x1e, + 0x70, 0x35, 0xb2, 0x9f, 0x8d, 0x90, 0xb7, 0xa2, 0xfe, 0x2c, 0xa8, 0xcd, 0xc7, 0x7a, 0x3e, 0xde, + 0x7c, 0xd0, 0xd3, 0xc7, 0x6f, 0x1f, 0xed, 0xcf, 0x72, 0x90, 0x5b, 0xab, 0xaf, 0x3e, 0xb7, 0x9b, + 0x23, 0xb5, 0x9b, 0xdd, 0x03, 0xcd, 0x7a, 0x18, 0x3b, 0x2a, 0x45, 0x67, 0x07, 0x62, 0x61, 0xa2, + 0x6f, 0x64, 0x61, 0x6c, 0xad, 0xbf, 0xe1, 0x6d, 0x7b, 0x3e, 0xe9, 0x1e, 0xf3, 0xde, 0x3c, 0x27, + 0xd6, 0x83, 0xa3, 0x91, 0x36, 0xe8, 0x7a, 0x50, 0xac, 0x02, 0x2f, 0x06, 0x33, 0xa3, 0xb4, 0xce, + 0x08, 0x67, 0xc6, 0x60, 0x3e, 0xfc, 0x83, 0x2c, 0x4c, 0xd7, 0x3b, 0x16, 0xe9, 0xf9, 0x0d, 0xcb, + 0x6b, 0x1f, 0xc2, 0x49, 0x89, 0xa3, 0xd7, 0xca, 0xc1, 0x02, 0x2d, 0x1f, 0xe3, 0xfc, 0x89, 0xfe, + 0x53, 0x59, 0x28, 0x57, 0xfb, 0xfe, 0x83, 0xaa, 0xcf, 0x3e, 0x2e, 0xcf, 0xe4, 0x67, 0xfe, 0x7b, + 0x19, 0x98, 0xa2, 0x0f, 0xb2, 0x6e, 0x3f, 0x24, 0xbd, 0x43, 0x58, 0x46, 0xc9, 0xcb, 0xa1, 0xec, + 0x3e, 0x97, 0x43, 0x81, 0x2e, 0x73, 0x7b, 0x5c, 0x16, 0xd2, 0x85, 0x36, 0x5d, 0x25, 0x3d, 0x25, + 0xaf, 0x71, 0x08, 0xeb, 0x88, 0xa3, 0x7c, 0x8d, 0x1f, 0x64, 0x60, 0x76, 0xdd, 0xa5, 0x1f, 0x72, + 0x53, 0x7c, 0xcf, 0x8f, 0x79, 0xbf, 0x24, 0x5f, 0xe8, 0x98, 0xf7, 0xd0, 0x8f, 0x32, 0x70, 0x46, + 0x7d, 0xa1, 0xa7, 0x61, 0x16, 0xf8, 0xcb, 0x0c, 0x9c, 0x7c, 0x9b, 0xe5, 0xdb, 0x85, 0x21, 0xb8, + 0xa7, 0xef, 0x8d, 0x8e, 0xb9, 0xe5, 0x7d, 0x3f, 0x03, 0x27, 0x56, 0x9a, 0x8d, 0xfa, 0xd3, 0xd2, + 0x43, 0x89, 0xf7, 0x79, 0x0a, 0xfa, 0x67, 0xad, 0x7a, 0x67, 0xf9, 0x69, 0xea, 0x1f, 0xe5, 0x7d, + 0x8e, 0x79, 0xff, 0xfc, 0x4c, 0x01, 0xca, 0x74, 0x5d, 0x2b, 0x62, 0x7a, 0xcf, 0xb4, 0xa7, 0xbf, + 0x00, 0x65, 0xa1, 0x06, 0xb6, 0xa4, 0xe4, 0xee, 0x3e, 0x3b, 0x53, 0x29, 0x92, 0x55, 0x5b, 0x6c, + 0x69, 0x29, 0x13, 0xd1, 0x15, 0xd7, 0xbb, 0xc4, 0xdd, 0x90, 0xcf, 0xd0, 0x6c, 0x11, 0x77, 0x03, + 0x33, 0x28, 0x5a, 0x8e, 0xf6, 0xec, 0xaa, 0xab, 0x4d, 0x96, 0x63, 0x27, 0x56, 0xaa, 0x2c, 0x69, + 0xd0, 0x15, 0xb8, 0x96, 0xe1, 0x58, 0x3c, 0x3b, 0x4f, 0x3e, 0xbf, 0x17, 0xe7, 0x44, 0x77, 0x61, + 0x26, 0x80, 0x45, 0xc9, 0x72, 0xa5, 0x14, 0x71, 0x69, 0x69, 0x72, 0x49, 0x56, 0xf4, 0x16, 0x8c, + 0x07, 0xc0, 0x2f, 0x59, 0x2c, 0x95, 0x87, 0x8a, 0x7a, 0x61, 0x38, 0xa8, 0x9c, 0x0e, 0x45, 0x3d, + 0xb4, 0x94, 0xf3, 0x89, 0x0a, 0x83, 0x2c, 0x80, 0x2d, 0x3b, 0x21, 0x45, 0x40, 0x6c, 0x3f, 0x52, + 0x61, 0x40, 0xaf, 0x32, 0x01, 0x8e, 0xdd, 0xf3, 0x08, 0x8b, 0xf1, 0x95, 0xd9, 0x01, 0x13, 0xb6, + 0x27, 0xe8, 0x0a, 0x38, 0x3f, 0x46, 0xa4, 0x90, 0xa1, 0x15, 0x80, 0x28, 0x16, 0x23, 0x0e, 0x6b, + 0xee, 0x39, 0x4a, 0x24, 0x89, 0xd0, 0xff, 0x8a, 0xae, 0xdf, 0x1c, 0x27, 0xb4, 0xe4, 0x57, 0xa0, + 0x50, 0x75, 0x9c, 0x7b, 0xb8, 0x29, 0xa2, 0x93, 0xec, 0x2c, 0xa1, 0xe1, 0x38, 0xad, 0xbe, 0x6b, + 0xc9, 0x1b, 0x12, 0x9c, 0x08, 0xd5, 0x61, 0xa2, 0xea, 0x38, 0xab, 0xfd, 0x8d, 0x8e, 0xd5, 0x96, + 0x32, 0x55, 0x79, 0xba, 0xb3, 0xe3, 0xb4, 0x1c, 0x86, 0x89, 0xe7, 0xf9, 0xaa, 0x3c, 0xe8, 0x7d, + 0x18, 0xab, 0x3a, 0x8e, 0xc8, 0xf3, 0xcd, 0xb1, 0x3c, 0x5f, 0x3d, 0x78, 0x27, 0xe9, 0xd9, 0xe6, + 0x42, 0x22, 0x9e, 0xe1, 0x7b, 0x4e, 0xec, 0xd6, 0xce, 0xd2, 0x86, 0x12, 0xe9, 0xbd, 0x91, 0x48, + 0xf4, 0x19, 0x28, 0x56, 0x1d, 0x47, 0x0a, 0x0f, 0xb0, 0x50, 0x2a, 0xe5, 0x8a, 0x75, 0x51, 0x40, + 0x76, 0xf6, 0x0d, 0x98, 0x54, 0x1b, 0xdb, 0x53, 0x2a, 0xf0, 0x7f, 0x66, 0xd8, 0x0b, 0x1d, 0xf3, + 0x0d, 0xb5, 0xeb, 0x90, 0xab, 0x3a, 0x8e, 0x98, 0x4e, 0x4e, 0xa4, 0xf4, 0x47, 0xfc, 0xb4, 0x56, + 0xd5, 0x71, 0x82, 0x57, 0xe7, 0x5b, 0xde, 0xcf, 0xd6, 0xab, 0x7f, 0x97, 0xbf, 0xfa, 0x31, 0xdf, + 0xa1, 0xfe, 0x4e, 0x0e, 0xa6, 0xaa, 0x8e, 0xf3, 0x3c, 0x43, 0xf6, 0xb0, 0xce, 0x84, 0x5d, 0x03, + 0x90, 0xa6, 0xc7, 0x62, 0x78, 0xf4, 0xa3, 0x2c, 0x4d, 0x8d, 0x5a, 0x06, 0x4b, 0x44, 0x81, 0xf9, + 0x95, 0xf6, 0x64, 0x7e, 0x7f, 0xa2, 0x74, 0x1c, 0xcb, 0xf6, 0x7b, 0xde, 0x71, 0xf9, 0x03, 0x79, + 0x54, 0x93, 0xb2, 0x32, 0xc5, 0x81, 0x6f, 0xb1, 0x43, 0x1f, 0xa4, 0x1f, 0xb4, 0x29, 0xaa, 0x65, + 0x99, 0x38, 0x46, 0x1b, 0xf4, 0x61, 0x71, 0x4f, 0x7d, 0xf8, 0xad, 0x2c, 0xcc, 0x44, 0x7d, 0x78, + 0x18, 0x8e, 0xe9, 0x3c, 0x00, 0x0f, 0x52, 0x86, 0x1b, 0x89, 0x13, 0xfc, 0xa4, 0xb2, 0xc7, 0xa0, + 0xe2, 0xa4, 0x72, 0x44, 0x12, 0xee, 0x2a, 0xe4, 0x52, 0x77, 0x15, 0xae, 0x40, 0x09, 0x1b, 0x8f, + 0xde, 0xe9, 0x13, 0x77, 0x5b, 0x7c, 0x4a, 0x59, 0x28, 0xdd, 0x35, 0x1e, 0xb5, 0xbe, 0x46, 0x81, + 0x38, 0x44, 0x23, 0x3d, 0x3c, 0xa3, 0x26, 0x05, 0x8f, 0xf9, 0x19, 0xb5, 0xf0, 0x64, 0x9a, 0x50, + 0x52, 0x61, 0x4f, 0x4a, 0xfa, 0x51, 0x01, 0xa6, 0x1b, 0x86, 0x6f, 0x6c, 0x18, 0x1e, 0x91, 0x16, + 0x12, 0x53, 0x01, 0x8c, 0x1a, 0x82, 0x15, 0x56, 0x47, 0x61, 0xe7, 0xb2, 0xcc, 0x8d, 0x96, 0xc7, + 0xa1, 0x72, 0x39, 0x89, 0x18, 0x03, 0xfa, 0x7c, 0x24, 0x37, 0xac, 0x9f, 0xc1, 0xdd, 0x19, 0xa6, + 0x31, 0x73, 0xa3, 0xe5, 0x08, 0x30, 0x4e, 0x10, 0xa2, 0xab, 0x50, 0x0e, 0x60, 0xd4, 0x79, 0xca, + 0x45, 0xef, 0x6c, 0x6e, 0x50, 0xdf, 0x09, 0xcb, 0x68, 0xf4, 0x39, 0x18, 0x0f, 0x7e, 0x4a, 0x6e, + 0x09, 0xf3, 0xb5, 0xcc, 0x8d, 0x84, 0xe3, 0x28, 0x93, 0xca, 0xac, 0x6c, 0x7c, 0xe6, 0x15, 0xd6, + 0x58, 0xed, 0x1c, 0x85, 0x14, 0x7d, 0x0d, 0x26, 0x83, 0xdf, 0xc2, 0xd9, 0x2a, 0x30, 0x67, 0xeb, + 0x6a, 0xa0, 0xf9, 0xb8, 0x5a, 0xe7, 0x54, 0x72, 0xee, 0x76, 0xbd, 0x20, 0xdc, 0xae, 0x13, 0xe6, + 0x46, 0xd2, 0xeb, 0x8a, 0x35, 0x80, 0x9a, 0x30, 0x13, 0x40, 0xaa, 0xef, 0xad, 0x61, 0xb2, 0x49, + 0x47, 0x65, 0x31, 0x72, 0x96, 0xcd, 0x8d, 0x16, 0xab, 0xaa, 0xc3, 0x10, 0xb2, 0xcf, 0x9e, 0xe0, + 0x42, 0x1d, 0x38, 0xa7, 0x00, 0x4d, 0xef, 0x81, 0x75, 0xdf, 0x17, 0x9e, 0x6e, 0xb3, 0x21, 0x96, + 0x03, 0xac, 0xec, 0x44, 0x28, 0x95, 0xd3, 0x04, 0x75, 0x49, 0x5a, 0x4a, 0x89, 0xa6, 0x5d, 0xa5, + 0xa1, 0x35, 0x98, 0x0d, 0xf0, 0x6f, 0xd7, 0x57, 0x57, 0x5d, 0xfb, 0xab, 0xa4, 0xed, 0x37, 0x1b, + 0x62, 0xa5, 0xc0, 0x52, 0x90, 0xcc, 0x8d, 0xd6, 0x66, 0xdb, 0xa1, 0x46, 0x41, 0x71, 0xaa, 0xf0, + 0x54, 0x66, 0xf4, 0x2e, 0x9c, 0x94, 0xe0, 0xcd, 0x9e, 0xe7, 0x1b, 0xbd, 0x36, 0x69, 0x36, 0xc4, + 0xf2, 0x81, 0x2d, 0x65, 0x84, 0x54, 0x4b, 0x20, 0x55, 0xb1, 0xe9, 0xec, 0x67, 0xab, 0x70, 0x22, + 0xa5, 0xa7, 0xf6, 0xe4, 0xb3, 0x7e, 0x23, 0x1b, 0x19, 0xc7, 0x31, 0x77, 0x5c, 0x6b, 0x50, 0x0a, + 0xde, 0x44, 0x7c, 0x42, 0xb4, 0x9d, 0x0c, 0x3c, 0x2e, 0x23, 0xc0, 0x2b, 0xea, 0x38, 0xe6, 0xce, + 0xec, 0x61, 0xa8, 0xe3, 0xc3, 0x4c, 0xa4, 0x8e, 0x63, 0xee, 0xe0, 0x7e, 0x3f, 0x17, 0x8d, 0xec, + 0xe7, 0x5e, 0xee, 0x61, 0x39, 0x4b, 0xd1, 0xc6, 0x69, 0x61, 0x0f, 0x07, 0xc8, 0x64, 0xd3, 0x2c, + 0xee, 0xd3, 0x34, 0xff, 0x36, 0xd9, 0x9f, 0xdc, 0x01, 0x39, 0x96, 0xfd, 0x79, 0x08, 0x83, 0x15, + 0x2d, 0xc0, 0x44, 0xf0, 0x3f, 0xf7, 0xd4, 0xf2, 0x52, 0x3e, 0xd4, 0x86, 0x70, 0xd4, 0x54, 0x12, + 0xf4, 0xff, 0xe0, 0xb4, 0x02, 0x58, 0x35, 0x5c, 0xa3, 0x4b, 0x7c, 0xe2, 0x72, 0x1f, 0x41, 0x54, + 0xba, 0x0a, 0xb8, 0x5b, 0x4e, 0x88, 0x96, 0x8b, 0x45, 0xed, 0x20, 0x41, 0x32, 0x8e, 0xe2, 0x1e, + 0x76, 0xd5, 0xff, 0x29, 0x0b, 0x13, 0xab, 0xb6, 0xe7, 0x6f, 0xba, 0xc4, 0x5b, 0x35, 0x5c, 0x8f, + 0x3c, 0xbb, 0x3d, 0xfa, 0x59, 0x98, 0x60, 0xe7, 0x64, 0xbb, 0xa4, 0xe7, 0x4b, 0x25, 0xb0, 0x78, + 0x8d, 0x86, 0x00, 0xc1, 0xdc, 0x46, 0xac, 0x12, 0xa2, 0x0a, 0xe4, 0xb9, 0x0d, 0x48, 0xa7, 0x97, + 0xb9, 0x01, 0x70, 0xb8, 0xfe, 0xad, 0x1c, 0x8c, 0x07, 0x5a, 0xae, 0x59, 0xc7, 0x35, 0x0b, 0xf8, + 0x68, 0x95, 0x3c, 0x0f, 0xb0, 0x6a, 0xbb, 0xbe, 0xd1, 0x91, 0xaa, 0x6f, 0xb2, 0x25, 0x83, 0xc3, + 0xa0, 0x9c, 0x47, 0x22, 0x41, 0x73, 0x00, 0xd2, 0x00, 0x2b, 0xb2, 0x01, 0x36, 0x39, 0x1c, 0x54, + 0x20, 0x1a, 0x57, 0x58, 0xa2, 0xd0, 0xff, 0x28, 0x0b, 0x53, 0x41, 0x27, 0x2d, 0x3e, 0x26, 0xed, + 0xbe, 0xff, 0x0c, 0x0f, 0x06, 0x55, 0xdb, 0xf9, 0x27, 0x6a, 0x5b, 0xff, 0x77, 0x69, 0x22, 0xa9, + 0x77, 0xec, 0xe7, 0x13, 0xc9, 0xff, 0x85, 0x8d, 0xeb, 0x3f, 0x9b, 0x83, 0xd9, 0x40, 0xeb, 0xb7, + 0xfb, 0x3d, 0xe6, 0x26, 0xd4, 0x8d, 0x4e, 0xe7, 0x59, 0xfe, 0x2e, 0x97, 0x03, 0x45, 0xac, 0x88, + 0xc4, 0x93, 0x09, 0xbe, 0xc9, 0x76, 0x5f, 0x80, 0x5b, 0xb6, 0x65, 0x62, 0x99, 0x08, 0xbd, 0x05, + 0xe3, 0xc1, 0xcf, 0xaa, 0xbb, 0x19, 0x7c, 0x8c, 0xd9, 0xd2, 0x39, 0x64, 0x32, 0xdc, 0x4d, 0xa5, + 0xae, 0xa9, 0xcc, 0xa0, 0xff, 0x6b, 0x1e, 0xce, 0xbe, 0x67, 0xf5, 0x4c, 0xfb, 0x91, 0xd7, 0x20, + 0xde, 0x43, 0xdf, 0x7e, 0x0a, 0x42, 0xbb, 0x87, 0x57, 0x03, 0x27, 0xf2, 0x4c, 0xf2, 0x7b, 0x70, + 0x5b, 0xdf, 0x81, 0x93, 0x71, 0x95, 0xba, 0x61, 0xbe, 0xa3, 0xe8, 0x9d, 0x47, 0x9c, 0xa0, 0x65, + 0x72, 0x8a, 0x20, 0xfe, 0x84, 0xd3, 0x39, 0xa9, 0x6d, 0x08, 0x88, 0x14, 0x26, 0x66, 0xb6, 0x11, + 0x08, 0x60, 0x99, 0x15, 0x32, 0x11, 0xfa, 0x14, 0x14, 0x1a, 0x76, 0xd7, 0xb0, 0x82, 0x23, 0xbe, + 0x6c, 0x14, 0x87, 0xed, 0x32, 0x0c, 0x16, 0x14, 0x54, 0xbe, 0x68, 0x98, 0x75, 0xd9, 0x58, 0x24, + 0x3f, 0x60, 0xe8, 0x7b, 0xc4, 0xc5, 0x32, 0x11, 0xb2, 0x61, 0x42, 0x34, 0x27, 0xa2, 0x45, 0xc0, + 0xa2, 0x45, 0xaf, 0x06, 0x3a, 0xda, 0xd9, 0xac, 0xe6, 0x14, 0x3e, 0x1e, 0x36, 0x62, 0x4f, 0x17, + 0xbc, 0x0c, 0x8f, 0x1b, 0x61, 0x55, 0xfe, 0xd9, 0x5b, 0x80, 0x92, 0x8c, 0x7b, 0x8a, 0x62, 0xfc, + 0x62, 0x16, 0x50, 0x6c, 0x31, 0xb0, 0xf8, 0x0c, 0xfb, 0x34, 0xfa, 0xef, 0x65, 0x60, 0x26, 0x91, + 0x75, 0x8b, 0xae, 0x03, 0x70, 0x88, 0x94, 0x41, 0xcb, 0xf2, 0xe5, 0xa2, 0x4c, 0x5c, 0x31, 0x9f, + 0x47, 0x64, 0x68, 0x1e, 0x4a, 0xfc, 0x57, 0x58, 0x3c, 0x3a, 0xce, 0xd2, 0xef, 0x5b, 0x26, 0x0e, + 0x89, 0xa2, 0x56, 0x58, 0x19, 0xf5, 0x5c, 0x2a, 0x8b, 0xbf, 0xed, 0x84, 0xad, 0x50, 0x32, 0xfd, + 0xbb, 0x19, 0x18, 0x0f, 0x1f, 0xb8, 0x6a, 0x1e, 0x55, 0xd7, 0x15, 0x44, 0x02, 0x73, 0xee, 0x49, + 0x09, 0xcc, 0xb1, 0x09, 0x42, 0x64, 0x2c, 0xff, 0x79, 0x06, 0xa6, 0x42, 0xda, 0x23, 0x8c, 0x97, + 0x1c, 0xf8, 0x45, 0x7e, 0x29, 0x03, 0x5a, 0xcd, 0xea, 0x74, 0xac, 0xde, 0x66, 0xb3, 0x77, 0xdf, + 0x76, 0xbb, 0x2c, 0x4f, 0xf0, 0xe8, 0x02, 0x62, 0xfa, 0xcf, 0x67, 0x60, 0x46, 0x3c, 0x50, 0xdd, + 0x70, 0xcd, 0xa3, 0x8b, 0x54, 0xc6, 0x9f, 0xe4, 0xe8, 0x7a, 0x99, 0x9d, 0x75, 0x5e, 0xb6, 0xdb, + 0x0f, 0x9f, 0x82, 0x23, 0xdb, 0xf4, 0x35, 0x8e, 0xf9, 0xb1, 0xb2, 0xaf, 0x67, 0x60, 0x16, 0x93, + 0xb6, 0xbd, 0x45, 0xdc, 0xed, 0xba, 0x6d, 0x92, 0xb7, 0x49, 0x8f, 0xb8, 0x47, 0x65, 0xa4, 0x7f, + 0xcc, 0x4a, 0x27, 0x44, 0x0f, 0x73, 0xcf, 0x23, 0xe6, 0xf1, 0xa9, 0x73, 0xa1, 0xff, 0xcb, 0x28, + 0x68, 0xa9, 0x5e, 0xc6, 0xb1, 0xfd, 0xa8, 0xef, 0xe8, 0x3a, 0x8e, 0x1e, 0x96, 0xeb, 0x98, 0xdf, + 0x9b, 0xeb, 0x58, 0xd8, 0xab, 0xeb, 0x58, 0xfc, 0x38, 0xae, 0x63, 0x37, 0xee, 0x3a, 0x96, 0x98, + 0xeb, 0x78, 0x7d, 0x57, 0xd7, 0x71, 0xb1, 0x67, 0x1e, 0x99, 0xe3, 0xf8, 0x83, 0x0c, 0xcc, 0xd4, + 0x89, 0xeb, 0x5b, 0xf7, 0xad, 0xb6, 0xe1, 0x1f, 0xc6, 0x0e, 0x58, 0x15, 0xa6, 0x24, 0x81, 0xd2, + 0x55, 0x32, 0x2c, 0x2d, 0xb7, 0x4d, 0x5c, 0x9f, 0x79, 0x3f, 0xf2, 0x86, 0x74, 0x8c, 0x9e, 0x36, + 0x1f, 0x54, 0x58, 0x11, 0xe6, 0x16, 0x36, 0x1f, 0xc0, 0x79, 0x54, 0xd7, 0x12, 0xbf, 0x70, 0x48, + 0xaf, 0xff, 0xcf, 0x45, 0xc8, 0xaf, 0xf4, 0xc8, 0xca, 0x7d, 0x74, 0x4d, 0xaa, 0x71, 0x23, 0xde, + 0x62, 0x46, 0x36, 0x78, 0x86, 0x58, 0x1a, 0xc1, 0x52, 0x25, 0x9c, 0x1b, 0x72, 0x05, 0x12, 0x31, + 0x48, 0x90, 0xcc, 0xc3, 0x31, 0x4b, 0x23, 0x58, 0xae, 0x54, 0x72, 0x43, 0x2e, 0xd1, 0x21, 0x1e, + 0x58, 0xe1, 0xe2, 0x98, 0x80, 0x4b, 0xcc, 0xf3, 0xcb, 0x69, 0x15, 0x31, 0xe2, 0x8b, 0xba, 0x24, + 0xc5, 0xd2, 0x08, 0x4e, 0xaf, 0xa4, 0xa1, 0x14, 0xf7, 0x17, 0xcb, 0xba, 0xd9, 0xd8, 0x28, 0x65, + 0xb8, 0xa5, 0x11, 0xac, 0x5e, 0x04, 0x70, 0x53, 0x29, 0x9b, 0x1e, 0x3f, 0x95, 0x20, 0xa1, 0x96, + 0x46, 0x70, 0xac, 0xc0, 0xba, 0x52, 0xc3, 0x5b, 0x44, 0xb9, 0xe3, 0x8d, 0x32, 0x9c, 0xd4, 0x28, + 0xaf, 0xf7, 0xfd, 0x66, 0xac, 0xe0, 0xb5, 0x38, 0xf5, 0x73, 0x32, 0xc6, 0xcc, 0x91, 0x4b, 0x23, + 0x38, 0x56, 0x1e, 0xfb, 0x72, 0x50, 0x03, 0x59, 0xd4, 0x82, 0x98, 0x94, 0xbe, 0x73, 0xd6, 0x07, + 0x54, 0x4b, 0x41, 0x8d, 0xe4, 0x1b, 0x72, 0xed, 0x5b, 0x51, 0xa5, 0x14, 0xc5, 0x5a, 0x59, 0xec, + 0x99, 0xb4, 0x77, 0xa4, 0x49, 0xf6, 0x56, 0xbc, 0x4a, 0xa4, 0xa8, 0x3d, 0x7a, 0x2a, 0xc6, 0x29, + 0xb0, 0x4b, 0x23, 0x38, 0x5e, 0x55, 0xf2, 0xa6, 0x52, 0xa1, 0x50, 0x1c, 0x59, 0x8d, 0x6b, 0x95, + 0xa2, 0x24, 0xad, 0xb2, 0x5a, 0x86, 0xb7, 0xe2, 0x25, 0xf3, 0xb4, 0x89, 0xd4, 0xa6, 0x05, 0x56, + 0x6a, 0x3a, 0x28, 0xb1, 0x77, 0x53, 0x29, 0x6d, 0xc6, 0xaa, 0x87, 0xa6, 0x34, 0x6d, 0xf8, 0x86, + 0xdc, 0x34, 0x2f, 0x82, 0xa6, 0x14, 0xd9, 0xd2, 0xa6, 0x52, 0x3b, 0x94, 0xe1, 0xa4, 0x0e, 0xe5, + 0x05, 0xb9, 0x6e, 0x2a, 0x75, 0x21, 0xb4, 0x69, 0xb5, 0x51, 0x09, 0x45, 0x1b, 0x95, 0x2b, 0x48, + 0xdc, 0x90, 0xcb, 0x25, 0x68, 0x33, 0x6a, 0x07, 0x45, 0x18, 0xda, 0x41, 0x52, 0x59, 0x85, 0x0a, + 0x4b, 0xc5, 0xd6, 0x10, 0x23, 0x2f, 0x87, 0x4f, 0x58, 0x5f, 0x5d, 0x1a, 0xc1, 0x2c, 0x49, 0x5b, + 0xe7, 0x49, 0xfe, 0xda, 0x09, 0x46, 0x31, 0x1e, 0x96, 0x90, 0x7b, 0x4c, 0xda, 0x4b, 0x23, 0x98, + 0x17, 0x00, 0xb8, 0x26, 0xe5, 0x01, 0x6b, 0xb3, 0xea, 0x14, 0x11, 0x22, 0xe8, 0x14, 0x11, 0x65, + 0x0b, 0xdf, 0x4e, 0xe6, 0xca, 0x6a, 0x27, 0x55, 0x57, 0x2b, 0x8e, 0x5f, 0x1a, 0xc1, 0xc9, 0xfc, + 0xda, 0x9b, 0x4a, 0xfa, 0xa8, 0x76, 0x2a, 0x76, 0x14, 0x28, 0x42, 0x51, 0x75, 0xc9, 0x89, 0xa6, + 0x2b, 0xa9, 0xe5, 0x6b, 0xb4, 0xd3, 0x4c, 0xc0, 0x0b, 0xa1, 0x80, 0x24, 0xc9, 0xd2, 0x08, 0x4e, + 0x2d, 0x7c, 0x53, 0x4f, 0x24, 0x71, 0x6a, 0x9a, 0xfa, 0x8d, 0x8f, 0xa1, 0x97, 0x46, 0x70, 0x22, + 0xed, 0xf3, 0x86, 0x9c, 0x3d, 0xa9, 0x9d, 0x51, 0x3b, 0x31, 0xc2, 0xd0, 0x4e, 0x94, 0xb2, 0x2c, + 0x6f, 0xc8, 0xc9, 0x8a, 0xda, 0xd9, 0x24, 0x57, 0x34, 0x73, 0x4a, 0x49, 0x8d, 0x38, 0x3d, 0x37, + 0x50, 0x7b, 0x81, 0xf1, 0x9f, 0x0b, 0xf8, 0xd3, 0x68, 0x96, 0x46, 0x70, 0x7a, 0x5e, 0x21, 0x4e, + 0x4f, 0xcf, 0xd3, 0xce, 0xed, 0x26, 0x33, 0x7c, 0xba, 0xf4, 0xd4, 0x3e, 0x63, 0x97, 0x0c, 0x39, + 0xed, 0x45, 0xf5, 0x08, 0xfb, 0x8e, 0x84, 0x4b, 0x23, 0x78, 0x97, 0x3c, 0xbb, 0x7b, 0x3b, 0xa4, + 0xab, 0x69, 0xe7, 0xd5, 0x62, 0x07, 0xa9, 0x44, 0x4b, 0x23, 0x78, 0x87, 0x64, 0xb7, 0x7b, 0x3b, + 0xe4, 0x8c, 0x69, 0x95, 0x5d, 0xc5, 0x86, 0xfa, 0xd8, 0x21, 0xe3, 0x6c, 0x25, 0x35, 0x71, 0x4b, + 0xbb, 0xa0, 0x9a, 0x6e, 0x0a, 0x09, 0x35, 0xdd, 0xb4, 0x94, 0xaf, 0x95, 0xd4, 0xcc, 0x29, 0xed, + 0xa5, 0x5d, 0x04, 0x86, 0xcf, 0x98, 0x9a, 0x73, 0xb5, 0x92, 0x9a, 0xba, 0xa4, 0xe9, 0xaa, 0xc0, + 0x14, 0x12, 0x2a, 0x30, 0x2d, 0xe9, 0x69, 0x25, 0x35, 0x77, 0x48, 0xbb, 0xb8, 0x8b, 0xc0, 0xe8, + 0x09, 0xd3, 0xb2, 0x8e, 0x6e, 0x2a, 0xc9, 0x3b, 0xda, 0x27, 0xd4, 0x79, 0x43, 0x42, 0xd1, 0x79, + 0x43, 0x4e, 0xf3, 0xa9, 0x27, 0xce, 0x37, 0x6b, 0x9f, 0x54, 0x87, 0x79, 0x0c, 0x4d, 0x87, 0x79, + 0xfc, 0x44, 0x74, 0x3d, 0x71, 0xd6, 0x56, 0xbb, 0xb4, 0x93, 0x10, 0x86, 0x56, 0x85, 0xf0, 0xd3, + 0xb9, 0xcd, 0x94, 0xc3, 0x9e, 0xda, 0xcb, 0x6a, 0xa0, 0x26, 0x41, 0xb0, 0x34, 0x82, 0x53, 0x8e, + 0x88, 0xe2, 0xf4, 0x33, 0x2d, 0xda, 0x65, 0x75, 0xd8, 0xa6, 0xd1, 0xd0, 0x61, 0x9b, 0x7a, 0x1e, + 0x66, 0x39, 0x2d, 0x94, 0xaa, 0x5d, 0x51, 0x1d, 0xb3, 0x24, 0x05, 0x75, 0xcc, 0x52, 0x42, 0xb0, + 0x38, 0xfd, 0x94, 0x86, 0xf6, 0xa9, 0x5d, 0x9f, 0x90, 0xd1, 0xa4, 0x3c, 0x21, 0x3f, 0xb4, 0x10, + 0xf9, 0x4e, 0xf7, 0x9c, 0x8e, 0x6d, 0x98, 0xda, 0xa7, 0x53, 0x7d, 0x27, 0x8e, 0x94, 0x7c, 0x27, + 0x0e, 0xa0, 0x5f, 0x79, 0x39, 0xd4, 0xa8, 0x5d, 0x55, 0xbf, 0xf2, 0x32, 0x8e, 0x7e, 0xe5, 0x95, + 0xb0, 0x64, 0x3d, 0x11, 0xe0, 0xd3, 0x5e, 0x51, 0x0d, 0x20, 0x86, 0xa6, 0x06, 0x10, 0x0f, 0x09, + 0xbe, 0xbf, 0x73, 0x70, 0x4d, 0x9b, 0x63, 0xd2, 0x2e, 0x84, 0x45, 0x72, 0x77, 0xa0, 0x5b, 0x1a, + 0xc1, 0x3b, 0x07, 0xe8, 0x9a, 0x29, 0xb1, 0x32, 0x6d, 0x5e, 0x35, 0xb0, 0x04, 0x01, 0x35, 0xb0, + 0x64, 0x84, 0xad, 0x99, 0x12, 0xec, 0xd2, 0x3e, 0xb3, 0xa3, 0xa8, 0xf0, 0x9d, 0x53, 0x42, 0x64, + 0x37, 0xe4, 0x68, 0x95, 0x76, 0x4d, 0xfd, 0xd8, 0x45, 0x18, 0xfa, 0xb1, 0x93, 0xa2, 0x5a, 0x37, + 0xe4, 0xe0, 0x90, 0xb6, 0x90, 0xe4, 0x8a, 0x3e, 0x91, 0x52, 0x10, 0x09, 0xa7, 0xc7, 0x62, 0xb4, + 0xeb, 0xaa, 0xd5, 0xa5, 0xd1, 0x50, 0xab, 0x4b, 0x8d, 0xe3, 0xdc, 0x4e, 0x86, 0x54, 0xb4, 0x1b, + 0xf1, 0x20, 0x93, 0x8a, 0xa7, 0x9e, 0x4f, 0x22, 0x0c, 0x73, 0x2b, 0x7e, 0xe0, 0x52, 0x7b, 0x55, + 0xf5, 0x6f, 0x55, 0x2c, 0xf5, 0x6f, 0x63, 0x07, 0x34, 0x6f, 0xc5, 0xcf, 0x28, 0x6a, 0xaf, 0xa5, + 0x4b, 0x08, 0x6d, 0x25, 0x7e, 0xa6, 0xf1, 0x56, 0xfc, 0x58, 0x9f, 0x76, 0x33, 0x5d, 0x42, 0xa8, + 0xdd, 0xf8, 0x31, 0xc0, 0x6b, 0x52, 0xaa, 0x93, 0xf6, 0x59, 0xd5, 0x75, 0x0c, 0x11, 0xd4, 0x75, + 0x8c, 0x12, 0xa2, 0xae, 0x49, 0x29, 0x42, 0xda, 0xe7, 0x12, 0x2c, 0xe1, 0xc3, 0x4a, 0x89, 0x44, + 0xd7, 0xa4, 0xd4, 0x1a, 0xed, 0xf5, 0x04, 0x4b, 0xf8, 0x74, 0x52, 0x02, 0x8e, 0xb9, 0xdb, 0xbe, + 0xa7, 0xf6, 0x79, 0x26, 0x43, 0x7f, 0xf2, 0x56, 0xd6, 0xd2, 0x08, 0xde, 0x6d, 0xff, 0xf4, 0xfd, + 0x9d, 0x03, 0x54, 0xda, 0x1b, 0xea, 0x10, 0xde, 0x89, 0x8e, 0x0e, 0xe1, 0x1d, 0x83, 0x5c, 0x6f, + 0xc6, 0xce, 0x40, 0x69, 0x6f, 0xaa, 0x53, 0x9c, 0x82, 0xa4, 0x53, 0x5c, 0xfc, 0xc4, 0x94, 0x72, + 0xb8, 0x47, 0xfb, 0x82, 0x3a, 0xc5, 0xc9, 0x38, 0x3a, 0xc5, 0x29, 0x07, 0x81, 0xea, 0x89, 0x33, + 0x27, 0xda, 0x5b, 0xea, 0x14, 0x17, 0x43, 0xd3, 0x29, 0x2e, 0x7e, 0x4a, 0xe5, 0xcd, 0xd8, 0xd1, + 0x0b, 0xed, 0x56, 0xfa, 0xf3, 0x33, 0xa4, 0xfc, 0xfc, 0xfc, 0xa0, 0x06, 0x4e, 0x3f, 0x43, 0xa0, + 0x55, 0xd5, 0xf1, 0x9b, 0x46, 0x43, 0xc7, 0x6f, 0xea, 0xf9, 0x83, 0x95, 0xd4, 0x52, 0x83, 0x5a, + 0x6d, 0x97, 0x85, 0x43, 0xe4, 0x8a, 0xa4, 0x15, 0x29, 0xbc, 0x15, 0xbf, 0x5e, 0x49, 0xab, 0xef, + 0xb0, 0x46, 0x0e, 0x96, 0x41, 0xf1, 0xeb, 0x98, 0x9a, 0x29, 0xc1, 0x27, 0xad, 0xa1, 0xce, 0xae, + 0x09, 0x02, 0x3a, 0xbb, 0x26, 0x80, 0xb5, 0x22, 0xe4, 0x59, 0x75, 0x70, 0xfd, 0x37, 0x32, 0x30, + 0xbe, 0xe6, 0xbb, 0xc4, 0xe8, 0x8a, 0x5d, 0xeb, 0xb3, 0x50, 0xe2, 0x1f, 0xbe, 0xe0, 0x4a, 0x5f, + 0x1c, 0xfe, 0x46, 0x97, 0x60, 0x72, 0xd9, 0xf0, 0x7c, 0xc6, 0x29, 0xdd, 0x1e, 0x86, 0x63, 0x50, + 0xb4, 0xcc, 0xe9, 0x38, 0x1f, 0xbb, 0xee, 0x24, 0xf7, 0xc4, 0xa2, 0xba, 0xa5, 0x0f, 0x07, 0x95, + 0x11, 0x56, 0x3f, 0x37, 0xc6, 0xab, 0x0f, 0x33, 0x90, 0xf8, 0x24, 0xef, 0x3f, 0xe0, 0xb6, 0x92, + 0xb8, 0xc6, 0x58, 0x44, 0xae, 0x3e, 0x66, 0x8c, 0x36, 0x71, 0x09, 0xf2, 0x45, 0xc8, 0xdd, 0x6b, + 0x36, 0xe4, 0x6a, 0xbd, 0xea, 0x1d, 0xcf, 0x14, 0x8b, 0x5e, 0x0e, 0xc3, 0x2a, 0xf7, 0xf0, 0xb2, + 0x08, 0xbe, 0xb2, 0x1b, 0x45, 0xfa, 0x6e, 0x07, 0x4b, 0x28, 0xfd, 0x7b, 0xe5, 0x28, 0x9a, 0xf7, + 0xb1, 0x6f, 0x3d, 0x8e, 0x5f, 0x65, 0x9c, 0xdd, 0xe3, 0x55, 0xc6, 0x61, 0x51, 0xd4, 0xdc, 0x13, + 0x8b, 0xa2, 0x5e, 0x81, 0xfc, 0x3d, 0x8f, 0x5f, 0xdf, 0x19, 0x92, 0xf6, 0x63, 0x37, 0x88, 0x70, + 0x0a, 0x74, 0x15, 0x0a, 0x2c, 0x4e, 0x18, 0x5c, 0x6e, 0xcc, 0x32, 0xa2, 0xd8, 0x65, 0xcc, 0xb2, + 0x5c, 0x41, 0x93, 0x7a, 0x4b, 0x6b, 0x61, 0x9f, 0xb7, 0xb4, 0xa6, 0x5d, 0x1e, 0x5b, 0xdc, 0xdf, + 0xe5, 0xb1, 0xcd, 0xa8, 0x30, 0x74, 0xe9, 0x89, 0x36, 0x7c, 0x42, 0xe4, 0xbc, 0x14, 0x45, 0x61, + 0x68, 0xb5, 0x1c, 0xf4, 0x6d, 0x98, 0xc4, 0x76, 0xdf, 0x27, 0xeb, 0x76, 0x50, 0xbe, 0x8f, 0x9f, + 0xaf, 0x60, 0xcf, 0xe4, 0x52, 0x4c, 0xcb, 0xb7, 0x53, 0x2e, 0xc7, 0x8d, 0x71, 0xa5, 0xdf, 0xb4, + 0x0b, 0xfb, 0xbf, 0x69, 0xf7, 0xe7, 0x32, 0x50, 0x58, 0x77, 0x0d, 0xcb, 0xf7, 0x44, 0xd4, 0xee, + 0xe4, 0x5c, 0x78, 0x1f, 0x3a, 0x0b, 0x94, 0xbf, 0x6b, 0x74, 0xfa, 0xc4, 0xab, 0xbd, 0x47, 0xdf, + 0xee, 0xef, 0x07, 0x95, 0xcf, 0xef, 0xe7, 0x8a, 0xf5, 0x39, 0xde, 0x02, 0x35, 0x01, 0x9f, 0xfd, + 0x27, 0x9b, 0x00, 0xc7, 0xa1, 0xbb, 0x00, 0xe2, 0x55, 0xab, 0x8e, 0x23, 0x42, 0x80, 0x52, 0x7c, + 0x23, 0xc0, 0x70, 0xc3, 0x0e, 0x15, 0x66, 0x38, 0x8e, 0x72, 0xc3, 0x71, 0x48, 0x47, 0xad, 0x60, + 0x5d, 0x3c, 0x51, 0xa0, 0xa6, 0x89, 0x48, 0xe3, 0xc1, 0xc3, 0xa6, 0x28, 0x29, 0xce, 0x86, 0x36, + 0x60, 0x4a, 0xc8, 0x0d, 0xcf, 0x5a, 0x4c, 0xaa, 0x93, 0x46, 0x0c, 0xcd, 0x8d, 0x36, 0x7c, 0x46, + 0x53, 0x80, 0xe5, 0x36, 0x62, 0x1c, 0xa8, 0x16, 0x9d, 0xc7, 0x66, 0x15, 0x08, 0xb4, 0x29, 0x66, + 0xb1, 0xac, 0x40, 0x6e, 0xc0, 0xcf, 0x0b, 0x17, 0xc8, 0x29, 0xf2, 0x0a, 0x8b, 0x2c, 0x83, 0x5b, + 0xfd, 0x74, 0x8a, 0x8c, 0xb8, 0xcd, 0xab, 0x2c, 0xa8, 0x0e, 0x13, 0xe1, 0x0a, 0xe4, 0x1e, 0x9d, + 0xd9, 0x66, 0xa2, 0x5c, 0xfd, 0xd8, 0x31, 0x0e, 0x59, 0x88, 0xc2, 0x83, 0xae, 0x43, 0x89, 0xc7, + 0xf0, 0x9a, 0x3c, 0xe8, 0x18, 0xec, 0x67, 0x30, 0x58, 0xcb, 0x92, 0x7b, 0x2c, 0x24, 0x44, 0x6f, + 0x42, 0x39, 0xba, 0x23, 0xdd, 0xd3, 0x4e, 0x44, 0x87, 0xd8, 0xe4, 0x2b, 0xd5, 0xe5, 0x47, 0x97, + 0xe9, 0x53, 0x2e, 0x55, 0x9f, 0xdd, 0xc7, 0xa5, 0xea, 0xd4, 0x6a, 0x1a, 0x96, 0x67, 0x74, 0x3a, + 0xf6, 0x23, 0x4c, 0x2c, 0xcf, 0xeb, 0x13, 0x16, 0xb1, 0x2c, 0x71, 0xab, 0x31, 0x05, 0xaa, 0xe5, + 0x72, 0x9c, 0x92, 0x29, 0xa8, 0xb2, 0xe9, 0xff, 0x95, 0x91, 0x0d, 0x3a, 0xac, 0x3d, 0x98, 0x49, + 0xad, 0x3d, 0x78, 0x55, 0xbe, 0x4b, 0x9f, 0x4f, 0xe0, 0xec, 0xac, 0x6f, 0x90, 0x42, 0xaa, 0x5e, + 0xa9, 0x3f, 0xaf, 0xa4, 0x0b, 0xe7, 0xa4, 0x73, 0x96, 0x51, 0xba, 0xb0, 0x92, 0x2c, 0xbc, 0xa0, + 0xde, 0xfd, 0x3f, 0x1a, 0x6d, 0xcf, 0xc9, 0x77, 0xff, 0x2b, 0x37, 0xfe, 0xc7, 0x6e, 0xb8, 0xcf, + 0xef, 0xe5, 0x86, 0x7b, 0xfd, 0xef, 0x32, 0x89, 0x21, 0x43, 0x9f, 0x41, 0xec, 0x46, 0x4a, 0x7a, + 0x60, 0xcf, 0x20, 0xf6, 0x2e, 0xc5, 0x33, 0x48, 0x44, 0xe8, 0xb2, 0x74, 0x4b, 0x79, 0x36, 0x4a, + 0x50, 0x08, 0x53, 0x2c, 0x43, 0x2c, 0x5a, 0x80, 0x12, 0x35, 0x60, 0xe9, 0x16, 0x7a, 0x56, 0xbf, + 0xa1, 0x2f, 0x60, 0xb2, 0xc5, 0x05, 0x74, 0x94, 0x47, 0x39, 0x3c, 0x25, 0x78, 0x52, 0x86, 0x6b, + 0x48, 0xf7, 0xa9, 0x97, 0xa1, 0x2c, 0x5d, 0xac, 0x82, 0xc6, 0xa1, 0xb4, 0x52, 0x5b, 0x5b, 0xc4, + 0xef, 0x2e, 0x36, 0xa6, 0x47, 0x10, 0x40, 0xa1, 0xb1, 0x78, 0xb7, 0xb9, 0xd8, 0x98, 0xce, 0xd4, + 0xa6, 0x3f, 0xfc, 0xc7, 0xf3, 0x23, 0x1f, 0x7e, 0x74, 0x3e, 0xf3, 0xc3, 0x8f, 0xce, 0x67, 0xfe, + 0xe1, 0xa3, 0xf3, 0x99, 0x8d, 0x02, 0x7b, 0xec, 0xeb, 0xff, 0x1b, 0x00, 0x00, 0xff, 0xff, 0x45, + 0x65, 0x03, 0x32, 0x10, 0x83, 0x00, 0x00, } func (m *Metadata) Marshal() (dAtA []byte, err error) { @@ -11387,6 +11683,62 @@ func (m *WindowsDesktopSessionEnd) MarshalToSizedBuffer(dAtA []byte) (int, error return len(dAtA) - i, nil } +func (m *CertificateCreate) 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 *CertificateCreate) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *CertificateCreate) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.XXX_unrecognized != nil { + i -= len(m.XXX_unrecognized) + copy(dAtA[i:], m.XXX_unrecognized) + } + if m.Identity != nil { + { + size, err := m.Identity.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintEvents(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1a + } + if len(m.CertificateType) > 0 { + i -= len(m.CertificateType) + copy(dAtA[i:], m.CertificateType) + i = encodeVarintEvents(dAtA, i, uint64(len(m.CertificateType))) + i-- + dAtA[i] = 0x12 + } + { + size, err := m.Metadata.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintEvents(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + return len(dAtA) - i, nil +} + func (m *OneOf) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -12934,6 +13286,29 @@ func (m *OneOf_SessionConnect) MarshalToSizedBuffer(dAtA []byte) (int, error) { } return len(dAtA) - i, nil } +func (m *OneOf_CertificateCreate) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *OneOf_CertificateCreate) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + if m.CertificateCreate != nil { + { + size, err := m.CertificateCreate.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintEvents(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x4 + i-- + dAtA[i] = 0xa2 + } + return len(dAtA) - i, nil +} func (m *StreamStatus) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -12958,12 +13333,12 @@ func (m *StreamStatus) MarshalToSizedBuffer(dAtA []byte) (int, error) { i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } - n328, err328 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.LastUploadTime, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.LastUploadTime):]) - if err328 != nil { - return 0, err328 + n331, err331 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.LastUploadTime, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.LastUploadTime):]) + if err331 != nil { + return 0, err331 } - i -= n328 - i = encodeVarintEvents(dAtA, i, uint64(n328)) + i -= n331 + i = encodeVarintEvents(dAtA, i, uint64(n331)) i-- dAtA[i] = 0x1a if m.LastEventIndex != 0 { @@ -13042,6 +13417,344 @@ func (m *SessionUpload) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *Identity) 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 *Identity) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *Identity) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.XXX_unrecognized != nil { + i -= len(m.XXX_unrecognized) + copy(dAtA[i:], m.XXX_unrecognized) + } + if m.DisallowReissue { + i-- + if m.DisallowReissue { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x1 + i-- + dAtA[i] = 0xa8 + } + if len(m.AccessRequests) > 0 { + for iNdEx := len(m.AccessRequests) - 1; iNdEx >= 0; iNdEx-- { + i -= len(m.AccessRequests[iNdEx]) + copy(dAtA[i:], m.AccessRequests[iNdEx]) + i = encodeVarintEvents(dAtA, i, uint64(len(m.AccessRequests[iNdEx]))) + i-- + dAtA[i] = 0x1 + i-- + dAtA[i] = 0xa2 + } + } + if len(m.AWSRoleARNs) > 0 { + for iNdEx := len(m.AWSRoleARNs) - 1; iNdEx >= 0; iNdEx-- { + i -= len(m.AWSRoleARNs[iNdEx]) + copy(dAtA[i:], m.AWSRoleARNs[iNdEx]) + i = encodeVarintEvents(dAtA, i, uint64(len(m.AWSRoleARNs[iNdEx]))) + i-- + dAtA[i] = 0x1 + i-- + dAtA[i] = 0x9a + } + } + if len(m.ClientIP) > 0 { + i -= len(m.ClientIP) + copy(dAtA[i:], m.ClientIP) + i = encodeVarintEvents(dAtA, i, uint64(len(m.ClientIP))) + i-- + dAtA[i] = 0x1 + i-- + dAtA[i] = 0x92 + } + if len(m.MFADeviceUUID) > 0 { + i -= len(m.MFADeviceUUID) + copy(dAtA[i:], m.MFADeviceUUID) + i = encodeVarintEvents(dAtA, i, uint64(len(m.MFADeviceUUID))) + i-- + dAtA[i] = 0x1 + i-- + dAtA[i] = 0x8a + } + if len(m.DatabaseUsers) > 0 { + for iNdEx := len(m.DatabaseUsers) - 1; iNdEx >= 0; iNdEx-- { + i -= len(m.DatabaseUsers[iNdEx]) + copy(dAtA[i:], m.DatabaseUsers[iNdEx]) + i = encodeVarintEvents(dAtA, i, uint64(len(m.DatabaseUsers[iNdEx]))) + i-- + dAtA[i] = 0x1 + i-- + dAtA[i] = 0x82 + } + } + if len(m.DatabaseNames) > 0 { + for iNdEx := len(m.DatabaseNames) - 1; iNdEx >= 0; iNdEx-- { + i -= len(m.DatabaseNames[iNdEx]) + copy(dAtA[i:], m.DatabaseNames[iNdEx]) + i = encodeVarintEvents(dAtA, i, uint64(len(m.DatabaseNames[iNdEx]))) + i-- + dAtA[i] = 0x7a + } + } + if m.RouteToDatabase != nil { + { + size, err := m.RouteToDatabase.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintEvents(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x72 + } + if len(m.TeleportCluster) > 0 { + i -= len(m.TeleportCluster) + copy(dAtA[i:], m.TeleportCluster) + i = encodeVarintEvents(dAtA, i, uint64(len(m.TeleportCluster))) + i-- + dAtA[i] = 0x6a + } + if m.RouteToApp != nil { + { + size, err := m.RouteToApp.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintEvents(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x62 + } + { + size := m.Traits.Size() + i -= size + if _, err := m.Traits.MarshalTo(dAtA[i:]); err != nil { + return 0, err + } + i = encodeVarintEvents(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x5a + if len(m.KubernetesCluster) > 0 { + i -= len(m.KubernetesCluster) + copy(dAtA[i:], m.KubernetesCluster) + i = encodeVarintEvents(dAtA, i, uint64(len(m.KubernetesCluster))) + i-- + dAtA[i] = 0x52 + } + if len(m.RouteToCluster) > 0 { + i -= len(m.RouteToCluster) + copy(dAtA[i:], m.RouteToCluster) + i = encodeVarintEvents(dAtA, i, uint64(len(m.RouteToCluster))) + i-- + dAtA[i] = 0x4a + } + n337, err337 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.Expires, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.Expires):]) + if err337 != nil { + return 0, err337 + } + i -= n337 + i = encodeVarintEvents(dAtA, i, uint64(n337)) + i-- + dAtA[i] = 0x42 + if len(m.KubernetesUsers) > 0 { + for iNdEx := len(m.KubernetesUsers) - 1; iNdEx >= 0; iNdEx-- { + i -= len(m.KubernetesUsers[iNdEx]) + copy(dAtA[i:], m.KubernetesUsers[iNdEx]) + i = encodeVarintEvents(dAtA, i, uint64(len(m.KubernetesUsers[iNdEx]))) + i-- + dAtA[i] = 0x3a + } + } + if len(m.KubernetesGroups) > 0 { + for iNdEx := len(m.KubernetesGroups) - 1; iNdEx >= 0; iNdEx-- { + i -= len(m.KubernetesGroups[iNdEx]) + copy(dAtA[i:], m.KubernetesGroups[iNdEx]) + i = encodeVarintEvents(dAtA, i, uint64(len(m.KubernetesGroups[iNdEx]))) + i-- + dAtA[i] = 0x32 + } + } + if len(m.Logins) > 0 { + for iNdEx := len(m.Logins) - 1; iNdEx >= 0; iNdEx-- { + i -= len(m.Logins[iNdEx]) + copy(dAtA[i:], m.Logins[iNdEx]) + i = encodeVarintEvents(dAtA, i, uint64(len(m.Logins[iNdEx]))) + i-- + dAtA[i] = 0x2a + } + } + if len(m.Usage) > 0 { + for iNdEx := len(m.Usage) - 1; iNdEx >= 0; iNdEx-- { + i -= len(m.Usage[iNdEx]) + copy(dAtA[i:], m.Usage[iNdEx]) + i = encodeVarintEvents(dAtA, i, uint64(len(m.Usage[iNdEx]))) + i-- + dAtA[i] = 0x22 + } + } + if len(m.Roles) > 0 { + for iNdEx := len(m.Roles) - 1; iNdEx >= 0; iNdEx-- { + i -= len(m.Roles[iNdEx]) + copy(dAtA[i:], m.Roles[iNdEx]) + i = encodeVarintEvents(dAtA, i, uint64(len(m.Roles[iNdEx]))) + i-- + dAtA[i] = 0x1a + } + } + if len(m.Impersonator) > 0 { + i -= len(m.Impersonator) + copy(dAtA[i:], m.Impersonator) + i = encodeVarintEvents(dAtA, i, uint64(len(m.Impersonator))) + i-- + dAtA[i] = 0x12 + } + if len(m.User) > 0 { + i -= len(m.User) + copy(dAtA[i:], m.User) + i = encodeVarintEvents(dAtA, i, uint64(len(m.User))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *RouteToApp) 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 *RouteToApp) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *RouteToApp) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.XXX_unrecognized != nil { + i -= len(m.XXX_unrecognized) + copy(dAtA[i:], m.XXX_unrecognized) + } + if len(m.AWSRoleARN) > 0 { + i -= len(m.AWSRoleARN) + copy(dAtA[i:], m.AWSRoleARN) + i = encodeVarintEvents(dAtA, i, uint64(len(m.AWSRoleARN))) + i-- + dAtA[i] = 0x2a + } + if len(m.ClusterName) > 0 { + i -= len(m.ClusterName) + copy(dAtA[i:], m.ClusterName) + i = encodeVarintEvents(dAtA, i, uint64(len(m.ClusterName))) + i-- + dAtA[i] = 0x22 + } + if len(m.PublicAddr) > 0 { + i -= len(m.PublicAddr) + copy(dAtA[i:], m.PublicAddr) + i = encodeVarintEvents(dAtA, i, uint64(len(m.PublicAddr))) + i-- + dAtA[i] = 0x1a + } + if len(m.SessionID) > 0 { + i -= len(m.SessionID) + copy(dAtA[i:], m.SessionID) + i = encodeVarintEvents(dAtA, i, uint64(len(m.SessionID))) + i-- + dAtA[i] = 0x12 + } + if len(m.Name) > 0 { + i -= len(m.Name) + copy(dAtA[i:], m.Name) + i = encodeVarintEvents(dAtA, i, uint64(len(m.Name))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *RouteToDatabase) 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 *RouteToDatabase) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *RouteToDatabase) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.XXX_unrecognized != nil { + i -= len(m.XXX_unrecognized) + copy(dAtA[i:], m.XXX_unrecognized) + } + if len(m.Database) > 0 { + i -= len(m.Database) + copy(dAtA[i:], m.Database) + i = encodeVarintEvents(dAtA, i, uint64(len(m.Database))) + i-- + dAtA[i] = 0x22 + } + if len(m.Username) > 0 { + i -= len(m.Username) + copy(dAtA[i:], m.Username) + i = encodeVarintEvents(dAtA, i, uint64(len(m.Username))) + i-- + dAtA[i] = 0x1a + } + if len(m.Protocol) > 0 { + i -= len(m.Protocol) + copy(dAtA[i:], m.Protocol) + i = encodeVarintEvents(dAtA, i, uint64(len(m.Protocol))) + i-- + dAtA[i] = 0x12 + } + if len(m.ServiceName) > 0 { + i -= len(m.ServiceName) + copy(dAtA[i:], m.ServiceName) + i = encodeVarintEvents(dAtA, i, uint64(len(m.ServiceName))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + func encodeVarintEvents(dAtA []byte, offset int, v uint64) int { offset -= sovEvents(v) base := offset @@ -15119,6 +15832,28 @@ func (m *WindowsDesktopSessionEnd) Size() (n int) { return n } +func (m *CertificateCreate) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = m.Metadata.Size() + n += 1 + l + sovEvents(uint64(l)) + l = len(m.CertificateType) + if l > 0 { + n += 1 + l + sovEvents(uint64(l)) + } + if m.Identity != nil { + l = m.Identity.Size() + n += 1 + l + sovEvents(uint64(l)) + } + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + func (m *OneOf) Size() (n int) { if m == nil { return 0 @@ -15938,6 +16673,18 @@ func (m *OneOf_SessionConnect) Size() (n int) { } return n } +func (m *OneOf_CertificateCreate) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.CertificateCreate != nil { + l = m.CertificateCreate.Size() + n += 2 + l + sovEvents(uint64(l)) + } + return n +} func (m *StreamStatus) Size() (n int) { if m == nil { return 0 @@ -15983,6 +16730,175 @@ func (m *SessionUpload) Size() (n int) { return n } +func (m *Identity) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.User) + if l > 0 { + n += 1 + l + sovEvents(uint64(l)) + } + l = len(m.Impersonator) + if l > 0 { + n += 1 + l + sovEvents(uint64(l)) + } + if len(m.Roles) > 0 { + for _, s := range m.Roles { + l = len(s) + n += 1 + l + sovEvents(uint64(l)) + } + } + if len(m.Usage) > 0 { + for _, s := range m.Usage { + l = len(s) + n += 1 + l + sovEvents(uint64(l)) + } + } + if len(m.Logins) > 0 { + for _, s := range m.Logins { + l = len(s) + n += 1 + l + sovEvents(uint64(l)) + } + } + if len(m.KubernetesGroups) > 0 { + for _, s := range m.KubernetesGroups { + l = len(s) + n += 1 + l + sovEvents(uint64(l)) + } + } + if len(m.KubernetesUsers) > 0 { + for _, s := range m.KubernetesUsers { + l = len(s) + n += 1 + l + sovEvents(uint64(l)) + } + } + l = github_com_gogo_protobuf_types.SizeOfStdTime(m.Expires) + n += 1 + l + sovEvents(uint64(l)) + l = len(m.RouteToCluster) + if l > 0 { + n += 1 + l + sovEvents(uint64(l)) + } + l = len(m.KubernetesCluster) + if l > 0 { + n += 1 + l + sovEvents(uint64(l)) + } + l = m.Traits.Size() + n += 1 + l + sovEvents(uint64(l)) + if m.RouteToApp != nil { + l = m.RouteToApp.Size() + n += 1 + l + sovEvents(uint64(l)) + } + l = len(m.TeleportCluster) + if l > 0 { + n += 1 + l + sovEvents(uint64(l)) + } + if m.RouteToDatabase != nil { + l = m.RouteToDatabase.Size() + n += 1 + l + sovEvents(uint64(l)) + } + if len(m.DatabaseNames) > 0 { + for _, s := range m.DatabaseNames { + l = len(s) + n += 1 + l + sovEvents(uint64(l)) + } + } + if len(m.DatabaseUsers) > 0 { + for _, s := range m.DatabaseUsers { + l = len(s) + n += 2 + l + sovEvents(uint64(l)) + } + } + l = len(m.MFADeviceUUID) + if l > 0 { + n += 2 + l + sovEvents(uint64(l)) + } + l = len(m.ClientIP) + if l > 0 { + n += 2 + l + sovEvents(uint64(l)) + } + if len(m.AWSRoleARNs) > 0 { + for _, s := range m.AWSRoleARNs { + l = len(s) + n += 2 + l + sovEvents(uint64(l)) + } + } + if len(m.AccessRequests) > 0 { + for _, s := range m.AccessRequests { + l = len(s) + n += 2 + l + sovEvents(uint64(l)) + } + } + if m.DisallowReissue { + n += 3 + } + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + +func (m *RouteToApp) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Name) + if l > 0 { + n += 1 + l + sovEvents(uint64(l)) + } + l = len(m.SessionID) + if l > 0 { + n += 1 + l + sovEvents(uint64(l)) + } + l = len(m.PublicAddr) + if l > 0 { + n += 1 + l + sovEvents(uint64(l)) + } + l = len(m.ClusterName) + if l > 0 { + n += 1 + l + sovEvents(uint64(l)) + } + l = len(m.AWSRoleARN) + if l > 0 { + n += 1 + l + sovEvents(uint64(l)) + } + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + +func (m *RouteToDatabase) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.ServiceName) + if l > 0 { + n += 1 + l + sovEvents(uint64(l)) + } + l = len(m.Protocol) + if l > 0 { + n += 1 + l + sovEvents(uint64(l)) + } + l = len(m.Username) + if l > 0 { + n += 1 + l + sovEvents(uint64(l)) + } + l = len(m.Database) + if l > 0 { + n += 1 + l + sovEvents(uint64(l)) + } + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + func sovEvents(x uint64) (n int) { return (math_bits.Len64(x|1) + 6) / 7 } @@ -33306,7 +34222,7 @@ func (m *WindowsDesktopSessionEnd) Unmarshal(dAtA []byte) error { } return nil } -func (m *OneOf) Unmarshal(dAtA []byte) error { +func (m *CertificateCreate) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -33329,15 +34245,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: OneOf: wiretype end group for non-group") + return fmt.Errorf("proto: CertificateCreate: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: OneOf: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: CertificateCreate: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field UserLogin", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Metadata", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -33364,17 +34280,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &UserLogin{} - if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + if err := m.Metadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_UserLogin{v} iNdEx = postIndex case 2: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field UserCreate", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field CertificateType", wireType) } - var msglen int + var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowEvents @@ -33384,30 +34298,27 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - msglen |= int(b&0x7F) << shift + stringLen |= uint64(b&0x7F) << shift if b < 0x80 { break } } - if msglen < 0 { + intStringLen := int(stringLen) + if intStringLen < 0 { return ErrInvalidLengthEvents } - postIndex := iNdEx + msglen + postIndex := iNdEx + intStringLen if postIndex < 0 { return ErrInvalidLengthEvents } if postIndex > l { return io.ErrUnexpectedEOF } - v := &UserCreate{} - if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - m.Event = &OneOf_UserCreate{v} + m.CertificateType = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 3: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field UserDelete", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Identity", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -33434,15 +34345,67 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &UserDelete{} - if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + if m.Identity == nil { + m.Identity = &Identity{} + } + if err := m.Identity.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_UserDelete{v} iNdEx = postIndex - case 4: + default: + iNdEx = preIndex + skippy, err := skipEvents(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthEvents + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *OneOf) 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 ErrIntOverflowEvents + } + 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: OneOf: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: OneOf: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field UserPasswordChange", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field UserLogin", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -33469,15 +34432,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &UserPasswordChange{} + v := &UserLogin{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_UserPasswordChange{v} + m.Event = &OneOf_UserLogin{v} iNdEx = postIndex - case 5: + case 2: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field SessionStart", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field UserCreate", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -33504,120 +34467,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &SessionStart{} - if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - m.Event = &OneOf_SessionStart{v} - iNdEx = postIndex - case 6: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field SessionJoin", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowEvents - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthEvents - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthEvents - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - v := &SessionJoin{} - if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - m.Event = &OneOf_SessionJoin{v} - iNdEx = postIndex - case 7: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field SessionPrint", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowEvents - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthEvents - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthEvents - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - v := &SessionPrint{} - if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - m.Event = &OneOf_SessionPrint{v} - iNdEx = postIndex - case 8: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field SessionReject", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowEvents - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthEvents - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthEvents - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - v := &SessionReject{} + v := &UserCreate{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_SessionReject{v} + m.Event = &OneOf_UserCreate{v} iNdEx = postIndex - case 9: + case 3: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Resize", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field UserDelete", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -33644,15 +34502,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &Resize{} + v := &UserDelete{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_Resize{v} + m.Event = &OneOf_UserDelete{v} iNdEx = postIndex - case 10: + case 4: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field SessionEnd", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field UserPasswordChange", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -33679,15 +34537,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &SessionEnd{} + v := &UserPasswordChange{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_SessionEnd{v} + m.Event = &OneOf_UserPasswordChange{v} iNdEx = postIndex - case 11: + case 5: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field SessionCommand", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field SessionStart", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -33714,15 +34572,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &SessionCommand{} + v := &SessionStart{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_SessionCommand{v} + m.Event = &OneOf_SessionStart{v} iNdEx = postIndex - case 12: + case 6: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field SessionDisk", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field SessionJoin", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -33749,15 +34607,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &SessionDisk{} + v := &SessionJoin{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_SessionDisk{v} + m.Event = &OneOf_SessionJoin{v} iNdEx = postIndex - case 13: + case 7: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field SessionNetwork", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field SessionPrint", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -33784,15 +34642,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &SessionNetwork{} + v := &SessionPrint{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_SessionNetwork{v} + m.Event = &OneOf_SessionPrint{v} iNdEx = postIndex - case 14: + case 8: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field SessionData", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field SessionReject", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -33819,15 +34677,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &SessionData{} + v := &SessionReject{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_SessionData{v} + m.Event = &OneOf_SessionReject{v} iNdEx = postIndex - case 15: + case 9: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field SessionLeave", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Resize", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -33854,15 +34712,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &SessionLeave{} + v := &Resize{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_SessionLeave{v} + m.Event = &OneOf_Resize{v} iNdEx = postIndex - case 16: + case 10: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field PortForward", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field SessionEnd", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -33889,15 +34747,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &PortForward{} + v := &SessionEnd{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_PortForward{v} + m.Event = &OneOf_SessionEnd{v} iNdEx = postIndex - case 17: + case 11: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field X11Forward", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field SessionCommand", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -33924,15 +34782,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &X11Forward{} + v := &SessionCommand{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_X11Forward{v} + m.Event = &OneOf_SessionCommand{v} iNdEx = postIndex - case 18: + case 12: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field SCP", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field SessionDisk", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -33959,15 +34817,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &SCP{} + v := &SessionDisk{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_SCP{v} + m.Event = &OneOf_SessionDisk{v} iNdEx = postIndex - case 19: + case 13: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Exec", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field SessionNetwork", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -33994,15 +34852,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &Exec{} + v := &SessionNetwork{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_Exec{v} + m.Event = &OneOf_SessionNetwork{v} iNdEx = postIndex - case 20: + case 14: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Subsystem", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field SessionData", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -34029,15 +34887,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &Subsystem{} + v := &SessionData{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_Subsystem{v} + m.Event = &OneOf_SessionData{v} iNdEx = postIndex - case 21: + case 15: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field ClientDisconnect", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field SessionLeave", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -34064,15 +34922,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &ClientDisconnect{} + v := &SessionLeave{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_ClientDisconnect{v} + m.Event = &OneOf_SessionLeave{v} iNdEx = postIndex - case 22: + case 16: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field AuthAttempt", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field PortForward", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -34099,15 +34957,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &AuthAttempt{} + v := &PortForward{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_AuthAttempt{v} + m.Event = &OneOf_PortForward{v} iNdEx = postIndex - case 23: + case 17: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field AccessRequestCreate", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field X11Forward", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -34134,15 +34992,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &AccessRequestCreate{} + v := &X11Forward{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_AccessRequestCreate{v} + m.Event = &OneOf_X11Forward{v} iNdEx = postIndex - case 24: + case 18: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field UserTokenCreate", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field SCP", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -34169,15 +35027,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &UserTokenCreate{} + v := &SCP{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_UserTokenCreate{v} + m.Event = &OneOf_SCP{v} iNdEx = postIndex - case 25: + case 19: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field RoleCreate", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Exec", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -34204,15 +35062,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &RoleCreate{} + v := &Exec{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_RoleCreate{v} + m.Event = &OneOf_Exec{v} iNdEx = postIndex - case 26: + case 20: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field RoleDelete", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Subsystem", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -34239,15 +35097,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &RoleDelete{} + v := &Subsystem{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_RoleDelete{v} + m.Event = &OneOf_Subsystem{v} iNdEx = postIndex - case 27: + case 21: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TrustedClusterCreate", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field ClientDisconnect", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -34274,15 +35132,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &TrustedClusterCreate{} + v := &ClientDisconnect{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_TrustedClusterCreate{v} + m.Event = &OneOf_ClientDisconnect{v} iNdEx = postIndex - case 28: + case 22: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TrustedClusterDelete", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field AuthAttempt", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -34309,15 +35167,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &TrustedClusterDelete{} + v := &AuthAttempt{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_TrustedClusterDelete{v} + m.Event = &OneOf_AuthAttempt{v} iNdEx = postIndex - case 29: + case 23: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TrustedClusterTokenCreate", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field AccessRequestCreate", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -34344,15 +35202,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &TrustedClusterTokenCreate{} + v := &AccessRequestCreate{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_TrustedClusterTokenCreate{v} + m.Event = &OneOf_AccessRequestCreate{v} iNdEx = postIndex - case 30: + case 24: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field GithubConnectorCreate", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field UserTokenCreate", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -34379,15 +35237,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &GithubConnectorCreate{} + v := &UserTokenCreate{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_GithubConnectorCreate{v} + m.Event = &OneOf_UserTokenCreate{v} iNdEx = postIndex - case 31: + case 25: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field GithubConnectorDelete", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field RoleCreate", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -34414,15 +35272,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &GithubConnectorDelete{} + v := &RoleCreate{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_GithubConnectorDelete{v} + m.Event = &OneOf_RoleCreate{v} iNdEx = postIndex - case 32: + case 26: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field OIDCConnectorCreate", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field RoleDelete", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -34449,15 +35307,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &OIDCConnectorCreate{} + v := &RoleDelete{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_OIDCConnectorCreate{v} + m.Event = &OneOf_RoleDelete{v} iNdEx = postIndex - case 33: + case 27: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field OIDCConnectorDelete", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field TrustedClusterCreate", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -34484,15 +35342,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &OIDCConnectorDelete{} + v := &TrustedClusterCreate{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_OIDCConnectorDelete{v} + m.Event = &OneOf_TrustedClusterCreate{v} iNdEx = postIndex - case 34: + case 28: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field SAMLConnectorCreate", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field TrustedClusterDelete", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -34519,15 +35377,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &SAMLConnectorCreate{} + v := &TrustedClusterDelete{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_SAMLConnectorCreate{v} + m.Event = &OneOf_TrustedClusterDelete{v} iNdEx = postIndex - case 35: + case 29: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field SAMLConnectorDelete", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field TrustedClusterTokenCreate", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -34554,15 +35412,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &SAMLConnectorDelete{} + v := &TrustedClusterTokenCreate{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_SAMLConnectorDelete{v} + m.Event = &OneOf_TrustedClusterTokenCreate{v} iNdEx = postIndex - case 36: + case 30: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field KubeRequest", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field GithubConnectorCreate", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -34589,15 +35447,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &KubeRequest{} + v := &GithubConnectorCreate{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_KubeRequest{v} + m.Event = &OneOf_GithubConnectorCreate{v} iNdEx = postIndex - case 37: + case 31: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field AppSessionStart", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field GithubConnectorDelete", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -34624,15 +35482,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &AppSessionStart{} + v := &GithubConnectorDelete{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_AppSessionStart{v} + m.Event = &OneOf_GithubConnectorDelete{v} iNdEx = postIndex - case 38: + case 32: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field AppSessionChunk", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field OIDCConnectorCreate", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -34659,15 +35517,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &AppSessionChunk{} + v := &OIDCConnectorCreate{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_AppSessionChunk{v} + m.Event = &OneOf_OIDCConnectorCreate{v} iNdEx = postIndex - case 39: + case 33: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field AppSessionRequest", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field OIDCConnectorDelete", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -34694,15 +35552,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &AppSessionRequest{} + v := &OIDCConnectorDelete{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_AppSessionRequest{v} + m.Event = &OneOf_OIDCConnectorDelete{v} iNdEx = postIndex - case 40: + case 34: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field DatabaseSessionStart", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field SAMLConnectorCreate", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -34729,15 +35587,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &DatabaseSessionStart{} + v := &SAMLConnectorCreate{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_DatabaseSessionStart{v} + m.Event = &OneOf_SAMLConnectorCreate{v} iNdEx = postIndex - case 41: + case 35: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field DatabaseSessionEnd", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field SAMLConnectorDelete", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -34764,15 +35622,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &DatabaseSessionEnd{} + v := &SAMLConnectorDelete{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_DatabaseSessionEnd{v} + m.Event = &OneOf_SAMLConnectorDelete{v} iNdEx = postIndex - case 42: + case 36: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field DatabaseSessionQuery", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field KubeRequest", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -34799,15 +35657,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &DatabaseSessionQuery{} + v := &KubeRequest{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_DatabaseSessionQuery{v} + m.Event = &OneOf_KubeRequest{v} iNdEx = postIndex - case 43: + case 37: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field SessionUpload", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field AppSessionStart", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -34834,15 +35692,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &SessionUpload{} + v := &AppSessionStart{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_SessionUpload{v} + m.Event = &OneOf_AppSessionStart{v} iNdEx = postIndex - case 44: + case 38: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field MFADeviceAdd", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field AppSessionChunk", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -34869,15 +35727,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &MFADeviceAdd{} + v := &AppSessionChunk{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_MFADeviceAdd{v} + m.Event = &OneOf_AppSessionChunk{v} iNdEx = postIndex - case 45: + case 39: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field MFADeviceDelete", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field AppSessionRequest", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -34904,15 +35762,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &MFADeviceDelete{} + v := &AppSessionRequest{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_MFADeviceDelete{v} + m.Event = &OneOf_AppSessionRequest{v} iNdEx = postIndex - case 46: + case 40: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field BillingInformationUpdate", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field DatabaseSessionStart", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -34939,15 +35797,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &BillingInformationUpdate{} + v := &DatabaseSessionStart{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_BillingInformationUpdate{v} + m.Event = &OneOf_DatabaseSessionStart{v} iNdEx = postIndex - case 47: + case 41: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field BillingCardCreate", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field DatabaseSessionEnd", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -34974,15 +35832,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &BillingCardCreate{} + v := &DatabaseSessionEnd{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_BillingCardCreate{v} + m.Event = &OneOf_DatabaseSessionEnd{v} iNdEx = postIndex - case 48: + case 42: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field BillingCardDelete", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field DatabaseSessionQuery", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -35009,15 +35867,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &BillingCardDelete{} + v := &DatabaseSessionQuery{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_BillingCardDelete{v} + m.Event = &OneOf_DatabaseSessionQuery{v} iNdEx = postIndex - case 49: + case 43: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field LockCreate", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field SessionUpload", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -35044,15 +35902,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &LockCreate{} + v := &SessionUpload{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_LockCreate{v} + m.Event = &OneOf_SessionUpload{v} iNdEx = postIndex - case 50: + case 44: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field LockDelete", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field MFADeviceAdd", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -35079,15 +35937,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &LockDelete{} + v := &MFADeviceAdd{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_LockDelete{v} + m.Event = &OneOf_MFADeviceAdd{v} iNdEx = postIndex - case 51: + case 45: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field RecoveryCodeGenerate", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field MFADeviceDelete", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -35114,15 +35972,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &RecoveryCodeGenerate{} + v := &MFADeviceDelete{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_RecoveryCodeGenerate{v} + m.Event = &OneOf_MFADeviceDelete{v} iNdEx = postIndex - case 52: + case 46: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field RecoveryCodeUsed", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field BillingInformationUpdate", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -35149,15 +36007,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &RecoveryCodeUsed{} + v := &BillingInformationUpdate{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_RecoveryCodeUsed{v} + m.Event = &OneOf_BillingInformationUpdate{v} iNdEx = postIndex - case 53: + case 47: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field DatabaseCreate", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field BillingCardCreate", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -35184,15 +36042,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &DatabaseCreate{} + v := &BillingCardCreate{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_DatabaseCreate{v} + m.Event = &OneOf_BillingCardCreate{v} iNdEx = postIndex - case 54: + case 48: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field DatabaseUpdate", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field BillingCardDelete", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -35219,15 +36077,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &DatabaseUpdate{} + v := &BillingCardDelete{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_DatabaseUpdate{v} + m.Event = &OneOf_BillingCardDelete{v} iNdEx = postIndex - case 55: + case 49: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field DatabaseDelete", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field LockCreate", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -35254,15 +36112,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &DatabaseDelete{} + v := &LockCreate{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_DatabaseDelete{v} + m.Event = &OneOf_LockCreate{v} iNdEx = postIndex - case 56: + case 50: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field AppCreate", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field LockDelete", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -35289,15 +36147,15 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &AppCreate{} + v := &LockDelete{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_AppCreate{v} + m.Event = &OneOf_LockDelete{v} iNdEx = postIndex - case 57: + case 51: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field AppUpdate", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field RecoveryCodeGenerate", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -35324,15 +36182,225 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &AppUpdate{} + v := &RecoveryCodeGenerate{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_AppUpdate{v} + m.Event = &OneOf_RecoveryCodeGenerate{v} iNdEx = postIndex - case 58: + case 52: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field AppDelete", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field RecoveryCodeUsed", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + v := &RecoveryCodeUsed{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + m.Event = &OneOf_RecoveryCodeUsed{v} + iNdEx = postIndex + case 53: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field DatabaseCreate", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + v := &DatabaseCreate{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + m.Event = &OneOf_DatabaseCreate{v} + iNdEx = postIndex + case 54: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field DatabaseUpdate", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + v := &DatabaseUpdate{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + m.Event = &OneOf_DatabaseUpdate{v} + iNdEx = postIndex + case 55: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field DatabaseDelete", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + v := &DatabaseDelete{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + m.Event = &OneOf_DatabaseDelete{v} + iNdEx = postIndex + case 56: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field AppCreate", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + v := &AppCreate{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + m.Event = &OneOf_AppCreate{v} + iNdEx = postIndex + case 57: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field AppUpdate", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + v := &AppUpdate{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + m.Event = &OneOf_AppUpdate{v} + iNdEx = postIndex + case 58: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field AppDelete", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -35464,17 +36532,1087 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &PostgresParse{} - if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + v := &PostgresParse{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + m.Event = &OneOf_PostgresParse{v} + iNdEx = postIndex + case 62: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field PostgresBind", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + v := &PostgresBind{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + m.Event = &OneOf_PostgresBind{v} + iNdEx = postIndex + case 63: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field PostgresExecute", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + v := &PostgresExecute{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + m.Event = &OneOf_PostgresExecute{v} + iNdEx = postIndex + case 64: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field PostgresClose", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + v := &PostgresClose{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + m.Event = &OneOf_PostgresClose{v} + iNdEx = postIndex + case 65: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field PostgresFunctionCall", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + v := &PostgresFunctionCall{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + m.Event = &OneOf_PostgresFunctionCall{v} + iNdEx = postIndex + case 66: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field AccessRequestDelete", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + v := &AccessRequestDelete{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + m.Event = &OneOf_AccessRequestDelete{v} + iNdEx = postIndex + case 67: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field SessionConnect", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + v := &SessionConnect{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + m.Event = &OneOf_SessionConnect{v} + iNdEx = postIndex + case 68: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field CertificateCreate", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + v := &CertificateCreate{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + m.Event = &OneOf_CertificateCreate{v} + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipEvents(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthEvents + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *StreamStatus) 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 ErrIntOverflowEvents + } + 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: StreamStatus: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: StreamStatus: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field UploadID", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + 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 ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.UploadID = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field LastEventIndex", wireType) + } + m.LastEventIndex = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.LastEventIndex |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field LastUploadTime", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(&m.LastUploadTime, dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipEvents(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthEvents + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *SessionUpload) 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 ErrIntOverflowEvents + } + 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: SessionUpload: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: SessionUpload: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Metadata", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.Metadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field SessionMetadata", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.SessionMetadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field UID", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + 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 ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.UID = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 5: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field SessionURL", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + 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 ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.SessionURL = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipEvents(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthEvents + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *Identity) 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 ErrIntOverflowEvents + } + 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: Identity: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: Identity: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field User", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + 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 ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.User = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Impersonator", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + 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 ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Impersonator = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Roles", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + 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 ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Roles = append(m.Roles, string(dAtA[iNdEx:postIndex])) + iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Usage", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + 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 ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Usage = append(m.Usage, string(dAtA[iNdEx:postIndex])) + iNdEx = postIndex + case 5: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Logins", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + 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 ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Logins = append(m.Logins, string(dAtA[iNdEx:postIndex])) + iNdEx = postIndex + case 6: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field KubernetesGroups", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + 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 ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.KubernetesGroups = append(m.KubernetesGroups, string(dAtA[iNdEx:postIndex])) + iNdEx = postIndex + case 7: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field KubernetesUsers", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + 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 ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.KubernetesUsers = append(m.KubernetesUsers, string(dAtA[iNdEx:postIndex])) + iNdEx = postIndex + case 8: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Expires", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(&m.Expires, dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 9: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field RouteToCluster", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + 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 ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.RouteToCluster = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 10: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field KubernetesCluster", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + 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 ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.KubernetesCluster = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 11: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Traits", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.Traits.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 12: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field RouteToApp", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.RouteToApp == nil { + m.RouteToApp = &RouteToApp{} + } + if err := m.RouteToApp.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 13: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field TeleportCluster", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + 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 ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.TeleportCluster = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 14: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field RouteToDatabase", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.RouteToDatabase == nil { + m.RouteToDatabase = &RouteToDatabase{} + } + if err := m.RouteToDatabase.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Event = &OneOf_PostgresParse{v} iNdEx = postIndex - case 62: + case 15: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field PostgresBind", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field DatabaseNames", wireType) } - var msglen int + var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowEvents @@ -35484,32 +37622,29 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - msglen |= int(b&0x7F) << shift + stringLen |= uint64(b&0x7F) << shift if b < 0x80 { break } } - if msglen < 0 { + intStringLen := int(stringLen) + if intStringLen < 0 { return ErrInvalidLengthEvents } - postIndex := iNdEx + msglen + postIndex := iNdEx + intStringLen if postIndex < 0 { return ErrInvalidLengthEvents } if postIndex > l { return io.ErrUnexpectedEOF } - v := &PostgresBind{} - if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - m.Event = &OneOf_PostgresBind{v} + m.DatabaseNames = append(m.DatabaseNames, string(dAtA[iNdEx:postIndex])) iNdEx = postIndex - case 63: + case 16: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field PostgresExecute", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field DatabaseUsers", wireType) } - var msglen int + var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowEvents @@ -35519,32 +37654,29 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - msglen |= int(b&0x7F) << shift + stringLen |= uint64(b&0x7F) << shift if b < 0x80 { break } } - if msglen < 0 { + intStringLen := int(stringLen) + if intStringLen < 0 { return ErrInvalidLengthEvents } - postIndex := iNdEx + msglen + postIndex := iNdEx + intStringLen if postIndex < 0 { return ErrInvalidLengthEvents } if postIndex > l { return io.ErrUnexpectedEOF } - v := &PostgresExecute{} - if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - m.Event = &OneOf_PostgresExecute{v} + m.DatabaseUsers = append(m.DatabaseUsers, string(dAtA[iNdEx:postIndex])) iNdEx = postIndex - case 64: + case 17: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field PostgresClose", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field MFADeviceUUID", wireType) } - var msglen int + var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowEvents @@ -35554,32 +37686,29 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - msglen |= int(b&0x7F) << shift + stringLen |= uint64(b&0x7F) << shift if b < 0x80 { break } } - if msglen < 0 { + intStringLen := int(stringLen) + if intStringLen < 0 { return ErrInvalidLengthEvents } - postIndex := iNdEx + msglen + postIndex := iNdEx + intStringLen if postIndex < 0 { return ErrInvalidLengthEvents } if postIndex > l { return io.ErrUnexpectedEOF } - v := &PostgresClose{} - if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - m.Event = &OneOf_PostgresClose{v} + m.MFADeviceUUID = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex - case 65: + case 18: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field PostgresFunctionCall", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field ClientIP", wireType) } - var msglen int + var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowEvents @@ -35589,32 +37718,29 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - msglen |= int(b&0x7F) << shift + stringLen |= uint64(b&0x7F) << shift if b < 0x80 { break } } - if msglen < 0 { + intStringLen := int(stringLen) + if intStringLen < 0 { return ErrInvalidLengthEvents } - postIndex := iNdEx + msglen + postIndex := iNdEx + intStringLen if postIndex < 0 { return ErrInvalidLengthEvents } if postIndex > l { return io.ErrUnexpectedEOF } - v := &PostgresFunctionCall{} - if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - m.Event = &OneOf_PostgresFunctionCall{v} + m.ClientIP = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex - case 66: + case 19: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field AccessRequestDelete", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field AWSRoleARNs", wireType) } - var msglen int + var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowEvents @@ -35624,32 +37750,29 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - msglen |= int(b&0x7F) << shift + stringLen |= uint64(b&0x7F) << shift if b < 0x80 { break } } - if msglen < 0 { + intStringLen := int(stringLen) + if intStringLen < 0 { return ErrInvalidLengthEvents } - postIndex := iNdEx + msglen + postIndex := iNdEx + intStringLen if postIndex < 0 { return ErrInvalidLengthEvents } if postIndex > l { return io.ErrUnexpectedEOF } - v := &AccessRequestDelete{} - if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - m.Event = &OneOf_AccessRequestDelete{v} + m.AWSRoleARNs = append(m.AWSRoleARNs, string(dAtA[iNdEx:postIndex])) iNdEx = postIndex - case 67: + case 20: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field SessionConnect", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field AccessRequests", wireType) } - var msglen int + var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowEvents @@ -35659,27 +37782,44 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - msglen |= int(b&0x7F) << shift + stringLen |= uint64(b&0x7F) << shift if b < 0x80 { break } } - if msglen < 0 { + intStringLen := int(stringLen) + if intStringLen < 0 { return ErrInvalidLengthEvents } - postIndex := iNdEx + msglen + postIndex := iNdEx + intStringLen if postIndex < 0 { return ErrInvalidLengthEvents } if postIndex > l { return io.ErrUnexpectedEOF } - v := &SessionConnect{} - if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - m.Event = &OneOf_SessionConnect{v} + m.AccessRequests = append(m.AccessRequests, string(dAtA[iNdEx:postIndex])) iNdEx = postIndex + case 21: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field DisallowReissue", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.DisallowReissue = bool(v != 0) default: iNdEx = preIndex skippy, err := skipEvents(dAtA[iNdEx:]) @@ -35702,7 +37842,7 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { } return nil } -func (m *StreamStatus) Unmarshal(dAtA []byte) error { +func (m *RouteToApp) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -35725,15 +37865,15 @@ func (m *StreamStatus) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: StreamStatus: wiretype end group for non-group") + return fmt.Errorf("proto: RouteToApp: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: StreamStatus: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: RouteToApp: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field UploadID", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Name", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { @@ -35761,13 +37901,13 @@ func (m *StreamStatus) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.UploadID = string(dAtA[iNdEx:postIndex]) + m.Name = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 2: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field LastEventIndex", wireType) + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field SessionID", wireType) } - m.LastEventIndex = 0 + var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowEvents @@ -35777,16 +37917,29 @@ func (m *StreamStatus) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.LastEventIndex |= int64(b&0x7F) << shift + stringLen |= uint64(b&0x7F) << shift if b < 0x80 { break } } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.SessionID = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex case 3: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field LastUploadTime", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field PublicAddr", wireType) } - var msglen int + var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowEvents @@ -35796,24 +37949,87 @@ func (m *StreamStatus) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - msglen |= int(b&0x7F) << shift + stringLen |= uint64(b&0x7F) << shift if b < 0x80 { break } } - if msglen < 0 { + intStringLen := int(stringLen) + if intStringLen < 0 { return ErrInvalidLengthEvents } - postIndex := iNdEx + msglen + postIndex := iNdEx + intStringLen if postIndex < 0 { return ErrInvalidLengthEvents } if postIndex > l { return io.ErrUnexpectedEOF } - if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(&m.LastUploadTime, dAtA[iNdEx:postIndex]); err != nil { - return err + m.PublicAddr = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ClusterName", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + 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 ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.ClusterName = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 5: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field AWSRoleARN", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + 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 ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.AWSRoleARN = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex default: iNdEx = preIndex @@ -35837,7 +38053,7 @@ func (m *StreamStatus) Unmarshal(dAtA []byte) error { } return nil } -func (m *SessionUpload) Unmarshal(dAtA []byte) error { +func (m *RouteToDatabase) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -35860,17 +38076,17 @@ func (m *SessionUpload) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: SessionUpload: wiretype end group for non-group") + return fmt.Errorf("proto: RouteToDatabase: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: SessionUpload: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: RouteToDatabase: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Metadata", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field ServiceName", wireType) } - var msglen int + var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowEvents @@ -35880,30 +38096,29 @@ func (m *SessionUpload) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - msglen |= int(b&0x7F) << shift + stringLen |= uint64(b&0x7F) << shift if b < 0x80 { break } } - if msglen < 0 { + intStringLen := int(stringLen) + if intStringLen < 0 { return ErrInvalidLengthEvents } - postIndex := iNdEx + msglen + postIndex := iNdEx + intStringLen if postIndex < 0 { return ErrInvalidLengthEvents } if postIndex > l { return io.ErrUnexpectedEOF } - if err := m.Metadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } + m.ServiceName = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 2: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field SessionMetadata", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Protocol", wireType) } - var msglen int + var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowEvents @@ -35913,28 +38128,27 @@ func (m *SessionUpload) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - msglen |= int(b&0x7F) << shift + stringLen |= uint64(b&0x7F) << shift if b < 0x80 { break } } - if msglen < 0 { + intStringLen := int(stringLen) + if intStringLen < 0 { return ErrInvalidLengthEvents } - postIndex := iNdEx + msglen + postIndex := iNdEx + intStringLen if postIndex < 0 { return ErrInvalidLengthEvents } if postIndex > l { return io.ErrUnexpectedEOF } - if err := m.SessionMetadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } + m.Protocol = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex - case 4: + case 3: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field UID", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Username", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { @@ -35962,11 +38176,11 @@ func (m *SessionUpload) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.UID = string(dAtA[iNdEx:postIndex]) + m.Username = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex - case 5: + case 4: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field SessionURL", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Database", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { @@ -35994,7 +38208,7 @@ func (m *SessionUpload) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.SessionURL = string(dAtA[iNdEx:postIndex]) + m.Database = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex default: iNdEx = preIndex diff --git a/api/types/events/events.proto b/api/types/events/events.proto index 9d72052c46cf6..5a9a1b0e4a953 100644 --- a/api/types/events/events.proto +++ b/api/types/events/events.proto @@ -19,6 +19,8 @@ import "gogoproto/gogo.proto"; import "google/protobuf/timestamp.proto"; import "google/protobuf/struct.proto"; +import "github.com/gravitational/teleport/api/types/wrappers/wrappers.proto"; + option (gogoproto.marshaler_all) = true; option (gogoproto.unmarshaler_all) = true; option (gogoproto.goproto_getters_all) = false; @@ -1678,6 +1680,19 @@ message WindowsDesktopSessionEnd { map DesktopLabels = 8 [ (gogoproto.jsontag) = "desktop_labels" ]; } +// CertificateCreate is emitted when a certificate is issued. +message CertificateCreate { + // Metadata is a common event metadata. + Metadata Metadata = 1 + [ (gogoproto.nullable) = false, (gogoproto.embed) = true, (gogoproto.jsontag) = "" ]; + + // CertificateType is the type of certificate that was just issued. + string CertificateType = 2 [ (gogoproto.jsontag) = "cert_type,omitempty" ]; + + // Identity is the identity associated with the certificate, as interpreted by Teleport. + Identity Identity = 3 [ (gogoproto.jsontag) = "identity" ]; +} + // OneOf is a union of one of audit events submitted to the auth service message OneOf { // Event is one of the audit events @@ -1749,6 +1764,7 @@ message OneOf { events.PostgresFunctionCall PostgresFunctionCall = 65; events.AccessRequestDelete AccessRequestDelete = 66; events.SessionConnect SessionConnect = 67; + events.CertificateCreate CertificateCreate = 68; } } @@ -1779,3 +1795,96 @@ message SessionUpload { // URL is where the url the session event data upload is at string SessionURL = 5 [ (gogoproto.jsontag) = "url" ]; } + +// Identity matches github.com/gravitational/teleport/lib/tlsca.Identity except +// for RouteToApp and RouteToDatabase which are nullable and Traits which is +// represented as a google.protobuf.Struct (still containing a map from string +// to strings). Field names match other names already used in other events +// rather than the field names in tlsca.Identity. +message Identity { + // User is a username or name of the node connection + string User = 1 [ (gogoproto.jsontag) = "user,omitempty" ]; + // Impersonator is a username of a user impersonating this user + string Impersonator = 2 [ (gogoproto.jsontag) = "impersonator,omitempty" ]; + // Roles is a list of groups (Teleport roles) encoded in the identity + repeated string Roles = 3 [ (gogoproto.jsontag) = "roles,omitempty" ]; + // Usage is a list of usage restrictions encoded in the identity + repeated string Usage = 4 [ (gogoproto.jsontag) = "usage,omitempty" ]; + // Logins is a list of Unix logins allowed. + repeated string Logins = 5 [ (gogoproto.jsontag) = "logins,omitempty" ]; + // KubernetesGroups is a list of Kubernetes groups allowed + repeated string KubernetesGroups = 6 [ (gogoproto.jsontag) = "kubernetes_groups,omitempty" ]; + // KubernetesUsers is a list of Kubernetes users allowed + repeated string KubernetesUsers = 7 [ (gogoproto.jsontag) = "kubernetes_users,omitempty" ]; + // Expires specifies whenever the session will expire + google.protobuf.Timestamp Expires = 8 [ + (gogoproto.stdtime) = true, + (gogoproto.nullable) = false, + (gogoproto.jsontag) = "expires" + ]; + // RouteToCluster specifies the target cluster + // if present in the session + string RouteToCluster = 9 [ (gogoproto.jsontag) = "route_to_cluster,omitempty" ]; + // KubernetesCluster specifies the target kubernetes cluster for TLS + // identities. This can be empty on older Teleport clients. + string KubernetesCluster = 10 [ (gogoproto.jsontag) = "kubernetes_cluster,omitempty" ]; + // Traits hold claim data used to populate a role at runtime. + wrappers.LabelValues Traits = 11 [ + (gogoproto.nullable) = false, + (gogoproto.jsontag) = "traits,omitempty", + (gogoproto.customtype) = "github.com/gravitational/teleport/api/types/wrappers.Traits" + ]; + // RouteToApp holds routing information for applications. Routing metadata + // allows Teleport web proxy to route HTTP requests to the appropriate + // cluster and Teleport application proxy within the cluster. + RouteToApp RouteToApp = 12 [ (gogoproto.jsontag) = "route_to_app,omitempty" ]; + // TeleportCluster is the name of the teleport cluster that this identity + // originated from. For TLS certs this may not be the same as cert issuer, + // in case of multi-hop requests that originate from a remote cluster. + string TeleportCluster = 13 [ (gogoproto.jsontag) = "teleport_cluster,omitempty" ]; + // RouteToDatabase contains routing information for databases. + RouteToDatabase RouteToDatabase = 14 [ (gogoproto.jsontag) = "route_to_database,omitempty" ]; + // DatabaseNames is a list of allowed database names. + repeated string DatabaseNames = 15 [ (gogoproto.jsontag) = "database_names,omitempty" ]; + // DatabaseUsers is a list of allowed database users. + repeated string DatabaseUsers = 16 [ (gogoproto.jsontag) = "database_users,omitempty" ]; + // MFADeviceUUID is the UUID of an MFA device when this Identity was + // confirmed immediately after an MFA check. + string MFADeviceUUID = 17 [ (gogoproto.jsontag) = "mfa_device_uuid,omitempty" ]; + // ClientIP is an observed IP of the client that this Identity represents. + string ClientIP = 18 [ (gogoproto.jsontag) = "client_ip,omitempty" ]; + // AWSRoleARNs is a list of allowed AWS role ARNs user can assume. + repeated string AWSRoleARNs = 19 [ (gogoproto.jsontag) = "aws_role_arns,omitempty" ]; + // AccessRequests is a list of UUIDs of active requests for this Identity. + repeated string AccessRequests = 20 [ (gogoproto.jsontag) = "access_requests,omitempty" ]; + // DisallowReissue is a flag that, if set, instructs the auth server to + // deny any attempts to reissue new certificates while authenticated with + // this certificate. + bool DisallowReissue = 21 [ (gogoproto.jsontag) = "disallow_reissue,omitempty" ]; +} + +// RouteToApp contains parameters for application access certificate requests. +message RouteToApp { + // Name is the application name certificate is being requested for. + string Name = 1 [ (gogoproto.jsontag) = "name" ]; + // SessionID is the ID of the application session. + string SessionID = 2 [ (gogoproto.jsontag) = "session_id" ]; + // PublicAddr is the application public address. + string PublicAddr = 3 [ (gogoproto.jsontag) = "public_addr" ]; + // ClusterName is the cluster where the application resides. + string ClusterName = 4 [ (gogoproto.jsontag) = "cluster_name" ]; + // AWSRoleARN is the AWS role to assume when accessing AWS API. + string AWSRoleARN = 5 [ (gogoproto.jsontag) = "aws_role_arn,omitempty" ]; +} + +// RouteToDatabase combines parameters for database service routing information. +message RouteToDatabase { + // ServiceName is the Teleport database proxy service name the cert is for. + string ServiceName = 1 [ (gogoproto.jsontag) = "service_name" ]; + // Protocol is the type of the database the cert is for. + string Protocol = 2 [ (gogoproto.jsontag) = "protocol" ]; + // Username is an optional database username to embed. + string Username = 3 [ (gogoproto.jsontag) = "username,omitempty" ]; + // Database is an optional database name to embed. + string Database = 4 [ (gogoproto.jsontag) = "database,omitempty" ]; +} diff --git a/api/types/events/oneof.go b/api/types/events/oneof.go index 6deac1880a7be..eaa6bd5657a42 100644 --- a/api/types/events/oneof.go +++ b/api/types/events/oneof.go @@ -305,6 +305,10 @@ func ToOneOf(in AuditEvent) (*OneOf, error) { out.Event = &OneOf_AccessRequestDelete{ AccessRequestDelete: e, } + case *CertificateCreate: + out.Event = &OneOf_CertificateCreate{ + CertificateCreate: e, + } default: return nil, trace.BadParameter("event type %T is not supported", in) } diff --git a/lib/auth/auth.go b/lib/auth/auth.go index d30cce14e195f..e9a5fb335195d 100644 --- a/lib/auth/auth.go +++ b/lib/auth/auth.go @@ -1138,6 +1138,20 @@ func (a *Server) generateUserCert(req certRequest) (*proto.Certs, error) { if err != nil { return nil, trace.Wrap(err) } + + eventIdentity := identity.GetEventIdentity() + eventIdentity.Expires = certRequest.NotAfter + if a.emitter.EmitAuditEvent(a.closeCtx, &apievents.CertificateCreate{ + Metadata: apievents.Metadata{ + Type: events.CertificateCreateEvent, + Code: events.CertificateCreateCode, + }, + CertificateType: events.CertificateTypeUser, + Identity: &eventIdentity, + }); err != nil { + log.WithError(err).Warn("Failed to emit certificate create event.") + } + return &proto.Certs{ SSH: sshCert, TLS: tlsCert, diff --git a/lib/events/api.go b/lib/events/api.go index 18c3cac2d0b0c..f388cad949d36 100644 --- a/lib/events/api.go +++ b/lib/events/api.go @@ -456,6 +456,12 @@ const ( // WindowsDesktopSessionEndEvent is emitted when a user disconnects // from a desktop. WindowsDesktopSessionEndEvent = "windows.desktop.session.end" + + // CertificateCreateEvent is emitted when a certificate is issued. + CertificateCreateEvent = "cert.create" + + // CertificateTypeUser is the CertificateType for certificate events pertaining to user certificates. + CertificateTypeUser = "user" ) const ( diff --git a/lib/events/codes.go b/lib/events/codes.go index f90d763a1fa71..2f4776105f92b 100644 --- a/lib/events/codes.go +++ b/lib/events/codes.go @@ -474,4 +474,7 @@ const ( LockCreatedCode = "TLK00I" // LockDeletedCode is the lock deleted event code. LockDeletedCode = "TLK01I" + + // CertificateCreateCode is the certificate issuance event code. + CertificateCreateCode = "TC000I" ) diff --git a/lib/events/dynamic.go b/lib/events/dynamic.go index 15e3b42882b8d..4d3ddde5e7acf 100644 --- a/lib/events/dynamic.go +++ b/lib/events/dynamic.go @@ -191,6 +191,8 @@ func FromEventFields(fields EventFields) (apievents.AuditEvent, error) { e = &events.SessionConnect{} case AccessRequestDeleteEvent: e = &events.AccessRequestDelete{} + case CertificateCreateEvent: + e = &events.CertificateCreate{} default: return nil, trace.BadParameter("unknown event type: %q", eventType) } diff --git a/lib/tlsca/ca.go b/lib/tlsca/ca.go index 9cf6a84b5dbb1..f8bbf8ffd380b 100644 --- a/lib/tlsca/ca.go +++ b/lib/tlsca/ca.go @@ -195,6 +195,54 @@ func (id *Identity) GetRouteToApp() (RouteToApp, error) { return id.RouteToApp, nil } +func (id *Identity) GetEventIdentity() events.Identity { + // leave a nil instead of a zero struct so the field doesn't appear when + // serialized as json + var routeToApp *events.RouteToApp + if id.RouteToApp != (RouteToApp{}) { + routeToApp = &events.RouteToApp{ + Name: id.RouteToApp.Name, + SessionID: id.RouteToApp.SessionID, + PublicAddr: id.RouteToApp.PublicAddr, + ClusterName: id.RouteToApp.ClusterName, + AWSRoleARN: id.RouteToApp.AWSRoleARN, + } + } + var routeToDatabase *events.RouteToDatabase + if id.RouteToDatabase != (RouteToDatabase{}) { + routeToDatabase = &events.RouteToDatabase{ + ServiceName: id.RouteToDatabase.ServiceName, + Protocol: id.RouteToDatabase.Protocol, + Username: id.RouteToDatabase.Username, + Database: id.RouteToDatabase.Database, + } + } + + return events.Identity{ + User: id.Username, + Impersonator: id.Impersonator, + Roles: id.Groups, + Usage: id.Usage, + Logins: id.Principals, + KubernetesGroups: id.KubernetesGroups, + KubernetesUsers: id.KubernetesUsers, + Expires: id.Expires, + RouteToCluster: id.RouteToCluster, + KubernetesCluster: id.KubernetesCluster, + Traits: id.Traits, + RouteToApp: routeToApp, + TeleportCluster: id.TeleportCluster, + RouteToDatabase: routeToDatabase, + DatabaseNames: id.DatabaseNames, + DatabaseUsers: id.DatabaseUsers, + MFADeviceUUID: id.MFAVerified, + ClientIP: id.ClientIP, + AWSRoleARNs: id.AWSRoleARNs, + AccessRequests: id.ActiveRequests, + DisallowReissue: id.DisallowReissue, + } +} + // CheckAndSetDefaults checks and sets default values func (id *Identity) CheckAndSetDefaults() error { if id.Username == "" {