diff --git a/api/proto/teleport/legacy/types/types.proto b/api/proto/teleport/legacy/types/types.proto index f89b6aca16cf7..56574366e4fcd 100644 --- a/api/proto/teleport/legacy/types/types.proto +++ b/api/proto/teleport/legacy/types/types.proto @@ -7573,6 +7573,25 @@ message IntegrationV1 { (gogoproto.nullable) = false, (gogoproto.jsontag) = "spec" ]; + + // Status has the current state of the integration. + IntegrationStatusV1 Status = 3 [ + (gogoproto.nullable) = false, + (gogoproto.jsontag) = "status" + ]; +} + +// IntegrationStatusV1 contains the current status for a given integration. +message IntegrationStatusV1 { + // PendingUserTasksNotificationID contains the notification ID that indicates that this integration has unresolved user tasks. + string PendingUserTasksNotificationID = 1 [(gogoproto.jsontag) = "pending_user_tasks_notification_id,omitempty"]; + // NeedsAttentionNotificationExpires contains the expiration date for the notification. + // Used to ensure new notifications' expiration is the greater between the current notification and the new one. + google.protobuf.Timestamp PendingUserTasksNotificationExpires = 2 [ + (gogoproto.stdtime) = true, + (gogoproto.nullable) = true, + (gogoproto.jsontag) = "pending_user_tasks_notification_expires,omitempty" + ]; } // IntegrationSpecV1 contains properties of all the supported integrations. diff --git a/api/types/constants.go b/api/types/constants.go index b274b1871de4f..67b3a53874d21 100644 --- a/api/types/constants.go +++ b/api/types/constants.go @@ -1156,6 +1156,12 @@ const ( // NotificationUserCreatedWarningSubKind is the subkind for a user-created warning notification. NotificationUserCreatedWarningSubKind = "user-created-warning" + // NotificationPendingUserTaskIntegrationSubKind is the subkind for a notification that warns the user about pending User Tasks for a given integration. + NotificationPendingUserTaskIntegrationSubKind = "pending-user-task-for-integration" + // NotificationIntegrationLabel is the label which contains the name of the integration. + // To be used with NotificationUserTaskIntegrationSubKind. + NotificationIntegrationLabel = "integration-name" + // NotificationAccessRequestPendingSubKind is the subkind for a notification for an access request pending review. NotificationAccessRequestPendingSubKind = "access-request-pending" // NotificationAccessRequestApprovedSubKind is the subkind for a notification for a user's access request being approved. diff --git a/api/types/integration.go b/api/types/integration.go index 175d6f2df4c10..3cfe742697356 100644 --- a/api/types/integration.go +++ b/api/types/integration.go @@ -78,6 +78,11 @@ type Integration interface { GetCredentials() PluginCredentials // WithoutCredentials returns a copy without credentials. WithoutCredentials() Integration + + // GetStatus returns the Integration Status. + GetStatus() IntegrationStatusV1 + // SetStatus sets the Integration Status. + SetStatus(IntegrationStatusV1) } var _ ResourceWithLabels = (*IntegrationV1)(nil) @@ -339,6 +344,22 @@ func (ig *IntegrationV1) SetGitHubIntegrationSpec(spec *GitHubIntegrationSpecV1) } } +// GetStatus returns the Integration Status. +func (ig *IntegrationV1) GetStatus() IntegrationStatusV1 { + if ig == nil { + return IntegrationStatusV1{} + } + return ig.Status +} + +// SetStatus sets the Integration Status. +func (ig *IntegrationV1) SetStatus(s IntegrationStatusV1) { + if ig == nil { + return + } + ig.Status = s +} + // Integrations is a list of Integration resources. type Integrations []Integration @@ -393,6 +414,7 @@ func (ig *IntegrationV1) UnmarshalJSON(data []byte) error { GitHub json.RawMessage `json:"github"` Credentials json.RawMessage `json:"credentials"` } `json:"spec"` + Status IntegrationStatusV1 `json:"status"` }{} err := json.Unmarshal(data, &d) @@ -401,6 +423,8 @@ func (ig *IntegrationV1) UnmarshalJSON(data []byte) error { } integration.ResourceHeader = d.ResourceHeader + integration.Status = d.Status + if len(d.Spec.Credentials) != 0 { var credentials PluginCredentialsV1 if err := protojson.Unmarshal(d.Spec.Credentials, protoadapt.MessageV2Of(&credentials)); err != nil { @@ -468,9 +492,12 @@ func (ig *IntegrationV1) MarshalJSON() ([]byte, error) { GitHub GitHubIntegrationSpecV1 `json:"github,omitempty"` Credentials json.RawMessage `json:"credentials,omitempty"` } `json:"spec"` + Status IntegrationStatusV1 `json:"status"` }{} d.ResourceHeader = ig.ResourceHeader + d.Status = ig.Status + if ig.Spec.Credentials != nil { data, err := protojson.Marshal(protoadapt.MessageV2Of(ig.Spec.Credentials)) if err != nil { diff --git a/api/types/notifications/notifications.go b/api/types/notifications/notifications.go new file mode 100644 index 0000000000000..46d13dd21d930 --- /dev/null +++ b/api/types/notifications/notifications.go @@ -0,0 +1,56 @@ +/* +Copyright 2024 Gravitational, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +package notifications + +import ( + "time" + + "google.golang.org/protobuf/types/known/timestamppb" + + headerv1 "github.com/gravitational/teleport/api/gen/proto/go/teleport/header/v1" + notificationsv1 "github.com/gravitational/teleport/api/gen/proto/go/teleport/notifications/v1" + "github.com/gravitational/teleport/api/types" +) + +// NewPendingUserTasksIntegrationNotification creates a new GlobalNotification for warning the users about pending UserTasks related to an integration. +func NewPendingUserTasksIntegrationNotification(integrationName string, expires time.Time) *notificationsv1.GlobalNotification { + return ¬ificationsv1.GlobalNotification{ + Spec: ¬ificationsv1.GlobalNotificationSpec{ + Matcher: ¬ificationsv1.GlobalNotificationSpec_ByPermissions{ + ByPermissions: ¬ificationsv1.ByPermissions{ + RoleConditions: []*types.RoleConditions{{ + Rules: []types.Rule{{ + Resources: []string{types.KindIntegration}, + Verbs: []string{types.VerbList, types.VerbRead}, + }}, + }}, + }, + }, + Notification: ¬ificationsv1.Notification{ + Spec: ¬ificationsv1.NotificationSpec{}, + SubKind: types.NotificationPendingUserTaskIntegrationSubKind, + Metadata: &headerv1.Metadata{ + Labels: map[string]string{ + types.NotificationTitleLabel: "Your integration needs attention.", + types.NotificationIntegrationLabel: integrationName, + }, + Expires: timestamppb.New(expires), + }, + }, + }, + } +} diff --git a/api/types/types.pb.go b/api/types/types.pb.go index bede358a5c6e9..07d94fff0db72 100644 --- a/api/types/types.pb.go +++ b/api/types/types.pb.go @@ -20147,10 +20147,12 @@ type IntegrationV1 struct { // Header is the resource header. ResourceHeader `protobuf:"bytes,1,opt,name=Header,proto3,embedded=Header" json:""` // Spec is an Integration specification. - Spec IntegrationSpecV1 `protobuf:"bytes,2,opt,name=Spec,proto3" json:"spec"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Spec IntegrationSpecV1 `protobuf:"bytes,2,opt,name=Spec,proto3" json:"spec"` + // Status has the current state of the integration. + Status IntegrationStatusV1 `protobuf:"bytes,3,opt,name=Status,proto3" json:"status"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *IntegrationV1) Reset() { *m = IntegrationV1{} } @@ -20185,6 +20187,51 @@ func (m *IntegrationV1) XXX_DiscardUnknown() { var xxx_messageInfo_IntegrationV1 proto.InternalMessageInfo +// IntegrationStatusV1 contains the current status for a given integration. +type IntegrationStatusV1 struct { + // PendingUserTasksNotificationID contains the notification ID that indicates that this integration has unresolved user tasks. + PendingUserTasksNotificationID string `protobuf:"bytes,1,opt,name=PendingUserTasksNotificationID,proto3" json:"pending_user_tasks_notification_id,omitempty"` + // NeedsAttentionNotificationExpires contains the expiration date for the notification. + // Used to ensure new notifications' expiration is the greater between the current notification and the new one. + PendingUserTasksNotificationExpires *time.Time `protobuf:"bytes,2,opt,name=PendingUserTasksNotificationExpires,proto3,stdtime" json:"pending_user_tasks_notification_expires,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *IntegrationStatusV1) Reset() { *m = IntegrationStatusV1{} } +func (m *IntegrationStatusV1) String() string { return proto.CompactTextString(m) } +func (*IntegrationStatusV1) ProtoMessage() {} +func (*IntegrationStatusV1) Descriptor() ([]byte, []int) { + return fileDescriptor_9198ee693835762e, []int{348} +} +func (m *IntegrationStatusV1) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *IntegrationStatusV1) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_IntegrationStatusV1.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 *IntegrationStatusV1) XXX_Merge(src proto.Message) { + xxx_messageInfo_IntegrationStatusV1.Merge(m, src) +} +func (m *IntegrationStatusV1) XXX_Size() int { + return m.Size() +} +func (m *IntegrationStatusV1) XXX_DiscardUnknown() { + xxx_messageInfo_IntegrationStatusV1.DiscardUnknown(m) +} + +var xxx_messageInfo_IntegrationStatusV1 proto.InternalMessageInfo + // IntegrationSpecV1 contains properties of all the supported integrations. type IntegrationSpecV1 struct { // Types that are valid to be assigned to SubKindSpec: @@ -20204,7 +20251,7 @@ func (m *IntegrationSpecV1) Reset() { *m = IntegrationSpecV1{} } func (m *IntegrationSpecV1) String() string { return proto.CompactTextString(m) } func (*IntegrationSpecV1) ProtoMessage() {} func (*IntegrationSpecV1) Descriptor() ([]byte, []int) { - return fileDescriptor_9198ee693835762e, []int{348} + return fileDescriptor_9198ee693835762e, []int{349} } func (m *IntegrationSpecV1) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -20323,7 +20370,7 @@ func (m *AWSOIDCIntegrationSpecV1) Reset() { *m = AWSOIDCIntegrationSpec func (m *AWSOIDCIntegrationSpecV1) String() string { return proto.CompactTextString(m) } func (*AWSOIDCIntegrationSpecV1) ProtoMessage() {} func (*AWSOIDCIntegrationSpecV1) Descriptor() ([]byte, []int) { - return fileDescriptor_9198ee693835762e, []int{349} + return fileDescriptor_9198ee693835762e, []int{350} } func (m *AWSOIDCIntegrationSpecV1) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -20369,7 +20416,7 @@ func (m *AzureOIDCIntegrationSpecV1) Reset() { *m = AzureOIDCIntegration func (m *AzureOIDCIntegrationSpecV1) String() string { return proto.CompactTextString(m) } func (*AzureOIDCIntegrationSpecV1) ProtoMessage() {} func (*AzureOIDCIntegrationSpecV1) Descriptor() ([]byte, []int) { - return fileDescriptor_9198ee693835762e, []int{350} + return fileDescriptor_9198ee693835762e, []int{351} } func (m *AzureOIDCIntegrationSpecV1) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -20411,7 +20458,7 @@ func (m *GitHubIntegrationSpecV1) Reset() { *m = GitHubIntegrationSpecV1 func (m *GitHubIntegrationSpecV1) String() string { return proto.CompactTextString(m) } func (*GitHubIntegrationSpecV1) ProtoMessage() {} func (*GitHubIntegrationSpecV1) Descriptor() ([]byte, []int) { - return fileDescriptor_9198ee693835762e, []int{351} + return fileDescriptor_9198ee693835762e, []int{352} } func (m *GitHubIntegrationSpecV1) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -20472,7 +20519,7 @@ func (m *HeadlessAuthentication) Reset() { *m = HeadlessAuthentication{} func (m *HeadlessAuthentication) String() string { return proto.CompactTextString(m) } func (*HeadlessAuthentication) ProtoMessage() {} func (*HeadlessAuthentication) Descriptor() ([]byte, []int) { - return fileDescriptor_9198ee693835762e, []int{352} + return fileDescriptor_9198ee693835762e, []int{353} } func (m *HeadlessAuthentication) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -20529,7 +20576,7 @@ func (m *WatchKind) Reset() { *m = WatchKind{} } func (m *WatchKind) String() string { return proto.CompactTextString(m) } func (*WatchKind) ProtoMessage() {} func (*WatchKind) Descriptor() ([]byte, []int) { - return fileDescriptor_9198ee693835762e, []int{353} + return fileDescriptor_9198ee693835762e, []int{354} } func (m *WatchKind) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -20579,7 +20626,7 @@ func (m *WatchStatusV1) Reset() { *m = WatchStatusV1{} } func (m *WatchStatusV1) String() string { return proto.CompactTextString(m) } func (*WatchStatusV1) ProtoMessage() {} func (*WatchStatusV1) Descriptor() ([]byte, []int) { - return fileDescriptor_9198ee693835762e, []int{354} + return fileDescriptor_9198ee693835762e, []int{355} } func (m *WatchStatusV1) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -20620,7 +20667,7 @@ func (m *WatchStatusSpecV1) Reset() { *m = WatchStatusSpecV1{} } func (m *WatchStatusSpecV1) String() string { return proto.CompactTextString(m) } func (*WatchStatusSpecV1) ProtoMessage() {} func (*WatchStatusSpecV1) Descriptor() ([]byte, []int) { - return fileDescriptor_9198ee693835762e, []int{355} + return fileDescriptor_9198ee693835762e, []int{356} } func (m *WatchStatusSpecV1) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -20670,7 +20717,7 @@ func (m *ServerInfoV1) Reset() { *m = ServerInfoV1{} } func (m *ServerInfoV1) String() string { return proto.CompactTextString(m) } func (*ServerInfoV1) ProtoMessage() {} func (*ServerInfoV1) Descriptor() ([]byte, []int) { - return fileDescriptor_9198ee693835762e, []int{356} + return fileDescriptor_9198ee693835762e, []int{357} } func (m *ServerInfoV1) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -20712,7 +20759,7 @@ func (m *ServerInfoSpecV1) Reset() { *m = ServerInfoSpecV1{} } func (m *ServerInfoSpecV1) String() string { return proto.CompactTextString(m) } func (*ServerInfoSpecV1) ProtoMessage() {} func (*ServerInfoSpecV1) Descriptor() ([]byte, []int) { - return fileDescriptor_9198ee693835762e, []int{357} + return fileDescriptor_9198ee693835762e, []int{358} } func (m *ServerInfoSpecV1) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -20769,7 +20816,7 @@ func (m *JamfSpecV1) Reset() { *m = JamfSpecV1{} } func (m *JamfSpecV1) String() string { return proto.CompactTextString(m) } func (*JamfSpecV1) ProtoMessage() {} func (*JamfSpecV1) Descriptor() ([]byte, []int) { - return fileDescriptor_9198ee693835762e, []int{358} + return fileDescriptor_9198ee693835762e, []int{359} } func (m *JamfSpecV1) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -20834,7 +20881,7 @@ func (m *JamfInventoryEntry) Reset() { *m = JamfInventoryEntry{} } func (m *JamfInventoryEntry) String() string { return proto.CompactTextString(m) } func (*JamfInventoryEntry) ProtoMessage() {} func (*JamfInventoryEntry) Descriptor() ([]byte, []int) { - return fileDescriptor_9198ee693835762e, []int{359} + return fileDescriptor_9198ee693835762e, []int{360} } func (m *JamfInventoryEntry) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -20891,7 +20938,7 @@ type MessageWithHeader struct { func (m *MessageWithHeader) Reset() { *m = MessageWithHeader{} } func (*MessageWithHeader) ProtoMessage() {} func (*MessageWithHeader) Descriptor() ([]byte, []int) { - return fileDescriptor_9198ee693835762e, []int{360} + return fileDescriptor_9198ee693835762e, []int{361} } func (m *MessageWithHeader) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -20955,7 +21002,7 @@ func (m *AWSMatcher) Reset() { *m = AWSMatcher{} } func (m *AWSMatcher) String() string { return proto.CompactTextString(m) } func (*AWSMatcher) ProtoMessage() {} func (*AWSMatcher) Descriptor() ([]byte, []int) { - return fileDescriptor_9198ee693835762e, []int{361} + return fileDescriptor_9198ee693835762e, []int{362} } func (m *AWSMatcher) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -21000,7 +21047,7 @@ func (m *AssumeRole) Reset() { *m = AssumeRole{} } func (m *AssumeRole) String() string { return proto.CompactTextString(m) } func (*AssumeRole) ProtoMessage() {} func (*AssumeRole) Descriptor() ([]byte, []int) { - return fileDescriptor_9198ee693835762e, []int{362} + return fileDescriptor_9198ee693835762e, []int{363} } func (m *AssumeRole) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -21062,7 +21109,7 @@ func (m *InstallerParams) Reset() { *m = InstallerParams{} } func (m *InstallerParams) String() string { return proto.CompactTextString(m) } func (*InstallerParams) ProtoMessage() {} func (*InstallerParams) Descriptor() ([]byte, []int) { - return fileDescriptor_9198ee693835762e, []int{363} + return fileDescriptor_9198ee693835762e, []int{364} } func (m *InstallerParams) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -21105,7 +21152,7 @@ func (m *AWSSSM) Reset() { *m = AWSSSM{} } func (m *AWSSSM) String() string { return proto.CompactTextString(m) } func (*AWSSSM) ProtoMessage() {} func (*AWSSSM) Descriptor() ([]byte, []int) { - return fileDescriptor_9198ee693835762e, []int{364} + return fileDescriptor_9198ee693835762e, []int{365} } func (m *AWSSSM) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -21148,7 +21195,7 @@ func (m *AzureInstallerParams) Reset() { *m = AzureInstallerParams{} } func (m *AzureInstallerParams) String() string { return proto.CompactTextString(m) } func (*AzureInstallerParams) ProtoMessage() {} func (*AzureInstallerParams) Descriptor() ([]byte, []int) { - return fileDescriptor_9198ee693835762e, []int{365} + return fileDescriptor_9198ee693835762e, []int{366} } func (m *AzureInstallerParams) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -21202,7 +21249,7 @@ func (m *AzureMatcher) Reset() { *m = AzureMatcher{} } func (m *AzureMatcher) String() string { return proto.CompactTextString(m) } func (*AzureMatcher) ProtoMessage() {} func (*AzureMatcher) Descriptor() ([]byte, []int) { - return fileDescriptor_9198ee693835762e, []int{366} + return fileDescriptor_9198ee693835762e, []int{367} } func (m *AzureMatcher) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -21257,7 +21304,7 @@ func (m *GCPMatcher) Reset() { *m = GCPMatcher{} } func (m *GCPMatcher) String() string { return proto.CompactTextString(m) } func (*GCPMatcher) ProtoMessage() {} func (*GCPMatcher) Descriptor() ([]byte, []int) { - return fileDescriptor_9198ee693835762e, []int{367} + return fileDescriptor_9198ee693835762e, []int{368} } func (m *GCPMatcher) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -21303,7 +21350,7 @@ func (m *KubernetesMatcher) Reset() { *m = KubernetesMatcher{} } func (m *KubernetesMatcher) String() string { return proto.CompactTextString(m) } func (*KubernetesMatcher) ProtoMessage() {} func (*KubernetesMatcher) Descriptor() ([]byte, []int) { - return fileDescriptor_9198ee693835762e, []int{368} + return fileDescriptor_9198ee693835762e, []int{369} } func (m *KubernetesMatcher) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -21345,7 +21392,7 @@ func (m *OktaOptions) Reset() { *m = OktaOptions{} } func (m *OktaOptions) String() string { return proto.CompactTextString(m) } func (*OktaOptions) ProtoMessage() {} func (*OktaOptions) Descriptor() ([]byte, []int) { - return fileDescriptor_9198ee693835762e, []int{369} + return fileDescriptor_9198ee693835762e, []int{370} } func (m *OktaOptions) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -21389,7 +21436,7 @@ func (m *AccessGraphSync) Reset() { *m = AccessGraphSync{} } func (m *AccessGraphSync) String() string { return proto.CompactTextString(m) } func (*AccessGraphSync) ProtoMessage() {} func (*AccessGraphSync) Descriptor() ([]byte, []int) { - return fileDescriptor_9198ee693835762e, []int{370} + return fileDescriptor_9198ee693835762e, []int{371} } func (m *AccessGraphSync) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -21435,7 +21482,7 @@ func (m *AccessGraphAWSSync) Reset() { *m = AccessGraphAWSSync{} } func (m *AccessGraphAWSSync) String() string { return proto.CompactTextString(m) } func (*AccessGraphAWSSync) ProtoMessage() {} func (*AccessGraphAWSSync) Descriptor() ([]byte, []int) { - return fileDescriptor_9198ee693835762e, []int{371} + return fileDescriptor_9198ee693835762e, []int{372} } func (m *AccessGraphAWSSync) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -21875,6 +21922,7 @@ func init() { proto.RegisterType((*OktaAssignmentSpecV1)(nil), "types.OktaAssignmentSpecV1") proto.RegisterType((*OktaAssignmentTargetV1)(nil), "types.OktaAssignmentTargetV1") proto.RegisterType((*IntegrationV1)(nil), "types.IntegrationV1") + proto.RegisterType((*IntegrationStatusV1)(nil), "types.IntegrationStatusV1") proto.RegisterType((*IntegrationSpecV1)(nil), "types.IntegrationSpecV1") proto.RegisterType((*AWSOIDCIntegrationSpecV1)(nil), "types.AWSOIDCIntegrationSpecV1") proto.RegisterType((*AzureOIDCIntegrationSpecV1)(nil), "types.AzureOIDCIntegrationSpecV1") @@ -21906,7 +21954,7 @@ func init() { func init() { proto.RegisterFile("teleport/legacy/types/types.proto", fileDescriptor_9198ee693835762e) } var fileDescriptor_9198ee693835762e = []byte{ - // 30381 bytes of a gzipped FileDescriptorProto + // 30483 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0xbd, 0x6d, 0x70, 0x1c, 0x49, 0x76, 0x20, 0x36, 0xdd, 0x8d, 0x8f, 0xc6, 0xc3, 0x57, 0x23, 0x01, 0x92, 0x20, 0x66, 0x86, 0xcd, 0xa9, 0x99, 0xe1, 0x90, 0xb3, 0x33, 0xe4, 0x12, 0xdc, 0xe1, 0xee, 0xec, 0x7c, 0x6d, 0xa3, 0x1b, @@ -23391,421 +23439,428 @@ var fileDescriptor_9198ee693835762e = []byte{ 0x93, 0xb5, 0x1a, 0xfa, 0x9c, 0xa8, 0x9f, 0x28, 0xd0, 0xc9, 0x25, 0x80, 0xe8, 0x15, 0x9f, 0xbf, 0xb9, 0x98, 0x0a, 0xe4, 0xf3, 0x43, 0xff, 0xe7, 0x2f, 0x16, 0x33, 0x4b, 0x00, 0x79, 0x19, 0x21, 0xc7, 0x58, 0x85, 0x8b, 0x3d, 0xd7, 0x3d, 0xb9, 0x06, 0x85, 0x5d, 0x5b, 0x68, 0xfd, 0xea, 0xfb, - 0x76, 0xbb, 0xfd, 0xff, 0xb3, 0xf7, 0x2d, 0x31, 0x6e, 0x64, 0xd7, 0xa1, 0x2a, 0x92, 0xdd, 0xcd, - 0x3e, 0xec, 0x4f, 0xf5, 0xd5, 0xa7, 0x7b, 0x5a, 0x1a, 0x69, 0x54, 0xa3, 0x91, 0x25, 0x8e, 0x67, - 0x6c, 0x69, 0xde, 0x78, 0x66, 0x6c, 0x8f, 0xc7, 0xd5, 0xec, 0xea, 0x26, 0x25, 0xfe, 0x5c, 0x45, - 0xb6, 0x2c, 0xcb, 0x76, 0xb9, 0x44, 0x56, 0x77, 0x97, 0xcd, 0x66, 0xd1, 0x2c, 0x72, 0x64, 0x19, - 0x0f, 0x78, 0x36, 0x1e, 0x60, 0x03, 0xef, 0x25, 0x71, 0xe2, 0x24, 0xc8, 0x20, 0x1b, 0x2f, 0x62, - 0x04, 0x59, 0x64, 0x1b, 0x24, 0x88, 0xb3, 0xf1, 0xce, 0x80, 0x61, 0xc0, 0x40, 0x76, 0x4e, 0x30, - 0x48, 0x06, 0x48, 0x80, 0x7c, 0x76, 0x41, 0xb2, 0xf0, 0x2a, 0xb8, 0xe7, 0xde, 0x5b, 0x75, 0xeb, - 0x43, 0xaa, 0xe5, 0x19, 0x27, 0x31, 0xe0, 0x55, 0x37, 0xcf, 0x3d, 0xe7, 0xd4, 0xfd, 0xdf, 0x73, - 0xcf, 0x3d, 0x1f, 0x77, 0xc0, 0x77, 0xdc, 0x75, 0x01, 0xaf, 0x30, 0x30, 0xe3, 0xac, 0xbd, 0x05, - 0xe7, 0xb2, 0x06, 0x9c, 0x5c, 0x85, 0x15, 0x39, 0x18, 0x10, 0x67, 0x52, 0x72, 0x46, 0x9e, 0x08, - 0x07, 0xc4, 0x19, 0xfc, 0x40, 0x81, 0x4b, 0xf3, 0xb6, 0x0f, 0xb2, 0x0d, 0xc5, 0xd1, 0xd8, 0xf3, - 0x51, 0x4c, 0xe5, 0xd9, 0x16, 0xc4, 0x6f, 0x4c, 0xa4, 0x80, 0xf2, 0xd4, 0xc4, 0x39, 0xe2, 0x0e, - 0x1e, 0xe6, 0x32, 0x42, 0x3a, 0xce, 0x51, 0x40, 0x5e, 0x84, 0x8d, 0xbe, 0x7b, 0xe8, 0x4c, 0x07, - 0x13, 0x3b, 0xe8, 0x1d, 0xbb, 0x7d, 0x74, 0xc1, 0x42, 0xc3, 0x3d, 0x53, 0xe5, 0x05, 0x96, 0x80, - 0xa7, 0x6a, 0xbc, 0x30, 0xa3, 0xc6, 0x77, 0x0a, 0x45, 0x45, 0xcd, 0x99, 0x68, 0x29, 0xa5, 0x7d, - 0x23, 0x07, 0x5b, 0xb3, 0xd6, 0x0b, 0x79, 0x33, 0xab, 0x0f, 0xd8, 0xc3, 0x85, 0x0c, 0x97, 0x1f, - 0x2e, 0xa4, 0xaf, 0x91, 0xdb, 0x10, 0x3a, 0x50, 0x3d, 0x29, 0x18, 0x82, 0x80, 0x51, 0x9a, 0x91, - 0x13, 0x04, 0x8f, 0xe8, 0x96, 0x90, 0x97, 0x02, 0xea, 0x72, 0x98, 0x4c, 0x23, 0x60, 0xe4, 0x35, - 0x80, 0xde, 0xc0, 0x0f, 0x5c, 0xb4, 0x0f, 0xe0, 0xb2, 0x06, 0x33, 0x0b, 0x0f, 0xa1, 0xf2, 0x83, - 0x30, 0x42, 0x2b, 0x7e, 0xdf, 0xe5, 0x03, 0xe8, 0xc0, 0xe6, 0x8c, 0x0d, 0x92, 0x0e, 0x4f, 0x94, - 0x9d, 0x5e, 0xe4, 0xba, 0x9a, 0x86, 0x39, 0xea, 0x93, 0x3d, 0x9e, 0x9b, 0x35, 0x47, 0x1e, 0x03, - 0x49, 0xef, 0x82, 0x94, 0x3b, 0x37, 0x6e, 0x9e, 0x8e, 0x43, 0xee, 0x0c, 0xd2, 0x1d, 0x0f, 0xc8, - 0x15, 0x28, 0x89, 0x5c, 0x96, 0x54, 0x96, 0x67, 0xcc, 0x81, 0x83, 0xee, 0xba, 0x38, 0x79, 0x30, - 0x62, 0x2a, 0xba, 0xc9, 0x71, 0x29, 0x61, 0x19, 0x21, 0x9d, 0xc7, 0x23, 0xd1, 0xba, 0x4b, 0x62, - 0x7e, 0xc7, 0xcf, 0x26, 0x5e, 0xfa, 0xfb, 0x8a, 0x18, 0xfe, 0xf4, 0xe6, 0xfe, 0xa4, 0xfa, 0x11, - 0x40, 0x2f, 0x25, 0x5e, 0x31, 0xfc, 0x9f, 0x4a, 0x2d, 0x62, 0xd5, 0x71, 0xa9, 0x85, 0xff, 0x24, - 0xd7, 0x61, 0x7d, 0xcc, 0xec, 0x58, 0x27, 0x3e, 0xef, 0x4f, 0x96, 0x37, 0x64, 0x95, 0x81, 0x3b, - 0x3e, 0xf6, 0x29, 0xaf, 0xd7, 0x9d, 0xb0, 0xc3, 0xa4, 0xb3, 0x8e, 0xbc, 0x0c, 0xcb, 0xf4, 0xac, - 0xc3, 0x48, 0x3b, 0x09, 0xf7, 0x08, 0xc4, 0x43, 0xc9, 0xc1, 0x2c, 0x7e, 0x99, 0xff, 0xcf, 0x79, - 0xbd, 0x93, 0x13, 0xcc, 0xe4, 0x93, 0x96, 0x6c, 0xc2, 0x92, 0x3f, 0x3e, 0x92, 0x9a, 0xb6, 0xe8, - 0x8f, 0x8f, 0x68, 0xbb, 0x6e, 0x80, 0xca, 0xbc, 0x75, 0x58, 0xd4, 0x84, 0xe0, 0xf1, 0x90, 0x5d, - 0xc5, 0x8b, 0xe6, 0x1a, 0x83, 0x63, 0xc2, 0xfe, 0xc7, 0xc3, 0x1e, 0xc5, 0x0c, 0x02, 0xdf, 0x96, - 0x03, 0x6c, 0xf1, 0x66, 0xaf, 0x05, 0x81, 0x1f, 0x45, 0xda, 0xea, 0x93, 0x1d, 0x58, 0xa5, 0x7c, - 0xc2, 0x30, 0x5f, 0x5c, 0x10, 0x78, 0x36, 0x2d, 0x08, 0x3c, 0x1e, 0xf6, 0x44, 0x15, 0xcd, 0x95, - 0x40, 0xfa, 0x45, 0xee, 0x82, 0x2a, 0x49, 0x4c, 0xe8, 0xbe, 0x99, 0xb0, 0xa9, 0x8e, 0xd8, 0x48, - 0x92, 0x56, 0x6d, 0x78, 0xe8, 0x9b, 0xeb, 0xbd, 0x38, 0x80, 0x77, 0xcd, 0xf7, 0x14, 0xb1, 0x97, - 0x66, 0x10, 0x11, 0x0d, 0x56, 0x8f, 0x9d, 0xc0, 0x0e, 0x82, 0x13, 0x66, 0x23, 0xc6, 0x03, 0x0b, - 0x97, 0x8e, 0x9d, 0xc0, 0x0a, 0x4e, 0x44, 0xe2, 0x92, 0xf3, 0x14, 0xc7, 0x77, 0xa6, 0x93, 0x63, - 0x5b, 0x96, 0xff, 0x58, 0x8f, 0x9d, 0x3d, 0x76, 0x82, 0x16, 0x2d, 0x93, 0x78, 0x93, 0x6b, 0xb0, - 0x86, 0x7c, 0x7b, 0x9e, 0x60, 0x8c, 0x91, 0x2f, 0xcc, 0x15, 0xca, 0xb8, 0xe7, 0x31, 0xce, 0xbc, - 0x86, 0xff, 0x94, 0x83, 0x0b, 0xd9, 0xbd, 0x83, 0xd3, 0x93, 0xf6, 0x29, 0xfa, 0xe8, 0xf1, 0xba, - 0x2d, 0x53, 0x08, 0x8b, 0x5a, 0x92, 0x35, 0x38, 0xb9, 0xcc, 0xc1, 0x29, 0xc3, 0x06, 0x32, 0xe2, - 0x92, 0xe6, 0xc0, 0x0b, 0x26, 0x3c, 0x18, 0x87, 0xb9, 0x4e, 0x0b, 0xd8, 0x7e, 0x5e, 0xa7, 0x60, - 0xf2, 0x02, 0xac, 0x89, 0x1d, 0xd9, 0x7f, 0x34, 0xa4, 0x1f, 0x66, 0xdb, 0xf1, 0x2a, 0x87, 0xb6, - 0x10, 0x48, 0xce, 0xc3, 0xa2, 0x33, 0x1a, 0xd1, 0x4f, 0xb2, 0x5d, 0x78, 0xc1, 0x19, 0x8d, 0x58, - 0x72, 0x1d, 0xf4, 0x48, 0xb4, 0x0f, 0xd1, 0x4a, 0x88, 0x9b, 0x24, 0x9a, 0x2b, 0x08, 0x64, 0x96, - 0x43, 0x01, 0x5d, 0xf7, 0x94, 0x56, 0xa0, 0x2c, 0x21, 0x0a, 0x38, 0xa3, 0x10, 0xe1, 0x19, 0x28, - 0x8a, 0xf7, 0x6a, 0xe6, 0x58, 0x61, 0x2e, 0x39, 0xfc, 0xad, 0xfa, 0x55, 0xd8, 0xec, 0x7b, 0x01, - 0x4e, 0x5e, 0xd6, 0xa4, 0xd1, 0x88, 0xfb, 0x40, 0xb2, 0x20, 0xbd, 0xe6, 0x39, 0x5e, 0x4c, 0x7b, - 0x52, 0x1f, 0x8d, 0x98, 0x27, 0x24, 0xef, 0xeb, 0xd7, 0x61, 0x9d, 0x4b, 0x5c, 0xfc, 0x88, 0xc4, - 0xba, 0xf0, 0x05, 0x4c, 0xaf, 0x42, 0x3c, 0x9d, 0x11, 0x70, 0x50, 0xad, 0x2f, 0x28, 0xff, 0x56, - 0x81, 0xf3, 0x99, 0x22, 0x1b, 0xf9, 0x12, 0x30, 0x97, 0xaf, 0x89, 0x6f, 0x8f, 0xdd, 0x9e, 0x37, - 0xf2, 0x30, 0x86, 0x06, 0x53, 0x69, 0xde, 0x9e, 0x27, 0xec, 0xa1, 0xfb, 0x58, 0xc7, 0x37, 0x43, - 0x22, 0xa6, 0x6b, 0x51, 0xc7, 0x09, 0xf0, 0xf6, 0x03, 0x38, 0x9f, 0x89, 0x9a, 0xa1, 0x03, 0xf9, - 0x70, 0x3c, 0x99, 0xb4, 0x78, 0xa4, 0x4a, 0x34, 0x5a, 0xd2, 0x8d, 0xf0, 0xe6, 0xfd, 0x30, 0x6c, - 0x5e, 0x42, 0xb8, 0x23, 0x46, 0x72, 0x5d, 0x67, 0xdd, 0x4f, 0x04, 0xd1, 0xec, 0xa5, 0xfd, 0x00, - 0xce, 0xf3, 0xc9, 0x77, 0x34, 0x76, 0x46, 0xc7, 0x11, 0x3b, 0x56, 0xd1, 0x0f, 0x65, 0xb1, 0x63, - 0xb3, 0x72, 0x9f, 0xe2, 0x87, 0x5c, 0xcf, 0x3a, 0x69, 0x20, 0x6f, 0xc3, 0x37, 0x73, 0x62, 0xa9, - 0x67, 0x54, 0x27, 0x63, 0x5a, 0x2b, 0x59, 0xd3, 0xfa, 0xf4, 0x6b, 0xaa, 0x09, 0x44, 0xde, 0xac, - 0x98, 0xd6, 0x93, 0x1b, 0x54, 0x09, 0x39, 0x9d, 0x57, 0x44, 0xda, 0x1a, 0x2c, 0x96, 0xcc, 0x73, - 0xa3, 0x97, 0x04, 0x91, 0x8b, 0xb0, 0x1c, 0xe6, 0xcb, 0xe6, 0x07, 0x47, 0x91, 0x01, 0x6a, 0x7d, - 0xf2, 0x1c, 0xac, 0x30, 0x91, 0x3c, 0xb6, 0xe6, 0x00, 0x61, 0x3a, 0x5d, 0x78, 0xa2, 0x0f, 0x14, - 0x78, 0xee, 0x49, 0x7d, 0x48, 0xee, 0xc1, 0x05, 0x34, 0xeb, 0x08, 0xfc, 0x70, 0x18, 0xec, 0x9e, - 0xd3, 0x3b, 0x76, 0xf9, 0xac, 0xd5, 0x32, 0x07, 0x63, 0x34, 0xb2, 0xac, 0x96, 0x34, 0x0e, 0xa3, - 0x91, 0x15, 0xf8, 0xe2, 0x77, 0x85, 0x92, 0xf3, 0x3a, 0xf4, 0xe1, 0xe2, 0x1c, 0x4a, 0x69, 0xe3, - 0x50, 0xe4, 0x8d, 0xe3, 0x06, 0xa8, 0x87, 0x6e, 0x9f, 0xca, 0xc4, 0x6e, 0x1f, 0xab, 0xf6, 0xf6, - 0x6d, 0x96, 0x21, 0xde, 0x5c, 0x0b, 0xe1, 0x56, 0xe0, 0x1f, 0xdc, 0xe6, 0x5f, 0x39, 0x11, 0x47, - 0x9e, 0x7c, 0xad, 0x20, 0x2f, 0xc3, 0xd9, 0x44, 0x7c, 0x92, 0xc8, 0xe1, 0xdd, 0xdc, 0xa0, 0x45, - 0xf1, 0x68, 0x56, 0x57, 0x61, 0x45, 0xcc, 0x8a, 0x71, 0xe8, 0x07, 0x67, 0x96, 0x38, 0x8c, 0xae, - 0x3a, 0xfe, 0xb9, 0xa9, 0x68, 0x54, 0xe6, 0x8d, 0xe4, 0x14, 0xb2, 0x34, 0x79, 0x09, 0x48, 0x28, - 0xb7, 0x87, 0x1b, 0x05, 0xff, 0xe0, 0x86, 0x28, 0x09, 0x57, 0x38, 0xff, 0xec, 0x5f, 0xe5, 0xe0, - 0x6c, 0xc6, 0x55, 0x86, 0x5e, 0x02, 0xbc, 0xe1, 0xc4, 0x3d, 0x62, 0x57, 0x08, 0xb9, 0x91, 0xeb, - 0x12, 0x9c, 0xeb, 0xa7, 0x16, 0x59, 0x06, 0x74, 0xfe, 0x2d, 0xfe, 0x8b, 0x6e, 0x1e, 0xce, 0x58, - 0xa8, 0x5e, 0xe8, 0xbf, 0xa4, 0x06, 0x1b, 0x98, 0xd6, 0x21, 0xf0, 0x7c, 0xcc, 0x0e, 0x81, 0x42, - 0x48, 0x21, 0x76, 0xd9, 0xc1, 0x5a, 0xb4, 0x25, 0x24, 0x2a, 0x85, 0x98, 0xea, 0x28, 0x01, 0x21, - 0x9f, 0x80, 0x6d, 0xe9, 0xac, 0xb1, 0x13, 0x2b, 0x0f, 0x2d, 0xdd, 0xcd, 0x4d, 0x27, 0x3c, 0x75, - 0x76, 0x63, 0x6b, 0x70, 0x07, 0x2e, 0xe3, 0x20, 0x7a, 0xfd, 0x91, 0x9d, 0xca, 0x03, 0x82, 0x4d, - 0x65, 0x81, 0xf3, 0xb7, 0x29, 0x56, 0xad, 0x3f, 0x4a, 0xa4, 0x04, 0xa1, 0xad, 0xe6, 0xdd, 0xf7, - 0x00, 0xce, 0x67, 0xd6, 0x98, 0x1e, 0x30, 0x68, 0x48, 0x15, 0xc9, 0x46, 0x4b, 0xf4, 0x37, 0x15, - 0x8e, 0xae, 0xc2, 0xca, 0x43, 0xd7, 0x19, 0xbb, 0x63, 0x7e, 0x72, 0xf3, 0x29, 0xc1, 0x60, 0xf2, - 0xc1, 0xdd, 0x8f, 0x0f, 0x0d, 0xd7, 0x19, 0x91, 0x06, 0x9c, 0x65, 0x27, 0xa0, 0x77, 0x82, 0xc2, - 0x20, 0xd7, 0x33, 0x29, 0x31, 0x71, 0x08, 0x49, 0xf0, 0x68, 0xaa, 0x21, 0x16, 0xa3, 0x36, 0x37, - 0x8e, 0x92, 0x20, 0xba, 0xa2, 0x2f, 0x64, 0x63, 0x93, 0x1d, 0x28, 0x31, 0xe6, 0xec, 0x5a, 0xc0, - 0x1e, 0x08, 0xae, 0xce, 0xfd, 0x42, 0x05, 0xed, 0x8b, 0x83, 0xf0, 0x7f, 0x7a, 0x5e, 0xe3, 0x5b, - 0xac, 0x7d, 0x22, 0xbf, 0x7f, 0x98, 0x2b, 0x08, 0xe4, 0xef, 0x1e, 0xda, 0x5f, 0x2b, 0xa2, 0xa9, - 0xb1, 0xcb, 0x31, 0x9d, 0x5a, 0x81, 0x3b, 0x14, 0x6f, 0x40, 0xcb, 0x26, 0xff, 0xf5, 0x94, 0x53, - 0x9d, 0xbc, 0x06, 0x2b, 0x94, 0xed, 0xd1, 0x74, 0xc8, 0xa6, 0x5c, 0x3e, 0x16, 0x97, 0xa7, 0xc1, - 0x8a, 0xe8, 0xb0, 0x55, 0xcf, 0x98, 0xa5, 0x93, 0xe8, 0x27, 0x95, 0x96, 0x83, 0x93, 0xc9, 0x48, - 0x9e, 0xa8, 0x42, 0x51, 0x68, 0x35, 0x3a, 0x6d, 0x4e, 0x52, 0xa4, 0x38, 0x91, 0xb4, 0xbc, 0xb3, - 0xc8, 0x54, 0x85, 0xda, 0x8b, 0x50, 0x92, 0x78, 0xd3, 0xc6, 0x30, 0xcf, 0x19, 0xd1, 0x18, 0xf6, - 0x8b, 0x0f, 0xf6, 0x43, 0x28, 0x0a, 0x96, 0xf4, 0x5a, 0x70, 0xec, 0x07, 0x62, 0x91, 0xe3, 0xff, - 0x14, 0x46, 0x7b, 0x19, 0x1b, 0xb9, 0x60, 0xe2, 0xff, 0x78, 0x96, 0x4c, 0x1c, 0x7a, 0x1f, 0x18, - 0x04, 0xf6, 0x08, 0x2d, 0xb0, 0x42, 0xe1, 0x99, 0xc2, 0x3b, 0x83, 0x80, 0xd9, 0x65, 0xf1, 0x6f, - 0xfc, 0x45, 0x78, 0x08, 0x27, 0xb4, 0x09, 0xb3, 0xf6, 0xcc, 0xd8, 0x91, 0x91, 0x4b, 0x1f, 0x19, - 0x2c, 0xde, 0x0a, 0xa7, 0x64, 0x5f, 0x06, 0x84, 0xe1, 0x91, 0x21, 0xed, 0x0c, 0x85, 0xd8, 0xce, - 0x20, 0xdd, 0xc9, 0xa3, 0xd1, 0x63, 0x27, 0x8e, 0xb8, 0x93, 0x27, 0xf7, 0xa9, 0x3f, 0xce, 0x09, - 0x15, 0xc1, 0x8e, 0xef, 0x4f, 0x82, 0xc9, 0xd8, 0x19, 0xc5, 0x54, 0xa1, 0xe4, 0x04, 0x9e, 0x41, - 0x09, 0xfa, 0x36, 0xa6, 0xd0, 0xf0, 0xc7, 0x22, 0xc4, 0x47, 0x38, 0x73, 0x4b, 0xb7, 0x3f, 0x12, - 0x97, 0xf1, 0x75, 0x8a, 0xad, 0xcb, 0xc8, 0x74, 0xc2, 0x4a, 0x5c, 0xab, 0x67, 0xcc, 0x4d, 0xc6, - 0x33, 0x85, 0x45, 0xaa, 0x19, 0x8b, 0x38, 0xa9, 0x0b, 0xdd, 0x89, 0x56, 0x74, 0x9c, 0xab, 0xbc, - 0xd6, 0xc9, 0xa7, 0x60, 0xd9, 0xeb, 0xcb, 0x99, 0x22, 0x93, 0x5a, 0xb8, 0x5a, 0x9f, 0x45, 0xab, - 0x8e, 0x78, 0xd0, 0x39, 0xe7, 0x71, 0xe8, 0xce, 0x6a, 0x4c, 0x69, 0xac, 0xed, 0x88, 0xdb, 0x68, - 0x9a, 0x8c, 0xac, 0x41, 0x2e, 0x1c, 0xe1, 0x9c, 0xd7, 0x67, 0xcb, 0x2b, 0x8a, 0x97, 0x6d, 0xf2, - 0x5f, 0xda, 0xff, 0x86, 0x1b, 0xa7, 0xed, 0x23, 0xba, 0x14, 0x67, 0x74, 0xf8, 0x32, 0x0b, 0x55, - 0x19, 0xef, 0xb7, 0xab, 0x20, 0x87, 0xfb, 0xf5, 0xc4, 0xe6, 0x27, 0x60, 0xdd, 0xb1, 0xa7, 0xfd, - 0x79, 0x1e, 0xd6, 0xe2, 0x6a, 0x72, 0xf2, 0x22, 0x14, 0xa4, 0x1d, 0x68, 0x33, 0x43, 0x97, 0x8e, - 0xfb, 0x0e, 0x22, 0x9d, 0x6a, 0xc7, 0x21, 0x77, 0x60, 0x0d, 0x0d, 0xf7, 0x50, 0xf4, 0x9c, 0x78, - 0xfc, 0xf1, 0x65, 0xfe, 0xfb, 0x59, 0xf1, 0x47, 0xef, 0x5e, 0x39, 0x83, 0x4f, 0x65, 0x2b, 0x94, - 0x96, 0x4a, 0x7f, 0xb4, 0x50, 0xd2, 0x82, 0x16, 0x66, 0x6b, 0x41, 0x79, 0x53, 0x66, 0x68, 0x41, - 0x17, 0xe6, 0x68, 0x41, 0x23, 0x4a, 0x59, 0x0b, 0x8a, 0xba, 0xf0, 0xa5, 0x59, 0xba, 0xf0, 0x88, - 0x86, 0xe9, 0xc2, 0x23, 0x2d, 0x66, 0x71, 0xa6, 0x16, 0x33, 0xa2, 0xe1, 0x5a, 0xcc, 0x6b, 0xbc, - 0x8f, 0xc6, 0xce, 0x23, 0x1b, 0x3b, 0x8f, 0x1f, 0x8b, 0xd8, 0x7a, 0xd3, 0x79, 0x84, 0xc6, 0x35, - 0x3b, 0xcb, 0x20, 0x2c, 0x72, 0xb4, 0xdf, 0x55, 0x12, 0x9a, 0x40, 0x31, 0x7e, 0x2f, 0xc0, 0x1a, - 0x3b, 0xac, 0x78, 0x38, 0x53, 0x76, 0x5a, 0xad, 0x9a, 0xab, 0x02, 0xca, 0xee, 0x9b, 0x1f, 0x82, - 0xf5, 0x10, 0x8d, 0x5f, 0xb9, 0xd0, 0x53, 0xcf, 0x0c, 0xa9, 0x79, 0xd8, 0x99, 0x17, 0x61, 0x23, - 0x44, 0xe4, 0xda, 0x1c, 0x76, 0xdd, 0x5c, 0x35, 0x55, 0x51, 0xd0, 0xe6, 0x70, 0xed, 0x28, 0x79, - 0xf3, 0xf8, 0x25, 0xd5, 0x4a, 0xfb, 0x61, 0x3e, 0xa6, 0x25, 0x11, 0x9f, 0xa1, 0xa7, 0x68, 0xe0, - 0xdb, 0xbc, 0x93, 0xf8, 0x5e, 0x74, 0x75, 0xc6, 0x98, 0x71, 0x9b, 0x26, 0xcb, 0x6a, 0x99, 0x10, - 0x04, 0xbe, 0x30, 0x71, 0xb2, 0x99, 0x44, 0xcd, 0xce, 0x7d, 0x9c, 0xb3, 0x82, 0x1d, 0xdb, 0x78, - 0xca, 0xf3, 0xd9, 0x89, 0x6b, 0x2a, 0x9d, 0xb2, 0x28, 0x59, 0x87, 0xbf, 0xc4, 0x07, 0xba, 0x80, - 0x4a, 0xc5, 0x20, 0xce, 0x3c, 0x9f, 0x71, 0x77, 0x4a, 0x31, 0xc7, 0x5e, 0x42, 0xce, 0xea, 0x54, - 0xfc, 0x2b, 0xd8, 0x1a, 0xb0, 0x82, 0x3a, 0x0a, 0xc1, 0xb0, 0x90, 0xa1, 0x82, 0x4f, 0x37, 0xbe, - 0x52, 0x6b, 0x98, 0x25, 0x4a, 0x27, 0xd8, 0x1c, 0xc3, 0x33, 0xb2, 0x66, 0x21, 0x5e, 0xc9, 0x05, - 0x11, 0xc5, 0x77, 0x6e, 0x0f, 0x44, 0x0a, 0x08, 0xac, 0xea, 0x05, 0x27, 0x0e, 0xe0, 0x68, 0xda, - 0x31, 0x6c, 0xcf, 0x1e, 0x92, 0x39, 0x19, 0xa2, 0xa2, 0x03, 0x34, 0x27, 0x1f, 0xa0, 0xb2, 0x9e, - 0x21, 0x1f, 0xd3, 0x33, 0x68, 0x7f, 0x94, 0x87, 0xe7, 0x4f, 0x31, 0x5c, 0x73, 0xbe, 0xf9, 0xe9, - 0xb8, 0x78, 0x96, 0x8b, 0xdd, 0x0c, 0x29, 0x53, 0xbe, 0x41, 0xd2, 0x5b, 0x6a, 0xb6, 0x70, 0xf6, - 0x25, 0x58, 0x67, 0xbb, 0x20, 0x33, 0x4b, 0x3c, 0x9c, 0x0e, 0x4e, 0xb1, 0x0d, 0x5e, 0x14, 0x3e, - 0x54, 0x09, 0x52, 0xdc, 0x19, 0x71, 0xc7, 0xb0, 0x42, 0x18, 0xe9, 0x40, 0x09, 0xd1, 0x0e, 0x1d, - 0x6f, 0x70, 0x2a, 0x67, 0x1e, 0xe1, 0xa1, 0x25, 0x93, 0x31, 0x6b, 0x6a, 0x0a, 0xd8, 0xc3, 0xdf, - 0xe4, 0x3a, 0xac, 0x0f, 0xa7, 0x27, 0x54, 0xf0, 0x60, 0x73, 0x81, 0x5b, 0x7f, 0x2c, 0x98, 0xab, - 0xc3, 0xe9, 0x89, 0x3e, 0x1a, 0xe1, 0x90, 0xa2, 0x99, 0xc8, 0x06, 0xc5, 0x63, 0xab, 0x56, 0x60, - 0x2e, 0x22, 0x26, 0x65, 0xc0, 0xd6, 0x2d, 0xc7, 0x3d, 0x07, 0xcc, 0x68, 0x90, 0x67, 0xc8, 0x62, - 0x3f, 0xb4, 0xff, 0xc8, 0x89, 0xfb, 0xee, 0xec, 0x79, 0xff, 0xeb, 0x21, 0xca, 0x18, 0xa2, 0x1b, - 0xa0, 0xd2, 0xae, 0x8f, 0x36, 0x95, 0x70, 0x8c, 0xd6, 0x86, 0xd3, 0x93, 0xb0, 0xef, 0xe4, 0x8e, - 0x5f, 0x94, 0x3b, 0xfe, 0x35, 0x71, 0x1f, 0xce, 0xdc, 0x1e, 0x66, 0x77, 0xb9, 0xf6, 0xaf, 0x79, - 0xb8, 0x7e, 0xba, 0x4d, 0xe0, 0xd7, 0xe3, 0x96, 0x31, 0x6e, 0x09, 0xd5, 0xe9, 0x42, 0x4a, 0x75, - 0x9a, 0xb1, 0xf6, 0x16, 0xb3, 0xd6, 0x5e, 0x4a, 0x51, 0xbb, 0x94, 0xa1, 0xa8, 0xcd, 0x5c, 0xa0, - 0xc5, 0x27, 0x2c, 0xd0, 0x65, 0x79, 0x9e, 0xfc, 0x63, 0xa8, 0xc0, 0x88, 0xdf, 0x07, 0x1e, 0xc0, - 0x59, 0x71, 0x1f, 0x60, 0x27, 0x47, 0xa4, 0x7f, 0x2f, 0xdd, 0xbe, 0x99, 0x75, 0x13, 0x40, 0xb4, - 0x0c, 0x69, 0x7d, 0x83, 0xdf, 0x01, 0xa2, 0xf2, 0xff, 0x39, 0xd2, 0x3f, 0xb9, 0x0f, 0x17, 0x30, - 0xbe, 0x7c, 0x4f, 0x7e, 0x39, 0xb0, 0xc7, 0xee, 0x21, 0x9f, 0x0f, 0x57, 0x53, 0xb2, 0xb2, 0xd7, - 0x93, 0xaa, 0x63, 0xba, 0x87, 0xd5, 0x33, 0xe6, 0xb9, 0x20, 0x03, 0x9e, 0xbc, 0x58, 0xfc, 0xa9, - 0x02, 0xda, 0x93, 0xfb, 0x0b, 0x15, 0x55, 0xc9, 0x0e, 0x5f, 0x36, 0x4b, 0x8e, 0xd4, 0x7b, 0xcf, - 0xc3, 0xea, 0xd8, 0x3d, 0x1c, 0xbb, 0xc1, 0x71, 0x4c, 0x03, 0xb2, 0xc2, 0x81, 0xa2, 0x63, 0x44, - 0x50, 0xca, 0xa7, 0x92, 0xcc, 0x05, 0x91, 0xb6, 0x17, 0xde, 0x17, 0x33, 0xc7, 0x81, 0xce, 0x26, - 0xb9, 0x82, 0xec, 0xc7, 0x9d, 0x42, 0x31, 0xa7, 0xe6, 0x4d, 0x1e, 0x3a, 0xf3, 0xd0, 0x1b, 0xb8, - 0xda, 0x5f, 0x2a, 0x42, 0x22, 0xc8, 0xea, 0x3c, 0xf2, 0x40, 0x32, 0xe6, 0xcd, 0xa7, 0xc4, 0x90, - 0x2c, 0x12, 0xd9, 0xee, 0x91, 0x87, 0x67, 0x44, 0x40, 0x2c, 0x3c, 0x23, 0x42, 0xde, 0x87, 0x45, - 0x22, 0xbf, 0x35, 0xbf, 0x21, 0x2c, 0x82, 0xe8, 0x9e, 0x77, 0x70, 0x8b, 0xdc, 0x84, 0x25, 0x66, - 0x04, 0x24, 0xaa, 0xbb, 0x1e, 0xab, 0xee, 0xc1, 0x2d, 0x53, 0x94, 0x6b, 0xef, 0x84, 0xef, 0x5a, - 0xa9, 0x46, 0x1c, 0xdc, 0x22, 0xaf, 0x9d, 0xce, 0x38, 0xb7, 0x28, 0x8c, 0x73, 0x43, 0xc3, 0xdc, - 0xd7, 0x63, 0x86, 0xb9, 0xd7, 0xe6, 0xf7, 0x16, 0x7f, 0x8d, 0x64, 0xe1, 0x08, 0xa3, 0x30, 0x55, - 0x3f, 0xcb, 0xc1, 0xb3, 0x73, 0x29, 0xc8, 0x25, 0x28, 0xea, 0xed, 0x5a, 0x27, 0x1a, 0x5f, 0xba, - 0x66, 0x04, 0x84, 0xec, 0xc3, 0xf2, 0x8e, 0x13, 0x78, 0x3d, 0x3a, 0x8d, 0x33, 0x9f, 0x07, 0x52, - 0x6c, 0x43, 0xf4, 0xea, 0x19, 0x33, 0xa2, 0x25, 0x36, 0x6c, 0xe0, 0x5a, 0x88, 0xa5, 0x9e, 0xca, - 0x67, 0xe8, 0x1a, 0x52, 0x0c, 0x53, 0x64, 0x74, 0x9f, 0x49, 0x01, 0xc9, 0x43, 0x20, 0x96, 0x55, - 0xad, 0xb8, 0xe3, 0x09, 0xbf, 0x83, 0x4f, 0xbc, 0xd0, 0xd2, 0xf3, 0xa3, 0x4f, 0xe8, 0xbb, 0x14, - 0x5d, 0xf5, 0x8c, 0x99, 0xc1, 0x2d, 0xb9, 0xcc, 0xdf, 0x16, 0xf2, 0xce, 0xec, 0x4e, 0x78, 0x8a, - 0x50, 0xaf, 0x37, 0xa0, 0xd8, 0x16, 0xb6, 0x08, 0x92, 0xc5, 0xbc, 0xb0, 0x3b, 0x30, 0xc3, 0x52, - 0xed, 0x37, 0x14, 0xa1, 0x74, 0x78, 0x72, 0x67, 0x49, 0x99, 0xc1, 0xfa, 0xf3, 0x33, 0x83, 0xf5, - 0x7f, 0xc1, 0xcc, 0x60, 0x9a, 0x07, 0x37, 0x4f, 0xdd, 0xb1, 0xe4, 0x93, 0xa0, 0x62, 0x12, 0x25, - 0x47, 0x1a, 0x24, 0xb6, 0xbe, 0x36, 0xc2, 0xd8, 0xdf, 0x55, 0x9e, 0xa9, 0xce, 0x5c, 0xef, 0xc5, - 0xa9, 0xb5, 0x3f, 0xe1, 0x31, 0xdf, 0x6b, 0xfd, 0x76, 0x42, 0xd1, 0xfc, 0x7e, 0x9d, 0x2c, 0x8c, - 0xd8, 0x62, 0x7b, 0x5e, 0x4a, 0x62, 0x99, 0xfe, 0xd6, 0x6c, 0x5f, 0x0b, 0x69, 0xe5, 0xfd, 0x41, - 0x1e, 0x2e, 0xcd, 0x23, 0xcf, 0x4c, 0x93, 0xad, 0x3c, 0x5d, 0x9a, 0xec, 0x9b, 0x50, 0x64, 0xb0, - 0xd0, 0x83, 0x00, 0xc7, 0x96, 0x93, 0xd2, 0xb1, 0x15, 0xc5, 0xe4, 0x79, 0x58, 0xd4, 0x2b, 0x56, - 0x94, 0xb9, 0x0d, 0x4d, 0x7d, 0x9d, 0x5e, 0x80, 0x46, 0xa4, 0xbc, 0x88, 0x7c, 0x31, 0x9d, 0xac, - 0x90, 0xa7, 0x6c, 0xbb, 0x28, 0x75, 0x48, 0x2a, 0x1d, 0x03, 0xd6, 0x37, 0x4a, 0x1f, 0xc0, 0x23, - 0x72, 0x9b, 0xe9, 0xc4, 0x87, 0x1a, 0x2c, 0xb6, 0xc7, 0x6e, 0xe0, 0x4e, 0x64, 0x33, 0xdc, 0x11, - 0x42, 0x4c, 0x5e, 0xc2, 0x8d, 0x64, 0x9d, 0xc7, 0x2c, 0x26, 0xc2, 0xa2, 0x1c, 0xa7, 0x06, 0xad, - 0x6a, 0x29, 0xd8, 0x94, 0x50, 0x28, 0x41, 0xdd, 0x99, 0x0e, 0x7b, 0xc7, 0x5d, 0xb3, 0xce, 0x25, - 0x27, 0x46, 0x30, 0x40, 0x28, 0x6d, 0x60, 0x60, 0x4a, 0x28, 0xda, 0xb7, 0x15, 0x38, 0x97, 0xd5, - 0x0e, 0x72, 0x09, 0x0a, 0xc3, 0xcc, 0xbc, 0x8c, 0x43, 0xe6, 0xca, 0x5d, 0xa2, 0x7f, 0xed, 0x43, - 0x7f, 0x7c, 0xe2, 0x4c, 0x64, 0x63, 0x65, 0x09, 0x6c, 0x02, 0xfd, 0xb1, 0x87, 0xff, 0x93, 0x2b, - 0xe2, 0xc8, 0xc9, 0xa7, 0x32, 0x39, 0xe2, 0x1f, 0x4d, 0x07, 0xa8, 0xf5, 0xdb, 0xad, 0x11, 0x4b, - 0x07, 0xf0, 0x0a, 0x14, 0x68, 0xb5, 0x12, 0xb3, 0x97, 0xce, 0x1f, 0xbd, 0x51, 0xe7, 0x48, 0xac, - 0x56, 0x81, 0x73, 0x32, 0x30, 0x11, 0x59, 0xbb, 0x07, 0x6b, 0x71, 0x0c, 0x62, 0xc4, 0x23, 0xc2, - 0x96, 0x6e, 0xab, 0x9c, 0xd3, 0x8e, 0xef, 0x33, 0x87, 0x99, 0x9d, 0x67, 0x7e, 0xf6, 0xee, 0x15, - 0xa0, 0x3f, 0x19, 0x4d, 0x56, 0xc4, 0x58, 0xed, 0x3b, 0x39, 0x38, 0x17, 0xf9, 0xe8, 0x8b, 0x35, - 0xf4, 0x2b, 0xeb, 0x30, 0xaa, 0xc7, 0x1c, 0x1a, 0x85, 0xdc, 0x98, 0x6e, 0xe0, 0x1c, 0x3f, 0xaa, - 0x7d, 0xd8, 0x9a, 0x85, 0x4f, 0x5e, 0x84, 0x65, 0x0c, 0xeb, 0x34, 0x72, 0x7a, 0xae, 0xbc, 0xcd, - 0x0e, 0x05, 0xd0, 0x8c, 0xca, 0xb5, 0x9f, 0x28, 0xb0, 0xcd, 0xdd, 0x3c, 0x1a, 0x8e, 0x37, 0xc4, - 0x57, 0x82, 0x9e, 0xfb, 0xc1, 0x38, 0x3c, 0xef, 0xc7, 0xf6, 0xb1, 0x17, 0xe2, 0xde, 0x3c, 0xa9, - 0xaf, 0xcd, 0x6e, 0x2d, 0xb9, 0x89, 0xa1, 0xca, 0xf8, 0x2b, 0x7a, 0x81, 0x05, 0x98, 0x18, 0x52, - 0x80, 0x1c, 0x60, 0x02, 0x31, 0xb4, 0xff, 0x03, 0x97, 0xe7, 0x7f, 0x80, 0x7c, 0x01, 0x56, 0x31, - 0xf7, 0x56, 0x77, 0x74, 0x34, 0x76, 0xfa, 0xae, 0xd0, 0xec, 0x09, 0x6d, 0xac, 0x5c, 0xc6, 0x22, - 0xaf, 0xf1, 0x80, 0x07, 0x47, 0x98, 0xd5, 0x8b, 0x13, 0xc5, 0x7c, 0xa9, 0x64, 0x6e, 0xda, 0x37, - 0x14, 0x20, 0x69, 0x1e, 0xe4, 0x63, 0xb0, 0xd2, 0xed, 0x54, 0xac, 0x89, 0x33, 0x9e, 0x54, 0xfd, - 0xe9, 0x98, 0x87, 0x3d, 0x63, 0xfe, 0xef, 0x93, 0x9e, 0xcd, 0xde, 0x83, 0x8e, 0xfd, 0xe9, 0xd8, - 0x8c, 0xe1, 0x61, 0x8e, 0x27, 0xd7, 0xfd, 0x4a, 0xdf, 0x79, 0x1c, 0xcf, 0xf1, 0xc4, 0x61, 0xb1, - 0x1c, 0x4f, 0x1c, 0xa6, 0x7d, 0x5f, 0x81, 0x8b, 0xc2, 0x38, 0xb2, 0x9f, 0x51, 0x97, 0x0a, 0x46, - 0x79, 0x19, 0x8b, 0x38, 0xbb, 0xf3, 0x24, 0xf4, 0x0d, 0x11, 0x08, 0x09, 0x2b, 0x88, 0xa2, 0x3a, - 0xa3, 0x25, 0x9f, 0x86, 0x82, 0x35, 0xf1, 0x47, 0xa7, 0x88, 0x84, 0xa4, 0x86, 0x23, 0x3a, 0xf1, - 0x47, 0xc8, 0x02, 0x29, 0x35, 0x17, 0xce, 0xc9, 0x95, 0x13, 0x35, 0x26, 0x0d, 0x58, 0xe2, 0x21, - 0xef, 0x12, 0x76, 0x07, 0x73, 0xda, 0xb4, 0xb3, 0x2e, 0xc2, 0x2d, 0xf1, 0x38, 0xaf, 0xa6, 0xe0, - 0xa1, 0xfd, 0x96, 0x02, 0x25, 0x2a, 0xd8, 0xe0, 0xa5, 0xf4, 0xfd, 0x4e, 0xe9, 0xb8, 0x1c, 0x2c, - 0xcc, 0x68, 0x42, 0xf6, 0xa7, 0x3a, 0x8d, 0x5f, 0x85, 0xf5, 0x04, 0x01, 0xd1, 0x30, 0xd0, 0xc6, - 0xc0, 0xeb, 0x39, 0x2c, 0x65, 0x0c, 0x33, 0x41, 0x89, 0xc1, 0xb4, 0xff, 0xa7, 0xc0, 0xb9, 0xd6, - 0x57, 0x26, 0x0e, 0x7b, 0xb6, 0x35, 0xa7, 0x03, 0xb1, 0xde, 0xa9, 0xb0, 0x26, 0xac, 0x6c, 0x59, - 0x10, 0x00, 0x26, 0xac, 0x71, 0x98, 0x19, 0x96, 0x92, 0x2a, 0x14, 0xf9, 0xf9, 0x12, 0xf0, 0xf0, - 0xac, 0x97, 0x25, 0xdd, 0x48, 0xc4, 0x98, 0x23, 0xd1, 0x96, 0xe0, 0x16, 0xc6, 0x69, 0xcc, 0x90, - 0x5a, 0xfb, 0x37, 0x05, 0x36, 0x67, 0xd0, 0x90, 0x37, 0x61, 0x01, 0x1d, 0x14, 0xf9, 0xe8, 0x5d, - 0x9a, 0xf1, 0x89, 0x49, 0xef, 0xf8, 0xe0, 0x16, 0x3b, 0x88, 0x4e, 0xe8, 0x0f, 0x93, 0x51, 0x91, - 0x07, 0xb0, 0xac, 0xf7, 0xfb, 0xfc, 0x76, 0x96, 0x8b, 0xdd, 0xce, 0x66, 0x7c, 0xf1, 0xe5, 0x10, - 0x9f, 0xdd, 0xce, 0x98, 0xab, 0x4c, 0xbf, 0x6f, 0x73, 0xe7, 0xcb, 0x88, 0xdf, 0xf6, 0x27, 0x61, - 0x2d, 0x8e, 0xfc, 0x54, 0xfe, 0x62, 0xef, 0x28, 0xa0, 0xc6, 0xeb, 0xf0, 0xcb, 0x09, 0x14, 0x95, - 0x35, 0xcc, 0x4f, 0x98, 0x54, 0xbf, 0x93, 0x83, 0xf3, 0x99, 0x3d, 0x4c, 0x5e, 0x82, 0x45, 0x7d, - 0x34, 0xaa, 0xed, 0xf2, 0x59, 0xc5, 0x25, 0x24, 0x54, 0x7a, 0xc7, 0x2e, 0xaf, 0x0c, 0x89, 0xbc, - 0x02, 0x45, 0x66, 0x1d, 0xb0, 0x2b, 0x36, 0x1c, 0x8c, 0x7c, 0xc3, 0x4d, 0x17, 0xe2, 0x81, 0x52, - 0x05, 0x22, 0xd9, 0x83, 0x35, 0x1e, 0x33, 0xc6, 0x74, 0x8f, 0xdc, 0xaf, 0x85, 0x11, 0xfb, 0x31, - 0xa9, 0x80, 0xd0, 0xa4, 0xdb, 0x63, 0x56, 0x26, 0x47, 0x4d, 0x89, 0x53, 0x91, 0x3a, 0xa8, 0xc8, - 0x53, 0xe6, 0xc4, 0xa2, 0xb5, 0x62, 0x14, 0x1f, 0x56, 0x89, 0x19, 0xbc, 0x52, 0x94, 0xe1, 0x70, - 0xe9, 0x41, 0xe0, 0x1d, 0x0d, 0x4f, 0xdc, 0xe1, 0xe4, 0x97, 0x37, 0x5c, 0xd1, 0x37, 0x4e, 0x35, - 0x5c, 0xbf, 0x57, 0x60, 0x8b, 0x39, 0x49, 0x46, 0x25, 0x1a, 0x29, 0x40, 0x37, 0x4a, 0x34, 0xf4, - 0x7e, 0xc6, 0xa3, 0xa2, 0xec, 0xc2, 0x12, 0x8b, 0x56, 0x23, 0x56, 0xc6, 0xb3, 0x99, 0x55, 0x60, - 0x38, 0x07, 0xb7, 0x98, 0xf8, 0xc2, 0x3c, 0x25, 0x03, 0x53, 0x90, 0x92, 0x03, 0x28, 0x55, 0x06, - 0xae, 0x33, 0x9c, 0x8e, 0x3a, 0xa7, 0x7b, 0x41, 0xdd, 0xe2, 0x6d, 0x59, 0xe9, 0x31, 0x32, 0x7c, - 0x79, 0xc5, 0x9d, 0x5c, 0x66, 0x44, 0x3a, 0xa1, 0xf3, 0x54, 0x01, 0x15, 0xaf, 0x1f, 0x9d, 0xd3, - 0x3f, 0x49, 0x20, 0xd2, 0xc5, 0x3d, 0x03, 0xb9, 0x77, 0x95, 0x0d, 0x6b, 0x75, 0x27, 0x98, 0x74, - 0xc6, 0xce, 0x30, 0xc0, 0x28, 0x97, 0xa7, 0x88, 0x02, 0x76, 0x51, 0x64, 0x70, 0x46, 0x95, 0xe9, - 0x24, 0x24, 0x65, 0x0a, 0xd9, 0x38, 0x3b, 0x2a, 0x2f, 0xed, 0x79, 0x43, 0x67, 0xe0, 0x7d, 0x5d, - 0xf8, 0x98, 0x32, 0x79, 0xe9, 0x50, 0x00, 0xcd, 0xa8, 0x5c, 0xfb, 0x7c, 0x6a, 0xdc, 0x58, 0x2d, - 0x4b, 0xb0, 0xc4, 0x23, 0x10, 0x30, 0x8f, 0xfc, 0xb6, 0xd1, 0xdc, 0xad, 0x35, 0xf7, 0x55, 0x85, - 0xac, 0x01, 0xb4, 0xcd, 0x56, 0xc5, 0xb0, 0x2c, 0xfa, 0x3b, 0x47, 0x7f, 0x73, 0x77, 0xfd, 0xbd, - 0x6e, 0x5d, 0xcd, 0x4b, 0x1e, 0xfb, 0x05, 0xed, 0xc7, 0x0a, 0x5c, 0xc8, 0x1e, 0x4a, 0xd2, 0x01, - 0x8c, 0xd9, 0xc0, 0xdf, 0xd2, 0x3f, 0x36, 0x77, 0xdc, 0x33, 0xc1, 0xc9, 0xd8, 0x0f, 0x13, 0x16, - 0x53, 0x20, 0x27, 0xde, 0xbe, 0x98, 0x93, 0xa2, 0xd7, 0x37, 0x73, 0x5e, 0x5f, 0xab, 0xc0, 0xd6, - 0x2c, 0x1e, 0xf1, 0xa6, 0xae, 0x43, 0x49, 0x6f, 0xb7, 0xeb, 0xb5, 0x8a, 0xde, 0xa9, 0xb5, 0x9a, - 0xaa, 0x42, 0x96, 0x61, 0x61, 0xdf, 0x6c, 0x75, 0xdb, 0x6a, 0x4e, 0xfb, 0xae, 0x02, 0xab, 0xb5, - 0xc8, 0xea, 0xec, 0xfd, 0x2e, 0xbe, 0x8f, 0xc7, 0x16, 0xdf, 0x56, 0x18, 0xdd, 0x24, 0xfc, 0xc0, - 0xa9, 0x56, 0xde, 0x7b, 0x39, 0xd8, 0x48, 0xd1, 0x10, 0x0b, 0x96, 0xf4, 0x7b, 0x56, 0xab, 0xb6, - 0x5b, 0xe1, 0x35, 0xbb, 0x12, 0x99, 0x4b, 0x61, 0xbe, 0xab, 0xd4, 0x57, 0x98, 0x47, 0xf0, 0xa3, - 0xc0, 0xf6, 0xbd, 0xbe, 0x94, 0xfc, 0xb6, 0x7a, 0xc6, 0x14, 0x9c, 0xf0, 0x24, 0xfb, 0xfa, 0x74, - 0xec, 0x22, 0xdb, 0x5c, 0x4c, 0xaf, 0x1b, 0xc2, 0xd3, 0x8c, 0xd1, 0x7f, 0xc3, 0xa1, 0xe5, 0x69, - 0xd6, 0x11, 0x3f, 0xd2, 0x84, 0xc5, 0x7d, 0x6f, 0x52, 0x9d, 0x3e, 0xe4, 0xeb, 0xf7, 0x72, 0x94, - 0xfd, 0xa8, 0x3a, 0x7d, 0x98, 0x66, 0x8b, 0x2a, 0x4b, 0x16, 0xbd, 0x27, 0xc6, 0x92, 0x73, 0x49, - 0x3a, 0x31, 0x16, 0x9e, 0xca, 0x89, 0x71, 0x67, 0x15, 0x4a, 0xfc, 0x0e, 0x85, 0xd7, 0x93, 0x1f, - 0x2a, 0xb0, 0x35, 0xab, 0xe7, 0xe8, 0xb5, 0x2c, 0x1e, 0xac, 0xe0, 0x42, 0x98, 0x1e, 0x23, 0x1e, - 0xa5, 0x40, 0xa0, 0x91, 0xb7, 0xa0, 0x54, 0x0b, 0x82, 0xa9, 0x3b, 0xb6, 0x5e, 0xe9, 0x9a, 0x35, - 0x3e, 0x5d, 0x9f, 0xfd, 0xe7, 0x77, 0xaf, 0x6c, 0xa2, 0xcf, 0xc7, 0xd8, 0x0e, 0x5e, 0xb1, 0xa7, - 0x63, 0x2f, 0x96, 0x4a, 0x40, 0xa6, 0xa0, 0x52, 0xb4, 0x33, 0xed, 0x7b, 0xae, 0xb8, 0x43, 0x08, - 0x87, 0x6e, 0x0e, 0x93, 0xcf, 0x34, 0x01, 0xd3, 0xbe, 0xa5, 0xc0, 0xf6, 0xec, 0x61, 0xa2, 0xe7, - 0x64, 0x87, 0x99, 0x54, 0x09, 0x97, 0x6a, 0x3c, 0x27, 0x43, 0xbb, 0x2b, 0x99, 0xa7, 0x40, 0xa4, - 0x44, 0x61, 0x6a, 0xfc, 0x5c, 0x2a, 0x1f, 0x76, 0x9c, 0x48, 0x20, 0x6a, 0xf7, 0x61, 0x73, 0xc6, - 0xa0, 0x92, 0x4f, 0x65, 0x26, 0xdd, 0x41, 0x37, 0x25, 0x39, 0xe9, 0x4e, 0x2c, 0x7b, 0x9b, 0x04, - 0xd7, 0xfe, 0x25, 0x07, 0x17, 0xe8, 0xea, 0x1a, 0xb8, 0x41, 0xa0, 0x47, 0xf9, 0x69, 0xe9, 0xae, - 0xf8, 0x1a, 0x2c, 0x1e, 0x3f, 0x9d, 0xaa, 0x98, 0xa1, 0x13, 0x02, 0x78, 0x62, 0x09, 0xe7, 0x18, - 0xfa, 0x3f, 0xb9, 0x0a, 0x72, 0x72, 0xf3, 0x3c, 0x86, 0x37, 0xcd, 0x6d, 0x29, 0xe6, 0xf2, 0x28, - 0xcc, 0x43, 0xfc, 0x3a, 0x2c, 0xa0, 0x3e, 0x85, 0x9f, 0x1d, 0x42, 0xe6, 0xcf, 0xae, 0x1d, 0x6a, - 0x5b, 0x4c, 0x46, 0x40, 0x3e, 0x02, 0x10, 0x65, 0x86, 0xe0, 0x87, 0x83, 0xd0, 0x33, 0x84, 0xc9, - 0x21, 0xcc, 0xe5, 0x93, 0x43, 0x87, 0xa7, 0x5b, 0x28, 0xc3, 0x86, 0xe8, 0xf1, 0x91, 0x88, 0x8a, - 0xc8, 0x5f, 0x31, 0xd7, 0x59, 0x41, 0x6d, 0x24, 0x22, 0x23, 0x5e, 0x4b, 0x25, 0x68, 0xc6, 0xe0, - 0xc8, 0x89, 0x2c, 0xcc, 0xd7, 0x52, 0x59, 0x98, 0x8b, 0x0c, 0x4b, 0x4e, 0xb5, 0xac, 0xfd, 0x43, - 0x0e, 0x96, 0xef, 0x51, 0xa9, 0x0c, 0x75, 0x0d, 0xf3, 0x75, 0x17, 0xb7, 0xa1, 0x54, 0xf7, 0x1d, - 0xfe, 0x5c, 0xc4, 0x7d, 0x4a, 0x98, 0x4f, 0xf7, 0xc0, 0x77, 0xc4, 0xcb, 0x53, 0x60, 0xca, 0x48, - 0x4f, 0xf0, 0x47, 0xbf, 0x03, 0x8b, 0xec, 0xf9, 0x8e, 0xab, 0xd1, 0x84, 0x5c, 0x1e, 0xd6, 0xe8, - 0x65, 0x56, 0x2c, 0xbd, 0x70, 0xb0, 0x27, 0x40, 0x59, 0x48, 0xe4, 0x31, 0x5e, 0x25, 0xcd, 0xca, - 0xc2, 0xe9, 0x34, 0x2b, 0x52, 0x2c, 0xbb, 0xc5, 0xd3, 0xc4, 0xb2, 0xdb, 0x7e, 0x03, 0x4a, 0x52, - 0x7d, 0x9e, 0x4a, 0x4c, 0xff, 0x66, 0x0e, 0x56, 0xb1, 0x55, 0xa1, 0x2d, 0xcf, 0xaf, 0xa6, 0x9e, - 0xe8, 0xe3, 0x31, 0x3d, 0xd1, 0x96, 0x3c, 0x5e, 0xac, 0x65, 0x73, 0x14, 0x44, 0x77, 0x60, 0x23, - 0x85, 0x48, 0x5e, 0x85, 0x05, 0x5a, 0x7d, 0x71, 0xaf, 0x56, 0x93, 0x33, 0x20, 0x8a, 0x7b, 0x4c, - 0x1b, 0x1e, 0x98, 0x0c, 0x5b, 0xfb, 0x77, 0x05, 0x56, 0x78, 0xda, 0x91, 0xe1, 0xa1, 0xff, 0xc4, - 0xee, 0xbc, 0x9e, 0xec, 0x4e, 0x16, 0x5d, 0x85, 0x77, 0xe7, 0x7f, 0x75, 0x27, 0xbe, 0x11, 0xeb, - 0xc4, 0xcd, 0x30, 0x0a, 0xa2, 0x68, 0xce, 0x9c, 0x3e, 0xfc, 0x01, 0xc6, 0x05, 0x8e, 0x23, 0x92, - 0x2f, 0xc2, 0x72, 0xd3, 0x7d, 0x14, 0xbb, 0x9e, 0x5e, 0x9f, 0xc1, 0xf4, 0xe5, 0x10, 0x91, 0xad, - 0x29, 0x3c, 0xd9, 0x87, 0xee, 0x23, 0x3b, 0xf5, 0x72, 0x18, 0xb1, 0xa4, 0x37, 0xd4, 0x38, 0xd9, - 0xd3, 0x4c, 0x7d, 0xee, 0xe0, 0x8a, 0x01, 0x83, 0xbe, 0x9d, 0x07, 0x88, 0x7c, 0x03, 0xe9, 0x02, - 0x8c, 0x19, 0x4d, 0x08, 0xcd, 0x3e, 0x82, 0xe4, 0x39, 0x2e, 0x6c, 0x29, 0xae, 0x73, 0x0d, 0x74, - 0x6e, 0x76, 0x94, 0x4a, 0xd4, 0x45, 0x57, 0xb8, 0x33, 0x5a, 0xdf, 0x1d, 0x38, 0x6c, 0x6f, 0xcf, - 0xef, 0x5c, 0xc3, 0xa0, 0xc4, 0x21, 0x74, 0x46, 0xba, 0x69, 0x74, 0x59, 0xdb, 0xa5, 0x08, 0x29, - 0x7f, 0xdb, 0xc2, 0xd3, 0xf9, 0xdb, 0xb6, 0x61, 0xd9, 0x1b, 0xbe, 0xed, 0x0e, 0x27, 0xfe, 0xf8, - 0x31, 0xaa, 0xdd, 0x23, 0x7d, 0x1e, 0xed, 0x82, 0x9a, 0x28, 0x63, 0xe3, 0x80, 0x67, 0x6e, 0x88, - 0x2f, 0x0f, 0x43, 0x08, 0x0c, 0xfd, 0x85, 0x17, 0xd4, 0xc5, 0x3b, 0x85, 0xe2, 0xa2, 0xba, 0x74, - 0xa7, 0x50, 0x2c, 0xaa, 0xcb, 0x77, 0x0a, 0xc5, 0x65, 0x15, 0x4c, 0xe9, 0xcd, 0x2c, 0x7c, 0x13, - 0x93, 0x9e, 0xb1, 0xe2, 0x4f, 0x54, 0xda, 0xcf, 0x73, 0x40, 0xd2, 0xd5, 0x20, 0x1f, 0x87, 0x12, - 0xdb, 0x60, 0xed, 0x71, 0xf0, 0x55, 0xee, 0x6e, 0xc0, 0xc2, 0x2e, 0x49, 0x60, 0x39, 0xec, 0x12, - 0x03, 0x9b, 0xc1, 0x57, 0x07, 0xe4, 0x0b, 0x70, 0x16, 0xbb, 0x77, 0xe4, 0x8e, 0x3d, 0xbf, 0x6f, - 0x63, 0x8c, 0x5c, 0x67, 0xc0, 0x53, 0x43, 0xbe, 0x84, 0x39, 0x8c, 0xd3, 0xc5, 0x33, 0x86, 0x01, - 0x5d, 0x00, 0xdb, 0x88, 0xd9, 0x66, 0x88, 0xa4, 0x03, 0xaa, 0x4c, 0x7f, 0x38, 0x1d, 0x0c, 0xf8, - 0xc8, 0x96, 0xe9, 0x8d, 0x3e, 0x59, 0x36, 0x83, 0xf1, 0x5a, 0xc4, 0x78, 0x6f, 0x3a, 0x18, 0x90, - 0xd7, 0x00, 0xfc, 0xa1, 0x7d, 0xe2, 0x05, 0x01, 0x7b, 0xcc, 0x09, 0xbd, 0x95, 0x23, 0xa8, 0x3c, - 0x18, 0xfe, 0xb0, 0xc1, 0x80, 0xe4, 0x7f, 0x01, 0x46, 0x6b, 0xc0, 0x30, 0x26, 0xcc, 0x1a, 0x89, - 0x67, 0x6f, 0x11, 0xc0, 0xb8, 0x73, 0xf4, 0x91, 0x6b, 0x79, 0x5f, 0x17, 0xae, 0x1e, 0x9f, 0x83, - 0x0d, 0x6e, 0x3c, 0x7c, 0xcf, 0x9b, 0x1c, 0xf3, 0xab, 0xc4, 0xfb, 0xb9, 0x87, 0x48, 0x77, 0x89, - 0xbf, 0x29, 0x00, 0xe8, 0xf7, 0x2c, 0x11, 0x21, 0xec, 0x26, 0x2c, 0xd0, 0x0b, 0x92, 0x50, 0xb4, - 0xa0, 0x9a, 0x1a, 0xf9, 0xca, 0x6a, 0x6a, 0xc4, 0xa0, 0xab, 0xd1, 0x44, 0xa3, 0x7a, 0xa1, 0x64, - 0xc1, 0xd5, 0xc8, 0xec, 0xec, 0x63, 0x11, 0x9a, 0x39, 0x16, 0xa9, 0x03, 0x44, 0x31, 0xbb, 0xb8, - 0xc8, 0xbf, 0x11, 0x05, 0xbf, 0xe1, 0x05, 0x3c, 0x4b, 0x44, 0x14, 0xf7, 0x4b, 0x9e, 0x3e, 0x11, - 0x1a, 0xb9, 0x0b, 0x85, 0x8e, 0x13, 0xfa, 0xe2, 0xce, 0x88, 0x64, 0xf6, 0x1c, 0x4f, 0xdd, 0x19, - 0x45, 0x33, 0x5b, 0x9b, 0x38, 0xb1, 0x0c, 0xc7, 0xc8, 0x84, 0x18, 0xb0, 0xc8, 0xd3, 0xb2, 0xcf, - 0x88, 0x80, 0xc9, 0xb3, 0xb2, 0xf3, 0xb8, 0xd7, 0x08, 0x94, 0x65, 0x0a, 0x9e, 0x80, 0xfd, 0x36, - 0xe4, 0x2d, 0xab, 0xc1, 0xe3, 0x77, 0xac, 0x46, 0xd7, 0x2f, 0xcb, 0x6a, 0xb0, 0x77, 0xdf, 0x20, - 0x38, 0x91, 0xc8, 0x28, 0x32, 0xf9, 0x04, 0x94, 0x24, 0xa1, 0x98, 0x47, 0xbe, 0xc1, 0x3e, 0x90, - 0xbc, 0x9d, 0xe4, 0x4d, 0x43, 0xc2, 0x26, 0x75, 0x50, 0xef, 0x4e, 0x1f, 0xba, 0xfa, 0x68, 0x84, - 0x6e, 0x90, 0x6f, 0xbb, 0x63, 0x26, 0xb6, 0x15, 0xa3, 0x90, 0xd1, 0xe8, 0x23, 0xd1, 0x17, 0xa5, - 0xb2, 0xb2, 0x29, 0x49, 0x49, 0xda, 0xb0, 0x61, 0xb9, 0x93, 0xe9, 0x88, 0xd9, 0xd7, 0xec, 0xf9, - 0x63, 0x7a, 0xbf, 0x61, 0x71, 0x72, 0x30, 0xba, 0x6e, 0x40, 0x0b, 0x85, 0x51, 0xd3, 0xa1, 0x3f, - 0x4e, 0xdc, 0x75, 0xd2, 0xc4, 0x9a, 0x2b, 0x0f, 0x39, 0x3d, 0x55, 0xe3, 0xb7, 0x26, 0x3c, 0x55, - 0xc5, 0xad, 0x29, 0xba, 0x2b, 0x7d, 0x24, 0x23, 0x96, 0x1b, 0xbe, 0x0c, 0x4a, 0xb1, 0xdc, 0x62, - 0x11, 0xdc, 0xbe, 0x5f, 0x90, 0xc2, 0x89, 0xf2, 0xb1, 0x78, 0x13, 0xe0, 0x8e, 0xef, 0x0d, 0x1b, - 0xee, 0xe4, 0xd8, 0xef, 0x4b, 0x21, 0xe5, 0x4a, 0x5f, 0xf6, 0xbd, 0xa1, 0x7d, 0x82, 0xe0, 0x9f, - 0xbf, 0x7b, 0x45, 0x42, 0x32, 0xa5, 0xff, 0xc9, 0x87, 0x61, 0x99, 0xfe, 0xea, 0x44, 0x56, 0x42, - 0x4c, 0x27, 0x8b, 0xd4, 0x2c, 0xe9, 0x46, 0x84, 0x40, 0xde, 0xc0, 0x34, 0x33, 0xde, 0x68, 0x22, - 0x09, 0xaf, 0x22, 0xa7, 0x8c, 0x37, 0x9a, 0x24, 0x23, 0x44, 0x4b, 0xc8, 0xa4, 0x1a, 0x56, 0x5d, - 0x64, 0x86, 0xe2, 0xd9, 0x6c, 0x50, 0xf1, 0xc8, 0xe7, 0x9a, 0x2d, 0x42, 0xd3, 0xca, 0x29, 0x7f, - 0x13, 0x64, 0x58, 0x09, 0xab, 0xba, 0xcb, 0x5e, 0x8a, 0xb8, 0x50, 0xcb, 0x2a, 0x11, 0x1c, 0xf7, - 0xed, 0x1e, 0x82, 0x63, 0x95, 0x08, 0x91, 0xc9, 0x0e, 0xac, 0x33, 0x19, 0x3f, 0xcc, 0x30, 0xc9, - 0x45, 0x5c, 0xdc, 0xdb, 0xa2, 0x14, 0x94, 0xf2, 0xe7, 0x13, 0x04, 0x64, 0x0f, 0x16, 0xf0, 0xae, - 0xc9, 0x5d, 0x03, 0x2e, 0xca, 0x6a, 0x82, 0xe4, 0x3a, 0xc2, 0x7d, 0x05, 0x15, 0x04, 0xf2, 0xbe, - 0x82, 0xa8, 0xe4, 0xb3, 0x00, 0xc6, 0x70, 0xec, 0x0f, 0x06, 0x18, 0x3c, 0xb9, 0x88, 0x57, 0xa9, - 0x67, 0xe3, 0xeb, 0x11, 0xb9, 0x44, 0x48, 0x3c, 0xd0, 0x1f, 0xfe, 0xb6, 0x13, 0x21, 0x96, 0x25, - 0x5e, 0x5a, 0x0d, 0x16, 0xd9, 0x62, 0xc4, 0x40, 0xe4, 0x3c, 0xb5, 0x8a, 0x14, 0xc6, 0x9a, 0x05, - 0x22, 0xe7, 0xf0, 0x74, 0x20, 0x72, 0x89, 0x40, 0xbb, 0x0b, 0xe7, 0xb2, 0x1a, 0x16, 0xbb, 0x1d, - 0x2b, 0xa7, 0xbd, 0x1d, 0x7f, 0x2f, 0x0f, 0x2b, 0xc8, 0x4d, 0xec, 0xc2, 0x3a, 0xac, 0x5a, 0xd3, - 0x87, 0x61, 0x94, 0x2e, 0xb1, 0x1b, 0x63, 0xfd, 0x02, 0xb9, 0x40, 0x7e, 0xc3, 0x8b, 0x51, 0x10, - 0x03, 0xd6, 0xc4, 0x49, 0xb0, 0x2f, 0x3c, 0x07, 0xc2, 0x18, 0xe0, 0x22, 0xd2, 0x64, 0x3a, 0xc3, - 0x6e, 0x82, 0x28, 0x3a, 0x0f, 0xf2, 0x4f, 0x73, 0x1e, 0x14, 0x4e, 0x75, 0x1e, 0x3c, 0x80, 0x15, - 0xf1, 0x35, 0xdc, 0xc9, 0x17, 0xde, 0xdf, 0x4e, 0x1e, 0x63, 0x46, 0xea, 0xe1, 0x8e, 0xbe, 0x38, - 0x77, 0x47, 0xc7, 0x87, 0x51, 0xb1, 0xca, 0x46, 0x08, 0x4b, 0x6f, 0xec, 0x98, 0x82, 0x72, 0xbf, - 0xd2, 0xfe, 0x05, 0x4e, 0xc9, 0x57, 0x61, 0xb9, 0xee, 0x8b, 0x37, 0x31, 0xe9, 0x31, 0x62, 0x20, - 0x80, 0xb2, 0xb8, 0x10, 0x62, 0x86, 0xa7, 0x5b, 0xfe, 0x83, 0x38, 0xdd, 0xde, 0x00, 0xe0, 0x2e, - 0x29, 0x51, 0xea, 0x38, 0x5c, 0x32, 0x22, 0x42, 0x49, 0xfc, 0x4d, 0x44, 0x42, 0xa6, 0xbb, 0x13, - 0x37, 0xb7, 0xd1, 0x7b, 0x3d, 0x7f, 0x3a, 0x9c, 0xc4, 0x72, 0x2d, 0x0b, 0x0f, 0x56, 0x87, 0x97, - 0xc9, 0xdb, 0x43, 0x82, 0xec, 0x83, 0x1d, 0x10, 0xf2, 0x99, 0xd0, 0xf8, 0x71, 0x69, 0x5e, 0x0f, - 0x69, 0xa9, 0x1e, 0x9a, 0x69, 0xf2, 0xa8, 0xfd, 0x58, 0x91, 0x13, 0x30, 0xfc, 0x02, 0x43, 0xfd, - 0x3a, 0x40, 0x68, 0x94, 0x20, 0xc6, 0x9a, 0xdd, 0x97, 0x42, 0xa8, 0xdc, 0xcb, 0x11, 0xae, 0xd4, - 0x9a, 0xfc, 0x07, 0xd5, 0x9a, 0x0e, 0x94, 0x5a, 0x5f, 0x99, 0x38, 0x91, 0x15, 0x0b, 0x58, 0xa1, - 0x24, 0x8b, 0x3b, 0x53, 0x7e, 0xe7, 0x05, 0x3c, 0x1b, 0x22, 0x39, 0x78, 0x86, 0x08, 0x2c, 0x11, - 0x6a, 0x7f, 0xa6, 0xc0, 0xba, 0xec, 0x76, 0xff, 0x78, 0xd8, 0x23, 0x9f, 0x62, 0xf1, 0x60, 0x95, - 0xd8, 0x95, 0x45, 0x42, 0xa2, 0x5b, 0xee, 0xe3, 0x61, 0x8f, 0x09, 0x40, 0xce, 0x23, 0xb9, 0xb2, - 0x94, 0x90, 0x3c, 0x84, 0x95, 0xb6, 0x3f, 0x18, 0x50, 0xb1, 0x66, 0xfc, 0x36, 0xbf, 0x00, 0x50, - 0x46, 0xc9, 0xa7, 0x11, 0x51, 0xa1, 0x9d, 0xe7, 0xf9, 0x3d, 0x77, 0x73, 0x44, 0xf7, 0x7b, 0x8f, - 0xd3, 0x45, 0x6c, 0xdf, 0x41, 0x3f, 0x39, 0x99, 0xa7, 0xf6, 0x53, 0x05, 0x48, 0xba, 0x4a, 0xf2, - 0x96, 0xa5, 0xfc, 0x37, 0x88, 0xb0, 0x09, 0xd1, 0xaf, 0xf0, 0x34, 0xa2, 0x5f, 0xf9, 0xb7, 0x15, - 0x58, 0xaf, 0xe9, 0x0d, 0x9e, 0x92, 0x81, 0xbd, 0xe0, 0x5c, 0x85, 0x67, 0x6b, 0x7a, 0xc3, 0x6e, - 0xb7, 0xea, 0xb5, 0xca, 0x7d, 0x3b, 0x33, 0xd2, 0xf2, 0xb3, 0xf0, 0x4c, 0x1a, 0x25, 0x7a, 0xe9, - 0xb9, 0x04, 0x5b, 0xe9, 0x62, 0x11, 0x8d, 0x39, 0x9b, 0x58, 0x04, 0x6e, 0xce, 0x97, 0xdf, 0x82, - 0x75, 0x11, 0x79, 0xb8, 0x53, 0xb7, 0x30, 0xb7, 0xc1, 0x3a, 0x94, 0x0e, 0x0c, 0xb3, 0xb6, 0x77, - 0xdf, 0xde, 0xeb, 0xd6, 0xeb, 0xea, 0x19, 0xb2, 0x0a, 0xcb, 0x1c, 0x50, 0xd1, 0x55, 0x85, 0xac, - 0x40, 0xb1, 0xd6, 0xb4, 0x8c, 0x4a, 0xd7, 0x34, 0xd4, 0x5c, 0xf9, 0x2d, 0x58, 0x6b, 0x8f, 0xbd, - 0xb7, 0x9d, 0x89, 0x7b, 0xd7, 0x7d, 0x8c, 0x0f, 0x35, 0x4b, 0x90, 0x37, 0xf5, 0x7b, 0xea, 0x19, - 0x02, 0xb0, 0xd8, 0xbe, 0x5b, 0xb1, 0x6e, 0xdd, 0x52, 0x15, 0x52, 0x82, 0xa5, 0xfd, 0x4a, 0xdb, - 0xbe, 0xdb, 0xb0, 0xd4, 0x1c, 0xfd, 0xa1, 0xdf, 0xb3, 0xf0, 0x47, 0xbe, 0xfc, 0x51, 0xd8, 0x40, - 0x81, 0xa4, 0xee, 0x05, 0x13, 0x77, 0xe8, 0x8e, 0xb1, 0x0e, 0x2b, 0x50, 0xb4, 0x5c, 0xba, 0x93, - 0x4c, 0x5c, 0x56, 0x81, 0xc6, 0x74, 0x30, 0xf1, 0x46, 0x03, 0xf7, 0x6b, 0xaa, 0x52, 0x7e, 0x03, - 0xd6, 0x4d, 0x7f, 0x3a, 0xf1, 0x86, 0x47, 0xd6, 0x84, 0x62, 0x1c, 0x3d, 0x26, 0xe7, 0x61, 0xa3, - 0xdb, 0xd4, 0x1b, 0x3b, 0xb5, 0xfd, 0x6e, 0xab, 0x6b, 0xd9, 0x0d, 0xbd, 0x53, 0xa9, 0xb2, 0x67, - 0xa2, 0x46, 0xcb, 0xea, 0xd8, 0xa6, 0x51, 0x31, 0x9a, 0x1d, 0x55, 0x29, 0x7f, 0x07, 0x75, 0x2b, - 0x3d, 0x7f, 0xd8, 0xdf, 0x73, 0x7a, 0x13, 0x7f, 0x8c, 0x15, 0xd6, 0xe0, 0xb2, 0x65, 0x54, 0x5a, - 0xcd, 0x5d, 0x7b, 0x4f, 0xaf, 0x74, 0x5a, 0x66, 0x56, 0xa8, 0xef, 0x6d, 0xb8, 0x90, 0x81, 0xd3, - 0xea, 0xb4, 0x55, 0x85, 0x5c, 0x81, 0x8b, 0x19, 0x65, 0xf7, 0x8c, 0x1d, 0xbd, 0xdb, 0xa9, 0x36, - 0xd5, 0xdc, 0x0c, 0x62, 0xcb, 0x6a, 0xa9, 0xf9, 0xf2, 0xff, 0x57, 0x60, 0xad, 0x1b, 0x70, 0x93, - 0xf3, 0x2e, 0x7a, 0x9b, 0x3e, 0x07, 0x97, 0xba, 0x96, 0x61, 0xda, 0x9d, 0xd6, 0x5d, 0xa3, 0x69, - 0x77, 0x2d, 0x7d, 0x3f, 0x59, 0x9b, 0x2b, 0x70, 0x51, 0xc2, 0x30, 0x8d, 0x4a, 0xeb, 0xc0, 0x30, - 0xed, 0xb6, 0x6e, 0x59, 0xf7, 0x5a, 0xe6, 0xae, 0xaa, 0xd0, 0x2f, 0x66, 0x20, 0x34, 0xf6, 0x74, - 0x56, 0x9b, 0x58, 0x59, 0xd3, 0xb8, 0xa7, 0xd7, 0xed, 0x9d, 0x56, 0x47, 0xcd, 0x97, 0x1b, 0xf4, - 0x7c, 0xc7, 0x80, 0xbb, 0xcc, 0xb2, 0xb0, 0x08, 0x85, 0x66, 0xab, 0x69, 0x24, 0x1f, 0x17, 0x57, - 0xa0, 0xa8, 0xb7, 0xdb, 0x66, 0xeb, 0x00, 0xa7, 0x18, 0xc0, 0xe2, 0xae, 0xd1, 0xa4, 0x35, 0xcb, - 0xd3, 0x92, 0xb6, 0xd9, 0x6a, 0xb4, 0x3a, 0xc6, 0xae, 0x5a, 0x28, 0x9b, 0x62, 0x09, 0x0b, 0xa6, - 0x3d, 0x9f, 0xbd, 0xe4, 0xed, 0x1a, 0x7b, 0x7a, 0xb7, 0xde, 0xe1, 0x43, 0x74, 0xdf, 0x36, 0x8d, - 0xcf, 0x74, 0x0d, 0xab, 0x63, 0xa9, 0x0a, 0x51, 0x61, 0xa5, 0x69, 0x18, 0xbb, 0x96, 0x6d, 0x1a, - 0x07, 0x35, 0xe3, 0x9e, 0x9a, 0xa3, 0x3c, 0xd9, 0xff, 0xf4, 0x0b, 0xe5, 0xef, 0x2b, 0x40, 0x58, - 0xb0, 0x62, 0x91, 0x01, 0x07, 0x67, 0xcc, 0x65, 0xd8, 0xae, 0xd2, 0xa1, 0xc6, 0xa6, 0x35, 0x5a, - 0xbb, 0xc9, 0x2e, 0xbb, 0x00, 0x24, 0x51, 0xde, 0xda, 0xdb, 0x53, 0x15, 0x72, 0x11, 0xce, 0x26, - 0xe0, 0xbb, 0x66, 0xab, 0xad, 0xe6, 0xb6, 0x73, 0x45, 0x85, 0x6c, 0xa6, 0x0a, 0xef, 0x1a, 0x46, - 0x5b, 0xcd, 0xd3, 0x21, 0x4a, 0x14, 0x88, 0x25, 0xc1, 0xc8, 0x0b, 0xe5, 0x6f, 0x29, 0x70, 0x81, - 0x55, 0x53, 0xac, 0xaf, 0xb0, 0xaa, 0x97, 0x60, 0x8b, 0x87, 0x60, 0xcf, 0xaa, 0xe8, 0x39, 0x50, - 0x63, 0xa5, 0xac, 0x9a, 0xe7, 0x61, 0x23, 0x06, 0xc5, 0x7a, 0xe4, 0xe8, 0xee, 0x11, 0x03, 0xef, - 0x18, 0x56, 0xc7, 0x36, 0xf6, 0xf6, 0x5a, 0x66, 0x87, 0x55, 0x24, 0x5f, 0xd6, 0x60, 0xa3, 0xe2, - 0x8e, 0x27, 0xf4, 0xea, 0x35, 0x0c, 0x3c, 0x7f, 0x88, 0x55, 0x58, 0x85, 0x65, 0xe3, 0xb3, 0x1d, - 0xa3, 0x69, 0xd5, 0x5a, 0x4d, 0xf5, 0x4c, 0xf9, 0x52, 0x02, 0x47, 0xac, 0x63, 0xcb, 0xaa, 0xaa, - 0x67, 0xca, 0x0e, 0xac, 0x0a, 0xc3, 0x6b, 0x36, 0x2b, 0x2e, 0xc3, 0xb6, 0x98, 0x6b, 0xb8, 0xa3, - 0x24, 0x9b, 0xb0, 0x05, 0xe7, 0xd2, 0xe5, 0x46, 0x47, 0x55, 0xe8, 0x28, 0x24, 0x4a, 0x28, 0x3c, - 0x57, 0xfe, 0xbf, 0x0a, 0xac, 0x86, 0x8f, 0x26, 0xa8, 0xa6, 0xbd, 0x02, 0x17, 0x1b, 0x7b, 0xba, - 0xbd, 0x6b, 0x1c, 0xd4, 0x2a, 0x86, 0x7d, 0xb7, 0xd6, 0xdc, 0x4d, 0x7c, 0xe4, 0x19, 0x38, 0x9f, - 0x81, 0x80, 0x5f, 0xd9, 0x82, 0x73, 0xc9, 0xa2, 0x0e, 0x5d, 0xaa, 0x39, 0xda, 0xf5, 0xc9, 0x92, - 0x70, 0x9d, 0xe6, 0xcb, 0x07, 0xb0, 0x66, 0xe9, 0x8d, 0xfa, 0x9e, 0x3f, 0xee, 0xb9, 0xfa, 0x74, - 0x72, 0x3c, 0x24, 0x17, 0x61, 0x73, 0xaf, 0x65, 0x56, 0x0c, 0x1b, 0x51, 0x12, 0x35, 0x38, 0x0b, - 0xeb, 0x72, 0xe1, 0x7d, 0x83, 0x4e, 0x5f, 0x02, 0x6b, 0x32, 0xb0, 0xd9, 0x52, 0x73, 0xe5, 0xcf, - 0xc3, 0x4a, 0x2c, 0x11, 0xde, 0x26, 0x9c, 0x95, 0x7f, 0xb7, 0xdd, 0x61, 0xdf, 0x1b, 0x1e, 0xa9, - 0x67, 0x92, 0x05, 0xe6, 0x74, 0x38, 0xa4, 0x05, 0xb8, 0x9e, 0xe5, 0x82, 0x8e, 0x3b, 0x3e, 0xf1, - 0x86, 0xce, 0xc4, 0xed, 0xab, 0xb9, 0xf2, 0xcb, 0xb0, 0x1a, 0x0b, 0xbf, 0x4d, 0x07, 0xae, 0xde, - 0xe2, 0x1b, 0x70, 0xc3, 0xd8, 0xad, 0x75, 0x1b, 0xea, 0x02, 0x5d, 0xc9, 0xd5, 0xda, 0x7e, 0x55, - 0x85, 0xf2, 0x77, 0x15, 0x7a, 0xcf, 0xc0, 0xa4, 0x3a, 0x8d, 0x3d, 0x5d, 0x0c, 0x35, 0x9d, 0x66, - 0x2c, 0xa8, 0xbf, 0x61, 0x59, 0xec, 0x4d, 0xfd, 0x12, 0x6c, 0xf1, 0x1f, 0xb6, 0xde, 0xdc, 0xb5, - 0xab, 0xba, 0xb9, 0x7b, 0x4f, 0x37, 0xe9, 0xdc, 0xbb, 0xaf, 0xe6, 0x70, 0x41, 0x49, 0x10, 0xbb, - 0xd3, 0xea, 0x56, 0xaa, 0x6a, 0x9e, 0xce, 0xdf, 0x18, 0xbc, 0x5d, 0x6b, 0xaa, 0x05, 0x5c, 0x9e, - 0x29, 0x6c, 0x64, 0x4b, 0xcb, 0x17, 0xca, 0xef, 0x29, 0xb0, 0x69, 0x79, 0x47, 0x43, 0x67, 0x32, - 0x1d, 0xbb, 0xfa, 0xe0, 0xc8, 0x1f, 0x7b, 0x93, 0xe3, 0x13, 0x6b, 0xea, 0x4d, 0x5c, 0x72, 0x13, - 0x5e, 0xb0, 0x6a, 0xfb, 0x4d, 0xbd, 0x43, 0x97, 0x97, 0x5e, 0xdf, 0x6f, 0x99, 0xb5, 0x4e, 0xb5, - 0x61, 0x5b, 0xdd, 0x5a, 0x6a, 0xe6, 0x5d, 0x83, 0xe7, 0x66, 0xa3, 0xd6, 0x8d, 0x7d, 0xbd, 0x72, - 0x5f, 0x55, 0xe6, 0x33, 0xdc, 0xd1, 0xeb, 0x7a, 0xb3, 0x62, 0xec, 0xda, 0x07, 0xb7, 0xd4, 0x1c, - 0x79, 0x01, 0xae, 0xce, 0x46, 0xdd, 0xab, 0xb5, 0x2d, 0x8a, 0x96, 0x9f, 0xff, 0xdd, 0xaa, 0xd5, - 0xa0, 0x58, 0x85, 0xf2, 0x1f, 0x2a, 0xb0, 0x35, 0x2b, 0x06, 0x13, 0xb9, 0x0e, 0x9a, 0xd1, 0xec, - 0x98, 0x7a, 0x6d, 0xd7, 0xae, 0x98, 0xc6, 0xae, 0xd1, 0xec, 0xd4, 0xf4, 0xba, 0x65, 0x5b, 0xad, - 0x2e, 0x9d, 0x4d, 0x91, 0xe9, 0xc3, 0xf3, 0x70, 0x65, 0x0e, 0x5e, 0xab, 0xb6, 0x5b, 0x51, 0x15, - 0x72, 0x0b, 0x5e, 0x9a, 0x83, 0x64, 0xdd, 0xb7, 0x3a, 0x46, 0x43, 0x2e, 0x51, 0x73, 0xe5, 0x0a, - 0x6c, 0xcf, 0x0e, 0xd2, 0x42, 0xb7, 0xe9, 0x78, 0x4f, 0x17, 0xa1, 0xb0, 0x4b, 0x4f, 0x86, 0x58, - 0xee, 0x87, 0xb2, 0x07, 0x6a, 0x32, 0xce, 0x42, 0xca, 0x46, 0xc5, 0xec, 0x36, 0x9b, 0xec, 0x18, - 0x59, 0x87, 0x52, 0xab, 0x53, 0x35, 0x4c, 0x9e, 0x3d, 0x03, 0xd3, 0x65, 0x74, 0x9b, 0x74, 0xe1, - 0xb4, 0xcc, 0xda, 0xe7, 0xf0, 0x3c, 0xd9, 0x82, 0x73, 0x56, 0x5d, 0xaf, 0xdc, 0xb5, 0x9b, 0xad, - 0x8e, 0x5d, 0x6b, 0xda, 0x95, 0xaa, 0xde, 0x6c, 0x1a, 0x75, 0x15, 0xb0, 0x33, 0x67, 0xf9, 0x56, - 0x92, 0x0f, 0xc3, 0x8d, 0xd6, 0xdd, 0x8e, 0x6e, 0xb7, 0xeb, 0xdd, 0xfd, 0x5a, 0xd3, 0xb6, 0xee, - 0x37, 0x2b, 0x42, 0xf6, 0xa9, 0xa4, 0xb7, 0xdc, 0x1b, 0x70, 0x6d, 0x2e, 0x76, 0x94, 0xe7, 0xe2, - 0x3a, 0x68, 0x73, 0x31, 0x79, 0x43, 0xca, 0x3f, 0x51, 0xe0, 0xe2, 0x9c, 0x37, 0x64, 0xf2, 0x12, - 0xdc, 0xac, 0x1a, 0xfa, 0x6e, 0xdd, 0xb0, 0x2c, 0xdc, 0x28, 0xe8, 0x30, 0x30, 0x5b, 0x96, 0xcc, - 0x0d, 0xf5, 0x26, 0xbc, 0x30, 0x1f, 0x3d, 0x3a, 0x9a, 0x6f, 0xc0, 0xb5, 0xf9, 0xa8, 0xfc, 0xa8, - 0xce, 0x91, 0x32, 0x5c, 0x9f, 0x8f, 0x19, 0x1e, 0xf1, 0xf9, 0xf2, 0x6f, 0x2a, 0x70, 0x21, 0x5b, - 0x91, 0x43, 0xeb, 0x56, 0x6b, 0x5a, 0x1d, 0xbd, 0x5e, 0xb7, 0xdb, 0xba, 0xa9, 0x37, 0x6c, 0xa3, - 0x69, 0xb6, 0xea, 0xf5, 0xac, 0xa3, 0xed, 0x1a, 0x3c, 0x37, 0x1b, 0xd5, 0xaa, 0x98, 0xb5, 0x36, - 0xdd, 0xbd, 0x35, 0xb8, 0x3c, 0x1b, 0xcb, 0xa8, 0x55, 0x0c, 0x35, 0xb7, 0xf3, 0xe6, 0x8f, 0xfe, - 0xfe, 0xf2, 0x99, 0x1f, 0xbd, 0x77, 0x59, 0xf9, 0xe9, 0x7b, 0x97, 0x95, 0xbf, 0x7b, 0xef, 0xb2, - 0xf2, 0xb9, 0x17, 0x4f, 0x97, 0x22, 0x0a, 0xe5, 0xfe, 0x87, 0x8b, 0x78, 0x43, 0x79, 0xe5, 0x3f, - 0x03, 0x00, 0x00, 0xff, 0xff, 0x09, 0xed, 0xed, 0x8d, 0x2e, 0xbf, 0x01, 0x00, + 0x76, 0xbb, 0xfd, 0xff, 0xb3, 0xf7, 0x6c, 0xb1, 0x6d, 0x64, 0xd7, 0x79, 0x48, 0x4a, 0xa2, 0x0e, + 0xf5, 0x18, 0x5d, 0x3f, 0xa4, 0x95, 0xbd, 0xf6, 0x7a, 0xd6, 0x76, 0x6c, 0xee, 0x23, 0x6b, 0x6f, + 0x37, 0xbb, 0x9b, 0x64, 0xb3, 0x19, 0x51, 0x23, 0x91, 0x36, 0x5f, 0x99, 0xa1, 0xe4, 0x38, 0x4e, + 0x32, 0x19, 0x93, 0x23, 0x69, 0xb2, 0x14, 0x87, 0xe1, 0x90, 0xeb, 0x38, 0x28, 0xd0, 0x04, 0x05, + 0x12, 0xa0, 0xaf, 0xf4, 0x89, 0x2e, 0xfa, 0x93, 0x8f, 0x06, 0x45, 0x81, 0xf6, 0xb7, 0x68, 0xd1, + 0xb4, 0x1f, 0xf9, 0x0b, 0x10, 0x04, 0x08, 0x50, 0xa0, 0x1f, 0x69, 0xb1, 0x68, 0x17, 0x68, 0x81, + 0xa6, 0xfd, 0x2b, 0xda, 0x8f, 0x7c, 0x15, 0xf7, 0xdc, 0x7b, 0x67, 0xee, 0x3c, 0x48, 0xcb, 0xd9, + 0x4d, 0xdb, 0x00, 0xf9, 0x92, 0x78, 0xee, 0x39, 0x67, 0xee, 0xfb, 0x9e, 0x7b, 0xee, 0x79, 0xb8, + 0x7d, 0xbe, 0xe3, 0xae, 0x0a, 0x78, 0x85, 0x81, 0x19, 0x67, 0xed, 0x4d, 0x38, 0x93, 0x35, 0xe0, + 0xe4, 0x32, 0x2c, 0xc9, 0xc1, 0x80, 0x38, 0x93, 0x92, 0x33, 0xf4, 0x44, 0x38, 0x20, 0xce, 0xe0, + 0x3b, 0x0a, 0x5c, 0x98, 0xb5, 0x7d, 0x90, 0x4d, 0x28, 0x0e, 0x47, 0x9e, 0x8f, 0x62, 0x2a, 0xcf, + 0xb6, 0x20, 0x7e, 0x63, 0x22, 0x05, 0x94, 0xa7, 0xc6, 0xce, 0x21, 0x77, 0xf0, 0x30, 0x17, 0x11, + 0xd2, 0x71, 0x0e, 0x03, 0xf2, 0x1c, 0xac, 0xf5, 0xdc, 0x03, 0x67, 0xd2, 0x1f, 0xdb, 0x41, 0xf7, + 0xc8, 0xed, 0xa1, 0x0b, 0x16, 0x1a, 0xee, 0x99, 0x2a, 0x2f, 0xb0, 0x04, 0x3c, 0x55, 0xe3, 0xb9, + 0x29, 0x35, 0xbe, 0x5d, 0x28, 0x2a, 0x6a, 0xce, 0x44, 0x4b, 0x29, 0xed, 0xab, 0x39, 0xd8, 0x98, + 0xb6, 0x5e, 0xc8, 0x1b, 0x59, 0x7d, 0xc0, 0x1e, 0x2e, 0x64, 0xb8, 0xfc, 0x70, 0x21, 0x7d, 0x8d, + 0xdc, 0x82, 0xd0, 0x81, 0xea, 0x71, 0xc1, 0x10, 0x04, 0x8c, 0xd2, 0x0c, 0x9d, 0x20, 0x78, 0x48, + 0xb7, 0x84, 0xbc, 0x14, 0x50, 0x97, 0xc3, 0x64, 0x1a, 0x01, 0x23, 0xaf, 0x02, 0x74, 0xfb, 0x7e, + 0xe0, 0xa2, 0x7d, 0x00, 0x97, 0x35, 0x98, 0x59, 0x78, 0x08, 0x95, 0x1f, 0x84, 0x11, 0x5a, 0xf1, + 0x7b, 0x2e, 0x1f, 0x40, 0x07, 0xd6, 0xa7, 0x6c, 0x90, 0x74, 0x78, 0xa2, 0xec, 0xf4, 0x22, 0xd7, + 0xd5, 0x24, 0xcc, 0x51, 0x9f, 0xec, 0xf1, 0xdc, 0xb4, 0x39, 0xf2, 0x08, 0x48, 0x7a, 0x17, 0xa4, + 0xdc, 0xb9, 0x71, 0xf3, 0x64, 0x14, 0x72, 0x67, 0x90, 0xbd, 0x51, 0x9f, 0x5c, 0x82, 0x92, 0xc8, + 0x65, 0x49, 0x65, 0x79, 0xc6, 0x1c, 0x38, 0xe8, 0x8e, 0x8b, 0x93, 0x07, 0x23, 0xa6, 0xa2, 0x9b, + 0x1c, 0x97, 0x12, 0x16, 0x11, 0xd2, 0x79, 0x34, 0x14, 0xad, 0xbb, 0x20, 0xe6, 0x77, 0xfc, 0x6c, + 0xe2, 0xa5, 0x7f, 0xa0, 0x88, 0xe1, 0x4f, 0x6f, 0xee, 0x8f, 0xab, 0x1f, 0x01, 0xf4, 0x52, 0xe2, + 0x15, 0xc3, 0xff, 0xa9, 0xd4, 0x22, 0x56, 0x1d, 0x97, 0x5a, 0xf8, 0x4f, 0x72, 0x0d, 0x56, 0x47, + 0xcc, 0x8e, 0x75, 0xec, 0xf3, 0xfe, 0x64, 0x79, 0x43, 0x96, 0x19, 0xb8, 0xe3, 0x63, 0x9f, 0xf2, + 0x7a, 0xdd, 0x0e, 0x3b, 0x4c, 0x3a, 0xeb, 0xc8, 0x8b, 0xb0, 0x48, 0xcf, 0x3a, 0x8c, 0xb4, 0x93, + 0x70, 0x8f, 0x40, 0x3c, 0x94, 0x1c, 0xcc, 0xe2, 0x17, 0xf9, 0xff, 0x9c, 0xd7, 0x3b, 0x39, 0xc1, + 0x4c, 0x3e, 0x69, 0xc9, 0x3a, 0x2c, 0xf8, 0xa3, 0x43, 0xa9, 0x69, 0xf3, 0xfe, 0xe8, 0x90, 0xb6, + 0xeb, 0x3a, 0xa8, 0xcc, 0x5b, 0x87, 0x45, 0x4d, 0x08, 0x1e, 0x0d, 0xd8, 0x55, 0xbc, 0x68, 0xae, + 0x30, 0x38, 0x26, 0xec, 0x7f, 0x34, 0xe8, 0x52, 0xcc, 0x20, 0xf0, 0x6d, 0x39, 0xc0, 0x16, 0x6f, + 0xf6, 0x4a, 0x10, 0xf8, 0x51, 0xa4, 0xad, 0x1e, 0xd9, 0x82, 0x65, 0xca, 0x27, 0x0c, 0xf3, 0xc5, + 0x05, 0x81, 0xa7, 0xd3, 0x82, 0xc0, 0xa3, 0x41, 0x57, 0x54, 0xd1, 0x5c, 0x0a, 0xa4, 0x5f, 0xe4, + 0x0e, 0xa8, 0x92, 0xc4, 0x84, 0xee, 0x9b, 0x09, 0x9b, 0xea, 0x88, 0x8d, 0x24, 0x69, 0xd5, 0x06, + 0x07, 0xbe, 0xb9, 0xda, 0x8d, 0x03, 0x78, 0xd7, 0x7c, 0x4b, 0x11, 0x7b, 0x69, 0x06, 0x11, 0xd1, + 0x60, 0xf9, 0xc8, 0x09, 0xec, 0x20, 0x38, 0x66, 0x36, 0x62, 0x3c, 0xb0, 0x70, 0xe9, 0xc8, 0x09, + 0xac, 0xe0, 0x58, 0x24, 0x2e, 0x39, 0x4b, 0x71, 0x7c, 0x67, 0x32, 0x3e, 0xb2, 0x65, 0xf9, 0x8f, + 0xf5, 0xd8, 0xe9, 0x23, 0x27, 0x68, 0xd1, 0x32, 0x89, 0x37, 0xb9, 0x02, 0x2b, 0xc8, 0xb7, 0xeb, + 0x09, 0xc6, 0x18, 0xf9, 0xc2, 0x5c, 0xa2, 0x8c, 0xbb, 0x1e, 0xe3, 0xcc, 0x6b, 0xf8, 0x6f, 0x39, + 0x38, 0x97, 0xdd, 0x3b, 0x38, 0x3d, 0x69, 0x9f, 0xa2, 0x8f, 0x1e, 0xaf, 0xdb, 0x22, 0x85, 0xb0, + 0xa8, 0x25, 0x59, 0x83, 0x93, 0xcb, 0x1c, 0x9c, 0x32, 0xac, 0x21, 0x23, 0x2e, 0x69, 0xf6, 0xbd, + 0x60, 0xcc, 0x83, 0x71, 0x98, 0xab, 0xb4, 0x80, 0xed, 0xe7, 0x75, 0x0a, 0x26, 0x57, 0x61, 0x45, + 0xec, 0xc8, 0xfe, 0xc3, 0x01, 0xfd, 0x30, 0xdb, 0x8e, 0x97, 0x39, 0xb4, 0x85, 0x40, 0x72, 0x16, + 0xe6, 0x9d, 0xe1, 0x90, 0x7e, 0x92, 0xed, 0xc2, 0x73, 0xce, 0x70, 0xc8, 0x92, 0xeb, 0xa0, 0x47, + 0xa2, 0x7d, 0x80, 0x56, 0x42, 0xdc, 0x24, 0xd1, 0x5c, 0x42, 0x20, 0xb3, 0x1c, 0x0a, 0xe8, 0xba, + 0xa7, 0xb4, 0x02, 0x65, 0x01, 0x51, 0xc0, 0x19, 0x86, 0x08, 0x4f, 0x41, 0x51, 0xbc, 0x57, 0x33, + 0xc7, 0x0a, 0x73, 0xc1, 0xe1, 0x6f, 0xd5, 0xaf, 0xc0, 0x7a, 0xcf, 0x0b, 0x70, 0xf2, 0xb2, 0x26, + 0x0d, 0x87, 0xdc, 0x07, 0x92, 0x05, 0xe9, 0x35, 0xcf, 0xf0, 0x62, 0xda, 0x93, 0xfa, 0x70, 0xc8, + 0x3c, 0x21, 0x79, 0x5f, 0xbf, 0x06, 0xab, 0x5c, 0xe2, 0xe2, 0x47, 0x24, 0xd6, 0x85, 0x2f, 0x60, + 0x7a, 0x15, 0xe2, 0xe9, 0x8c, 0x80, 0x83, 0x6a, 0x3d, 0x41, 0xf9, 0x8f, 0x0a, 0x9c, 0xcd, 0x14, + 0xd9, 0xc8, 0x17, 0x80, 0xb9, 0x7c, 0x8d, 0x7d, 0x7b, 0xe4, 0x76, 0xbd, 0xa1, 0x87, 0x31, 0x34, + 0x98, 0x4a, 0xf3, 0xd6, 0x2c, 0x61, 0x0f, 0xdd, 0xc7, 0x3a, 0xbe, 0x19, 0x12, 0x31, 0x5d, 0x8b, + 0x3a, 0x4a, 0x80, 0x37, 0xef, 0xc3, 0xd9, 0x4c, 0xd4, 0x0c, 0x1d, 0xc8, 0xf3, 0xf1, 0x64, 0xd2, + 0xe2, 0x91, 0x2a, 0xd1, 0x68, 0x49, 0x37, 0xc2, 0x9b, 0xf7, 0xdd, 0xb0, 0x79, 0x09, 0xe1, 0x8e, + 0x18, 0xc9, 0x75, 0x9d, 0x75, 0x3f, 0x11, 0x44, 0xd3, 0x97, 0xf6, 0x7d, 0x38, 0xcb, 0x27, 0xdf, + 0xe1, 0xc8, 0x19, 0x1e, 0x45, 0xec, 0x58, 0x45, 0x3f, 0x94, 0xc5, 0x8e, 0xcd, 0xca, 0x5d, 0x8a, + 0x1f, 0x72, 0x3d, 0xed, 0xa4, 0x81, 0xbc, 0x0d, 0x5f, 0xcb, 0x89, 0xa5, 0x9e, 0x51, 0x9d, 0x8c, + 0x69, 0xad, 0x64, 0x4d, 0xeb, 0x93, 0xaf, 0xa9, 0x26, 0x10, 0x79, 0xb3, 0x62, 0x5a, 0x4f, 0x6e, + 0x50, 0x25, 0xe4, 0x74, 0x5e, 0x11, 0x69, 0x6b, 0xb0, 0x58, 0x32, 0xcf, 0xb5, 0x6e, 0x12, 0x44, + 0xce, 0xc3, 0x62, 0x98, 0x2f, 0x9b, 0x1f, 0x1c, 0x45, 0x06, 0xa8, 0xf5, 0xc8, 0x33, 0xb0, 0xc4, + 0x44, 0xf2, 0xd8, 0x9a, 0x03, 0x84, 0xe9, 0x74, 0xe1, 0x89, 0x3e, 0x50, 0xe0, 0x99, 0xc7, 0xf5, + 0x21, 0xb9, 0x0b, 0xe7, 0xd0, 0xac, 0x23, 0xf0, 0xc3, 0x61, 0xb0, 0xbb, 0x4e, 0xf7, 0xc8, 0xe5, + 0xb3, 0x56, 0xcb, 0x1c, 0x8c, 0xe1, 0xd0, 0xb2, 0x5a, 0xd2, 0x38, 0x0c, 0x87, 0x56, 0xe0, 0x8b, + 0xdf, 0x15, 0x4a, 0xce, 0xeb, 0xd0, 0x83, 0xf3, 0x33, 0x28, 0xa5, 0x8d, 0x43, 0x91, 0x37, 0x8e, + 0xeb, 0xa0, 0x1e, 0xb8, 0x3d, 0x2a, 0x13, 0xbb, 0x3d, 0xac, 0xda, 0xdb, 0xb7, 0x58, 0x86, 0x78, + 0x73, 0x25, 0x84, 0x5b, 0x81, 0xbf, 0x7f, 0x8b, 0x7f, 0xe5, 0x58, 0x1c, 0x79, 0xf2, 0xb5, 0x82, + 0xbc, 0x08, 0xa7, 0x13, 0xf1, 0x49, 0x22, 0x87, 0x77, 0x73, 0x8d, 0x16, 0xc5, 0xa3, 0x59, 0x5d, + 0x86, 0x25, 0x31, 0x2b, 0x46, 0xa1, 0x1f, 0x9c, 0x59, 0xe2, 0x30, 0xba, 0xea, 0xf8, 0xe7, 0x26, + 0xa2, 0x51, 0x99, 0x37, 0x92, 0x13, 0xc8, 0xd2, 0xe4, 0x05, 0x20, 0xa1, 0xdc, 0x1e, 0x6e, 0x14, + 0xfc, 0x83, 0x6b, 0xa2, 0x24, 0x5c, 0xe1, 0xfc, 0xb3, 0x7f, 0x93, 0x83, 0xd3, 0x19, 0x57, 0x19, + 0x7a, 0x09, 0xf0, 0x06, 0x63, 0xf7, 0x90, 0x5d, 0x21, 0xe4, 0x46, 0xae, 0x4a, 0x70, 0xae, 0x9f, + 0x9a, 0x67, 0x19, 0xd0, 0xf9, 0xb7, 0xf8, 0x2f, 0xba, 0x79, 0x38, 0x23, 0xa1, 0x7a, 0xa1, 0xff, + 0x92, 0x1a, 0xac, 0x61, 0x5a, 0x87, 0xc0, 0xf3, 0x31, 0x3b, 0x04, 0x0a, 0x21, 0x85, 0xd8, 0x65, + 0x07, 0x6b, 0xd1, 0x96, 0x90, 0xa8, 0x14, 0x62, 0xaa, 0xc3, 0x04, 0x84, 0x7c, 0x0c, 0x36, 0xa5, + 0xb3, 0xc6, 0x4e, 0xac, 0x3c, 0xb4, 0x74, 0x37, 0xd7, 0x9d, 0xf0, 0xd4, 0xd9, 0x8e, 0xad, 0xc1, + 0x2d, 0xb8, 0x88, 0x83, 0xe8, 0xf5, 0x86, 0x76, 0x2a, 0x0f, 0x08, 0x36, 0x95, 0x05, 0xce, 0xdf, + 0xa4, 0x58, 0xb5, 0xde, 0x30, 0x91, 0x12, 0x84, 0xb6, 0x9a, 0x77, 0xdf, 0x7d, 0x38, 0x9b, 0x59, + 0x63, 0x7a, 0xc0, 0xa0, 0x21, 0x55, 0x24, 0x1b, 0x2d, 0xd0, 0xdf, 0x54, 0x38, 0xba, 0x0c, 0x4b, + 0x0f, 0x5c, 0x67, 0xe4, 0x8e, 0xf8, 0xc9, 0xcd, 0xa7, 0x04, 0x83, 0xc9, 0x07, 0x77, 0x2f, 0x3e, + 0x34, 0x5c, 0x67, 0x44, 0x1a, 0x70, 0x9a, 0x9d, 0x80, 0xde, 0x31, 0x0a, 0x83, 0x5c, 0xcf, 0xa4, + 0xc4, 0xc4, 0x21, 0x24, 0xc1, 0xa3, 0xa9, 0x86, 0x58, 0x8c, 0xda, 0x5c, 0x3b, 0x4c, 0x82, 0xe8, + 0x8a, 0x3e, 0x97, 0x8d, 0x4d, 0xb6, 0xa0, 0xc4, 0x98, 0xb3, 0x6b, 0x01, 0x7b, 0x20, 0xb8, 0x3c, + 0xf3, 0x0b, 0x15, 0xb4, 0x2f, 0x0e, 0xc2, 0xff, 0xe9, 0x79, 0x8d, 0x6f, 0xb1, 0xf6, 0xb1, 0xfc, + 0xfe, 0x61, 0x2e, 0x21, 0x90, 0xbf, 0x7b, 0x68, 0x7f, 0xa7, 0x88, 0xa6, 0xc6, 0x2e, 0xc7, 0x74, + 0x6a, 0x05, 0xee, 0x40, 0xbc, 0x01, 0x2d, 0x9a, 0xfc, 0xd7, 0x13, 0x4e, 0x75, 0xf2, 0x2a, 0x2c, + 0x51, 0xb6, 0x87, 0x93, 0x01, 0x9b, 0x72, 0xf9, 0x58, 0x5c, 0x9e, 0x06, 0x2b, 0xa2, 0xc3, 0x56, + 0x3d, 0x65, 0x96, 0x8e, 0xa3, 0x9f, 0x54, 0x5a, 0x0e, 0x8e, 0xc7, 0x43, 0x79, 0xa2, 0x0a, 0x45, + 0xa1, 0xd5, 0xe8, 0xb4, 0x39, 0x49, 0x91, 0xe2, 0x44, 0xd2, 0xf2, 0xd6, 0x3c, 0x53, 0x15, 0x6a, + 0xcf, 0x41, 0x49, 0xe2, 0x4d, 0x1b, 0xc3, 0x3c, 0x67, 0x44, 0x63, 0xd8, 0x2f, 0x3e, 0xd8, 0x0f, + 0xa0, 0x28, 0x58, 0xd2, 0x6b, 0xc1, 0x91, 0x1f, 0x88, 0x45, 0x8e, 0xff, 0x53, 0x18, 0xed, 0x65, + 0x6c, 0xe4, 0x9c, 0x89, 0xff, 0xe3, 0x59, 0x32, 0x76, 0xe8, 0x7d, 0xa0, 0x1f, 0xd8, 0x43, 0xb4, + 0xc0, 0x0a, 0x85, 0x67, 0x0a, 0xef, 0xf4, 0x03, 0x66, 0x97, 0xc5, 0xbf, 0xf1, 0x57, 0xe1, 0x21, + 0x9c, 0xd0, 0x26, 0x4c, 0xdb, 0x33, 0x63, 0x47, 0x46, 0x2e, 0x7d, 0x64, 0xb0, 0x78, 0x2b, 0x9c, + 0x92, 0x7d, 0x19, 0x10, 0x86, 0x47, 0x86, 0xb4, 0x33, 0x14, 0x62, 0x3b, 0x83, 0x74, 0x27, 0x8f, + 0x46, 0x8f, 0x9d, 0x38, 0xe2, 0x4e, 0x9e, 0xdc, 0xa7, 0xfe, 0x24, 0x27, 0x54, 0x04, 0x5b, 0xbe, + 0x3f, 0x0e, 0xc6, 0x23, 0x67, 0x18, 0x53, 0x85, 0x92, 0x63, 0x78, 0x0a, 0x25, 0xe8, 0x5b, 0x98, + 0x42, 0xc3, 0x1f, 0x89, 0x10, 0x1f, 0xe1, 0xcc, 0x2d, 0xdd, 0xfa, 0x70, 0x5c, 0xc6, 0xd7, 0x29, + 0xb6, 0x2e, 0x23, 0xd3, 0x09, 0x2b, 0x71, 0xad, 0x9e, 0x32, 0xd7, 0x19, 0xcf, 0x14, 0x16, 0xa9, + 0x66, 0x2c, 0xe2, 0xa4, 0x2e, 0x74, 0x2b, 0x5a, 0xd1, 0x71, 0xae, 0xf2, 0x5a, 0x27, 0x9f, 0x80, + 0x45, 0xaf, 0x27, 0x67, 0x8a, 0x4c, 0x6a, 0xe1, 0x6a, 0x3d, 0x16, 0xad, 0x3a, 0xe2, 0x41, 0xe7, + 0x9c, 0xc7, 0xa1, 0x5b, 0xcb, 0x31, 0xa5, 0xb1, 0xb6, 0x25, 0x6e, 0xa3, 0x69, 0x32, 0xb2, 0x02, + 0xb9, 0x70, 0x84, 0x73, 0x5e, 0x8f, 0x2d, 0xaf, 0x28, 0x5e, 0xb6, 0xc9, 0x7f, 0x69, 0xbf, 0x0c, + 0xd7, 0x4f, 0xda, 0x47, 0x74, 0x29, 0x4e, 0xe9, 0xf0, 0x45, 0x16, 0xaa, 0x32, 0xde, 0x6f, 0x97, + 0x41, 0x0e, 0xf7, 0xeb, 0x89, 0xcd, 0x4f, 0xc0, 0xf6, 0x46, 0x9e, 0xf6, 0x97, 0x79, 0x58, 0x89, + 0xab, 0xc9, 0xc9, 0x73, 0x50, 0x90, 0x76, 0xa0, 0xf5, 0x0c, 0x5d, 0x3a, 0xee, 0x3b, 0x88, 0x74, + 0xa2, 0x1d, 0x87, 0xdc, 0x86, 0x15, 0x34, 0xdc, 0x43, 0xd1, 0x73, 0xec, 0xf1, 0xc7, 0x97, 0xd9, + 0xef, 0x67, 0xc5, 0xef, 0xbd, 0x7b, 0xe9, 0x14, 0x3e, 0x95, 0x2d, 0x51, 0x5a, 0x2a, 0xfd, 0xd1, + 0x42, 0x49, 0x0b, 0x5a, 0x98, 0xae, 0x05, 0xe5, 0x4d, 0x99, 0xa2, 0x05, 0x9d, 0x9b, 0xa1, 0x05, + 0x8d, 0x28, 0x65, 0x2d, 0x28, 0xea, 0xc2, 0x17, 0xa6, 0xe9, 0xc2, 0x23, 0x1a, 0xa6, 0x0b, 0x8f, + 0xb4, 0x98, 0xc5, 0xa9, 0x5a, 0xcc, 0x88, 0x86, 0x6b, 0x31, 0xaf, 0xf0, 0x3e, 0x1a, 0x39, 0x0f, + 0x6d, 0xec, 0x3c, 0x7e, 0x2c, 0x62, 0xeb, 0x4d, 0xe7, 0x21, 0x1a, 0xd7, 0x6c, 0x2d, 0x82, 0xb0, + 0xc8, 0xd1, 0x7e, 0x4f, 0x49, 0x68, 0x02, 0xc5, 0xf8, 0x5d, 0x85, 0x15, 0x76, 0x58, 0xf1, 0x70, + 0xa6, 0xec, 0xb4, 0x5a, 0x36, 0x97, 0x05, 0x94, 0xdd, 0x37, 0x3f, 0x04, 0xab, 0x21, 0x1a, 0xbf, + 0x72, 0xa1, 0xa7, 0x9e, 0x19, 0x52, 0xf3, 0xb0, 0x33, 0xcf, 0xc1, 0x5a, 0x88, 0xc8, 0xb5, 0x39, + 0xec, 0xba, 0xb9, 0x6c, 0xaa, 0xa2, 0xa0, 0xcd, 0xe1, 0xda, 0x61, 0xf2, 0xe6, 0xf1, 0x33, 0xaa, + 0x95, 0xf6, 0xdd, 0x7c, 0x4c, 0x4b, 0x22, 0x3e, 0x43, 0x4f, 0xd1, 0xc0, 0xb7, 0x79, 0x27, 0xf1, + 0xbd, 0xe8, 0xf2, 0x94, 0x31, 0xe3, 0x36, 0x4d, 0x96, 0xd5, 0x32, 0x21, 0x08, 0x7c, 0x61, 0xe2, + 0x64, 0x33, 0x89, 0x9a, 0x9d, 0xfb, 0x38, 0x67, 0x05, 0x3b, 0xb6, 0xf1, 0x94, 0x67, 0xb3, 0x13, + 0xd7, 0x54, 0x3a, 0x65, 0x51, 0xb2, 0x0e, 0x7f, 0x89, 0x0f, 0xec, 0x01, 0x2a, 0x15, 0x83, 0x38, + 0xf3, 0x7c, 0xc6, 0xdd, 0x29, 0xc5, 0x1c, 0x7b, 0x09, 0x39, 0xab, 0x13, 0xf1, 0xaf, 0x60, 0x6b, + 0xc0, 0x12, 0xea, 0x28, 0x04, 0xc3, 0x42, 0x86, 0x0a, 0x3e, 0xdd, 0xf8, 0x4a, 0xad, 0x61, 0x96, + 0x28, 0x9d, 0x60, 0x73, 0x04, 0x4f, 0xc9, 0x9a, 0x85, 0x78, 0x25, 0xe7, 0x44, 0x14, 0xdf, 0x99, + 0x3d, 0x10, 0x29, 0x20, 0xb0, 0xaa, 0xe7, 0x9c, 0x38, 0x80, 0xa3, 0x69, 0x47, 0xb0, 0x39, 0x7d, + 0x48, 0x66, 0x64, 0x88, 0x8a, 0x0e, 0xd0, 0x9c, 0x7c, 0x80, 0xca, 0x7a, 0x86, 0x7c, 0x4c, 0xcf, + 0xa0, 0xfd, 0x71, 0x1e, 0x9e, 0x3d, 0xc1, 0x70, 0xcd, 0xf8, 0xe6, 0x27, 0xe3, 0xe2, 0x59, 0x2e, + 0x76, 0x33, 0xa4, 0x4c, 0xf9, 0x06, 0x49, 0x6f, 0xa9, 0xd9, 0xc2, 0xd9, 0x17, 0x60, 0x95, 0xed, + 0x82, 0xcc, 0x2c, 0xf1, 0x60, 0xd2, 0x3f, 0xc1, 0x36, 0x78, 0x5e, 0xf8, 0x50, 0x25, 0x48, 0x71, + 0x67, 0xc4, 0x1d, 0xc3, 0x0a, 0x61, 0xa4, 0x03, 0x25, 0x44, 0x3b, 0x70, 0xbc, 0xfe, 0x89, 0x9c, + 0x79, 0x84, 0x87, 0x96, 0x4c, 0xc6, 0xac, 0xa9, 0x29, 0x60, 0x07, 0x7f, 0x93, 0x6b, 0xb0, 0x3a, + 0x98, 0x1c, 0x53, 0xc1, 0x83, 0xcd, 0x05, 0x6e, 0xfd, 0x31, 0x67, 0x2e, 0x0f, 0x26, 0xc7, 0xfa, + 0x70, 0x88, 0x43, 0x8a, 0x66, 0x22, 0x6b, 0x14, 0x8f, 0xad, 0x5a, 0x81, 0x39, 0x8f, 0x98, 0x94, + 0x01, 0x5b, 0xb7, 0x1c, 0xf7, 0x0c, 0x30, 0xa3, 0x41, 0x9e, 0x21, 0x8b, 0xfd, 0xd0, 0xfe, 0x3b, + 0x27, 0xee, 0xbb, 0xd3, 0xe7, 0xfd, 0x2f, 0x86, 0x28, 0x63, 0x88, 0xae, 0x83, 0x4a, 0xbb, 0x3e, + 0xda, 0x54, 0xc2, 0x31, 0x5a, 0x19, 0x4c, 0x8e, 0xc3, 0xbe, 0x93, 0x3b, 0x7e, 0x5e, 0xee, 0xf8, + 0x57, 0xc5, 0x7d, 0x38, 0x73, 0x7b, 0x98, 0xde, 0xe5, 0xda, 0x7f, 0xe4, 0xe1, 0xda, 0xc9, 0x36, + 0x81, 0x5f, 0x8c, 0x5b, 0xc6, 0xb8, 0x25, 0x54, 0xa7, 0x73, 0x29, 0xd5, 0x69, 0xc6, 0xda, 0x9b, + 0xcf, 0x5a, 0x7b, 0x29, 0x45, 0xed, 0x42, 0x86, 0xa2, 0x36, 0x73, 0x81, 0x16, 0x1f, 0xb3, 0x40, + 0x17, 0xe5, 0x79, 0xf2, 0xaf, 0xa1, 0x02, 0x23, 0x7e, 0x1f, 0xb8, 0x0f, 0xa7, 0xc5, 0x7d, 0x80, + 0x9d, 0x1c, 0x91, 0xfe, 0xbd, 0x74, 0xeb, 0x46, 0xd6, 0x4d, 0x00, 0xd1, 0x32, 0xa4, 0xf5, 0x35, + 0x7e, 0x07, 0x88, 0xca, 0xff, 0xff, 0x48, 0xff, 0xe4, 0x1e, 0x9c, 0xc3, 0xf8, 0xf2, 0x5d, 0xf9, + 0xe5, 0xc0, 0x1e, 0xb9, 0x07, 0x7c, 0x3e, 0x5c, 0x4e, 0xc9, 0xca, 0x5e, 0x57, 0xaa, 0x8e, 0xe9, + 0x1e, 0x54, 0x4f, 0x99, 0x67, 0x82, 0x0c, 0x78, 0xf2, 0x62, 0xf1, 0xe7, 0x0a, 0x68, 0x8f, 0xef, + 0x2f, 0x54, 0x54, 0x25, 0x3b, 0x7c, 0xd1, 0x2c, 0x39, 0x52, 0xef, 0x3d, 0x0b, 0xcb, 0x23, 0xf7, + 0x60, 0xe4, 0x06, 0x47, 0x31, 0x0d, 0xc8, 0x12, 0x07, 0x8a, 0x8e, 0x11, 0x41, 0x29, 0x9f, 0x48, + 0x32, 0x17, 0x44, 0xda, 0x4e, 0x78, 0x5f, 0xcc, 0x1c, 0x07, 0x3a, 0x9b, 0xe4, 0x0a, 0xb2, 0x1f, + 0xb7, 0x0b, 0xc5, 0x9c, 0x9a, 0x37, 0x79, 0xe8, 0xcc, 0x03, 0xaf, 0xef, 0x6a, 0x7f, 0xad, 0x08, + 0x89, 0x20, 0xab, 0xf3, 0xc8, 0x7d, 0xc9, 0x98, 0x37, 0x9f, 0x12, 0x43, 0xb2, 0x48, 0x64, 0xbb, + 0x47, 0x1e, 0x9e, 0x11, 0x01, 0xb1, 0xf0, 0x8c, 0x08, 0x79, 0x1f, 0x16, 0x89, 0xfc, 0xd6, 0xfc, + 0xba, 0xb0, 0x08, 0xa2, 0x7b, 0xde, 0xfe, 0x4d, 0x72, 0x03, 0x16, 0x98, 0x11, 0x90, 0xa8, 0xee, + 0x6a, 0xac, 0xba, 0xfb, 0x37, 0x4d, 0x51, 0xae, 0xbd, 0x13, 0xbe, 0x6b, 0xa5, 0x1a, 0xb1, 0x7f, + 0x93, 0xbc, 0x7a, 0x32, 0xe3, 0xdc, 0xa2, 0x30, 0xce, 0x0d, 0x0d, 0x73, 0x5f, 0x8b, 0x19, 0xe6, + 0x5e, 0x99, 0xdd, 0x5b, 0xfc, 0x35, 0x92, 0x85, 0x23, 0x8c, 0xc2, 0x54, 0xfd, 0x28, 0x07, 0x4f, + 0xcf, 0xa4, 0x20, 0x17, 0xa0, 0xa8, 0xb7, 0x6b, 0x9d, 0x68, 0x7c, 0xe9, 0x9a, 0x11, 0x10, 0xb2, + 0x0b, 0x8b, 0x5b, 0x4e, 0xe0, 0x75, 0xe9, 0x34, 0xce, 0x7c, 0x1e, 0x48, 0xb1, 0x0d, 0xd1, 0xab, + 0xa7, 0xcc, 0x88, 0x96, 0xd8, 0xb0, 0x86, 0x6b, 0x21, 0x96, 0x7a, 0x2a, 0x9f, 0xa1, 0x6b, 0x48, + 0x31, 0x4c, 0x91, 0xd1, 0x7d, 0x26, 0x05, 0x24, 0x0f, 0x80, 0x58, 0x56, 0xb5, 0xe2, 0x8e, 0xc6, + 0xfc, 0x0e, 0x3e, 0xf6, 0x42, 0x4b, 0xcf, 0x97, 0x1e, 0xd3, 0x77, 0x29, 0xba, 0xea, 0x29, 0x33, + 0x83, 0x5b, 0x72, 0x99, 0xbf, 0x2d, 0xe4, 0x9d, 0xe9, 0x9d, 0xf0, 0x04, 0xa1, 0x5e, 0xaf, 0x43, + 0xb1, 0x2d, 0x6c, 0x11, 0x24, 0x8b, 0x79, 0x61, 0x77, 0x60, 0x86, 0xa5, 0xda, 0x6f, 0x28, 0x42, + 0xe9, 0xf0, 0xf8, 0xce, 0x92, 0x32, 0x83, 0xf5, 0x66, 0x67, 0x06, 0xeb, 0xfd, 0x94, 0x99, 0xc1, + 0x34, 0x0f, 0x6e, 0x9c, 0xb8, 0x63, 0xc9, 0xc7, 0x41, 0xc5, 0x24, 0x4a, 0x8e, 0x34, 0x48, 0x6c, + 0x7d, 0xad, 0x85, 0xb1, 0xbf, 0xab, 0x3c, 0x53, 0x9d, 0xb9, 0xda, 0x8d, 0x53, 0x6b, 0x7f, 0xca, + 0x63, 0xbe, 0xd7, 0x7a, 0xed, 0x84, 0xa2, 0xf9, 0xfd, 0x3a, 0x59, 0x18, 0xb1, 0xc5, 0xf6, 0xac, + 0x94, 0xc4, 0x32, 0xfd, 0xad, 0xe9, 0xbe, 0x16, 0xd2, 0xca, 0xfb, 0xc3, 0x3c, 0x5c, 0x98, 0x45, + 0x9e, 0x99, 0x26, 0x5b, 0x79, 0xb2, 0x34, 0xd9, 0x37, 0xa0, 0xc8, 0x60, 0xa1, 0x07, 0x01, 0x8e, + 0x2d, 0x27, 0xa5, 0x63, 0x2b, 0x8a, 0xc9, 0xb3, 0x30, 0xaf, 0x57, 0xac, 0x28, 0x73, 0x1b, 0x9a, + 0xfa, 0x3a, 0xdd, 0x00, 0x8d, 0x48, 0x79, 0x11, 0xf9, 0x7c, 0x3a, 0x59, 0x21, 0x4f, 0xd9, 0x76, + 0x5e, 0xea, 0x90, 0x54, 0x3a, 0x06, 0xac, 0x6f, 0x94, 0x3e, 0x80, 0x47, 0xe4, 0x36, 0xd3, 0x89, + 0x0f, 0x35, 0x98, 0x6f, 0x8f, 0xdc, 0xc0, 0x1d, 0xcb, 0x66, 0xb8, 0x43, 0x84, 0x98, 0xbc, 0x84, + 0x1b, 0xc9, 0x3a, 0x8f, 0x58, 0x4c, 0x84, 0x79, 0x39, 0x4e, 0x0d, 0x5a, 0xd5, 0x52, 0xb0, 0x29, + 0xa1, 0x50, 0x82, 0xba, 0x33, 0x19, 0x74, 0x8f, 0xf6, 0xcc, 0x3a, 0x97, 0x9c, 0x18, 0x41, 0x1f, + 0xa1, 0xb4, 0x81, 0x81, 0x29, 0xa1, 0x68, 0xdf, 0x50, 0xe0, 0x4c, 0x56, 0x3b, 0xc8, 0x05, 0x28, + 0x0c, 0x32, 0xf3, 0x32, 0x0e, 0x98, 0x2b, 0x77, 0x89, 0xfe, 0xb5, 0x0f, 0xfc, 0xd1, 0xb1, 0x33, + 0x96, 0x8d, 0x95, 0x25, 0xb0, 0x09, 0xf4, 0xc7, 0x0e, 0xfe, 0x4f, 0x2e, 0x89, 0x23, 0x27, 0x9f, + 0xca, 0xe4, 0x88, 0x7f, 0x34, 0x1d, 0xa0, 0xd6, 0x6b, 0xb7, 0x86, 0x2c, 0x1d, 0xc0, 0xcb, 0x50, + 0xa0, 0xd5, 0x4a, 0xcc, 0x5e, 0x3a, 0x7f, 0xf4, 0x46, 0x9d, 0x23, 0xb1, 0x5a, 0x05, 0xce, 0x71, + 0xdf, 0x44, 0x64, 0xed, 0x2e, 0xac, 0xc4, 0x31, 0x88, 0x11, 0x8f, 0x08, 0x5b, 0xba, 0xa5, 0x72, + 0x4e, 0x5b, 0xbe, 0xcf, 0x1c, 0x66, 0xb6, 0x9e, 0xfa, 0xd1, 0xbb, 0x97, 0x80, 0xfe, 0x64, 0x34, + 0x59, 0x11, 0x63, 0xb5, 0x6f, 0xe6, 0xe0, 0x4c, 0xe4, 0xa3, 0x2f, 0xd6, 0xd0, 0xcf, 0xad, 0xc3, + 0xa8, 0x1e, 0x73, 0x68, 0x14, 0x72, 0x63, 0xba, 0x81, 0x33, 0xfc, 0xa8, 0x76, 0x61, 0x63, 0x1a, + 0x3e, 0x79, 0x0e, 0x16, 0x31, 0xac, 0xd3, 0xd0, 0xe9, 0xba, 0xf2, 0x36, 0x3b, 0x10, 0x40, 0x33, + 0x2a, 0xd7, 0x7e, 0xa0, 0xc0, 0x26, 0x77, 0xf3, 0x68, 0x38, 0xde, 0x00, 0x5f, 0x09, 0xba, 0xee, + 0x07, 0xe3, 0xf0, 0xbc, 0x1b, 0xdb, 0xc7, 0xae, 0xc6, 0xbd, 0x79, 0x52, 0x5f, 0x9b, 0xde, 0x5a, + 0x72, 0x03, 0x43, 0x95, 0xf1, 0x57, 0xf4, 0x02, 0x0b, 0x30, 0x31, 0xa0, 0x00, 0x39, 0xc0, 0x04, + 0x62, 0x68, 0xbf, 0x02, 0x17, 0x67, 0x7f, 0x80, 0x7c, 0x0e, 0x96, 0x31, 0xf7, 0xd6, 0xde, 0xf0, + 0x70, 0xe4, 0xf4, 0x5c, 0xa1, 0xd9, 0x13, 0xda, 0x58, 0xb9, 0x8c, 0x45, 0x5e, 0xe3, 0x01, 0x0f, + 0x0e, 0x31, 0xab, 0x17, 0x27, 0x8a, 0xf9, 0x52, 0xc9, 0xdc, 0xb4, 0xaf, 0x2a, 0x40, 0xd2, 0x3c, + 0xc8, 0x47, 0x60, 0x69, 0xaf, 0x53, 0xb1, 0xc6, 0xce, 0x68, 0x5c, 0xf5, 0x27, 0x23, 0x1e, 0xf6, + 0x8c, 0xf9, 0xbf, 0x8f, 0xbb, 0x36, 0x7b, 0x0f, 0x3a, 0xf2, 0x27, 0x23, 0x33, 0x86, 0x87, 0x39, + 0x9e, 0x5c, 0xf7, 0xad, 0x9e, 0xf3, 0x28, 0x9e, 0xe3, 0x89, 0xc3, 0x62, 0x39, 0x9e, 0x38, 0x4c, + 0xfb, 0xb6, 0x02, 0xe7, 0x85, 0x71, 0x64, 0x2f, 0xa3, 0x2e, 0x15, 0x8c, 0xf2, 0x32, 0x12, 0x71, + 0x76, 0x67, 0x49, 0xe8, 0x6b, 0x22, 0x10, 0x12, 0x56, 0x10, 0x45, 0x75, 0x46, 0x4b, 0x3e, 0x09, + 0x05, 0x6b, 0xec, 0x0f, 0x4f, 0x10, 0x09, 0x49, 0x0d, 0x47, 0x74, 0xec, 0x0f, 0x91, 0x05, 0x52, + 0x6a, 0x2e, 0x9c, 0x91, 0x2b, 0x27, 0x6a, 0x4c, 0x1a, 0xb0, 0xc0, 0x43, 0xde, 0x25, 0xec, 0x0e, + 0x66, 0xb4, 0x69, 0x6b, 0x55, 0x84, 0x5b, 0xe2, 0x71, 0x5e, 0x4d, 0xc1, 0x43, 0xfb, 0x2d, 0x05, + 0x4a, 0x54, 0xb0, 0xc1, 0x4b, 0xe9, 0xfb, 0x9d, 0xd2, 0x71, 0x39, 0x58, 0x98, 0xd1, 0x84, 0xec, + 0x4f, 0x74, 0x1a, 0xbf, 0x02, 0xab, 0x09, 0x02, 0xa2, 0x61, 0xa0, 0x8d, 0xbe, 0xd7, 0x75, 0x58, + 0xca, 0x18, 0x66, 0x82, 0x12, 0x83, 0x69, 0xbf, 0xa6, 0xc0, 0x99, 0xd6, 0x5b, 0x63, 0x87, 0x3d, + 0xdb, 0x9a, 0x93, 0xbe, 0x58, 0xef, 0x54, 0x58, 0x13, 0x56, 0xb6, 0x2c, 0x08, 0x00, 0x13, 0xd6, + 0x38, 0xcc, 0x0c, 0x4b, 0x49, 0x15, 0x8a, 0xfc, 0x7c, 0x09, 0x78, 0x78, 0xd6, 0x8b, 0x92, 0x6e, + 0x24, 0x62, 0xcc, 0x91, 0x68, 0x4b, 0x70, 0x0b, 0xe3, 0x34, 0x66, 0x48, 0xad, 0xfd, 0xa7, 0x02, + 0xeb, 0x53, 0x68, 0xc8, 0x1b, 0x30, 0x87, 0x0e, 0x8a, 0x7c, 0xf4, 0x2e, 0x4c, 0xf9, 0xc4, 0xb8, + 0x7b, 0xb4, 0x7f, 0x93, 0x1d, 0x44, 0xc7, 0xf4, 0x87, 0xc9, 0xa8, 0xc8, 0x7d, 0x58, 0xd4, 0x7b, + 0x3d, 0x7e, 0x3b, 0xcb, 0xc5, 0x6e, 0x67, 0x53, 0xbe, 0xf8, 0x62, 0x88, 0xcf, 0x6e, 0x67, 0xcc, + 0x55, 0xa6, 0xd7, 0xb3, 0xb9, 0xf3, 0x65, 0xc4, 0x6f, 0xf3, 0xe3, 0xb0, 0x12, 0x47, 0x7e, 0x22, + 0x7f, 0xb1, 0x77, 0x14, 0x50, 0xe3, 0x75, 0xf8, 0xd9, 0x04, 0x8a, 0xca, 0x1a, 0xe6, 0xc7, 0x4c, + 0xaa, 0xdf, 0xc9, 0xc1, 0xd9, 0xcc, 0x1e, 0x26, 0x2f, 0xc0, 0xbc, 0x3e, 0x1c, 0xd6, 0xb6, 0xf9, + 0xac, 0xe2, 0x12, 0x12, 0x2a, 0xbd, 0x63, 0x97, 0x57, 0x86, 0x44, 0x5e, 0x86, 0x22, 0xb3, 0x0e, + 0xd8, 0x16, 0x1b, 0x0e, 0x46, 0xbe, 0xe1, 0xa6, 0x0b, 0xf1, 0x40, 0xa9, 0x02, 0x91, 0xec, 0xc0, + 0x0a, 0x8f, 0x19, 0x63, 0xba, 0x87, 0xee, 0x97, 0xc3, 0x88, 0xfd, 0x98, 0x54, 0x40, 0x68, 0xd2, + 0xed, 0x11, 0x2b, 0x93, 0xa3, 0xa6, 0xc4, 0xa9, 0x48, 0x1d, 0x54, 0xe4, 0x29, 0x73, 0x62, 0xd1, + 0x5a, 0x31, 0x8a, 0x0f, 0xab, 0xc4, 0x14, 0x5e, 0x29, 0xca, 0x70, 0xb8, 0xf4, 0x20, 0xf0, 0x0e, + 0x07, 0xc7, 0xee, 0x60, 0xfc, 0xb3, 0x1b, 0xae, 0xe8, 0x1b, 0x27, 0x1a, 0xae, 0xdf, 0x2f, 0xb0, + 0xc5, 0x9c, 0x24, 0xa3, 0x12, 0x8d, 0x14, 0xa0, 0x1b, 0x25, 0x1a, 0x7a, 0x3f, 0xe3, 0x51, 0x51, + 0xb6, 0x61, 0x81, 0x45, 0xab, 0x11, 0x2b, 0xe3, 0xe9, 0xcc, 0x2a, 0x30, 0x9c, 0xfd, 0x9b, 0x4c, + 0x7c, 0x61, 0x9e, 0x92, 0x81, 0x29, 0x48, 0xc9, 0x3e, 0x94, 0x2a, 0x7d, 0xd7, 0x19, 0x4c, 0x86, + 0x9d, 0x93, 0xbd, 0xa0, 0x6e, 0xf0, 0xb6, 0x2c, 0x75, 0x19, 0x19, 0xbe, 0xbc, 0xe2, 0x4e, 0x2e, + 0x33, 0x22, 0x9d, 0xd0, 0x79, 0xaa, 0x80, 0x8a, 0xd7, 0x97, 0x66, 0xf4, 0x4f, 0x12, 0x88, 0x74, + 0x71, 0xcf, 0x40, 0xee, 0x5d, 0x65, 0xc3, 0x4a, 0xdd, 0x09, 0xc6, 0x9d, 0x91, 0x33, 0x08, 0x30, + 0xca, 0xe5, 0x09, 0xa2, 0x80, 0x9d, 0x17, 0x19, 0x9c, 0x51, 0x65, 0x3a, 0x0e, 0x49, 0x99, 0x42, + 0x36, 0xce, 0x8e, 0xca, 0x4b, 0x3b, 0xde, 0xc0, 0xe9, 0x7b, 0x5f, 0x11, 0x3e, 0xa6, 0x4c, 0x5e, + 0x3a, 0x10, 0x40, 0x33, 0x2a, 0xd7, 0x3e, 0x9b, 0x1a, 0x37, 0x56, 0xcb, 0x12, 0x2c, 0xf0, 0x08, + 0x04, 0xcc, 0x23, 0xbf, 0x6d, 0x34, 0xb7, 0x6b, 0xcd, 0x5d, 0x55, 0x21, 0x2b, 0x00, 0x6d, 0xb3, + 0x55, 0x31, 0x2c, 0x8b, 0xfe, 0xce, 0xd1, 0xdf, 0xdc, 0x5d, 0x7f, 0x67, 0xaf, 0xae, 0xe6, 0x25, + 0x8f, 0xfd, 0x82, 0xf6, 0x7d, 0x05, 0xce, 0x65, 0x0f, 0x25, 0xe9, 0x00, 0xc6, 0x6c, 0xe0, 0x6f, + 0xe9, 0x1f, 0x99, 0x39, 0xee, 0x99, 0xe0, 0x64, 0xec, 0x87, 0x31, 0x8b, 0x29, 0x90, 0x13, 0x6f, + 0x5f, 0xcc, 0x49, 0xd1, 0xeb, 0x99, 0x39, 0xaf, 0xa7, 0x55, 0x60, 0x63, 0x1a, 0x8f, 0x78, 0x53, + 0x57, 0xa1, 0xa4, 0xb7, 0xdb, 0xf5, 0x5a, 0x45, 0xef, 0xd4, 0x5a, 0x4d, 0x55, 0x21, 0x8b, 0x30, + 0xb7, 0x6b, 0xb6, 0xf6, 0xda, 0x6a, 0x4e, 0xfb, 0x7b, 0x05, 0x96, 0x6b, 0x91, 0xd5, 0xd9, 0xfb, + 0x5d, 0x7c, 0x1f, 0x8d, 0x2d, 0xbe, 0x8d, 0x30, 0xba, 0x49, 0xf8, 0x81, 0x19, 0x12, 0xe4, 0x56, + 0xe8, 0x82, 0x9a, 0x8f, 0x3d, 0xa4, 0xcb, 0xd4, 0xc2, 0xb9, 0x2f, 0x4c, 0x32, 0x10, 0x77, 0x51, + 0x95, 0x56, 0xef, 0xdf, 0xe6, 0xe0, 0x74, 0x06, 0x25, 0xf9, 0x32, 0x5c, 0x6c, 0xbb, 0x83, 0x9e, + 0x37, 0x38, 0xa4, 0xab, 0xb5, 0xe3, 0x04, 0x6f, 0x05, 0x4d, 0x7f, 0xec, 0x1d, 0xf0, 0x33, 0x3c, + 0xf4, 0x26, 0x7e, 0xe9, 0xc7, 0xef, 0x5e, 0x7a, 0x7e, 0xc8, 0x30, 0x99, 0xa9, 0xfd, 0x98, 0xe2, + 0xda, 0x03, 0x09, 0x39, 0xee, 0x67, 0xfc, 0x18, 0xbe, 0xe4, 0xcf, 0x14, 0x78, 0x76, 0x16, 0x8a, + 0x9c, 0x3b, 0x68, 0xf6, 0xd2, 0x79, 0x83, 0xbf, 0x36, 0xdc, 0x7c, 0x5c, 0xfd, 0xb2, 0xbd, 0x91, + 0x4f, 0x52, 0x0b, 0xed, 0xbd, 0x1c, 0xac, 0xa5, 0xc6, 0x8d, 0x58, 0xb0, 0xa0, 0xdf, 0xb5, 0x5a, + 0xb5, 0xed, 0x0a, 0x9f, 0x1d, 0x97, 0x22, 0x93, 0x35, 0xcc, 0x39, 0x96, 0x1a, 0x69, 0xe6, 0x95, + 0xfd, 0x30, 0xb0, 0x7d, 0xaf, 0x27, 0x25, 0x20, 0xae, 0x9e, 0x32, 0x05, 0x27, 0x94, 0x26, 0xbe, + 0x32, 0x19, 0xb9, 0xc8, 0x36, 0x17, 0xd3, 0xad, 0x87, 0xf0, 0x34, 0x63, 0xf4, 0xa1, 0x71, 0x68, + 0x79, 0x9a, 0x75, 0xc4, 0x8f, 0x34, 0x61, 0x7e, 0xd7, 0x1b, 0x57, 0x27, 0x0f, 0xf8, 0xac, 0xba, + 0x18, 0x65, 0xa0, 0xaa, 0x4e, 0x1e, 0xa4, 0xd9, 0xa2, 0xda, 0x98, 0x45, 0x50, 0x8a, 0xb1, 0xe4, + 0x5c, 0x92, 0x8e, 0xa4, 0x85, 0x27, 0x72, 0x24, 0xdd, 0x5a, 0x86, 0x12, 0xbf, 0xc7, 0xe2, 0x15, + 0xf1, 0xbb, 0x0a, 0x6c, 0x4c, 0xeb, 0x39, 0x7a, 0x35, 0x8e, 0x07, 0x8c, 0x38, 0x17, 0xa6, 0x28, + 0x89, 0x47, 0x8a, 0x10, 0x68, 0xe4, 0x4d, 0x28, 0xd5, 0x82, 0x60, 0xe2, 0x8e, 0xac, 0x97, 0xf7, + 0xcc, 0x1a, 0xdf, 0x32, 0x9e, 0xfe, 0xf1, 0xbb, 0x97, 0xd6, 0xd1, 0xef, 0x66, 0x64, 0x07, 0x2f, + 0xdb, 0x93, 0x91, 0x17, 0x4b, 0xe7, 0x20, 0x53, 0xd0, 0x9b, 0x8c, 0x33, 0xe9, 0x79, 0xae, 0xb8, + 0xc7, 0x09, 0xa7, 0x7a, 0x0e, 0x93, 0xe5, 0x0a, 0x01, 0xd3, 0xbe, 0xae, 0xc0, 0xe6, 0xf4, 0x61, + 0xa2, 0xb2, 0x4a, 0x87, 0x99, 0xb5, 0x89, 0x95, 0x85, 0xb2, 0x4a, 0x68, 0xfb, 0x26, 0xf3, 0x14, + 0x88, 0x94, 0x88, 0x6b, 0x19, 0x85, 0xa2, 0x4a, 0xce, 0x49, 0x1e, 0x27, 0x12, 0x88, 0xda, 0x3d, + 0x58, 0x9f, 0x32, 0xa8, 0xe4, 0x13, 0x99, 0x89, 0x8f, 0xd0, 0x55, 0x4c, 0x4e, 0x7c, 0x14, 0xcb, + 0xa0, 0x27, 0xc1, 0xb5, 0x7f, 0xcf, 0xc1, 0x39, 0xba, 0xc3, 0xf5, 0xdd, 0x20, 0xd0, 0xa3, 0x1c, + 0xc1, 0xf4, 0x64, 0x7a, 0x15, 0xe6, 0x8f, 0x9e, 0x4c, 0x5d, 0xcf, 0xd0, 0x09, 0x01, 0x94, 0x1a, + 0x84, 0x83, 0x12, 0xfd, 0x9f, 0x5c, 0x06, 0x39, 0xc1, 0x7c, 0x1e, 0x43, 0xcc, 0xe6, 0x36, 0x14, + 0x73, 0x71, 0x18, 0xe6, 0x82, 0x7e, 0x0d, 0xe6, 0x50, 0xa7, 0xc5, 0xcf, 0x6f, 0x71, 0xef, 0xca, + 0xae, 0x1d, 0x6a, 0xbc, 0x4c, 0x46, 0x40, 0x3e, 0x0c, 0x10, 0x65, 0xe7, 0xe0, 0x07, 0xb4, 0xd0, + 0xf5, 0x84, 0x09, 0x3a, 0xcc, 0xc5, 0xe3, 0x03, 0x87, 0xa7, 0xbc, 0x28, 0xc3, 0x9a, 0xe8, 0xf1, + 0xa1, 0x88, 0x4c, 0xc9, 0x5f, 0x92, 0x57, 0x59, 0x41, 0x6d, 0x28, 0xa2, 0x53, 0x5e, 0x49, 0x25, + 0xc9, 0xc6, 0x00, 0xd5, 0x89, 0x4c, 0xd8, 0x57, 0x52, 0x99, 0xb0, 0x8b, 0x0c, 0x4b, 0x4e, 0x77, + 0xad, 0xfd, 0x4b, 0x0e, 0x16, 0xef, 0x52, 0xc9, 0x18, 0xf5, 0x3d, 0xb3, 0xf5, 0x47, 0xb7, 0xa0, + 0x54, 0xf7, 0x1d, 0xfe, 0x64, 0xc7, 0xfd, 0x7a, 0x98, 0x5f, 0x7d, 0xdf, 0x77, 0xc4, 0xeb, 0x5f, + 0x60, 0xca, 0x48, 0x8f, 0x89, 0x09, 0x70, 0x1b, 0xe6, 0xd9, 0x13, 0x2a, 0x57, 0x65, 0x8a, 0xbb, + 0x51, 0x58, 0xa3, 0x17, 0x59, 0xb1, 0xf4, 0xca, 0xc4, 0x9e, 0x61, 0x65, 0x41, 0x9d, 0xc7, 0xd9, + 0x95, 0xb4, 0x5b, 0x73, 0x27, 0xd3, 0x6e, 0x49, 0xf1, 0x04, 0xe7, 0x4f, 0x12, 0x4f, 0x70, 0xf3, + 0x75, 0x28, 0x49, 0xf5, 0x79, 0xa2, 0xab, 0xd2, 0xd7, 0x72, 0xb0, 0x8c, 0xad, 0x0a, 0x0f, 0xc7, + 0x9f, 0x4f, 0x5d, 0xdd, 0x47, 0x63, 0xba, 0xba, 0x0d, 0x79, 0xbc, 0x58, 0xcb, 0x66, 0x28, 0xe9, + 0x6e, 0xc3, 0x5a, 0x0a, 0x91, 0xbc, 0x02, 0x73, 0xb4, 0xfa, 0x42, 0xb7, 0xa1, 0x26, 0x67, 0x40, + 0x14, 0x7b, 0x9a, 0x36, 0x3c, 0x30, 0x19, 0xb6, 0xf6, 0x5f, 0x0a, 0x2c, 0xf1, 0xd4, 0x2f, 0x83, + 0x03, 0xff, 0xb1, 0xdd, 0x79, 0x2d, 0xd9, 0x9d, 0x2c, 0xc2, 0x0d, 0xef, 0xce, 0xff, 0xed, 0x4e, + 0x7c, 0x3d, 0xd6, 0x89, 0xeb, 0x61, 0x24, 0x4a, 0xd1, 0x9c, 0x19, 0x7d, 0xf8, 0x1d, 0x8c, 0xcd, + 0x1c, 0x47, 0x24, 0x9f, 0x87, 0xc5, 0xa6, 0xfb, 0x30, 0xa6, 0x22, 0xb8, 0x36, 0x85, 0xe9, 0x8b, + 0x21, 0x22, 0x5b, 0x53, 0x78, 0xb2, 0x0f, 0xdc, 0x87, 0x76, 0xea, 0xf5, 0x36, 0x62, 0xb9, 0xf9, + 0x71, 0x58, 0x89, 0x93, 0x3d, 0xc9, 0xd4, 0xe7, 0x4e, 0xc6, 0x18, 0xb4, 0xe9, 0x1b, 0x79, 0x80, + 0xc8, 0x3f, 0x93, 0x2e, 0xc0, 0x98, 0xe1, 0x8a, 0x78, 0x5d, 0x41, 0x90, 0x3c, 0xc7, 0x85, 0x3d, + 0xcb, 0x35, 0xfe, 0x0a, 0x90, 0x9b, 0x1e, 0x29, 0x14, 0xdf, 0x03, 0x2a, 0xdc, 0x21, 0xb0, 0xe7, + 0xf6, 0x1d, 0xb6, 0xb7, 0xe7, 0xb7, 0xae, 0x60, 0x60, 0xe8, 0x10, 0x3a, 0x25, 0xe5, 0x37, 0xba, + 0x0d, 0x6e, 0x53, 0x84, 0x94, 0xcf, 0x73, 0xe1, 0xc9, 0x7c, 0x9e, 0xdb, 0xb0, 0xe8, 0x0d, 0xde, + 0x76, 0x07, 0x63, 0x7f, 0xf4, 0x08, 0x9f, 0x3e, 0x22, 0x9d, 0x2a, 0xed, 0x82, 0x9a, 0x28, 0x63, + 0xe3, 0x80, 0x67, 0x6e, 0x88, 0x2f, 0x0f, 0x43, 0x08, 0x0c, 0x7d, 0xb6, 0xe7, 0xd4, 0xf9, 0xdb, + 0x85, 0xe2, 0xbc, 0xba, 0x70, 0xbb, 0x50, 0x2c, 0xaa, 0x8b, 0xb7, 0x0b, 0xc5, 0x45, 0x15, 0x4c, + 0xe9, 0xdd, 0x32, 0x7c, 0x97, 0x94, 0x9e, 0x12, 0xe3, 0xcf, 0x84, 0xda, 0x4f, 0x72, 0x40, 0xd2, + 0xd5, 0x20, 0x1f, 0x85, 0x12, 0xdb, 0x60, 0xed, 0x51, 0xf0, 0x25, 0xee, 0xf2, 0xc1, 0x42, 0x5f, + 0x49, 0x60, 0x39, 0xf4, 0x15, 0x03, 0x9b, 0xc1, 0x97, 0xfa, 0xe4, 0x73, 0x70, 0x1a, 0xbb, 0x77, + 0xe8, 0x8e, 0x3c, 0xbf, 0x67, 0x63, 0x9c, 0x62, 0xa7, 0xcf, 0xd3, 0x73, 0xbe, 0x80, 0x79, 0xa4, + 0xd3, 0xc5, 0x53, 0x86, 0x01, 0xdd, 0x30, 0xdb, 0x88, 0xd9, 0x66, 0x88, 0xa4, 0x03, 0xaa, 0x4c, + 0x7f, 0x30, 0xe9, 0xf7, 0xf9, 0xc8, 0x96, 0x7f, 0xfc, 0xee, 0xa5, 0xcd, 0x64, 0xd9, 0x14, 0xc6, + 0x2b, 0x11, 0xe3, 0x9d, 0x49, 0xbf, 0x4f, 0x5e, 0x05, 0xf0, 0x07, 0xf6, 0xb1, 0x17, 0x04, 0xec, + 0x41, 0x2d, 0xf4, 0x18, 0x8f, 0xa0, 0xf2, 0x60, 0xf8, 0x83, 0x06, 0x03, 0x92, 0x5f, 0x02, 0x8c, + 0x98, 0x81, 0xa1, 0x64, 0x98, 0x45, 0x18, 0xcf, 0xa0, 0x23, 0x80, 0x71, 0x07, 0xf5, 0x43, 0xd7, + 0xf2, 0xbe, 0x22, 0xdc, 0x6d, 0x3e, 0x03, 0x6b, 0xdc, 0x80, 0xfb, 0xae, 0x37, 0x3e, 0xe2, 0xd7, + 0xb9, 0xf7, 0x73, 0x17, 0x94, 0xee, 0x62, 0xff, 0x50, 0x00, 0xd0, 0xef, 0x5a, 0x22, 0x4a, 0xdb, + 0x0d, 0x98, 0xa3, 0x97, 0x54, 0xa1, 0xec, 0xc2, 0xa7, 0x02, 0xe4, 0x2b, 0x3f, 0x15, 0x20, 0x06, + 0x5d, 0x8d, 0x26, 0x3a, 0x36, 0x08, 0x45, 0x17, 0xae, 0x46, 0xe6, 0xeb, 0x10, 0x8b, 0x92, 0xcd, + 0xb1, 0x48, 0x1d, 0x20, 0x8a, 0x9b, 0xc6, 0x45, 0xfe, 0xb5, 0x28, 0x00, 0x11, 0x2f, 0xe0, 0x99, + 0x3a, 0xa2, 0xd8, 0x6b, 0xf2, 0xf4, 0x89, 0xd0, 0xc8, 0x1d, 0x28, 0x74, 0x9c, 0xd0, 0x1f, 0x7a, + 0x4a, 0x34, 0xb9, 0x67, 0x78, 0xfa, 0xd4, 0x28, 0xa2, 0xdc, 0xca, 0xd8, 0x89, 0x65, 0x99, 0x46, + 0x26, 0xc4, 0x80, 0x79, 0x9e, 0x1a, 0x7f, 0x4a, 0x14, 0x52, 0x9e, 0x19, 0x9f, 0xc7, 0x1e, 0x47, + 0xa0, 0x2c, 0x53, 0xf0, 0x24, 0xf8, 0xb7, 0x20, 0x6f, 0x59, 0x0d, 0x1e, 0x43, 0x65, 0x39, 0xba, + 0x7e, 0x59, 0x56, 0x83, 0xbd, 0xbd, 0x07, 0xc1, 0xb1, 0x44, 0x46, 0x91, 0xc9, 0xc7, 0xa0, 0x24, + 0x09, 0xc5, 0x3c, 0xfa, 0x10, 0xf6, 0x81, 0xe4, 0x71, 0x26, 0x6f, 0x1a, 0x12, 0x36, 0xa9, 0x83, + 0x7a, 0x67, 0xf2, 0xc0, 0xd5, 0x87, 0x43, 0x74, 0x45, 0x7d, 0xdb, 0x1d, 0x31, 0xb1, 0xad, 0x18, + 0x85, 0xed, 0x46, 0x3f, 0x95, 0x9e, 0x28, 0x95, 0x15, 0x7e, 0x49, 0x4a, 0xd2, 0x86, 0x35, 0xcb, + 0x1d, 0x4f, 0x86, 0xcc, 0xc6, 0x69, 0xc7, 0x1f, 0xd1, 0xfb, 0x0d, 0x8b, 0x55, 0x84, 0x11, 0x8e, + 0x03, 0x5a, 0x28, 0x0c, 0xcb, 0x0e, 0xfc, 0x51, 0xe2, 0xae, 0x93, 0x26, 0xd6, 0x5c, 0x79, 0xc8, + 0xe9, 0xa9, 0x1a, 0xbf, 0x35, 0xe1, 0xa9, 0x2a, 0x6e, 0x4d, 0xd1, 0x5d, 0xe9, 0xc3, 0x19, 0xf1, + 0xf4, 0xf0, 0x75, 0x56, 0x8a, 0xa7, 0x17, 0x8b, 0xa2, 0xf7, 0xed, 0x82, 0x14, 0xd2, 0x95, 0x8f, + 0xc5, 0x1b, 0x00, 0xb7, 0x7d, 0x6f, 0xd0, 0x70, 0xc7, 0x47, 0x7e, 0x4f, 0x0a, 0xeb, 0x57, 0xfa, + 0xa2, 0xef, 0x0d, 0xec, 0x63, 0x04, 0xff, 0xe4, 0xdd, 0x4b, 0x12, 0x92, 0x29, 0xfd, 0x4f, 0x9e, + 0x87, 0x45, 0xfa, 0xab, 0x13, 0x59, 0x6a, 0x31, 0xbd, 0x38, 0x52, 0xb3, 0xc4, 0x27, 0x11, 0x02, + 0x79, 0x1d, 0x53, 0xfd, 0x78, 0xc3, 0xb1, 0x24, 0xbc, 0x8a, 0xbc, 0x3e, 0xde, 0x70, 0x9c, 0x8c, + 0xd2, 0x2d, 0x21, 0x93, 0x6a, 0x58, 0x75, 0x91, 0x9d, 0x8b, 0x67, 0x14, 0x42, 0xe5, 0x2f, 0x9f, + 0x6b, 0xb6, 0x08, 0x0f, 0x2c, 0xa7, 0x5d, 0x4e, 0x90, 0x61, 0x25, 0xac, 0xea, 0x36, 0x7b, 0xad, + 0xe3, 0x42, 0x2d, 0xab, 0x44, 0x70, 0xd4, 0xb3, 0xbb, 0x08, 0x8e, 0x55, 0x22, 0x44, 0x26, 0x5b, + 0xb0, 0xca, 0x64, 0xfc, 0x30, 0xcb, 0x27, 0x17, 0x71, 0x71, 0x6f, 0x8b, 0xd2, 0x80, 0xca, 0x9f, + 0x4f, 0x10, 0x90, 0x1d, 0x98, 0xc3, 0xbb, 0x26, 0x77, 0xcf, 0x38, 0x2f, 0xab, 0x09, 0x92, 0xeb, + 0x08, 0xf7, 0x15, 0x54, 0x10, 0xc8, 0xfb, 0x0a, 0xa2, 0x92, 0x4f, 0x03, 0x18, 0x83, 0x91, 0xdf, + 0xef, 0x63, 0x00, 0xeb, 0x22, 0x5e, 0xa5, 0x9e, 0x8e, 0xaf, 0x47, 0xe4, 0x12, 0x21, 0xf1, 0x60, + 0x8b, 0xf8, 0xdb, 0x4e, 0x84, 0xb9, 0x96, 0x78, 0x69, 0x35, 0x98, 0x67, 0x8b, 0x11, 0x83, 0xc1, + 0xf3, 0xf4, 0x36, 0x52, 0x28, 0x71, 0x16, 0x0c, 0x9e, 0xc3, 0xd3, 0xc1, 0xe0, 0x25, 0x02, 0xed, + 0x0e, 0x9c, 0xc9, 0x6a, 0x58, 0xec, 0x76, 0xac, 0x9c, 0xf4, 0x76, 0xfc, 0xad, 0x3c, 0x2c, 0x21, + 0x37, 0xb1, 0x0b, 0xeb, 0xb0, 0x6c, 0x4d, 0x1e, 0x84, 0x91, 0xd2, 0xc4, 0x6e, 0x8c, 0xf5, 0x0b, + 0xe4, 0x02, 0xf9, 0x1d, 0x35, 0x46, 0x41, 0x0c, 0x58, 0x11, 0x27, 0xc1, 0xae, 0xf0, 0xde, 0x08, + 0xe3, 0xb0, 0x8b, 0x68, 0x9f, 0xe9, 0x2c, 0xc7, 0x09, 0xa2, 0xe8, 0x3c, 0xc8, 0x3f, 0xc9, 0x79, + 0x50, 0x38, 0xd1, 0x79, 0x70, 0x1f, 0x96, 0xc4, 0xd7, 0x70, 0x27, 0x9f, 0x7b, 0x7f, 0x3b, 0x79, + 0x8c, 0x19, 0xa9, 0x87, 0x3b, 0xfa, 0xfc, 0xcc, 0x1d, 0x1d, 0x1f, 0xa7, 0xc5, 0x2a, 0x1b, 0x22, + 0x2c, 0xbd, 0xb1, 0x63, 0x1a, 0xd0, 0xdd, 0x4a, 0xfb, 0xa7, 0x38, 0x25, 0x5f, 0x81, 0xc5, 0xba, + 0x2f, 0xde, 0x25, 0xa5, 0x07, 0xa1, 0xbe, 0x00, 0xca, 0xe2, 0x42, 0x88, 0x19, 0x9e, 0x6e, 0xf9, + 0x0f, 0xe2, 0x74, 0x7b, 0x1d, 0x80, 0xbb, 0x05, 0x45, 0xe9, 0xfb, 0x70, 0xc9, 0x88, 0x28, 0x31, + 0xf1, 0x77, 0x29, 0x09, 0x99, 0xee, 0x4e, 0xdc, 0xe4, 0x49, 0xef, 0x76, 0xfd, 0xc9, 0x60, 0x1c, + 0xcb, 0x77, 0x2d, 0xbc, 0x88, 0x1d, 0x5e, 0x26, 0x6f, 0x0f, 0x09, 0xb2, 0x0f, 0x76, 0x40, 0xc8, + 0xa7, 0x42, 0x03, 0xd4, 0x85, 0x59, 0x3d, 0xa4, 0xa5, 0x7a, 0x68, 0xaa, 0xd9, 0xa9, 0xf6, 0x7d, + 0x45, 0x4e, 0x82, 0xf1, 0x53, 0x0c, 0xf5, 0x6b, 0x00, 0xa1, 0x61, 0x88, 0x18, 0x6b, 0x76, 0x5f, + 0x0a, 0xa1, 0x72, 0x2f, 0x47, 0xb8, 0x52, 0x6b, 0xf2, 0x1f, 0x54, 0x6b, 0x3a, 0x50, 0x6a, 0xbd, + 0x35, 0x76, 0x22, 0x4b, 0x22, 0xb0, 0x42, 0x49, 0x16, 0x77, 0xa6, 0xfc, 0xd6, 0x55, 0x3c, 0x1b, + 0x22, 0x39, 0x78, 0x8a, 0x08, 0x2c, 0x11, 0x6a, 0x7f, 0xa1, 0xc0, 0xaa, 0x1c, 0xfa, 0xe0, 0xd1, + 0xa0, 0x4b, 0x3e, 0xc1, 0x62, 0xf2, 0x2a, 0xb1, 0x2b, 0x8b, 0x84, 0x44, 0xb7, 0xdc, 0x47, 0x83, + 0x2e, 0x13, 0x80, 0x9c, 0x87, 0x72, 0x65, 0x29, 0x21, 0x79, 0x00, 0x4b, 0x6d, 0xbf, 0xdf, 0xa7, + 0x62, 0xcd, 0xe8, 0x6d, 0x7e, 0x01, 0xa0, 0x8c, 0x92, 0x3a, 0x76, 0x51, 0xa1, 0xad, 0x67, 0xf9, + 0x3d, 0x77, 0x7d, 0x48, 0xf7, 0x7b, 0x8f, 0xd3, 0x45, 0x6c, 0xdf, 0x41, 0x5f, 0x45, 0x99, 0xa7, + 0xf6, 0x43, 0x05, 0x48, 0xba, 0x4a, 0xf2, 0x96, 0xa5, 0xfc, 0x1f, 0x88, 0xb0, 0x09, 0xd1, 0xaf, + 0xf0, 0x24, 0xa2, 0x5f, 0xf9, 0xb7, 0x15, 0x58, 0xad, 0xe9, 0x0d, 0x9e, 0x16, 0x83, 0xbd, 0xa2, + 0x5d, 0x86, 0xa7, 0x6b, 0x7a, 0xc3, 0x6e, 0xb7, 0xea, 0xb5, 0xca, 0x3d, 0x3b, 0x33, 0xda, 0xf5, + 0xd3, 0xf0, 0x54, 0x1a, 0x25, 0x7a, 0x6d, 0xbb, 0x00, 0x1b, 0xe9, 0x62, 0x11, 0x11, 0x3b, 0x9b, + 0x58, 0x04, 0xcf, 0xce, 0x97, 0xdf, 0x84, 0x55, 0x11, 0xfd, 0xb9, 0x53, 0xb7, 0x30, 0xbf, 0xc4, + 0x2a, 0x94, 0xf6, 0x0d, 0xb3, 0xb6, 0x73, 0xcf, 0xde, 0xd9, 0xab, 0xd7, 0xd5, 0x53, 0x64, 0x19, + 0x16, 0x39, 0xa0, 0xa2, 0xab, 0x0a, 0x59, 0x82, 0x62, 0xad, 0x69, 0x19, 0x95, 0x3d, 0xd3, 0x50, + 0x73, 0xe5, 0x37, 0x61, 0xa5, 0x3d, 0xf2, 0xde, 0x76, 0xc6, 0xee, 0x1d, 0xf7, 0x11, 0x3e, 0x96, + 0x2d, 0x40, 0xde, 0xd4, 0xef, 0xaa, 0xa7, 0x08, 0xc0, 0x7c, 0xfb, 0x4e, 0xc5, 0xba, 0x79, 0x53, + 0x55, 0x48, 0x09, 0x16, 0x76, 0x2b, 0x6d, 0xfb, 0x4e, 0xc3, 0x52, 0x73, 0xf4, 0x87, 0x7e, 0xd7, + 0xc2, 0x1f, 0xf9, 0xf2, 0x4b, 0xb0, 0x86, 0x02, 0x49, 0xdd, 0x0b, 0xc6, 0xee, 0xc0, 0x1d, 0x61, + 0x1d, 0x96, 0xa0, 0x68, 0xb9, 0x74, 0x27, 0x19, 0xbb, 0xac, 0x02, 0x8d, 0x49, 0x7f, 0xec, 0x0d, + 0xfb, 0xee, 0x97, 0x55, 0xa5, 0xfc, 0x3a, 0xac, 0x9a, 0xfe, 0x64, 0xec, 0x0d, 0x0e, 0xad, 0x31, + 0xc5, 0x38, 0x7c, 0x44, 0xce, 0xc2, 0xda, 0x5e, 0x53, 0x6f, 0x6c, 0xd5, 0x76, 0xf7, 0x5a, 0x7b, + 0x96, 0xdd, 0xd0, 0x3b, 0x95, 0x2a, 0x7b, 0xaa, 0x6b, 0xb4, 0xac, 0x8e, 0x6d, 0x1a, 0x15, 0xa3, + 0xd9, 0x51, 0x95, 0xf2, 0x37, 0x51, 0xb7, 0xd2, 0xf5, 0x07, 0xbd, 0x1d, 0xa7, 0x3b, 0xf6, 0x47, + 0x58, 0x61, 0x0d, 0x2e, 0x5a, 0x46, 0xa5, 0xd5, 0xdc, 0xb6, 0x77, 0xf4, 0x4a, 0xa7, 0x65, 0x66, + 0x85, 0x5b, 0xdf, 0x84, 0x73, 0x19, 0x38, 0xad, 0x4e, 0x5b, 0x55, 0xc8, 0x25, 0x38, 0x9f, 0x51, + 0x76, 0xd7, 0xd8, 0xd2, 0xf7, 0x3a, 0xd5, 0xa6, 0x9a, 0x9b, 0x42, 0x6c, 0x59, 0x2d, 0x35, 0x5f, + 0xfe, 0x75, 0x05, 0x56, 0xf0, 0xe5, 0x88, 0x0a, 0xa5, 0x7b, 0xe8, 0xf1, 0xfb, 0x0c, 0x5c, 0xd8, + 0xb3, 0x0c, 0xd3, 0xee, 0xb4, 0xee, 0x18, 0x4d, 0x7b, 0xcf, 0xd2, 0x77, 0x93, 0xb5, 0xb9, 0x04, + 0xe7, 0x25, 0x0c, 0xd3, 0xa8, 0xb4, 0xf6, 0x0d, 0xd3, 0x6e, 0xeb, 0x96, 0x75, 0xb7, 0x65, 0x6e, + 0xab, 0x0a, 0xfd, 0x62, 0x06, 0x42, 0x63, 0x47, 0x67, 0xb5, 0x89, 0x95, 0x35, 0x8d, 0xbb, 0x7a, + 0xdd, 0xde, 0x6a, 0x75, 0xd4, 0x7c, 0xb9, 0x41, 0xcf, 0x77, 0x0c, 0x7a, 0xcc, 0xac, 0x3b, 0x8b, + 0x50, 0x68, 0xb6, 0x9a, 0x46, 0xf2, 0x81, 0x77, 0x09, 0x8a, 0x7a, 0xbb, 0x6d, 0xb6, 0xf6, 0x71, + 0x8a, 0x01, 0xcc, 0x6f, 0x1b, 0x4d, 0x5a, 0xb3, 0x3c, 0x2d, 0x69, 0x9b, 0xad, 0x46, 0xab, 0x63, + 0x6c, 0xab, 0x85, 0xb2, 0x29, 0x96, 0xb0, 0x60, 0xda, 0xf5, 0xd9, 0x6b, 0xea, 0xb6, 0xb1, 0xa3, + 0xef, 0xd5, 0x3b, 0x7c, 0x88, 0xee, 0xd9, 0xa6, 0xf1, 0xa9, 0x3d, 0xc3, 0xea, 0x58, 0xaa, 0x42, + 0x54, 0x58, 0x6a, 0x1a, 0xc6, 0xb6, 0x65, 0x9b, 0xc6, 0x7e, 0xcd, 0xb8, 0xab, 0xe6, 0x28, 0x4f, + 0xf6, 0x3f, 0xfd, 0x42, 0xf9, 0xdb, 0x0a, 0x10, 0x16, 0x30, 0x5a, 0x64, 0x21, 0xc2, 0x19, 0x73, + 0x11, 0x36, 0xab, 0x74, 0xa8, 0xb1, 0x69, 0x8d, 0xd6, 0x76, 0xb2, 0xcb, 0xce, 0x01, 0x49, 0x94, + 0xb7, 0x76, 0x76, 0x54, 0x85, 0x9c, 0x87, 0xd3, 0x09, 0xf8, 0xb6, 0xd9, 0x6a, 0xab, 0xb9, 0xcd, + 0x5c, 0x51, 0x21, 0xeb, 0xa9, 0xc2, 0x3b, 0x86, 0xd1, 0x56, 0xf3, 0x74, 0x88, 0x12, 0x05, 0x62, + 0x49, 0x30, 0xf2, 0x42, 0xf9, 0xeb, 0x0a, 0x9c, 0x63, 0xd5, 0x14, 0xeb, 0x2b, 0xac, 0xea, 0x05, + 0xd8, 0xe0, 0x61, 0xf0, 0xb3, 0x2a, 0x7a, 0x06, 0xd4, 0x58, 0x29, 0xab, 0xe6, 0x59, 0x58, 0x8b, + 0x41, 0xb1, 0x1e, 0x39, 0xba, 0x7b, 0xc4, 0xc0, 0x5b, 0x86, 0xd5, 0xb1, 0x8d, 0x9d, 0x9d, 0x96, + 0xd9, 0x61, 0x15, 0xc9, 0x97, 0x35, 0x58, 0xab, 0xb8, 0xa3, 0x31, 0xbd, 0x7a, 0x0d, 0x02, 0xcf, + 0x1f, 0x60, 0x15, 0x96, 0x61, 0xd1, 0xf8, 0x74, 0xc7, 0x68, 0x5a, 0xb5, 0x56, 0x53, 0x3d, 0x55, + 0xbe, 0x90, 0xc0, 0x11, 0xeb, 0xd8, 0xb2, 0xaa, 0xea, 0xa9, 0xb2, 0x03, 0xcb, 0xc2, 0xf8, 0x9d, + 0xcd, 0x8a, 0x8b, 0xb0, 0x29, 0xe6, 0x1a, 0xee, 0x28, 0xc9, 0x26, 0x6c, 0xc0, 0x99, 0x74, 0xb9, + 0xd1, 0x51, 0x15, 0x3a, 0x0a, 0x89, 0x12, 0x0a, 0xcf, 0x95, 0x7f, 0x55, 0x81, 0xe5, 0xf0, 0xd1, + 0x04, 0xd5, 0xb4, 0x97, 0xe0, 0x7c, 0x63, 0x47, 0xb7, 0xb7, 0x8d, 0xfd, 0x5a, 0xc5, 0xb0, 0xef, + 0xd4, 0x9a, 0xdb, 0x89, 0x8f, 0x3c, 0x05, 0x67, 0x33, 0x10, 0xf0, 0x2b, 0x1b, 0x70, 0x26, 0x59, + 0xd4, 0xa1, 0x4b, 0x35, 0x47, 0xbb, 0x3e, 0x59, 0x12, 0xae, 0xd3, 0x7c, 0x79, 0x1f, 0x56, 0x2c, + 0xbd, 0x51, 0xdf, 0xf1, 0x47, 0x5d, 0x57, 0x9f, 0x8c, 0x8f, 0x06, 0xe4, 0x3c, 0xac, 0xef, 0xb4, + 0xcc, 0x8a, 0x61, 0x23, 0x4a, 0xa2, 0x06, 0xa7, 0x61, 0x55, 0x2e, 0xbc, 0x67, 0xd0, 0xe9, 0x4b, + 0x60, 0x45, 0x06, 0x36, 0x5b, 0x6a, 0xae, 0xfc, 0x59, 0x58, 0x8a, 0x25, 0x23, 0x5c, 0x87, 0xd3, + 0xf2, 0x6f, 0xfe, 0x7e, 0xac, 0x9e, 0x4a, 0x16, 0x98, 0x93, 0xc1, 0x80, 0x16, 0xe0, 0x7a, 0x96, + 0x0b, 0x3a, 0xee, 0xe8, 0xd8, 0x1b, 0x38, 0x63, 0xb7, 0xa7, 0xe6, 0xca, 0x2f, 0xc2, 0x72, 0x2c, + 0x04, 0x3a, 0x1d, 0xb8, 0x7a, 0x8b, 0x6f, 0xc0, 0x0d, 0x63, 0xbb, 0xb6, 0xd7, 0x50, 0xe7, 0xe8, + 0x4a, 0xae, 0xd6, 0x76, 0xab, 0x2a, 0x94, 0x7f, 0x57, 0xa1, 0xf7, 0x0c, 0x4c, 0x6c, 0xd4, 0xd8, + 0xd1, 0xc5, 0x50, 0xd3, 0x69, 0xc6, 0x12, 0x2b, 0x18, 0x96, 0xc5, 0xec, 0x1a, 0x2e, 0xc0, 0x06, + 0xff, 0x61, 0xeb, 0xcd, 0x6d, 0xbb, 0xaa, 0x9b, 0xdb, 0x77, 0x75, 0x93, 0xce, 0xbd, 0x7b, 0x6a, + 0x0e, 0x17, 0x94, 0x04, 0xb1, 0x3b, 0xad, 0xbd, 0x4a, 0x55, 0xcd, 0xd3, 0xf9, 0x1b, 0x83, 0xb7, + 0x6b, 0x4d, 0xb5, 0x80, 0xcb, 0x33, 0x85, 0x8d, 0x6c, 0x69, 0xf9, 0x5c, 0xf9, 0x3d, 0x05, 0xd6, + 0x2d, 0xef, 0x70, 0xe0, 0x8c, 0x27, 0x23, 0x57, 0xef, 0x1f, 0xfa, 0x23, 0x6f, 0x7c, 0x74, 0x6c, + 0x4d, 0xbc, 0xb1, 0x4b, 0x6e, 0xc0, 0x55, 0xab, 0xb6, 0xdb, 0xd4, 0x3b, 0x74, 0x79, 0xe9, 0xf5, + 0xdd, 0x96, 0x59, 0xeb, 0x54, 0x1b, 0xb6, 0xb5, 0x57, 0x4b, 0xcd, 0xbc, 0x2b, 0xf0, 0xcc, 0x74, + 0xd4, 0xba, 0xb1, 0xab, 0x57, 0xee, 0xa9, 0xca, 0x6c, 0x86, 0x5b, 0x7a, 0x5d, 0x6f, 0x56, 0x8c, + 0x6d, 0x7b, 0xff, 0xa6, 0x9a, 0x23, 0x57, 0xe1, 0xf2, 0x74, 0xd4, 0x9d, 0x5a, 0xdb, 0xa2, 0x68, + 0xf9, 0xd9, 0xdf, 0xad, 0x5a, 0x0d, 0x8a, 0x55, 0x28, 0xff, 0x91, 0x02, 0x1b, 0xd3, 0xe2, 0x60, + 0x91, 0x6b, 0xa0, 0x19, 0xcd, 0x8e, 0xa9, 0xd7, 0xb6, 0xed, 0x8a, 0x69, 0x6c, 0x1b, 0xcd, 0x4e, + 0x4d, 0xaf, 0x5b, 0xb6, 0xd5, 0xda, 0xa3, 0xb3, 0x29, 0x32, 0x3f, 0x79, 0x16, 0x2e, 0xcd, 0xc0, + 0x6b, 0xd5, 0xb6, 0x2b, 0xaa, 0x42, 0x6e, 0xc2, 0x0b, 0x33, 0x90, 0xac, 0x7b, 0x56, 0xc7, 0x68, + 0xc8, 0x25, 0x6a, 0xae, 0x5c, 0x81, 0xcd, 0xe9, 0x81, 0x72, 0xe8, 0x36, 0x1d, 0xef, 0xe9, 0x22, + 0x14, 0xb6, 0xe9, 0xc9, 0x10, 0xcb, 0xbf, 0x51, 0xf6, 0x40, 0x4d, 0xc6, 0xba, 0x48, 0xd9, 0x09, + 0x99, 0x7b, 0xcd, 0x26, 0x3b, 0x46, 0x56, 0xa1, 0xd4, 0xea, 0x54, 0x0d, 0x93, 0x67, 0x30, 0xc1, + 0x94, 0x25, 0x7b, 0x4d, 0xba, 0x70, 0x5a, 0x66, 0xed, 0x33, 0x78, 0x9e, 0x6c, 0xc0, 0x19, 0xab, + 0xae, 0x57, 0xee, 0xd8, 0xcd, 0x56, 0xc7, 0xae, 0x35, 0xed, 0x4a, 0x55, 0x6f, 0x36, 0x8d, 0xba, + 0x0a, 0xd8, 0x99, 0xd3, 0xfc, 0x5b, 0xc9, 0xf3, 0x70, 0xbd, 0x75, 0xa7, 0xa3, 0xdb, 0xed, 0xfa, + 0xde, 0x6e, 0xad, 0x69, 0x5b, 0xf7, 0x9a, 0x15, 0x21, 0xfb, 0x54, 0xd2, 0x5b, 0xee, 0x75, 0xb8, + 0x32, 0x13, 0x3b, 0xca, 0x35, 0x72, 0x0d, 0xb4, 0x99, 0x98, 0xbc, 0x21, 0xe5, 0x1f, 0x28, 0x70, + 0x7e, 0xc6, 0x1b, 0x32, 0x79, 0x01, 0x6e, 0x54, 0x0d, 0x7d, 0xbb, 0x6e, 0x58, 0x16, 0x6e, 0x14, + 0x74, 0x18, 0x98, 0x3d, 0x51, 0xe6, 0x86, 0x7a, 0x03, 0xae, 0xce, 0x46, 0x8f, 0x8e, 0xe6, 0xeb, + 0x70, 0x65, 0x36, 0x2a, 0x3f, 0xaa, 0x73, 0xa4, 0x0c, 0xd7, 0x66, 0x63, 0x86, 0x47, 0x7c, 0xbe, + 0xfc, 0x9b, 0x0a, 0x9c, 0xcb, 0x56, 0xe4, 0xd0, 0xba, 0xd5, 0x9a, 0x56, 0x47, 0xaf, 0xd7, 0xed, + 0xb6, 0x6e, 0xea, 0x0d, 0xdb, 0x68, 0x9a, 0xad, 0x7a, 0x3d, 0xeb, 0x68, 0xbb, 0x02, 0xcf, 0x4c, + 0x47, 0xb5, 0x2a, 0x66, 0xad, 0x4d, 0x77, 0x6f, 0x0d, 0x2e, 0x4e, 0xc7, 0x32, 0x6a, 0x15, 0x43, + 0xcd, 0x6d, 0xbd, 0xf1, 0xbd, 0x7f, 0xbe, 0x78, 0xea, 0x7b, 0xef, 0x5d, 0x54, 0x7e, 0xf8, 0xde, + 0x45, 0xe5, 0x9f, 0xde, 0xbb, 0xa8, 0x7c, 0xe6, 0xb9, 0x93, 0xa5, 0xe9, 0x42, 0xb9, 0xff, 0xc1, + 0x3c, 0xde, 0x50, 0x5e, 0xfe, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x46, 0x06, 0xb6, 0x59, 0xb2, + 0xc0, 0x01, 0x00, } func (this *PluginSpecV1) Equal(that interface{}) bool { @@ -48943,6 +48998,16 @@ func (m *IntegrationV1) MarshalToSizedBuffer(dAtA []byte) (int, error) { i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } + { + size, err := m.Status.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1a { size, err := m.Spec.MarshalToSizedBuffer(dAtA[:i]) if err != nil { @@ -48966,6 +49031,50 @@ func (m *IntegrationV1) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *IntegrationStatusV1) 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 *IntegrationStatusV1) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *IntegrationStatusV1) 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.PendingUserTasksNotificationExpires != nil { + n411, err411 := github_com_gogo_protobuf_types.StdTimeMarshalTo(*m.PendingUserTasksNotificationExpires, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(*m.PendingUserTasksNotificationExpires):]) + if err411 != nil { + return 0, err411 + } + i -= n411 + i = encodeVarintTypes(dAtA, i, uint64(n411)) + i-- + dAtA[i] = 0x12 + } + if len(m.PendingUserTasksNotificationID) > 0 { + i -= len(m.PendingUserTasksNotificationID) + copy(dAtA[i:], m.PendingUserTasksNotificationID) + i = encodeVarintTypes(dAtA, i, uint64(len(m.PendingUserTasksNotificationID))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + func (m *IntegrationSpecV1) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -50363,12 +50472,12 @@ func (m *AccessGraphSync) MarshalToSizedBuffer(dAtA []byte) (int, error) { i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } - n432, err432 := github_com_gogo_protobuf_types.StdDurationMarshalTo(m.PollInterval, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdDuration(m.PollInterval):]) - if err432 != nil { - return 0, err432 + n434, err434 := github_com_gogo_protobuf_types.StdDurationMarshalTo(m.PollInterval, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdDuration(m.PollInterval):]) + if err434 != nil { + return 0, err434 } - i -= n432 - i = encodeVarintTypes(dAtA, i, uint64(n432)) + i -= n434 + i = encodeVarintTypes(dAtA, i, uint64(n434)) i-- dAtA[i] = 0x12 if len(m.AWS) > 0 { @@ -61154,6 +61263,28 @@ func (m *IntegrationV1) Size() (n int) { n += 1 + l + sovTypes(uint64(l)) l = m.Spec.Size() n += 1 + l + sovTypes(uint64(l)) + l = m.Status.Size() + n += 1 + l + sovTypes(uint64(l)) + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + +func (m *IntegrationStatusV1) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.PendingUserTasksNotificationID) + if l > 0 { + n += 1 + l + sovTypes(uint64(l)) + } + if m.PendingUserTasksNotificationExpires != nil { + l = github_com_gogo_protobuf_types.SizeOfStdTime(*m.PendingUserTasksNotificationExpires) + n += 1 + l + sovTypes(uint64(l)) + } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } @@ -130108,6 +130239,158 @@ func (m *IntegrationV1) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Status", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.Status.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTypes(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthTypes + } + 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 *IntegrationStatusV1) 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 ErrIntOverflowTypes + } + 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: IntegrationStatusV1: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: IntegrationStatusV1: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field PendingUserTasksNotificationID", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + 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 ErrInvalidLengthTypes + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.PendingUserTasksNotificationID = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field PendingUserTasksNotificationExpires", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.PendingUserTasksNotificationExpires == nil { + m.PendingUserTasksNotificationExpires = new(time.Time) + } + if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(m.PendingUserTasksNotificationExpires, dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipTypes(dAtA[iNdEx:]) diff --git a/lib/auth/usertasks/usertasksv1/service.go b/lib/auth/usertasks/usertasksv1/service.go index a383e55a70135..a614294079e6d 100644 --- a/lib/auth/usertasks/usertasksv1/service.go +++ b/lib/auth/usertasks/usertasksv1/service.go @@ -28,9 +28,11 @@ import ( "google.golang.org/protobuf/types/known/emptypb" "google.golang.org/protobuf/types/known/timestamppb" + notificationsv1 "github.com/gravitational/teleport/api/gen/proto/go/teleport/notifications/v1" usertasksv1 "github.com/gravitational/teleport/api/gen/proto/go/teleport/usertasks/v1" "github.com/gravitational/teleport/api/types" apievents "github.com/gravitational/teleport/api/types/events" + "github.com/gravitational/teleport/api/types/notifications" "github.com/gravitational/teleport/api/types/usertasks" "github.com/gravitational/teleport/lib/authz" libevents "github.com/gravitational/teleport/lib/events" @@ -38,13 +40,25 @@ import ( usagereporter "github.com/gravitational/teleport/lib/usagereporter/teleport" ) +// BackendService contains the methods used to manage Resources. +type BackendService interface { + // CRUD methods for the UserTasks resources. + services.UserTasks + + // Methods required to notify the users of pending User Tasks. + CreateGlobalNotification(ctx context.Context, globalNotification *notificationsv1.GlobalNotification) (*notificationsv1.GlobalNotification, error) + DeleteGlobalNotification(ctx context.Context, notificationId string) error + UpdateIntegration(ctx context.Context, ig types.Integration) (types.Integration, error) + GetIntegration(ctx context.Context, name string) (types.Integration, error) +} + // ServiceConfig holds configuration options for the UserTask gRPC service. type ServiceConfig struct { // Authorizer is the authorizer to use. Authorizer authz.Authorizer - // Backend is the backend for storing UserTask. - Backend services.UserTasks + // Backend is the backend for storing resources. + Backend BackendService // Cache is the cache for storing UserTask. Cache Reader @@ -97,7 +111,7 @@ type Service struct { usertasksv1.UnimplementedUserTaskServiceServer authorizer authz.Authorizer - backend services.UserTasks + backend BackendService cache Reader clock clockwork.Clock usageReporter func() usagereporter.UsageReporter @@ -121,6 +135,7 @@ func NewService(cfg ServiceConfig) (*Service, error) { } // CreateUserTask creates user task resource. +// A global notification is created to ensure the user is aware of the pending user task. func (s *Service) CreateUserTask(ctx context.Context, req *usertasksv1.CreateUserTaskRequest) (*usertasksv1.UserTask, error) { authCtx, err := s.authorizer.Authorize(ctx) if err != nil { @@ -141,6 +156,10 @@ func (s *Service) CreateUserTask(ctx context.Context, req *usertasksv1.CreateUse s.usageReporter().AnonymizeAndSubmit(userTaskToUserTaskStateEvent(req.GetUserTask())) + if err := s.notifyUserAboutPendingTask(ctx, rsp); err != nil { + return nil, trace.Wrap(err) + } + return rsp, nil } @@ -248,6 +267,7 @@ func (s *Service) GetUserTask(ctx context.Context, req *usertasksv1.GetUserTaskR } // UpdateUserTask updates user task resource. +// If the UserTask state goes from Resolved to Open, a global notification is created to ensure the user is aware of the pending user task. func (s *Service) UpdateUserTask(ctx context.Context, req *usertasksv1.UpdateUserTaskRequest) (*usertasksv1.UserTask, error) { authCtx, err := s.authorizer.Authorize(ctx) if err != nil { @@ -279,6 +299,10 @@ func (s *Service) UpdateUserTask(ctx context.Context, req *usertasksv1.UpdateUse s.usageReporter().AnonymizeAndSubmit(userTaskToUserTaskStateEvent(req.GetUserTask())) } + if err := s.notifyUserAboutPendingTask(ctx, rsp); err != nil { + return nil, trace.Wrap(err) + } + return rsp, nil } @@ -309,6 +333,7 @@ func (s *Service) emitUpdateAuditEvent(ctx context.Context, old, new *usertasksv } // UpsertUserTask upserts user task resource. +// If the UserTask state goes from Resolved to Open, a global notification is created to ensure the user is aware of the pending user task. func (s *Service) UpsertUserTask(ctx context.Context, req *usertasksv1.UpsertUserTaskRequest) (*usertasksv1.UserTask, error) { authCtx, err := s.authorizer.Authorize(ctx) if err != nil { @@ -347,6 +372,10 @@ func (s *Service) UpsertUserTask(ctx context.Context, req *usertasksv1.UpsertUse s.usageReporter().AnonymizeAndSubmit(userTaskToUserTaskStateEvent(req.GetUserTask())) } + if err := s.notifyUserAboutPendingTask(ctx, rsp); err != nil { + return nil, trace.Wrap(err) + } + return rsp, nil } @@ -421,3 +450,55 @@ func getExpires(cj *timestamppb.Timestamp) time.Time { } return cj.AsTime() } + +// notifyUserAboutPendingTask creates a global notification that notifies the user about pending tasks. +// Only one notification per Integration is created. +// If a notification already exists, it will be deleted and re-created. +// When creating the notification, the longest lifespan of the existing and the new notification will be used. +func (s *Service) notifyUserAboutPendingTask(ctx context.Context, ut *usertasksv1.UserTask) error { + if ut.GetSpec().GetState() != usertasks.TaskStateOpen { + return nil + } + + integrationName := ut.GetSpec().GetIntegration() + expires := ut.GetMetadata().GetExpires().AsTime() + + integration, err := s.backend.GetIntegration(ctx, integrationName) + if err != nil { + return trace.Wrap(err) + } + integrationStatus := integration.GetStatus() + existingNotification := integrationStatus.PendingUserTasksNotificationID + if existingNotification != "" { + if err := s.backend.DeleteGlobalNotification(ctx, integrationStatus.PendingUserTasksNotificationID); err != nil { + // NotFound might be returned when the GlobalNotification already expired or was deleted. + if !trace.IsNotFound(err) { + return trace.Wrap(err) + } + } + + if integrationStatus.PendingUserTasksNotificationExpires != nil { + // Ensure we keep the longest lived notification. + if expires.Before(*integrationStatus.PendingUserTasksNotificationExpires) { + expires = *integrationStatus.PendingUserTasksNotificationExpires + } + } + } + + pendingUserTasksNotification := notifications.NewPendingUserTasksIntegrationNotification(integrationName, expires) + newNotification, err := s.backend.CreateGlobalNotification(ctx, pendingUserTasksNotification) + if err != nil { + return trace.Wrap(err) + } + + integration.SetStatus(types.IntegrationStatusV1{ + PendingUserTasksNotificationID: newNotification.GetMetadata().GetName(), + PendingUserTasksNotificationExpires: &expires, + }) + + if _, err := s.backend.UpdateIntegration(ctx, integration); err != nil { + return trace.Wrap(err) + } + + return nil +} diff --git a/lib/auth/usertasks/usertasksv1/service_test.go b/lib/auth/usertasks/usertasksv1/service_test.go index d40b3740af591..9c6052f02778d 100644 --- a/lib/auth/usertasks/usertasksv1/service_test.go +++ b/lib/auth/usertasks/usertasksv1/service_test.go @@ -27,11 +27,14 @@ import ( "github.com/google/go-cmp/cmp" "github.com/google/go-cmp/cmp/cmpopts" + "github.com/google/uuid" "github.com/gravitational/trace" "github.com/jonboulle/clockwork" "github.com/stretchr/testify/require" "google.golang.org/protobuf/types/known/timestamppb" + headerv1 "github.com/gravitational/teleport/api/gen/proto/go/teleport/header/v1" + notificationsv1 "github.com/gravitational/teleport/api/gen/proto/go/teleport/notifications/v1" usertasksv1 "github.com/gravitational/teleport/api/gen/proto/go/teleport/usertasks/v1" "github.com/gravitational/teleport/api/types" apievents "github.com/gravitational/teleport/api/types/events" @@ -90,7 +93,8 @@ func TestServiceAccess(t *testing.T) { t.Run(tt.name, func(t *testing.T) { for _, verbs := range utils.Combinations(tt.allowedVerbs) { t.Run(fmt.Sprintf("verbs=%v", verbs), func(t *testing.T) { - service := newService(t, fakeChecker{allowedVerbs: verbs}, testReporter, &libevents.DiscardEmitter{}, clockwork.NewFakeClock()) + backendService := newMockBackendService(t) + service := newService(t, fakeChecker{allowedVerbs: verbs}, backendService, testReporter, &libevents.DiscardEmitter{}, clockwork.NewFakeClock()) err := callMethod(t, service, tt.name) // expect access denied except with full set of verbs. if len(verbs) == len(tt.allowedVerbs) { @@ -122,7 +126,8 @@ func TestEvents(t *testing.T) { testReporter := &mockUsageReporter{} auditEventsSink := eventstest.NewChannelEmitter(10) fakeClock := clockwork.NewFakeClock() - service := newService(t, fakeChecker{allowedVerbs: rwVerbs}, testReporter, auditEventsSink, fakeClock) + backendService := newMockBackendService(t) + service := newService(t, fakeChecker{allowedVerbs: rwVerbs}, backendService, testReporter, auditEventsSink, fakeClock) ctx := context.Background() ut1, err := usertasks.NewDiscoverEC2UserTask(&usertasksv1.UserTaskSpec{ @@ -289,15 +294,9 @@ func (f fakeChecker) CheckAccessToRule(_ services.RuleContext, _ string, resourc return trace.AccessDenied("access denied to rule=%v/verb=%v", resource, verb) } -func newService(t *testing.T, checker services.AccessChecker, usageReporter usagereporter.UsageReporter, emitter apievents.Emitter, clock clockwork.Clock) *Service { +func newService(t *testing.T, checker services.AccessChecker, backendService BackendService, usageReporter usagereporter.UsageReporter, emitter apievents.Emitter, clock clockwork.Clock) *Service { t.Helper() - b, err := memory.New(memory.Config{}) - require.NoError(t, err) - - backendService, err := local.NewUserTasksService(b) - require.NoError(t, err) - authorizer := authz.AuthorizerFunc(func(ctx context.Context) (*authz.Context, error) { user, err := types.NewUser("llama") if err != nil { @@ -337,3 +336,132 @@ func (m *mockUsageReporter) AnonymizeAndSubmit(events ...usagereporter.Anonymiza } } } + +func createDummyUserTask(t *testing.T, integration string) *usertasksv1.UserTask { + ut, err := usertasks.NewDiscoverEC2UserTask( + &usertasksv1.UserTaskSpec{ + Integration: integration, + TaskType: "discover-ec2", + IssueType: "ec2-ssm-invocation-failure", + State: "OPEN", + DiscoverEc2: &usertasksv1.DiscoverEC2{ + AccountId: "123456789012", + Region: "us-east-1", + Instances: map[string]*usertasksv1.DiscoverEC2Instance{ + "i-123": { + InstanceId: "i-123", + DiscoveryConfig: "dc01", + DiscoveryGroup: "dg01", + }, + }, + }, + }, + ) + require.NoError(t, err) + return ut +} + +func TestNotifications(t *testing.T) { + rwVerbs := []string{types.VerbList, types.VerbCreate, types.VerbRead, types.VerbUpdate, types.VerbDelete} + backendService := newMockBackendService(t) + service := newService(t, fakeChecker{allowedVerbs: rwVerbs}, backendService, &mockUsageReporter{}, &libevents.DiscardEmitter{}, clockwork.NewFakeClock()) + ctx := context.Background() + + ut1 := createDummyUserTask(t, "my-integration") + userTaskName := ut1.GetMetadata().GetName() + + _, err := service.CreateUserTask(ctx, &usertasksv1.CreateUserTaskRequest{UserTask: ut1}) + require.NoError(t, err) + // A global notification must be created because there's a new UserTask reporting happens when user task is created, so we expect to see an event. + require.Len(t, backendService.notifications, 1) + var existingNotification *notificationsv1.GlobalNotification + for _, v := range backendService.notifications { + existingNotification = v + } + // Integration is updated accordingly to store this notification. + require.Equal(t, backendService.integrationStatus.PendingUserTasksNotificationID, existingNotification.Metadata.GetName()) + + // Updating the User Task to resolved does not trigger a new notification. + ut1.Spec.State = "RESOLVED" + _, err = service.UpsertUserTask(ctx, &usertasksv1.UpsertUserTaskRequest{UserTask: ut1}) + require.NoError(t, err) + require.Equal(t, backendService.integrationStatus.PendingUserTasksNotificationID, existingNotification.Metadata.GetName()) + + // But updating it again to OPEN must create a new notification. + ut1.Spec.State = "OPEN" + _, err = service.UpsertUserTask(ctx, &usertasksv1.UpsertUserTaskRequest{UserTask: ut1}) + require.NoError(t, err) + require.NotEqual(t, backendService.integrationStatus.PendingUserTasksNotificationID, existingNotification.Metadata.GetName()) + + _, err = service.DeleteUserTask(ctx, &usertasksv1.DeleteUserTaskRequest{Name: userTaskName}) + require.NoError(t, err) + require.NotEqual(t, backendService.integrationStatus.PendingUserTasksNotificationID, existingNotification.Metadata.GetName()) + + // After the notification expires, stale state might exist in the Integration status field. + // In that case, Deleting the Notification is a no-op and should be handled gracefully. + delete(backendService.notifications, ut1.GetMetadata().GetName()) + + ut2 := createDummyUserTask(t, "integration-for-ut2") + ut2.Metadata.Expires = ×tamppb.Timestamp{Seconds: 100} + _, err = service.CreateUserTask(ctx, &usertasksv1.CreateUserTaskRequest{UserTask: ut2}) + require.NoError(t, err) + + // Issuing a new Notification, whose expiration is shorter, should keep the old expiration. + ut3 := createDummyUserTask(t, "integration-for-ut3") + ut3.Metadata.Expires = ×tamppb.Timestamp{Seconds: 90} + _, err = service.CreateUserTask(ctx, &usertasksv1.CreateUserTaskRequest{UserTask: ut3}) + require.NoError(t, err) + + require.Len(t, backendService.notifications, 1) + for _, v := range backendService.notifications { + existingNotification = v + t.Log(v.Metadata.Expires) + } + require.Equal(t, int64(100), existingNotification.GetSpec().GetNotification().GetMetadata().GetExpires().GetSeconds()) +} + +func newMockBackendService(t *testing.T) *mockBackendService { + b, err := memory.New(memory.Config{}) + require.NoError(t, err) + + backendService, err := local.NewUserTasksService(b) + require.NoError(t, err) + return &mockBackendService{ + UserTasks: backendService, + notifications: make(map[string]*notificationsv1.GlobalNotification), + } +} + +type mockBackendService struct { + services.UserTasks + + notifications map[string]*notificationsv1.GlobalNotification + integrationStatus types.IntegrationStatusV1 +} + +func (m *mockBackendService) CreateGlobalNotification(ctx context.Context, globalNotification *notificationsv1.GlobalNotification) (*notificationsv1.GlobalNotification, error) { + globalNotification.Metadata = &headerv1.Metadata{ + Name: uuid.NewString(), + } + m.notifications[globalNotification.GetMetadata().Name] = globalNotification + return globalNotification, nil +} + +func (m *mockBackendService) DeleteGlobalNotification(ctx context.Context, notificationId string) error { + if _, ok := m.notifications[notificationId]; !ok { + return trace.NotFound("global notification not found") + } + delete(m.notifications, notificationId) + return nil +} + +func (m *mockBackendService) UpdateIntegration(ctx context.Context, integration types.Integration) (types.Integration, error) { + m.integrationStatus = integration.GetStatus() + return nil, nil +} + +func (m *mockBackendService) GetIntegration(ctx context.Context, name string) (types.Integration, error) { + return &types.IntegrationV1{ + Status: m.integrationStatus, + }, nil +} diff --git a/lib/srv/discovery/status.go b/lib/srv/discovery/status.go index 2d168c5aea776..05e0263452fa5 100644 --- a/lib/srv/discovery/status.go +++ b/lib/srv/discovery/status.go @@ -489,12 +489,7 @@ func (d *awsEKSTasks) addFailedEnrollment(g awsEKSTaskKey, cluster *usertasksv1. d.issuesSyncQueue[g] = struct{}{} } -// acquireSemaphoreForUserTask tries to acquire a semaphore lock for this user task. -// It returns a func which must be called to release the lock. -// It also returns a context which is tied to the lease and will be canceled if the lease ends. -func (s *Server) acquireSemaphoreForUserTask(userTaskName string) (releaseFn func(), ctx context.Context, err error) { - // Use the deterministic task name as semaphore name. - semaphoreName := userTaskName +func (s *Server) acquireSemaphore(kind, semaphoreName string) (releaseFn func(), stopCtx context.Context, err error) { semaphoreExpiration := 5 * time.Second // AcquireSemaphoreLock will retry until the semaphore is acquired. @@ -506,7 +501,7 @@ func (s *Server) acquireSemaphoreForUserTask(userTaskName string) (releaseFn fun SemaphoreLockConfig: services.SemaphoreLockConfig{ Service: s.AccessPoint, Params: types.AcquireSemaphoreRequest{ - SemaphoreKind: types.KindUserTask, + SemaphoreKind: kind, SemaphoreName: semaphoreName, MaxLeases: 1, Holder: s.Config.ServerID, @@ -534,13 +529,27 @@ func (s *Server) acquireSemaphoreForUserTask(userTaskName string) (releaseFn fun cancel() lease.Stop() if err := lease.Wait(); err != nil { - s.Log.WarnContext(ctx, "Error cleaning up UserTask semaphore", "semaphore", semaphoreName, "error", err) + s.Log.WarnContext(s.ctx, "Error cleaning up semaphore", "semaphore_kind", kind, "semaphore", semaphoreName, "error", err) } } return releaseFn, ctxWithLease, nil } +// acquireSemaphoreForIntegration tries to acquire a semaphore lock for the integration. +// This allows the process to do two things: +// - merge the current UserTask with the one stored in the backend, so that no discover-ec2.instance is lost +// - ensure a single Notification (pending-user-task-integration) is created +// The former could be achieved using the UserTask name as lock identifier. +// However, for the latter, we would need a lock for the Integration. +// Instead of having two locks, locking by the Integration allows us to safely edit both resources. +// +// Note: UserTask name is a deterministic value, based on multiple fields, including the integration. +// Note: UpsertUserTask triggers the creation of a new Notification. +func (s *Server) acquireSemaphoreForIntegration(integration string) (releaseFn func(), ctx context.Context, err error) { + return s.acquireSemaphore(types.KindIntegration, integration) +} + // mergeUpsertDiscoverEC2Task takes the current DiscoverEC2 User Task issues stored in memory and // merges them against the ones that exist in the cluster. // @@ -559,7 +568,7 @@ func (s *Server) mergeUpsertDiscoverEC2Task(taskGroup awsEC2TaskKey, failedInsta InstallerScript: taskGroup.installerScript, }) - releaseFn, ctxWithLease, err := s.acquireSemaphoreForUserTask(userTaskName) + releaseFn, ctxWithLease, err := s.acquireSemaphoreForIntegration(taskGroup.integration) if err != nil { return trace.Wrap(err) } @@ -679,7 +688,7 @@ func (s *Server) mergeUpsertDiscoverEKSTask(taskGroup awsEKSTaskKey, failedClust AppAutoDiscover: taskGroup.appAutoDiscover, }) - releaseFn, ctxWithLease, err := s.acquireSemaphoreForUserTask(userTaskName) + releaseFn, ctxWithLease, err := s.acquireSemaphoreForIntegration(taskGroup.integration) if err != nil { return trace.Wrap(err) }