diff --git a/api/client/proto/authservice.pb.go b/api/client/proto/authservice.pb.go index 6076370c07e6b..3f66847c54fd5 100644 --- a/api/client/proto/authservice.pb.go +++ b/api/client/proto/authservice.pb.go @@ -6304,10 +6304,14 @@ type MFAAuthenticateChallenge struct { // If `MFA_REQUIRED_NO` is returned then the server may opt to end ongoing // communications, in case of streaming RPCs. It may also return empty // challenges for all other fields. - MFARequired MFARequired `protobuf:"varint,4,opt,name=MFARequired,proto3,enum=proto.MFARequired" json:"MFARequired,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + MFARequired MFARequired `protobuf:"varint,4,opt,name=MFARequired,proto3,enum=proto.MFARequired" json:"MFARequired,omitempty"` + // SSO Challenge is an SSO MFA challenge. If set, the client can go to the + // IdP redirect URL to perform an MFA check in the IdP and obtain an MFA token. + // This token paired with the request id can then be used as MFA verification. + SSOChallenge *SSOChallenge `protobuf:"bytes,5,opt,name=SSOChallenge,proto3" json:"SSOChallenge,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *MFAAuthenticateChallenge) Reset() { *m = MFAAuthenticateChallenge{} } @@ -6364,12 +6368,20 @@ func (m *MFAAuthenticateChallenge) GetMFARequired() MFARequired { return MFARequired_MFA_REQUIRED_UNSPECIFIED } +func (m *MFAAuthenticateChallenge) GetSSOChallenge() *SSOChallenge { + if m != nil { + return m.SSOChallenge + } + return nil +} + // MFAAuthenticateResponse is a response to MFAAuthenticateChallenge using one // of the MFA devices registered for a user. type MFAAuthenticateResponse struct { // Types that are valid to be assigned to Response: // *MFAAuthenticateResponse_TOTP // *MFAAuthenticateResponse_Webauthn + // *MFAAuthenticateResponse_SSO Response isMFAAuthenticateResponse_Response `protobuf_oneof:"Response"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` @@ -6421,9 +6433,13 @@ type MFAAuthenticateResponse_TOTP struct { type MFAAuthenticateResponse_Webauthn struct { Webauthn *webauthn.CredentialAssertionResponse `protobuf:"bytes,3,opt,name=Webauthn,proto3,oneof" json:"Webauthn,omitempty"` } +type MFAAuthenticateResponse_SSO struct { + SSO *SSOResponse `protobuf:"bytes,4,opt,name=SSO,proto3,oneof" json:"SSO,omitempty"` +} func (*MFAAuthenticateResponse_TOTP) isMFAAuthenticateResponse_Response() {} func (*MFAAuthenticateResponse_Webauthn) isMFAAuthenticateResponse_Response() {} +func (*MFAAuthenticateResponse_SSO) isMFAAuthenticateResponse_Response() {} func (m *MFAAuthenticateResponse) GetResponse() isMFAAuthenticateResponse_Response { if m != nil { @@ -6446,11 +6462,19 @@ func (m *MFAAuthenticateResponse) GetWebauthn() *webauthn.CredentialAssertionRes return nil } +func (m *MFAAuthenticateResponse) GetSSO() *SSOResponse { + if x, ok := m.GetResponse().(*MFAAuthenticateResponse_SSO); ok { + return x.SSO + } + return nil +} + // XXX_OneofWrappers is for the internal use of the proto package. func (*MFAAuthenticateResponse) XXX_OneofWrappers() []interface{} { return []interface{}{ (*MFAAuthenticateResponse_TOTP)(nil), (*MFAAuthenticateResponse_Webauthn)(nil), + (*MFAAuthenticateResponse_SSO)(nil), } } @@ -6542,6 +6566,122 @@ func (m *TOTPResponse) GetCode() string { return "" } +// SSOChallenge contains SSO auth request details to perform an SSO MFA check. +type SSOChallenge struct { + // RequestId is the ID of an SSO auth request. + RequestId string `protobuf:"bytes,1,opt,name=request_id,json=requestId,proto3" json:"request_id,omitempty"` + // RedirectUrl is an IdP redirect URL to initate the SSO MFA flow. + RedirectUrl string `protobuf:"bytes,2,opt,name=redirect_url,json=redirectUrl,proto3" json:"redirect_url,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *SSOChallenge) Reset() { *m = SSOChallenge{} } +func (m *SSOChallenge) String() string { return proto.CompactTextString(m) } +func (*SSOChallenge) ProtoMessage() {} +func (*SSOChallenge) Descriptor() ([]byte, []int) { + return fileDescriptor_0ffcffcda38ae159, []int{92} +} +func (m *SSOChallenge) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *SSOChallenge) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_SSOChallenge.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 *SSOChallenge) XXX_Merge(src proto.Message) { + xxx_messageInfo_SSOChallenge.Merge(m, src) +} +func (m *SSOChallenge) XXX_Size() int { + return m.Size() +} +func (m *SSOChallenge) XXX_DiscardUnknown() { + xxx_messageInfo_SSOChallenge.DiscardUnknown(m) +} + +var xxx_messageInfo_SSOChallenge proto.InternalMessageInfo + +func (m *SSOChallenge) GetRequestId() string { + if m != nil { + return m.RequestId + } + return "" +} + +func (m *SSOChallenge) GetRedirectUrl() string { + if m != nil { + return m.RedirectUrl + } + return "" +} + +// SSOResponse is a response to SSOChallenge. +type SSOResponse struct { + // RequestId is the ID of an SSO auth request. + RequestId string `protobuf:"bytes,1,opt,name=request_id,json=requestId,proto3" json:"request_id,omitempty"` + // Token is a secret token used to verify the user's SSO MFA session. + Token string `protobuf:"bytes,2,opt,name=token,proto3" json:"token,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *SSOResponse) Reset() { *m = SSOResponse{} } +func (m *SSOResponse) String() string { return proto.CompactTextString(m) } +func (*SSOResponse) ProtoMessage() {} +func (*SSOResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_0ffcffcda38ae159, []int{93} +} +func (m *SSOResponse) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *SSOResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_SSOResponse.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 *SSOResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_SSOResponse.Merge(m, src) +} +func (m *SSOResponse) XXX_Size() int { + return m.Size() +} +func (m *SSOResponse) XXX_DiscardUnknown() { + xxx_messageInfo_SSOResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_SSOResponse proto.InternalMessageInfo + +func (m *SSOResponse) GetRequestId() string { + if m != nil { + return m.RequestId + } + return "" +} + +func (m *SSOResponse) GetToken() string { + if m != nil { + return m.Token + } + return "" +} + // MFARegisterChallenge is a challenge for registering a new MFA device. type MFARegisterChallenge struct { // Request depends on the type of the MFA device being registered. @@ -6559,7 +6699,7 @@ func (m *MFARegisterChallenge) Reset() { *m = MFARegisterChallenge{} } func (m *MFARegisterChallenge) String() string { return proto.CompactTextString(m) } func (*MFARegisterChallenge) ProtoMessage() {} func (*MFARegisterChallenge) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{92} + return fileDescriptor_0ffcffcda38ae159, []int{94} } func (m *MFARegisterChallenge) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6648,7 +6788,7 @@ func (m *MFARegisterResponse) Reset() { *m = MFARegisterResponse{} } func (m *MFARegisterResponse) String() string { return proto.CompactTextString(m) } func (*MFARegisterResponse) ProtoMessage() {} func (*MFARegisterResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{93} + return fileDescriptor_0ffcffcda38ae159, []int{95} } func (m *MFARegisterResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6751,7 +6891,7 @@ func (m *TOTPRegisterChallenge) Reset() { *m = TOTPRegisterChallenge{} } func (m *TOTPRegisterChallenge) String() string { return proto.CompactTextString(m) } func (*TOTPRegisterChallenge) ProtoMessage() {} func (*TOTPRegisterChallenge) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{94} + return fileDescriptor_0ffcffcda38ae159, []int{96} } func (m *TOTPRegisterChallenge) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6850,7 +6990,7 @@ func (m *TOTPRegisterResponse) Reset() { *m = TOTPRegisterResponse{} } func (m *TOTPRegisterResponse) String() string { return proto.CompactTextString(m) } func (*TOTPRegisterResponse) ProtoMessage() {} func (*TOTPRegisterResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{95} + return fileDescriptor_0ffcffcda38ae159, []int{97} } func (m *TOTPRegisterResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6904,7 +7044,7 @@ func (m *AddMFADeviceRequest) Reset() { *m = AddMFADeviceRequest{} } func (m *AddMFADeviceRequest) String() string { return proto.CompactTextString(m) } func (*AddMFADeviceRequest) ProtoMessage() {} func (*AddMFADeviceRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{96} + return fileDescriptor_0ffcffcda38ae159, []int{98} } func (m *AddMFADeviceRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6944,7 +7084,7 @@ func (m *AddMFADeviceResponse) Reset() { *m = AddMFADeviceResponse{} } func (m *AddMFADeviceResponse) String() string { return proto.CompactTextString(m) } func (*AddMFADeviceResponse) ProtoMessage() {} func (*AddMFADeviceResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{97} + return fileDescriptor_0ffcffcda38ae159, []int{99} } func (m *AddMFADeviceResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6984,7 +7124,7 @@ func (m *DeleteMFADeviceRequest) Reset() { *m = DeleteMFADeviceRequest{} func (m *DeleteMFADeviceRequest) String() string { return proto.CompactTextString(m) } func (*DeleteMFADeviceRequest) ProtoMessage() {} func (*DeleteMFADeviceRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{98} + return fileDescriptor_0ffcffcda38ae159, []int{100} } func (m *DeleteMFADeviceRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7024,7 +7164,7 @@ func (m *DeleteMFADeviceResponse) Reset() { *m = DeleteMFADeviceResponse func (m *DeleteMFADeviceResponse) String() string { return proto.CompactTextString(m) } func (*DeleteMFADeviceResponse) ProtoMessage() {} func (*DeleteMFADeviceResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{99} + return fileDescriptor_0ffcffcda38ae159, []int{101} } func (m *DeleteMFADeviceResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7079,7 +7219,7 @@ func (m *DeleteMFADeviceSyncRequest) Reset() { *m = DeleteMFADeviceSyncR func (m *DeleteMFADeviceSyncRequest) String() string { return proto.CompactTextString(m) } func (*DeleteMFADeviceSyncRequest) ProtoMessage() {} func (*DeleteMFADeviceSyncRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{100} + return fileDescriptor_0ffcffcda38ae159, []int{102} } func (m *DeleteMFADeviceSyncRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7159,7 +7299,7 @@ func (m *AddMFADeviceSyncRequest) Reset() { *m = AddMFADeviceSyncRequest func (m *AddMFADeviceSyncRequest) String() string { return proto.CompactTextString(m) } func (*AddMFADeviceSyncRequest) ProtoMessage() {} func (*AddMFADeviceSyncRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{101} + return fileDescriptor_0ffcffcda38ae159, []int{103} } func (m *AddMFADeviceSyncRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7235,7 +7375,7 @@ func (m *AddMFADeviceSyncResponse) Reset() { *m = AddMFADeviceSyncRespon func (m *AddMFADeviceSyncResponse) String() string { return proto.CompactTextString(m) } func (*AddMFADeviceSyncResponse) ProtoMessage() {} func (*AddMFADeviceSyncResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{102} + return fileDescriptor_0ffcffcda38ae159, []int{104} } func (m *AddMFADeviceSyncResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7290,7 +7430,7 @@ func (m *GetMFADevicesRequest) Reset() { *m = GetMFADevicesRequest{} } func (m *GetMFADevicesRequest) String() string { return proto.CompactTextString(m) } func (*GetMFADevicesRequest) ProtoMessage() {} func (*GetMFADevicesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{103} + return fileDescriptor_0ffcffcda38ae159, []int{105} } func (m *GetMFADevicesRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7338,7 +7478,7 @@ func (m *GetMFADevicesResponse) Reset() { *m = GetMFADevicesResponse{} } func (m *GetMFADevicesResponse) String() string { return proto.CompactTextString(m) } func (*GetMFADevicesResponse) ProtoMessage() {} func (*GetMFADevicesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{104} + return fileDescriptor_0ffcffcda38ae159, []int{106} } func (m *GetMFADevicesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7385,7 +7525,7 @@ func (m *UserSingleUseCertsRequest) Reset() { *m = UserSingleUseCertsReq func (m *UserSingleUseCertsRequest) String() string { return proto.CompactTextString(m) } func (*UserSingleUseCertsRequest) ProtoMessage() {} func (*UserSingleUseCertsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{105} + return fileDescriptor_0ffcffcda38ae159, []int{107} } func (m *UserSingleUseCertsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7425,7 +7565,7 @@ func (m *UserSingleUseCertsResponse) Reset() { *m = UserSingleUseCertsRe func (m *UserSingleUseCertsResponse) String() string { return proto.CompactTextString(m) } func (*UserSingleUseCertsResponse) ProtoMessage() {} func (*UserSingleUseCertsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{106} + return fileDescriptor_0ffcffcda38ae159, []int{108} } func (m *UserSingleUseCertsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7474,7 +7614,7 @@ func (m *IsMFARequiredRequest) Reset() { *m = IsMFARequiredRequest{} } func (m *IsMFARequiredRequest) String() string { return proto.CompactTextString(m) } func (*IsMFARequiredRequest) ProtoMessage() {} func (*IsMFARequiredRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{107} + return fileDescriptor_0ffcffcda38ae159, []int{109} } func (m *IsMFARequiredRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7612,7 +7752,7 @@ func (m *StreamSessionEventsRequest) Reset() { *m = StreamSessionEventsR func (m *StreamSessionEventsRequest) String() string { return proto.CompactTextString(m) } func (*StreamSessionEventsRequest) ProtoMessage() {} func (*StreamSessionEventsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{108} + return fileDescriptor_0ffcffcda38ae159, []int{110} } func (m *StreamSessionEventsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7670,7 +7810,7 @@ func (m *NodeLogin) Reset() { *m = NodeLogin{} } func (m *NodeLogin) String() string { return proto.CompactTextString(m) } func (*NodeLogin) ProtoMessage() {} func (*NodeLogin) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{109} + return fileDescriptor_0ffcffcda38ae159, []int{111} } func (m *NodeLogin) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7724,7 +7864,7 @@ func (m *AdminAction) Reset() { *m = AdminAction{} } func (m *AdminAction) String() string { return proto.CompactTextString(m) } func (*AdminAction) ProtoMessage() {} func (*AdminAction) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{110} + return fileDescriptor_0ffcffcda38ae159, []int{112} } func (m *AdminAction) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7769,7 +7909,7 @@ func (m *IsMFARequiredResponse) Reset() { *m = IsMFARequiredResponse{} } func (m *IsMFARequiredResponse) String() string { return proto.CompactTextString(m) } func (*IsMFARequiredResponse) ProtoMessage() {} func (*IsMFARequiredResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{111} + return fileDescriptor_0ffcffcda38ae159, []int{113} } func (m *IsMFARequiredResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7839,7 +7979,7 @@ func (m *GetEventsRequest) Reset() { *m = GetEventsRequest{} } func (m *GetEventsRequest) String() string { return proto.CompactTextString(m) } func (*GetEventsRequest) ProtoMessage() {} func (*GetEventsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{112} + return fileDescriptor_0ffcffcda38ae159, []int{114} } func (m *GetEventsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7940,7 +8080,7 @@ func (m *GetSessionEventsRequest) Reset() { *m = GetSessionEventsRequest func (m *GetSessionEventsRequest) String() string { return proto.CompactTextString(m) } func (*GetSessionEventsRequest) ProtoMessage() {} func (*GetSessionEventsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{113} + return fileDescriptor_0ffcffcda38ae159, []int{115} } func (m *GetSessionEventsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8020,7 +8160,7 @@ func (m *Events) Reset() { *m = Events{} } func (m *Events) String() string { return proto.CompactTextString(m) } func (*Events) ProtoMessage() {} func (*Events) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{114} + return fileDescriptor_0ffcffcda38ae159, []int{116} } func (m *Events) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8078,7 +8218,7 @@ func (m *GetLocksRequest) Reset() { *m = GetLocksRequest{} } func (m *GetLocksRequest) String() string { return proto.CompactTextString(m) } func (*GetLocksRequest) ProtoMessage() {} func (*GetLocksRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{115} + return fileDescriptor_0ffcffcda38ae159, []int{117} } func (m *GetLocksRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8133,7 +8273,7 @@ func (m *GetLocksResponse) Reset() { *m = GetLocksResponse{} } func (m *GetLocksResponse) String() string { return proto.CompactTextString(m) } func (*GetLocksResponse) ProtoMessage() {} func (*GetLocksResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{116} + return fileDescriptor_0ffcffcda38ae159, []int{118} } func (m *GetLocksResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8181,7 +8321,7 @@ func (m *GetLockRequest) Reset() { *m = GetLockRequest{} } func (m *GetLockRequest) String() string { return proto.CompactTextString(m) } func (*GetLockRequest) ProtoMessage() {} func (*GetLockRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{117} + return fileDescriptor_0ffcffcda38ae159, []int{119} } func (m *GetLockRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8229,7 +8369,7 @@ func (m *DeleteLockRequest) Reset() { *m = DeleteLockRequest{} } func (m *DeleteLockRequest) String() string { return proto.CompactTextString(m) } func (*DeleteLockRequest) ProtoMessage() {} func (*DeleteLockRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{118} + return fileDescriptor_0ffcffcda38ae159, []int{120} } func (m *DeleteLockRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8279,7 +8419,7 @@ func (m *ReplaceRemoteLocksRequest) Reset() { *m = ReplaceRemoteLocksReq func (m *ReplaceRemoteLocksRequest) String() string { return proto.CompactTextString(m) } func (*ReplaceRemoteLocksRequest) ProtoMessage() {} func (*ReplaceRemoteLocksRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{119} + return fileDescriptor_0ffcffcda38ae159, []int{121} } func (m *ReplaceRemoteLocksRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8335,7 +8475,7 @@ func (m *GetWindowsDesktopServicesResponse) Reset() { *m = GetWindowsDes func (m *GetWindowsDesktopServicesResponse) String() string { return proto.CompactTextString(m) } func (*GetWindowsDesktopServicesResponse) ProtoMessage() {} func (*GetWindowsDesktopServicesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{120} + return fileDescriptor_0ffcffcda38ae159, []int{122} } func (m *GetWindowsDesktopServicesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8384,7 +8524,7 @@ func (m *GetWindowsDesktopServiceRequest) Reset() { *m = GetWindowsDeskt func (m *GetWindowsDesktopServiceRequest) String() string { return proto.CompactTextString(m) } func (*GetWindowsDesktopServiceRequest) ProtoMessage() {} func (*GetWindowsDesktopServiceRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{121} + return fileDescriptor_0ffcffcda38ae159, []int{123} } func (m *GetWindowsDesktopServiceRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8433,7 +8573,7 @@ func (m *GetWindowsDesktopServiceResponse) Reset() { *m = GetWindowsDesk func (m *GetWindowsDesktopServiceResponse) String() string { return proto.CompactTextString(m) } func (*GetWindowsDesktopServiceResponse) ProtoMessage() {} func (*GetWindowsDesktopServiceResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{122} + return fileDescriptor_0ffcffcda38ae159, []int{124} } func (m *GetWindowsDesktopServiceResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8482,7 +8622,7 @@ func (m *DeleteWindowsDesktopServiceRequest) Reset() { *m = DeleteWindow func (m *DeleteWindowsDesktopServiceRequest) String() string { return proto.CompactTextString(m) } func (*DeleteWindowsDesktopServiceRequest) ProtoMessage() {} func (*DeleteWindowsDesktopServiceRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{123} + return fileDescriptor_0ffcffcda38ae159, []int{125} } func (m *DeleteWindowsDesktopServiceRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8531,7 +8671,7 @@ func (m *GetWindowsDesktopsResponse) Reset() { *m = GetWindowsDesktopsRe func (m *GetWindowsDesktopsResponse) String() string { return proto.CompactTextString(m) } func (*GetWindowsDesktopsResponse) ProtoMessage() {} func (*GetWindowsDesktopsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{124} + return fileDescriptor_0ffcffcda38ae159, []int{126} } func (m *GetWindowsDesktopsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8584,7 +8724,7 @@ func (m *DeleteWindowsDesktopRequest) Reset() { *m = DeleteWindowsDeskto func (m *DeleteWindowsDesktopRequest) String() string { return proto.CompactTextString(m) } func (*DeleteWindowsDesktopRequest) ProtoMessage() {} func (*DeleteWindowsDesktopRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{125} + return fileDescriptor_0ffcffcda38ae159, []int{127} } func (m *DeleteWindowsDesktopRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8645,7 +8785,7 @@ func (m *WindowsDesktopCertRequest) Reset() { *m = WindowsDesktopCertReq func (m *WindowsDesktopCertRequest) String() string { return proto.CompactTextString(m) } func (*WindowsDesktopCertRequest) ProtoMessage() {} func (*WindowsDesktopCertRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{126} + return fileDescriptor_0ffcffcda38ae159, []int{128} } func (m *WindowsDesktopCertRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8708,7 +8848,7 @@ func (m *WindowsDesktopCertResponse) Reset() { *m = WindowsDesktopCertRe func (m *WindowsDesktopCertResponse) String() string { return proto.CompactTextString(m) } func (*WindowsDesktopCertResponse) ProtoMessage() {} func (*WindowsDesktopCertResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{127} + return fileDescriptor_0ffcffcda38ae159, []int{129} } func (m *WindowsDesktopCertResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8757,7 +8897,7 @@ func (m *DesktopBootstrapScriptResponse) Reset() { *m = DesktopBootstrap func (m *DesktopBootstrapScriptResponse) String() string { return proto.CompactTextString(m) } func (*DesktopBootstrapScriptResponse) ProtoMessage() {} func (*DesktopBootstrapScriptResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{128} + return fileDescriptor_0ffcffcda38ae159, []int{130} } func (m *DesktopBootstrapScriptResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8808,7 +8948,7 @@ func (m *ListSAMLIdPServiceProvidersRequest) Reset() { *m = ListSAMLIdPS func (m *ListSAMLIdPServiceProvidersRequest) String() string { return proto.CompactTextString(m) } func (*ListSAMLIdPServiceProvidersRequest) ProtoMessage() {} func (*ListSAMLIdPServiceProvidersRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{129} + return fileDescriptor_0ffcffcda38ae159, []int{131} } func (m *ListSAMLIdPServiceProvidersRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8868,7 +9008,7 @@ func (m *ListSAMLIdPServiceProvidersResponse) Reset() { *m = ListSAMLIdP func (m *ListSAMLIdPServiceProvidersResponse) String() string { return proto.CompactTextString(m) } func (*ListSAMLIdPServiceProvidersResponse) ProtoMessage() {} func (*ListSAMLIdPServiceProvidersResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{130} + return fileDescriptor_0ffcffcda38ae159, []int{132} } func (m *ListSAMLIdPServiceProvidersResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8931,7 +9071,7 @@ func (m *GetSAMLIdPServiceProviderRequest) Reset() { *m = GetSAMLIdPServ func (m *GetSAMLIdPServiceProviderRequest) String() string { return proto.CompactTextString(m) } func (*GetSAMLIdPServiceProviderRequest) ProtoMessage() {} func (*GetSAMLIdPServiceProviderRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{131} + return fileDescriptor_0ffcffcda38ae159, []int{133} } func (m *GetSAMLIdPServiceProviderRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8980,7 +9120,7 @@ func (m *DeleteSAMLIdPServiceProviderRequest) Reset() { *m = DeleteSAMLI func (m *DeleteSAMLIdPServiceProviderRequest) String() string { return proto.CompactTextString(m) } func (*DeleteSAMLIdPServiceProviderRequest) ProtoMessage() {} func (*DeleteSAMLIdPServiceProviderRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{132} + return fileDescriptor_0ffcffcda38ae159, []int{134} } func (m *DeleteSAMLIdPServiceProviderRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9031,7 +9171,7 @@ func (m *ListUserGroupsRequest) Reset() { *m = ListUserGroupsRequest{} } func (m *ListUserGroupsRequest) String() string { return proto.CompactTextString(m) } func (*ListUserGroupsRequest) ProtoMessage() {} func (*ListUserGroupsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{133} + return fileDescriptor_0ffcffcda38ae159, []int{135} } func (m *ListUserGroupsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9091,7 +9231,7 @@ func (m *ListUserGroupsResponse) Reset() { *m = ListUserGroupsResponse{} func (m *ListUserGroupsResponse) String() string { return proto.CompactTextString(m) } func (*ListUserGroupsResponse) ProtoMessage() {} func (*ListUserGroupsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{134} + return fileDescriptor_0ffcffcda38ae159, []int{136} } func (m *ListUserGroupsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9154,7 +9294,7 @@ func (m *GetUserGroupRequest) Reset() { *m = GetUserGroupRequest{} } func (m *GetUserGroupRequest) String() string { return proto.CompactTextString(m) } func (*GetUserGroupRequest) ProtoMessage() {} func (*GetUserGroupRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{135} + return fileDescriptor_0ffcffcda38ae159, []int{137} } func (m *GetUserGroupRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9203,7 +9343,7 @@ func (m *DeleteUserGroupRequest) Reset() { *m = DeleteUserGroupRequest{} func (m *DeleteUserGroupRequest) String() string { return proto.CompactTextString(m) } func (*DeleteUserGroupRequest) ProtoMessage() {} func (*DeleteUserGroupRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{136} + return fileDescriptor_0ffcffcda38ae159, []int{138} } func (m *DeleteUserGroupRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9252,7 +9392,7 @@ func (m *CertAuthorityRequest) Reset() { *m = CertAuthorityRequest{} } func (m *CertAuthorityRequest) String() string { return proto.CompactTextString(m) } func (*CertAuthorityRequest) ProtoMessage() {} func (*CertAuthorityRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{137} + return fileDescriptor_0ffcffcda38ae159, []int{139} } func (m *CertAuthorityRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9301,7 +9441,7 @@ func (m *CRL) Reset() { *m = CRL{} } func (m *CRL) String() string { return proto.CompactTextString(m) } func (*CRL) ProtoMessage() {} func (*CRL) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{138} + return fileDescriptor_0ffcffcda38ae159, []int{140} } func (m *CRL) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9371,7 +9511,7 @@ func (m *ChangeUserAuthenticationRequest) Reset() { *m = ChangeUserAuthe func (m *ChangeUserAuthenticationRequest) String() string { return proto.CompactTextString(m) } func (*ChangeUserAuthenticationRequest) ProtoMessage() {} func (*ChangeUserAuthenticationRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{139} + return fileDescriptor_0ffcffcda38ae159, []int{141} } func (m *ChangeUserAuthenticationRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9457,7 +9597,7 @@ func (m *ChangeUserAuthenticationResponse) Reset() { *m = ChangeUserAuth func (m *ChangeUserAuthenticationResponse) String() string { return proto.CompactTextString(m) } func (*ChangeUserAuthenticationResponse) ProtoMessage() {} func (*ChangeUserAuthenticationResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{140} + return fileDescriptor_0ffcffcda38ae159, []int{142} } func (m *ChangeUserAuthenticationResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9530,7 +9670,7 @@ func (m *StartAccountRecoveryRequest) Reset() { *m = StartAccountRecover func (m *StartAccountRecoveryRequest) String() string { return proto.CompactTextString(m) } func (*StartAccountRecoveryRequest) ProtoMessage() {} func (*StartAccountRecoveryRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{141} + return fileDescriptor_0ffcffcda38ae159, []int{143} } func (m *StartAccountRecoveryRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9605,7 +9745,7 @@ func (m *VerifyAccountRecoveryRequest) Reset() { *m = VerifyAccountRecov func (m *VerifyAccountRecoveryRequest) String() string { return proto.CompactTextString(m) } func (*VerifyAccountRecoveryRequest) ProtoMessage() {} func (*VerifyAccountRecoveryRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{142} + return fileDescriptor_0ffcffcda38ae159, []int{144} } func (m *VerifyAccountRecoveryRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9720,7 +9860,7 @@ func (m *CompleteAccountRecoveryRequest) Reset() { *m = CompleteAccountR func (m *CompleteAccountRecoveryRequest) String() string { return proto.CompactTextString(m) } func (*CompleteAccountRecoveryRequest) ProtoMessage() {} func (*CompleteAccountRecoveryRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{143} + return fileDescriptor_0ffcffcda38ae159, []int{145} } func (m *CompleteAccountRecoveryRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9826,7 +9966,7 @@ func (m *RecoveryCodes) Reset() { *m = RecoveryCodes{} } func (m *RecoveryCodes) String() string { return proto.CompactTextString(m) } func (*RecoveryCodes) ProtoMessage() {} func (*RecoveryCodes) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{144} + return fileDescriptor_0ffcffcda38ae159, []int{146} } func (m *RecoveryCodes) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9889,7 +10029,7 @@ func (m *CreateAccountRecoveryCodesRequest) Reset() { *m = CreateAccount func (m *CreateAccountRecoveryCodesRequest) String() string { return proto.CompactTextString(m) } func (*CreateAccountRecoveryCodesRequest) ProtoMessage() {} func (*CreateAccountRecoveryCodesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{145} + return fileDescriptor_0ffcffcda38ae159, []int{147} } func (m *CreateAccountRecoveryCodesRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9940,7 +10080,7 @@ func (m *GetAccountRecoveryTokenRequest) Reset() { *m = GetAccountRecove func (m *GetAccountRecoveryTokenRequest) String() string { return proto.CompactTextString(m) } func (*GetAccountRecoveryTokenRequest) ProtoMessage() {} func (*GetAccountRecoveryTokenRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{146} + return fileDescriptor_0ffcffcda38ae159, []int{148} } func (m *GetAccountRecoveryTokenRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9988,7 +10128,7 @@ func (m *GetAccountRecoveryCodesRequest) Reset() { *m = GetAccountRecove func (m *GetAccountRecoveryCodesRequest) String() string { return proto.CompactTextString(m) } func (*GetAccountRecoveryCodesRequest) ProtoMessage() {} func (*GetAccountRecoveryCodesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{147} + return fileDescriptor_0ffcffcda38ae159, []int{149} } func (m *GetAccountRecoveryCodesRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -10030,7 +10170,7 @@ func (m *UserCredentials) Reset() { *m = UserCredentials{} } func (m *UserCredentials) String() string { return proto.CompactTextString(m) } func (*UserCredentials) ProtoMessage() {} func (*UserCredentials) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{148} + return fileDescriptor_0ffcffcda38ae159, []int{150} } func (m *UserCredentials) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -10084,7 +10224,7 @@ func (m *ContextUser) Reset() { *m = ContextUser{} } func (m *ContextUser) String() string { return proto.CompactTextString(m) } func (*ContextUser) ProtoMessage() {} func (*ContextUser) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{149} + return fileDescriptor_0ffcffcda38ae159, []int{151} } func (m *ContextUser) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -10124,7 +10264,7 @@ func (m *Passwordless) Reset() { *m = Passwordless{} } func (m *Passwordless) String() string { return proto.CompactTextString(m) } func (*Passwordless) ProtoMessage() {} func (*Passwordless) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{150} + return fileDescriptor_0ffcffcda38ae159, []int{152} } func (m *Passwordless) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -10176,19 +10316,21 @@ type CreateAuthenticateChallengeRequest struct { // call [AuthService.IsMFARequired] in the leaf instead of setting this field. MFARequiredCheck *IsMFARequiredRequest `protobuf:"bytes,5,opt,name=MFARequiredCheck,proto3" json:"mfa_required_check,omitempty"` // ChallengeExtensions are extensions that will be apply to the issued MFA challenge. - // ChallengeExtensions only apply to webauthn challenges currently. Required, except - // for v15 clients and older. - ChallengeExtensions *v11.ChallengeExtensions `protobuf:"bytes,6,opt,name=ChallengeExtensions,proto3" json:"challenge_extensions,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + // Required, except for v15 clients and older. + ChallengeExtensions *v11.ChallengeExtensions `protobuf:"bytes,6,opt,name=ChallengeExtensions,proto3" json:"challenge_extensions,omitempty"` + // SSOClientRedirectURL should be supplied If the client supports SSO MFA checks. + // If unset, the server will only return non-SSO challenges. + SSOClientRedirectURL string `protobuf:"bytes,7,opt,name=SSOClientRedirectURL,proto3" json:"sso_client_redirect_url,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *CreateAuthenticateChallengeRequest) Reset() { *m = CreateAuthenticateChallengeRequest{} } func (m *CreateAuthenticateChallengeRequest) String() string { return proto.CompactTextString(m) } func (*CreateAuthenticateChallengeRequest) ProtoMessage() {} func (*CreateAuthenticateChallengeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{151} + return fileDescriptor_0ffcffcda38ae159, []int{153} } func (m *CreateAuthenticateChallengeRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -10294,6 +10436,13 @@ func (m *CreateAuthenticateChallengeRequest) GetChallengeExtensions() *v11.Chall return nil } +func (m *CreateAuthenticateChallengeRequest) GetSSOClientRedirectURL() string { + if m != nil { + return m.SSOClientRedirectURL + } + return "" +} + // XXX_OneofWrappers is for the internal use of the proto package. func (*CreateAuthenticateChallengeRequest) XXX_OneofWrappers() []interface{} { return []interface{}{ @@ -10322,7 +10471,7 @@ func (m *CreatePrivilegeTokenRequest) Reset() { *m = CreatePrivilegeToke func (m *CreatePrivilegeTokenRequest) String() string { return proto.CompactTextString(m) } func (*CreatePrivilegeTokenRequest) ProtoMessage() {} func (*CreatePrivilegeTokenRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{152} + return fileDescriptor_0ffcffcda38ae159, []int{154} } func (m *CreatePrivilegeTokenRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -10391,7 +10540,7 @@ func (m *CreateRegisterChallengeRequest) Reset() { *m = CreateRegisterCh func (m *CreateRegisterChallengeRequest) String() string { return proto.CompactTextString(m) } func (*CreateRegisterChallengeRequest) ProtoMessage() {} func (*CreateRegisterChallengeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{153} + return fileDescriptor_0ffcffcda38ae159, []int{155} } func (m *CreateRegisterChallengeRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -10479,7 +10628,7 @@ func (m *PaginatedResource) Reset() { *m = PaginatedResource{} } func (m *PaginatedResource) String() string { return proto.CompactTextString(m) } func (*PaginatedResource) ProtoMessage() {} func (*PaginatedResource) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{154} + return fileDescriptor_0ffcffcda38ae159, []int{156} } func (m *PaginatedResource) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -10720,7 +10869,7 @@ func (m *ListUnifiedResourcesRequest) Reset() { *m = ListUnifiedResource func (m *ListUnifiedResourcesRequest) String() string { return proto.CompactTextString(m) } func (*ListUnifiedResourcesRequest) ProtoMessage() {} func (*ListUnifiedResourcesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{155} + return fileDescriptor_0ffcffcda38ae159, []int{157} } func (m *ListUnifiedResourcesRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -10857,7 +11006,7 @@ func (m *ListUnifiedResourcesResponse) Reset() { *m = ListUnifiedResourc func (m *ListUnifiedResourcesResponse) String() string { return proto.CompactTextString(m) } func (*ListUnifiedResourcesResponse) ProtoMessage() {} func (*ListUnifiedResourcesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{156} + return fileDescriptor_0ffcffcda38ae159, []int{158} } func (m *ListUnifiedResourcesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -10953,7 +11102,7 @@ func (m *ListResourcesRequest) Reset() { *m = ListResourcesRequest{} } func (m *ListResourcesRequest) String() string { return proto.CompactTextString(m) } func (*ListResourcesRequest) ProtoMessage() {} func (*ListResourcesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{157} + return fileDescriptor_0ffcffcda38ae159, []int{159} } func (m *ListResourcesRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11089,7 +11238,7 @@ func (m *GetSSHTargetsRequest) Reset() { *m = GetSSHTargetsRequest{} } func (m *GetSSHTargetsRequest) String() string { return proto.CompactTextString(m) } func (*GetSSHTargetsRequest) ProtoMessage() {} func (*GetSSHTargetsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{158} + return fileDescriptor_0ffcffcda38ae159, []int{160} } func (m *GetSSHTargetsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11145,7 +11294,7 @@ func (m *GetSSHTargetsResponse) Reset() { *m = GetSSHTargetsResponse{} } func (m *GetSSHTargetsResponse) String() string { return proto.CompactTextString(m) } func (*GetSSHTargetsResponse) ProtoMessage() {} func (*GetSSHTargetsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{159} + return fileDescriptor_0ffcffcda38ae159, []int{161} } func (m *GetSSHTargetsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11200,7 +11349,7 @@ func (m *ListResourcesResponse) Reset() { *m = ListResourcesResponse{} } func (m *ListResourcesResponse) String() string { return proto.CompactTextString(m) } func (*ListResourcesResponse) ProtoMessage() {} func (*ListResourcesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{160} + return fileDescriptor_0ffcffcda38ae159, []int{162} } func (m *ListResourcesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11265,7 +11414,7 @@ func (m *CreateSessionTrackerRequest) Reset() { *m = CreateSessionTracke func (m *CreateSessionTrackerRequest) String() string { return proto.CompactTextString(m) } func (*CreateSessionTrackerRequest) ProtoMessage() {} func (*CreateSessionTrackerRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{161} + return fileDescriptor_0ffcffcda38ae159, []int{163} } func (m *CreateSessionTrackerRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11314,7 +11463,7 @@ func (m *GetSessionTrackerRequest) Reset() { *m = GetSessionTrackerReque func (m *GetSessionTrackerRequest) String() string { return proto.CompactTextString(m) } func (*GetSessionTrackerRequest) ProtoMessage() {} func (*GetSessionTrackerRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{162} + return fileDescriptor_0ffcffcda38ae159, []int{164} } func (m *GetSessionTrackerRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11363,7 +11512,7 @@ func (m *RemoveSessionTrackerRequest) Reset() { *m = RemoveSessionTracke func (m *RemoveSessionTrackerRequest) String() string { return proto.CompactTextString(m) } func (*RemoveSessionTrackerRequest) ProtoMessage() {} func (*RemoveSessionTrackerRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{163} + return fileDescriptor_0ffcffcda38ae159, []int{165} } func (m *RemoveSessionTrackerRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11411,7 +11560,7 @@ func (m *SessionTrackerUpdateState) Reset() { *m = SessionTrackerUpdateS func (m *SessionTrackerUpdateState) String() string { return proto.CompactTextString(m) } func (*SessionTrackerUpdateState) ProtoMessage() {} func (*SessionTrackerUpdateState) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{164} + return fileDescriptor_0ffcffcda38ae159, []int{166} } func (m *SessionTrackerUpdateState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11459,7 +11608,7 @@ func (m *SessionTrackerAddParticipant) Reset() { *m = SessionTrackerAddP func (m *SessionTrackerAddParticipant) String() string { return proto.CompactTextString(m) } func (*SessionTrackerAddParticipant) ProtoMessage() {} func (*SessionTrackerAddParticipant) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{165} + return fileDescriptor_0ffcffcda38ae159, []int{167} } func (m *SessionTrackerAddParticipant) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11507,7 +11656,7 @@ func (m *SessionTrackerRemoveParticipant) Reset() { *m = SessionTrackerR func (m *SessionTrackerRemoveParticipant) String() string { return proto.CompactTextString(m) } func (*SessionTrackerRemoveParticipant) ProtoMessage() {} func (*SessionTrackerRemoveParticipant) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{166} + return fileDescriptor_0ffcffcda38ae159, []int{168} } func (m *SessionTrackerRemoveParticipant) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11556,7 +11705,7 @@ func (m *SessionTrackerUpdateExpiry) Reset() { *m = SessionTrackerUpdate func (m *SessionTrackerUpdateExpiry) String() string { return proto.CompactTextString(m) } func (*SessionTrackerUpdateExpiry) ProtoMessage() {} func (*SessionTrackerUpdateExpiry) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{167} + return fileDescriptor_0ffcffcda38ae159, []int{169} } func (m *SessionTrackerUpdateExpiry) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11611,7 +11760,7 @@ func (m *UpdateSessionTrackerRequest) Reset() { *m = UpdateSessionTracke func (m *UpdateSessionTrackerRequest) String() string { return proto.CompactTextString(m) } func (*UpdateSessionTrackerRequest) ProtoMessage() {} func (*UpdateSessionTrackerRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{168} + return fileDescriptor_0ffcffcda38ae159, []int{170} } func (m *UpdateSessionTrackerRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11729,7 +11878,7 @@ func (m *PresenceMFAChallengeRequest) Reset() { *m = PresenceMFAChalleng func (m *PresenceMFAChallengeRequest) String() string { return proto.CompactTextString(m) } func (*PresenceMFAChallengeRequest) ProtoMessage() {} func (*PresenceMFAChallengeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{169} + return fileDescriptor_0ffcffcda38ae159, []int{171} } func (m *PresenceMFAChallengeRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11780,7 +11929,7 @@ func (m *PresenceMFAChallengeSend) Reset() { *m = PresenceMFAChallengeSe func (m *PresenceMFAChallengeSend) String() string { return proto.CompactTextString(m) } func (*PresenceMFAChallengeSend) ProtoMessage() {} func (*PresenceMFAChallengeSend) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{170} + return fileDescriptor_0ffcffcda38ae159, []int{172} } func (m *PresenceMFAChallengeSend) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11867,7 +12016,7 @@ func (m *GetDomainNameResponse) Reset() { *m = GetDomainNameResponse{} } func (m *GetDomainNameResponse) String() string { return proto.CompactTextString(m) } func (*GetDomainNameResponse) ProtoMessage() {} func (*GetDomainNameResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{171} + return fileDescriptor_0ffcffcda38ae159, []int{173} } func (m *GetDomainNameResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11916,7 +12065,7 @@ func (m *GetClusterCACertResponse) Reset() { *m = GetClusterCACertRespon func (m *GetClusterCACertResponse) String() string { return proto.CompactTextString(m) } func (*GetClusterCACertResponse) ProtoMessage() {} func (*GetClusterCACertResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{172} + return fileDescriptor_0ffcffcda38ae159, []int{174} } func (m *GetClusterCACertResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11964,7 +12113,7 @@ func (m *GetLicenseResponse) Reset() { *m = GetLicenseResponse{} } func (m *GetLicenseResponse) String() string { return proto.CompactTextString(m) } func (*GetLicenseResponse) ProtoMessage() {} func (*GetLicenseResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{173} + return fileDescriptor_0ffcffcda38ae159, []int{175} } func (m *GetLicenseResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -12012,7 +12161,7 @@ func (m *ListReleasesResponse) Reset() { *m = ListReleasesResponse{} } func (m *ListReleasesResponse) String() string { return proto.CompactTextString(m) } func (*ListReleasesResponse) ProtoMessage() {} func (*ListReleasesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{174} + return fileDescriptor_0ffcffcda38ae159, []int{176} } func (m *ListReleasesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -12061,7 +12210,7 @@ func (m *GetOIDCAuthRequestRequest) Reset() { *m = GetOIDCAuthRequestReq func (m *GetOIDCAuthRequestRequest) String() string { return proto.CompactTextString(m) } func (*GetOIDCAuthRequestRequest) ProtoMessage() {} func (*GetOIDCAuthRequestRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{175} + return fileDescriptor_0ffcffcda38ae159, []int{177} } func (m *GetOIDCAuthRequestRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -12110,7 +12259,7 @@ func (m *GetSAMLAuthRequestRequest) Reset() { *m = GetSAMLAuthRequestReq func (m *GetSAMLAuthRequestRequest) String() string { return proto.CompactTextString(m) } func (*GetSAMLAuthRequestRequest) ProtoMessage() {} func (*GetSAMLAuthRequestRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{176} + return fileDescriptor_0ffcffcda38ae159, []int{178} } func (m *GetSAMLAuthRequestRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -12159,7 +12308,7 @@ func (m *GetGithubAuthRequestRequest) Reset() { *m = GetGithubAuthReques func (m *GetGithubAuthRequestRequest) String() string { return proto.CompactTextString(m) } func (*GetGithubAuthRequestRequest) ProtoMessage() {} func (*GetGithubAuthRequestRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{177} + return fileDescriptor_0ffcffcda38ae159, []int{179} } func (m *GetGithubAuthRequestRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -12208,7 +12357,7 @@ func (m *CreateOIDCConnectorRequest) Reset() { *m = CreateOIDCConnectorR func (m *CreateOIDCConnectorRequest) String() string { return proto.CompactTextString(m) } func (*CreateOIDCConnectorRequest) ProtoMessage() {} func (*CreateOIDCConnectorRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{178} + return fileDescriptor_0ffcffcda38ae159, []int{180} } func (m *CreateOIDCConnectorRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -12257,7 +12406,7 @@ func (m *UpdateOIDCConnectorRequest) Reset() { *m = UpdateOIDCConnectorR func (m *UpdateOIDCConnectorRequest) String() string { return proto.CompactTextString(m) } func (*UpdateOIDCConnectorRequest) ProtoMessage() {} func (*UpdateOIDCConnectorRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{179} + return fileDescriptor_0ffcffcda38ae159, []int{181} } func (m *UpdateOIDCConnectorRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -12306,7 +12455,7 @@ func (m *UpsertOIDCConnectorRequest) Reset() { *m = UpsertOIDCConnectorR func (m *UpsertOIDCConnectorRequest) String() string { return proto.CompactTextString(m) } func (*UpsertOIDCConnectorRequest) ProtoMessage() {} func (*UpsertOIDCConnectorRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{180} + return fileDescriptor_0ffcffcda38ae159, []int{182} } func (m *UpsertOIDCConnectorRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -12355,7 +12504,7 @@ func (m *CreateSAMLConnectorRequest) Reset() { *m = CreateSAMLConnectorR func (m *CreateSAMLConnectorRequest) String() string { return proto.CompactTextString(m) } func (*CreateSAMLConnectorRequest) ProtoMessage() {} func (*CreateSAMLConnectorRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{181} + return fileDescriptor_0ffcffcda38ae159, []int{183} } func (m *CreateSAMLConnectorRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -12404,7 +12553,7 @@ func (m *UpdateSAMLConnectorRequest) Reset() { *m = UpdateSAMLConnectorR func (m *UpdateSAMLConnectorRequest) String() string { return proto.CompactTextString(m) } func (*UpdateSAMLConnectorRequest) ProtoMessage() {} func (*UpdateSAMLConnectorRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{182} + return fileDescriptor_0ffcffcda38ae159, []int{184} } func (m *UpdateSAMLConnectorRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -12453,7 +12602,7 @@ func (m *UpsertSAMLConnectorRequest) Reset() { *m = UpsertSAMLConnectorR func (m *UpsertSAMLConnectorRequest) String() string { return proto.CompactTextString(m) } func (*UpsertSAMLConnectorRequest) ProtoMessage() {} func (*UpsertSAMLConnectorRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{183} + return fileDescriptor_0ffcffcda38ae159, []int{185} } func (m *UpsertSAMLConnectorRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -12502,7 +12651,7 @@ func (m *CreateGithubConnectorRequest) Reset() { *m = CreateGithubConnec func (m *CreateGithubConnectorRequest) String() string { return proto.CompactTextString(m) } func (*CreateGithubConnectorRequest) ProtoMessage() {} func (*CreateGithubConnectorRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{184} + return fileDescriptor_0ffcffcda38ae159, []int{186} } func (m *CreateGithubConnectorRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -12551,7 +12700,7 @@ func (m *UpdateGithubConnectorRequest) Reset() { *m = UpdateGithubConnec func (m *UpdateGithubConnectorRequest) String() string { return proto.CompactTextString(m) } func (*UpdateGithubConnectorRequest) ProtoMessage() {} func (*UpdateGithubConnectorRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{185} + return fileDescriptor_0ffcffcda38ae159, []int{187} } func (m *UpdateGithubConnectorRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -12600,7 +12749,7 @@ func (m *UpsertGithubConnectorRequest) Reset() { *m = UpsertGithubConnec func (m *UpsertGithubConnectorRequest) String() string { return proto.CompactTextString(m) } func (*UpsertGithubConnectorRequest) ProtoMessage() {} func (*UpsertGithubConnectorRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{186} + return fileDescriptor_0ffcffcda38ae159, []int{188} } func (m *UpsertGithubConnectorRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -12651,7 +12800,7 @@ func (m *GetSSODiagnosticInfoRequest) Reset() { *m = GetSSODiagnosticInf func (m *GetSSODiagnosticInfoRequest) String() string { return proto.CompactTextString(m) } func (*GetSSODiagnosticInfoRequest) ProtoMessage() {} func (*GetSSODiagnosticInfoRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{187} + return fileDescriptor_0ffcffcda38ae159, []int{189} } func (m *GetSSODiagnosticInfoRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -12717,7 +12866,7 @@ func (m *SystemRoleAssertion) Reset() { *m = SystemRoleAssertion{} } func (m *SystemRoleAssertion) String() string { return proto.CompactTextString(m) } func (*SystemRoleAssertion) ProtoMessage() {} func (*SystemRoleAssertion) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{188} + return fileDescriptor_0ffcffcda38ae159, []int{190} } func (m *SystemRoleAssertion) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -12787,7 +12936,7 @@ func (m *SystemRoleAssertionSet) Reset() { *m = SystemRoleAssertionSet{} func (m *SystemRoleAssertionSet) String() string { return proto.CompactTextString(m) } func (*SystemRoleAssertionSet) ProtoMessage() {} func (*SystemRoleAssertionSet) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{189} + return fileDescriptor_0ffcffcda38ae159, []int{191} } func (m *SystemRoleAssertionSet) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -12856,7 +13005,7 @@ func (m *UpstreamInventoryOneOf) Reset() { *m = UpstreamInventoryOneOf{} func (m *UpstreamInventoryOneOf) String() string { return proto.CompactTextString(m) } func (*UpstreamInventoryOneOf) ProtoMessage() {} func (*UpstreamInventoryOneOf) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{190} + return fileDescriptor_0ffcffcda38ae159, []int{192} } func (m *UpstreamInventoryOneOf) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -12983,7 +13132,7 @@ func (m *DownstreamInventoryOneOf) Reset() { *m = DownstreamInventoryOne func (m *DownstreamInventoryOneOf) String() string { return proto.CompactTextString(m) } func (*DownstreamInventoryOneOf) ProtoMessage() {} func (*DownstreamInventoryOneOf) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{191} + return fileDescriptor_0ffcffcda38ae159, []int{193} } func (m *DownstreamInventoryOneOf) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -13082,7 +13231,7 @@ func (m *DownstreamInventoryPing) Reset() { *m = DownstreamInventoryPing func (m *DownstreamInventoryPing) String() string { return proto.CompactTextString(m) } func (*DownstreamInventoryPing) ProtoMessage() {} func (*DownstreamInventoryPing) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{192} + return fileDescriptor_0ffcffcda38ae159, []int{194} } func (m *DownstreamInventoryPing) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -13131,7 +13280,7 @@ func (m *UpstreamInventoryPong) Reset() { *m = UpstreamInventoryPong{} } func (m *UpstreamInventoryPong) String() string { return proto.CompactTextString(m) } func (*UpstreamInventoryPong) ProtoMessage() {} func (*UpstreamInventoryPong) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{193} + return fileDescriptor_0ffcffcda38ae159, []int{195} } func (m *UpstreamInventoryPong) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -13198,7 +13347,7 @@ func (m *UpstreamInventoryHello) Reset() { *m = UpstreamInventoryHello{} func (m *UpstreamInventoryHello) String() string { return proto.CompactTextString(m) } func (*UpstreamInventoryHello) ProtoMessage() {} func (*UpstreamInventoryHello) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{194} + return fileDescriptor_0ffcffcda38ae159, []int{196} } func (m *UpstreamInventoryHello) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -13298,7 +13447,7 @@ func (m *UpstreamInventoryAgentMetadata) Reset() { *m = UpstreamInventor func (m *UpstreamInventoryAgentMetadata) String() string { return proto.CompactTextString(m) } func (*UpstreamInventoryAgentMetadata) ProtoMessage() {} func (*UpstreamInventoryAgentMetadata) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{195} + return fileDescriptor_0ffcffcda38ae159, []int{197} } func (m *UpstreamInventoryAgentMetadata) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -13400,7 +13549,7 @@ func (m *DownstreamInventoryHello) Reset() { *m = DownstreamInventoryHel func (m *DownstreamInventoryHello) String() string { return proto.CompactTextString(m) } func (*DownstreamInventoryHello) ProtoMessage() {} func (*DownstreamInventoryHello) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{196} + return fileDescriptor_0ffcffcda38ae159, []int{198} } func (m *DownstreamInventoryHello) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -13503,7 +13652,7 @@ func (m *DownstreamInventoryHello_SupportedCapabilities) String() string { } func (*DownstreamInventoryHello_SupportedCapabilities) ProtoMessage() {} func (*DownstreamInventoryHello_SupportedCapabilities) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{196, 0} + return fileDescriptor_0ffcffcda38ae159, []int{198, 0} } func (m *DownstreamInventoryHello_SupportedCapabilities) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -13676,7 +13825,7 @@ func (m *InventoryUpdateLabelsRequest) Reset() { *m = InventoryUpdateLab func (m *InventoryUpdateLabelsRequest) String() string { return proto.CompactTextString(m) } func (*InventoryUpdateLabelsRequest) ProtoMessage() {} func (*InventoryUpdateLabelsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{197} + return fileDescriptor_0ffcffcda38ae159, []int{199} } func (m *InventoryUpdateLabelsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -13742,7 +13891,7 @@ func (m *DownstreamInventoryUpdateLabels) Reset() { *m = DownstreamInven func (m *DownstreamInventoryUpdateLabels) String() string { return proto.CompactTextString(m) } func (*DownstreamInventoryUpdateLabels) ProtoMessage() {} func (*DownstreamInventoryUpdateLabels) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{198} + return fileDescriptor_0ffcffcda38ae159, []int{200} } func (m *DownstreamInventoryUpdateLabels) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -13807,7 +13956,7 @@ func (m *InventoryHeartbeat) Reset() { *m = InventoryHeartbeat{} } func (m *InventoryHeartbeat) String() string { return proto.CompactTextString(m) } func (*InventoryHeartbeat) ProtoMessage() {} func (*InventoryHeartbeat) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{199} + return fileDescriptor_0ffcffcda38ae159, []int{201} } func (m *InventoryHeartbeat) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -13879,7 +14028,7 @@ func (m *UpstreamInventoryGoodbye) Reset() { *m = UpstreamInventoryGoodb func (m *UpstreamInventoryGoodbye) String() string { return proto.CompactTextString(m) } func (*UpstreamInventoryGoodbye) ProtoMessage() {} func (*UpstreamInventoryGoodbye) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{200} + return fileDescriptor_0ffcffcda38ae159, []int{202} } func (m *UpstreamInventoryGoodbye) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -13929,7 +14078,7 @@ func (m *InventoryStatusRequest) Reset() { *m = InventoryStatusRequest{} func (m *InventoryStatusRequest) String() string { return proto.CompactTextString(m) } func (*InventoryStatusRequest) ProtoMessage() {} func (*InventoryStatusRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{201} + return fileDescriptor_0ffcffcda38ae159, []int{203} } func (m *InventoryStatusRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -13987,7 +14136,7 @@ func (m *InventoryStatusSummary) Reset() { *m = InventoryStatusSummary{} func (m *InventoryStatusSummary) String() string { return proto.CompactTextString(m) } func (*InventoryStatusSummary) ProtoMessage() {} func (*InventoryStatusSummary) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{202} + return fileDescriptor_0ffcffcda38ae159, []int{204} } func (m *InventoryStatusSummary) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -14064,7 +14213,7 @@ func (m *InventoryConnectedServiceCountsRequest) Reset() { func (m *InventoryConnectedServiceCountsRequest) String() string { return proto.CompactTextString(m) } func (*InventoryConnectedServiceCountsRequest) ProtoMessage() {} func (*InventoryConnectedServiceCountsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{203} + return fileDescriptor_0ffcffcda38ae159, []int{205} } func (m *InventoryConnectedServiceCountsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -14106,7 +14255,7 @@ func (m *InventoryConnectedServiceCounts) Reset() { *m = InventoryConnec func (m *InventoryConnectedServiceCounts) String() string { return proto.CompactTextString(m) } func (*InventoryConnectedServiceCounts) ProtoMessage() {} func (*InventoryConnectedServiceCounts) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{204} + return fileDescriptor_0ffcffcda38ae159, []int{206} } func (m *InventoryConnectedServiceCounts) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -14160,7 +14309,7 @@ func (m *InventoryPingRequest) Reset() { *m = InventoryPingRequest{} } func (m *InventoryPingRequest) String() string { return proto.CompactTextString(m) } func (*InventoryPingRequest) ProtoMessage() {} func (*InventoryPingRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{205} + return fileDescriptor_0ffcffcda38ae159, []int{207} } func (m *InventoryPingRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -14216,7 +14365,7 @@ func (m *InventoryPingResponse) Reset() { *m = InventoryPingResponse{} } func (m *InventoryPingResponse) String() string { return proto.CompactTextString(m) } func (*InventoryPingResponse) ProtoMessage() {} func (*InventoryPingResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{206} + return fileDescriptor_0ffcffcda38ae159, []int{208} } func (m *InventoryPingResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -14265,7 +14414,7 @@ func (m *GetClusterAlertsResponse) Reset() { *m = GetClusterAlertsRespon func (m *GetClusterAlertsResponse) String() string { return proto.CompactTextString(m) } func (*GetClusterAlertsResponse) ProtoMessage() {} func (*GetClusterAlertsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{207} + return fileDescriptor_0ffcffcda38ae159, []int{209} } func (m *GetClusterAlertsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -14312,7 +14461,7 @@ func (m *GetAlertAcksRequest) Reset() { *m = GetAlertAcksRequest{} } func (m *GetAlertAcksRequest) String() string { return proto.CompactTextString(m) } func (*GetAlertAcksRequest) ProtoMessage() {} func (*GetAlertAcksRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{208} + return fileDescriptor_0ffcffcda38ae159, []int{210} } func (m *GetAlertAcksRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -14354,7 +14503,7 @@ func (m *GetAlertAcksResponse) Reset() { *m = GetAlertAcksResponse{} } func (m *GetAlertAcksResponse) String() string { return proto.CompactTextString(m) } func (*GetAlertAcksResponse) ProtoMessage() {} func (*GetAlertAcksResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{209} + return fileDescriptor_0ffcffcda38ae159, []int{211} } func (m *GetAlertAcksResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -14404,7 +14553,7 @@ func (m *ClearAlertAcksRequest) Reset() { *m = ClearAlertAcksRequest{} } func (m *ClearAlertAcksRequest) String() string { return proto.CompactTextString(m) } func (*ClearAlertAcksRequest) ProtoMessage() {} func (*ClearAlertAcksRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{210} + return fileDescriptor_0ffcffcda38ae159, []int{212} } func (m *ClearAlertAcksRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -14453,7 +14602,7 @@ func (m *UpsertClusterAlertRequest) Reset() { *m = UpsertClusterAlertReq func (m *UpsertClusterAlertRequest) String() string { return proto.CompactTextString(m) } func (*UpsertClusterAlertRequest) ProtoMessage() {} func (*UpsertClusterAlertRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{211} + return fileDescriptor_0ffcffcda38ae159, []int{213} } func (m *UpsertClusterAlertRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -14502,7 +14651,7 @@ func (m *GetConnectionDiagnosticRequest) Reset() { *m = GetConnectionDia func (m *GetConnectionDiagnosticRequest) String() string { return proto.CompactTextString(m) } func (*GetConnectionDiagnosticRequest) ProtoMessage() {} func (*GetConnectionDiagnosticRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{212} + return fileDescriptor_0ffcffcda38ae159, []int{214} } func (m *GetConnectionDiagnosticRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -14553,7 +14702,7 @@ func (m *AppendDiagnosticTraceRequest) Reset() { *m = AppendDiagnosticTr func (m *AppendDiagnosticTraceRequest) String() string { return proto.CompactTextString(m) } func (*AppendDiagnosticTraceRequest) ProtoMessage() {} func (*AppendDiagnosticTraceRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{213} + return fileDescriptor_0ffcffcda38ae159, []int{215} } func (m *AppendDiagnosticTraceRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -14608,7 +14757,7 @@ func (m *SubmitUsageEventRequest) Reset() { *m = SubmitUsageEventRequest func (m *SubmitUsageEventRequest) String() string { return proto.CompactTextString(m) } func (*SubmitUsageEventRequest) ProtoMessage() {} func (*SubmitUsageEventRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{214} + return fileDescriptor_0ffcffcda38ae159, []int{216} } func (m *SubmitUsageEventRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -14655,7 +14804,7 @@ func (m *GetLicenseRequest) Reset() { *m = GetLicenseRequest{} } func (m *GetLicenseRequest) String() string { return proto.CompactTextString(m) } func (*GetLicenseRequest) ProtoMessage() {} func (*GetLicenseRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{215} + return fileDescriptor_0ffcffcda38ae159, []int{217} } func (m *GetLicenseRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -14695,7 +14844,7 @@ func (m *ListReleasesRequest) Reset() { *m = ListReleasesRequest{} } func (m *ListReleasesRequest) String() string { return proto.CompactTextString(m) } func (*ListReleasesRequest) ProtoMessage() {} func (*ListReleasesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{216} + return fileDescriptor_0ffcffcda38ae159, []int{218} } func (m *ListReleasesRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -14739,7 +14888,7 @@ func (m *CreateTokenV2Request) Reset() { *m = CreateTokenV2Request{} } func (m *CreateTokenV2Request) String() string { return proto.CompactTextString(m) } func (*CreateTokenV2Request) ProtoMessage() {} func (*CreateTokenV2Request) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{217} + return fileDescriptor_0ffcffcda38ae159, []int{219} } func (m *CreateTokenV2Request) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -14816,7 +14965,7 @@ func (m *UpsertTokenV2Request) Reset() { *m = UpsertTokenV2Request{} } func (m *UpsertTokenV2Request) String() string { return proto.CompactTextString(m) } func (*UpsertTokenV2Request) ProtoMessage() {} func (*UpsertTokenV2Request) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{218} + return fileDescriptor_0ffcffcda38ae159, []int{220} } func (m *UpsertTokenV2Request) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -14891,7 +15040,7 @@ func (m *GetHeadlessAuthenticationRequest) Reset() { *m = GetHeadlessAut func (m *GetHeadlessAuthenticationRequest) String() string { return proto.CompactTextString(m) } func (*GetHeadlessAuthenticationRequest) ProtoMessage() {} func (*GetHeadlessAuthenticationRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{219} + return fileDescriptor_0ffcffcda38ae159, []int{221} } func (m *GetHeadlessAuthenticationRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -14949,7 +15098,7 @@ func (m *UpdateHeadlessAuthenticationStateRequest) Reset() { func (m *UpdateHeadlessAuthenticationStateRequest) String() string { return proto.CompactTextString(m) } func (*UpdateHeadlessAuthenticationStateRequest) ProtoMessage() {} func (*UpdateHeadlessAuthenticationStateRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{220} + return fileDescriptor_0ffcffcda38ae159, []int{222} } func (m *UpdateHeadlessAuthenticationStateRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -15015,7 +15164,7 @@ func (m *ExportUpgradeWindowsRequest) Reset() { *m = ExportUpgradeWindow func (m *ExportUpgradeWindowsRequest) String() string { return proto.CompactTextString(m) } func (*ExportUpgradeWindowsRequest) ProtoMessage() {} func (*ExportUpgradeWindowsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{221} + return fileDescriptor_0ffcffcda38ae159, []int{223} } func (m *ExportUpgradeWindowsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -15081,7 +15230,7 @@ func (m *ExportUpgradeWindowsResponse) Reset() { *m = ExportUpgradeWindo func (m *ExportUpgradeWindowsResponse) String() string { return proto.CompactTextString(m) } func (*ExportUpgradeWindowsResponse) ProtoMessage() {} func (*ExportUpgradeWindowsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{222} + return fileDescriptor_0ffcffcda38ae159, []int{224} } func (m *ExportUpgradeWindowsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -15156,7 +15305,7 @@ func (m *ListAccessRequestsRequest) Reset() { *m = ListAccessRequestsReq func (m *ListAccessRequestsRequest) String() string { return proto.CompactTextString(m) } func (*ListAccessRequestsRequest) ProtoMessage() {} func (*ListAccessRequestsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{223} + return fileDescriptor_0ffcffcda38ae159, []int{225} } func (m *ListAccessRequestsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -15235,7 +15384,7 @@ func (m *ListAccessRequestsResponse) Reset() { *m = ListAccessRequestsRe func (m *ListAccessRequestsResponse) String() string { return proto.CompactTextString(m) } func (*ListAccessRequestsResponse) ProtoMessage() {} func (*ListAccessRequestsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{224} + return fileDescriptor_0ffcffcda38ae159, []int{226} } func (m *ListAccessRequestsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -15291,7 +15440,7 @@ func (m *AccessRequestAllowedPromotionRequest) Reset() { *m = AccessRequ func (m *AccessRequestAllowedPromotionRequest) String() string { return proto.CompactTextString(m) } func (*AccessRequestAllowedPromotionRequest) ProtoMessage() {} func (*AccessRequestAllowedPromotionRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{225} + return fileDescriptor_0ffcffcda38ae159, []int{227} } func (m *AccessRequestAllowedPromotionRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -15340,7 +15489,7 @@ func (m *AccessRequestAllowedPromotionResponse) Reset() { *m = AccessReq func (m *AccessRequestAllowedPromotionResponse) String() string { return proto.CompactTextString(m) } func (*AccessRequestAllowedPromotionResponse) ProtoMessage() {} func (*AccessRequestAllowedPromotionResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_0ffcffcda38ae159, []int{226} + return fileDescriptor_0ffcffcda38ae159, []int{228} } func (m *AccessRequestAllowedPromotionResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -15484,6 +15633,8 @@ func init() { proto.RegisterType((*MFAAuthenticateResponse)(nil), "proto.MFAAuthenticateResponse") proto.RegisterType((*TOTPChallenge)(nil), "proto.TOTPChallenge") proto.RegisterType((*TOTPResponse)(nil), "proto.TOTPResponse") + proto.RegisterType((*SSOChallenge)(nil), "proto.SSOChallenge") + proto.RegisterType((*SSOResponse)(nil), "proto.SSOResponse") proto.RegisterType((*MFARegisterChallenge)(nil), "proto.MFARegisterChallenge") proto.RegisterType((*MFARegisterResponse)(nil), "proto.MFARegisterResponse") proto.RegisterType((*TOTPRegisterChallenge)(nil), "proto.TOTPRegisterChallenge") @@ -15635,941 +15786,949 @@ func init() { } var fileDescriptor_0ffcffcda38ae159 = []byte{ - // 14935 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x7d, 0x5b, 0x6c, 0x5c, 0x49, - 0x76, 0x18, 0x9b, 0x6f, 0x1e, 0xbe, 0x5a, 0x45, 0x52, 0x6c, 0x51, 0x94, 0x5a, 0xba, 0x9a, 0x87, - 0x46, 0x3b, 0xab, 0x07, 0xe7, 0xb1, 0xf3, 0xda, 0x99, 0x69, 0x3e, 0x24, 0x52, 0xe2, 0x6b, 0x6e, - 0x93, 0xd4, 0xbc, 0xbc, 0xbd, 0x97, 0xdd, 0x25, 0xf2, 0x5a, 0xcd, 0x7b, 0x7b, 0xef, 0xbd, 0x2d, - 0x8d, 0xd6, 0xb1, 0x03, 0xaf, 0x13, 0xc4, 0x3f, 0x49, 0x6c, 0x20, 0x36, 0x1c, 0xf8, 0xc3, 0x09, - 0x90, 0x00, 0x41, 0x80, 0x04, 0xf9, 0x09, 0xfc, 0x93, 0x7c, 0x04, 0xf9, 0xc8, 0xc6, 0x80, 0x91, - 0x04, 0xb6, 0x7f, 0xf2, 0x41, 0x27, 0x0b, 0xf8, 0x87, 0x48, 0x3e, 0x8c, 0x20, 0x01, 0xb2, 0x80, - 0x81, 0xa0, 0x4e, 0x3d, 0x6e, 0xd5, 0x7d, 0x74, 0x93, 0x92, 0x66, 0x9d, 0x1f, 0x89, 0x7d, 0xea, - 0x9c, 0x53, 0x55, 0xa7, 0xea, 0x56, 0x9d, 0x3a, 0x75, 0xea, 0x1c, 0xb8, 0x19, 0xd1, 0x26, 0x6d, - 0xf9, 0x41, 0x74, 0xab, 0x49, 0x0f, 0x9c, 0xfa, 0xb3, 0x5b, 0xf5, 0xa6, 0x4b, 0xbd, 0xe8, 0x56, - 0x2b, 0xf0, 0x23, 0xff, 0x96, 0xd3, 0x8e, 0x0e, 0x43, 0x1a, 0x3c, 0x71, 0xeb, 0xf4, 0x26, 0x42, - 0xc8, 0x00, 0xfe, 0x37, 0x37, 0x7d, 0xe0, 0x1f, 0xf8, 0x1c, 0x87, 0xfd, 0xc5, 0x0b, 0xe7, 0x2e, - 0x1e, 0xf8, 0xfe, 0x41, 0x93, 0x72, 0xe2, 0xfd, 0xf6, 0xa3, 0x5b, 0xf4, 0xa8, 0x15, 0x3d, 0x13, - 0x85, 0xe5, 0x64, 0x61, 0xe4, 0x1e, 0xd1, 0x30, 0x72, 0x8e, 0x5a, 0x02, 0xe1, 0x0d, 0xd5, 0x14, - 0x27, 0x8a, 0x58, 0x49, 0xe4, 0xfa, 0xde, 0xad, 0x27, 0x77, 0xf4, 0x9f, 0x02, 0xf5, 0x7a, 0xc7, - 0x56, 0xd7, 0x69, 0x10, 0x85, 0xa7, 0xc2, 0xa4, 0x4f, 0xa8, 0x17, 0xa5, 0xaa, 0x17, 0x98, 0xd1, - 0xb3, 0x16, 0x0d, 0x39, 0x8a, 0xfc, 0x4f, 0xa0, 0x5e, 0xcd, 0x46, 0xc5, 0x7f, 0x05, 0xca, 0x77, - 0xb3, 0x51, 0x9e, 0xd2, 0x7d, 0x26, 0x53, 0x4f, 0xfd, 0xd1, 0x05, 0x3d, 0x70, 0x5a, 0x2d, 0x1a, - 0xc4, 0x7f, 0x08, 0xf4, 0x0b, 0x0a, 0xfd, 0xe8, 0x91, 0xc3, 0x44, 0x74, 0xf4, 0xc8, 0x49, 0x75, - 0xa3, 0x1d, 0x3a, 0x07, 0x54, 0x34, 0xff, 0xc9, 0x1d, 0xfd, 0x27, 0x47, 0xb5, 0xfe, 0xa0, 0x00, - 0x03, 0x0f, 0x9d, 0xa8, 0x7e, 0x48, 0x3e, 0x81, 0x81, 0x07, 0xae, 0xd7, 0x08, 0x4b, 0x85, 0x2b, - 0x7d, 0xd7, 0x47, 0x17, 0x8a, 0x37, 0x79, 0x57, 0xb0, 0x90, 0x15, 0x2c, 0xce, 0xfe, 0xf4, 0xb8, - 0xdc, 0x73, 0x72, 0x5c, 0x9e, 0x7c, 0xcc, 0xd0, 0xde, 0xf4, 0x8f, 0xdc, 0x08, 0xc7, 0xd6, 0xe6, - 0x74, 0x64, 0x17, 0xa6, 0x2a, 0xcd, 0xa6, 0xff, 0x74, 0xdb, 0x09, 0x22, 0xd7, 0x69, 0x56, 0xdb, - 0xf5, 0x3a, 0x0d, 0xc3, 0x52, 0xef, 0x95, 0xc2, 0xf5, 0xe1, 0xc5, 0x6b, 0x27, 0xc7, 0xe5, 0xb2, - 0xc3, 0x8a, 0x6b, 0x2d, 0x5e, 0x5e, 0x0b, 0x39, 0x82, 0xc6, 0x28, 0x8b, 0xde, 0xfa, 0xa3, 0x41, - 0x28, 0xae, 0xfa, 0x61, 0xb4, 0xc4, 0x46, 0xd4, 0xa6, 0x3f, 0x6a, 0xd3, 0x30, 0x22, 0xd7, 0x60, - 0x90, 0xc1, 0xd6, 0x96, 0x4b, 0x85, 0x2b, 0x85, 0xeb, 0x23, 0x8b, 0xa3, 0x27, 0xc7, 0xe5, 0xa1, - 0x43, 0x3f, 0x8c, 0x6a, 0x6e, 0xc3, 0x16, 0x45, 0xe4, 0x0d, 0x18, 0xde, 0xf4, 0x1b, 0x74, 0xd3, - 0x39, 0xa2, 0xd8, 0x8a, 0x91, 0xc5, 0xf1, 0x93, 0xe3, 0xf2, 0x88, 0xe7, 0x37, 0x68, 0xcd, 0x73, - 0x8e, 0xa8, 0xad, 0x8a, 0xc9, 0x1e, 0xf4, 0xdb, 0x7e, 0x93, 0x96, 0xfa, 0x10, 0x6d, 0xf1, 0xe4, - 0xb8, 0xdc, 0x1f, 0xf8, 0x4d, 0xfa, 0xf3, 0xe3, 0xf2, 0xbb, 0x07, 0x6e, 0x74, 0xd8, 0xde, 0xbf, - 0x59, 0xf7, 0x8f, 0x6e, 0x1d, 0x04, 0xce, 0x13, 0x97, 0x4f, 0x42, 0xa7, 0x79, 0x2b, 0x9e, 0xaa, - 0x2d, 0x57, 0x8c, 0x7b, 0xf5, 0x59, 0x18, 0xd1, 0x23, 0xc6, 0xc9, 0x46, 0x7e, 0xe4, 0x21, 0x4c, - 0x57, 0x1a, 0x0d, 0x97, 0x53, 0x6c, 0x07, 0xae, 0x57, 0x77, 0x5b, 0x4e, 0x33, 0x2c, 0xf5, 0x5f, - 0xe9, 0xbb, 0x3e, 0x22, 0x84, 0xa2, 0xca, 0x6b, 0x2d, 0x85, 0xa0, 0x09, 0x25, 0x93, 0x01, 0x79, - 0x0b, 0x86, 0x97, 0x37, 0xab, 0xac, 0xed, 0x61, 0x69, 0x00, 0x99, 0xcd, 0x9e, 0x1c, 0x97, 0xa7, - 0x1a, 0x5e, 0x88, 0x5d, 0xd3, 0x19, 0x28, 0x44, 0xf2, 0x2e, 0x8c, 0x6d, 0xb7, 0xf7, 0x9b, 0x6e, - 0x7d, 0x67, 0xbd, 0xfa, 0x80, 0x3e, 0x2b, 0x0d, 0x5e, 0x29, 0x5c, 0x1f, 0x5b, 0x24, 0x27, 0xc7, - 0xe5, 0x89, 0x16, 0xc2, 0x6b, 0x51, 0x33, 0xac, 0x3d, 0xa6, 0xcf, 0x6c, 0x03, 0x2f, 0xa6, 0xab, - 0x56, 0x57, 0x19, 0xdd, 0x50, 0x8a, 0x2e, 0x0c, 0x0f, 0x75, 0x3a, 0x8e, 0x47, 0x6e, 0x01, 0xd8, - 0xf4, 0xc8, 0x8f, 0x68, 0xa5, 0xd1, 0x08, 0x4a, 0xc3, 0x28, 0xdb, 0xc9, 0x93, 0xe3, 0xf2, 0x68, - 0x80, 0xd0, 0x9a, 0xd3, 0x68, 0x04, 0xb6, 0x86, 0x42, 0x96, 0x60, 0xd8, 0xf6, 0xb9, 0x80, 0x4b, - 0x23, 0x57, 0x0a, 0xd7, 0x47, 0x17, 0x26, 0xc5, 0x34, 0x94, 0xe0, 0xc5, 0xf3, 0x27, 0xc7, 0x65, - 0x12, 0x88, 0x5f, 0x7a, 0x2f, 0x25, 0x06, 0x29, 0xc3, 0xd0, 0xa6, 0xbf, 0xe4, 0xd4, 0x0f, 0x69, - 0x09, 0x70, 0xee, 0x0d, 0x9c, 0x1c, 0x97, 0x0b, 0xdf, 0xb5, 0x25, 0x94, 0x3c, 0x81, 0xd1, 0x78, - 0xa0, 0xc2, 0xd2, 0x28, 0x8a, 0x6f, 0xe7, 0xe4, 0xb8, 0x7c, 0x3e, 0x44, 0x70, 0x8d, 0x0d, 0xbd, - 0x26, 0xc1, 0x17, 0x98, 0x05, 0x7a, 0x45, 0xe4, 0x6b, 0x98, 0x89, 0x7f, 0x56, 0xc2, 0x90, 0x06, - 0x8c, 0xc7, 0xda, 0x72, 0x69, 0x1c, 0x25, 0xf3, 0xda, 0xc9, 0x71, 0xd9, 0xd2, 0x5a, 0x50, 0x73, - 0x24, 0x4a, 0xcd, 0x6d, 0x68, 0x3d, 0xcd, 0x66, 0x72, 0xbf, 0x7f, 0x78, 0xac, 0x38, 0x6e, 0x5f, - 0xda, 0xf5, 0xc2, 0xc8, 0xd9, 0x6f, 0xd2, 0x4c, 0x24, 0xeb, 0xaf, 0x0a, 0x40, 0xb6, 0x5a, 0xd4, - 0xab, 0x56, 0x57, 0xd9, 0xf7, 0x24, 0x3f, 0xa7, 0x37, 0x61, 0x84, 0x0f, 0x1c, 0x1b, 0xdd, 0x5e, - 0x1c, 0xdd, 0x89, 0x93, 0xe3, 0x32, 0x88, 0xd1, 0x65, 0x23, 0x1b, 0x23, 0x90, 0x57, 0xa1, 0x6f, - 0x67, 0x67, 0x1d, 0xbf, 0x95, 0xbe, 0xc5, 0xa9, 0x93, 0xe3, 0x72, 0x5f, 0x14, 0x35, 0x7f, 0x7e, - 0x5c, 0x1e, 0x5e, 0x6e, 0x07, 0x28, 0x16, 0x9b, 0x95, 0x93, 0x57, 0x61, 0x68, 0xa9, 0xd9, 0x0e, - 0x23, 0x1a, 0x94, 0xfa, 0xe3, 0x8f, 0xb4, 0xce, 0x41, 0xb6, 0x2c, 0x23, 0xdf, 0x81, 0xfe, 0xdd, - 0x90, 0x06, 0xa5, 0x01, 0x1c, 0xef, 0x71, 0x31, 0xde, 0x0c, 0xb4, 0xb7, 0xb0, 0x38, 0xcc, 0xbe, - 0xc4, 0x76, 0x48, 0x03, 0x1b, 0x91, 0xc8, 0x4d, 0x18, 0xe0, 0x83, 0x36, 0x88, 0x8b, 0xd4, 0xb8, - 0x9a, 0x1d, 0x4d, 0xba, 0xf7, 0xee, 0xe2, 0xc8, 0xc9, 0x71, 0x79, 0x00, 0x07, 0xcf, 0xe6, 0x68, - 0xf7, 0xfb, 0x87, 0x0b, 0xc5, 0x5e, 0x7b, 0x98, 0xd1, 0xb2, 0xcf, 0xc2, 0xfa, 0x0e, 0x8c, 0x6a, - 0xdd, 0x27, 0xf3, 0xd0, 0xcf, 0xfe, 0xc7, 0x45, 0x64, 0x8c, 0x57, 0xc6, 0x36, 0x0e, 0x1b, 0xa1, - 0xd6, 0x3f, 0x9a, 0x82, 0x22, 0xa3, 0x34, 0x56, 0x9e, 0x9b, 0xba, 0xa8, 0x38, 0x5d, 0xd1, 0x14, - 0x55, 0xa9, 0xa0, 0x0b, 0xeb, 0x3a, 0xa8, 0xda, 0xc5, 0x22, 0x34, 0x76, 0x72, 0x5c, 0x1e, 0x6e, - 0x0b, 0x58, 0xdc, 0x36, 0x52, 0x85, 0xa1, 0x95, 0x6f, 0x5a, 0x6e, 0x40, 0x43, 0x14, 0xed, 0xe8, - 0xc2, 0xdc, 0x4d, 0xbe, 0x5d, 0xde, 0x94, 0xdb, 0xe5, 0xcd, 0x1d, 0xb9, 0x5d, 0x2e, 0x5e, 0x12, - 0x8b, 0xf1, 0x39, 0xca, 0x49, 0xe2, 0xf9, 0xf1, 0x5b, 0x7f, 0x5e, 0x2e, 0xd8, 0x92, 0x13, 0x79, - 0x13, 0x06, 0xef, 0xfa, 0xc1, 0x91, 0x13, 0x89, 0x31, 0x98, 0x3e, 0x39, 0x2e, 0x17, 0x1f, 0x21, - 0x44, 0x9b, 0x52, 0x02, 0x87, 0xdc, 0x85, 0x09, 0xdb, 0x6f, 0x47, 0x74, 0xc7, 0x97, 0x23, 0x37, - 0x80, 0x54, 0x97, 0x4f, 0x8e, 0xcb, 0x73, 0x01, 0x2b, 0xa9, 0x45, 0x7e, 0x4d, 0x0c, 0xa1, 0x46, - 0x9f, 0xa0, 0x22, 0x2b, 0x30, 0x51, 0xc1, 0xd5, 0x5b, 0x48, 0x8d, 0x8f, 0xd7, 0xc8, 0xe2, 0xa5, - 0x93, 0xe3, 0xf2, 0x05, 0x07, 0x4b, 0x6a, 0x81, 0x28, 0xd2, 0xd9, 0x98, 0x44, 0x64, 0x13, 0xce, - 0x3d, 0x68, 0xef, 0xd3, 0xc0, 0xa3, 0x11, 0x0d, 0x65, 0x8b, 0x86, 0xb0, 0x45, 0x57, 0x4e, 0x8e, - 0xcb, 0xf3, 0x8f, 0x55, 0x61, 0x46, 0x9b, 0xd2, 0xa4, 0x84, 0xc2, 0xa4, 0x68, 0xe8, 0xb2, 0x13, - 0x39, 0xfb, 0x4e, 0x48, 0x71, 0x51, 0x1a, 0x5d, 0x38, 0xcf, 0x45, 0x7c, 0x33, 0x51, 0xba, 0x78, - 0x4d, 0x48, 0xf9, 0xa2, 0xea, 0x7b, 0x43, 0x14, 0x69, 0x15, 0x25, 0x79, 0xb2, 0xb5, 0x59, 0xed, - 0x3b, 0x23, 0xd8, 0x5a, 0x5c, 0x9b, 0xd5, 0xbe, 0xa3, 0xaf, 0x5a, 0x6a, 0x07, 0x5a, 0x87, 0x81, - 0x5d, 0xb6, 0x3b, 0xe3, 0x9a, 0x35, 0xb1, 0x70, 0x55, 0xb4, 0x28, 0x39, 0xff, 0x6e, 0xb2, 0x1f, - 0x88, 0x88, 0x5f, 0xde, 0x24, 0xee, 0xe8, 0xfa, 0x5e, 0x8c, 0x65, 0xe4, 0x33, 0x00, 0xd1, 0xaa, - 0x4a, 0xab, 0x55, 0x1a, 0xc5, 0x4e, 0x9e, 0x33, 0x3b, 0x59, 0x69, 0xb5, 0x16, 0x2f, 0x8b, 0xfe, - 0x9d, 0x57, 0xfd, 0x73, 0x5a, 0x2d, 0x8d, 0x9b, 0xc6, 0x84, 0x7c, 0x02, 0x63, 0xb8, 0xa4, 0xc9, - 0x11, 0x1d, 0xc3, 0x11, 0xbd, 0x78, 0x72, 0x5c, 0x9e, 0xc5, 0xd5, 0x2a, 0x63, 0x3c, 0x0d, 0x02, - 0xf2, 0x6b, 0x30, 0x23, 0xd8, 0x3d, 0x74, 0xbd, 0x86, 0xff, 0x34, 0x5c, 0xa6, 0xe1, 0xe3, 0xc8, - 0x6f, 0xe1, 0xf2, 0x37, 0xba, 0x30, 0x6f, 0x36, 0xcf, 0xc4, 0x59, 0xbc, 0x21, 0x5a, 0x6a, 0xa9, - 0x96, 0x3e, 0xe5, 0x08, 0xb5, 0x06, 0xc7, 0xd0, 0x17, 0xc8, 0x4c, 0x16, 0x64, 0x0d, 0x26, 0x77, - 0x43, 0x6a, 0xf4, 0x61, 0x02, 0xf7, 0x87, 0x32, 0x1b, 0xe1, 0x76, 0x48, 0x6b, 0x79, 0xfd, 0x48, - 0xd2, 0x11, 0x1b, 0xc8, 0x72, 0xe0, 0xb7, 0x12, 0x73, 0x7c, 0x12, 0x25, 0x62, 0x9d, 0x1c, 0x97, - 0x2f, 0x37, 0x02, 0xbf, 0x55, 0xcb, 0x9f, 0xe8, 0x19, 0xd4, 0xe4, 0x07, 0x70, 0x7e, 0xc9, 0xf7, - 0x3c, 0x5a, 0x67, 0x2b, 0xe8, 0xb2, 0xeb, 0x1c, 0x78, 0x7e, 0x18, 0xb9, 0xf5, 0xb5, 0xe5, 0x52, - 0x31, 0xde, 0x1e, 0xea, 0x0a, 0xa3, 0xd6, 0x50, 0x28, 0xe6, 0xf6, 0x90, 0xc3, 0x85, 0x7c, 0x05, - 0xe3, 0xa2, 0x2e, 0x1a, 0xe0, 0xd4, 0x3c, 0xd7, 0x79, 0xa2, 0x29, 0x64, 0xbe, 0xd1, 0x07, 0xf2, - 0x27, 0x57, 0x9d, 0x4c, 0x5e, 0xe4, 0x6b, 0x18, 0xdd, 0xb8, 0x5b, 0xb1, 0x69, 0xd8, 0xf2, 0xbd, - 0x90, 0x96, 0x08, 0x8e, 0xe8, 0x65, 0xc1, 0x7a, 0xe3, 0x6e, 0xa5, 0xd2, 0x8e, 0x0e, 0xa9, 0x17, - 0xb9, 0x75, 0x27, 0xa2, 0x12, 0x6b, 0x71, 0x8e, 0xcd, 0xbc, 0xa3, 0x47, 0x4e, 0x2d, 0x10, 0x10, - 0xad, 0x17, 0x3a, 0x3b, 0x32, 0x07, 0xc3, 0xd5, 0xea, 0xea, 0xba, 0x7f, 0xe0, 0x7a, 0xa5, 0x29, - 0x26, 0x0c, 0x5b, 0xfd, 0x26, 0x8f, 0x60, 0x46, 0x3b, 0x1b, 0xd4, 0xd8, 0xff, 0xf4, 0x88, 0x7a, - 0x51, 0x69, 0x1a, 0xdb, 0xf0, 0x5d, 0x75, 0xb8, 0xb9, 0xa9, 0x1f, 0x21, 0x9e, 0xdc, 0xb9, 0x59, - 0x89, 0x7f, 0x56, 0x25, 0xd1, 0x62, 0x6f, 0xa9, 0x60, 0x4f, 0x3b, 0x19, 0x25, 0x64, 0x07, 0x86, - 0xb6, 0xdb, 0x41, 0xcb, 0x0f, 0x69, 0x69, 0x06, 0x05, 0x77, 0xad, 0xd3, 0x17, 0x2a, 0x50, 0x17, - 0x67, 0xd8, 0x12, 0xdd, 0xe2, 0x3f, 0xb4, 0xde, 0x49, 0x56, 0xe4, 0x53, 0x18, 0xab, 0x56, 0x57, - 0xe3, 0x0d, 0xe5, 0x3c, 0x6e, 0x28, 0xf3, 0x27, 0xc7, 0xe5, 0x12, 0x53, 0xa9, 0xe2, 0x4d, 0x45, - 0xff, 0xaa, 0x74, 0x0a, 0xc6, 0x61, 0x67, 0xbd, 0x1a, 0x73, 0x98, 0x8d, 0x39, 0x30, 0x65, 0x2e, - 0x9b, 0x83, 0x4e, 0x41, 0xfe, 0x45, 0x01, 0xae, 0xe8, 0x2c, 0xb3, 0x04, 0x53, 0xba, 0xf0, 0x3c, - 0xd2, 0x5c, 0x38, 0x39, 0x2e, 0xdf, 0x34, 0xfb, 0x51, 0xcb, 0x1c, 0x2c, 0xad, 0x6d, 0x5d, 0x9b, - 0x82, 0xed, 0xd5, 0x3b, 0x90, 0xd9, 0xde, 0xb9, 0xe7, 0x6e, 0xaf, 0x29, 0xb5, 0xee, 0xed, 0xed, - 0xd6, 0x14, 0xeb, 0x73, 0x18, 0x51, 0x8b, 0x36, 0x19, 0x82, 0xbe, 0x4a, 0xb3, 0x59, 0xec, 0x61, - 0x7f, 0x54, 0xab, 0xab, 0xc5, 0x02, 0x99, 0x00, 0x88, 0x77, 0xaa, 0x62, 0x2f, 0x19, 0x83, 0x61, - 0xb9, 0x93, 0x14, 0xfb, 0x10, 0xbf, 0xd5, 0x2a, 0xf6, 0x13, 0x02, 0x13, 0xe6, 0x7a, 0x56, 0x1c, - 0xb0, 0x7e, 0xbb, 0x00, 0x23, 0xea, 0x3b, 0x24, 0x93, 0x30, 0xba, 0xbb, 0x59, 0xdd, 0x5e, 0x59, - 0x5a, 0xbb, 0xbb, 0xb6, 0xb2, 0x5c, 0xec, 0x21, 0x97, 0xe0, 0xc2, 0x4e, 0x75, 0xb5, 0xb6, 0xbc, - 0x58, 0x5b, 0xdf, 0x5a, 0xaa, 0xac, 0xd7, 0xb6, 0xed, 0xad, 0xcf, 0xbf, 0xa8, 0xed, 0xec, 0x6e, - 0x6e, 0xae, 0xac, 0x17, 0x0b, 0xa4, 0x04, 0xd3, 0xac, 0xf8, 0xc1, 0xee, 0xe2, 0x8a, 0x8e, 0x50, - 0xec, 0x25, 0x57, 0xe1, 0x52, 0x56, 0x49, 0x6d, 0x75, 0xa5, 0xb2, 0xbc, 0xbe, 0x52, 0xad, 0x16, - 0xfb, 0xc8, 0x2c, 0x4c, 0x31, 0x94, 0xca, 0xf6, 0xb6, 0x41, 0xdb, 0x6f, 0x35, 0x61, 0x54, 0xfb, - 0x00, 0xc8, 0x3c, 0x94, 0x96, 0x56, 0xec, 0x9d, 0xda, 0xf6, 0xae, 0xbd, 0xbd, 0x55, 0x5d, 0xa9, - 0x99, 0x2d, 0x4c, 0x96, 0xae, 0x6f, 0xdd, 0x5b, 0xdb, 0xac, 0x31, 0x50, 0xb5, 0x58, 0x60, 0xcd, - 0x30, 0x4a, 0xab, 0x6b, 0x9b, 0xf7, 0xd6, 0x57, 0x6a, 0xbb, 0xd5, 0x15, 0x81, 0xd2, 0x6b, 0xfd, - 0xa4, 0x37, 0xb5, 0xa5, 0x93, 0x05, 0x18, 0xad, 0x72, 0x7b, 0x05, 0x2e, 0x73, 0xfc, 0x80, 0xc8, - 0x74, 0xb4, 0x31, 0x61, 0xc6, 0xe0, 0x2b, 0x98, 0x8e, 0xc4, 0xb4, 0xb4, 0x6d, 0xf6, 0x35, 0xd7, - 0xfd, 0xa6, 0xae, 0xa5, 0xb5, 0x04, 0xcc, 0x56, 0xa5, 0x64, 0x41, 0xd3, 0xe7, 0xf8, 0x69, 0x11, - 0x4f, 0x24, 0x52, 0x9f, 0xd3, 0xf7, 0x76, 0xa5, 0xd9, 0x2d, 0xc4, 0x43, 0x2a, 0xd4, 0x30, 0xa4, - 0xc9, 0xd0, 0x25, 0x14, 0x1e, 0x79, 0x43, 0x6a, 0xba, 0xfc, 0x74, 0x87, 0x9b, 0x7d, 0xe2, 0x5c, - 0x22, 0x94, 0x5c, 0xab, 0x9d, 0xb3, 0xb1, 0x92, 0x0f, 0x93, 0x73, 0x46, 0x08, 0x03, 0x99, 0x25, - 0xf6, 0x4f, 0x3b, 0x81, 0x4a, 0xca, 0x30, 0xc0, 0x57, 0x5c, 0x2e, 0x0f, 0xd4, 0xad, 0x9b, 0x0c, - 0x60, 0x73, 0xb8, 0xf5, 0xbb, 0x7d, 0xba, 0x92, 0xc1, 0x74, 0x69, 0x4d, 0xde, 0xa8, 0x4b, 0xa3, - 0x9c, 0x11, 0xca, 0x8e, 0x82, 0xfc, 0x2b, 0xc1, 0xa3, 0x60, 0x5f, 0x7c, 0x14, 0x14, 0x9f, 0x1a, - 0x3f, 0x0a, 0xc6, 0x28, 0x6c, 0x14, 0x85, 0xda, 0x86, 0x5c, 0xfb, 0xe3, 0x51, 0x14, 0xaa, 0x9e, - 0x18, 0x45, 0x0d, 0x89, 0x7c, 0x00, 0x50, 0x79, 0x58, 0xc5, 0x33, 0x8f, 0xbd, 0x29, 0x54, 0x57, - 0xdc, 0x64, 0x9c, 0xa7, 0xa1, 0x38, 0x52, 0x05, 0xfa, 0x99, 0x51, 0xc3, 0x26, 0x8b, 0x30, 0x5e, - 0xf9, 0x71, 0x3b, 0xa0, 0x6b, 0x0d, 0xb6, 0x4f, 0x45, 0xfc, 0x70, 0x3c, 0xc2, 0x17, 0x52, 0x87, - 0x15, 0xd4, 0x5c, 0x51, 0xa2, 0x31, 0x30, 0x49, 0xc8, 0x16, 0x9c, 0xbb, 0xb7, 0xb4, 0x2d, 0xe6, - 0x55, 0xa5, 0x5e, 0xf7, 0xdb, 0x5e, 0x24, 0xf4, 0xd5, 0xab, 0x27, 0xc7, 0xe5, 0x4b, 0x07, 0xf5, - 0x56, 0x4d, 0xce, 0x41, 0x87, 0x17, 0xeb, 0x0a, 0x6b, 0x8a, 0x96, 0x5c, 0x83, 0xbe, 0x5d, 0x7b, - 0x4d, 0x9c, 0x9c, 0xcf, 0x9d, 0x1c, 0x97, 0xc7, 0xdb, 0x81, 0xab, 0x91, 0xb0, 0xd2, 0xfb, 0xfd, - 0xc3, 0xbd, 0xc5, 0x3e, 0x7b, 0xa4, 0x4a, 0xc3, 0x90, 0x1f, 0xf2, 0x9a, 0x30, 0x71, 0x8f, 0x46, - 0x6c, 0xf6, 0xc9, 0x43, 0x4b, 0xe7, 0xb1, 0xf9, 0x08, 0x46, 0x1f, 0xba, 0xd1, 0x61, 0x95, 0xd6, - 0x03, 0x1a, 0x49, 0x83, 0x0d, 0xca, 0xed, 0xa9, 0x1b, 0x1d, 0xd6, 0x42, 0x0e, 0xd7, 0x37, 0x67, - 0x0d, 0xdd, 0x5a, 0x81, 0x49, 0x51, 0x9b, 0x3a, 0x23, 0x2d, 0x98, 0x0c, 0x0b, 0xc8, 0x10, 0xc7, - 0x4e, 0x67, 0x68, 0xb2, 0xf9, 0xd7, 0xbd, 0x30, 0xb3, 0x74, 0xe8, 0x78, 0x07, 0x74, 0xdb, 0x09, - 0xc3, 0xa7, 0x7e, 0xd0, 0xd0, 0x1a, 0x8f, 0x07, 0xc4, 0x54, 0xe3, 0xf1, 0x44, 0xb8, 0x00, 0xa3, - 0x5b, 0xcd, 0x86, 0xa4, 0x11, 0x87, 0x57, 0xac, 0xcb, 0x6f, 0x36, 0x6a, 0x2d, 0xc9, 0x4b, 0x47, - 0x62, 0x34, 0x9b, 0xf4, 0xa9, 0xa2, 0xe9, 0x8b, 0x69, 0x3c, 0xfa, 0x54, 0xa3, 0xd1, 0x90, 0xc8, - 0x0a, 0x9c, 0xab, 0xd2, 0xba, 0xef, 0x35, 0xee, 0x3a, 0xf5, 0xc8, 0x0f, 0x76, 0xfc, 0xc7, 0xd4, - 0x13, 0xb3, 0x12, 0xb5, 0xfb, 0x10, 0x0b, 0x6b, 0x8f, 0xb0, 0xb4, 0x16, 0xb1, 0x62, 0x3b, 0x4d, - 0x41, 0xb6, 0x60, 0xf8, 0xa1, 0x30, 0xfb, 0x89, 0x13, 0xef, 0xab, 0x37, 0x95, 0x1d, 0x70, 0x29, - 0xa0, 0x38, 0x95, 0x9c, 0xa6, 0x3a, 0xb3, 0x2b, 0x65, 0x09, 0xd7, 0x23, 0x89, 0x69, 0x2b, 0x26, - 0xd6, 0x2e, 0x8c, 0x6f, 0x37, 0xdb, 0x07, 0xae, 0xc7, 0x56, 0x8e, 0x2a, 0xfd, 0x11, 0x59, 0x06, - 0x88, 0x01, 0xc2, 0x98, 0x37, 0x25, 0xce, 0xc9, 0x71, 0xc1, 0xde, 0x5b, 0xe2, 0xf3, 0x43, 0x08, - 0x1e, 0x6b, 0x6c, 0x8d, 0xce, 0xfa, 0xbf, 0x7d, 0x40, 0xc4, 0x00, 0xe0, 0x4e, 0x56, 0xa5, 0x11, - 0xdb, 0x63, 0xce, 0x43, 0xaf, 0xb2, 0xb9, 0x0d, 0x9e, 0x1c, 0x97, 0x7b, 0xdd, 0x86, 0xdd, 0xbb, - 0xb6, 0x4c, 0xde, 0x86, 0x01, 0x44, 0x43, 0xf9, 0x4f, 0xa8, 0xfa, 0x74, 0x0e, 0x7c, 0x05, 0xc1, - 0x2d, 0xd4, 0xe6, 0xc8, 0xe4, 0x1d, 0x18, 0x59, 0xa6, 0x4d, 0x7a, 0xe0, 0x44, 0xbe, 0x5c, 0x13, - 0xb8, 0x15, 0x4b, 0x02, 0xb5, 0x39, 0x17, 0x63, 0xb2, 0x33, 0xad, 0x4d, 0x9d, 0xd0, 0xf7, 0xf4, - 0x33, 0x6d, 0x80, 0x10, 0xfd, 0x4c, 0xcb, 0x71, 0xc8, 0xef, 0x14, 0x60, 0xb4, 0xe2, 0x79, 0xc2, - 0x3a, 0x14, 0x0a, 0xa9, 0xcf, 0xdc, 0x54, 0xe6, 0xd4, 0x75, 0x67, 0x9f, 0x36, 0xf7, 0x9c, 0x66, - 0x9b, 0x86, 0x8b, 0x5f, 0xb3, 0x63, 0xc6, 0x7f, 0x3d, 0x2e, 0x7f, 0x78, 0x06, 0x7b, 0x4f, 0x6c, - 0x98, 0xdd, 0x09, 0x1c, 0x37, 0x0a, 0x4f, 0x8e, 0xcb, 0x33, 0x4e, 0x5c, 0xa1, 0xfe, 0xdd, 0x68, - 0xed, 0x88, 0x17, 0xf8, 0xc1, 0x6e, 0x0b, 0x3c, 0x39, 0x82, 0xc9, 0x4a, 0x18, 0xb6, 0x8f, 0x68, - 0x35, 0x72, 0x82, 0x68, 0xc7, 0x3d, 0xa2, 0xb8, 0xaa, 0x74, 0xb6, 0x10, 0xbc, 0xfe, 0xd3, 0xe3, - 0x72, 0x81, 0x9d, 0x6c, 0x1c, 0x24, 0x65, 0xca, 0x4b, 0x10, 0xd5, 0x22, 0x57, 0xdf, 0xa3, 0xd0, - 0x56, 0x90, 0xe4, 0x6d, 0x5d, 0x53, 0x5a, 0xc5, 0xda, 0x72, 0xde, 0x88, 0x5b, 0x4b, 0x30, 0x7f, - 0x8f, 0x46, 0x36, 0x0d, 0x69, 0x24, 0xbf, 0x11, 0x9c, 0xe1, 0xb1, 0x85, 0x76, 0x08, 0x7f, 0x2b, - 0x62, 0x1c, 0x7e, 0xfe, 0x5d, 0xc8, 0x12, 0xeb, 0x6f, 0x15, 0xa0, 0xbc, 0x14, 0x50, 0x7e, 0x28, - 0xc8, 0x61, 0xd4, 0x79, 0xed, 0x9a, 0x87, 0xfe, 0x9d, 0x67, 0x2d, 0x69, 0x5a, 0xc1, 0x52, 0x36, - 0x28, 0x36, 0x42, 0x4f, 0x69, 0xa9, 0xb2, 0x1e, 0xc1, 0x8c, 0x4d, 0x3d, 0xfa, 0xd4, 0xd9, 0x6f, - 0x52, 0xc3, 0xd8, 0x53, 0x86, 0x01, 0xfe, 0xa1, 0xa7, 0xba, 0xc0, 0xe1, 0x67, 0x33, 0x9c, 0x59, - 0xe3, 0x30, 0xba, 0xed, 0x7a, 0x07, 0x82, 0xbb, 0xf5, 0x17, 0xfd, 0x30, 0xc6, 0x7f, 0x8b, 0x73, - 0x4e, 0x62, 0xcf, 0x2b, 0x9c, 0x66, 0xcf, 0x7b, 0x0f, 0xc6, 0xd9, 0xa6, 0x41, 0x83, 0x3d, 0x1a, - 0xb0, 0xf5, 0x5f, 0x48, 0x02, 0xcf, 0x6c, 0x21, 0x16, 0xd4, 0x9e, 0xf0, 0x12, 0xdb, 0x44, 0x24, - 0xeb, 0x30, 0xc1, 0x01, 0x77, 0xa9, 0x13, 0xb5, 0x63, 0xb3, 0xd3, 0xa4, 0x38, 0xd8, 0x48, 0x30, - 0x9f, 0x9a, 0x82, 0xd7, 0x23, 0x01, 0xb4, 0x13, 0xb4, 0xe4, 0x13, 0x98, 0xdc, 0x0e, 0xfc, 0x6f, - 0x9e, 0x69, 0xbb, 0x3c, 0xff, 0x3a, 0xf9, 0x11, 0x88, 0x15, 0xd5, 0xf4, 0xbd, 0x3e, 0x89, 0x4d, - 0xde, 0x80, 0xe1, 0xb5, 0x70, 0xd1, 0x0f, 0x5c, 0xef, 0x00, 0xbf, 0xd1, 0x61, 0x6e, 0xad, 0x77, - 0xc3, 0xda, 0x3e, 0x02, 0x6d, 0x55, 0x9c, 0xb0, 0x2b, 0x0f, 0x75, 0xb7, 0x2b, 0xdf, 0x06, 0x58, - 0xf7, 0x9d, 0x46, 0xa5, 0xd9, 0x5c, 0xaa, 0x84, 0xb8, 0x9d, 0x8a, 0xfd, 0xa8, 0xe9, 0x3b, 0x8d, - 0x9a, 0xd3, 0x6c, 0xd6, 0xea, 0x4e, 0x68, 0x6b, 0x38, 0xe4, 0x4b, 0xb8, 0x10, 0xba, 0x07, 0x1e, - 0x76, 0xae, 0xe6, 0x34, 0x0f, 0xfc, 0xc0, 0x8d, 0x0e, 0x8f, 0x6a, 0x61, 0xdb, 0x8d, 0xb8, 0x51, - 0x67, 0x62, 0xe1, 0xb2, 0x58, 0xe4, 0xaa, 0x12, 0xaf, 0x22, 0xd1, 0xaa, 0x0c, 0xcb, 0x9e, 0x0d, - 0xb3, 0x0b, 0xc8, 0x43, 0x18, 0x5f, 0x77, 0xeb, 0xd4, 0x0b, 0x29, 0x5a, 0xe9, 0x9e, 0xa1, 0xc9, - 0xa7, 0xf3, 0xc7, 0xcc, 0x84, 0x38, 0xde, 0xd4, 0x89, 0xf0, 0xd3, 0x35, 0xf9, 0xdc, 0xef, 0x1f, - 0x1e, 0x2c, 0x0e, 0xd9, 0x93, 0x02, 0xf8, 0xd0, 0x09, 0x3c, 0xd7, 0x3b, 0x08, 0xad, 0x7f, 0x79, - 0x0e, 0x86, 0xd5, 0x38, 0xdd, 0xd4, 0x8f, 0x1b, 0x62, 0x6b, 0xc6, 0x29, 0x1b, 0x1b, 0xd3, 0x6c, - 0x0d, 0x83, 0x5c, 0xc0, 0x03, 0x88, 0x50, 0x0a, 0x86, 0xd8, 0x27, 0xe4, 0xb4, 0x5a, 0x36, 0x83, - 0xb1, 0xa5, 0x61, 0x79, 0x11, 0x27, 0xcd, 0x30, 0x5f, 0x1a, 0x1a, 0xfb, 0x76, 0xef, 0xf2, 0x22, - 0xfb, 0x26, 0xb7, 0xd6, 0x96, 0x97, 0x70, 0xfc, 0x87, 0xf9, 0x37, 0xe9, 0xbb, 0x8d, 0xba, 0x8d, - 0x50, 0x56, 0x5a, 0xad, 0x6c, 0xac, 0x8b, 0x31, 0xc6, 0xd2, 0xd0, 0x39, 0x6a, 0xda, 0x08, 0x65, - 0x2a, 0x2b, 0xb7, 0x8b, 0x2c, 0xf9, 0x5e, 0x14, 0xf8, 0xcd, 0x10, 0xf5, 0xb0, 0x61, 0x3e, 0x07, - 0x85, 0x41, 0xa5, 0x2e, 0x8a, 0xec, 0x04, 0x2a, 0x79, 0x08, 0xb3, 0x95, 0xc6, 0x13, 0xc7, 0xab, - 0xd3, 0x06, 0x2f, 0x79, 0xe8, 0x07, 0x8f, 0x1f, 0x35, 0xfd, 0xa7, 0x21, 0x4e, 0x92, 0x61, 0x61, - 0x7f, 0x14, 0x28, 0xd2, 0x3e, 0xf3, 0x54, 0x22, 0xd9, 0x79, 0xd4, 0x6c, 0x1d, 0x58, 0x6a, 0xfa, - 0xed, 0x86, 0x98, 0x3a, 0xb8, 0x0e, 0xd4, 0x19, 0xc0, 0xe6, 0x70, 0x26, 0xa5, 0xd5, 0xea, 0x06, - 0x4e, 0x0c, 0x21, 0xa5, 0xc3, 0xf0, 0xc8, 0x66, 0x30, 0xf2, 0x2a, 0x0c, 0x49, 0xed, 0x9b, 0x5f, - 0x47, 0xa0, 0x19, 0x5c, 0x6a, 0xdd, 0xb2, 0x8c, 0x7d, 0xc7, 0x36, 0xad, 0xfb, 0x4f, 0x68, 0xf0, - 0x6c, 0xc9, 0x6f, 0x50, 0x69, 0x9b, 0x12, 0xb6, 0x17, 0x5e, 0x50, 0xab, 0xb3, 0x12, 0xdb, 0x44, - 0x64, 0x15, 0xf0, 0x8d, 0x3b, 0x2c, 0x4d, 0xc6, 0x15, 0xf0, 0x8d, 0x3d, 0xb4, 0x65, 0x19, 0x59, - 0x86, 0x73, 0x95, 0x76, 0xe4, 0x1f, 0x39, 0x91, 0x5b, 0xdf, 0x6d, 0x1d, 0x04, 0x0e, 0xab, 0xa4, - 0x88, 0x04, 0x78, 0x1a, 0x71, 0x64, 0x61, 0xad, 0x2d, 0x4a, 0xed, 0x34, 0x01, 0x79, 0x17, 0xc6, - 0xd6, 0x42, 0x6e, 0x7f, 0x74, 0x42, 0xda, 0x40, 0x23, 0x92, 0x68, 0xa5, 0x1b, 0xd6, 0xd0, 0x1a, - 0x59, 0x63, 0xe7, 0x97, 0x86, 0x6d, 0xe0, 0x11, 0x0b, 0x06, 0x2b, 0x61, 0xe8, 0x86, 0x11, 0xda, - 0x86, 0x86, 0x17, 0xe1, 0xe4, 0xb8, 0x3c, 0xe8, 0x20, 0xc4, 0x16, 0x25, 0xe4, 0x21, 0x8c, 0x2e, - 0x53, 0xa6, 0xfe, 0xee, 0x04, 0xed, 0x30, 0x42, 0x4b, 0xcf, 0xe8, 0xc2, 0x05, 0xb1, 0x1a, 0x69, - 0x25, 0x62, 0x2e, 0x73, 0x15, 0xb5, 0x81, 0xf0, 0x5a, 0xc4, 0x0a, 0xf4, 0xad, 0x56, 0xc3, 0x67, - 0xba, 0xbd, 0xa0, 0x59, 0x75, 0x1b, 0x6c, 0x7d, 0x99, 0xc6, 0x36, 0xa0, 0x6e, 0x2f, 0x16, 0xb4, - 0xda, 0x21, 0x96, 0xe8, 0xba, 0xbd, 0x41, 0x42, 0xea, 0x29, 0x93, 0xf6, 0x8c, 0x61, 0xb6, 0x34, - 0x0b, 0x65, 0x13, 0xcf, 0x68, 0xf0, 0xfe, 0x08, 0x46, 0x97, 0xda, 0x61, 0xe4, 0x1f, 0xed, 0x1c, - 0xd2, 0x23, 0x8a, 0xd6, 0x20, 0x71, 0x82, 0xa9, 0x23, 0xb8, 0x16, 0x31, 0xb8, 0xde, 0x4d, 0x0d, - 0x9d, 0x7c, 0x06, 0x44, 0x1e, 0x45, 0xee, 0xb1, 0xf9, 0xe1, 0xb1, 0xb9, 0x8c, 0x06, 0xa1, 0x61, - 0x7e, 0xfe, 0x90, 0x27, 0x98, 0xda, 0x81, 0x2a, 0xd6, 0x8d, 0x92, 0x69, 0x62, 0xd6, 0x20, 0xde, - 0xc4, 0x7b, 0x81, 0xd3, 0x3a, 0x2c, 0x95, 0xe2, 0xa3, 0x81, 0xe8, 0xd4, 0x01, 0x83, 0x1b, 0x2a, - 0x4e, 0x8c, 0x4e, 0xaa, 0x00, 0xfc, 0xe7, 0x3a, 0x1b, 0x78, 0x6e, 0x42, 0x2a, 0x19, 0xf2, 0x62, - 0x05, 0x52, 0x56, 0x17, 0x50, 0x71, 0xe2, 0x6c, 0x9b, 0xae, 0x31, 0x9a, 0x1a, 0x1b, 0xf2, 0x18, - 0x8a, 0xfc, 0xd7, 0x86, 0xef, 0xb9, 0x11, 0xdf, 0x2f, 0xe6, 0x0c, 0x7b, 0x63, 0xb2, 0x58, 0x56, - 0x80, 0x76, 0x5e, 0x51, 0xc1, 0x91, 0x2a, 0xd5, 0xaa, 0x49, 0x31, 0x26, 0xdb, 0x30, 0xba, 0x1d, - 0xf8, 0x8d, 0x76, 0x3d, 0x42, 0x2d, 0xe3, 0x22, 0x2e, 0xfc, 0x44, 0xd4, 0xa3, 0x95, 0x70, 0x99, - 0xb4, 0x38, 0xa0, 0xc6, 0xf6, 0x05, 0x5d, 0x26, 0x1a, 0x22, 0x59, 0x84, 0xc1, 0x6d, 0xbf, 0xe9, - 0xd6, 0x9f, 0x95, 0xe6, 0xb1, 0xd1, 0xd3, 0x92, 0x19, 0x02, 0x65, 0x53, 0x51, 0xa5, 0x6d, 0x21, - 0x48, 0x57, 0x69, 0x39, 0x12, 0xa9, 0xc0, 0xf8, 0x67, 0x6c, 0xc2, 0xb8, 0xbe, 0xe7, 0x39, 0x6e, - 0x40, 0x4b, 0x97, 0x70, 0x5c, 0xd0, 0x16, 0xff, 0x23, 0xbd, 0x40, 0x9f, 0xce, 0x06, 0x05, 0x59, - 0x83, 0xc9, 0xb5, 0xb0, 0x1a, 0x05, 0x6e, 0x8b, 0x6e, 0x38, 0x9e, 0x73, 0x40, 0x1b, 0xa5, 0xcb, - 0xb1, 0x31, 0xdc, 0x0d, 0x6b, 0x21, 0x96, 0xd5, 0x8e, 0x78, 0xa1, 0x6e, 0x0c, 0x4f, 0xd0, 0x91, - 0xcf, 0x61, 0x7a, 0xe5, 0x9b, 0x88, 0xcd, 0x98, 0x66, 0xa5, 0xdd, 0x70, 0xa3, 0x6a, 0xe4, 0x07, - 0xce, 0x01, 0x2d, 0x95, 0x91, 0xdf, 0x2b, 0x27, 0xc7, 0xe5, 0x2b, 0x54, 0x94, 0xd7, 0x1c, 0x86, - 0x50, 0x0b, 0x39, 0x86, 0x7e, 0xc9, 0x9d, 0xc5, 0x81, 0x49, 0xbf, 0xda, 0x6e, 0x31, 0x6d, 0x1b, - 0xa5, 0x7f, 0xc5, 0x90, 0xbe, 0x56, 0xc2, 0xa5, 0x1f, 0x72, 0x40, 0x4a, 0xfa, 0x1a, 0x22, 0xb1, - 0x81, 0xdc, 0xf7, 0x5d, 0xaf, 0x52, 0x8f, 0xdc, 0x27, 0x54, 0x9c, 0x98, 0xc3, 0xd2, 0x55, 0x6c, - 0x29, 0x1a, 0xee, 0x7f, 0xd9, 0x77, 0xbd, 0x9a, 0x83, 0xc5, 0xb5, 0x50, 0x94, 0xeb, 0xdf, 0x48, - 0x9a, 0x9a, 0xfc, 0x00, 0xce, 0x6f, 0xf8, 0xfb, 0x6e, 0x93, 0xf2, 0x25, 0x87, 0x8b, 0x05, 0x8d, - 0x90, 0x16, 0xf2, 0x45, 0xc3, 0xfd, 0x11, 0x62, 0xd4, 0xc4, 0x6a, 0x75, 0xa4, 0x70, 0x74, 0xc3, - 0x7d, 0x36, 0x17, 0xb2, 0x02, 0x63, 0xf8, 0x5d, 0x36, 0xf1, 0x67, 0x58, 0xba, 0x86, 0x47, 0xba, - 0xab, 0x09, 0x2d, 0xed, 0xe6, 0x8a, 0x86, 0xb3, 0xe2, 0x45, 0xc1, 0x33, 0xdb, 0x20, 0x23, 0x1f, - 0xc3, 0x5c, 0x72, 0x7a, 0x2f, 0xf9, 0xde, 0x23, 0xf7, 0xa0, 0x1d, 0xd0, 0x46, 0xe9, 0x15, 0xd6, - 0x54, 0xbb, 0x03, 0xc6, 0xdc, 0x43, 0x38, 0x97, 0xaa, 0x82, 0x14, 0xa1, 0xef, 0xb1, 0xb8, 0x07, - 0x1d, 0xb1, 0xd9, 0x9f, 0xe4, 0x4d, 0x18, 0x78, 0xc2, 0xce, 0x52, 0xa8, 0x31, 0xc4, 0x37, 0x6b, - 0x1a, 0xe9, 0x9a, 0xf7, 0xc8, 0xb7, 0x39, 0xd2, 0x07, 0xbd, 0xef, 0x15, 0xee, 0xf7, 0x0f, 0x8f, - 0x16, 0xc7, 0xf8, 0xf5, 0xf5, 0xfd, 0xfe, 0xe1, 0xf1, 0xe2, 0x84, 0x55, 0x81, 0xc9, 0x04, 0x3e, - 0x29, 0xc1, 0x10, 0xf5, 0x98, 0x7e, 0xde, 0xe0, 0x3a, 0x8b, 0x2d, 0x7f, 0x92, 0x69, 0x18, 0x68, - 0xba, 0x47, 0x6e, 0x84, 0x15, 0x0e, 0xd8, 0xfc, 0x87, 0xf5, 0x7b, 0x05, 0x20, 0xe9, 0x2d, 0x83, - 0xdc, 0x4a, 0xb0, 0xe1, 0xda, 0xa9, 0x00, 0xe9, 0x06, 0x7a, 0xc9, 0xfd, 0x33, 0x98, 0xe2, 0x63, - 0x26, 0x37, 0x37, 0xad, 0x2e, 0xbe, 0xa8, 0x66, 0x14, 0xeb, 0x46, 0x1d, 0x51, 0x8c, 0x5b, 0xe1, - 0x3a, 0x36, 0xad, 0x0d, 0x33, 0x99, 0x9b, 0x05, 0xd9, 0x80, 0x99, 0x23, 0xdf, 0x8b, 0x0e, 0x9b, - 0xcf, 0xe4, 0x5e, 0x21, 0x6a, 0x2b, 0x60, 0x6d, 0xb8, 0x3e, 0x66, 0x22, 0xd8, 0x53, 0x02, 0x2c, - 0x38, 0x62, 0x3d, 0xc2, 0x2e, 0x24, 0x7b, 0x62, 0xd9, 0x70, 0x2e, 0xb5, 0xe6, 0x92, 0xef, 0xc3, - 0x58, 0x1d, 0xcf, 0x5f, 0x46, 0x4d, 0x7c, 0xc7, 0xd1, 0xe0, 0xfa, 0xe7, 0xc4, 0xe1, 0xbc, 0x2b, - 0xff, 0xb4, 0x00, 0xb3, 0x39, 0xab, 0xed, 0xd9, 0x45, 0xfd, 0x05, 0x9c, 0x3f, 0x72, 0xbe, 0xa9, - 0x05, 0x78, 0xbc, 0xae, 0x05, 0x8e, 0x97, 0x90, 0x36, 0xae, 0x24, 0xd9, 0x18, 0xba, 0x0f, 0xd1, - 0x91, 0xf3, 0x8d, 0x8d, 0x08, 0x36, 0x2b, 0xe7, 0xed, 0xfc, 0x14, 0xc6, 0x8d, 0xf5, 0xf5, 0xcc, - 0x8d, 0xb3, 0xee, 0xc0, 0xb9, 0x65, 0xda, 0xa4, 0x11, 0x3d, 0xb5, 0x59, 0xcd, 0xda, 0x06, 0xa8, - 0xd2, 0x23, 0xa7, 0x75, 0xe8, 0x33, 0xbd, 0x7b, 0x51, 0xff, 0x25, 0xcc, 0x32, 0x44, 0x9e, 0x20, - 0x64, 0xc1, 0xde, 0x5b, 0x5c, 0x17, 0x0f, 0x15, 0xa6, 0xad, 0x51, 0x59, 0x7f, 0xdc, 0x0b, 0x44, - 0x2c, 0x90, 0x01, 0x75, 0x8e, 0x64, 0x33, 0xde, 0x87, 0x31, 0x7e, 0x88, 0xe6, 0x60, 0x6c, 0xce, - 0xe8, 0xc2, 0x94, 0xf8, 0xf2, 0xf4, 0xa2, 0xd5, 0x1e, 0xdb, 0x40, 0x65, 0xa4, 0x36, 0xe5, 0xa7, - 0x7f, 0x24, 0xed, 0x35, 0x48, 0xf5, 0x22, 0x46, 0xaa, 0xff, 0x26, 0x9f, 0xc0, 0xc4, 0x92, 0x7f, - 0xd4, 0x62, 0x32, 0x11, 0xc4, 0x7d, 0xc2, 0xb2, 0x22, 0xea, 0x35, 0x0a, 0x57, 0x7b, 0xec, 0x04, - 0x3a, 0xd9, 0x84, 0xa9, 0xbb, 0xcd, 0x76, 0x78, 0x58, 0xf1, 0x1a, 0x4b, 0x4d, 0x3f, 0x94, 0x5c, - 0xfa, 0xc5, 0x61, 0x48, 0x2c, 0x6f, 0x69, 0x8c, 0xd5, 0x1e, 0x3b, 0x8b, 0x90, 0xbc, 0x0a, 0x03, - 0x2b, 0x4f, 0xd8, 0xb2, 0x2b, 0x3d, 0x49, 0x84, 0xa3, 0xdb, 0x96, 0x47, 0xb7, 0x1e, 0xad, 0xf6, - 0xd8, 0xbc, 0x74, 0x71, 0x04, 0x86, 0xe4, 0x01, 0xfc, 0x16, 0x53, 0x89, 0x95, 0x38, 0xab, 0x91, - 0x13, 0xb5, 0x43, 0x32, 0x07, 0xc3, 0xbb, 0x2d, 0x76, 0x2e, 0x94, 0x96, 0x0b, 0x5b, 0xfd, 0xb6, - 0xde, 0x34, 0x25, 0x4d, 0xe6, 0x21, 0x36, 0xbb, 0x0a, 0x64, 0xcd, 0x0e, 0xbb, 0x6a, 0x0a, 0xb7, - 0x33, 0xb6, 0x51, 0x6f, 0x6f, 0xa2, 0xde, 0x62, 0x52, 0xd6, 0xd6, 0x4c, 0xa6, 0xf0, 0xac, 0xcf, - 0xe1, 0xf2, 0x6e, 0x2b, 0xa4, 0x41, 0x54, 0x69, 0xb5, 0x9a, 0x6e, 0x9d, 0xdf, 0x44, 0xe1, 0x41, - 0x5d, 0x4e, 0x96, 0x77, 0x61, 0x90, 0x03, 0xc4, 0x34, 0x91, 0x73, 0xb0, 0xd2, 0x6a, 0x09, 0xf3, - 0xc0, 0x5b, 0x5c, 0x39, 0xe7, 0x07, 0x7e, 0x5b, 0x60, 0x5b, 0xbf, 0x55, 0x80, 0xcb, 0xfc, 0x0b, - 0xc8, 0x65, 0xfd, 0x1d, 0x18, 0x41, 0x3f, 0xb3, 0x96, 0x53, 0x97, 0xdf, 0x04, 0x77, 0xb8, 0x93, - 0x40, 0x3b, 0x2e, 0xd7, 0x3c, 0xf8, 0x7a, 0xf3, 0x3d, 0xf8, 0xe4, 0x07, 0xd6, 0x97, 0xf9, 0x81, - 0x7d, 0x06, 0x96, 0x68, 0x51, 0xb3, 0x99, 0x6a, 0x54, 0xf8, 0x3c, 0xad, 0xb2, 0xfe, 0x67, 0x2f, - 0xcc, 0xde, 0xa3, 0x1e, 0x0d, 0x1c, 0xec, 0xa7, 0x61, 0x88, 0xd2, 0x3d, 0x79, 0x0a, 0x1d, 0x3d, - 0x79, 0xca, 0xd2, 0xb4, 0xd7, 0x8b, 0xa6, 0xbd, 0x94, 0x5b, 0x12, 0x3b, 0x2e, 0xee, 0xda, 0x6b, - 0xa2, 0x5b, 0x78, 0x5c, 0x6c, 0x07, 0x2e, 0x5a, 0xf3, 0xc9, 0x5a, 0xec, 0x05, 0xd4, 0xdf, 0xd5, - 0x2c, 0x30, 0x25, 0xbc, 0x22, 0x86, 0x84, 0x17, 0x90, 0xe9, 0xfb, 0xb3, 0x09, 0x83, 0xdc, 0x22, - 0x89, 0x77, 0x48, 0xa3, 0x0b, 0x37, 0xc4, 0x37, 0x95, 0xd3, 0x41, 0x61, 0xbe, 0xc4, 0x8d, 0x9d, - 0x4f, 0x81, 0x08, 0x01, 0xb6, 0xe0, 0x32, 0xf7, 0x19, 0x8c, 0x6a, 0x28, 0xa7, 0xd9, 0xfb, 0x95, - 0x65, 0x94, 0x69, 0x8c, 0xde, 0x01, 0x37, 0xb2, 0x6a, 0x7b, 0xbf, 0xf5, 0x21, 0x94, 0xd2, 0xad, - 0x11, 0xd6, 0xb0, 0x6e, 0xc6, 0x37, 0x6b, 0x19, 0xa6, 0xef, 0xd1, 0x08, 0x27, 0x2e, 0x7e, 0x44, - 0x9a, 0x37, 0x5b, 0xe2, 0x3b, 0x93, 0xab, 0x2a, 0x02, 0xd9, 0x04, 0xd3, 0xbe, 0xd2, 0x2a, 0xcc, - 0x24, 0xb8, 0x88, 0xfa, 0x3f, 0x80, 0x21, 0x01, 0x52, 0x2b, 0xaa, 0x70, 0x89, 0xa5, 0xfb, 0xa2, - 0x60, 0x6f, 0x81, 0xcf, 0x5b, 0xc1, 0xd9, 0x96, 0x04, 0xd6, 0x21, 0x9c, 0x67, 0xdb, 0x6c, 0xcc, - 0x55, 0x4d, 0xc7, 0x8b, 0x30, 0xd2, 0x62, 0x8a, 0x42, 0xe8, 0xfe, 0x98, 0x4f, 0xa3, 0x01, 0x7b, - 0x98, 0x01, 0xaa, 0xee, 0x8f, 0x29, 0xb9, 0x04, 0x80, 0x85, 0xd8, 0x4d, 0xb1, 0x0a, 0x20, 0x3a, - 0xb7, 0x36, 0x12, 0x40, 0x5f, 0x38, 0x3e, 0x6f, 0x6c, 0xfc, 0xdb, 0x0a, 0x60, 0x36, 0x55, 0x93, - 0xe8, 0xc0, 0x2d, 0x18, 0x96, 0x2a, 0x6c, 0xe2, 0x1e, 0x40, 0xef, 0x81, 0xad, 0x90, 0xc8, 0x6b, - 0x30, 0xe9, 0xd1, 0x6f, 0xa2, 0x5a, 0xaa, 0x0d, 0xe3, 0x0c, 0xbc, 0x2d, 0xdb, 0x61, 0xfd, 0x12, - 0xda, 0x7e, 0xab, 0x9e, 0xff, 0xf4, 0x51, 0xd3, 0x79, 0x4c, 0x53, 0x15, 0x7f, 0x1f, 0x86, 0xab, - 0xdd, 0x2b, 0xe6, 0x9f, 0x8f, 0xac, 0xdc, 0x56, 0x24, 0x56, 0x13, 0xe6, 0x58, 0x97, 0xaa, 0x95, - 0x8d, 0xf5, 0xb5, 0xc6, 0xf6, 0xb7, 0x2d, 0xc0, 0x27, 0x70, 0x31, 0xb3, 0xb6, 0x6f, 0x5b, 0x88, - 0xff, 0xb6, 0x1f, 0x66, 0xf9, 0x66, 0x92, 0x9e, 0xc1, 0xa7, 0x5f, 0x6a, 0x7e, 0x21, 0xf7, 0xaa, - 0xb7, 0x33, 0xee, 0x55, 0x91, 0x44, 0xbf, 0x57, 0x35, 0x6e, 0x53, 0xdf, 0xcb, 0xbe, 0x4d, 0x45, - 0x3b, 0x91, 0x79, 0x9b, 0x9a, 0xbc, 0x43, 0x5d, 0xc9, 0xbf, 0x43, 0xc5, 0xbb, 0xa1, 0x8c, 0x3b, - 0xd4, 0xac, 0x9b, 0xd3, 0x84, 0x43, 0xd2, 0xf0, 0xcb, 0x75, 0x48, 0x7a, 0x0d, 0x86, 0x2a, 0xad, - 0x96, 0xe6, 0xe0, 0x87, 0xc3, 0xe3, 0xb4, 0x5a, 0x5c, 0x78, 0xb2, 0x50, 0xae, 0xf3, 0x90, 0xb1, - 0xce, 0xbf, 0x0f, 0xb0, 0x84, 0xcf, 0x10, 0x70, 0xe0, 0x46, 0x11, 0x03, 0x35, 0x7c, 0xfe, 0x38, - 0x01, 0x07, 0x4e, 0xb7, 0x80, 0xc4, 0xc8, 0x5c, 0xb1, 0xb7, 0xf6, 0xa0, 0x94, 0x9e, 0x3e, 0x2f, - 0x61, 0xe9, 0xfa, 0xc3, 0x02, 0x5c, 0x12, 0x4a, 0x4e, 0xe2, 0x03, 0x3f, 0xfb, 0xec, 0x7c, 0x07, - 0xc6, 0x04, 0xed, 0x4e, 0xfc, 0x21, 0xf0, 0x8b, 0x6c, 0xb9, 0x18, 0xf3, 0x15, 0xdd, 0x40, 0x23, - 0xef, 0xc0, 0x30, 0xfe, 0x11, 0xdf, 0xdd, 0x30, 0xc9, 0x8c, 0x20, 0x6a, 0x2d, 0x79, 0x83, 0xa3, - 0x50, 0xad, 0xaf, 0xe1, 0x72, 0x5e, 0xc3, 0x5f, 0x82, 0x5c, 0xfe, 0x5d, 0x01, 0x2e, 0x0a, 0xf6, - 0xc6, 0x52, 0xf1, 0x5c, 0xbb, 0xce, 0x19, 0xdc, 0x82, 0xef, 0xc3, 0x28, 0xab, 0x50, 0xb6, 0xbb, - 0x4f, 0x6c, 0xad, 0xe2, 0xe4, 0x10, 0x97, 0x2c, 0x3b, 0x91, 0x23, 0xdc, 0x5c, 0x9c, 0xa3, 0xa6, - 0x34, 0x5e, 0xd8, 0x3a, 0xb1, 0xf5, 0x25, 0xcc, 0x67, 0x77, 0xe1, 0x25, 0xc8, 0xe7, 0x3e, 0xcc, - 0x65, 0x6c, 0x0a, 0xcf, 0xb7, 0x27, 0x7f, 0x01, 0x17, 0x33, 0x79, 0xbd, 0x84, 0x66, 0xae, 0x32, - 0x8d, 0x23, 0x7a, 0x09, 0x43, 0x68, 0x3d, 0x84, 0x0b, 0x19, 0x9c, 0x5e, 0x42, 0x13, 0xef, 0xc1, - 0xac, 0xd2, 0xb4, 0x5f, 0xa8, 0x85, 0x1b, 0x70, 0x89, 0x33, 0x7a, 0x39, 0xa3, 0xf2, 0x00, 0x2e, - 0x0a, 0x76, 0x2f, 0x41, 0x7a, 0xab, 0x30, 0x1f, 0x1f, 0xa8, 0x33, 0xf4, 0xa4, 0x53, 0x2f, 0x32, - 0xd6, 0x3a, 0x5c, 0x89, 0x39, 0xe5, 0x28, 0x0d, 0xa7, 0xe7, 0xc6, 0xd5, 0xc1, 0x78, 0x94, 0x5e, - 0xca, 0x88, 0x3e, 0x84, 0xf3, 0x06, 0xd3, 0x97, 0xa6, 0x2a, 0xad, 0xc1, 0x14, 0x67, 0x6c, 0xaa, - 0xce, 0x0b, 0xba, 0xea, 0x3c, 0xba, 0x70, 0x2e, 0x66, 0x89, 0xe0, 0xbd, 0xb7, 0x32, 0xb4, 0xe9, - 0x0d, 0xd4, 0xa6, 0x25, 0x4a, 0xdc, 0xc2, 0x77, 0x60, 0x90, 0x43, 0x44, 0xfb, 0x32, 0x98, 0xf1, - 0xc3, 0x02, 0x27, 0x13, 0xc8, 0xd6, 0x0f, 0xe0, 0x12, 0x3f, 0x89, 0xc6, 0x77, 0x89, 0xe6, 0x69, - 0xf1, 0xfb, 0x89, 0x83, 0xe8, 0x05, 0xc1, 0x37, 0x89, 0x9f, 0x73, 0x1e, 0xdd, 0x97, 0x73, 0x3b, - 0x8f, 0xff, 0xa9, 0x9e, 0x88, 0xc9, 0x03, 0x66, 0x6f, 0xe6, 0x01, 0xf3, 0x1a, 0x5c, 0x55, 0x07, - 0xcc, 0x64, 0x35, 0x72, 0x6a, 0x59, 0x5f, 0xc2, 0x45, 0xde, 0x51, 0xe9, 0xba, 0x67, 0x36, 0xe3, - 0xc3, 0x44, 0x37, 0x67, 0x45, 0x37, 0x4d, 0xec, 0x9c, 0x4e, 0xfe, 0xdd, 0x82, 0xfc, 0xe4, 0xb2, - 0x99, 0xff, 0xa2, 0x4f, 0xdc, 0x9b, 0x50, 0x56, 0x02, 0x31, 0x5b, 0xf4, 0x7c, 0xc7, 0xed, 0x0d, - 0x98, 0xd1, 0xd9, 0xb8, 0x75, 0xba, 0x77, 0x07, 0x2f, 0x79, 0xde, 0x66, 0x9f, 0x05, 0x02, 0xe4, - 0xb4, 0x2b, 0x65, 0xc8, 0x0d, 0xf1, 0x6d, 0x85, 0x69, 0xd5, 0x60, 0x3e, 0x3d, 0x14, 0x6e, 0x5d, - 0xfa, 0xed, 0x93, 0x4f, 0xd8, 0x27, 0x8c, 0x10, 0x31, 0x18, 0xb9, 0x4c, 0xe5, 0x77, 0xcc, 0xc9, - 0x25, 0x95, 0x65, 0xc9, 0xa5, 0x26, 0xd1, 0x7f, 0x56, 0xbb, 0x9c, 0x0f, 0xbf, 0x0a, 0x44, 0x16, - 0x2d, 0x55, 0x6d, 0x59, 0xf5, 0x05, 0xe8, 0x5b, 0xaa, 0xda, 0xe2, 0xc1, 0x10, 0x6a, 0x82, 0xf5, - 0x30, 0xb0, 0x19, 0x2c, 0xa9, 0x91, 0xf7, 0x9e, 0x42, 0x23, 0xbf, 0xdf, 0x3f, 0xdc, 0x57, 0xec, - 0xb7, 0x49, 0xd5, 0x3d, 0xf0, 0x1e, 0xba, 0xd1, 0xa1, 0xaa, 0xb0, 0x62, 0x7d, 0x05, 0x53, 0x46, - 0xf5, 0xe2, 0x2b, 0xee, 0xf8, 0xd2, 0x89, 0xe9, 0xb3, 0x4b, 0x15, 0xf4, 0x7c, 0x41, 0x93, 0xc5, - 0x18, 0x5f, 0x6f, 0xea, 0x4e, 0x0d, 0x9f, 0xd1, 0xda, 0xb2, 0xd0, 0xfa, 0x27, 0xfd, 0x1a, 0x77, - 0xed, 0xfd, 0x58, 0x87, 0xde, 0xdd, 0x01, 0xe0, 0x33, 0x44, 0xeb, 0x1c, 0x53, 0x00, 0x47, 0x85, - 0x43, 0x09, 0x5f, 0x92, 0x6d, 0x0d, 0xe9, 0xb4, 0xef, 0xcb, 0x84, 0x9f, 0x2f, 0x27, 0x92, 0x4f, - 0x2a, 0x95, 0x9f, 0xaf, 0x60, 0x1d, 0xda, 0x3a, 0x12, 0xf9, 0x41, 0xf2, 0x11, 0xc4, 0x00, 0xde, - 0x29, 0xbd, 0x22, 0x2f, 0x99, 0xd3, 0x7d, 0x3b, 0xdb, 0x3b, 0x88, 0xa7, 0x30, 0xc3, 0x68, 0xdd, - 0x47, 0x78, 0xb0, 0x58, 0xf9, 0x26, 0xa2, 0x1e, 0x5f, 0xdb, 0x07, 0xb1, 0x9e, 0x57, 0x3b, 0xd4, - 0x13, 0x23, 0x0b, 0xfb, 0x7b, 0xcc, 0xa7, 0x46, 0x55, 0x99, 0x9d, 0xcd, 0x1f, 0x27, 0x91, 0xbd, - 0xbe, 0xe2, 0x35, 0x5a, 0xbe, 0xab, 0x0e, 0x4c, 0x7c, 0x12, 0x05, 0xcd, 0x1a, 0x15, 0x70, 0x5b, - 0x47, 0xb2, 0x5e, 0xeb, 0xe8, 0x3d, 0x3e, 0x0c, 0xfd, 0x3b, 0x4b, 0x3b, 0xeb, 0xc5, 0x82, 0x75, - 0x0b, 0x40, 0xab, 0x09, 0x60, 0x70, 0x73, 0xcb, 0xde, 0xa8, 0xac, 0x17, 0x7b, 0xc8, 0x0c, 0x9c, - 0x7b, 0xb8, 0xb6, 0xb9, 0xbc, 0xf5, 0xb0, 0x5a, 0xab, 0x6e, 0x54, 0xec, 0x9d, 0xa5, 0x8a, 0xbd, - 0x5c, 0x2c, 0x58, 0x5f, 0xc3, 0xb4, 0xd9, 0xc3, 0x97, 0x3a, 0x09, 0x23, 0x98, 0x52, 0xfa, 0xcc, - 0xfd, 0x87, 0x3b, 0x9a, 0xd3, 0xa9, 0x38, 0xfc, 0x25, 0x9d, 0xa7, 0xc4, 0x31, 0x51, 0x7c, 0x46, - 0x1a, 0x12, 0x79, 0x83, 0xab, 0x05, 0xc9, 0x17, 0xc2, 0x4c, 0x2d, 0xa8, 0xc5, 0x7a, 0x01, 0x2e, - 0x7d, 0xdf, 0x83, 0x69, 0xb3, 0xd6, 0xd3, 0x5a, 0xa9, 0x5e, 0x41, 0x6f, 0x5c, 0xed, 0xf9, 0x10, - 0x21, 0xfa, 0xb5, 0x81, 0x58, 0x59, 0xbf, 0x07, 0x45, 0x81, 0x15, 0xef, 0xbc, 0xd7, 0xa4, 0x19, - 0xb1, 0x90, 0xf1, 0xd8, 0x51, 0x3a, 0x7f, 0xfb, 0x50, 0x64, 0x2b, 0xa6, 0xa0, 0xe4, 0x15, 0x4c, - 0xc3, 0xc0, 0x7a, 0x7c, 0x9d, 0x63, 0xf3, 0x1f, 0xf8, 0x8a, 0x26, 0x72, 0x82, 0x48, 0xba, 0xaa, - 0x8d, 0xd8, 0xea, 0x37, 0x79, 0x03, 0x06, 0xef, 0xba, 0xcd, 0x48, 0x98, 0x46, 0xe2, 0x4d, 0x9e, - 0xb1, 0xe5, 0x05, 0xb6, 0x40, 0xb0, 0x6c, 0x38, 0xa7, 0x55, 0x78, 0x86, 0xa6, 0x92, 0x12, 0x0c, - 0x6d, 0xd2, 0x6f, 0xb4, 0xfa, 0xe5, 0x4f, 0xeb, 0x5d, 0x38, 0x27, 0xdc, 0x00, 0x35, 0x31, 0x5d, - 0x15, 0x6f, 0xb2, 0x0b, 0xc6, 0xc3, 0x50, 0xc1, 0x12, 0x8b, 0x18, 0xdd, 0x6e, 0xab, 0xf1, 0x9c, - 0x74, 0x6c, 0xa3, 0x38, 0x23, 0xdd, 0xeb, 0xf2, 0x16, 0xa8, 0xdb, 0x70, 0xfe, 0x71, 0x01, 0x4a, - 0x09, 0x2b, 0xc3, 0xd2, 0xa1, 0xd3, 0x6c, 0x52, 0xef, 0x80, 0x92, 0xeb, 0xd0, 0xbf, 0xb3, 0xb5, - 0xb3, 0x2d, 0xac, 0xa4, 0xd2, 0x01, 0x80, 0x81, 0x14, 0x8e, 0x8d, 0x18, 0xe4, 0x01, 0x9c, 0x93, - 0x8e, 0xbe, 0xaa, 0x48, 0x8c, 0xd0, 0xa5, 0xce, 0x6e, 0xc3, 0x69, 0x3a, 0xf2, 0xb6, 0x30, 0x89, - 0xfc, 0xa8, 0xed, 0x06, 0xb4, 0x81, 0x96, 0x9f, 0xf8, 0x36, 0x5d, 0x2b, 0xb1, 0x75, 0x34, 0xfe, - 0x82, 0xd6, 0xfa, 0x9d, 0x02, 0xcc, 0xe6, 0x58, 0x4d, 0xc8, 0x1b, 0x46, 0x77, 0xa6, 0xb4, 0xee, - 0x48, 0x94, 0xd5, 0x1e, 0xd1, 0x9f, 0x25, 0xcd, 0xfb, 0xb9, 0xef, 0x0c, 0xde, 0xcf, 0xab, 0x3d, - 0xb1, 0xc7, 0xf3, 0x22, 0xc0, 0xb0, 0x84, 0x5b, 0x93, 0x30, 0x6e, 0xc8, 0xcd, 0xb2, 0x60, 0x4c, - 0xaf, 0x99, 0x0d, 0xce, 0x92, 0xdf, 0x50, 0x83, 0xc3, 0xfe, 0xb6, 0x7e, 0xbb, 0x00, 0xd3, 0xd8, - 0xc5, 0x03, 0x97, 0x2d, 0x7d, 0xb1, 0x84, 0x16, 0x8c, 0x9e, 0xcc, 0x1b, 0x3d, 0x49, 0xe0, 0xaa, - 0x2e, 0x7d, 0x90, 0xea, 0xd2, 0x7c, 0x56, 0x97, 0x70, 0x7a, 0xbb, 0xbe, 0x67, 0xf4, 0x44, 0xbb, - 0x8a, 0xfa, 0xbd, 0x02, 0x4c, 0x69, 0x6d, 0x52, 0xed, 0xbf, 0x63, 0x34, 0xe9, 0x62, 0x46, 0x93, - 0x52, 0x42, 0x5e, 0x4c, 0xb5, 0xe8, 0x95, 0x4e, 0x2d, 0xea, 0x2a, 0xe3, 0xbf, 0x28, 0xc0, 0x4c, - 0xa6, 0x0c, 0xc8, 0x79, 0xa6, 0xdb, 0xd6, 0x03, 0x1a, 0x09, 0xf1, 0x8a, 0x5f, 0x0c, 0xbe, 0x16, - 0x86, 0x6d, 0x1a, 0x88, 0xef, 0x5c, 0xfc, 0x22, 0xaf, 0xc0, 0xf8, 0x36, 0x0d, 0x5c, 0xbf, 0xc1, - 0xfd, 0xe2, 0xb9, 0xc3, 0xe9, 0xb8, 0x6d, 0x02, 0xc9, 0x3c, 0x8c, 0x28, 0x87, 0x49, 0x6e, 0x9f, - 0xb4, 0x63, 0x00, 0xe3, 0xbd, 0xec, 0x1e, 0xf0, 0x4b, 0x0d, 0x46, 0x2c, 0x7e, 0xb1, 0xc5, 0x45, - 0x5a, 0x0b, 0x07, 0xf9, 0xe2, 0x22, 0x4d, 0x81, 0xe7, 0x61, 0xf0, 0x33, 0x1b, 0x27, 0x01, 0xc6, - 0x2d, 0xb0, 0xc5, 0x2f, 0x32, 0x81, 0x9e, 0xcd, 0xf8, 0xb6, 0x02, 0x3d, 0x9a, 0x3f, 0x80, 0xe9, - 0x2c, 0xb9, 0x66, 0x4d, 0x21, 0x41, 0xdb, 0xab, 0x68, 0xbf, 0x84, 0xa9, 0x4a, 0xa3, 0xb1, 0x71, - 0xb7, 0xc2, 0x7d, 0x0e, 0xc4, 0xa8, 0xf2, 0x8f, 0x87, 0xdb, 0xeb, 0x84, 0xca, 0xd6, 0xbf, 0xe6, - 0xb9, 0x91, 0x3d, 0xb5, 0xf2, 0x8d, 0x1b, 0x46, 0xae, 0x77, 0xa0, 0x19, 0x15, 0xed, 0xf3, 0x9b, - 0xf4, 0x69, 0xc6, 0x14, 0x60, 0xbb, 0xa9, 0xc9, 0x9b, 0xc3, 0x33, 0x98, 0x4f, 0x6b, 0x6c, 0xe3, - 0xa5, 0x64, 0xd6, 0xe4, 0x1b, 0x17, 0xf4, 0x55, 0xea, 0x8f, 0xad, 0xef, 0xc1, 0x79, 0xbe, 0xa4, - 0x75, 0x6a, 0xbc, 0x68, 0xb6, 0x6e, 0x03, 0xb5, 0xde, 0x93, 0x56, 0x8a, 0x8e, 0x2d, 0xb3, 0xc7, - 0x8c, 0xb6, 0x60, 0x95, 0xff, 0xa3, 0x00, 0x73, 0x09, 0xd2, 0xea, 0x33, 0xaf, 0x2e, 0xd7, 0xd3, - 0xd7, 0x92, 0x9e, 0xe3, 0xa8, 0x07, 0x70, 0xe3, 0x9f, 0xdb, 0x50, 0xce, 0xe3, 0xe4, 0x16, 0x00, - 0x27, 0xd6, 0xb6, 0x6f, 0x34, 0x7d, 0x0b, 0x27, 0x1b, 0xdc, 0xc0, 0x35, 0x14, 0xd2, 0x86, 0x2c, - 0xb9, 0x8b, 0x6f, 0xa4, 0x9b, 0x6d, 0x18, 0x63, 0x75, 0x50, 0x41, 0x5e, 0xcb, 0x31, 0x12, 0x67, - 0xf1, 0xb7, 0xfe, 0x5e, 0x1f, 0xcc, 0xea, 0x03, 0xf8, 0x3c, 0x7d, 0xdd, 0x86, 0xd1, 0x25, 0xdf, - 0x8b, 0xe8, 0x37, 0x91, 0x16, 0x2b, 0x81, 0xa8, 0x9b, 0x76, 0x55, 0x22, 0x54, 0x47, 0x0e, 0xa8, - 0x31, 0x3d, 0xc6, 0x70, 0x16, 0x8c, 0x11, 0xc9, 0x12, 0x8c, 0x6f, 0xd2, 0xa7, 0x29, 0x01, 0xa2, - 0xc3, 0xa2, 0x47, 0x9f, 0xd6, 0x34, 0x21, 0xea, 0x5e, 0x64, 0x06, 0x0d, 0xd9, 0x87, 0x09, 0x39, - 0xb9, 0x0c, 0x61, 0xce, 0xe9, 0xbb, 0x8a, 0x39, 0x9d, 0x79, 0x2c, 0x01, 0x56, 0x43, 0x8e, 0x0c, - 0x13, 0x1c, 0x59, 0xd7, 0x79, 0x8d, 0xfc, 0x79, 0xbc, 0xb9, 0x6d, 0x69, 0x25, 0x86, 0x3b, 0x68, - 0xf2, 0x59, 0xbc, 0xce, 0xc2, 0xda, 0x86, 0x52, 0x7a, 0x3c, 0x44, 0x6d, 0x6f, 0xc3, 0x20, 0x87, - 0x0a, 0x35, 0x40, 0x86, 0xc1, 0x51, 0xd8, 0xfc, 0x9c, 0xce, 0xab, 0xb1, 0x05, 0xae, 0xb5, 0x8a, - 0xb6, 0x13, 0x85, 0xa3, 0x14, 0xb1, 0xdb, 0xc9, 0xe1, 0x45, 0x4f, 0x5b, 0x39, 0xbc, 0xba, 0x9f, - 0x89, 0x7c, 0x11, 0xb1, 0x84, 0xe6, 0x27, 0x9d, 0x93, 0x68, 0xd8, 0x0d, 0x18, 0x12, 0xa0, 0x44, - 0x80, 0x9e, 0xf8, 0xf3, 0x93, 0x08, 0xd6, 0x07, 0x70, 0x01, 0x6d, 0x61, 0xae, 0x77, 0xd0, 0xa4, - 0xbb, 0xa1, 0xf1, 0xa6, 0xa1, 0xdb, 0x67, 0xfd, 0x11, 0xcc, 0x65, 0xd1, 0x76, 0xfd, 0xb2, 0x79, - 0xc8, 0x8c, 0x3f, 0xeb, 0x85, 0xe9, 0xb5, 0x50, 0x57, 0x26, 0x54, 0xd8, 0x8c, 0x8c, 0x50, 0x0e, - 0x28, 0x93, 0xd5, 0x9e, 0xac, 0x50, 0x0d, 0x6f, 0x6b, 0x4f, 0x26, 0x7b, 0x3b, 0xc5, 0x68, 0x60, - 0xdb, 0x96, 0x7a, 0x34, 0xf9, 0x1a, 0xf4, 0x6f, 0xb2, 0xa5, 0xba, 0x4f, 0x8c, 0x1d, 0xa7, 0x60, - 0x20, 0x7c, 0xb2, 0xc8, 0xb6, 0x48, 0xf6, 0x83, 0xdc, 0x4d, 0x3d, 0x8c, 0xec, 0xef, 0x1e, 0x83, - 0x60, 0xb5, 0x27, 0xf5, 0x46, 0xf2, 0x5d, 0x18, 0xad, 0x34, 0x8e, 0xb8, 0x47, 0xa0, 0xef, 0x25, - 0x3e, 0x4b, 0xad, 0x64, 0xb5, 0xc7, 0xd6, 0x11, 0xd9, 0x09, 0xb7, 0xd2, 0x6a, 0xe1, 0x46, 0x95, - 0x15, 0x97, 0x61, 0xb5, 0x07, 0x1d, 0xec, 0x17, 0x87, 0x61, 0x70, 0xc7, 0x09, 0x0e, 0x68, 0x64, - 0x7d, 0x09, 0x73, 0xc2, 0x49, 0x85, 0x5b, 0xfe, 0xd0, 0x95, 0x25, 0x8c, 0xfd, 0x90, 0x3a, 0x39, - 0x96, 0x5c, 0x06, 0x40, 0x3d, 0x7f, 0xcd, 0x6b, 0xd0, 0x6f, 0x84, 0x97, 0x9c, 0x06, 0xb1, 0xde, - 0x81, 0x11, 0x25, 0x21, 0x54, 0x66, 0xb5, 0xcd, 0x0e, 0xa5, 0x35, 0x6d, 0xbc, 0x04, 0x95, 0xcf, - 0x3f, 0x2f, 0x18, 0x7d, 0x17, 0x91, 0x56, 0xb8, 0xf6, 0xeb, 0xc2, 0x4c, 0x62, 0x12, 0xc4, 0x0f, - 0xf9, 0x95, 0xfe, 0xc9, 0xdd, 0xf8, 0xd4, 0xef, 0xa4, 0x7a, 0xda, 0x7b, 0x2a, 0xf5, 0xd4, 0xfa, - 0xe7, 0xbd, 0x78, 0x70, 0x4a, 0xc9, 0x23, 0x61, 0x83, 0xd2, 0xed, 0x60, 0x8b, 0x30, 0x82, 0xbd, - 0x5f, 0x96, 0xef, 0xd5, 0x3a, 0xfb, 0x58, 0x0c, 0xff, 0xf4, 0xb8, 0xdc, 0x83, 0x8e, 0x15, 0x31, - 0x19, 0xf9, 0x18, 0x86, 0x56, 0xbc, 0x06, 0x72, 0xe8, 0x3b, 0x03, 0x07, 0x49, 0xc4, 0xc6, 0x04, - 0x9b, 0xbc, 0xc3, 0x3e, 0x61, 0x6e, 0xba, 0xb0, 0x35, 0x48, 0x7c, 0x82, 0x1b, 0xc8, 0x3b, 0xc1, - 0x0d, 0x26, 0x4e, 0x70, 0x16, 0x0c, 0x6c, 0x05, 0x0d, 0x11, 0x1f, 0x65, 0x62, 0x61, 0x4c, 0x08, - 0x0e, 0x61, 0x36, 0x2f, 0xb2, 0xfe, 0x57, 0x01, 0x66, 0xef, 0xd1, 0x28, 0x73, 0x0e, 0x19, 0x52, - 0x29, 0xbc, 0xb0, 0x54, 0x7a, 0x9f, 0x47, 0x2a, 0xaa, 0xd7, 0x7d, 0x79, 0xbd, 0xee, 0xcf, 0xeb, - 0xf5, 0x40, 0x7e, 0xaf, 0xef, 0xc1, 0x20, 0xef, 0x2a, 0x3b, 0xa5, 0xae, 0x45, 0xf4, 0x28, 0x3e, - 0xa5, 0xea, 0x1e, 0x62, 0x36, 0x2f, 0x63, 0x8a, 0xe4, 0xba, 0x13, 0xea, 0xa7, 0x54, 0xf1, 0xd3, - 0xfa, 0x21, 0xbe, 0x74, 0x5d, 0xf7, 0xeb, 0x8f, 0x35, 0x6b, 0xe7, 0x10, 0xff, 0x42, 0x93, 0xd6, - 0x71, 0x86, 0xc5, 0x4b, 0x6c, 0x89, 0x41, 0xae, 0xc0, 0xe8, 0x9a, 0x77, 0xd7, 0x0f, 0xea, 0x74, - 0xcb, 0x6b, 0x72, 0xee, 0xc3, 0xb6, 0x0e, 0x12, 0x56, 0x00, 0x51, 0x43, 0x7c, 0xb4, 0x46, 0x40, - 0xe2, 0x68, 0xcd, 0x60, 0x7b, 0x0b, 0x36, 0x2f, 0x13, 0x46, 0x06, 0xf6, 0x77, 0xa7, 0x53, 0xa9, - 0x3a, 0xbe, 0x76, 0x43, 0xdc, 0x87, 0x0b, 0x36, 0x6d, 0x35, 0x1d, 0xa6, 0xd3, 0x1d, 0xf9, 0x1c, - 0x5f, 0xf5, 0xf9, 0x4a, 0xc6, 0x2b, 0x35, 0xd3, 0x5f, 0x40, 0x35, 0xb9, 0xb7, 0x43, 0x93, 0x8f, - 0xe0, 0xea, 0x3d, 0x1a, 0x99, 0x0b, 0x6a, 0x6c, 0x4b, 0x15, 0x9d, 0x5f, 0x85, 0xe1, 0xd0, 0xb4, - 0x03, 0xcb, 0x57, 0x57, 0x99, 0x84, 0x7b, 0x6f, 0xc9, 0x9b, 0x12, 0xc1, 0x47, 0xfd, 0x65, 0x7d, - 0x02, 0xe5, 0xbc, 0xea, 0x4e, 0xe7, 0xce, 0xe9, 0xc2, 0x95, 0x7c, 0x06, 0xa2, 0xb9, 0x2b, 0x20, - 0x6d, 0xc6, 0xe2, 0x13, 0xea, 0xd6, 0x5a, 0xd3, 0xcc, 0x2c, 0xfe, 0xb0, 0x16, 0xa5, 0x63, 0xdb, - 0x0b, 0x34, 0xb7, 0x86, 0xd7, 0xb1, 0x26, 0x83, 0x58, 0xae, 0x15, 0x18, 0x96, 0x30, 0x21, 0xd7, - 0xd9, 0xcc, 0x96, 0x4a, 0x81, 0x36, 0x24, 0x03, 0x45, 0x66, 0xfd, 0x50, 0x5e, 0x4d, 0x98, 0x14, - 0xa7, 0x7b, 0xb6, 0x79, 0x9a, 0xbb, 0x08, 0xcb, 0x87, 0x0b, 0x26, 0x6f, 0xdd, 0xe4, 0x5c, 0xd4, - 0x4c, 0xce, 0xdc, 0xd2, 0x7c, 0xc5, 0x34, 0x81, 0xf6, 0x8a, 0x79, 0x19, 0x83, 0xc8, 0x65, 0xdd, - 0xb0, 0x3c, 0x96, 0x7e, 0x07, 0x7a, 0x1b, 0xe6, 0xb2, 0x2a, 0xd4, 0xce, 0x81, 0xca, 0x7a, 0x29, - 0xf4, 0x9d, 0x65, 0xb8, 0x2c, 0x23, 0x14, 0xf9, 0x7e, 0x14, 0x46, 0x81, 0xd3, 0xaa, 0xd6, 0x03, - 0xb7, 0x15, 0x53, 0x59, 0x30, 0xc8, 0x21, 0x42, 0x12, 0xfc, 0x9a, 0x87, 0xe3, 0x88, 0x12, 0xeb, - 0xd7, 0x0b, 0x60, 0x19, 0x3e, 0x48, 0x38, 0xce, 0xdb, 0x81, 0xff, 0xc4, 0x6d, 0x68, 0x57, 0x2b, - 0x6f, 0x18, 0x66, 0x3d, 0xfe, 0x24, 0x2e, 0xe9, 0xfe, 0x2c, 0xd6, 0xcc, 0xdb, 0x09, 0x53, 0x1b, - 0x57, 0x3c, 0xd1, 0x2f, 0xc9, 0x0c, 0x05, 0xa3, 0x4c, 0x70, 0xff, 0xa7, 0x00, 0xd7, 0x3a, 0xb6, - 0x41, 0xf4, 0x67, 0x1f, 0x8a, 0xc9, 0x32, 0x31, 0x83, 0xca, 0x9a, 0x4f, 0x42, 0x9a, 0xc3, 0xde, - 0x1d, 0xee, 0x63, 0x2d, 0x7d, 0x77, 0x5a, 0x8a, 0x73, 0x8a, 0xdf, 0xd9, 0x5b, 0x4f, 0xde, 0x07, - 0xd8, 0xf1, 0x23, 0xa7, 0xb9, 0x84, 0x06, 0x80, 0xbe, 0xd8, 0x5f, 0x3e, 0x62, 0xd0, 0x5a, 0x32, - 0xd4, 0x82, 0x86, 0x6c, 0x7d, 0x8a, 0xdf, 0x75, 0x76, 0xa3, 0x4f, 0xf7, 0xa9, 0x2d, 0xc1, 0xb5, - 0xc4, 0xbd, 0xf8, 0x73, 0x30, 0x89, 0x60, 0x86, 0x89, 0x9f, 0xe9, 0xde, 0xf7, 0x02, 0xbf, 0xdd, - 0xfa, 0xc5, 0x8c, 0xfa, 0x1f, 0x15, 0xb8, 0xa3, 0xa2, 0x5e, 0xad, 0x18, 0xe8, 0x25, 0x80, 0x18, - 0x9a, 0x70, 0x58, 0x57, 0x05, 0x7b, 0x77, 0xf8, 0x91, 0x1b, 0x2d, 0xe6, 0x07, 0x9c, 0x81, 0x46, - 0xf6, 0x8b, 0x1d, 0xc9, 0xb7, 0xf0, 0x32, 0x5c, 0xd5, 0x7e, 0x3a, 0xb9, 0xbf, 0x2b, 0xed, 0x1f, - 0x67, 0xa4, 0x3b, 0x84, 0x69, 0xb6, 0x02, 0x54, 0xda, 0xd1, 0xa1, 0x1f, 0xb8, 0x91, 0x7c, 0x7a, - 0x41, 0xb6, 0xc5, 0x83, 0x74, 0x4e, 0xf5, 0xd1, 0xcf, 0x8f, 0xcb, 0xef, 0x9d, 0x25, 0x76, 0xa4, - 0xe4, 0xb9, 0xa3, 0x1e, 0xb1, 0x5b, 0xb3, 0xd0, 0xb7, 0x64, 0xaf, 0xe3, 0x82, 0x67, 0xaf, 0xab, - 0x05, 0xcf, 0x5e, 0xb7, 0xfe, 0xb2, 0x17, 0xca, 0x3c, 0x64, 0x06, 0xfa, 0x50, 0xc4, 0x56, 0x0b, - 0xcd, 0x29, 0xe3, 0xb4, 0x06, 0x86, 0x44, 0x48, 0x8c, 0xde, 0xd3, 0x84, 0xc4, 0xf8, 0x15, 0xc8, - 0x31, 0x59, 0x9d, 0xc2, 0x0a, 0xf0, 0xfa, 0xc9, 0x71, 0xf9, 0x5a, 0x6c, 0x05, 0xe0, 0xa5, 0x59, - 0xe6, 0x80, 0x9c, 0x2a, 0xd2, 0xf6, 0x8b, 0xfe, 0xe7, 0xb0, 0x5f, 0xdc, 0x86, 0x21, 0x3c, 0xcc, - 0xac, 0x6d, 0x0b, 0xaf, 0x46, 0x9c, 0x9e, 0x18, 0xe5, 0xa6, 0xe6, 0xea, 0x21, 0xe5, 0x24, 0x9a, - 0xf5, 0xbb, 0xbd, 0x70, 0x25, 0x5f, 0xe6, 0xa2, 0x6d, 0xcb, 0x00, 0xb1, 0xf7, 0x46, 0x27, 0x6f, - 0x11, 0xfc, 0x76, 0x9e, 0xd2, 0x7d, 0xe5, 0xad, 0xa5, 0xd1, 0x31, 0xdd, 0x47, 0x3e, 0xf4, 0x4d, - 0x5c, 0x15, 0x18, 0xef, 0x7f, 0x45, 0x44, 0x54, 0x01, 0x32, 0x22, 0xa2, 0x0a, 0x18, 0xd9, 0x87, - 0xd9, 0xed, 0xc0, 0x7d, 0xe2, 0x44, 0xf4, 0x01, 0x7d, 0xc6, 0x1f, 0xc2, 0xac, 0x88, 0xd7, 0x2f, - 0xfc, 0xf5, 0xf6, 0xf5, 0x93, 0xe3, 0xf2, 0x2b, 0x2d, 0x8e, 0x82, 0x51, 0xaf, 0xf8, 0xd3, 0xc3, - 0x5a, 0xfa, 0x41, 0x4c, 0x1e, 0x23, 0xeb, 0x3f, 0x16, 0xe0, 0x22, 0xaa, 0xe5, 0xc2, 0xec, 0x2a, - 0x2b, 0x7f, 0x2e, 0xa7, 0x41, 0xbd, 0x83, 0x62, 0x2e, 0xa2, 0xd3, 0xa0, 0xf1, 0x10, 0xda, 0x36, - 0xd0, 0xc8, 0x1a, 0x8c, 0x8a, 0xdf, 0xf8, 0xfd, 0xf5, 0xe1, 0x81, 0x60, 0x46, 0x5b, 0xb0, 0x70, - 0xaa, 0x73, 0x53, 0x11, 0x4e, 0x6c, 0xc1, 0x0c, 0xdf, 0x0b, 0xda, 0x3a, 0xad, 0xf5, 0xb3, 0x5e, - 0x98, 0xdf, 0xa3, 0x81, 0xfb, 0xe8, 0x59, 0x4e, 0x67, 0xb6, 0x60, 0x5a, 0x82, 0x78, 0xd8, 0x0c, - 0xe3, 0x13, 0xe3, 0x31, 0x11, 0x65, 0x53, 0x45, 0xdc, 0x0d, 0xf9, 0xc5, 0x65, 0x12, 0x9e, 0xc1, - 0x1d, 0xf0, 0x6d, 0x18, 0x4e, 0x04, 0xae, 0xc1, 0xf1, 0x97, 0x5f, 0x68, 0x3c, 0x54, 0xab, 0x3d, - 0xb6, 0xc2, 0x24, 0xbf, 0x91, 0x7f, 0x7f, 0x23, 0x4c, 0x1f, 0xdd, 0xec, 0x9f, 0xf8, 0xc1, 0xb2, - 0x8f, 0xd5, 0xd1, 0x4a, 0x33, 0x3e, 0xd8, 0xd5, 0x1e, 0x3b, 0xaf, 0xa6, 0xc5, 0x51, 0x18, 0xa9, - 0xe0, 0x9d, 0x14, 0x3b, 0xb9, 0xff, 0xef, 0x5e, 0xb8, 0x2c, 0x1f, 0xb5, 0xe4, 0x88, 0xf9, 0x73, - 0x98, 0x95, 0xa0, 0x4a, 0x8b, 0x29, 0x0c, 0xb4, 0x61, 0x4a, 0x9a, 0xc7, 0x25, 0x95, 0x92, 0x76, - 0x04, 0x4e, 0x2c, 0xec, 0x3c, 0xf2, 0x97, 0x63, 0xfd, 0xfc, 0x38, 0x2b, 0x8c, 0x10, 0x5a, 0x21, - 0xf5, 0x35, 0xd3, 0x10, 0x8d, 0xb1, 0x7e, 0x36, 0x52, 0xd6, 0xd3, 0xfe, 0x17, 0xb5, 0x9e, 0xae, - 0xf6, 0x24, 0xed, 0xa7, 0x8b, 0x13, 0x30, 0xb6, 0x49, 0x9f, 0xc6, 0x72, 0xff, 0xdb, 0x85, 0x44, - 0xa4, 0x01, 0xa6, 0x61, 0xf0, 0x90, 0x03, 0x85, 0x38, 0x12, 0x0d, 0x46, 0x1a, 0xd0, 0x35, 0x0c, - 0x8e, 0xba, 0x06, 0x43, 0xfc, 0xa2, 0xb6, 0x71, 0x8a, 0x13, 0xbe, 0x7a, 0x9d, 0xc2, 0x9f, 0x0c, - 0x36, 0xf8, 0x61, 0x5f, 0xd0, 0x5b, 0x0f, 0xe0, 0xaa, 0xf0, 0x5f, 0x36, 0x07, 0x1f, 0x2b, 0x3a, - 0xe3, 0xf6, 0x65, 0x39, 0x70, 0xf9, 0x1e, 0x4d, 0x2e, 0x3d, 0xc6, 0xeb, 0x9d, 0x4f, 0x60, 0xd2, - 0x80, 0x2b, 0x8e, 0xa8, 0x95, 0xaa, 0x39, 0xa4, 0x58, 0x27, 0xb1, 0xad, 0x2b, 0x59, 0x55, 0xe8, - 0x8d, 0xb5, 0x28, 0x06, 0x18, 0x0d, 0xe2, 0x2b, 0xb6, 0xf0, 0x0c, 0xab, 0xde, 0x75, 0xed, 0xbb, - 0xe6, 0x2b, 0x1e, 0x8f, 0x40, 0x27, 0x77, 0x5e, 0x55, 0x6a, 0x8d, 0x1b, 0x77, 0x01, 0xd6, 0x04, - 0x8c, 0xc9, 0xa2, 0x26, 0x0d, 0x43, 0xeb, 0x27, 0x03, 0x60, 0x09, 0xc1, 0x66, 0xdd, 0x3e, 0x4b, - 0x79, 0xec, 0xa7, 0x1a, 0x2b, 0x36, 0xaa, 0xf3, 0x7a, 0x5c, 0xcb, 0xb8, 0x94, 0xcf, 0x3c, 0xd4, - 0xf3, 0xea, 0x31, 0xd4, 0x98, 0x79, 0xa9, 0xde, 0x7f, 0x95, 0xb3, 0x4c, 0xf2, 0x8f, 0xed, 0xd5, - 0x93, 0xe3, 0xf2, 0xd5, 0x9c, 0x65, 0xd2, 0xe0, 0x9b, 0xbd, 0x64, 0xda, 0xe6, 0x95, 0x48, 0xdf, - 0xf3, 0x5c, 0x89, 0xb0, 0x2f, 0x52, 0xbf, 0x14, 0xd9, 0x35, 0x65, 0x29, 0xbe, 0x47, 0x79, 0xa5, - 0xad, 0x17, 0x89, 0x07, 0xff, 0x1a, 0xc4, 0xe0, 0x6a, 0xb0, 0x21, 0x2e, 0x14, 0x35, 0x9b, 0xe5, - 0xd2, 0x21, 0xad, 0x3f, 0x16, 0xb6, 0x62, 0x79, 0xa1, 0x9b, 0x65, 0x33, 0xe7, 0x31, 0x8e, 0xf9, - 0x77, 0xce, 0x0b, 0x6a, 0x75, 0x46, 0xaa, 0x07, 0x2c, 0x48, 0xb2, 0x25, 0x3f, 0x86, 0x29, 0x35, - 0xd4, 0x09, 0xf7, 0xa3, 0xd1, 0x85, 0x57, 0xe2, 0x70, 0x98, 0x47, 0x8f, 0x9c, 0x9b, 0x4f, 0xee, - 0xdc, 0xcc, 0xc0, 0xe5, 0xef, 0xe0, 0xeb, 0xb2, 0x40, 0xf3, 0x3d, 0xd2, 0x2f, 0xba, 0xb2, 0x08, - 0xb5, 0xeb, 0xec, 0x7f, 0xa0, 0x9c, 0xe5, 0x99, 0xbe, 0xe0, 0x36, 0xa9, 0x78, 0xf5, 0x22, 0x67, - 0x5f, 0xce, 0x55, 0x5c, 0xe1, 0x5b, 0xbe, 0x8a, 0xfb, 0x57, 0xbd, 0xf2, 0x89, 0x40, 0xfa, 0x36, - 0xf4, 0xcc, 0x37, 0x72, 0x99, 0x3d, 0x38, 0xd5, 0x66, 0x9a, 0xd9, 0x38, 0xb2, 0x28, 0xef, 0x33, - 0x55, 0x40, 0xab, 0x09, 0x75, 0x37, 0x10, 0x17, 0x18, 0x57, 0x9c, 0xa8, 0xba, 0x68, 0x54, 0xc9, - 0xcb, 0xb2, 0xbe, 0x17, 0xbf, 0x2c, 0xfb, 0x37, 0x23, 0x70, 0x6e, 0xdb, 0x39, 0x70, 0x3d, 0xb6, - 0x68, 0xdb, 0x34, 0xf4, 0xdb, 0x41, 0x9d, 0x92, 0x0a, 0x4c, 0x98, 0xfe, 0x9f, 0x5d, 0xbc, 0x5b, - 0xd9, 0xbe, 0x64, 0xc2, 0xc8, 0x02, 0x8c, 0xa8, 0x37, 0xa7, 0x62, 0x33, 0xc9, 0x78, 0x8b, 0xba, - 0xda, 0x63, 0xc7, 0x68, 0xe4, 0x7d, 0xe3, 0x7e, 0x67, 0x52, 0x3d, 0x9f, 0x46, 0xdc, 0x05, 0xee, - 0xa0, 0xe7, 0xf9, 0x0d, 0x73, 0x43, 0xe4, 0x97, 0x18, 0x3f, 0x4c, 0x5d, 0xf9, 0x0c, 0x18, 0x2d, - 0x4e, 0xd9, 0xbd, 0x50, 0x17, 0xc8, 0x0d, 0x32, 0x9d, 0x71, 0x19, 0xf4, 0x25, 0x8c, 0x3e, 0x68, - 0xef, 0x53, 0x79, 0xb9, 0x35, 0x28, 0xf6, 0xc7, 0xa4, 0x57, 0xb3, 0x28, 0xdf, 0x7b, 0x8b, 0x8f, - 0xc1, 0xe3, 0xf6, 0x3e, 0x4d, 0x47, 0x2f, 0x67, 0x0b, 0x93, 0xc6, 0x8c, 0x1c, 0x42, 0x31, 0xe9, - 0x80, 0x2c, 0x42, 0xc0, 0x75, 0x70, 0x9b, 0xc6, 0x50, 0x1e, 0x5a, 0x8c, 0x74, 0xee, 0x16, 0x69, - 0x54, 0x92, 0xe2, 0x4a, 0x7e, 0x15, 0x66, 0x32, 0xad, 0x8e, 0xea, 0x09, 0x55, 0x67, 0x83, 0x26, - 0x2e, 0xea, 0x09, 0xa9, 0xc9, 0xf7, 0x5a, 0x46, 0xcd, 0xd9, 0xb5, 0x90, 0x06, 0x4c, 0x26, 0x1c, - 0x6b, 0x45, 0x22, 0x88, 0x7c, 0x57, 0x5d, 0xdc, 0x98, 0x64, 0x2c, 0xd5, 0xcc, 0xba, 0x92, 0x2c, - 0xc9, 0x3a, 0x8c, 0xa8, 0xe3, 0xbe, 0x88, 0xbe, 0x95, 0x65, 0xda, 0x28, 0x9d, 0x1c, 0x97, 0xa7, - 0x63, 0xd3, 0x86, 0xc1, 0x33, 0x66, 0x40, 0x7e, 0x0d, 0xae, 0xaa, 0x29, 0xba, 0x15, 0x64, 0x1b, - 0x81, 0x44, 0x0c, 0xf6, 0x1b, 0xc9, 0x19, 0x9e, 0x87, 0xbf, 0x77, 0x67, 0xb1, 0xb7, 0x54, 0x58, - 0xed, 0xb1, 0xbb, 0xb3, 0x26, 0x3f, 0x29, 0xc0, 0xf9, 0x9c, 0x5a, 0xc7, 0xb0, 0xd6, 0xae, 0x96, - 0x39, 0x54, 0xee, 0xf1, 0xd9, 0x90, 0xdb, 0x88, 0x9f, 0xd7, 0x49, 0x13, 0x9d, 0xd1, 0xef, 0x9c, - 0x9a, 0xc8, 0x9b, 0x30, 0x88, 0x67, 0xe4, 0xb0, 0x34, 0x8e, 0x5a, 0x24, 0x46, 0xb0, 0xc1, 0x93, - 0xb4, 0xbe, 0x6f, 0x08, 0x1c, 0xb2, 0xca, 0xb4, 0x31, 0xdc, 0xb7, 0xa4, 0xf6, 0x24, 0xe2, 0x5d, - 0x09, 0x8d, 0x9e, 0x17, 0xc9, 0x28, 0x17, 0x46, 0xb0, 0x7d, 0x93, 0x6c, 0x11, 0x60, 0x38, 0x10, - 0xab, 0xd2, 0xfd, 0xfe, 0xe1, 0xfe, 0xe2, 0x00, 0xff, 0x70, 0xa4, 0xc7, 0xf6, 0x6f, 0x0e, 0xf3, - 0xe7, 0x9d, 0xbb, 0x9e, 0xfb, 0xc8, 0x8d, 0x17, 0x30, 0xdd, 0xba, 0x16, 0x67, 0xbd, 0x11, 0xba, - 0x6f, 0x4e, 0x7e, 0x1b, 0x65, 0x88, 0xeb, 0xed, 0x6a, 0x88, 0x7b, 0x4b, 0xbb, 0xb2, 0xd2, 0xe2, - 0x5a, 0x72, 0x1d, 0xc7, 0x34, 0x7c, 0xc5, 0x77, 0x59, 0x5f, 0xc3, 0x20, 0x86, 0xa2, 0xe4, 0xf7, - 0x81, 0xa3, 0x0b, 0x37, 0xc5, 0xb2, 0xdd, 0xa1, 0xf9, 0x3c, 0x76, 0xa5, 0x78, 0xb2, 0xcd, 0x25, - 0x8e, 0x00, 0x43, 0xe2, 0x08, 0x21, 0x3b, 0x30, 0xb5, 0x1d, 0xd0, 0x86, 0xf0, 0x1b, 0x6e, 0x05, - 0xc2, 0x38, 0xc1, 0xcd, 0x1e, 0xb8, 0xe5, 0xb7, 0x64, 0x71, 0x8d, 0xaa, 0x72, 0x7d, 0x43, 0xcd, - 0x20, 0x27, 0x2b, 0x30, 0x51, 0xa5, 0x4e, 0x50, 0x3f, 0x7c, 0x40, 0x9f, 0x31, 0x75, 0xc7, 0x48, - 0xf4, 0x10, 0x62, 0x09, 0xeb, 0x2f, 0x16, 0xe9, 0x3e, 0x1e, 0x26, 0x11, 0xf9, 0x14, 0x06, 0xab, - 0x7e, 0x10, 0x2d, 0x3e, 0x13, 0x8b, 0x9a, 0xbc, 0x31, 0xe2, 0xc0, 0xc5, 0x0b, 0x32, 0xd9, 0x45, - 0xe8, 0x07, 0x51, 0x6d, 0xdf, 0x08, 0x89, 0xc4, 0x51, 0xc8, 0x33, 0x98, 0x36, 0x17, 0x14, 0xe1, - 0xce, 0x3a, 0x2c, 0xd4, 0xac, 0xac, 0x55, 0x8b, 0xa3, 0x2c, 0x5e, 0x17, 0xdc, 0xaf, 0x24, 0x97, - 0xad, 0x47, 0x58, 0xae, 0x47, 0x29, 0xca, 0xa2, 0x27, 0x1b, 0x98, 0x25, 0x84, 0xf7, 0xa8, 0x12, - 0x72, 0x37, 0xd8, 0x91, 0x38, 0xe8, 0x56, 0x1b, 0x17, 0x25, 0x94, 0x84, 0x13, 0x26, 0x53, 0xcb, - 0xd8, 0x29, 0x52, 0xb2, 0x0d, 0xe7, 0x76, 0x43, 0xba, 0x1d, 0xd0, 0x27, 0x2e, 0x7d, 0x2a, 0xf9, - 0x41, 0x1c, 0xa1, 0x88, 0xf1, 0x6b, 0xf1, 0xd2, 0x2c, 0x86, 0x69, 0x62, 0xf2, 0x3e, 0xc0, 0xb6, - 0xeb, 0x79, 0xb4, 0x81, 0xd7, 0x8e, 0xa3, 0xc8, 0x0a, 0x4d, 0xaa, 0x2d, 0x84, 0xd6, 0x7c, 0xaf, - 0xa9, 0x8b, 0x54, 0x43, 0x26, 0x8b, 0x30, 0xbe, 0xe6, 0xd5, 0x9b, 0x6d, 0xe1, 0x1e, 0x10, 0xe2, - 0x82, 0x22, 0x22, 0xa7, 0xb9, 0xbc, 0xa0, 0x96, 0xfa, 0xc8, 0x4d, 0x12, 0xf2, 0x00, 0x88, 0x00, - 0x88, 0x59, 0xeb, 0xec, 0x37, 0xa9, 0xf8, 0xdc, 0xd1, 0x54, 0x22, 0x19, 0xe1, 0x74, 0x37, 0x02, - 0x92, 0xa5, 0xc8, 0xe6, 0xde, 0x87, 0x51, 0x6d, 0xce, 0x67, 0xc4, 0x20, 0x98, 0xd6, 0x63, 0x10, - 0x8c, 0xe8, 0xb1, 0x06, 0xfe, 0x71, 0x01, 0xe6, 0xb3, 0xbf, 0x25, 0xa1, 0x80, 0x6d, 0xc1, 0x88, - 0x02, 0xaa, 0x57, 0x27, 0x52, 0xf5, 0x4f, 0x68, 0x40, 0xfc, 0x83, 0x96, 0x2b, 0x8f, 0xde, 0xfb, - 0x98, 0xc7, 0x73, 0xd8, 0xe3, 0xff, 0xce, 0x30, 0x4c, 0xa3, 0x77, 0x75, 0x72, 0x9d, 0xfa, 0x04, - 0x63, 0x89, 0x20, 0x4c, 0x33, 0x2f, 0x0b, 0x4b, 0x13, 0x87, 0x27, 0x03, 0x5f, 0x19, 0x04, 0xe4, - 0x1d, 0xdd, 0x27, 0xa2, 0x57, 0xcb, 0x4a, 0x22, 0x81, 0x7a, 0x17, 0x62, 0x67, 0x89, 0x37, 0x8c, - 0x2b, 0xf9, 0x53, 0x2f, 0x7a, 0xfd, 0xa7, 0x5d, 0xf4, 0x76, 0xd5, 0xa2, 0xc7, 0x63, 0x54, 0xbc, - 0xae, 0x2d, 0x7a, 0x2f, 0x7f, 0xb5, 0x1b, 0x7c, 0xd9, 0xab, 0xdd, 0xd0, 0x8b, 0xad, 0x76, 0xc3, - 0xcf, 0xb9, 0xda, 0xdd, 0x85, 0x89, 0x4d, 0x4a, 0x1b, 0xda, 0x45, 0xc9, 0x48, 0xbc, 0x7b, 0x7a, - 0x14, 0x4d, 0x60, 0x59, 0xb7, 0x25, 0x09, 0xaa, 0xdc, 0x55, 0x13, 0xfe, 0x7a, 0x56, 0xcd, 0xd1, - 0x97, 0xbc, 0x6a, 0x8e, 0xbd, 0xc8, 0xaa, 0x99, 0x5a, 0xfa, 0xc6, 0xcf, 0xbc, 0xf4, 0xbd, 0xc8, - 0x6a, 0xf5, 0x31, 0xba, 0x14, 0x56, 0xab, 0xab, 0xc2, 0x7b, 0x44, 0x73, 0xd7, 0x58, 0xf5, 0x43, - 0xe9, 0x71, 0x8d, 0x7f, 0x33, 0xd8, 0xb6, 0x1f, 0xc8, 0x2b, 0x6f, 0xfc, 0xdb, 0x5a, 0x44, 0x47, - 0x42, 0x9d, 0x5e, 0xb9, 0xeb, 0x0f, 0x89, 0x27, 0x7b, 0x62, 0x8d, 0x4b, 0x1e, 0xa3, 0x6c, 0x59, - 0x6e, 0xfd, 0x59, 0x81, 0x5f, 0x4a, 0xfe, 0xff, 0xb8, 0x54, 0xbe, 0xc8, 0x45, 0xe1, 0x6f, 0xc4, - 0x4f, 0xf9, 0x45, 0xd8, 0x81, 0xc0, 0xa9, 0x3f, 0x8e, 0x6f, 0x6a, 0x7f, 0xc0, 0xbe, 0x73, 0xbd, - 0x00, 0x03, 0xab, 0xc6, 0x67, 0x45, 0xb3, 0x70, 0xef, 0x8e, 0x5c, 0x00, 0x44, 0x44, 0x03, 0x0e, - 0x36, 0x17, 0x00, 0x9d, 0x00, 0x7d, 0xe5, 0x26, 0x2d, 0x9b, 0xbf, 0x44, 0xcf, 0x6c, 0xc1, 0xbb, - 0xe9, 0xb7, 0xd4, 0x78, 0x18, 0x89, 0xdf, 0x52, 0xeb, 0x62, 0x8c, 0x5f, 0x55, 0xef, 0xc2, 0x45, - 0x9b, 0x1e, 0xf9, 0x4f, 0xe8, 0xcb, 0x65, 0xfb, 0x15, 0x5c, 0x30, 0x19, 0xf2, 0x57, 0x37, 0x3c, - 0x8a, 0xfb, 0xc7, 0xd9, 0xb1, 0xdf, 0x05, 0x01, 0x8f, 0xfd, 0xce, 0x43, 0x48, 0xb3, 0x3f, 0xf5, - 0x7d, 0x03, 0xcb, 0x2c, 0x1f, 0xe6, 0x4d, 0xe6, 0x95, 0x46, 0x03, 0x73, 0x40, 0xd6, 0xdd, 0x96, - 0xe3, 0x45, 0x64, 0x0b, 0x46, 0xb5, 0x9f, 0x09, 0x53, 0x81, 0x56, 0x22, 0x74, 0x9a, 0x18, 0x60, - 0x84, 0xe0, 0x8c, 0xc1, 0x16, 0x85, 0x72, 0x52, 0x3c, 0x4c, 0x64, 0x7a, 0x9d, 0x8b, 0x30, 0xae, - 0xfd, 0x54, 0x26, 0x4b, 0xfc, 0xf8, 0xb5, 0x1a, 0x4c, 0x81, 0x99, 0x24, 0x56, 0x1d, 0xe6, 0xb2, - 0x84, 0xc6, 0x63, 0x35, 0x93, 0x95, 0x38, 0xce, 0x53, 0x77, 0x6f, 0xbb, 0xc9, 0xbc, 0x18, 0x4f, - 0xd6, 0xdf, 0xef, 0x87, 0x8b, 0x62, 0x30, 0x5e, 0xe6, 0x88, 0x93, 0x1f, 0xc2, 0xa8, 0x36, 0xc6, - 0x42, 0xe8, 0x57, 0x64, 0xe8, 0xcd, 0xbc, 0xb9, 0xc0, 0x4d, 0x1a, 0x6d, 0x04, 0xd4, 0x12, 0xc3, - 0xbd, 0xda, 0x63, 0xeb, 0x2c, 0x49, 0x13, 0x26, 0xcc, 0x81, 0x16, 0x56, 0x9d, 0x6b, 0x99, 0x95, - 0x98, 0xa8, 0x32, 0x90, 0x73, 0xa3, 0x96, 0x39, 0xdc, 0xab, 0x3d, 0x76, 0x82, 0x37, 0xf9, 0x06, - 0xce, 0xa5, 0x46, 0x59, 0x18, 0xeb, 0x5e, 0xcb, 0xac, 0x30, 0x85, 0xcd, 0xcd, 0xb1, 0x01, 0x82, - 0x73, 0xab, 0x4d, 0x57, 0x42, 0x1a, 0x30, 0xa6, 0x0f, 0xbc, 0x30, 0x3b, 0x5d, 0xed, 0x20, 0x4a, - 0x8e, 0xc8, 0x95, 0x3b, 0x21, 0x4b, 0x1c, 0xfb, 0x67, 0xa6, 0x89, 0xd9, 0x40, 0x1e, 0x86, 0x41, - 0xfe, 0x9b, 0x2d, 0x01, 0xdb, 0x01, 0x0d, 0xa9, 0x57, 0xa7, 0x86, 0x83, 0xf6, 0x0b, 0x2e, 0x01, - 0xff, 0xa1, 0x00, 0xa5, 0x2c, 0xbe, 0x55, 0xea, 0x35, 0xc8, 0x36, 0x14, 0x93, 0x15, 0x89, 0x59, - 0x6d, 0xa9, 0x58, 0xb9, 0xb9, 0x4d, 0x5a, 0xed, 0xb1, 0x53, 0xd4, 0x64, 0x13, 0xce, 0x69, 0x30, - 0x61, 0x5c, 0xed, 0x3d, 0x8d, 0x71, 0x95, 0x8d, 0x42, 0x8a, 0x54, 0xb7, 0x4d, 0xaf, 0xe2, 0xce, - 0xb8, 0xec, 0x1f, 0x39, 0xae, 0xc7, 0x14, 0x5d, 0x2d, 0xd4, 0x13, 0xc4, 0x50, 0x21, 0x1b, 0x6e, - 0x6d, 0x45, 0xa8, 0x7c, 0x50, 0xa2, 0x50, 0xac, 0x8f, 0x70, 0x05, 0x17, 0x36, 0x3a, 0xfe, 0x3c, - 0x55, 0x31, 0xbb, 0x02, 0x03, 0x3b, 0xeb, 0xd5, 0xa5, 0x8a, 0x78, 0xec, 0xca, 0x43, 0x24, 0x34, - 0xc3, 0x5a, 0xdd, 0xb1, 0x79, 0x81, 0xf5, 0x21, 0x90, 0x7b, 0x34, 0x12, 0xc1, 0xda, 0x15, 0xdd, - 0xab, 0x30, 0x24, 0x40, 0x82, 0x12, 0x5d, 0xe3, 0x44, 0xe8, 0x77, 0x5b, 0x96, 0x59, 0xdb, 0xf2, - 0x9c, 0xd0, 0xa4, 0x4e, 0xa8, 0x6d, 0xcc, 0xef, 0xc1, 0x70, 0x20, 0x60, 0x62, 0x5f, 0x9e, 0x50, - 0xb9, 0x38, 0x10, 0xcc, 0xed, 0xd9, 0x12, 0xc7, 0x56, 0x7f, 0x59, 0xeb, 0x18, 0xce, 0x64, 0x6b, - 0x6d, 0x79, 0x89, 0x49, 0x55, 0x08, 0x4b, 0x0e, 0xc7, 0x2d, 0xf4, 0x21, 0x8f, 0xa8, 0xfe, 0xd4, - 0x15, 0x45, 0x83, 0x1f, 0xb9, 0x08, 0xe2, 0xa3, 0xa1, 0x58, 0x6f, 0xa9, 0xe0, 0x28, 0x19, 0xdc, - 0xf2, 0x72, 0x4a, 0x6c, 0x62, 0xd8, 0x97, 0x7b, 0xe8, 0x2e, 0xf3, 0x32, 0x1a, 0xe1, 0xc0, 0x1c, - 0xdf, 0xe6, 0x59, 0xaf, 0x44, 0x5a, 0x3c, 0x5f, 0x2d, 0x8d, 0x4b, 0x30, 0xa2, 0x60, 0xea, 0xee, - 0x8b, 0xcb, 0xca, 0xc0, 0xdf, 0x7b, 0x8b, 0xbf, 0x0a, 0xae, 0x2b, 0x06, 0x31, 0x1d, 0xab, 0x82, - 0x7f, 0x77, 0xdf, 0x72, 0x15, 0x21, 0x0d, 0xa2, 0x6f, 0xb5, 0x8a, 0x38, 0x2e, 0xd0, 0x59, 0xaa, - 0x30, 0xf0, 0xf7, 0x16, 0x4e, 0x23, 0xa8, 0x6f, 0xb9, 0x0a, 0x26, 0xa8, 0x6f, 0xaf, 0x0a, 0x2a, - 0x03, 0x28, 0xf1, 0x49, 0x9a, 0xaa, 0x64, 0x25, 0x5d, 0x89, 0x34, 0x5c, 0x27, 0x28, 0x3a, 0x8e, - 0x07, 0x85, 0x79, 0x2e, 0xac, 0x5f, 0x40, 0x35, 0x4c, 0x60, 0xdf, 0x6e, 0x35, 0xff, 0xb0, 0xc0, - 0xc3, 0x39, 0x55, 0xb7, 0xb4, 0x84, 0x94, 0xde, 0x23, 0x5f, 0xbb, 0x9a, 0xd7, 0xbe, 0xf6, 0x07, - 0xae, 0xd7, 0xd0, 0xaf, 0xe6, 0x9d, 0x76, 0x74, 0xa8, 0xc2, 0x1d, 0x3f, 0x76, 0xbd, 0x86, 0x9d, - 0xc4, 0x26, 0xef, 0xc3, 0xb8, 0x06, 0x52, 0xda, 0x1a, 0xcf, 0x19, 0xa1, 0x93, 0xbb, 0x0d, 0xdb, - 0xc4, 0xb4, 0xfe, 0xaa, 0x00, 0x53, 0x19, 0xa9, 0x92, 0xd1, 0x98, 0x81, 0xa7, 0x20, 0xb5, 0x50, - 0x89, 0x2c, 0x4f, 0x18, 0x59, 0xc2, 0xd8, 0x24, 0x15, 0x22, 0x46, 0xcb, 0xd7, 0xd2, 0x3a, 0xf7, - 0x6a, 0x09, 0xc8, 0xb2, 0x53, 0x39, 0xeb, 0xe8, 0x24, 0x04, 0x88, 0x5b, 0x22, 0xcc, 0xc6, 0x55, - 0xa6, 0xd2, 0x6a, 0x39, 0xa1, 0x5f, 0x4a, 0x52, 0x6a, 0xad, 0x1a, 0xeb, 0x37, 0x7a, 0xe1, 0x7c, - 0x46, 0xff, 0xab, 0x34, 0xfa, 0xeb, 0x10, 0x41, 0x22, 0x33, 0x77, 0xdf, 0x2f, 0x28, 0x33, 0xb7, - 0xf5, 0x5f, 0x7a, 0xe1, 0xfc, 0x6e, 0x2b, 0xc4, 0x17, 0x56, 0x6b, 0xde, 0x13, 0xea, 0x45, 0x7e, - 0xf0, 0x0c, 0x5f, 0x85, 0x90, 0x77, 0x60, 0x60, 0x95, 0x36, 0x9b, 0xbe, 0x98, 0xff, 0x97, 0xa4, - 0x77, 0x44, 0x12, 0x1b, 0x91, 0x56, 0x7b, 0x6c, 0x8e, 0x4d, 0xde, 0x87, 0x91, 0x55, 0xea, 0x04, - 0xd1, 0x3e, 0x75, 0xe4, 0x91, 0x45, 0x66, 0xb2, 0xd0, 0x48, 0x04, 0xc2, 0x6a, 0x8f, 0x1d, 0x63, - 0x93, 0x05, 0x76, 0x9a, 0xf7, 0x0e, 0xd4, 0x6b, 0xf2, 0x9c, 0x0a, 0x19, 0xce, 0x6a, 0x8f, 0x8d, - 0xb8, 0x64, 0x03, 0xc6, 0x2b, 0x07, 0xd4, 0x8b, 0x36, 0x68, 0xe4, 0x34, 0x9c, 0xc8, 0x11, 0xaa, - 0xed, 0xab, 0x79, 0xc4, 0x06, 0xf2, 0x6a, 0x8f, 0x6d, 0x52, 0x93, 0x0f, 0x61, 0xe8, 0x9e, 0xef, - 0x37, 0xf6, 0x9f, 0x51, 0xa1, 0xae, 0x96, 0xf3, 0x18, 0x09, 0xb4, 0xd5, 0x1e, 0x5b, 0x52, 0x2c, - 0x0e, 0x40, 0xdf, 0x46, 0x78, 0x60, 0x1d, 0x17, 0xa0, 0xb4, 0xec, 0x3f, 0xf5, 0x32, 0xa5, 0xfa, - 0x3d, 0x53, 0xaa, 0x92, 0x7d, 0x06, 0x7e, 0x42, 0xae, 0x6f, 0x43, 0xff, 0xb6, 0xeb, 0x1d, 0x24, - 0x54, 0xc1, 0x0c, 0x3a, 0x86, 0x85, 0xe2, 0x71, 0xbd, 0x03, 0xb2, 0x2e, 0x75, 0x70, 0x61, 0x6b, - 0xec, 0x33, 0x14, 0xff, 0x0c, 0x6a, 0x1d, 0x3b, 0xd6, 0xb5, 0xf9, 0x6f, 0xd9, 0xc1, 0x37, 0x60, - 0x36, 0xa7, 0x5e, 0xf1, 0x3c, 0x9c, 0xf5, 0xad, 0x1f, 0x15, 0x9b, 0xd7, 0x61, 0x26, 0x73, 0xfc, - 0x52, 0x88, 0xff, 0x2c, 0x6b, 0x22, 0xf2, 0x9e, 0x97, 0x60, 0x48, 0xa6, 0x78, 0xe2, 0xb6, 0x1f, - 0xf9, 0x13, 0x1f, 0x48, 0xc9, 0x0f, 0x55, 0x06, 0xf6, 0x90, 0xdf, 0xe3, 0x9e, 0x16, 0x48, 0x89, - 0x7f, 0x4e, 0x1f, 0xbc, 0xc0, 0x47, 0xa3, 0x78, 0xb1, 0x3a, 0x57, 0xfd, 0x30, 0xf2, 0x94, 0xe7, - 0xad, 0xad, 0x7e, 0x93, 0x1b, 0x50, 0x94, 0xe9, 0x1c, 0x44, 0xde, 0x18, 0x91, 0x47, 0xdc, 0x4e, - 0xc1, 0xc9, 0x7b, 0x30, 0x9b, 0x84, 0xc9, 0x5e, 0xf2, 0x17, 0x6e, 0x79, 0xc5, 0xd6, 0x9f, 0xf6, - 0x62, 0xac, 0xeb, 0x0e, 0xf3, 0x9a, 0x49, 0x77, 0xab, 0x2a, 0xa4, 0xd5, 0xbb, 0x55, 0x25, 0xf3, - 0x30, 0xb2, 0x55, 0x35, 0xf2, 0x64, 0xd9, 0x31, 0x80, 0x35, 0x9b, 0x75, 0xa1, 0x12, 0xd4, 0x0f, - 0xdd, 0x88, 0xd6, 0xa3, 0x76, 0x20, 0x56, 0x61, 0x3b, 0x05, 0x27, 0x16, 0x8c, 0xdd, 0x6b, 0xba, - 0xfb, 0x75, 0xc9, 0x8c, 0x8b, 0xc0, 0x80, 0x91, 0xd7, 0x60, 0x62, 0xcd, 0x0b, 0x23, 0xa7, 0xd9, - 0xdc, 0xa0, 0xd1, 0xa1, 0xdf, 0x10, 0xa9, 0x3c, 0xed, 0x04, 0x94, 0xd5, 0xbb, 0xe4, 0x7b, 0x91, - 0xe3, 0x7a, 0x34, 0xb0, 0xdb, 0x5e, 0xe4, 0x1e, 0x51, 0xd1, 0xf7, 0x14, 0x9c, 0xbc, 0x0d, 0x33, - 0x0a, 0xb6, 0x15, 0xd4, 0x0f, 0x69, 0x18, 0x05, 0x98, 0x3d, 0x0f, 0x03, 0xfe, 0xd8, 0xd9, 0x85, - 0x58, 0x43, 0xd3, 0x6f, 0x37, 0x56, 0xbc, 0x27, 0x6e, 0xe0, 0x7b, 0x98, 0x9b, 0x62, 0x58, 0xd4, - 0x90, 0x80, 0x5b, 0x7f, 0x30, 0x9c, 0xf9, 0xd9, 0xbe, 0xc8, 0x1c, 0xfc, 0x02, 0xc6, 0x96, 0x9c, - 0x96, 0xb3, 0xef, 0x36, 0xdd, 0xc8, 0x55, 0x69, 0xc6, 0xde, 0xe9, 0xf2, 0xcd, 0xcb, 0x04, 0x1f, - 0xb4, 0xa1, 0x13, 0xdb, 0x06, 0xab, 0xb9, 0xbf, 0x1c, 0x84, 0x99, 0x4c, 0x3c, 0x72, 0x5d, 0xe4, - 0x23, 0x53, 0xeb, 0xaa, 0x48, 0x76, 0x65, 0x27, 0xc1, 0x6c, 0x2c, 0x11, 0xb4, 0xd4, 0xa4, 0x8e, - 0xd7, 0x16, 0xa9, 0xae, 0x6c, 0x03, 0xc6, 0xc6, 0x92, 0xe9, 0x0d, 0x1a, 0x33, 0x74, 0x9c, 0xb6, - 0x13, 0x50, 0x72, 0x05, 0x46, 0x19, 0x44, 0xb2, 0xea, 0xe7, 0x4f, 0xfc, 0x34, 0x10, 0xe3, 0xb4, - 0xe9, 0x37, 0xa8, 0xc6, 0x69, 0x80, 0x73, 0x32, 0xa1, 0x8c, 0x13, 0x83, 0x48, 0x4e, 0x83, 0x9c, - 0x93, 0x06, 0x22, 0xaf, 0xc0, 0x78, 0xa5, 0xd5, 0xd2, 0x18, 0x61, 0x8e, 0x2b, 0xdb, 0x04, 0x92, - 0xcb, 0x00, 0x95, 0x56, 0x4b, 0xb2, 0xc1, 0xfc, 0x55, 0xb6, 0x06, 0x21, 0x37, 0xe3, 0x70, 0x65, - 0x1a, 0x2b, 0xbc, 0x4e, 0xb0, 0x33, 0x4a, 0x98, 0x5c, 0x55, 0x6c, 0x27, 0xc1, 0x14, 0xb8, 0x5c, - 0x13, 0x60, 0xf2, 0x11, 0x5c, 0x48, 0xf8, 0x5d, 0x68, 0x15, 0xa0, 0xa9, 0xdf, 0xce, 0x47, 0x20, - 0xef, 0xc2, 0xf9, 0x44, 0xa1, 0xac, 0x0e, 0xad, 0xfa, 0x76, 0x4e, 0x29, 0xf9, 0x00, 0x4a, 0x89, - 0x67, 0xdb, 0x71, 0xa5, 0x68, 0xc1, 0xb7, 0x73, 0xcb, 0xd9, 0xd7, 0x95, 0x78, 0xff, 0x25, 0xaa, - 0xc4, 0xcb, 0x4a, 0x3b, 0xbb, 0x90, 0xac, 0x42, 0x39, 0xd3, 0x97, 0x45, 0xab, 0x18, 0xf3, 0x72, - 0xd9, 0xdd, 0xd0, 0xc8, 0x22, 0xcc, 0x67, 0xa2, 0xc8, 0x66, 0x60, 0xb6, 0x2e, 0xbb, 0x23, 0x0e, - 0x59, 0x80, 0xe9, 0xd8, 0xa7, 0x47, 0x6b, 0x02, 0x26, 0xea, 0xb2, 0x33, 0xcb, 0xc8, 0x9b, 0xe6, - 0xe3, 0x7c, 0x5e, 0x19, 0xe6, 0xe9, 0xb2, 0xd3, 0x05, 0xd6, 0x49, 0x01, 0xe6, 0x33, 0x37, 0x4a, - 0xa9, 0xcf, 0xcf, 0x25, 0x15, 0x47, 0x6d, 0x2d, 0xb8, 0x01, 0xfd, 0xa8, 0xe0, 0x73, 0x5b, 0xb1, - 0xf4, 0x35, 0x45, 0x7a, 0xce, 0x8a, 0x95, 0xda, 0x88, 0x43, 0xee, 0xa9, 0xbb, 0xc1, 0x3e, 0xb4, - 0x64, 0xdc, 0x4a, 0x2a, 0x50, 0x19, 0x95, 0xeb, 0x77, 0x84, 0xf2, 0x36, 0xf0, 0x45, 0xae, 0x61, - 0xfe, 0xb4, 0x00, 0xe5, 0x2e, 0xfa, 0x81, 0xea, 0x53, 0xe1, 0x14, 0x7d, 0xba, 0xaf, 0xfa, 0xc4, - 0xdf, 0xc6, 0x2e, 0x9c, 0x4e, 0x07, 0x79, 0xd9, 0xdd, 0xfa, 0xab, 0x02, 0x90, 0xb4, 0x1e, 0x4a, - 0xbe, 0x0b, 0x23, 0xd5, 0xea, 0xaa, 0xe1, 0xd1, 0x97, 0xba, 0x1d, 0x8a, 0x31, 0xc8, 0xed, 0x53, - 0xb9, 0xf0, 0xe9, 0x0e, 0x7c, 0x9f, 0xa4, 0xfc, 0x06, 0xfb, 0x3a, 0xfa, 0x0d, 0xa6, 0xbc, 0x06, - 0x57, 0x32, 0x1c, 0xe1, 0xfa, 0xbb, 0x38, 0xc2, 0xa5, 0xbd, 0xdc, 0xac, 0x65, 0x28, 0xe5, 0xa9, - 0xb2, 0xb8, 0xc2, 0xf1, 0x20, 0x5f, 0xda, 0x0d, 0x17, 0x5f, 0xe1, 0x4c, 0xb0, 0xf5, 0x2e, 0x9c, - 0x57, 0xd4, 0x3c, 0x7b, 0x88, 0x16, 0x81, 0x40, 0x9c, 0x7f, 0x55, 0xa4, 0x83, 0x18, 0x60, 0xfd, - 0x49, 0x7f, 0x8a, 0xb0, 0xda, 0x3e, 0x3a, 0x72, 0x82, 0x67, 0xa4, 0x62, 0x12, 0xf6, 0x75, 0x3d, - 0x72, 0x2c, 0xf6, 0xff, 0xf4, 0xb8, 0xdc, 0xa3, 0x71, 0x67, 0xfb, 0x02, 0x6a, 0x18, 0x5e, 0x9d, - 0xf2, 0xbb, 0xb1, 0x5e, 0x1e, 0x65, 0xc9, 0x00, 0x92, 0x3d, 0x18, 0x17, 0x7b, 0x37, 0xfe, 0x96, - 0xdf, 0xd8, 0xed, 0xe4, 0x37, 0x66, 0x34, 0xef, 0xa6, 0x41, 0xc2, 0x67, 0xa3, 0xc9, 0x86, 0x7c, - 0x01, 0x13, 0x52, 0x53, 0x13, 0x8c, 0xb9, 0x37, 0xd3, 0x9d, 0xce, 0x8c, 0x4d, 0x1a, 0xce, 0x39, - 0xc1, 0x88, 0x35, 0x59, 0x2e, 0x76, 0x9c, 0xf3, 0xc0, 0x69, 0x9a, 0x6c, 0x90, 0x88, 0x26, 0x1b, - 0xb0, 0xb9, 0x4f, 0x81, 0xa4, 0xfb, 0xd5, 0xed, 0x73, 0x1a, 0xd7, 0x3e, 0xa7, 0xb9, 0x0a, 0x4c, - 0x65, 0x74, 0xe0, 0x4c, 0x2c, 0x3e, 0x05, 0x92, 0x6e, 0xe9, 0x59, 0x38, 0x58, 0xd7, 0xe1, 0x35, - 0x25, 0x02, 0x35, 0x1b, 0x0c, 0x9e, 0xd2, 0x02, 0xfe, 0xeb, 0xbd, 0x50, 0xee, 0x82, 0x4a, 0x7e, - 0xbf, 0x90, 0x94, 0x36, 0x9f, 0x8d, 0xef, 0x27, 0xa5, 0x9d, 0x4d, 0x9f, 0x21, 0xf6, 0xc5, 0x0f, - 0x7e, 0xf2, 0xe7, 0xcf, 0x7d, 0xf2, 0x48, 0x0f, 0xd9, 0xd9, 0xa5, 0xd5, 0xaf, 0x4b, 0xcb, 0x86, - 0x69, 0xe3, 0xcc, 0x76, 0x9a, 0xcd, 0xeb, 0x32, 0x80, 0xc8, 0x35, 0xba, 0xee, 0x1f, 0x08, 0x3d, - 0x51, 0x83, 0x58, 0x77, 0x61, 0x26, 0xc1, 0x53, 0x58, 0xe5, 0xbf, 0x0b, 0xea, 0xa5, 0x39, 0x32, - 0xed, 0x5b, 0x3c, 0xf7, 0xf3, 0xe3, 0xf2, 0x38, 0x53, 0xe9, 0x6f, 0xc6, 0x81, 0xec, 0xe5, 0x5f, - 0xd6, 0x86, 0x7e, 0xaf, 0x50, 0x69, 0xea, 0x11, 0x78, 0xc8, 0x1d, 0x18, 0xe4, 0x90, 0x44, 0xb8, - 0x68, 0x1d, 0x5b, 0xac, 0x09, 0x02, 0xd1, 0x9a, 0xc1, 0x77, 0xb1, 0xf8, 0xa3, 0x12, 0xc7, 0x71, - 0xb0, 0x76, 0x79, 0xfa, 0x94, 0x18, 0xac, 0x42, 0x52, 0xf7, 0x57, 0xe2, 0x78, 0x13, 0xd2, 0x09, - 0x44, 0xe2, 0x79, 0xfe, 0xd3, 0x26, 0x6d, 0xf0, 0xd4, 0x74, 0x8b, 0x63, 0xc2, 0x09, 0xa4, 0xdf, - 0x61, 0x0c, 0x90, 0xcc, 0xfa, 0x04, 0x66, 0x98, 0xa6, 0x10, 0x24, 0xeb, 0xc3, 0xa4, 0x09, 0x0c, - 0x66, 0x7a, 0xd6, 0x3b, 0x0c, 0x84, 0x9e, 0xf5, 0xa2, 0xd0, 0x5a, 0x87, 0x0b, 0xdc, 0x2a, 0xa9, - 0x77, 0x29, 0xbe, 0x03, 0x18, 0xc0, 0xdf, 0x89, 0x57, 0x95, 0x19, 0xbd, 0xe7, 0x78, 0xd6, 0xc7, - 0xf8, 0x6c, 0x47, 0x4c, 0x52, 0xd7, 0xf7, 0x62, 0x13, 0xe4, 0xe9, 0xde, 0xf9, 0xfe, 0x4d, 0x98, - 0xaf, 0xb4, 0x5a, 0xd4, 0x6b, 0xc4, 0x84, 0x3b, 0x81, 0x73, 0xca, 0x28, 0x0c, 0xa4, 0x02, 0x03, - 0x88, 0xad, 0x2e, 0x50, 0x45, 0x73, 0x33, 0x9a, 0x83, 0x78, 0x22, 0x7e, 0x28, 0x56, 0xc0, 0x29, - 0xad, 0x06, 0xcc, 0x56, 0xdb, 0xfb, 0x47, 0x6e, 0x84, 0xfe, 0xf8, 0x18, 0xc9, 0x44, 0xd6, 0xbd, - 0x26, 0x33, 0x5e, 0x71, 0x61, 0x5c, 0x8f, 0x9f, 0x77, 0xa0, 0x4b, 0xbf, 0x88, 0x6e, 0xf2, 0xe4, - 0xce, 0xcd, 0x98, 0x14, 0xcd, 0x2f, 0xbc, 0x16, 0x2c, 0x16, 0x59, 0xb1, 0xac, 0x29, 0x38, 0xa7, - 0x5f, 0x46, 0xf1, 0x19, 0x32, 0x03, 0x53, 0xe6, 0x25, 0x13, 0x07, 0x7f, 0x0d, 0xd3, 0xdc, 0x08, - 0xce, 0xe3, 0x7f, 0x2f, 0xc4, 0xa1, 0xae, 0x7b, 0xf7, 0x16, 0x12, 0x0f, 0x01, 0xd0, 0x3f, 0x58, - 0x65, 0x76, 0xd8, 0x5b, 0xe0, 0x4f, 0x2f, 0x9f, 0x2c, 0x18, 0x57, 0x99, 0xbd, 0x7b, 0x0b, 0x8b, - 0x43, 0x22, 0x8e, 0x2a, 0xe3, 0xce, 0x87, 0xff, 0x5b, 0xe1, 0xbe, 0x80, 0xaf, 0xfd, 0x57, 0xa9, - 0x83, 0x2f, 0x73, 0xb2, 0xdf, 0x4c, 0x4f, 0x40, 0xaf, 0xdb, 0x90, 0x66, 0x03, 0xb7, 0x61, 0xfd, - 0x61, 0x01, 0xae, 0x73, 0x65, 0x2c, 0x9b, 0x0e, 0x6f, 0x9c, 0x72, 0x88, 0xc9, 0x7b, 0xc0, 0x73, - 0xde, 0x0b, 0x8d, 0xd7, 0x12, 0x2d, 0xef, 0xc4, 0x89, 0x13, 0x90, 0x0a, 0x8c, 0xe9, 0x6f, 0x5b, - 0x4e, 0x17, 0xa7, 0xce, 0x1e, 0x3d, 0x7a, 0xe4, 0xa8, 0xf7, 0x2e, 0x8f, 0xe1, 0xe2, 0xca, 0x37, - 0x6c, 0x42, 0x88, 0xdd, 0x49, 0x9c, 0x1c, 0xe2, 0x37, 0xb9, 0x93, 0x3b, 0x62, 0xc6, 0x98, 0xc7, - 0xfa, 0x24, 0x98, 0x9d, 0x91, 0xe5, 0x06, 0xa7, 0xd4, 0xf7, 0x11, 0xdb, 0x80, 0x59, 0x7f, 0x52, - 0x80, 0xf9, 0xec, 0xda, 0xc4, 0xc2, 0xb2, 0x06, 0xe7, 0x96, 0x1c, 0xcf, 0xf7, 0xdc, 0xba, 0xd3, - 0xac, 0xd6, 0x0f, 0x69, 0xa3, 0xad, 0xa2, 0xad, 0xaa, 0x55, 0xe6, 0x80, 0x7a, 0x92, 0x5c, 0xa2, - 0xd8, 0x69, 0x2a, 0x76, 0x3a, 0xc4, 0xe7, 0x11, 0x7c, 0xed, 0x6d, 0xd2, 0x40, 0xf1, 0xe3, 0x2d, - 0xcb, 0x29, 0x25, 0xb7, 0xa5, 0xb5, 0xbf, 0xb1, 0xeb, 0xb9, 0x91, 0x22, 0xe2, 0x66, 0x9e, 0xac, - 0x22, 0xeb, 0x3f, 0x15, 0xe0, 0x02, 0x26, 0x58, 0x32, 0x52, 0x36, 0xc6, 0x41, 0x87, 0x65, 0xdc, - 0xdc, 0x82, 0xf1, 0xdc, 0xc3, 0xc0, 0x36, 0x03, 0xe8, 0x92, 0x37, 0xa1, 0xbf, 0x2a, 0xbd, 0xb5, - 0x26, 0x12, 0xf9, 0x70, 0x05, 0x05, 0x2b, 0xb7, 0x11, 0x8b, 0xed, 0x39, 0xcb, 0x34, 0xac, 0x53, - 0x0f, 0x13, 0x17, 0x73, 0xab, 0x83, 0x06, 0x89, 0x63, 0x26, 0xf5, 0xe7, 0xc5, 0x4c, 0x1a, 0x30, - 0x63, 0x26, 0x59, 0x4f, 0x78, 0x7a, 0xa5, 0x64, 0x87, 0xc4, 0x20, 0x7d, 0x9c, 0xca, 0x73, 0xcc, - 0xf7, 0x81, 0xf3, 0x59, 0x3d, 0x63, 0x0a, 0x7a, 0x22, 0x85, 0x71, 0x7e, 0x90, 0xdf, 0x6d, 0x78, - 0xc5, 0xc0, 0xad, 0x34, 0x9b, 0xfe, 0x53, 0xda, 0xd8, 0x0e, 0xfc, 0x23, 0x3f, 0x32, 0xd2, 0xcb, - 0x88, 0x44, 0xdf, 0xf1, 0x7d, 0x8e, 0x98, 0x95, 0x09, 0xb0, 0xf5, 0x37, 0xe0, 0xd5, 0x2e, 0x1c, - 0x45, 0xa7, 0xaa, 0x70, 0xce, 0x49, 0x94, 0x49, 0xb7, 0x9b, 0x57, 0xb3, 0xfa, 0x95, 0x64, 0x14, - 0xda, 0x69, 0xfa, 0x1b, 0x3b, 0x46, 0x6e, 0x60, 0x52, 0x82, 0xe9, 0x6d, 0x7b, 0x6b, 0x79, 0x77, - 0x69, 0xa7, 0xb6, 0xf3, 0xc5, 0xf6, 0x4a, 0x6d, 0x77, 0xf3, 0xc1, 0xe6, 0xd6, 0xc3, 0x4d, 0x1e, - 0x25, 0xdb, 0x28, 0xd9, 0x59, 0xa9, 0x6c, 0x14, 0x0b, 0x64, 0x1a, 0x8a, 0x06, 0x78, 0x65, 0x77, - 0xb1, 0xd8, 0x7b, 0xe3, 0x6b, 0x23, 0xe7, 0x2d, 0x99, 0x87, 0x52, 0x75, 0x77, 0x7b, 0x7b, 0xcb, - 0x56, 0x5c, 0xf5, 0x18, 0xdd, 0x33, 0x70, 0xce, 0x28, 0xbd, 0x6b, 0xaf, 0xac, 0x14, 0x0b, 0xac, - 0x29, 0x06, 0x78, 0xdb, 0x5e, 0xd9, 0x58, 0xdb, 0xdd, 0x28, 0xf6, 0xde, 0xa8, 0xe9, 0x6f, 0xcc, - 0xc8, 0x45, 0x98, 0x5d, 0x5e, 0xd9, 0x5b, 0x5b, 0x5a, 0xc9, 0xe2, 0x3d, 0x0d, 0x45, 0xbd, 0x70, - 0x67, 0x6b, 0x67, 0x9b, 0xb3, 0xd6, 0xa1, 0x0f, 0x57, 0x16, 0x2b, 0xbb, 0x3b, 0xab, 0x9b, 0xc5, - 0x3e, 0xab, 0x7f, 0xb8, 0xb7, 0xd8, 0x7b, 0xe3, 0x87, 0xc6, 0x03, 0x34, 0xd6, 0x7c, 0x81, 0xbe, - 0x5b, 0xad, 0xdc, 0xcb, 0xaf, 0x82, 0x97, 0x6e, 0xdc, 0xad, 0x14, 0x0b, 0xe4, 0x12, 0x5c, 0x30, - 0xa0, 0xdb, 0x95, 0x6a, 0xf5, 0xe1, 0x96, 0xbd, 0xbc, 0xbe, 0x52, 0xad, 0x16, 0x7b, 0x6f, 0xec, - 0x19, 0x71, 0xe2, 0x58, 0x0d, 0x1b, 0x77, 0x2b, 0x35, 0x7b, 0xe5, 0xb3, 0xdd, 0x35, 0x7b, 0x65, - 0x39, 0x5d, 0x83, 0x51, 0xfa, 0xc5, 0x4a, 0xb5, 0x58, 0x20, 0x53, 0x30, 0x69, 0x40, 0x37, 0xb7, - 0x8a, 0xbd, 0x37, 0x5e, 0x13, 0xa1, 0xc4, 0xc8, 0x04, 0xc0, 0xf2, 0x4a, 0x75, 0x69, 0x65, 0x73, - 0x79, 0x6d, 0xf3, 0x5e, 0xb1, 0x87, 0x8c, 0xc3, 0x48, 0x45, 0xfd, 0x2c, 0xdc, 0xf8, 0x00, 0x26, - 0x13, 0x47, 0x7b, 0x86, 0xa1, 0x0e, 0xc5, 0xc5, 0x1e, 0x14, 0xbf, 0xfc, 0x89, 0xf6, 0x55, 0x7e, - 0x4a, 0x2f, 0x16, 0x6e, 0x2c, 0xca, 0x1c, 0xac, 0xda, 0x77, 0x4e, 0x46, 0x61, 0x68, 0x79, 0xe5, - 0x6e, 0x65, 0x77, 0x7d, 0xa7, 0xd8, 0xc3, 0x7e, 0x2c, 0xd9, 0x2b, 0x95, 0x9d, 0x95, 0xe5, 0x62, - 0x81, 0x8c, 0xc0, 0x40, 0x75, 0xa7, 0xb2, 0xb3, 0x52, 0xec, 0x25, 0xc3, 0xd0, 0xbf, 0x5b, 0x5d, - 0xb1, 0x8b, 0x7d, 0x0b, 0xff, 0xfe, 0xf7, 0x0b, 0xdc, 0xc8, 0x28, 0x1f, 0x33, 0x7d, 0xad, 0x1d, - 0x26, 0xc5, 0x92, 0x27, 0x12, 0x4e, 0xe6, 0x9e, 0x1c, 0x51, 0x0b, 0x98, 0xeb, 0x70, 0xeb, 0x82, - 0x08, 0xd7, 0x0b, 0xb7, 0x0b, 0xc4, 0x46, 0x2f, 0x95, 0xc4, 0xd9, 0x4a, 0x71, 0xce, 0x3e, 0xfe, - 0xce, 0x5d, 0xea, 0x78, 0x24, 0x23, 0xbf, 0x02, 0x96, 0xce, 0x33, 0xe7, 0x04, 0xf2, 0xdd, 0xd3, - 0x9d, 0x34, 0x64, 0x9d, 0xaf, 0x9d, 0x0e, 0x9d, 0xdc, 0x87, 0x71, 0xa6, 0x9b, 0x2b, 0x34, 0x72, - 0x31, 0x49, 0xa8, 0x1d, 0x07, 0xe6, 0xe6, 0xb3, 0x0b, 0x55, 0x4e, 0x98, 0x31, 0xec, 0x08, 0x3f, - 0x58, 0x87, 0x44, 0x86, 0x9b, 0x90, 0x10, 0xbe, 0xe2, 0xcf, 0x9d, 0x4b, 0x80, 0xf7, 0xee, 0xdc, - 0x2e, 0x90, 0x2a, 0xc6, 0x7a, 0x33, 0x94, 0x7c, 0x22, 0x5f, 0xd7, 0xa5, 0xb5, 0x7f, 0xde, 0x9a, - 0xb2, 0xca, 0xe0, 0x98, 0x73, 0x3a, 0xd8, 0x04, 0x92, 0xd6, 0x9d, 0xc9, 0x95, 0x78, 0x1e, 0x64, - 0xab, 0xd5, 0x73, 0xe7, 0x53, 0xce, 0x87, 0x2b, 0x4c, 0x7b, 0x22, 0x2b, 0x30, 0x21, 0xde, 0x92, - 0x0b, 0x6d, 0x9e, 0x74, 0x3a, 0x0f, 0xe4, 0xb2, 0xb9, 0x87, 0x72, 0x52, 0x27, 0x02, 0x32, 0x17, - 0xf7, 0x23, 0x79, 0x4c, 0x98, 0xbb, 0x98, 0x59, 0x26, 0xfa, 0x77, 0x17, 0x26, 0xcc, 0xc3, 0x05, - 0x91, 0x03, 0x94, 0x79, 0xe6, 0xc8, 0x6d, 0x50, 0x0d, 0x66, 0x37, 0x1c, 0x17, 0xef, 0x4a, 0x84, - 0x8b, 0x9b, 0x74, 0x50, 0x23, 0xe5, 0x0e, 0x1e, 0x6b, 0x55, 0xea, 0x35, 0xd4, 0x20, 0xe4, 0xc5, - 0x77, 0xc7, 0xcf, 0xa6, 0x2a, 0x75, 0x64, 0xd3, 0xc1, 0x8f, 0x58, 0x66, 0x56, 0xde, 0x2c, 0x9f, - 0xcd, 0xb9, 0x3c, 0x37, 0x63, 0xb2, 0x81, 0x4a, 0x7a, 0x82, 0xa3, 0x36, 0x27, 0xce, 0xcc, 0xae, - 0x84, 0x11, 0x0d, 0xb4, 0x6c, 0xe6, 0xa2, 0x30, 0x24, 0x39, 0x82, 0xcb, 0x65, 0x76, 0xbb, 0x40, - 0xbe, 0xc6, 0xaf, 0x3a, 0x93, 0xdd, 0x43, 0x37, 0x3a, 0x14, 0xda, 0xcf, 0xc5, 0x4c, 0x06, 0xe2, - 0x43, 0xe9, 0xc0, 0xdd, 0x86, 0xe9, 0x2c, 0xcf, 0x66, 0x25, 0xd0, 0x0e, 0x6e, 0xcf, 0xb9, 0xb3, - 0xc0, 0x66, 0x47, 0x8d, 0x46, 0xfe, 0x20, 0x75, 0x70, 0xac, 0xcd, 0xe5, 0xf9, 0x11, 0x4c, 0xb0, - 0x59, 0xf2, 0x80, 0xd2, 0x56, 0xa5, 0xe9, 0x3e, 0xa1, 0x21, 0x91, 0x81, 0x7a, 0x15, 0x28, 0x8f, - 0xf6, 0x7a, 0x81, 0x7c, 0x07, 0x46, 0x1f, 0x3a, 0x51, 0xfd, 0x50, 0x04, 0xac, 0x94, 0xf1, 0x2c, - 0x11, 0x36, 0x27, 0x7f, 0x61, 0xe1, 0xed, 0x02, 0xf9, 0x3e, 0x0c, 0xdd, 0xa3, 0x11, 0xbe, 0x6e, - 0xbe, 0xaa, 0x9c, 0xfc, 0xb8, 0x6d, 0x72, 0xcd, 0x53, 0x4f, 0x78, 0x64, 0x83, 0x93, 0x86, 0x5c, - 0x72, 0x0b, 0x80, 0x2f, 0x08, 0xc8, 0x21, 0x59, 0x3c, 0x97, 0x6a, 0x36, 0xb9, 0xc7, 0x94, 0x87, - 0x26, 0x8d, 0xe8, 0x69, 0xab, 0xcc, 0x93, 0xd1, 0x3a, 0x4c, 0xa8, 0x34, 0x3a, 0x9b, 0x18, 0x57, - 0xc4, 0x4a, 0x30, 0x0b, 0xcf, 0xc0, 0xed, 0x03, 0xf6, 0x55, 0xf0, 0x1c, 0xb2, 0x18, 0x80, 0x02, - 0x57, 0xd2, 0x59, 0x3d, 0x8a, 0x85, 0xbe, 0x84, 0x4a, 0x21, 0x72, 0x34, 0x8d, 0x76, 0xd5, 0x0f, - 0x23, 0x93, 0x56, 0x41, 0xb2, 0x69, 0x7f, 0x19, 0xe6, 0xf4, 0x7a, 0xcd, 0x88, 0xc9, 0xf1, 0x9a, - 0x9b, 0x17, 0x88, 0x79, 0xee, 0x6a, 0x07, 0x0c, 0x71, 0x7e, 0xeb, 0xfb, 0xcd, 0xde, 0x02, 0x2e, - 0x27, 0xcb, 0x30, 0x25, 0xeb, 0xda, 0x6a, 0x51, 0xaf, 0x5a, 0x5d, 0xc5, 0x94, 0x29, 0xd2, 0xa5, - 0x44, 0x83, 0x49, 0xee, 0x24, 0x5d, 0xc4, 0xb6, 0x3e, 0x23, 0xd0, 0x04, 0xe9, 0x14, 0x7e, 0x22, - 0xde, 0xfa, 0x32, 0x43, 0xf9, 0x3e, 0xe0, 0x46, 0x25, 0x43, 0xf9, 0xdf, 0x5b, 0x20, 0x1d, 0x0e, - 0x40, 0x73, 0x39, 0x47, 0x88, 0xdb, 0x05, 0xf2, 0x05, 0x90, 0xf4, 0x91, 0x44, 0x89, 0x30, 0xf7, - 0xf8, 0xa5, 0x44, 0xd8, 0xe1, 0x3c, 0xb3, 0x02, 0x53, 0x2a, 0xcc, 0x4c, 0x5c, 0x4e, 0x72, 0xda, - 0xd2, 0x61, 0x07, 0x9b, 0xc9, 0x60, 0xb3, 0xb7, 0xd0, 0x81, 0x51, 0x26, 0x9c, 0x7c, 0x02, 0x53, - 0x62, 0xee, 0x1b, 0xed, 0x29, 0xaa, 0x65, 0x4c, 0x1c, 0x6e, 0x72, 0x5b, 0x72, 0x1f, 0x66, 0xaa, - 0x09, 0xc1, 0x73, 0x87, 0xfa, 0x0b, 0x26, 0x0b, 0x04, 0x56, 0x69, 0xc4, 0x25, 0x9f, 0xcd, 0xeb, - 0x01, 0x10, 0x6e, 0x5b, 0x92, 0xec, 0x9e, 0xb8, 0xf4, 0x29, 0xb9, 0x94, 0x68, 0x3a, 0x03, 0x22, - 0x1a, 0xae, 0x83, 0xb9, 0x3d, 0xdb, 0xe1, 0x89, 0x94, 0x11, 0x6a, 0x5c, 0xc5, 0x5f, 0x31, 0x08, - 0x8c, 0xdb, 0x7c, 0x31, 0x8e, 0x17, 0x72, 0x31, 0xc8, 0xaf, 0x61, 0x98, 0xd8, 0xce, 0xa7, 0x33, - 0xf2, 0x9d, 0xac, 0x43, 0x74, 0xce, 0xf9, 0x72, 0xee, 0xcd, 0xd3, 0x21, 0xab, 0xf3, 0xf0, 0xf8, - 0x3d, 0x1a, 0x6d, 0x37, 0xdb, 0x07, 0x2e, 0xa6, 0xd8, 0x24, 0xca, 0xf6, 0xa4, 0x40, 0x62, 0x7a, - 0xcb, 0xe8, 0x6c, 0x71, 0x41, 0x95, 0xfe, 0x88, 0xac, 0x41, 0x91, 0x6f, 0x23, 0x1a, 0x8b, 0x4b, - 0x29, 0x16, 0x02, 0xc5, 0x09, 0x9c, 0xa3, 0x30, 0x77, 0xb4, 0x6e, 0x71, 0xdf, 0x27, 0x22, 0x3f, - 0x6d, 0x5d, 0x4f, 0x9d, 0x32, 0x60, 0x2a, 0x74, 0x3e, 0x1b, 0x11, 0x9b, 0x86, 0x34, 0x92, 0xf1, - 0x68, 0x78, 0x82, 0xd5, 0x6b, 0xb1, 0xce, 0x90, 0x2e, 0x8d, 0x57, 0x90, 0x44, 0xec, 0xb4, 0xbd, - 0xb7, 0x88, 0x4a, 0x3a, 0x9b, 0xc1, 0xf4, 0x35, 0x43, 0xb5, 0x39, 0x1b, 0xdf, 0xb7, 0x71, 0x2b, - 0xc3, 0x18, 0x3c, 0x33, 0x71, 0xdb, 0xd8, 0x6f, 0x49, 0x35, 0xae, 0x51, 0xed, 0x2d, 0xe0, 0xca, - 0xc8, 0xf6, 0x5a, 0xa6, 0x09, 0xb7, 0x83, 0x80, 0x7a, 0x9c, 0x38, 0x4f, 0x6d, 0xc9, 0xa2, 0xfe, - 0x18, 0x57, 0x30, 0x8d, 0x9a, 0xbf, 0xfb, 0xeb, 0xc6, 0x82, 0x27, 0x04, 0xba, 0x5d, 0x20, 0xef, - 0xc1, 0xb0, 0x68, 0x23, 0x23, 0x32, 0x1a, 0x1d, 0x76, 0x68, 0x35, 0x52, 0x02, 0x17, 0x12, 0xb6, - 0xd9, 0xc4, 0xc9, 0x1b, 0x7d, 0xde, 0xe6, 0xf7, 0xd8, 0x9e, 0xdd, 0x78, 0x1e, 0xca, 0x25, 0xb9, - 0x79, 0x23, 0x65, 0x49, 0x85, 0x84, 0x91, 0xa0, 0x2e, 0xbb, 0x2c, 0x67, 0xc2, 0xd4, 0x6f, 0x0c, - 0x7e, 0xa8, 0x62, 0x98, 0x29, 0xf5, 0xdb, 0x00, 0x77, 0xdb, 0xb2, 0xd7, 0xa0, 0x58, 0xa9, 0xe3, - 0x86, 0x52, 0xa5, 0x47, 0x4e, 0xeb, 0xd0, 0x0f, 0xa8, 0x3a, 0xfb, 0x24, 0x0b, 0x24, 0xaf, 0x19, - 0xa5, 0xa0, 0x88, 0x82, 0x75, 0xea, 0x60, 0x84, 0xe8, 0x59, 0xa5, 0xa1, 0x24, 0x8a, 0xb2, 0x29, - 0x3a, 0x9c, 0x75, 0xa6, 0x97, 0xd8, 0xe9, 0xac, 0xf9, 0x62, 0x6c, 0x3e, 0xc0, 0x05, 0x43, 0x21, - 0x87, 0x6a, 0x87, 0x50, 0x20, 0x75, 0x2a, 0x94, 0x4f, 0x80, 0x14, 0x6a, 0x45, 0x5e, 0x3d, 0xc7, - 0x62, 0xc9, 0xa3, 0xce, 0xab, 0xfe, 0x7b, 0x30, 0xb1, 0xc2, 0x16, 0xf4, 0x76, 0xc3, 0xe5, 0x51, - 0xf1, 0x89, 0x19, 0xe6, 0x3c, 0x97, 0x70, 0x55, 0xe6, 0xe0, 0x42, 0x52, 0x61, 0x41, 0x90, 0x7b, - 0x8a, 0x06, 0x93, 0xe3, 0x31, 0x2d, 0xd9, 0x8a, 0xc4, 0x04, 0x78, 0xc2, 0x17, 0x26, 0x83, 0x59, - 0xae, 0x58, 0x56, 0x5a, 0xad, 0xa6, 0xb4, 0x6c, 0xf3, 0xeb, 0xfb, 0x57, 0x8d, 0x93, 0x68, 0xaa, - 0x5c, 0xf2, 0x4e, 0xeb, 0x9e, 0x9f, 0x6b, 0x39, 0x71, 0x73, 0x78, 0xe6, 0x94, 0x77, 0x9b, 0x8b, - 0x2a, 0x8e, 0x75, 0xa5, 0xd9, 0x4c, 0x11, 0x87, 0xe4, 0x0d, 0x93, 0x7b, 0x16, 0x4e, 0xb7, 0x1a, - 0xf0, 0xa4, 0xcf, 0x95, 0xb7, 0x4a, 0xab, 0xc5, 0x17, 0xcb, 0xcb, 0x6a, 0xc1, 0x30, 0x0b, 0xd2, - 0x27, 0xfd, 0x64, 0xb9, 0x58, 0xdb, 0xef, 0xe3, 0x34, 0x8b, 0x13, 0xe7, 0x12, 0xfd, 0xdc, 0x9c, - 0xcc, 0x1b, 0xac, 0x74, 0xb9, 0x44, 0xa1, 0xda, 0x27, 0x26, 0x51, 0x83, 0x8a, 0xb3, 0xf0, 0x2a, - 0x03, 0x4f, 0x02, 0x2e, 0xf9, 0x5d, 0xce, 0x2b, 0x56, 0x06, 0xd7, 0x62, 0x32, 0x39, 0xb9, 0xea, - 0x72, 0x4e, 0xd2, 0x7b, 0xd5, 0xe5, 0xdc, 0xac, 0xe6, 0xf7, 0xa1, 0x98, 0xcc, 0x8b, 0xac, 0x98, - 0xe6, 0x24, 0x4c, 0xce, 0x1d, 0x93, 0xbb, 0x30, 0xad, 0x8f, 0xa8, 0xea, 0x77, 0xde, 0xea, 0x9f, - 0xc7, 0x67, 0x07, 0x66, 0x32, 0xd3, 0x18, 0xab, 0x2d, 0xb6, 0x53, 0x92, 0xe3, 0x5c, 0xae, 0x14, - 0xce, 0x67, 0x67, 0x32, 0x27, 0xaf, 0x98, 0xf6, 0x83, 0xec, 0xbc, 0xce, 0x73, 0xaf, 0x76, 0xc1, - 0x12, 0x02, 0xfd, 0x1a, 0x77, 0xc0, 0x54, 0x1d, 0x57, 0x35, 0x8b, 0x42, 0x4e, 0x05, 0x56, 0x27, - 0x14, 0x35, 0x07, 0xa6, 0x33, 0x8a, 0xf3, 0x45, 0x7c, 0x2d, 0x9f, 0x67, 0x3c, 0xb1, 0xf6, 0x64, - 0xb8, 0xe6, 0x5c, 0xc9, 0x74, 0xcc, 0x78, 0xdd, 0xe1, 0x48, 0x3a, 0xa7, 0xe6, 0xc3, 0xe9, 0x9b, - 0x9c, 0xc7, 0xad, 0xa1, 0xac, 0x3f, 0x46, 0x3a, 0xea, 0xa4, 0xf5, 0x27, 0x2b, 0x8d, 0xb6, 0x12, - 0x43, 0xa7, 0x44, 0xed, 0x7c, 0x37, 0xfe, 0x8a, 0x9b, 0x83, 0xcc, 0x2a, 0x74, 0x73, 0x50, 0x26, - 0xff, 0x2b, 0xf9, 0x08, 0x3a, 0x73, 0x87, 0xdf, 0xfd, 0x26, 0xf2, 0x69, 0x13, 0xfd, 0xc4, 0x95, - 0x9d, 0x6b, 0x5b, 0xcd, 0x8d, 0x4c, 0x14, 0xbd, 0x8a, 0x87, 0xf2, 0x1b, 0xcc, 0x91, 0x52, 0x87, - 0x64, 0xe3, 0x9d, 0xd5, 0x94, 0x2d, 0x28, 0xc5, 0x83, 0x99, 0xe8, 0xc0, 0x19, 0x87, 0x52, 0x0a, - 0xe3, 0x42, 0x6e, 0x8a, 0x71, 0xf2, 0x7a, 0xea, 0x4b, 0xcf, 0x11, 0x4c, 0xc7, 0x2a, 0xf8, 0x7a, - 0xae, 0x85, 0x7f, 0xbe, 0x18, 0xdb, 0x82, 0xf5, 0x6c, 0xe4, 0xa9, 0xf5, 0x3c, 0x23, 0x55, 0xf9, - 0x3d, 0xd4, 0x8b, 0xb5, 0x74, 0xe3, 0xb9, 0xbd, 0xbe, 0x94, 0xc5, 0x27, 0x4c, 0xaf, 0xb8, 0x5a, - 0xbb, 0xa4, 0x9e, 0x96, 0x2c, 0x38, 0xcb, 0x8a, 0x7b, 0x9a, 0xa6, 0xe5, 0xf1, 0x59, 0x86, 0x51, - 0x2d, 0x4f, 0x39, 0xb9, 0x60, 0x88, 0xc9, 0xd8, 0x43, 0xe7, 0x8c, 0xce, 0x99, 0xdb, 0xe7, 0x12, - 0x5a, 0xa4, 0x55, 0xb6, 0xf3, 0xdc, 0x56, 0x5c, 0x4c, 0xf3, 0x30, 0xac, 0xd1, 0x4a, 0x0a, 0xbc, - 0x35, 0xf3, 0x49, 0xe1, 0x18, 0x0d, 0xca, 0xef, 0x12, 0xd1, 0x45, 0xd3, 0xa5, 0x49, 0xf9, 0xfa, - 0xeb, 0x94, 0x48, 0x86, 0x8a, 0x39, 0x5b, 0x64, 0xe8, 0xc0, 0xf3, 0xca, 0xb4, 0xa6, 0x41, 0x3b, - 0x58, 0x3a, 0xb6, 0xf1, 0x05, 0x4a, 0x46, 0xe2, 0x76, 0xb5, 0xc2, 0x76, 0xcc, 0xeb, 0x9e, 0xa1, - 0xbb, 0xa9, 0x35, 0x3b, 0x97, 0x63, 0xc7, 0x4c, 0xee, 0xb9, 0x2d, 0xfd, 0x81, 0xb6, 0x66, 0xa7, - 0xd2, 0xb3, 0x93, 0xeb, 0x49, 0xc5, 0x2d, 0x2f, 0x83, 0x7b, 0x87, 0x3d, 0x61, 0x3a, 0x2b, 0xb3, - 0xbb, 0x66, 0x1e, 0xce, 0x4d, 0xfb, 0x9e, 0x21, 0x05, 0x5b, 0xce, 0xff, 0x1c, 0x6e, 0x1d, 0xf2, - 0xbc, 0xe7, 0xb6, 0xf0, 0x4b, 0x6d, 0xa1, 0x4b, 0xe4, 0x63, 0x57, 0xc7, 0xf1, 0x2e, 0x09, 0xdb, - 0x73, 0x79, 0x6f, 0xe2, 0x9b, 0xa5, 0x74, 0x32, 0x75, 0xa5, 0xd9, 0x74, 0x4a, 0xb5, 0x9e, 0x69, - 0x3d, 0x9e, 0x49, 0x77, 0x91, 0xf1, 0x3b, 0x9f, 0xb0, 0xfd, 0x76, 0x6b, 0xd8, 0xd7, 0x72, 0x31, - 0xce, 0x48, 0xc2, 0x9e, 0x58, 0x8c, 0xf3, 0xd3, 0xb4, 0x77, 0x38, 0x06, 0x4d, 0x56, 0xdd, 0x03, - 0x4f, 0xcb, 0xa1, 0xae, 0x0e, 0x41, 0xe9, 0xb4, 0xee, 0x6a, 0x89, 0xc9, 0x4a, 0xb9, 0xbe, 0xc5, - 0xf4, 0x1f, 0xae, 0xbd, 0xeb, 0xd9, 0xb0, 0xc9, 0x5c, 0x7e, 0x12, 0x70, 0xb5, 0xdc, 0x64, 0xa6, - 0xcf, 0xd6, 0x18, 0xea, 0xa9, 0xa8, 0x15, 0xc3, 0x8c, 0xac, 0xd8, 0x8a, 0x61, 0x66, 0xee, 0xea, - 0x5b, 0x68, 0x75, 0xb1, 0xfd, 0x26, 0xd5, 0xad, 0x2e, 0x5a, 0x6e, 0xe3, 0x84, 0xd1, 0x83, 0x7c, - 0x88, 0x26, 0x8f, 0xce, 0x76, 0x92, 0x59, 0x93, 0x93, 0xee, 0x59, 0x32, 0xa2, 0x12, 0x47, 0x2b, - 0x1b, 0x7b, 0x32, 0x77, 0xf5, 0x5c, 0x29, 0x5d, 0x20, 0xe8, 0xdf, 0x91, 0x56, 0x13, 0x6c, 0x70, - 0xc9, 0xb4, 0x36, 0xe5, 0xb7, 0xf9, 0x1d, 0x69, 0x32, 0x31, 0xc8, 0x52, 0x69, 0xa3, 0x93, 0x64, - 0xdf, 0x83, 0xb1, 0x38, 0x45, 0xf4, 0xde, 0x82, 0x46, 0x98, 0xc8, 0x1b, 0x9d, 0x24, 0x7c, 0x4f, - 0x5e, 0xab, 0x60, 0x7d, 0x66, 0x61, 0x67, 0x15, 0xe0, 0x63, 0x69, 0xa2, 0x31, 0x5a, 0x9a, 0x4a, - 0x38, 0xdd, 0x61, 0xe5, 0x1e, 0xd3, 0xf3, 0x5a, 0xaa, 0x79, 0x91, 0x91, 0x99, 0x56, 0xcd, 0x8b, - 0xac, 0xcc, 0xb2, 0xf1, 0xb5, 0xc3, 0x17, 0xd2, 0x1e, 0x11, 0x33, 0xbd, 0x64, 0x34, 0x2b, 0xc5, - 0xf7, 0x72, 0x5e, 0x71, 0x92, 0x75, 0x15, 0x8a, 0xc9, 0x24, 0x9c, 0xea, 0x30, 0x97, 0x93, 0x2d, - 0x55, 0x9d, 0x10, 0x73, 0xb3, 0x77, 0x6e, 0x4b, 0xe3, 0xba, 0xc9, 0xf7, 0x6a, 0x76, 0xa3, 0x74, - 0xd6, 0xf9, 0xd6, 0xf6, 0x71, 0x23, 0x1f, 0xa7, 0x7e, 0xcc, 0x4e, 0xe5, 0xfb, 0xd4, 0xd5, 0xb2, - 0x8c, 0x14, 0x9e, 0xae, 0x8c, 0x3a, 0x95, 0x9d, 0x16, 0xfc, 0x0d, 0xf3, 0xfc, 0xdb, 0x21, 0x78, - 0x7b, 0xd7, 0x2b, 0x68, 0xf2, 0x4b, 0x30, 0x9b, 0x13, 0xe7, 0x9a, 0xbc, 0x9a, 0x30, 0xd3, 0x66, - 0xc7, 0xc1, 0x56, 0x13, 0x24, 0x33, 0x51, 0xf6, 0x06, 0xfa, 0x2e, 0x18, 0xf1, 0x25, 0x52, 0xf7, - 0x81, 0x0f, 0xdd, 0xe8, 0x90, 0xe7, 0x83, 0xd6, 0xd6, 0xdc, 0xcc, 0xc0, 0x14, 0xa4, 0x8a, 0x07, - 0x19, 0x03, 0x9a, 0x71, 0x25, 0x98, 0xc1, 0x70, 0x2e, 0x9b, 0x21, 0x5b, 0x3b, 0xd8, 0x5c, 0xc8, - 0x08, 0xfe, 0xa1, 0xe6, 0x42, 0x7e, 0x60, 0x90, 0xdc, 0x66, 0x6e, 0x4b, 0x05, 0x2b, 0x9b, 0x63, - 0x7e, 0x1c, 0x90, 0x5c, 0x8e, 0xf7, 0x19, 0xc7, 0x54, 0x68, 0x0f, 0x92, 0x83, 0xde, 0x79, 0xf5, - 0xb0, 0xe5, 0x7e, 0x6d, 0x52, 0x2d, 0x68, 0xed, 0xcb, 0x0b, 0x22, 0x92, 0xdb, 0xbe, 0x15, 0xf9, - 0x3d, 0x65, 0xb7, 0xef, 0xb4, 0x3b, 0xb6, 0xba, 0x3c, 0x4b, 0x44, 0x97, 0x31, 0x3a, 0xaa, 0xc1, - 0xe7, 0x72, 0xe0, 0x64, 0x13, 0x9d, 0x91, 0x92, 0x50, 0xed, 0x44, 0x9b, 0x1d, 0xbe, 0x26, 0x97, - 0x1f, 0x9f, 0xc7, 0x46, 0xf8, 0x8f, 0xb3, 0xcc, 0xe3, 0x44, 0xdc, 0x10, 0x31, 0x8f, 0x0d, 0xe8, - 0xd9, 0xe6, 0x71, 0x82, 0xa1, 0x39, 0x8f, 0x93, 0xcd, 0x4c, 0x9a, 0x09, 0x72, 0x47, 0x35, 0xd9, - 0x4c, 0x35, 0x8f, 0xb3, 0x39, 0xe6, 0x87, 0x69, 0xc9, 0xe5, 0xa8, 0xe6, 0xb1, 0xc9, 0x31, 0x07, - 0xfd, 0x94, 0xf3, 0x38, 0x59, 0x89, 0x39, 0x8f, 0xcf, 0xd4, 0x3e, 0x35, 0x8f, 0xb3, 0xdb, 0x77, - 0xe6, 0x79, 0x9c, 0x88, 0x6b, 0x64, 0x74, 0x34, 0x6b, 0x1e, 0x27, 0xf1, 0xf9, 0x3c, 0x4e, 0x42, - 0x13, 0x96, 0x99, 0x0e, 0xf3, 0x38, 0x49, 0xf9, 0x19, 0xf2, 0x4b, 0xc4, 0x64, 0x39, 0xcd, 0x4c, - 0xce, 0x0d, 0xe7, 0x42, 0x1e, 0xa2, 0x6d, 0x30, 0x01, 0x3f, 0xdd, 0x6c, 0x9e, 0xcf, 0x63, 0x8a, - 0xf3, 0x79, 0x4f, 0x0a, 0x31, 0xd9, 0x5c, 0xd3, 0xf0, 0x95, 0x1d, 0x92, 0xa6, 0x43, 0x83, 0xf7, - 0xd8, 0xbc, 0x69, 0x74, 0xe0, 0xdb, 0x29, 0xa2, 0x4e, 0x07, 0xbe, 0xea, 0x1c, 0x94, 0xe4, 0x9b, - 0x4b, 0xd2, 0x79, 0x7e, 0x7f, 0x2e, 0x6f, 0x47, 0x92, 0x74, 0x0b, 0x89, 0x93, 0xd5, 0x99, 0x5b, - 0xaa, 0x4e, 0x58, 0xc9, 0x96, 0x9e, 0x75, 0x9e, 0x6f, 0x48, 0xed, 0x21, 0x15, 0x8a, 0x2b, 0xd1, + // 15058 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0xbd, 0x59, 0x6c, 0x5c, 0xcb, + 0x76, 0x18, 0xca, 0xe6, 0xcc, 0xc5, 0x41, 0xad, 0x22, 0x29, 0xb6, 0xa8, 0xa1, 0xa5, 0xad, 0x33, + 0xe8, 0xe8, 0x9e, 0xab, 0x81, 0x67, 0xb8, 0x67, 0xba, 0xe7, 0x9c, 0xe6, 0x20, 0x91, 0x12, 0xa7, + 0xb3, 0x9b, 0xa4, 0xce, 0xe4, 0xdb, 0x77, 0xab, 0xbb, 0x44, 0x6e, 0xab, 0xb9, 0x77, 0xdf, 0xbd, + 0x77, 0x4b, 0x47, 0xd7, 0xcf, 0x7e, 0xb0, 0xfd, 0x06, 0xff, 0xbc, 0xf7, 0x6c, 0xe0, 0x3d, 0xc3, + 0x0f, 0xfe, 0xf0, 0x7b, 0x40, 0x02, 0x04, 0x01, 0x12, 0xe4, 0x27, 0xf0, 0x4f, 0xfc, 0x11, 0xe4, + 0x23, 0x37, 0x06, 0x82, 0x24, 0xb0, 0xfd, 0x13, 0x20, 0x74, 0x72, 0x01, 0xff, 0x10, 0xc9, 0x87, + 0x11, 0x24, 0x40, 0x2e, 0x60, 0x20, 0xa8, 0x55, 0xc3, 0xae, 0xda, 0x53, 0x93, 0x3a, 0x3a, 0xd7, + 0xf9, 0x91, 0xd8, 0xab, 0xd6, 0x5a, 0x55, 0xb5, 0xaa, 0x76, 0xd5, 0xaa, 0x55, 0xab, 0xd6, 0x82, + 0x9b, 0x11, 0x6d, 0xd3, 0x8e, 0x1f, 0x44, 0xb7, 0xda, 0x74, 0xdf, 0x69, 0x3e, 0xbf, 0xd5, 0x6c, + 0xbb, 0xd4, 0x8b, 0x6e, 0x75, 0x02, 0x3f, 0xf2, 0x6f, 0x39, 0xdd, 0xe8, 0x20, 0xa4, 0xc1, 0x53, + 0xb7, 0x49, 0x6f, 0x22, 0x84, 0x0c, 0xe1, 0x7f, 0xf3, 0x33, 0xfb, 0xfe, 0xbe, 0xcf, 0x71, 0xd8, + 0x5f, 0xbc, 0x70, 0xfe, 0xc2, 0xbe, 0xef, 0xef, 0xb7, 0x29, 0x27, 0x7e, 0xd4, 0x7d, 0x7c, 0x8b, + 0x1e, 0x76, 0xa2, 0xe7, 0xa2, 0xb0, 0x9a, 0x2c, 0x8c, 0xdc, 0x43, 0x1a, 0x46, 0xce, 0x61, 0x47, + 0x20, 0xbc, 0xa1, 0x9a, 0xe2, 0x44, 0x11, 0x2b, 0x89, 0x5c, 0xdf, 0xbb, 0xf5, 0xf4, 0x8e, 0xfe, + 0x53, 0xa0, 0x5e, 0x2f, 0x6c, 0x75, 0x93, 0x06, 0x51, 0x78, 0x22, 0x4c, 0xfa, 0x94, 0x7a, 0x51, + 0xaa, 0x7a, 0x81, 0x19, 0x3d, 0xef, 0xd0, 0x90, 0xa3, 0xc8, 0xff, 0x04, 0xea, 0xd5, 0x6c, 0x54, + 0xfc, 0x57, 0xa0, 0x7c, 0x3f, 0x1b, 0xe5, 0x19, 0x7d, 0xc4, 0x64, 0xea, 0xa9, 0x3f, 0x7a, 0xa0, + 0x07, 0x4e, 0xa7, 0x43, 0x83, 0xf8, 0x0f, 0x81, 0x7e, 0x5e, 0xa1, 0x1f, 0x3e, 0x76, 0x98, 0x88, + 0x0e, 0x1f, 0x3b, 0xa9, 0x6e, 0x74, 0x43, 0x67, 0x9f, 0x8a, 0xe6, 0x3f, 0xbd, 0xa3, 0xff, 0xe4, + 0xa8, 0xd6, 0x1f, 0x95, 0x60, 0xe8, 0xa1, 0x13, 0x35, 0x0f, 0xc8, 0x27, 0x30, 0xf4, 0xc0, 0xf5, + 0x5a, 0x61, 0xa5, 0x74, 0x65, 0xe0, 0xfa, 0xf8, 0x42, 0xf9, 0x26, 0xef, 0x0a, 0x16, 0xb2, 0x82, + 0xc5, 0xb9, 0x9f, 0x1d, 0x55, 0xfb, 0x8e, 0x8f, 0xaa, 0x67, 0x9e, 0x30, 0xb4, 0x37, 0xfd, 0x43, + 0x37, 0xc2, 0xb1, 0xb5, 0x39, 0x1d, 0xd9, 0x85, 0xe9, 0x5a, 0xbb, 0xed, 0x3f, 0xdb, 0x76, 0x82, + 0xc8, 0x75, 0xda, 0xf5, 0x6e, 0xb3, 0x49, 0xc3, 0xb0, 0xd2, 0x7f, 0xa5, 0x74, 0x7d, 0x74, 0xf1, + 0xda, 0xf1, 0x51, 0xb5, 0xea, 0xb0, 0xe2, 0x46, 0x87, 0x97, 0x37, 0x42, 0x8e, 0xa0, 0x31, 0xca, + 0xa2, 0xb7, 0xfe, 0x74, 0x18, 0xca, 0xab, 0x7e, 0x18, 0x2d, 0xb1, 0x11, 0xb5, 0xe9, 0x4f, 0xba, + 0x34, 0x8c, 0xc8, 0x35, 0x18, 0x66, 0xb0, 0xb5, 0xe5, 0x4a, 0xe9, 0x4a, 0xe9, 0xfa, 0xd8, 0xe2, + 0xf8, 0xf1, 0x51, 0x75, 0xe4, 0xc0, 0x0f, 0xa3, 0x86, 0xdb, 0xb2, 0x45, 0x11, 0x79, 0x03, 0x46, + 0x37, 0xfd, 0x16, 0xdd, 0x74, 0x0e, 0x29, 0xb6, 0x62, 0x6c, 0x71, 0xf2, 0xf8, 0xa8, 0x3a, 0xe6, + 0xf9, 0x2d, 0xda, 0xf0, 0x9c, 0x43, 0x6a, 0xab, 0x62, 0xb2, 0x07, 0x83, 0xb6, 0xdf, 0xa6, 0x95, + 0x01, 0x44, 0x5b, 0x3c, 0x3e, 0xaa, 0x0e, 0x06, 0x7e, 0x9b, 0xfe, 0xe2, 0xa8, 0xfa, 0xee, 0xbe, + 0x1b, 0x1d, 0x74, 0x1f, 0xdd, 0x6c, 0xfa, 0x87, 0xb7, 0xf6, 0x03, 0xe7, 0xa9, 0xcb, 0x27, 0xa1, + 0xd3, 0xbe, 0x15, 0x4f, 0xd5, 0x8e, 0x2b, 0xc6, 0xbd, 0xfe, 0x3c, 0x8c, 0xe8, 0x21, 0xe3, 0x64, + 0x23, 0x3f, 0xf2, 0x10, 0x66, 0x6a, 0xad, 0x96, 0xcb, 0x29, 0xb6, 0x03, 0xd7, 0x6b, 0xba, 0x1d, + 0xa7, 0x1d, 0x56, 0x06, 0xaf, 0x0c, 0x5c, 0x1f, 0x13, 0x42, 0x51, 0xe5, 0x8d, 0x8e, 0x42, 0xd0, + 0x84, 0x92, 0xc9, 0x80, 0xbc, 0x05, 0xa3, 0xcb, 0x9b, 0x75, 0xd6, 0xf6, 0xb0, 0x32, 0x84, 0xcc, + 0xe6, 0x8e, 0x8f, 0xaa, 0xd3, 0x2d, 0x2f, 0xc4, 0xae, 0xe9, 0x0c, 0x14, 0x22, 0x79, 0x17, 0x26, + 0xb6, 0xbb, 0x8f, 0xda, 0x6e, 0x73, 0x67, 0xbd, 0xfe, 0x80, 0x3e, 0xaf, 0x0c, 0x5f, 0x29, 0x5d, + 0x9f, 0x58, 0x24, 0xc7, 0x47, 0xd5, 0xa9, 0x0e, 0xc2, 0x1b, 0x51, 0x3b, 0x6c, 0x3c, 0xa1, 0xcf, + 0x6d, 0x03, 0x2f, 0xa6, 0xab, 0xd7, 0x57, 0x19, 0xdd, 0x48, 0x8a, 0x2e, 0x0c, 0x0f, 0x74, 0x3a, + 0x8e, 0x47, 0x6e, 0x01, 0xd8, 0xf4, 0xd0, 0x8f, 0x68, 0xad, 0xd5, 0x0a, 0x2a, 0xa3, 0x28, 0xdb, + 0x33, 0xc7, 0x47, 0xd5, 0xf1, 0x00, 0xa1, 0x0d, 0xa7, 0xd5, 0x0a, 0x6c, 0x0d, 0x85, 0x2c, 0xc1, + 0xa8, 0xed, 0x73, 0x01, 0x57, 0xc6, 0xae, 0x94, 0xae, 0x8f, 0x2f, 0x9c, 0x11, 0xd3, 0x50, 0x82, + 0x17, 0xcf, 0x1d, 0x1f, 0x55, 0x49, 0x20, 0x7e, 0xe9, 0xbd, 0x94, 0x18, 0xa4, 0x0a, 0x23, 0x9b, + 0xfe, 0x92, 0xd3, 0x3c, 0xa0, 0x15, 0xc0, 0xb9, 0x37, 0x74, 0x7c, 0x54, 0x2d, 0x7d, 0xdf, 0x96, + 0x50, 0xf2, 0x14, 0xc6, 0xe3, 0x81, 0x0a, 0x2b, 0xe3, 0x28, 0xbe, 0x9d, 0xe3, 0xa3, 0xea, 0xb9, + 0x10, 0xc1, 0x0d, 0x36, 0xf4, 0x9a, 0x04, 0xbf, 0xc5, 0x2c, 0xd0, 0x2b, 0x22, 0x5f, 0xc3, 0x6c, + 0xfc, 0xb3, 0x16, 0x86, 0x34, 0x60, 0x3c, 0xd6, 0x96, 0x2b, 0x93, 0x28, 0x99, 0xd7, 0x8e, 0x8f, + 0xaa, 0x96, 0xd6, 0x82, 0x86, 0x23, 0x51, 0x1a, 0x6e, 0x4b, 0xeb, 0x69, 0x36, 0x93, 0xfb, 0x83, + 0xa3, 0x13, 0xe5, 0x49, 0xfb, 0xd2, 0xae, 0x17, 0x46, 0xce, 0xa3, 0x36, 0xcd, 0x44, 0xb2, 0xfe, + 0xa6, 0x04, 0x64, 0xab, 0x43, 0xbd, 0x7a, 0x7d, 0x95, 0x7d, 0x4f, 0xf2, 0x73, 0x7a, 0x13, 0xc6, + 0xf8, 0xc0, 0xb1, 0xd1, 0xed, 0xc7, 0xd1, 0x9d, 0x3a, 0x3e, 0xaa, 0x82, 0x18, 0x5d, 0x36, 0xb2, + 0x31, 0x02, 0x79, 0x15, 0x06, 0x76, 0x76, 0xd6, 0xf1, 0x5b, 0x19, 0x58, 0x9c, 0x3e, 0x3e, 0xaa, + 0x0e, 0x44, 0x51, 0xfb, 0x17, 0x47, 0xd5, 0xd1, 0xe5, 0x6e, 0x80, 0x62, 0xb1, 0x59, 0x39, 0x79, + 0x15, 0x46, 0x96, 0xda, 0xdd, 0x30, 0xa2, 0x41, 0x65, 0x30, 0xfe, 0x48, 0x9b, 0x1c, 0x64, 0xcb, + 0x32, 0xf2, 0x3d, 0x18, 0xdc, 0x0d, 0x69, 0x50, 0x19, 0xc2, 0xf1, 0x9e, 0x14, 0xe3, 0xcd, 0x40, + 0x7b, 0x0b, 0x8b, 0xa3, 0xec, 0x4b, 0xec, 0x86, 0x34, 0xb0, 0x11, 0x89, 0xdc, 0x84, 0x21, 0x3e, + 0x68, 0xc3, 0xb8, 0x48, 0x4d, 0xaa, 0xd9, 0xd1, 0xa6, 0x7b, 0xef, 0x2e, 0x8e, 0x1d, 0x1f, 0x55, + 0x87, 0x70, 0xf0, 0x6c, 0x8e, 0x76, 0x7f, 0x70, 0xb4, 0x54, 0xee, 0xb7, 0x47, 0x19, 0x2d, 0xfb, + 0x2c, 0xac, 0xef, 0xc1, 0xb8, 0xd6, 0x7d, 0x72, 0x11, 0x06, 0xd9, 0xff, 0xb8, 0x88, 0x4c, 0xf0, + 0xca, 0xd8, 0xc6, 0x61, 0x23, 0xd4, 0xfa, 0xff, 0xa6, 0xa1, 0xcc, 0x28, 0x8d, 0x95, 0xe7, 0xa6, + 0x2e, 0x2a, 0x4e, 0x57, 0x36, 0x45, 0x55, 0x29, 0xe9, 0xc2, 0xba, 0x0e, 0xaa, 0x76, 0xb1, 0x08, + 0x4d, 0x1c, 0x1f, 0x55, 0x47, 0xbb, 0x02, 0x16, 0xb7, 0x8d, 0xd4, 0x61, 0x64, 0xe5, 0x9b, 0x8e, + 0x1b, 0xd0, 0x10, 0x45, 0x3b, 0xbe, 0x30, 0x7f, 0x93, 0x6f, 0x97, 0x37, 0xe5, 0x76, 0x79, 0x73, + 0x47, 0x6e, 0x97, 0x8b, 0x97, 0xc4, 0x62, 0x7c, 0x96, 0x72, 0x92, 0x78, 0x7e, 0xfc, 0xee, 0x5f, + 0x56, 0x4b, 0xb6, 0xe4, 0x44, 0xde, 0x84, 0xe1, 0xbb, 0x7e, 0x70, 0xe8, 0x44, 0x62, 0x0c, 0x66, + 0x8e, 0x8f, 0xaa, 0xe5, 0xc7, 0x08, 0xd1, 0xa6, 0x94, 0xc0, 0x21, 0x77, 0x61, 0xca, 0xf6, 0xbb, + 0x11, 0xdd, 0xf1, 0xe5, 0xc8, 0x0d, 0x21, 0xd5, 0xe5, 0xe3, 0xa3, 0xea, 0x7c, 0xc0, 0x4a, 0x1a, + 0x91, 0xdf, 0x10, 0x43, 0xa8, 0xd1, 0x27, 0xa8, 0xc8, 0x0a, 0x4c, 0xd5, 0x70, 0xf5, 0x16, 0x52, + 0xe3, 0xe3, 0x35, 0xb6, 0x78, 0xe9, 0xf8, 0xa8, 0x7a, 0xde, 0xc1, 0x92, 0x46, 0x20, 0x8a, 0x74, + 0x36, 0x26, 0x11, 0xd9, 0x84, 0xb3, 0x0f, 0xba, 0x8f, 0x68, 0xe0, 0xd1, 0x88, 0x86, 0xb2, 0x45, + 0x23, 0xd8, 0xa2, 0x2b, 0xc7, 0x47, 0xd5, 0x8b, 0x4f, 0x54, 0x61, 0x46, 0x9b, 0xd2, 0xa4, 0x84, + 0xc2, 0x19, 0xd1, 0xd0, 0x65, 0x27, 0x72, 0x1e, 0x39, 0x21, 0xc5, 0x45, 0x69, 0x7c, 0xe1, 0x1c, + 0x17, 0xf1, 0xcd, 0x44, 0xe9, 0xe2, 0x35, 0x21, 0xe5, 0x0b, 0xaa, 0xef, 0x2d, 0x51, 0xa4, 0x55, + 0x94, 0xe4, 0xc9, 0xd6, 0x66, 0xb5, 0xef, 0x8c, 0x61, 0x6b, 0x71, 0x6d, 0x56, 0xfb, 0x8e, 0xbe, + 0x6a, 0xa9, 0x1d, 0x68, 0x1d, 0x86, 0x76, 0xd9, 0xee, 0x8c, 0x6b, 0xd6, 0xd4, 0xc2, 0x55, 0xd1, + 0xa2, 0xe4, 0xfc, 0xbb, 0xc9, 0x7e, 0x20, 0x22, 0x7e, 0x79, 0x67, 0x70, 0x47, 0xd7, 0xf7, 0x62, + 0x2c, 0x23, 0x9f, 0x01, 0x88, 0x56, 0xd5, 0x3a, 0x9d, 0xca, 0x38, 0x76, 0xf2, 0xac, 0xd9, 0xc9, + 0x5a, 0xa7, 0xb3, 0x78, 0x59, 0xf4, 0xef, 0x9c, 0xea, 0x9f, 0xd3, 0xe9, 0x68, 0xdc, 0x34, 0x26, + 0xe4, 0x13, 0x98, 0xc0, 0x25, 0x4d, 0x8e, 0xe8, 0x04, 0x8e, 0xe8, 0x85, 0xe3, 0xa3, 0xea, 0x1c, + 0xae, 0x56, 0x19, 0xe3, 0x69, 0x10, 0x90, 0xdf, 0x80, 0x59, 0xc1, 0xee, 0xa1, 0xeb, 0xb5, 0xfc, + 0x67, 0xe1, 0x32, 0x0d, 0x9f, 0x44, 0x7e, 0x07, 0x97, 0xbf, 0xf1, 0x85, 0x8b, 0x66, 0xf3, 0x4c, + 0x9c, 0xc5, 0x1b, 0xa2, 0xa5, 0x96, 0x6a, 0xe9, 0x33, 0x8e, 0xd0, 0x68, 0x71, 0x0c, 0x7d, 0x81, + 0xcc, 0x64, 0x41, 0xd6, 0xe0, 0xcc, 0x6e, 0x48, 0x8d, 0x3e, 0x4c, 0xe1, 0xfe, 0x50, 0x65, 0x23, + 0xdc, 0x0d, 0x69, 0x23, 0xaf, 0x1f, 0x49, 0x3a, 0x62, 0x03, 0x59, 0x0e, 0xfc, 0x4e, 0x62, 0x8e, + 0x9f, 0x41, 0x89, 0x58, 0xc7, 0x47, 0xd5, 0xcb, 0xad, 0xc0, 0xef, 0x34, 0xf2, 0x27, 0x7a, 0x06, + 0x35, 0xf9, 0x11, 0x9c, 0x5b, 0xf2, 0x3d, 0x8f, 0x36, 0xd9, 0x0a, 0xba, 0xec, 0x3a, 0xfb, 0x9e, + 0x1f, 0x46, 0x6e, 0x73, 0x6d, 0xb9, 0x52, 0x8e, 0xb7, 0x87, 0xa6, 0xc2, 0x68, 0xb4, 0x14, 0x8a, + 0xb9, 0x3d, 0xe4, 0x70, 0x21, 0x5f, 0xc1, 0xa4, 0xa8, 0x8b, 0x06, 0x38, 0x35, 0xcf, 0x16, 0x4f, + 0x34, 0x85, 0xcc, 0x37, 0xfa, 0x40, 0xfe, 0xe4, 0xaa, 0x93, 0xc9, 0x8b, 0x7c, 0x0d, 0xe3, 0x1b, + 0x77, 0x6b, 0x36, 0x0d, 0x3b, 0xbe, 0x17, 0xd2, 0x0a, 0xc1, 0x11, 0xbd, 0x2c, 0x58, 0x6f, 0xdc, + 0xad, 0xd5, 0xba, 0xd1, 0x01, 0xf5, 0x22, 0xb7, 0xe9, 0x44, 0x54, 0x62, 0x2d, 0xce, 0xb3, 0x99, + 0x77, 0xf8, 0xd8, 0x69, 0x04, 0x02, 0xa2, 0xf5, 0x42, 0x67, 0x47, 0xe6, 0x61, 0xb4, 0x5e, 0x5f, + 0x5d, 0xf7, 0xf7, 0x5d, 0xaf, 0x32, 0xcd, 0x84, 0x61, 0xab, 0xdf, 0xe4, 0x31, 0xcc, 0x6a, 0x67, + 0x83, 0x06, 0xfb, 0x9f, 0x1e, 0x52, 0x2f, 0xaa, 0xcc, 0x60, 0x1b, 0xbe, 0xaf, 0x0e, 0x37, 0x37, + 0xf5, 0x23, 0xc4, 0xd3, 0x3b, 0x37, 0x6b, 0xf1, 0xcf, 0xba, 0x24, 0x5a, 0xec, 0xaf, 0x94, 0xec, + 0x19, 0x27, 0xa3, 0x84, 0xec, 0xc0, 0xc8, 0x76, 0x37, 0xe8, 0xf8, 0x21, 0xad, 0xcc, 0xa2, 0xe0, + 0xae, 0x15, 0x7d, 0xa1, 0x02, 0x75, 0x71, 0x96, 0x2d, 0xd1, 0x1d, 0xfe, 0x43, 0xeb, 0x9d, 0x64, + 0x45, 0x3e, 0x85, 0x89, 0x7a, 0x7d, 0x35, 0xde, 0x50, 0xce, 0xe1, 0x86, 0x72, 0xf1, 0xf8, 0xa8, + 0x5a, 0x61, 0x2a, 0x55, 0xbc, 0xa9, 0xe8, 0x5f, 0x95, 0x4e, 0xc1, 0x38, 0xec, 0xac, 0xd7, 0x63, + 0x0e, 0x73, 0x31, 0x07, 0xa6, 0xcc, 0x65, 0x73, 0xd0, 0x29, 0xc8, 0x3f, 0x28, 0xc1, 0x15, 0x9d, + 0x65, 0x96, 0x60, 0x2a, 0xe7, 0x5f, 0x44, 0x9a, 0x0b, 0xc7, 0x47, 0xd5, 0x9b, 0x66, 0x3f, 0x1a, + 0x99, 0x83, 0xa5, 0xb5, 0xad, 0x67, 0x53, 0xb0, 0xbd, 0x7a, 0x07, 0x32, 0xdb, 0x3b, 0xff, 0xc2, + 0xed, 0x35, 0xa5, 0xd6, 0xbb, 0xbd, 0xbd, 0x9a, 0x62, 0x7d, 0x0e, 0x63, 0x6a, 0xd1, 0x26, 0x23, + 0x30, 0x50, 0x6b, 0xb7, 0xcb, 0x7d, 0xec, 0x8f, 0x7a, 0x7d, 0xb5, 0x5c, 0x22, 0x53, 0x00, 0xf1, + 0x4e, 0x55, 0xee, 0x27, 0x13, 0x30, 0x2a, 0x77, 0x92, 0xf2, 0x00, 0xe2, 0x77, 0x3a, 0xe5, 0x41, + 0x42, 0x60, 0xca, 0x5c, 0xcf, 0xca, 0x43, 0xd6, 0xef, 0x95, 0x60, 0x4c, 0x7d, 0x87, 0xe4, 0x0c, + 0x8c, 0xef, 0x6e, 0xd6, 0xb7, 0x57, 0x96, 0xd6, 0xee, 0xae, 0xad, 0x2c, 0x97, 0xfb, 0xc8, 0x25, + 0x38, 0xbf, 0x53, 0x5f, 0x6d, 0x2c, 0x2f, 0x36, 0xd6, 0xb7, 0x96, 0x6a, 0xeb, 0x8d, 0x6d, 0x7b, + 0xeb, 0xf3, 0x2f, 0x1a, 0x3b, 0xbb, 0x9b, 0x9b, 0x2b, 0xeb, 0xe5, 0x12, 0xa9, 0xc0, 0x0c, 0x2b, + 0x7e, 0xb0, 0xbb, 0xb8, 0xa2, 0x23, 0x94, 0xfb, 0xc9, 0x55, 0xb8, 0x94, 0x55, 0xd2, 0x58, 0x5d, + 0xa9, 0x2d, 0xaf, 0xaf, 0xd4, 0xeb, 0xe5, 0x01, 0x32, 0x07, 0xd3, 0x0c, 0xa5, 0xb6, 0xbd, 0x6d, + 0xd0, 0x0e, 0x5a, 0x6d, 0x18, 0xd7, 0x3e, 0x00, 0x72, 0x11, 0x2a, 0x4b, 0x2b, 0xf6, 0x4e, 0x63, + 0x7b, 0xd7, 0xde, 0xde, 0xaa, 0xaf, 0x34, 0xcc, 0x16, 0x26, 0x4b, 0xd7, 0xb7, 0xee, 0xad, 0x6d, + 0x36, 0x18, 0xa8, 0x5e, 0x2e, 0xb1, 0x66, 0x18, 0xa5, 0xf5, 0xb5, 0xcd, 0x7b, 0xeb, 0x2b, 0x8d, + 0xdd, 0xfa, 0x8a, 0x40, 0xe9, 0xb7, 0x7e, 0xab, 0x3f, 0xb5, 0xa5, 0x93, 0x05, 0x18, 0xaf, 0x73, + 0x7b, 0x05, 0x2e, 0x73, 0xfc, 0x80, 0xc8, 0x74, 0xb4, 0x09, 0x61, 0xc6, 0xe0, 0x2b, 0x98, 0x8e, + 0xc4, 0xb4, 0xb4, 0x6d, 0xf6, 0x35, 0x37, 0xfd, 0xb6, 0xae, 0xa5, 0x75, 0x04, 0xcc, 0x56, 0xa5, + 0x64, 0x41, 0xd3, 0xe7, 0xf8, 0x69, 0x11, 0x4f, 0x24, 0x52, 0x9f, 0xd3, 0xf7, 0x76, 0xa5, 0xd9, + 0x2d, 0xc4, 0x43, 0x2a, 0xd4, 0x30, 0xa4, 0xc9, 0xd0, 0x25, 0x14, 0x1e, 0x79, 0x43, 0x6a, 0xba, + 0xfc, 0x74, 0x87, 0x9b, 0x7d, 0xe2, 0x5c, 0x22, 0x94, 0x5c, 0xab, 0x9b, 0xb3, 0xb1, 0x92, 0x0f, + 0x93, 0x73, 0x46, 0x08, 0x03, 0x99, 0x25, 0xf6, 0x4f, 0x3b, 0x81, 0x4a, 0xaa, 0x30, 0xc4, 0x57, + 0x5c, 0x2e, 0x0f, 0xd4, 0xad, 0xdb, 0x0c, 0x60, 0x73, 0xb8, 0xf5, 0xfb, 0x03, 0xba, 0x92, 0xc1, + 0x74, 0x69, 0x4d, 0xde, 0xa8, 0x4b, 0xa3, 0x9c, 0x11, 0xca, 0x8e, 0x82, 0xfc, 0x2b, 0xc1, 0xa3, + 0xe0, 0x40, 0x7c, 0x14, 0x14, 0x9f, 0x1a, 0x3f, 0x0a, 0xc6, 0x28, 0x6c, 0x14, 0x85, 0xda, 0x86, + 0x5c, 0x07, 0xe3, 0x51, 0x14, 0xaa, 0x9e, 0x18, 0x45, 0x0d, 0x89, 0x7c, 0x00, 0x50, 0x7b, 0x58, + 0xc7, 0x33, 0x8f, 0xbd, 0x29, 0x54, 0x57, 0xdc, 0x64, 0x9c, 0x67, 0xa1, 0x38, 0x52, 0x05, 0xfa, + 0x99, 0x51, 0xc3, 0x26, 0x8b, 0x30, 0x59, 0xfb, 0x69, 0x37, 0xa0, 0x6b, 0x2d, 0xb6, 0x4f, 0x45, + 0xfc, 0x70, 0x3c, 0xc6, 0x17, 0x52, 0x87, 0x15, 0x34, 0x5c, 0x51, 0xa2, 0x31, 0x30, 0x49, 0xc8, + 0x16, 0x9c, 0xbd, 0xb7, 0xb4, 0x2d, 0xe6, 0x55, 0xad, 0xd9, 0xf4, 0xbb, 0x5e, 0x24, 0xf4, 0xd5, + 0xab, 0xc7, 0x47, 0xd5, 0x4b, 0xfb, 0xcd, 0x4e, 0x43, 0xce, 0x41, 0x87, 0x17, 0xeb, 0x0a, 0x6b, + 0x8a, 0x96, 0x5c, 0x83, 0x81, 0x5d, 0x7b, 0x4d, 0x9c, 0x9c, 0xcf, 0x1e, 0x1f, 0x55, 0x27, 0xbb, + 0x81, 0xab, 0x91, 0xb0, 0xd2, 0xfb, 0x83, 0xa3, 0xfd, 0xe5, 0x01, 0x7b, 0xac, 0x4e, 0xc3, 0x90, + 0x1f, 0xf2, 0xda, 0x30, 0x75, 0x8f, 0x46, 0x6c, 0xf6, 0xc9, 0x43, 0x4b, 0xf1, 0xd8, 0x7c, 0x04, + 0xe3, 0x0f, 0xdd, 0xe8, 0xa0, 0x4e, 0x9b, 0x01, 0x8d, 0xa4, 0xc1, 0x06, 0xe5, 0xf6, 0xcc, 0x8d, + 0x0e, 0x1a, 0x21, 0x87, 0xeb, 0x9b, 0xb3, 0x86, 0x6e, 0xad, 0xc0, 0x19, 0x51, 0x9b, 0x3a, 0x23, + 0x2d, 0x98, 0x0c, 0x4b, 0xc8, 0x10, 0xc7, 0x4e, 0x67, 0x68, 0xb2, 0xf9, 0xc7, 0xfd, 0x30, 0xbb, + 0x74, 0xe0, 0x78, 0xfb, 0x74, 0xdb, 0x09, 0xc3, 0x67, 0x7e, 0xd0, 0xd2, 0x1a, 0x8f, 0x07, 0xc4, + 0x54, 0xe3, 0xf1, 0x44, 0xb8, 0x00, 0xe3, 0x5b, 0xed, 0x96, 0xa4, 0x11, 0x87, 0x57, 0xac, 0xcb, + 0x6f, 0xb7, 0x1a, 0x1d, 0xc9, 0x4b, 0x47, 0x62, 0x34, 0x9b, 0xf4, 0x99, 0xa2, 0x19, 0x88, 0x69, + 0x3c, 0xfa, 0x4c, 0xa3, 0xd1, 0x90, 0xc8, 0x0a, 0x9c, 0xad, 0xd3, 0xa6, 0xef, 0xb5, 0xee, 0x3a, + 0xcd, 0xc8, 0x0f, 0x76, 0xfc, 0x27, 0xd4, 0x13, 0xb3, 0x12, 0xb5, 0xfb, 0x10, 0x0b, 0x1b, 0x8f, + 0xb1, 0xb4, 0x11, 0xb1, 0x62, 0x3b, 0x4d, 0x41, 0xb6, 0x60, 0xf4, 0xa1, 0x30, 0xfb, 0x89, 0x13, + 0xef, 0xab, 0x37, 0x95, 0x1d, 0x70, 0x29, 0xa0, 0x38, 0x95, 0x9c, 0xb6, 0x3a, 0xb3, 0x2b, 0x65, + 0x09, 0xd7, 0x23, 0x89, 0x69, 0x2b, 0x26, 0xd6, 0x2e, 0x4c, 0x6e, 0xb7, 0xbb, 0xfb, 0xae, 0xc7, + 0x56, 0x8e, 0x3a, 0xfd, 0x09, 0x59, 0x06, 0x88, 0x01, 0xc2, 0x98, 0x37, 0x2d, 0xce, 0xc9, 0x71, + 0xc1, 0xde, 0x5b, 0xe2, 0xf3, 0x43, 0x08, 0x1e, 0x6b, 0x6c, 0x8d, 0xce, 0xfa, 0x6f, 0x03, 0x40, + 0xc4, 0x00, 0xe0, 0x4e, 0x56, 0xa7, 0x11, 0xdb, 0x63, 0xce, 0x41, 0xbf, 0xb2, 0xb9, 0x0d, 0x1f, + 0x1f, 0x55, 0xfb, 0xdd, 0x96, 0xdd, 0xbf, 0xb6, 0x4c, 0xde, 0x86, 0x21, 0x44, 0x43, 0xf9, 0x4f, + 0xa9, 0xfa, 0x74, 0x0e, 0x7c, 0x05, 0xc1, 0x2d, 0xd4, 0xe6, 0xc8, 0xe4, 0x1d, 0x18, 0x5b, 0xa6, + 0x6d, 0xba, 0xef, 0x44, 0xbe, 0x5c, 0x13, 0xb8, 0x15, 0x4b, 0x02, 0xb5, 0x39, 0x17, 0x63, 0xb2, + 0x33, 0xad, 0x4d, 0x9d, 0xd0, 0xf7, 0xf4, 0x33, 0x6d, 0x80, 0x10, 0xfd, 0x4c, 0xcb, 0x71, 0xc8, + 0xff, 0x53, 0x82, 0xf1, 0x9a, 0xe7, 0x09, 0xeb, 0x50, 0x28, 0xa4, 0x3e, 0x7b, 0x53, 0x99, 0x53, + 0xd7, 0x9d, 0x47, 0xb4, 0xbd, 0xe7, 0xb4, 0xbb, 0x34, 0x5c, 0xfc, 0x9a, 0x1d, 0x33, 0xfe, 0xed, + 0x51, 0xf5, 0xc3, 0x53, 0xd8, 0x7b, 0x62, 0xc3, 0xec, 0x4e, 0xe0, 0xb8, 0x51, 0x78, 0x7c, 0x54, + 0x9d, 0x75, 0xe2, 0x0a, 0xf5, 0xef, 0x46, 0x6b, 0x47, 0xbc, 0xc0, 0x0f, 0xf7, 0x5a, 0xe0, 0xc9, + 0x21, 0x9c, 0xa9, 0x85, 0x61, 0xf7, 0x90, 0xd6, 0x23, 0x27, 0x88, 0x76, 0xdc, 0x43, 0x8a, 0xab, + 0x4a, 0xb1, 0x85, 0xe0, 0xf5, 0x9f, 0x1d, 0x55, 0x4b, 0xec, 0x64, 0xe3, 0x20, 0x29, 0x53, 0x5e, + 0x82, 0xa8, 0x11, 0xb9, 0xfa, 0x1e, 0x85, 0xb6, 0x82, 0x24, 0x6f, 0xeb, 0x9a, 0xd2, 0x2a, 0xd6, + 0x96, 0xf3, 0x46, 0xdc, 0x5a, 0x82, 0x8b, 0xf7, 0x68, 0x64, 0xd3, 0x90, 0x46, 0xf2, 0x1b, 0xc1, + 0x19, 0x1e, 0x5b, 0x68, 0x47, 0xf0, 0xb7, 0x22, 0xc6, 0xe1, 0xe7, 0xdf, 0x85, 0x2c, 0xb1, 0xfe, + 0x97, 0x12, 0x54, 0x97, 0x02, 0xca, 0x0f, 0x05, 0x39, 0x8c, 0x8a, 0xd7, 0xae, 0x8b, 0x30, 0xb8, + 0xf3, 0xbc, 0x23, 0x4d, 0x2b, 0x58, 0xca, 0x06, 0xc5, 0x46, 0xe8, 0x09, 0x2d, 0x55, 0xd6, 0x63, + 0x98, 0xb5, 0xa9, 0x47, 0x9f, 0x39, 0x8f, 0xda, 0xd4, 0x30, 0xf6, 0x54, 0x61, 0x88, 0x7f, 0xe8, + 0xa9, 0x2e, 0x70, 0xf8, 0xe9, 0x0c, 0x67, 0xd6, 0x24, 0x8c, 0x6f, 0xbb, 0xde, 0xbe, 0xe0, 0x6e, + 0xfd, 0xd5, 0x20, 0x4c, 0xf0, 0xdf, 0xe2, 0x9c, 0x93, 0xd8, 0xf3, 0x4a, 0x27, 0xd9, 0xf3, 0xde, + 0x83, 0x49, 0xb6, 0x69, 0xd0, 0x60, 0x8f, 0x06, 0x6c, 0xfd, 0x17, 0x92, 0xc0, 0x33, 0x5b, 0x88, + 0x05, 0x8d, 0xa7, 0xbc, 0xc4, 0x36, 0x11, 0xc9, 0x3a, 0x4c, 0x71, 0xc0, 0x5d, 0xea, 0x44, 0xdd, + 0xd8, 0xec, 0x74, 0x46, 0x1c, 0x6c, 0x24, 0x98, 0x4f, 0x4d, 0xc1, 0xeb, 0xb1, 0x00, 0xda, 0x09, + 0x5a, 0xf2, 0x09, 0x9c, 0xd9, 0x0e, 0xfc, 0x6f, 0x9e, 0x6b, 0xbb, 0x3c, 0xff, 0x3a, 0xf9, 0x11, + 0x88, 0x15, 0x35, 0xf4, 0xbd, 0x3e, 0x89, 0x4d, 0xde, 0x80, 0xd1, 0xb5, 0x70, 0xd1, 0x0f, 0x5c, + 0x6f, 0x1f, 0xbf, 0xd1, 0x51, 0x6e, 0xad, 0x77, 0xc3, 0xc6, 0x23, 0x04, 0xda, 0xaa, 0x38, 0x61, + 0x57, 0x1e, 0xe9, 0x6d, 0x57, 0xbe, 0x0d, 0xb0, 0xee, 0x3b, 0xad, 0x5a, 0xbb, 0xbd, 0x54, 0x0b, + 0x71, 0x3b, 0x15, 0xfb, 0x51, 0xdb, 0x77, 0x5a, 0x0d, 0xa7, 0xdd, 0x6e, 0x34, 0x9d, 0xd0, 0xd6, + 0x70, 0xc8, 0x97, 0x70, 0x3e, 0x74, 0xf7, 0x3d, 0xec, 0x5c, 0xc3, 0x69, 0xef, 0xfb, 0x81, 0x1b, + 0x1d, 0x1c, 0x36, 0xc2, 0xae, 0x1b, 0x71, 0xa3, 0xce, 0xd4, 0xc2, 0x65, 0xb1, 0xc8, 0xd5, 0x25, + 0x5e, 0x4d, 0xa2, 0xd5, 0x19, 0x96, 0x3d, 0x17, 0x66, 0x17, 0x90, 0x87, 0x30, 0xb9, 0xee, 0x36, + 0xa9, 0x17, 0x52, 0xb4, 0xd2, 0x3d, 0x47, 0x93, 0x4f, 0xf1, 0xc7, 0xcc, 0x84, 0x38, 0xd9, 0xd6, + 0x89, 0xf0, 0xd3, 0x35, 0xf9, 0xdc, 0x1f, 0x1c, 0x1d, 0x2e, 0x8f, 0xd8, 0x67, 0x04, 0xf0, 0xa1, + 0x13, 0x78, 0xae, 0xb7, 0x1f, 0x5a, 0xff, 0xf0, 0x2c, 0x8c, 0xaa, 0x71, 0xba, 0xa9, 0x1f, 0x37, + 0xc4, 0xd6, 0x8c, 0x53, 0x36, 0x36, 0xa6, 0xd9, 0x1a, 0x06, 0x39, 0x8f, 0x07, 0x10, 0xa1, 0x14, + 0x8c, 0xb0, 0x4f, 0xc8, 0xe9, 0x74, 0x6c, 0x06, 0x63, 0x4b, 0xc3, 0xf2, 0x22, 0x4e, 0x9a, 0x51, + 0xbe, 0x34, 0xb4, 0x1e, 0xd9, 0xfd, 0xcb, 0x8b, 0xec, 0x9b, 0xdc, 0x5a, 0x5b, 0x5e, 0xc2, 0xf1, + 0x1f, 0xe5, 0xdf, 0xa4, 0xef, 0xb6, 0x9a, 0x36, 0x42, 0x59, 0x69, 0xbd, 0xb6, 0xb1, 0x2e, 0xc6, + 0x18, 0x4b, 0x43, 0xe7, 0xb0, 0x6d, 0x23, 0x94, 0xa9, 0xac, 0xdc, 0x2e, 0xb2, 0xe4, 0x7b, 0x51, + 0xe0, 0xb7, 0x43, 0xd4, 0xc3, 0x46, 0xf9, 0x1c, 0x14, 0x06, 0x95, 0xa6, 0x28, 0xb2, 0x13, 0xa8, + 0xe4, 0x21, 0xcc, 0xd5, 0x5a, 0x4f, 0x1d, 0xaf, 0x49, 0x5b, 0xbc, 0xe4, 0xa1, 0x1f, 0x3c, 0x79, + 0xdc, 0xf6, 0x9f, 0x85, 0x38, 0x49, 0x46, 0x85, 0xfd, 0x51, 0xa0, 0x48, 0xfb, 0xcc, 0x33, 0x89, + 0x64, 0xe7, 0x51, 0xb3, 0x75, 0x60, 0xa9, 0xed, 0x77, 0x5b, 0x62, 0xea, 0xe0, 0x3a, 0xd0, 0x64, + 0x00, 0x9b, 0xc3, 0x99, 0x94, 0x56, 0xeb, 0x1b, 0x38, 0x31, 0x84, 0x94, 0x0e, 0xc2, 0x43, 0x9b, + 0xc1, 0xc8, 0xab, 0x30, 0x22, 0xb5, 0x6f, 0x7e, 0x1d, 0x81, 0x66, 0x70, 0xa9, 0x75, 0xcb, 0x32, + 0xf6, 0x1d, 0xdb, 0xb4, 0xe9, 0x3f, 0xa5, 0xc1, 0xf3, 0x25, 0xbf, 0x45, 0xa5, 0x6d, 0x4a, 0xd8, + 0x5e, 0x78, 0x41, 0xa3, 0xc9, 0x4a, 0x6c, 0x13, 0x91, 0x55, 0xc0, 0x37, 0xee, 0xb0, 0x72, 0x26, + 0xae, 0x80, 0x6f, 0xec, 0xa1, 0x2d, 0xcb, 0xc8, 0x32, 0x9c, 0xad, 0x75, 0x23, 0xff, 0xd0, 0x89, + 0xdc, 0xe6, 0x6e, 0x67, 0x3f, 0x70, 0x58, 0x25, 0x65, 0x24, 0xc0, 0xd3, 0x88, 0x23, 0x0b, 0x1b, + 0x5d, 0x51, 0x6a, 0xa7, 0x09, 0xc8, 0xbb, 0x30, 0xb1, 0x16, 0x72, 0xfb, 0xa3, 0x13, 0xd2, 0x16, + 0x1a, 0x91, 0x44, 0x2b, 0xdd, 0xb0, 0x81, 0xd6, 0xc8, 0x06, 0x3b, 0xbf, 0xb4, 0x6c, 0x03, 0x8f, + 0x58, 0x30, 0x5c, 0x0b, 0x43, 0x37, 0x8c, 0xd0, 0x36, 0x34, 0xba, 0x08, 0xc7, 0x47, 0xd5, 0x61, + 0x07, 0x21, 0xb6, 0x28, 0x21, 0x0f, 0x61, 0x7c, 0x99, 0x32, 0xf5, 0x77, 0x27, 0xe8, 0x86, 0x11, + 0x5a, 0x7a, 0xc6, 0x17, 0xce, 0x8b, 0xd5, 0x48, 0x2b, 0x11, 0x73, 0x99, 0xab, 0xa8, 0x2d, 0x84, + 0x37, 0x22, 0x56, 0xa0, 0x6f, 0xb5, 0x1a, 0x3e, 0xd3, 0xed, 0x05, 0xcd, 0xaa, 0xdb, 0x62, 0xeb, + 0xcb, 0x0c, 0xb6, 0x01, 0x75, 0x7b, 0xb1, 0xa0, 0x35, 0x0e, 0xb0, 0x44, 0xd7, 0xed, 0x0d, 0x12, + 0xd2, 0x4c, 0x99, 0xb4, 0x67, 0x0d, 0xb3, 0xa5, 0x59, 0x28, 0x9b, 0x78, 0x4a, 0x83, 0xf7, 0x47, + 0x30, 0xbe, 0xd4, 0x0d, 0x23, 0xff, 0x70, 0xe7, 0x80, 0x1e, 0x52, 0xb4, 0x06, 0x89, 0x13, 0x4c, + 0x13, 0xc1, 0x8d, 0x88, 0xc1, 0xf5, 0x6e, 0x6a, 0xe8, 0xe4, 0x33, 0x20, 0xf2, 0x28, 0x72, 0x8f, + 0xcd, 0x0f, 0x8f, 0xcd, 0x65, 0x34, 0x08, 0x8d, 0xf2, 0xf3, 0x87, 0x3c, 0xc1, 0x34, 0xf6, 0x55, + 0xb1, 0x6e, 0x94, 0x4c, 0x13, 0xb3, 0x06, 0xf1, 0x26, 0xde, 0x0b, 0x9c, 0xce, 0x41, 0xa5, 0x12, + 0x1f, 0x0d, 0x44, 0xa7, 0xf6, 0x19, 0xdc, 0x50, 0x71, 0x62, 0x74, 0x52, 0x07, 0xe0, 0x3f, 0xd7, + 0xd9, 0xc0, 0x73, 0x13, 0x52, 0xc5, 0x90, 0x17, 0x2b, 0x90, 0xb2, 0x3a, 0x8f, 0x8a, 0x13, 0x67, + 0xdb, 0x76, 0x8d, 0xd1, 0xd4, 0xd8, 0x90, 0x27, 0x50, 0xe6, 0xbf, 0x36, 0x7c, 0xcf, 0x8d, 0xf8, + 0x7e, 0x31, 0x6f, 0xd8, 0x1b, 0x93, 0xc5, 0xb2, 0x02, 0xb4, 0xf3, 0x8a, 0x0a, 0x0e, 0x55, 0xa9, + 0x56, 0x4d, 0x8a, 0x31, 0xd9, 0x86, 0xf1, 0xed, 0xc0, 0x6f, 0x75, 0x9b, 0x11, 0x6a, 0x19, 0x17, + 0x70, 0xe1, 0x27, 0xa2, 0x1e, 0xad, 0x84, 0xcb, 0xa4, 0xc3, 0x01, 0x0d, 0xb6, 0x2f, 0xe8, 0x32, + 0xd1, 0x10, 0xc9, 0x22, 0x0c, 0x6f, 0xfb, 0x6d, 0xb7, 0xf9, 0xbc, 0x72, 0x11, 0x1b, 0x3d, 0x23, + 0x99, 0x21, 0x50, 0x36, 0x15, 0x55, 0xda, 0x0e, 0x82, 0x74, 0x95, 0x96, 0x23, 0x91, 0x1a, 0x4c, + 0x7e, 0xc6, 0x26, 0x8c, 0xeb, 0x7b, 0x9e, 0xe3, 0x06, 0xb4, 0x72, 0x09, 0xc7, 0x05, 0x6d, 0xf1, + 0x3f, 0xd1, 0x0b, 0xf4, 0xe9, 0x6c, 0x50, 0x90, 0x35, 0x38, 0xb3, 0x16, 0xd6, 0xa3, 0xc0, 0xed, + 0xd0, 0x0d, 0xc7, 0x73, 0xf6, 0x69, 0xab, 0x72, 0x39, 0x36, 0x86, 0xbb, 0x61, 0x23, 0xc4, 0xb2, + 0xc6, 0x21, 0x2f, 0xd4, 0x8d, 0xe1, 0x09, 0x3a, 0xf2, 0x39, 0xcc, 0xac, 0x7c, 0x13, 0xb1, 0x19, + 0xd3, 0xae, 0x75, 0x5b, 0x6e, 0x54, 0x8f, 0xfc, 0xc0, 0xd9, 0xa7, 0x95, 0x2a, 0xf2, 0x7b, 0xe5, + 0xf8, 0xa8, 0x7a, 0x85, 0x8a, 0xf2, 0x86, 0xc3, 0x10, 0x1a, 0x21, 0xc7, 0xd0, 0x2f, 0xb9, 0xb3, + 0x38, 0x30, 0xe9, 0xd7, 0xbb, 0x1d, 0xa6, 0x6d, 0xa3, 0xf4, 0xaf, 0x18, 0xd2, 0xd7, 0x4a, 0xb8, + 0xf4, 0x43, 0x0e, 0x48, 0x49, 0x5f, 0x43, 0x24, 0x36, 0x90, 0xfb, 0xbe, 0xeb, 0xd5, 0x9a, 0x91, + 0xfb, 0x94, 0x8a, 0x13, 0x73, 0x58, 0xb9, 0x8a, 0x2d, 0x45, 0xc3, 0xfd, 0xaf, 0xfa, 0xae, 0xd7, + 0x70, 0xb0, 0xb8, 0x11, 0x8a, 0x72, 0xfd, 0x1b, 0x49, 0x53, 0x93, 0x1f, 0xc1, 0xb9, 0x0d, 0xff, + 0x91, 0xdb, 0xa6, 0x7c, 0xc9, 0xe1, 0x62, 0x41, 0x23, 0xa4, 0x85, 0x7c, 0xd1, 0x70, 0x7f, 0x88, + 0x18, 0x0d, 0xb1, 0x5a, 0x1d, 0x2a, 0x1c, 0xdd, 0x70, 0x9f, 0xcd, 0x85, 0xac, 0xc0, 0x04, 0x7e, + 0x97, 0x6d, 0xfc, 0x19, 0x56, 0xae, 0xe1, 0x91, 0xee, 0x6a, 0x42, 0x4b, 0xbb, 0xb9, 0xa2, 0xe1, + 0xac, 0x78, 0x51, 0xf0, 0xdc, 0x36, 0xc8, 0xc8, 0xc7, 0x30, 0x9f, 0x9c, 0xde, 0x4b, 0xbe, 0xf7, + 0xd8, 0xdd, 0xef, 0x06, 0xb4, 0x55, 0x79, 0x85, 0x35, 0xd5, 0x2e, 0xc0, 0x98, 0x7f, 0x08, 0x67, + 0x53, 0x55, 0x90, 0x32, 0x0c, 0x3c, 0x11, 0xf7, 0xa0, 0x63, 0x36, 0xfb, 0x93, 0xbc, 0x09, 0x43, + 0x4f, 0xd9, 0x59, 0x0a, 0x35, 0x86, 0xf8, 0x66, 0x4d, 0x23, 0x5d, 0xf3, 0x1e, 0xfb, 0x36, 0x47, + 0xfa, 0xa0, 0xff, 0xbd, 0xd2, 0xfd, 0xc1, 0xd1, 0xf1, 0xf2, 0x04, 0xbf, 0xbe, 0xbe, 0x3f, 0x38, + 0x3a, 0x59, 0x9e, 0xb2, 0x6a, 0x70, 0x26, 0x81, 0x4f, 0x2a, 0x30, 0x42, 0x3d, 0xa6, 0x9f, 0xb7, + 0xb8, 0xce, 0x62, 0xcb, 0x9f, 0x64, 0x06, 0x86, 0xda, 0xee, 0xa1, 0x1b, 0x61, 0x85, 0x43, 0x36, + 0xff, 0x61, 0xfd, 0x41, 0x09, 0x48, 0x7a, 0xcb, 0x20, 0xb7, 0x12, 0x6c, 0xb8, 0x76, 0x2a, 0x40, + 0xba, 0x81, 0x5e, 0x72, 0xff, 0x0c, 0xa6, 0xf9, 0x98, 0xc9, 0xcd, 0x4d, 0xab, 0x8b, 0x2f, 0xaa, + 0x19, 0xc5, 0xba, 0x51, 0x47, 0x14, 0xe3, 0x56, 0xb8, 0x8e, 0x4d, 0xeb, 0xc2, 0x6c, 0xe6, 0x66, + 0x41, 0x36, 0x60, 0xf6, 0xd0, 0xf7, 0xa2, 0x83, 0xf6, 0x73, 0xb9, 0x57, 0x88, 0xda, 0x4a, 0x58, + 0x1b, 0xae, 0x8f, 0x99, 0x08, 0xf6, 0xb4, 0x00, 0x0b, 0x8e, 0x58, 0x8f, 0xb0, 0x0b, 0xc9, 0x9e, + 0x58, 0x36, 0x9c, 0x4d, 0xad, 0xb9, 0xe4, 0x87, 0x30, 0xd1, 0xc4, 0xf3, 0x97, 0x51, 0x13, 0xdf, + 0x71, 0x34, 0xb8, 0xfe, 0x39, 0x71, 0x38, 0xef, 0xca, 0xdf, 0x2d, 0xc1, 0x5c, 0xce, 0x6a, 0x7b, + 0x7a, 0x51, 0x7f, 0x01, 0xe7, 0x0e, 0x9d, 0x6f, 0x1a, 0x01, 0x1e, 0xaf, 0x1b, 0x81, 0xe3, 0x25, + 0xa4, 0x8d, 0x2b, 0x49, 0x36, 0x86, 0xee, 0x43, 0x74, 0xe8, 0x7c, 0x63, 0x23, 0x82, 0xcd, 0xca, + 0x79, 0x3b, 0x3f, 0x85, 0x49, 0x63, 0x7d, 0x3d, 0x75, 0xe3, 0xac, 0x3b, 0x70, 0x76, 0x99, 0xb6, + 0x69, 0x44, 0x4f, 0x6c, 0x56, 0xb3, 0xb6, 0x01, 0xea, 0xf4, 0xd0, 0xe9, 0x1c, 0xf8, 0x4c, 0xef, + 0x5e, 0xd4, 0x7f, 0x09, 0xb3, 0x0c, 0x91, 0x27, 0x08, 0x59, 0xb0, 0xf7, 0x16, 0xd7, 0xc5, 0x43, + 0x85, 0x69, 0x6b, 0x54, 0xd6, 0xbf, 0xec, 0x07, 0x22, 0x16, 0xc8, 0x80, 0x3a, 0x87, 0xb2, 0x19, + 0xef, 0xc3, 0x04, 0x3f, 0x44, 0x73, 0x30, 0x36, 0x67, 0x7c, 0x61, 0x5a, 0x7c, 0x79, 0x7a, 0xd1, + 0x6a, 0x9f, 0x6d, 0xa0, 0x32, 0x52, 0x9b, 0xf2, 0xd3, 0x3f, 0x92, 0xf6, 0x1b, 0xa4, 0x7a, 0x11, + 0x23, 0xd5, 0x7f, 0x93, 0x4f, 0x60, 0x6a, 0xc9, 0x3f, 0xec, 0x30, 0x99, 0x08, 0xe2, 0x01, 0x61, + 0x59, 0x11, 0xf5, 0x1a, 0x85, 0xab, 0x7d, 0x76, 0x02, 0x9d, 0x6c, 0xc2, 0xf4, 0xdd, 0x76, 0x37, + 0x3c, 0xa8, 0x79, 0xad, 0xa5, 0xb6, 0x1f, 0x4a, 0x2e, 0x83, 0xe2, 0x30, 0x24, 0x96, 0xb7, 0x34, + 0xc6, 0x6a, 0x9f, 0x9d, 0x45, 0x48, 0x5e, 0x85, 0xa1, 0x95, 0xa7, 0x6c, 0xd9, 0x95, 0x9e, 0x24, + 0xc2, 0xd1, 0x6d, 0xcb, 0xa3, 0x5b, 0x8f, 0x57, 0xfb, 0x6c, 0x5e, 0xba, 0x38, 0x06, 0x23, 0xf2, + 0x00, 0x7e, 0x8b, 0xa9, 0xc4, 0x4a, 0x9c, 0xf5, 0xc8, 0x89, 0xba, 0x21, 0x99, 0x87, 0xd1, 0xdd, + 0x0e, 0x3b, 0x17, 0x4a, 0xcb, 0x85, 0xad, 0x7e, 0x5b, 0x6f, 0x9a, 0x92, 0x26, 0x17, 0x21, 0x36, + 0xbb, 0x0a, 0x64, 0xcd, 0x0e, 0xbb, 0x6a, 0x0a, 0xb7, 0x18, 0xdb, 0xa8, 0xb7, 0x3f, 0x51, 0x6f, + 0x39, 0x29, 0x6b, 0x6b, 0x36, 0x53, 0x78, 0xd6, 0xe7, 0x70, 0x79, 0xb7, 0x13, 0xd2, 0x20, 0xaa, + 0x75, 0x3a, 0x6d, 0xb7, 0xc9, 0x6f, 0xa2, 0xf0, 0xa0, 0x2e, 0x27, 0xcb, 0xbb, 0x30, 0xcc, 0x01, + 0x62, 0x9a, 0xc8, 0x39, 0x58, 0xeb, 0x74, 0x84, 0x79, 0xe0, 0x2d, 0xae, 0x9c, 0xf3, 0x03, 0xbf, + 0x2d, 0xb0, 0xad, 0xdf, 0x2d, 0xc1, 0x65, 0xfe, 0x05, 0xe4, 0xb2, 0xfe, 0x1e, 0x8c, 0xa1, 0x9f, + 0x59, 0xc7, 0x69, 0xca, 0x6f, 0x82, 0x3b, 0xdc, 0x49, 0xa0, 0x1d, 0x97, 0x6b, 0x1e, 0x7c, 0xfd, + 0xf9, 0x1e, 0x7c, 0xf2, 0x03, 0x1b, 0xc8, 0xfc, 0xc0, 0x3e, 0x03, 0x4b, 0xb4, 0xa8, 0xdd, 0x4e, + 0x35, 0x2a, 0x7c, 0x91, 0x56, 0x59, 0xff, 0xa9, 0x1f, 0xe6, 0xee, 0x51, 0x8f, 0x06, 0x0e, 0xf6, + 0xd3, 0x30, 0x44, 0xe9, 0x9e, 0x3c, 0xa5, 0x42, 0x4f, 0x9e, 0xaa, 0x34, 0xed, 0xf5, 0xa3, 0x69, + 0x2f, 0xe5, 0x96, 0xc4, 0x8e, 0x8b, 0xbb, 0xf6, 0x9a, 0xe8, 0x16, 0x1e, 0x17, 0xbb, 0x81, 0x8b, + 0xd6, 0x7c, 0xb2, 0x16, 0x7b, 0x01, 0x0d, 0xf6, 0x34, 0x0b, 0x4c, 0x0b, 0xaf, 0x88, 0x11, 0xe1, + 0x05, 0x64, 0xfa, 0xfe, 0x6c, 0xc2, 0x30, 0xb7, 0x48, 0xe2, 0x1d, 0xd2, 0xf8, 0xc2, 0x0d, 0xf1, + 0x4d, 0xe5, 0x74, 0x50, 0x98, 0x2f, 0x71, 0x63, 0xe7, 0x53, 0x20, 0x42, 0x80, 0x2d, 0xb8, 0xcc, + 0x7f, 0x06, 0xe3, 0x1a, 0xca, 0x49, 0xf6, 0x7e, 0x65, 0x19, 0x65, 0x1a, 0xa3, 0xb7, 0xcf, 0x8d, + 0xac, 0xda, 0xde, 0x6f, 0x7d, 0x08, 0x95, 0x74, 0x6b, 0x84, 0x35, 0xac, 0x97, 0xf1, 0xcd, 0x5a, + 0x86, 0x99, 0x7b, 0x34, 0xc2, 0x89, 0x8b, 0x1f, 0x91, 0xe6, 0xcd, 0x96, 0xf8, 0xce, 0xe4, 0xaa, + 0x8a, 0x40, 0x36, 0xc1, 0xb4, 0xaf, 0xb4, 0x0e, 0xb3, 0x09, 0x2e, 0xa2, 0xfe, 0x0f, 0x60, 0x44, + 0x80, 0xd4, 0x8a, 0x2a, 0x5c, 0x62, 0xe9, 0x23, 0x51, 0xb0, 0xb7, 0xc0, 0xe7, 0xad, 0xe0, 0x6c, + 0x4b, 0x02, 0xeb, 0x00, 0xce, 0xb1, 0x6d, 0x36, 0xe6, 0xaa, 0xa6, 0xe3, 0x05, 0x18, 0xeb, 0x30, + 0x45, 0x21, 0x74, 0x7f, 0xca, 0xa7, 0xd1, 0x90, 0x3d, 0xca, 0x00, 0x75, 0xf7, 0xa7, 0x94, 0x5c, + 0x02, 0xc0, 0x42, 0xec, 0xa6, 0x58, 0x05, 0x10, 0x9d, 0x5b, 0x1b, 0x09, 0xa0, 0x2f, 0x1c, 0x9f, + 0x37, 0x36, 0xfe, 0x6d, 0x05, 0x30, 0x97, 0xaa, 0x49, 0x74, 0xe0, 0x16, 0x8c, 0x4a, 0x15, 0x36, + 0x71, 0x0f, 0xa0, 0xf7, 0xc0, 0x56, 0x48, 0xe4, 0x35, 0x38, 0xe3, 0xd1, 0x6f, 0xa2, 0x46, 0xaa, + 0x0d, 0x93, 0x0c, 0xbc, 0x2d, 0xdb, 0x61, 0xfd, 0x0a, 0xda, 0x7e, 0xeb, 0x9e, 0xff, 0xec, 0x71, + 0xdb, 0x79, 0x42, 0x53, 0x15, 0xff, 0x10, 0x46, 0xeb, 0xbd, 0x2b, 0xe6, 0x9f, 0x8f, 0xac, 0xdc, + 0x56, 0x24, 0x56, 0x1b, 0xe6, 0x59, 0x97, 0xea, 0xb5, 0x8d, 0xf5, 0xb5, 0xd6, 0xf6, 0x77, 0x2d, + 0xc0, 0xa7, 0x70, 0x21, 0xb3, 0xb6, 0xef, 0x5a, 0x88, 0x7f, 0x32, 0x08, 0x73, 0x7c, 0x33, 0x49, + 0xcf, 0xe0, 0x93, 0x2f, 0x35, 0xbf, 0x94, 0x7b, 0xd5, 0xdb, 0x19, 0xf7, 0xaa, 0x48, 0xa2, 0xdf, + 0xab, 0x1a, 0xb7, 0xa9, 0xef, 0x65, 0xdf, 0xa6, 0xa2, 0x9d, 0xc8, 0xbc, 0x4d, 0x4d, 0xde, 0xa1, + 0xae, 0xe4, 0xdf, 0xa1, 0xe2, 0xdd, 0x50, 0xc6, 0x1d, 0x6a, 0xd6, 0xcd, 0x69, 0xc2, 0x21, 0x69, + 0xf4, 0xe5, 0x3a, 0x24, 0xbd, 0x06, 0x23, 0xb5, 0x4e, 0x47, 0x73, 0xf0, 0xc3, 0xe1, 0x71, 0x3a, + 0x1d, 0x2e, 0x3c, 0x59, 0x28, 0xd7, 0x79, 0xc8, 0x58, 0xe7, 0xdf, 0x07, 0x58, 0xc2, 0x67, 0x08, + 0x38, 0x70, 0xe3, 0x88, 0x81, 0x1a, 0x3e, 0x7f, 0x9c, 0x80, 0x03, 0xa7, 0x5b, 0x40, 0x62, 0x64, + 0xae, 0xd8, 0x5b, 0x7b, 0x50, 0x49, 0x4f, 0x9f, 0x97, 0xb0, 0x74, 0xfd, 0x71, 0x09, 0x2e, 0x09, + 0x25, 0x27, 0xf1, 0x81, 0x9f, 0x7e, 0x76, 0xbe, 0x03, 0x13, 0x82, 0x76, 0x27, 0xfe, 0x10, 0xf8, + 0x45, 0xb6, 0x5c, 0x8c, 0xf9, 0x8a, 0x6e, 0xa0, 0x91, 0x77, 0x60, 0x14, 0xff, 0x88, 0xef, 0x6e, + 0x98, 0x64, 0xc6, 0x10, 0xb5, 0x91, 0xbc, 0xc1, 0x51, 0xa8, 0xd6, 0xd7, 0x70, 0x39, 0xaf, 0xe1, + 0x2f, 0x41, 0x2e, 0xff, 0xb4, 0x04, 0x17, 0x04, 0x7b, 0x63, 0xa9, 0x78, 0xa1, 0x5d, 0xe7, 0x14, + 0x6e, 0xc1, 0xf7, 0x61, 0x9c, 0x55, 0x28, 0xdb, 0x3d, 0x20, 0xb6, 0x56, 0x71, 0x72, 0x88, 0x4b, + 0x96, 0x9d, 0xc8, 0x11, 0x6e, 0x2e, 0xce, 0x61, 0x5b, 0x1a, 0x2f, 0x6c, 0x9d, 0xd8, 0xfa, 0x12, + 0x2e, 0x66, 0x77, 0xe1, 0x25, 0xc8, 0xe7, 0x3e, 0xcc, 0x67, 0x6c, 0x0a, 0x2f, 0xb6, 0x27, 0x7f, + 0x01, 0x17, 0x32, 0x79, 0xbd, 0x84, 0x66, 0xae, 0x32, 0x8d, 0x23, 0x7a, 0x09, 0x43, 0x68, 0x3d, + 0x84, 0xf3, 0x19, 0x9c, 0x5e, 0x42, 0x13, 0xef, 0xc1, 0x9c, 0xd2, 0xb4, 0xbf, 0x55, 0x0b, 0x37, + 0xe0, 0x12, 0x67, 0xf4, 0x72, 0x46, 0xe5, 0x01, 0x5c, 0x10, 0xec, 0x5e, 0x82, 0xf4, 0x56, 0xe1, + 0x62, 0x7c, 0xa0, 0xce, 0xd0, 0x93, 0x4e, 0xbc, 0xc8, 0x58, 0xeb, 0x70, 0x25, 0xe6, 0x94, 0xa3, + 0x34, 0x9c, 0x9c, 0x1b, 0x57, 0x07, 0xe3, 0x51, 0x7a, 0x29, 0x23, 0xfa, 0x10, 0xce, 0x19, 0x4c, + 0x5f, 0x9a, 0xaa, 0xb4, 0x06, 0xd3, 0x9c, 0xb1, 0xa9, 0x3a, 0x2f, 0xe8, 0xaa, 0xf3, 0xf8, 0xc2, + 0xd9, 0x98, 0x25, 0x82, 0xf7, 0xde, 0xca, 0xd0, 0xa6, 0x37, 0x50, 0x9b, 0x96, 0x28, 0x71, 0x0b, + 0xdf, 0x81, 0x61, 0x0e, 0x11, 0xed, 0xcb, 0x60, 0xc6, 0x0f, 0x0b, 0x9c, 0x4c, 0x20, 0x5b, 0x3f, + 0x82, 0x4b, 0xfc, 0x24, 0x1a, 0xdf, 0x25, 0x9a, 0xa7, 0xc5, 0x1f, 0x26, 0x0e, 0xa2, 0xe7, 0x05, + 0xdf, 0x24, 0x7e, 0xce, 0x79, 0xf4, 0x91, 0x9c, 0xdb, 0x79, 0xfc, 0x4f, 0xf4, 0x44, 0x4c, 0x1e, + 0x30, 0xfb, 0x33, 0x0f, 0x98, 0xd7, 0xe0, 0xaa, 0x3a, 0x60, 0x26, 0xab, 0x91, 0x53, 0xcb, 0xfa, + 0x12, 0x2e, 0xf0, 0x8e, 0x4a, 0xd7, 0x3d, 0xb3, 0x19, 0x1f, 0x26, 0xba, 0x39, 0x27, 0xba, 0x69, + 0x62, 0xe7, 0x74, 0xf2, 0xff, 0x28, 0xc9, 0x4f, 0x2e, 0x9b, 0xf9, 0x2f, 0xfb, 0xc4, 0xbd, 0x09, + 0x55, 0x25, 0x10, 0xb3, 0x45, 0x2f, 0x76, 0xdc, 0xde, 0x80, 0x59, 0x9d, 0x8d, 0xdb, 0xa4, 0x7b, + 0x77, 0xf0, 0x92, 0xe7, 0x6d, 0xf6, 0x59, 0x20, 0x40, 0x4e, 0xbb, 0x4a, 0x86, 0xdc, 0x10, 0xdf, + 0x56, 0x98, 0x56, 0x03, 0x2e, 0xa6, 0x87, 0xc2, 0x6d, 0x4a, 0xbf, 0x7d, 0xf2, 0x09, 0xfb, 0x84, + 0x11, 0x22, 0x06, 0x23, 0x97, 0xa9, 0xfc, 0x8e, 0x39, 0xb9, 0xa4, 0xb2, 0x2c, 0xb9, 0xd4, 0x24, + 0xfa, 0xcf, 0x6a, 0x97, 0xf3, 0xe1, 0xd7, 0x81, 0xc8, 0xa2, 0xa5, 0xba, 0x2d, 0xab, 0x3e, 0x0f, + 0x03, 0x4b, 0x75, 0x5b, 0x3c, 0x18, 0x42, 0x4d, 0xb0, 0x19, 0x06, 0x36, 0x83, 0x25, 0x35, 0xf2, + 0xfe, 0x13, 0x68, 0xe4, 0xf7, 0x07, 0x47, 0x07, 0xca, 0x83, 0x36, 0xa9, 0xbb, 0xfb, 0xde, 0x43, + 0x37, 0x3a, 0x50, 0x15, 0xd6, 0xac, 0xaf, 0x60, 0xda, 0xa8, 0x5e, 0x7c, 0xc5, 0x85, 0x2f, 0x9d, + 0x98, 0x3e, 0xbb, 0x54, 0x43, 0xcf, 0x17, 0x34, 0x59, 0x4c, 0xf0, 0xf5, 0xa6, 0xe9, 0x34, 0xf0, + 0x19, 0xad, 0x2d, 0x0b, 0xad, 0xbf, 0x33, 0xa8, 0x71, 0xd7, 0xde, 0x8f, 0x15, 0xf4, 0xee, 0x0e, + 0x00, 0x9f, 0x21, 0x5a, 0xe7, 0x98, 0x02, 0x38, 0x2e, 0x1c, 0x4a, 0xf8, 0x92, 0x6c, 0x6b, 0x48, + 0x27, 0x7d, 0x5f, 0x26, 0xfc, 0x7c, 0x39, 0x91, 0x7c, 0x52, 0xa9, 0xfc, 0x7c, 0x05, 0xeb, 0xd0, + 0xd6, 0x91, 0xc8, 0x8f, 0x92, 0x8f, 0x20, 0x86, 0xf0, 0x4e, 0xe9, 0x15, 0x79, 0xc9, 0x9c, 0xee, + 0xdb, 0xe9, 0xde, 0x41, 0x3c, 0x83, 0x59, 0x46, 0xeb, 0x3e, 0xc6, 0x83, 0xc5, 0xca, 0x37, 0x11, + 0xf5, 0xf8, 0xda, 0x3e, 0x8c, 0xf5, 0xbc, 0x5a, 0x50, 0x4f, 0x8c, 0x2c, 0xec, 0xef, 0x31, 0x9f, + 0x06, 0x55, 0x65, 0x76, 0x36, 0x7f, 0x9c, 0x44, 0xf6, 0xfa, 0x8a, 0xd7, 0xea, 0xf8, 0xae, 0x3a, + 0x30, 0xf1, 0x49, 0x14, 0xb4, 0x1b, 0x54, 0xc0, 0x6d, 0x1d, 0xc9, 0x7a, 0xad, 0xd0, 0x7b, 0x7c, + 0x14, 0x06, 0x77, 0x96, 0x76, 0xd6, 0xcb, 0x25, 0xeb, 0x16, 0x80, 0x56, 0x13, 0xc0, 0xf0, 0xe6, + 0x96, 0xbd, 0x51, 0x5b, 0x2f, 0xf7, 0x91, 0x59, 0x38, 0xfb, 0x70, 0x6d, 0x73, 0x79, 0xeb, 0x61, + 0xbd, 0x51, 0xdf, 0xa8, 0xd9, 0x3b, 0x4b, 0x35, 0x7b, 0xb9, 0x5c, 0xb2, 0xbe, 0x86, 0x19, 0xb3, + 0x87, 0x2f, 0x75, 0x12, 0x46, 0x30, 0xad, 0xf4, 0x99, 0xfb, 0x0f, 0x77, 0x34, 0xa7, 0x53, 0x71, + 0xf8, 0x4b, 0x3a, 0x4f, 0x89, 0x63, 0xa2, 0xf8, 0x8c, 0x34, 0x24, 0xf2, 0x06, 0x57, 0x0b, 0x92, + 0x2f, 0x84, 0x99, 0x5a, 0xd0, 0x88, 0xf5, 0x02, 0x5c, 0xfa, 0x7e, 0x00, 0x33, 0x66, 0xad, 0x27, + 0xb5, 0x52, 0xbd, 0x82, 0xde, 0xb8, 0xda, 0xf3, 0x21, 0x42, 0xf4, 0x6b, 0x03, 0xb1, 0xb2, 0xfe, + 0x00, 0xca, 0x02, 0x2b, 0xde, 0x79, 0xaf, 0x49, 0x33, 0x62, 0x29, 0xe3, 0xb1, 0xa3, 0x74, 0xfe, + 0xf6, 0xa1, 0xcc, 0x56, 0x4c, 0x41, 0xc9, 0x2b, 0x98, 0x81, 0xa1, 0xf5, 0xf8, 0x3a, 0xc7, 0xe6, + 0x3f, 0xf0, 0x15, 0x4d, 0xe4, 0x04, 0x91, 0x74, 0x55, 0x1b, 0xb3, 0xd5, 0x6f, 0xf2, 0x06, 0x0c, + 0xdf, 0x75, 0xdb, 0x91, 0x30, 0x8d, 0xc4, 0x9b, 0x3c, 0x63, 0xcb, 0x0b, 0x6c, 0x81, 0x60, 0xd9, + 0x70, 0x56, 0xab, 0xf0, 0x14, 0x4d, 0x25, 0x15, 0x18, 0xd9, 0xa4, 0xdf, 0x68, 0xf5, 0xcb, 0x9f, + 0xd6, 0xbb, 0x70, 0x56, 0xb8, 0x01, 0x6a, 0x62, 0xba, 0x2a, 0xde, 0x64, 0x97, 0x8c, 0x87, 0xa1, + 0x82, 0x25, 0x16, 0x31, 0xba, 0xdd, 0x4e, 0xeb, 0x05, 0xe9, 0xd8, 0x46, 0x71, 0x4a, 0xba, 0xd7, + 0xe5, 0x2d, 0x50, 0xaf, 0xe1, 0xfc, 0xdf, 0xfa, 0xa1, 0x92, 0xb0, 0x32, 0x2c, 0x1d, 0x38, 0xed, + 0x36, 0xf5, 0xf6, 0x29, 0xb9, 0x0e, 0x83, 0x3b, 0x5b, 0x3b, 0xdb, 0xc2, 0x4a, 0x2a, 0x1d, 0x00, + 0x18, 0x48, 0xe1, 0xd8, 0x88, 0x41, 0x1e, 0xc0, 0x59, 0xe9, 0xe8, 0xab, 0x8a, 0xc4, 0x08, 0x5d, + 0x2a, 0x76, 0x1b, 0x4e, 0xd3, 0x91, 0xb7, 0x85, 0x49, 0xe4, 0x27, 0x5d, 0x37, 0xa0, 0x2d, 0xb4, + 0xfc, 0xc4, 0xb7, 0xe9, 0x5a, 0x89, 0xad, 0xa3, 0x91, 0x1f, 0xc0, 0x44, 0xbd, 0xbe, 0x15, 0xd7, + 0x3e, 0x64, 0xdc, 0x10, 0xe9, 0x45, 0xb6, 0x81, 0xc8, 0x9f, 0xde, 0x5a, 0x7f, 0x52, 0x82, 0xb9, + 0x1c, 0x73, 0x0b, 0x79, 0xc3, 0x90, 0xc3, 0xb4, 0x26, 0x07, 0x89, 0xb2, 0xda, 0x27, 0x04, 0xb1, + 0xa4, 0xb9, 0x4d, 0x0f, 0x9c, 0xc2, 0x6d, 0x7a, 0xb5, 0x2f, 0x76, 0x95, 0x26, 0xaf, 0xc1, 0x40, + 0xbd, 0xbe, 0x25, 0xcc, 0xea, 0x24, 0xee, 0x81, 0x86, 0xcc, 0x10, 0x16, 0x01, 0x46, 0x25, 0xc8, + 0x3a, 0x03, 0x93, 0xc6, 0xc0, 0x58, 0x16, 0x4c, 0xe8, 0x2d, 0x64, 0xa3, 0xbf, 0xe4, 0xb7, 0xd4, + 0xe8, 0xb3, 0xbf, 0xad, 0x6d, 0x53, 0x66, 0xe4, 0x12, 0x80, 0xbc, 0xaf, 0x75, 0x5b, 0xf2, 0xe6, + 0x47, 0x40, 0xd6, 0x5a, 0xe4, 0x2a, 0x4c, 0x04, 0xb4, 0xe5, 0x06, 0xb4, 0x19, 0x35, 0xba, 0x81, + 0x78, 0x80, 0x62, 0x8f, 0x4b, 0xd8, 0x6e, 0xd0, 0xb6, 0x16, 0x61, 0x5c, 0x6b, 0x68, 0x2f, 0x86, + 0x33, 0x30, 0xa4, 0x1b, 0x1e, 0xf9, 0x0f, 0xeb, 0xf7, 0x4a, 0x30, 0x83, 0x23, 0xbb, 0xef, 0xb2, + 0x15, 0x3f, 0x6e, 0xde, 0x82, 0x31, 0x0e, 0x17, 0x8d, 0x71, 0x48, 0xe0, 0xaa, 0x01, 0xf9, 0x20, + 0x35, 0x20, 0x17, 0xb3, 0x06, 0x04, 0xbf, 0x6a, 0xd7, 0xf7, 0xf4, 0x71, 0xd0, 0x6f, 0xe0, 0xfe, + 0xa0, 0x04, 0xd3, 0x5a, 0x9b, 0x54, 0x07, 0xef, 0x18, 0x4d, 0xba, 0x90, 0xd1, 0xa4, 0xd4, 0x14, + 0x59, 0x4c, 0xb5, 0xe8, 0x95, 0xa2, 0x16, 0x65, 0xcd, 0x10, 0x63, 0xe4, 0xff, 0xaa, 0x04, 0xb3, + 0x99, 0x32, 0x20, 0xe7, 0x98, 0x4a, 0xdf, 0x0c, 0x68, 0x24, 0x24, 0x2f, 0x7e, 0x31, 0xf8, 0x5a, + 0x18, 0x76, 0x69, 0x20, 0xe4, 0x2e, 0x7e, 0x91, 0x57, 0x60, 0x72, 0x9b, 0x06, 0xae, 0xdf, 0xe2, + 0xcf, 0x01, 0xb8, 0x9f, 0xed, 0xa4, 0x6d, 0x02, 0xc9, 0x45, 0x18, 0x53, 0x7e, 0xa2, 0xdc, 0x2c, + 0x6b, 0xc7, 0x00, 0xc6, 0x7b, 0xd9, 0xdd, 0xe7, 0x77, 0x39, 0x8c, 0x58, 0xfc, 0x62, 0x6b, 0xaa, + 0x34, 0x92, 0x0e, 0xf3, 0x35, 0x55, 0x5a, 0x40, 0xcf, 0xc1, 0xf0, 0x67, 0x36, 0x4e, 0x4d, 0x0c, + 0xd7, 0x60, 0x8b, 0x5f, 0x64, 0x0a, 0x1d, 0xba, 0xf1, 0x49, 0x09, 0x3a, 0x72, 0x7f, 0x00, 0x33, + 0x59, 0x72, 0xcd, 0x9a, 0xd8, 0x82, 0xb6, 0x5f, 0xd1, 0x7e, 0x09, 0xd3, 0xb5, 0x56, 0x6b, 0xe3, + 0x6e, 0x8d, 0xbb, 0x5a, 0x88, 0x51, 0xe5, 0x9f, 0x3e, 0x37, 0x53, 0x0a, 0x4d, 0x75, 0x70, 0xcd, + 0x73, 0x23, 0x7b, 0x7a, 0xe5, 0x1b, 0x37, 0x8c, 0x5c, 0x6f, 0x5f, 0xb3, 0xa5, 0xda, 0xe7, 0x36, + 0xe9, 0xb3, 0x8c, 0x29, 0xc0, 0x94, 0x08, 0x93, 0x37, 0x87, 0x67, 0x30, 0x9f, 0xd1, 0xd8, 0xc6, + 0xab, 0xd1, 0x9c, 0xc9, 0x37, 0x2e, 0x18, 0xa8, 0x35, 0x9f, 0x58, 0x3f, 0x80, 0x73, 0x7c, 0x25, + 0x2f, 0x6a, 0xbc, 0x68, 0xb6, 0x6e, 0xfa, 0xb5, 0xde, 0x93, 0xc6, 0x99, 0xc2, 0x96, 0xd9, 0x13, + 0x46, 0x5b, 0xb0, 0xca, 0xff, 0x58, 0x82, 0xf9, 0x04, 0x69, 0xfd, 0xb9, 0xd7, 0x94, 0xdb, 0xc8, + 0x6b, 0x49, 0x87, 0x79, 0x54, 0x7f, 0xb8, 0xcd, 0xd3, 0x6d, 0x29, 0x9f, 0x79, 0x72, 0x0b, 0x80, + 0x13, 0x6b, 0x5a, 0x0b, 0x5a, 0xfc, 0x85, 0x6f, 0x11, 0xea, 0x2d, 0x1a, 0x0a, 0xe9, 0x42, 0x96, + 0xdc, 0xc5, 0x37, 0xd2, 0xcb, 0x24, 0x8e, 0x21, 0x4a, 0xa8, 0x20, 0x6f, 0xe4, 0xd8, 0xc6, 0xb3, + 0xf8, 0x5b, 0xff, 0xe7, 0x00, 0xcc, 0xe9, 0x03, 0xf8, 0x22, 0x7d, 0xdd, 0x86, 0xf1, 0x25, 0xdf, + 0x8b, 0xe8, 0x37, 0x91, 0x16, 0x22, 0x82, 0x28, 0x07, 0x03, 0x55, 0x22, 0x34, 0x66, 0x0e, 0x68, + 0x30, 0xf5, 0xcd, 0xf0, 0x91, 0x8c, 0x11, 0xc9, 0x12, 0x4c, 0x6e, 0xd2, 0x67, 0x29, 0x01, 0xa2, + 0x9f, 0xa6, 0x47, 0x9f, 0x35, 0x34, 0x21, 0xea, 0xce, 0x73, 0x06, 0x0d, 0x79, 0x04, 0x53, 0x72, + 0x72, 0x19, 0xc2, 0x9c, 0xd7, 0x37, 0x53, 0x73, 0x3a, 0xf3, 0x10, 0x0a, 0xac, 0x86, 0x1c, 0x19, + 0x26, 0x38, 0xb2, 0xae, 0xf3, 0x1a, 0x79, 0x54, 0x00, 0x73, 0xb7, 0xd6, 0x4a, 0x0c, 0x2f, 0xd8, + 0x64, 0x34, 0x00, 0x9d, 0x85, 0xb5, 0x0d, 0x95, 0xf4, 0x78, 0x88, 0xda, 0xde, 0x86, 0x61, 0x0e, + 0x15, 0xda, 0x8f, 0x8c, 0xfe, 0xa3, 0xb0, 0xb9, 0x79, 0x82, 0x57, 0x63, 0x0b, 0x5c, 0x6b, 0x15, + 0x4d, 0x46, 0x0a, 0x47, 0xe9, 0x9f, 0xb7, 0x93, 0xc3, 0x8b, 0x0e, 0xc6, 0x72, 0x78, 0x75, 0xf7, + 0x1a, 0xf9, 0x10, 0x64, 0x09, 0xad, 0x6e, 0x3a, 0x27, 0xd1, 0xb0, 0x1b, 0x30, 0x22, 0x40, 0x89, + 0xb8, 0x44, 0xf1, 0xe7, 0x27, 0x11, 0xac, 0x0f, 0xe0, 0x3c, 0x9a, 0x00, 0x5d, 0x6f, 0xbf, 0x4d, + 0x77, 0x43, 0xe3, 0x29, 0x47, 0xaf, 0xcf, 0xfa, 0x23, 0x98, 0xcf, 0xa2, 0xed, 0xf9, 0x65, 0xf3, + 0x48, 0x21, 0x7f, 0xd1, 0x0f, 0x33, 0x6b, 0xa1, 0xae, 0x43, 0xa9, 0x68, 0x21, 0x19, 0x11, 0x2c, + 0x50, 0x26, 0xab, 0x7d, 0x59, 0x11, 0x2a, 0xde, 0xd6, 0x5e, 0x8a, 0xf6, 0x17, 0x85, 0xa6, 0x60, + 0xdb, 0x96, 0x7a, 0x2b, 0xfa, 0x1a, 0x0c, 0x6e, 0xb2, 0xa5, 0x7a, 0x40, 0x8c, 0x1d, 0xa7, 0x60, + 0x20, 0x7c, 0xa9, 0xc9, 0xb6, 0x48, 0xf6, 0x83, 0xdc, 0x4d, 0xbd, 0x07, 0x1d, 0xec, 0x1d, 0x7a, + 0x61, 0xb5, 0x2f, 0xf5, 0x34, 0xf4, 0x5d, 0x18, 0xaf, 0xb5, 0x0e, 0xb9, 0x23, 0xa4, 0xef, 0x25, + 0x3e, 0x4b, 0xad, 0x64, 0xb5, 0xcf, 0xd6, 0x11, 0xd9, 0xc1, 0xbe, 0xd6, 0xe9, 0xe0, 0x46, 0x95, + 0x15, 0x8e, 0x82, 0xe9, 0x5f, 0xb5, 0x4e, 0x67, 0x71, 0x14, 0x86, 0x77, 0x9c, 0x60, 0x9f, 0x46, + 0xd6, 0x97, 0x30, 0x2f, 0x7c, 0x73, 0xb8, 0xc1, 0x13, 0x3d, 0x78, 0xc2, 0xd8, 0xfd, 0xaa, 0xc8, + 0x9f, 0xe6, 0x32, 0x00, 0x1e, 0x6f, 0xd6, 0xbc, 0x16, 0xfd, 0x46, 0x38, 0x07, 0x6a, 0x10, 0xeb, + 0x1d, 0x18, 0x53, 0x12, 0x42, 0x1d, 0x5e, 0xdb, 0xec, 0x50, 0x5a, 0x33, 0xc6, 0x03, 0x58, 0xf9, + 0xea, 0xf5, 0xbc, 0xd1, 0x77, 0x11, 0x60, 0x86, 0x2b, 0xfd, 0x2e, 0xcc, 0x26, 0x26, 0x41, 0x1c, + 0xbf, 0x40, 0xa9, 0xdd, 0xdc, 0x7b, 0x51, 0xfd, 0x4e, 0x6a, 0xe5, 0xfd, 0x27, 0xd2, 0xca, 0xad, + 0xbf, 0xdf, 0x8f, 0xe7, 0xc5, 0x94, 0x3c, 0x12, 0xa6, 0x37, 0xdd, 0xfc, 0xb7, 0x08, 0x63, 0xd8, + 0xfb, 0x65, 0xf9, 0x4c, 0xaf, 0xd8, 0xb5, 0x64, 0xf4, 0x67, 0x47, 0xd5, 0x3e, 0xf4, 0x27, 0x89, + 0xc9, 0xc8, 0xc7, 0x30, 0xb2, 0xe2, 0xb5, 0x90, 0xc3, 0xc0, 0x29, 0x38, 0x48, 0x22, 0x36, 0x26, + 0xd8, 0xe4, 0x1d, 0xf6, 0x09, 0x73, 0x8b, 0x8d, 0xad, 0x41, 0xe2, 0x83, 0xeb, 0x50, 0xde, 0xc1, + 0x75, 0x38, 0x71, 0x70, 0xb5, 0x60, 0x68, 0x2b, 0x68, 0x89, 0xb0, 0x30, 0x53, 0x0b, 0x13, 0x42, + 0x70, 0x08, 0xb3, 0x79, 0x91, 0xf5, 0x9f, 0x4b, 0x30, 0x77, 0x8f, 0x46, 0x99, 0x73, 0xc8, 0x90, + 0x4a, 0xe9, 0x5b, 0x4b, 0xa5, 0xff, 0x45, 0xa4, 0xa2, 0x7a, 0x3d, 0x90, 0xd7, 0xeb, 0xc1, 0xbc, + 0x5e, 0x0f, 0xe5, 0xf7, 0xfa, 0x1e, 0x0c, 0xf3, 0xae, 0xb2, 0xc3, 0xf9, 0x5a, 0x44, 0x0f, 0xe3, + 0xc3, 0xb9, 0xee, 0x18, 0x67, 0xf3, 0x32, 0xa6, 0x48, 0xae, 0x3b, 0xa1, 0x7e, 0x38, 0x17, 0x3f, + 0xad, 0x1f, 0xe3, 0x03, 0xdf, 0x75, 0xbf, 0xf9, 0x44, 0x33, 0xf2, 0x8e, 0xf0, 0x2f, 0x34, 0x79, + 0x29, 0xc0, 0xb0, 0x78, 0x89, 0x2d, 0x31, 0xc8, 0x15, 0x18, 0x5f, 0xf3, 0xee, 0xfa, 0x41, 0x93, + 0x6e, 0x79, 0x6d, 0xce, 0x7d, 0xd4, 0xd6, 0x41, 0xc2, 0xf8, 0x21, 0x6a, 0x88, 0x2d, 0x0a, 0x08, + 0x48, 0x58, 0x14, 0x18, 0x6c, 0x6f, 0xc1, 0xe6, 0x65, 0xc2, 0xb6, 0xc2, 0xfe, 0x2e, 0x3a, 0x8c, + 0xab, 0x53, 0x7b, 0x2f, 0xc4, 0x47, 0x70, 0xde, 0xa6, 0x9d, 0xb6, 0xc3, 0x74, 0xba, 0x43, 0x9f, + 0xe3, 0xab, 0x3e, 0x5f, 0xc9, 0x78, 0x9c, 0x67, 0xba, 0x49, 0xa8, 0x26, 0xf7, 0x17, 0x34, 0xf9, + 0x10, 0xae, 0xde, 0xa3, 0x91, 0xb9, 0xa0, 0xc6, 0x26, 0x64, 0xd1, 0xf9, 0x55, 0x18, 0x0d, 0x4d, + 0xf3, 0xb7, 0x7c, 0x6c, 0x96, 0x49, 0xb8, 0xf7, 0x96, 0xbc, 0x20, 0x12, 0x7c, 0xd4, 0x5f, 0xd6, + 0x27, 0x50, 0xcd, 0xab, 0xee, 0x64, 0x5e, 0xac, 0x2e, 0x5c, 0xc9, 0x67, 0x20, 0x9a, 0xbb, 0x02, + 0xd2, 0x54, 0x2e, 0x3e, 0xa1, 0x5e, 0xad, 0x35, 0xad, 0xeb, 0xe2, 0x0f, 0x6b, 0x51, 0xfa, 0xf3, + 0x7d, 0x8b, 0xe6, 0x36, 0xf0, 0x16, 0xda, 0x64, 0x10, 0xcb, 0xb5, 0x06, 0xa3, 0x12, 0x26, 0xe4, + 0x3a, 0x97, 0xd9, 0x52, 0x29, 0xd0, 0x96, 0x64, 0xa0, 0xc8, 0xac, 0x1f, 0xcb, 0x1b, 0x19, 0x93, + 0xe2, 0x64, 0xaf, 0x55, 0x4f, 0x72, 0x05, 0x63, 0xf9, 0x70, 0xde, 0xe4, 0xad, 0x5b, 0xda, 0xcb, + 0x9a, 0xa5, 0x9d, 0x1b, 0xd8, 0xaf, 0x98, 0x96, 0x5f, 0x61, 0x3c, 0xd0, 0x40, 0xe4, 0xb2, 0x6e, + 0x4f, 0x9f, 0x48, 0x3f, 0x7f, 0xbd, 0x0d, 0xf3, 0x59, 0x15, 0x6a, 0xe7, 0x40, 0x65, 0xb4, 0x15, + 0xfa, 0xce, 0x32, 0x5c, 0x96, 0x81, 0x99, 0x7c, 0x3f, 0x0a, 0xa3, 0xc0, 0xe9, 0xd4, 0x9b, 0x81, + 0xdb, 0x89, 0xa9, 0x2c, 0x18, 0xe6, 0x10, 0x21, 0x09, 0x7e, 0xbb, 0xc5, 0x71, 0x44, 0x89, 0xf5, + 0x9b, 0x25, 0xb0, 0x0c, 0xd7, 0x2b, 0x1c, 0xe7, 0xed, 0xc0, 0x7f, 0xea, 0xb6, 0xb4, 0x1b, 0xa5, + 0x37, 0x0c, 0x6b, 0x26, 0x7f, 0x09, 0x98, 0xf4, 0xfa, 0x16, 0x6b, 0xe6, 0xed, 0x84, 0x85, 0x91, + 0x2b, 0x9e, 0xe8, 0x8e, 0x65, 0x46, 0xc0, 0x51, 0x96, 0xc7, 0xff, 0x5a, 0x82, 0x6b, 0x85, 0x6d, + 0x10, 0xfd, 0x79, 0x04, 0xe5, 0x64, 0x99, 0x98, 0x41, 0x55, 0xcd, 0x15, 0x23, 0xcd, 0x61, 0xef, + 0x0e, 0x77, 0x2d, 0x97, 0x2e, 0x4b, 0x1d, 0xc5, 0x39, 0xc5, 0xef, 0xf4, 0xad, 0x27, 0xef, 0x03, + 0xec, 0xf8, 0x91, 0xd3, 0x5e, 0x42, 0x03, 0xc0, 0x40, 0xfc, 0x4c, 0x20, 0x62, 0xd0, 0x46, 0x32, + 0xc2, 0x84, 0x86, 0x6c, 0x7d, 0x8a, 0xdf, 0x75, 0x76, 0xa3, 0x4f, 0xf6, 0xa9, 0x2d, 0xc1, 0xb5, + 0x84, 0x3b, 0xc0, 0x0b, 0x30, 0x89, 0x60, 0x96, 0x89, 0x9f, 0xe9, 0xde, 0xf7, 0x02, 0xbf, 0xdb, + 0xf9, 0xe5, 0x8c, 0xfa, 0x9f, 0x96, 0xb8, 0x7f, 0xa6, 0x5e, 0xad, 0x18, 0xe8, 0x25, 0x80, 0x18, + 0x9a, 0xf0, 0xd3, 0x57, 0x05, 0x7b, 0x77, 0xf8, 0x91, 0x1b, 0x2f, 0x0a, 0xf6, 0x39, 0x03, 0x8d, + 0xec, 0x97, 0x3b, 0x92, 0x6f, 0xa1, 0x0f, 0x80, 0xaa, 0xfd, 0x64, 0x72, 0x7f, 0x57, 0xda, 0x3f, + 0x4e, 0x49, 0x77, 0x00, 0x33, 0x6c, 0x05, 0xa8, 0x75, 0xa3, 0x03, 0x3f, 0x70, 0x23, 0xf9, 0xe2, + 0x84, 0x6c, 0x8b, 0x77, 0xf8, 0x9c, 0xea, 0xa3, 0x5f, 0x1c, 0x55, 0xdf, 0x3b, 0x4d, 0xc8, 0x4c, + 0xc9, 0x73, 0x47, 0xbd, 0xdd, 0xb7, 0xe6, 0x60, 0x60, 0xc9, 0x5e, 0xc7, 0x05, 0xcf, 0x5e, 0x57, + 0x0b, 0x9e, 0xbd, 0x6e, 0xfd, 0x75, 0x3f, 0x54, 0x79, 0xa4, 0x10, 0x74, 0x1d, 0x89, 0xad, 0x16, + 0x9a, 0x2f, 0xca, 0x49, 0x0d, 0x0c, 0x89, 0x48, 0x20, 0xfd, 0x27, 0x89, 0x04, 0xf2, 0x6b, 0x90, + 0x63, 0xb2, 0x3a, 0x81, 0x15, 0xe0, 0xf5, 0xe3, 0xa3, 0xea, 0xb5, 0xd8, 0x0a, 0xc0, 0x4b, 0xb3, + 0xcc, 0x01, 0x39, 0x55, 0xa4, 0xed, 0x17, 0x83, 0x2f, 0x60, 0xbf, 0xb8, 0x0d, 0x23, 0x78, 0x98, + 0x59, 0xdb, 0x16, 0xce, 0x9c, 0x38, 0x3d, 0x31, 0xb8, 0x4f, 0xc3, 0xd5, 0x23, 0xe9, 0x49, 0x34, + 0xeb, 0xf7, 0xfb, 0xe1, 0x4a, 0xbe, 0xcc, 0x45, 0xdb, 0x96, 0x01, 0x62, 0xa7, 0x95, 0x22, 0x27, + 0x19, 0xfc, 0x76, 0x9e, 0xd1, 0x47, 0xca, 0x49, 0x4d, 0xa3, 0x63, 0xba, 0x8f, 0x7c, 0xdf, 0x9c, + 0xb8, 0x21, 0x31, 0x9e, 0x3d, 0x8b, 0x40, 0xb0, 0x02, 0x64, 0x04, 0x82, 0x15, 0x30, 0xf2, 0x08, + 0xe6, 0xb6, 0x03, 0xf7, 0xa9, 0x13, 0xd1, 0x07, 0xf4, 0x39, 0x7f, 0xff, 0xb3, 0x22, 0x1e, 0xfd, + 0xf0, 0x47, 0xeb, 0xd7, 0x8f, 0x8f, 0xaa, 0xaf, 0x74, 0x38, 0x0a, 0x06, 0xfb, 0xe2, 0x2f, 0x2e, + 0x1b, 0xe9, 0x77, 0x40, 0x79, 0x8c, 0xac, 0x7f, 0x51, 0x82, 0x0b, 0xa8, 0x96, 0x0b, 0xb3, 0xab, + 0xac, 0xfc, 0x85, 0x7c, 0x25, 0xf5, 0x0e, 0x8a, 0xb9, 0x88, 0xbe, 0x92, 0xc6, 0xfb, 0x6f, 0xdb, + 0x40, 0x23, 0x6b, 0x30, 0x2e, 0x7e, 0xe3, 0xf7, 0x37, 0x80, 0x07, 0x82, 0x59, 0x6d, 0xc1, 0xc2, + 0xa9, 0xce, 0x4d, 0x45, 0x38, 0xb1, 0x05, 0x33, 0x7c, 0x26, 0x69, 0xeb, 0xb4, 0xd6, 0xcf, 0xfb, + 0xe1, 0xe2, 0x1e, 0x0d, 0xdc, 0xc7, 0xcf, 0x73, 0x3a, 0xb3, 0x05, 0x33, 0x12, 0xc4, 0xa3, 0x85, + 0x18, 0x9f, 0x18, 0x0f, 0x05, 0x29, 0x9b, 0x2a, 0xc2, 0x8d, 0xc8, 0x2f, 0x2e, 0x93, 0xf0, 0x14, + 0x5e, 0x90, 0x6f, 0xc3, 0x68, 0x22, 0x5e, 0x0f, 0x8e, 0xbf, 0xfc, 0x42, 0xe3, 0xa1, 0x5a, 0xed, + 0xb3, 0x15, 0x26, 0xf9, 0xed, 0xfc, 0xdb, 0x27, 0x61, 0xfa, 0xe8, 0x65, 0xff, 0xc4, 0x0f, 0x96, + 0x7d, 0xac, 0x8e, 0x56, 0x9a, 0xf1, 0xc1, 0xae, 0xf6, 0xd9, 0x79, 0x35, 0x2d, 0x8e, 0xc3, 0x58, + 0x0d, 0xaf, 0xe2, 0xd8, 0xc9, 0xfd, 0xbf, 0xf4, 0xc3, 0x65, 0xf9, 0x96, 0x27, 0x47, 0xcc, 0x9f, + 0xc3, 0x9c, 0x04, 0xd5, 0x3a, 0x4c, 0x61, 0xa0, 0x2d, 0x53, 0xd2, 0x3c, 0x1c, 0xab, 0x94, 0xb4, + 0x23, 0x70, 0x62, 0x61, 0xe7, 0x91, 0xbf, 0x1c, 0xeb, 0xe7, 0xc7, 0x59, 0xd1, 0x93, 0xd0, 0x0a, + 0xa9, 0xaf, 0x99, 0x86, 0x68, 0x8c, 0xf5, 0xb3, 0x95, 0xb2, 0x9e, 0x0e, 0x7e, 0x5b, 0xeb, 0xe9, + 0x6a, 0x5f, 0xd2, 0x7e, 0xba, 0x38, 0x05, 0x13, 0x9b, 0xf4, 0x59, 0x2c, 0xf7, 0xff, 0xb5, 0x94, + 0x08, 0xb0, 0xc0, 0x34, 0x0c, 0x1e, 0x69, 0xa1, 0x14, 0x07, 0xe0, 0xc1, 0x00, 0x0b, 0xba, 0x86, + 0xc1, 0x51, 0xd7, 0x60, 0x84, 0xdf, 0x4f, 0xb7, 0x4e, 0x70, 0xc2, 0x57, 0x8f, 0x72, 0xf8, 0x4b, + 0xc9, 0x16, 0x3f, 0xec, 0x0b, 0x7a, 0xeb, 0x01, 0x5c, 0x15, 0x6e, 0xdb, 0xe6, 0xe0, 0x63, 0x45, + 0xa7, 0xdc, 0xbe, 0x2c, 0x07, 0x2e, 0xdf, 0xa3, 0xc9, 0xa5, 0xc7, 0x78, 0xb4, 0xf4, 0x09, 0x9c, + 0x31, 0xe0, 0x8a, 0x23, 0x6a, 0xa5, 0x6a, 0x0e, 0x29, 0xd6, 0x49, 0x6c, 0xeb, 0x4a, 0x56, 0x15, + 0x7a, 0x63, 0x2d, 0x8a, 0x71, 0x55, 0x83, 0xf8, 0x8a, 0x2d, 0x3c, 0xc5, 0xaa, 0x77, 0x5d, 0xfb, + 0xae, 0xf9, 0x8a, 0xc7, 0x03, 0xef, 0xc9, 0x9d, 0x57, 0x95, 0x5a, 0x93, 0xc6, 0x5d, 0x80, 0x35, + 0x05, 0x13, 0xb2, 0xa8, 0x4d, 0xc3, 0xd0, 0xfa, 0x77, 0x43, 0x60, 0x09, 0xc1, 0x66, 0x5d, 0xba, + 0x4b, 0x79, 0x3c, 0x4a, 0x35, 0x56, 0x6c, 0x54, 0xe7, 0xf4, 0x70, 0x9e, 0x71, 0x29, 0x9f, 0x79, + 0xa8, 0xe7, 0x35, 0x63, 0xa8, 0x31, 0xf3, 0x52, 0xbd, 0xff, 0x2a, 0x67, 0x99, 0xe4, 0x1f, 0xdb, + 0xab, 0xc7, 0x47, 0xd5, 0xab, 0x39, 0xcb, 0xa4, 0xc1, 0x37, 0x7b, 0xc9, 0xb4, 0xcd, 0x2b, 0x91, + 0x81, 0x17, 0xb9, 0x12, 0x61, 0x5f, 0xa4, 0x7e, 0x29, 0xb2, 0x6b, 0xca, 0x52, 0x7c, 0x8f, 0xf2, + 0x42, 0x5e, 0x2f, 0x12, 0x71, 0x0e, 0x34, 0x88, 0xc1, 0xd5, 0x60, 0x43, 0x5c, 0x28, 0x6b, 0x36, + 0xcb, 0xa5, 0x03, 0xda, 0x7c, 0x22, 0x6c, 0xc5, 0xf2, 0x42, 0x37, 0xcb, 0x66, 0xce, 0x43, 0x3b, + 0xf3, 0xef, 0x9c, 0x17, 0x34, 0x9a, 0x8c, 0x54, 0x8f, 0xd3, 0x90, 0x64, 0x4b, 0x7e, 0x0a, 0xd3, + 0x6a, 0xa8, 0x13, 0x5e, 0x57, 0xe3, 0x0b, 0xaf, 0xc4, 0x51, 0x40, 0x0f, 0x1f, 0x3b, 0x37, 0x9f, + 0xde, 0xb9, 0x99, 0x81, 0xcb, 0x9f, 0xff, 0x37, 0x65, 0x81, 0xe6, 0x72, 0xa5, 0x5f, 0x74, 0x65, + 0x10, 0x92, 0x2f, 0x60, 0xa6, 0x5e, 0xdf, 0xe2, 0xef, 0x33, 0x6c, 0x79, 0x67, 0x6f, 0xaf, 0x0b, + 0x1f, 0x2c, 0x1c, 0xee, 0x30, 0xf4, 0x1b, 0xe2, 0x5d, 0x87, 0x7e, 0xd3, 0xaf, 0x07, 0x40, 0xc8, + 0x62, 0xa1, 0xdf, 0x94, 0xff, 0xdf, 0xea, 0xf9, 0x01, 0x53, 0x45, 0xdc, 0x36, 0x15, 0xef, 0x88, + 0xe4, 0xc4, 0xce, 0xb9, 0xe5, 0x2b, 0x7d, 0xc7, 0xb7, 0x7c, 0xff, 0xa8, 0x5f, 0x3e, 0xba, 0x48, + 0x5f, 0xb4, 0x9e, 0xfa, 0xb2, 0x2f, 0xb3, 0x07, 0x27, 0xda, 0xa7, 0x33, 0x1b, 0x47, 0x16, 0xe5, + 0x55, 0xa9, 0x0a, 0x11, 0x36, 0xa5, 0xae, 0x1d, 0xe2, 0x02, 0xe3, 0xf6, 0x14, 0xb5, 0x22, 0x8d, + 0x2a, 0x79, 0x0f, 0x37, 0xf0, 0xed, 0xef, 0xe1, 0xfe, 0xc9, 0x18, 0x9c, 0xdd, 0x76, 0xf6, 0x5d, + 0x8f, 0xed, 0x07, 0x36, 0x0d, 0xfd, 0x6e, 0xd0, 0xa4, 0xa4, 0x06, 0x53, 0xa6, 0x47, 0x6d, 0x0f, + 0x7f, 0x61, 0xb6, 0xe5, 0x99, 0x30, 0xb2, 0x00, 0x63, 0xea, 0x15, 0xaf, 0xd8, 0xa7, 0x32, 0x5e, + 0xf7, 0xae, 0xf6, 0xd9, 0x31, 0x1a, 0x79, 0xdf, 0xb8, 0x3a, 0x3a, 0xa3, 0x1e, 0xa4, 0x23, 0xee, + 0x02, 0x77, 0x79, 0xf4, 0xfc, 0x96, 0xb9, 0xd7, 0xf2, 0xfb, 0x91, 0x1f, 0xa7, 0x6e, 0x93, 0x86, + 0x8c, 0x16, 0xa7, 0x4c, 0x6a, 0xa8, 0x66, 0xe4, 0x86, 0xed, 0xce, 0xb8, 0x67, 0xfa, 0x12, 0xc6, + 0x1f, 0x74, 0x1f, 0x51, 0x79, 0x6f, 0x36, 0x2c, 0xb6, 0xde, 0xa4, 0x9f, 0xb8, 0x28, 0xdf, 0x7b, + 0x8b, 0x8f, 0xc1, 0x93, 0xee, 0x23, 0x9a, 0x8e, 0x07, 0xcf, 0xd6, 0x3c, 0x8d, 0x19, 0x39, 0x80, + 0x72, 0xd2, 0xa5, 0x5b, 0x04, 0xd5, 0x2b, 0x70, 0x44, 0xc7, 0xe0, 0x28, 0x5a, 0xd4, 0x79, 0xee, + 0x68, 0x6a, 0x54, 0x92, 0xe2, 0x4a, 0x7e, 0x1d, 0x66, 0x33, 0x0d, 0x9a, 0xea, 0x51, 0x5a, 0xb1, + 0xad, 0x14, 0x17, 0x90, 0x84, 0xd4, 0xe4, 0x0b, 0x38, 0xa3, 0xe6, 0xec, 0x5a, 0x48, 0x0b, 0xce, + 0x24, 0x5c, 0x95, 0x45, 0x6a, 0x8d, 0x7c, 0xe7, 0x67, 0xdc, 0xf3, 0x64, 0x74, 0xda, 0xcc, 0xba, + 0x92, 0x2c, 0xc9, 0x3a, 0x8c, 0x29, 0x4b, 0x82, 0x88, 0x67, 0x96, 0x65, 0x35, 0xa9, 0x1c, 0x1f, + 0x55, 0x67, 0x62, 0xab, 0x89, 0xc1, 0x33, 0x66, 0x40, 0x7e, 0x03, 0xae, 0xaa, 0x29, 0xba, 0x15, + 0x64, 0xdb, 0x97, 0x44, 0x54, 0xfb, 0x1b, 0xc9, 0x19, 0x9e, 0x87, 0xbf, 0x77, 0x67, 0xb1, 0xbf, + 0x52, 0x5a, 0xed, 0xb3, 0x7b, 0xb3, 0x26, 0xbf, 0x55, 0x82, 0x73, 0x39, 0xb5, 0x4e, 0x60, 0xad, + 0x3d, 0x8d, 0x7e, 0x78, 0x6e, 0xc0, 0x87, 0x58, 0x6e, 0x2b, 0x7e, 0xb0, 0x28, 0xad, 0x7f, 0x46, + 0xbf, 0x73, 0x6a, 0x22, 0x6f, 0xc2, 0x30, 0x1e, 0xbf, 0xc3, 0xca, 0x24, 0x2a, 0xa8, 0x18, 0x13, + 0x08, 0x0f, 0xe9, 0xfa, 0x96, 0x24, 0x70, 0xc8, 0x2a, 0x53, 0xf4, 0x70, 0x4b, 0x94, 0x8a, 0x99, + 0x88, 0x20, 0x26, 0x0e, 0x0b, 0xbc, 0x48, 0xc6, 0x0d, 0x31, 0xd2, 0x17, 0x98, 0x64, 0x8b, 0x00, + 0xa3, 0x81, 0x58, 0x95, 0xee, 0x0f, 0x8e, 0x0e, 0x96, 0x87, 0xf8, 0x87, 0x23, 0x7d, 0xe0, 0x7f, + 0x67, 0x94, 0x3f, 0x98, 0xdd, 0xf5, 0xdc, 0xc7, 0x6e, 0xbc, 0x80, 0xe9, 0x86, 0xbb, 0x38, 0x8f, + 0x90, 0x50, 0xab, 0x73, 0x32, 0x06, 0x29, 0x1b, 0x5f, 0x7f, 0x4f, 0x1b, 0xdf, 0x5b, 0xda, 0x6d, + 0x98, 0x16, 0x29, 0x94, 0xab, 0x4f, 0xa6, 0x4d, 0x2d, 0xbe, 0x26, 0xfb, 0x1a, 0x86, 0x31, 0xb8, + 0x27, 0xbf, 0x6a, 0x1c, 0x5f, 0xb8, 0x29, 0x96, 0xed, 0x82, 0xe6, 0xf3, 0x68, 0xa0, 0xe2, 0x11, + 0x3c, 0x97, 0x38, 0x02, 0x0c, 0x89, 0x23, 0x84, 0xec, 0xc0, 0xf4, 0x36, 0xdb, 0xcd, 0xb9, 0x27, + 0x76, 0x27, 0x10, 0x76, 0x0f, 0x6e, 0x51, 0x41, 0x6d, 0xa2, 0x23, 0x8b, 0x1b, 0x54, 0x95, 0xeb, + 0x1b, 0x6a, 0x06, 0x39, 0x59, 0x81, 0xa9, 0x3a, 0x75, 0x82, 0xe6, 0xc1, 0x03, 0xfa, 0x9c, 0x69, + 0x52, 0x46, 0xea, 0x8c, 0x10, 0x4b, 0x58, 0x7f, 0xb1, 0x48, 0x77, 0x1f, 0x31, 0x89, 0xc8, 0xa7, + 0x30, 0x5c, 0xf7, 0x83, 0x68, 0xf1, 0xb9, 0x58, 0xd4, 0xe4, 0x65, 0x14, 0x07, 0x2e, 0x9e, 0x97, + 0xe9, 0x43, 0x42, 0x3f, 0x88, 0x1a, 0x8f, 0x8c, 0x20, 0x53, 0x1c, 0x85, 0x3c, 0x87, 0x19, 0x73, + 0x41, 0x11, 0x0e, 0xc2, 0xa3, 0x42, 0x83, 0xcb, 0x5a, 0xb5, 0x38, 0xca, 0xe2, 0x75, 0xc1, 0xfd, + 0x4a, 0x72, 0xd9, 0x7a, 0x8c, 0xe5, 0xba, 0xda, 0x93, 0x45, 0x4f, 0x36, 0x30, 0xef, 0x0a, 0xef, + 0x51, 0x2d, 0xe4, 0x8e, 0xc5, 0x63, 0x71, 0x18, 0xb3, 0x2e, 0x2e, 0x4a, 0x28, 0x09, 0x27, 0x4c, + 0x26, 0xeb, 0xb1, 0x53, 0xa4, 0x64, 0x1b, 0xce, 0xee, 0x86, 0x74, 0x3b, 0xa0, 0x4f, 0x5d, 0xfa, + 0x4c, 0xf2, 0x83, 0x38, 0xe6, 0x13, 0xe3, 0xd7, 0xe1, 0xa5, 0x59, 0x0c, 0xd3, 0xc4, 0xe4, 0x7d, + 0x80, 0x6d, 0xd7, 0xf3, 0x68, 0x0b, 0x6f, 0x34, 0xc7, 0x91, 0x15, 0x5a, 0x6b, 0x3b, 0x08, 0x6d, + 0xf8, 0x5e, 0x5b, 0x17, 0xa9, 0x86, 0x4c, 0x16, 0x61, 0x72, 0xcd, 0x6b, 0xb6, 0xbb, 0xc2, 0xf3, + 0x20, 0xc4, 0x05, 0x45, 0xc4, 0xa2, 0x73, 0x79, 0x41, 0x23, 0xf5, 0x91, 0x9b, 0x24, 0xe4, 0x01, + 0x10, 0x01, 0x10, 0xb3, 0xd6, 0x79, 0xd4, 0xa6, 0xe2, 0x73, 0x47, 0x2b, 0x8c, 0x64, 0x84, 0xd3, + 0xdd, 0x08, 0xf1, 0x96, 0x22, 0x9b, 0x7f, 0x1f, 0xc6, 0xb5, 0x39, 0x9f, 0x11, 0xd5, 0x61, 0x46, + 0x8f, 0xea, 0x30, 0xa6, 0x47, 0x6f, 0xf8, 0xff, 0x4b, 0x70, 0x31, 0xfb, 0x5b, 0x12, 0x0a, 0xd8, + 0x16, 0x8c, 0x29, 0xa0, 0x7a, 0xc7, 0x23, 0x4f, 0x15, 0x09, 0x0d, 0x88, 0x7f, 0xd0, 0x72, 0xe5, + 0xd1, 0x7b, 0x1f, 0xf3, 0x78, 0x01, 0x53, 0xff, 0xff, 0x3e, 0x0a, 0x33, 0xe8, 0xaf, 0x9e, 0x5c, + 0xa7, 0x3e, 0xc1, 0xe8, 0x2c, 0x08, 0xd3, 0x2c, 0xd7, 0xc2, 0x88, 0xc5, 0xe1, 0xc9, 0x50, 0x62, + 0x06, 0x01, 0x79, 0x47, 0x77, 0xb7, 0xe8, 0xd7, 0xf2, 0xbc, 0x48, 0xa0, 0xde, 0x85, 0xd8, 0x0f, + 0xe3, 0x0d, 0xe3, 0xb6, 0xff, 0xc4, 0x8b, 0xde, 0xe0, 0x49, 0x17, 0xbd, 0x5d, 0xb5, 0xe8, 0xf1, + 0xa8, 0x1f, 0xaf, 0x6b, 0x8b, 0xde, 0xcb, 0x5f, 0xed, 0x86, 0x5f, 0xf6, 0x6a, 0x37, 0xf2, 0xed, + 0x56, 0xbb, 0xd1, 0x17, 0x5c, 0xed, 0xee, 0xc2, 0xd4, 0x26, 0xa5, 0x2d, 0xed, 0x0e, 0x66, 0x2c, + 0xde, 0x3d, 0x3d, 0x8a, 0xd6, 0xb5, 0xac, 0x8b, 0x98, 0x04, 0x55, 0xee, 0xaa, 0x09, 0x7f, 0x3b, + 0xab, 0xe6, 0xf8, 0x4b, 0x5e, 0x35, 0x27, 0xbe, 0xcd, 0xaa, 0x99, 0x5a, 0xfa, 0x26, 0x4f, 0xbd, + 0xf4, 0x7d, 0x9b, 0xd5, 0xea, 0x63, 0xf4, 0x56, 0xac, 0xd7, 0x57, 0x85, 0x63, 0x8a, 0xe6, 0x09, + 0xb2, 0xea, 0x87, 0xd2, 0x99, 0x1b, 0xff, 0x66, 0xb0, 0x6d, 0x3f, 0x90, 0xb7, 0xe9, 0xf8, 0xb7, + 0xb5, 0x88, 0x3e, 0x8a, 0x3a, 0xbd, 0x7a, 0xc7, 0x30, 0x22, 0x1e, 0x41, 0x8a, 0x35, 0x2e, 0x79, + 0x8c, 0xb2, 0x65, 0xb9, 0xf5, 0x17, 0x25, 0x7e, 0xdf, 0xf9, 0x3f, 0xe2, 0x52, 0xf9, 0x6d, 0xee, + 0x20, 0x7f, 0x3b, 0x0e, 0x8e, 0x20, 0x02, 0x39, 0x04, 0x4e, 0xf3, 0x49, 0x7c, 0x09, 0xfc, 0x23, + 0xf6, 0x9d, 0xeb, 0x05, 0x18, 0xaa, 0x36, 0x3e, 0x2b, 0x9a, 0x85, 0x7b, 0x77, 0xe4, 0x02, 0x20, + 0x62, 0x44, 0x70, 0xb0, 0xb9, 0x00, 0xe8, 0x04, 0xe8, 0x86, 0x77, 0xc6, 0xb2, 0xf9, 0xdb, 0xfe, + 0xcc, 0x16, 0xbc, 0x9b, 0x7e, 0x9d, 0x8e, 0x87, 0x91, 0xf8, 0x75, 0xba, 0x2e, 0xc6, 0xf8, 0x9d, + 0xfa, 0x2e, 0x5c, 0xb0, 0xe9, 0xa1, 0xff, 0x94, 0xbe, 0x5c, 0xb6, 0x5f, 0xc1, 0x79, 0x93, 0x21, + 0x7f, 0xc7, 0xc4, 0xe3, 0xe2, 0x7f, 0x9c, 0x1d, 0x4d, 0x5f, 0x10, 0xf0, 0x68, 0xfa, 0x3c, 0x28, + 0x37, 0xfb, 0x53, 0xdf, 0x37, 0xb0, 0xcc, 0xf2, 0xe1, 0xa2, 0xc9, 0xbc, 0xd6, 0x6a, 0x61, 0x56, + 0xcd, 0xa6, 0xdb, 0x71, 0xbc, 0x88, 0x6c, 0xc1, 0xb8, 0xf6, 0x33, 0x61, 0x2a, 0xd0, 0x4a, 0x84, + 0x4e, 0x13, 0x03, 0x8c, 0xa0, 0xa6, 0x31, 0xd8, 0xa2, 0x50, 0x4d, 0x8a, 0x87, 0x89, 0x4c, 0xaf, + 0x73, 0x11, 0x26, 0xb5, 0x9f, 0xca, 0x1a, 0x8a, 0x1f, 0xbf, 0x56, 0x83, 0x29, 0x30, 0x93, 0xc4, + 0x6a, 0xc2, 0x7c, 0x96, 0xd0, 0x78, 0xf4, 0x6b, 0xb2, 0x12, 0x47, 0xce, 0xea, 0xed, 0xc8, 0x77, + 0x26, 0x2f, 0x6a, 0x96, 0xf5, 0x7f, 0x0d, 0xc2, 0x05, 0x31, 0x18, 0x2f, 0x73, 0xc4, 0xc9, 0x8f, + 0x61, 0x5c, 0x1b, 0x63, 0x21, 0xf4, 0x2b, 0xf2, 0x15, 0x52, 0xde, 0x5c, 0xe0, 0x26, 0x8d, 0x2e, + 0x02, 0x1a, 0x89, 0xe1, 0x5e, 0xed, 0xb3, 0x75, 0x96, 0xa4, 0x0d, 0x53, 0xe6, 0x40, 0x0b, 0xab, + 0xce, 0xb5, 0xcc, 0x4a, 0x4c, 0x54, 0x19, 0x1a, 0xbb, 0xd5, 0xc8, 0x1c, 0xee, 0xd5, 0x3e, 0x3b, + 0xc1, 0x9b, 0x7c, 0x03, 0x67, 0x53, 0xa3, 0x2c, 0x8c, 0x75, 0xaf, 0x65, 0x56, 0x98, 0xc2, 0xe6, + 0x96, 0xde, 0x00, 0xc1, 0xb9, 0xd5, 0xa6, 0x2b, 0x21, 0x2d, 0x98, 0xd0, 0x07, 0x5e, 0x98, 0x9d, + 0xae, 0x16, 0x88, 0x92, 0x23, 0x72, 0xe5, 0x4e, 0xc8, 0x12, 0xc7, 0xfe, 0xb9, 0x69, 0xbd, 0x36, + 0x90, 0x47, 0x61, 0x98, 0xff, 0x66, 0x4b, 0xc0, 0x76, 0x40, 0x43, 0xea, 0x35, 0xa9, 0xe1, 0xfb, + 0xfd, 0x2d, 0x97, 0x80, 0x7f, 0x5e, 0x82, 0x4a, 0x16, 0xdf, 0x3a, 0xf5, 0x5a, 0x64, 0x1b, 0xca, + 0xc9, 0x8a, 0xc4, 0xac, 0xb6, 0x54, 0xf4, 0xe1, 0xdc, 0x26, 0xad, 0xf6, 0xd9, 0x29, 0x6a, 0xb2, + 0x09, 0x67, 0x35, 0x98, 0x30, 0xae, 0xf6, 0x9f, 0xc4, 0xb8, 0xca, 0x46, 0x21, 0x45, 0xaa, 0xdb, + 0xa6, 0x57, 0x71, 0x67, 0x5c, 0xf6, 0x0f, 0x1d, 0xd7, 0x63, 0x8a, 0xae, 0x16, 0x3c, 0x0b, 0x62, + 0xa8, 0x90, 0x0d, 0xb7, 0xb6, 0x22, 0x54, 0xbe, 0x55, 0x51, 0x28, 0xd6, 0x47, 0xb8, 0x82, 0x0b, + 0x1b, 0x1d, 0x7f, 0xf0, 0xab, 0x98, 0x5d, 0x81, 0xa1, 0x9d, 0xf5, 0xfa, 0x52, 0x4d, 0x3c, 0x1f, + 0xe6, 0x41, 0x27, 0xda, 0x61, 0xa3, 0xe9, 0xd8, 0xbc, 0xc0, 0xfa, 0x10, 0xc8, 0x3d, 0x1a, 0x89, + 0xf0, 0xf7, 0x8a, 0xee, 0x55, 0x18, 0x11, 0x20, 0x41, 0x89, 0x5e, 0x77, 0x22, 0x98, 0xbe, 0x2d, + 0xcb, 0xac, 0x6d, 0x79, 0x4e, 0x68, 0x53, 0x27, 0xd4, 0x36, 0xe6, 0xf7, 0x60, 0x34, 0x10, 0x30, + 0xb1, 0x2f, 0x4f, 0xa9, 0xec, 0x26, 0x08, 0xe6, 0xf6, 0x6c, 0x89, 0x63, 0xab, 0xbf, 0xac, 0x75, + 0x0c, 0x10, 0xb3, 0xb5, 0xb6, 0xbc, 0xc4, 0xa4, 0x2a, 0x84, 0x25, 0x87, 0xe3, 0x16, 0xba, 0xa7, + 0x47, 0x54, 0x7f, 0x3c, 0x8c, 0xa2, 0xc1, 0x8f, 0x5c, 0x84, 0x45, 0xd2, 0x50, 0xac, 0xb7, 0x54, + 0xb8, 0x99, 0x0c, 0x6e, 0x79, 0x59, 0x3a, 0x36, 0x31, 0x90, 0xce, 0x3d, 0xf4, 0xc4, 0x79, 0x19, + 0x8d, 0x70, 0x60, 0x9e, 0x6f, 0xf3, 0xac, 0x57, 0x22, 0xd1, 0xa0, 0xaf, 0x96, 0xc6, 0x25, 0x18, + 0x53, 0x30, 0x75, 0xad, 0xc6, 0x65, 0x65, 0xe0, 0xef, 0xbd, 0xc5, 0xdf, 0x59, 0x37, 0x15, 0x83, + 0x98, 0x8e, 0x55, 0xc1, 0xbf, 0xbb, 0xef, 0xb8, 0x8a, 0x90, 0x06, 0xd1, 0x77, 0x5a, 0x45, 0x1c, + 0x69, 0xe9, 0x34, 0x55, 0x18, 0xf8, 0x7b, 0x0b, 0x27, 0x11, 0xd4, 0x77, 0x5c, 0x05, 0x13, 0xd4, + 0x77, 0x57, 0x05, 0x95, 0x21, 0xa9, 0xf8, 0x24, 0x4d, 0x55, 0xb2, 0x92, 0xae, 0x44, 0x1a, 0xae, + 0x13, 0x14, 0x85, 0xe3, 0x41, 0xe1, 0x22, 0x17, 0xd6, 0x2f, 0xa1, 0x1a, 0x26, 0xb0, 0xef, 0xb6, + 0x9a, 0xff, 0xb7, 0xc4, 0x03, 0x64, 0xd5, 0xb7, 0xb4, 0x14, 0x9f, 0xde, 0x63, 0x5f, 0xbb, 0xf5, + 0xd7, 0xbe, 0xf6, 0x07, 0xae, 0xd7, 0xd2, 0x6f, 0xfd, 0x9d, 0x6e, 0x74, 0xa0, 0x02, 0x48, 0x3f, + 0x71, 0xbd, 0x96, 0x9d, 0xc4, 0x26, 0xef, 0xc3, 0xa4, 0x06, 0x52, 0xda, 0x1a, 0xcf, 0xc2, 0xa1, + 0x93, 0xbb, 0x2d, 0xdb, 0xc4, 0xb4, 0xfe, 0xa6, 0x04, 0xd3, 0x19, 0xc9, 0xa7, 0xd1, 0x98, 0x81, + 0xa7, 0x20, 0xb5, 0x50, 0x89, 0xbc, 0x59, 0x18, 0xab, 0xc3, 0xd8, 0x24, 0x15, 0x22, 0xe6, 0x1f, + 0xd0, 0x12, 0x65, 0xf7, 0x6b, 0x29, 0xdd, 0xb2, 0x93, 0x63, 0xeb, 0xe8, 0x24, 0x04, 0x88, 0x5b, + 0x22, 0xcc, 0xc6, 0x75, 0xa6, 0xd2, 0x6a, 0x59, 0xb6, 0x5f, 0x4a, 0x9a, 0x6f, 0xad, 0x1a, 0xeb, + 0xb7, 0xfb, 0xe1, 0x5c, 0x46, 0xff, 0xeb, 0x34, 0xfa, 0xdb, 0x10, 0x41, 0x22, 0xd7, 0xf9, 0xc0, + 0x2f, 0x29, 0xd7, 0xb9, 0xf5, 0x6f, 0xfa, 0xe1, 0xdc, 0x6e, 0x27, 0xc4, 0xc7, 0x5b, 0x6b, 0xde, + 0x53, 0xea, 0x45, 0x7e, 0xf0, 0x1c, 0x1f, 0x9c, 0x90, 0x77, 0x60, 0x68, 0x95, 0xb6, 0xdb, 0xbe, + 0x98, 0xff, 0x97, 0xa4, 0xe3, 0x45, 0x12, 0x1b, 0x91, 0x56, 0xfb, 0x6c, 0x8e, 0x4d, 0xde, 0x87, + 0xb1, 0x55, 0xea, 0x04, 0xd1, 0x23, 0xea, 0xc8, 0x23, 0x8b, 0xcc, 0x0d, 0xa2, 0x91, 0x08, 0x84, + 0xd5, 0x3e, 0x3b, 0xc6, 0x26, 0x0b, 0xec, 0x34, 0xef, 0xed, 0xab, 0x87, 0xea, 0x39, 0x15, 0x32, + 0x9c, 0xd5, 0x3e, 0x1b, 0x71, 0xc9, 0x06, 0x4c, 0xd6, 0xf6, 0xa9, 0x17, 0x6d, 0xd0, 0xc8, 0x69, + 0x39, 0x91, 0x23, 0x54, 0xdb, 0x57, 0xf3, 0x88, 0x0d, 0xe4, 0xd5, 0x3e, 0xdb, 0xa4, 0x26, 0x1f, + 0xc2, 0xc8, 0x3d, 0xdf, 0x6f, 0x3d, 0x7a, 0x2e, 0x23, 0x28, 0x54, 0xf3, 0x18, 0x09, 0xb4, 0xd5, + 0x3e, 0x5b, 0x52, 0x2c, 0x0e, 0xc1, 0xc0, 0x46, 0xb8, 0x6f, 0x1d, 0x95, 0xa0, 0xb2, 0xec, 0x3f, + 0xf3, 0x32, 0xa5, 0xfa, 0x03, 0x53, 0xaa, 0x92, 0x7d, 0x06, 0x7e, 0x42, 0xae, 0x6f, 0xc3, 0xe0, + 0xb6, 0xeb, 0xed, 0x27, 0x54, 0xc1, 0x0c, 0x3a, 0x86, 0x85, 0xe2, 0x71, 0xbd, 0x7d, 0xb2, 0x2e, + 0x75, 0x70, 0x61, 0x6b, 0x1c, 0x30, 0x14, 0xff, 0x0c, 0x6a, 0x1d, 0x3b, 0xd6, 0xb5, 0xf9, 0x6f, + 0xd9, 0xc1, 0x37, 0x60, 0x2e, 0xa7, 0x5e, 0xf1, 0xf2, 0x9c, 0xf5, 0x6d, 0x10, 0x15, 0x9b, 0xd7, + 0x61, 0x36, 0x73, 0xfc, 0x52, 0x88, 0x7f, 0x2f, 0x6b, 0x22, 0xf2, 0x9e, 0x57, 0x60, 0x44, 0x26, + 0xcd, 0xe2, 0xb6, 0x1f, 0xf9, 0x13, 0xdf, 0x5e, 0xc9, 0x0f, 0x55, 0x86, 0x4a, 0x91, 0xdf, 0xe3, + 0x9e, 0x16, 0x9a, 0x8a, 0x7f, 0x4e, 0x1f, 0x7c, 0x8b, 0x8f, 0x46, 0xf1, 0x62, 0x75, 0xae, 0xfa, + 0x61, 0xe4, 0x29, 0xa7, 0x5e, 0x5b, 0xfd, 0x26, 0x37, 0xa0, 0x2c, 0x13, 0x64, 0x88, 0x4c, 0x3c, + 0x22, 0x33, 0xbb, 0x9d, 0x82, 0x93, 0xf7, 0x60, 0x2e, 0x09, 0x93, 0xbd, 0xe4, 0x8f, 0xe7, 0xf2, + 0x8a, 0xad, 0x3f, 0xef, 0xc7, 0xe8, 0xe1, 0x05, 0xf3, 0x9a, 0x49, 0x77, 0xab, 0x2e, 0xa4, 0xd5, + 0xbf, 0x55, 0x27, 0x17, 0x61, 0x6c, 0xab, 0x6e, 0x64, 0x1e, 0xb3, 0x63, 0x00, 0x6b, 0x36, 0xeb, + 0x42, 0x2d, 0x68, 0x1e, 0xb8, 0x11, 0x6d, 0x46, 0xdd, 0x40, 0xac, 0xc2, 0x76, 0x0a, 0x4e, 0x2c, + 0x98, 0xb8, 0xd7, 0x76, 0x1f, 0x35, 0x25, 0x33, 0x2e, 0x02, 0x03, 0x46, 0x5e, 0x83, 0xa9, 0x35, + 0x2f, 0x8c, 0x9c, 0x76, 0x7b, 0x83, 0x46, 0x07, 0x7e, 0x4b, 0x24, 0x47, 0xb5, 0x13, 0x50, 0x56, + 0xef, 0x92, 0xef, 0x45, 0x8e, 0xeb, 0xd1, 0xc0, 0xee, 0x7a, 0x91, 0x7b, 0x48, 0x45, 0xdf, 0x53, + 0x70, 0xf2, 0x36, 0xcc, 0x2a, 0xd8, 0x56, 0xd0, 0x3c, 0xa0, 0x61, 0x14, 0x60, 0x3e, 0x42, 0x74, + 0xdf, 0xb1, 0xb3, 0x0b, 0xb1, 0x86, 0xb6, 0xdf, 0x6d, 0xad, 0x78, 0x4f, 0xdd, 0xc0, 0xf7, 0x30, + 0xdb, 0xc7, 0xa8, 0xa8, 0x21, 0x01, 0xb7, 0xfe, 0x68, 0x34, 0xf3, 0xb3, 0xfd, 0x36, 0x73, 0xf0, + 0x0b, 0x98, 0x58, 0x72, 0x3a, 0xce, 0x23, 0xb7, 0xed, 0x46, 0xae, 0x4a, 0xdc, 0xf6, 0x4e, 0x8f, + 0x6f, 0x5e, 0xa6, 0x4c, 0xa1, 0x2d, 0x9d, 0xd8, 0x36, 0x58, 0xcd, 0xff, 0xf5, 0x30, 0xcc, 0x66, + 0xe2, 0x91, 0xeb, 0x22, 0xc3, 0x9b, 0x5a, 0x57, 0x45, 0xfa, 0x30, 0x3b, 0x09, 0x66, 0x63, 0x89, + 0xa0, 0xa5, 0x36, 0x75, 0xbc, 0xae, 0x48, 0x1e, 0x66, 0x1b, 0x30, 0x36, 0x96, 0x4c, 0x6f, 0xd0, + 0x98, 0xa1, 0x4f, 0xb6, 0x9d, 0x80, 0x92, 0x2b, 0x30, 0xce, 0x20, 0x92, 0xd5, 0x20, 0x7f, 0x3d, + 0xa8, 0x81, 0x18, 0xa7, 0x4d, 0xbf, 0x45, 0x35, 0x4e, 0x43, 0x9c, 0x93, 0x09, 0x65, 0x9c, 0x18, + 0x44, 0x72, 0x1a, 0xe6, 0x9c, 0x34, 0x10, 0x79, 0x05, 0x26, 0x6b, 0x9d, 0x8e, 0xc6, 0x08, 0xb3, + 0x86, 0xd9, 0x26, 0x90, 0x5c, 0x06, 0xa8, 0x75, 0x3a, 0x92, 0x0d, 0x66, 0x04, 0xb3, 0x35, 0x08, + 0xb9, 0x19, 0x07, 0x80, 0xd3, 0x58, 0xe1, 0x75, 0x82, 0x9d, 0x51, 0xc2, 0xe4, 0xaa, 0xa2, 0x65, + 0x09, 0xa6, 0xc0, 0xe5, 0x9a, 0x00, 0x93, 0x8f, 0xe0, 0x7c, 0xc2, 0xef, 0x42, 0xab, 0x00, 0x4d, + 0xfd, 0x76, 0x3e, 0x02, 0x79, 0x17, 0xce, 0x25, 0x0a, 0x65, 0x75, 0x68, 0xd5, 0xb7, 0x73, 0x4a, + 0xc9, 0x07, 0x50, 0x49, 0xbc, 0x08, 0x8f, 0x2b, 0x45, 0x0b, 0xbe, 0x9d, 0x5b, 0xce, 0xbe, 0xae, + 0xc4, 0xd3, 0x32, 0x51, 0x25, 0x5e, 0x56, 0xda, 0xd9, 0x85, 0x64, 0x15, 0xaa, 0x99, 0xbe, 0x2c, + 0x5a, 0xc5, 0x98, 0xe9, 0xcc, 0xee, 0x85, 0x46, 0x16, 0xe1, 0x62, 0x26, 0x8a, 0x6c, 0x06, 0xe6, + 0x3f, 0xb3, 0x0b, 0x71, 0xc8, 0x02, 0xcc, 0xc4, 0x3e, 0x3d, 0x5a, 0x13, 0x30, 0xf5, 0x99, 0x9d, + 0x59, 0x46, 0xde, 0x34, 0xdf, 0xfd, 0xf3, 0xca, 0x30, 0xf3, 0x99, 0x9d, 0x2e, 0xb0, 0x8e, 0x4b, + 0x70, 0x31, 0x73, 0xa3, 0x94, 0xfa, 0xfc, 0x7c, 0x52, 0x71, 0xd4, 0xd6, 0x82, 0x1b, 0x30, 0x88, + 0x0a, 0x3e, 0xb7, 0x15, 0x4b, 0x37, 0x56, 0xa4, 0xe7, 0xac, 0x58, 0xa9, 0x8d, 0x38, 0xe4, 0x9e, + 0xba, 0x1b, 0x1c, 0x40, 0x4b, 0xc6, 0xad, 0xa4, 0x02, 0x95, 0x51, 0xb9, 0x7e, 0x47, 0x28, 0x6f, + 0x03, 0xbf, 0xcd, 0x35, 0xcc, 0x9f, 0x97, 0xa0, 0xda, 0x43, 0x3f, 0x50, 0x7d, 0x2a, 0x9d, 0xa0, + 0x4f, 0xf7, 0x55, 0x9f, 0xf8, 0xb3, 0xdb, 0x85, 0x93, 0xe9, 0x20, 0x2f, 0xbb, 0x5b, 0x7f, 0x53, + 0x02, 0x92, 0xd6, 0x43, 0xc9, 0xf7, 0x61, 0xac, 0x5e, 0x5f, 0x35, 0x3c, 0xfa, 0x52, 0xb7, 0x43, + 0x31, 0x06, 0xb9, 0x7d, 0x22, 0x17, 0x3e, 0xdd, 0x81, 0xef, 0x93, 0x94, 0xdf, 0xe0, 0x40, 0xa1, + 0xdf, 0x60, 0xca, 0x6b, 0x70, 0x25, 0xc3, 0x11, 0x6e, 0xb0, 0x87, 0x23, 0x5c, 0xda, 0xcb, 0xcd, + 0x5a, 0x86, 0x4a, 0x9e, 0x2a, 0x8b, 0x2b, 0x1c, 0x0f, 0x9b, 0xa6, 0xdd, 0x70, 0xf1, 0x15, 0xce, + 0x04, 0x5b, 0xef, 0xc2, 0x39, 0x45, 0xcd, 0xf3, 0xb1, 0x68, 0xc1, 0x0d, 0xc4, 0xf9, 0x57, 0x05, + 0x51, 0x88, 0x01, 0xd6, 0x9f, 0x0d, 0xa6, 0x08, 0xeb, 0xdd, 0xc3, 0x43, 0x27, 0x78, 0x4e, 0x6a, + 0x26, 0xe1, 0x40, 0xcf, 0x23, 0xc7, 0xe2, 0xe0, 0xcf, 0x8e, 0xaa, 0x7d, 0x1a, 0x77, 0xb6, 0x2f, + 0xa0, 0x86, 0xe1, 0x35, 0x29, 0xbf, 0x1b, 0xeb, 0xe7, 0x01, 0x9c, 0x0c, 0x20, 0xd9, 0x83, 0x49, + 0xb1, 0x77, 0xe3, 0x6f, 0xf9, 0x8d, 0xdd, 0x4e, 0x7e, 0x63, 0x46, 0xf3, 0x6e, 0x1a, 0x24, 0x7c, + 0x36, 0x9a, 0x6c, 0xc8, 0x17, 0x30, 0x25, 0x35, 0x35, 0xc1, 0x98, 0x7b, 0x33, 0xdd, 0x29, 0x66, + 0x6c, 0xd2, 0x70, 0xce, 0x09, 0x46, 0xac, 0xc9, 0x72, 0xb1, 0xe3, 0x9c, 0x87, 0x4e, 0xd2, 0x64, + 0x83, 0x44, 0x34, 0xd9, 0x80, 0xcd, 0x7f, 0x0a, 0x24, 0xdd, 0xaf, 0x5e, 0x9f, 0xd3, 0xa4, 0xf6, + 0x39, 0xcd, 0xd7, 0x60, 0x3a, 0xa3, 0x03, 0xa7, 0x62, 0xf1, 0x29, 0x90, 0x74, 0x4b, 0x4f, 0xc3, + 0xc1, 0xba, 0x0e, 0xaf, 0x29, 0x11, 0xa8, 0xd9, 0x60, 0xf0, 0x94, 0x16, 0xf0, 0xdf, 0xec, 0x87, + 0x6a, 0x0f, 0x54, 0xf2, 0x87, 0xa5, 0xa4, 0xb4, 0xf9, 0x6c, 0x7c, 0x3f, 0x29, 0xed, 0x6c, 0xfa, + 0x0c, 0xb1, 0x2f, 0x7e, 0xf0, 0x5b, 0x7f, 0xf9, 0xc2, 0x27, 0x8f, 0xf4, 0x90, 0x9d, 0x5e, 0x5a, + 0x83, 0xba, 0xb4, 0x6c, 0x98, 0x31, 0xce, 0x6c, 0x27, 0xd9, 0xbc, 0x2e, 0x03, 0x88, 0xec, 0xad, + 0xeb, 0xfe, 0xbe, 0xd0, 0x13, 0x35, 0x88, 0x75, 0x17, 0x66, 0x13, 0x3c, 0x85, 0x55, 0xfe, 0xfb, + 0xa0, 0x1e, 0xb1, 0x23, 0xd3, 0x81, 0xc5, 0xb3, 0xbf, 0x38, 0xaa, 0x4e, 0x32, 0x95, 0xfe, 0x66, + 0x9c, 0x1a, 0x40, 0xfe, 0x65, 0x6d, 0xe8, 0xf7, 0x0a, 0xb5, 0xb6, 0x1e, 0xdc, 0x87, 0xdc, 0x81, + 0x61, 0x0e, 0x49, 0x04, 0xe0, 0xd6, 0xb1, 0xc5, 0x9a, 0x20, 0x10, 0xad, 0x59, 0x7c, 0x72, 0x8b, + 0x3f, 0x6a, 0x71, 0x88, 0x08, 0x6b, 0x97, 0x27, 0xa4, 0x89, 0xc1, 0x2a, 0xc8, 0xf7, 0x60, 0x2d, + 0x0e, 0x65, 0x21, 0x9d, 0x40, 0x24, 0x9e, 0xe7, 0x3f, 0x6b, 0xd3, 0x16, 0x4f, 0xf6, 0xb7, 0x38, + 0x21, 0x9c, 0x40, 0x06, 0x1d, 0xc6, 0x00, 0xc9, 0xac, 0x4f, 0x60, 0x96, 0x69, 0x0a, 0x41, 0xb2, + 0x3e, 0x4c, 0x43, 0xc1, 0x60, 0xa6, 0x67, 0xbd, 0xc3, 0x40, 0xe8, 0x59, 0x2f, 0x0a, 0xad, 0x75, + 0x38, 0xcf, 0xad, 0x92, 0x7a, 0x97, 0xe2, 0x3b, 0x80, 0x21, 0xfc, 0x9d, 0x78, 0xb0, 0x99, 0xd1, + 0x7b, 0x8e, 0x67, 0x7d, 0x8c, 0x2f, 0x82, 0xc4, 0x24, 0x75, 0x7d, 0x2f, 0x36, 0x41, 0x9e, 0xec, + 0x09, 0xf1, 0xff, 0x0c, 0x17, 0x6b, 0x9d, 0x0e, 0xf5, 0x5a, 0x31, 0xe1, 0x4e, 0xe0, 0x9c, 0x30, + 0xc0, 0x03, 0xa9, 0xc1, 0x10, 0x62, 0xab, 0x0b, 0x54, 0xd1, 0xdc, 0x8c, 0xe6, 0x20, 0x9e, 0x88, + 0xc8, 0x8a, 0x15, 0x70, 0x4a, 0xab, 0x05, 0x73, 0xf5, 0xee, 0xa3, 0x43, 0x37, 0x42, 0x7f, 0x7c, + 0x0c, 0x92, 0x22, 0xeb, 0x5e, 0x93, 0x39, 0xc4, 0xb8, 0x30, 0xae, 0xc7, 0x2f, 0x47, 0xd0, 0xa5, + 0x5f, 0x04, 0x4e, 0x79, 0x7a, 0xe7, 0x66, 0x4c, 0x8a, 0xe6, 0x17, 0x5e, 0x0b, 0x16, 0x8b, 0x3c, + 0x63, 0xd6, 0x34, 0x9c, 0xd5, 0x2f, 0xa3, 0xf8, 0x0c, 0x99, 0x85, 0x69, 0xf3, 0x92, 0x89, 0x83, + 0xbf, 0x86, 0x19, 0x6e, 0x04, 0xe7, 0x11, 0xd5, 0x17, 0xe2, 0xe0, 0xe1, 0xfd, 0x7b, 0x0b, 0x89, + 0x87, 0x00, 0xe8, 0x1f, 0xac, 0x72, 0x65, 0xec, 0x2d, 0xf0, 0x57, 0x9d, 0x4f, 0x17, 0x8c, 0xab, + 0xcc, 0xfe, 0xbd, 0x85, 0xc5, 0x11, 0x11, 0x99, 0x96, 0x71, 0xe7, 0xc3, 0xff, 0x9d, 0x70, 0x5f, + 0xc0, 0x40, 0x02, 0xab, 0xd4, 0xc1, 0x47, 0x3f, 0xd9, 0xcf, 0xb1, 0xa7, 0xa0, 0x5f, 0xc5, 0xa9, + 0xec, 0x77, 0x5b, 0xd6, 0x1f, 0x97, 0xe0, 0x3a, 0x57, 0xc6, 0xb2, 0xe9, 0xf0, 0xc6, 0x29, 0x87, + 0x98, 0xbc, 0x07, 0x43, 0xa1, 0xe6, 0x1d, 0x61, 0x89, 0x96, 0x17, 0x71, 0xe2, 0x04, 0xa4, 0x06, + 0x13, 0xfa, 0xdb, 0x96, 0x93, 0x85, 0xc0, 0xb3, 0xc7, 0x0f, 0x1f, 0x3b, 0xea, 0xbd, 0xcb, 0x13, + 0xb8, 0xb0, 0xf2, 0x0d, 0x9b, 0x10, 0x62, 0x77, 0x12, 0x27, 0x87, 0xf8, 0xb9, 0xef, 0x99, 0x1d, + 0x31, 0x63, 0xcc, 0x63, 0x7d, 0x12, 0xcc, 0xce, 0xc8, 0x72, 0x83, 0x53, 0xea, 0xfb, 0x98, 0x6d, + 0xc0, 0xac, 0x3f, 0x2b, 0xc1, 0xc5, 0xec, 0xda, 0xc4, 0xc2, 0xb2, 0x06, 0x67, 0x97, 0x1c, 0xcf, + 0xf7, 0xdc, 0xa6, 0xd3, 0xae, 0x37, 0x0f, 0x68, 0xab, 0xab, 0xe2, 0xd7, 0xaa, 0x55, 0x66, 0x9f, + 0x7a, 0x92, 0x5c, 0xa2, 0xd8, 0x69, 0x2a, 0x76, 0x3a, 0xc4, 0xe7, 0x11, 0x7c, 0xed, 0x6d, 0xd3, + 0x40, 0xf1, 0xe3, 0x2d, 0xcb, 0x29, 0x25, 0xb7, 0xa5, 0xb5, 0xbf, 0xb5, 0xeb, 0xb9, 0x91, 0x22, + 0xe2, 0x66, 0x9e, 0xac, 0x22, 0xeb, 0x5f, 0x95, 0xe0, 0x3c, 0xa6, 0xac, 0x32, 0x92, 0x60, 0xc6, + 0x61, 0x9c, 0x65, 0x24, 0xe2, 0x92, 0xf1, 0xdc, 0xc3, 0xc0, 0x36, 0x43, 0x12, 0x93, 0x37, 0x61, + 0xb0, 0x2e, 0xbd, 0xb5, 0xa6, 0x12, 0x19, 0x86, 0x05, 0x05, 0x2b, 0xb7, 0x11, 0x8b, 0xed, 0x39, + 0xcb, 0x34, 0x6c, 0x52, 0x0f, 0x53, 0x41, 0x73, 0xab, 0x83, 0x06, 0x89, 0xc3, 0x31, 0x0d, 0xe6, + 0x85, 0x63, 0x1a, 0x32, 0xc3, 0x31, 0x59, 0x4f, 0x79, 0xc2, 0xaa, 0x64, 0x87, 0xc4, 0x20, 0x7d, + 0x9c, 0xca, 0x1c, 0xcd, 0xf7, 0x81, 0x73, 0x59, 0x3d, 0x63, 0x0a, 0x7a, 0x22, 0x29, 0x74, 0x7e, + 0xd8, 0xe4, 0x6d, 0x78, 0xc5, 0xc0, 0xad, 0xb5, 0xdb, 0xfe, 0x33, 0xda, 0xda, 0x0e, 0xfc, 0x43, + 0x3f, 0x32, 0x12, 0xf6, 0x88, 0xd4, 0xe9, 0xf1, 0x7d, 0x8e, 0x98, 0x95, 0x09, 0xb0, 0xf5, 0x3f, + 0xc1, 0xab, 0x3d, 0x38, 0x8a, 0x4e, 0xd5, 0xe1, 0xac, 0x93, 0x28, 0x93, 0x6e, 0x37, 0xaf, 0x66, + 0xf5, 0x2b, 0xc9, 0x28, 0xb4, 0xd3, 0xf4, 0x37, 0x76, 0x8c, 0x6c, 0xcb, 0xa4, 0x02, 0x33, 0xdb, + 0xf6, 0xd6, 0xf2, 0xee, 0xd2, 0x4e, 0x63, 0xe7, 0x8b, 0xed, 0x95, 0xc6, 0xee, 0xe6, 0x83, 0xcd, + 0xad, 0x87, 0x9b, 0x3c, 0xee, 0xb8, 0x51, 0xb2, 0xb3, 0x52, 0xdb, 0x28, 0x97, 0xc8, 0x0c, 0x94, + 0x0d, 0xf0, 0xca, 0xee, 0x62, 0xb9, 0xff, 0xc6, 0xd7, 0x46, 0x16, 0x61, 0x72, 0x11, 0x2a, 0xf5, + 0xdd, 0xed, 0xed, 0x2d, 0x5b, 0x71, 0xd5, 0xa3, 0x9e, 0xcf, 0xc2, 0x59, 0xa3, 0xf4, 0xae, 0xbd, + 0xb2, 0x52, 0x2e, 0xb1, 0xa6, 0x18, 0xe0, 0x6d, 0x7b, 0x65, 0x63, 0x6d, 0x77, 0xa3, 0xdc, 0x7f, + 0xa3, 0xa1, 0xbf, 0x31, 0x23, 0x17, 0x60, 0x6e, 0x79, 0x65, 0x6f, 0x6d, 0x69, 0x25, 0x8b, 0xf7, + 0x0c, 0x94, 0xf5, 0xc2, 0x9d, 0xad, 0x9d, 0x6d, 0xce, 0x5a, 0x87, 0x3e, 0x5c, 0x59, 0xac, 0xed, + 0xee, 0xac, 0x6e, 0x96, 0x07, 0xac, 0xc1, 0xd1, 0xfe, 0x72, 0xff, 0x8d, 0x1f, 0x1b, 0x0f, 0xd0, + 0x58, 0xf3, 0x05, 0xfa, 0x6e, 0xbd, 0x76, 0x2f, 0xbf, 0x0a, 0x5e, 0xba, 0x71, 0xb7, 0x56, 0x2e, + 0x91, 0x4b, 0x70, 0xde, 0x80, 0x6e, 0xd7, 0xea, 0xf5, 0x87, 0x5b, 0xf6, 0xf2, 0xfa, 0x4a, 0xbd, + 0x5e, 0xee, 0xbf, 0xb1, 0x67, 0x84, 0xa0, 0x63, 0x35, 0x6c, 0xdc, 0xad, 0x35, 0xec, 0x95, 0xcf, + 0x76, 0xd7, 0xec, 0x95, 0xe5, 0x74, 0x0d, 0x46, 0xe9, 0x17, 0x2b, 0xf5, 0x72, 0x89, 0x4c, 0xc3, + 0x19, 0x03, 0xba, 0xb9, 0x55, 0xee, 0xbf, 0xf1, 0x9a, 0x88, 0x52, 0x46, 0xa6, 0x00, 0x96, 0x57, + 0xea, 0x4b, 0x2b, 0x9b, 0xcb, 0x6b, 0x9b, 0xf7, 0xca, 0x7d, 0x64, 0x12, 0xc6, 0x6a, 0xea, 0x67, + 0xe9, 0xc6, 0x07, 0x70, 0x26, 0x71, 0xb4, 0x67, 0x18, 0xea, 0x50, 0x5c, 0xee, 0x43, 0xf1, 0xcb, + 0x9f, 0x68, 0x5f, 0xe5, 0xa7, 0xf4, 0x72, 0xe9, 0xc6, 0xa2, 0xcc, 0x6a, 0xab, 0x7d, 0xe7, 0x64, + 0x1c, 0x46, 0x96, 0x57, 0xee, 0xd6, 0x76, 0xd7, 0x77, 0xca, 0x7d, 0xec, 0xc7, 0x92, 0xbd, 0x52, + 0xdb, 0x59, 0x59, 0x2e, 0x97, 0xc8, 0x18, 0x0c, 0xd5, 0x77, 0x6a, 0x3b, 0x2b, 0xe5, 0x7e, 0x32, + 0x0a, 0x83, 0xbb, 0xf5, 0x15, 0xbb, 0x3c, 0xb0, 0xf0, 0xcf, 0xfe, 0xb0, 0xc4, 0x8d, 0x8c, 0xf2, + 0x31, 0xd3, 0xd7, 0xda, 0x61, 0x52, 0x2c, 0x79, 0x22, 0x85, 0x67, 0xee, 0xc9, 0x11, 0xb5, 0x80, + 0xf9, 0x82, 0x5b, 0x17, 0x44, 0xb8, 0x5e, 0xba, 0x5d, 0x22, 0x36, 0x7a, 0xa9, 0x24, 0xce, 0x56, + 0x8a, 0x73, 0xf6, 0xf1, 0x77, 0xfe, 0x52, 0xe1, 0x91, 0x8c, 0xfc, 0x1a, 0x58, 0x3a, 0xcf, 0x9c, + 0x13, 0xc8, 0xf7, 0x4f, 0x76, 0xd2, 0x90, 0x75, 0xbe, 0x76, 0x32, 0x74, 0x72, 0x1f, 0x26, 0x99, + 0x6e, 0xae, 0xd0, 0xc8, 0x85, 0x24, 0xa1, 0x76, 0x1c, 0x98, 0xbf, 0x98, 0x5d, 0xa8, 0xb2, 0xec, + 0x4c, 0x60, 0x47, 0xf8, 0xc1, 0x3a, 0x24, 0x32, 0x92, 0x85, 0x84, 0xf0, 0x15, 0x7f, 0xfe, 0x6c, + 0x02, 0xbc, 0x77, 0xe7, 0x76, 0x89, 0xd4, 0x31, 0x8c, 0x9c, 0xa1, 0xe4, 0x13, 0xf9, 0xba, 0x2e, + 0xad, 0xfd, 0xf3, 0xd6, 0x54, 0x55, 0x4e, 0xcc, 0x9c, 0xd3, 0xc1, 0x26, 0x90, 0xb4, 0xee, 0x4c, + 0xae, 0xc4, 0xf3, 0x20, 0x5b, 0xad, 0x9e, 0x3f, 0x97, 0x72, 0x3e, 0x5c, 0x61, 0xda, 0x13, 0x59, + 0x81, 0x29, 0xf1, 0x4c, 0x5d, 0x68, 0xf3, 0xa4, 0xe8, 0x3c, 0x90, 0xcb, 0xe6, 0x1e, 0xca, 0x49, + 0x9d, 0x08, 0xc8, 0x7c, 0xdc, 0x8f, 0xe4, 0x31, 0x61, 0xfe, 0x42, 0x66, 0x99, 0xe8, 0xdf, 0x5d, + 0x98, 0x32, 0x0f, 0x17, 0x44, 0x0e, 0x50, 0xe6, 0x99, 0x23, 0xb7, 0x41, 0x0d, 0x98, 0xdb, 0x70, + 0x5c, 0xbc, 0x2b, 0x11, 0x2e, 0x6e, 0xd2, 0x41, 0x8d, 0x54, 0x0b, 0x3c, 0xd6, 0xea, 0xd4, 0x6b, + 0xa9, 0x41, 0xc8, 0x8b, 0x98, 0x8f, 0x9f, 0x4d, 0x5d, 0xea, 0xc8, 0xa6, 0x83, 0x1f, 0xb1, 0xcc, + 0x3c, 0xc7, 0x59, 0x3e, 0x9b, 0xf3, 0x79, 0x6e, 0xc6, 0x64, 0x03, 0x95, 0xf4, 0x04, 0x47, 0x6d, + 0x4e, 0x9c, 0x9a, 0x5d, 0x05, 0x83, 0x25, 0x68, 0xf9, 0xe1, 0x45, 0x61, 0x48, 0x72, 0x04, 0x97, + 0xcb, 0xec, 0x76, 0x89, 0x7c, 0x8d, 0x5f, 0x75, 0x26, 0xbb, 0x87, 0x6e, 0x74, 0x20, 0xb4, 0x9f, + 0x0b, 0x99, 0x0c, 0xc4, 0x87, 0x52, 0xc0, 0xdd, 0x86, 0x99, 0x2c, 0xcf, 0x66, 0x25, 0xd0, 0x02, + 0xb7, 0xe7, 0xdc, 0x59, 0x60, 0xb3, 0xa3, 0x46, 0x2b, 0x7f, 0x90, 0x0a, 0x1c, 0x6b, 0x73, 0x79, + 0x7e, 0x04, 0x53, 0x6c, 0x96, 0x3c, 0xa0, 0xb4, 0x53, 0x6b, 0xbb, 0x4f, 0x69, 0x48, 0x64, 0x0c, + 0x60, 0x05, 0xca, 0xa3, 0xbd, 0x5e, 0x22, 0xdf, 0x83, 0xf1, 0x87, 0x4e, 0xd4, 0x3c, 0x10, 0xb1, + 0x30, 0x65, 0xa8, 0x4c, 0x84, 0xcd, 0xcb, 0x5f, 0x58, 0x78, 0xbb, 0x44, 0x7e, 0x08, 0x23, 0xf7, + 0x68, 0x84, 0xaf, 0x9b, 0xaf, 0x2a, 0x27, 0x3f, 0x6e, 0x9b, 0x5c, 0xf3, 0xd4, 0x13, 0x1e, 0xd9, + 0xe0, 0xa4, 0x21, 0x97, 0xdc, 0x02, 0xe0, 0x0b, 0x02, 0x72, 0x48, 0x16, 0xcf, 0xa7, 0x9a, 0x4d, + 0xee, 0x31, 0xe5, 0xa1, 0x4d, 0x23, 0x7a, 0xd2, 0x2a, 0xf3, 0x64, 0xb4, 0x0e, 0x53, 0x2a, 0x31, + 0xd1, 0x26, 0x86, 0x2c, 0xb1, 0x12, 0xcc, 0xc2, 0x53, 0x70, 0xfb, 0x80, 0x7d, 0x15, 0x3c, 0x2b, + 0x2f, 0xc6, 0xb6, 0xc0, 0x95, 0x74, 0x4e, 0x0f, 0x90, 0xa1, 0x2f, 0xa1, 0x52, 0x88, 0x1c, 0x4d, + 0xa3, 0x5d, 0xf5, 0xc3, 0xc8, 0xa4, 0x55, 0x90, 0x6c, 0xda, 0x5f, 0x85, 0x79, 0xbd, 0x5e, 0x33, + 0x18, 0x73, 0xbc, 0xe6, 0xe6, 0xc5, 0x78, 0x9e, 0xbf, 0x5a, 0x80, 0x21, 0xce, 0x6f, 0x03, 0xbf, + 0xd3, 0x5f, 0xc2, 0xe5, 0x64, 0x19, 0xa6, 0x65, 0x5d, 0x5b, 0x1d, 0xea, 0xd5, 0xeb, 0xab, 0x98, + 0x84, 0x46, 0xba, 0x94, 0x68, 0x30, 0xc9, 0x9d, 0xa4, 0x8b, 0xd8, 0xd6, 0x67, 0xc4, 0xb0, 0x20, + 0x45, 0x91, 0x2d, 0xe2, 0xad, 0x2f, 0x33, 0x4a, 0xf0, 0x03, 0x6e, 0x54, 0x32, 0x94, 0xff, 0xbd, + 0x05, 0x52, 0x70, 0x00, 0x9a, 0xcf, 0x39, 0x42, 0xdc, 0x2e, 0x91, 0x2f, 0x80, 0xa4, 0x8f, 0x24, + 0x4a, 0x84, 0xb9, 0xc7, 0x2f, 0x25, 0xc2, 0x82, 0xf3, 0xcc, 0x0a, 0x4c, 0xab, 0x08, 0x36, 0x71, + 0x39, 0xc9, 0x69, 0x4b, 0xc1, 0x0e, 0x36, 0x9b, 0xc1, 0x66, 0x6f, 0xa1, 0x80, 0x51, 0x26, 0x9c, + 0x7c, 0x02, 0xd3, 0x62, 0xee, 0x1b, 0xed, 0x29, 0xab, 0x65, 0x4c, 0x1c, 0x6e, 0x72, 0x5b, 0x72, + 0x1f, 0x66, 0xeb, 0x09, 0xc1, 0x73, 0x87, 0xfa, 0xf3, 0x26, 0x0b, 0x04, 0xd6, 0x69, 0xc4, 0x25, + 0x9f, 0xcd, 0xeb, 0x01, 0x10, 0x6e, 0x5b, 0x92, 0xec, 0x9e, 0xba, 0xf4, 0x19, 0xb9, 0x94, 0x68, + 0x3a, 0x03, 0x22, 0x1a, 0xae, 0x83, 0xb9, 0x3d, 0xdb, 0xe1, 0xa9, 0xa9, 0x11, 0x6a, 0x5c, 0xc5, + 0x5f, 0x31, 0x08, 0x8c, 0xdb, 0x7c, 0x31, 0x8e, 0xe7, 0x73, 0x31, 0xc8, 0x6f, 0x60, 0x04, 0xda, + 0xe2, 0xd3, 0x19, 0xf9, 0x5e, 0xd6, 0x21, 0x3a, 0xe7, 0x7c, 0x39, 0xff, 0xe6, 0xc9, 0x90, 0xd5, + 0x79, 0x78, 0xf2, 0x1e, 0x8d, 0xb6, 0xdb, 0xdd, 0x7d, 0x17, 0x93, 0x96, 0x12, 0x65, 0x7b, 0x52, + 0x20, 0x31, 0xbd, 0x65, 0xe0, 0xb7, 0xb8, 0xa0, 0x4e, 0x7f, 0x42, 0xd6, 0xa0, 0xcc, 0xb7, 0x11, + 0x8d, 0xc5, 0xa5, 0x14, 0x0b, 0x81, 0xe2, 0x04, 0xce, 0x61, 0x98, 0x3b, 0x5a, 0xb7, 0xb8, 0xef, + 0x13, 0x91, 0x9f, 0xb6, 0xae, 0xa7, 0x4e, 0x1b, 0x30, 0x15, 0x95, 0x9f, 0x8d, 0x88, 0x4d, 0x43, + 0x1a, 0xc9, 0x50, 0x37, 0x3c, 0x65, 0xed, 0xb5, 0x58, 0x67, 0x48, 0x97, 0xc6, 0x2b, 0x48, 0x22, + 0x2c, 0xdb, 0xde, 0x5b, 0x44, 0xa5, 0xf1, 0xcd, 0x60, 0xfa, 0x9a, 0xa1, 0xda, 0x9c, 0x8e, 0xef, + 0xdb, 0xb8, 0x95, 0x61, 0x78, 0x9f, 0xd9, 0xb8, 0x6d, 0xec, 0xb7, 0xa4, 0x9a, 0xd4, 0xa8, 0xf6, + 0x16, 0x70, 0x65, 0x64, 0x7b, 0x2d, 0xd3, 0x84, 0xbb, 0x41, 0x40, 0x3d, 0x4e, 0x9c, 0xa7, 0xb6, + 0x64, 0x51, 0x7f, 0x8c, 0x2b, 0x98, 0x46, 0xcd, 0xdf, 0xfd, 0xf5, 0x62, 0xc1, 0x53, 0x2c, 0xdd, + 0x2e, 0x91, 0xf7, 0x60, 0x54, 0xb4, 0x91, 0x11, 0x19, 0x8d, 0x0e, 0x0b, 0x5a, 0x8d, 0x94, 0xc0, + 0x85, 0x84, 0x6d, 0x36, 0x71, 0xf2, 0x46, 0x9f, 0xb7, 0xf9, 0x3d, 0xb6, 0x67, 0xb7, 0x5e, 0x84, + 0x72, 0x49, 0x6e, 0xde, 0x48, 0x59, 0x51, 0x21, 0x61, 0x24, 0xa8, 0xc7, 0x2e, 0xcb, 0x99, 0x30, + 0xf5, 0x1b, 0xe3, 0x2a, 0xaa, 0xf0, 0x68, 0x4a, 0xfd, 0x36, 0xc0, 0xbd, 0xb6, 0xec, 0x35, 0x28, + 0xd7, 0x9a, 0xb8, 0xa1, 0xd4, 0xe9, 0xa1, 0xd3, 0x39, 0xf0, 0x03, 0xaa, 0xce, 0x3e, 0xc9, 0x02, + 0xc9, 0x6b, 0x56, 0x29, 0x28, 0xa2, 0x60, 0x9d, 0x3a, 0x18, 0x7c, 0x7a, 0x4e, 0x69, 0x28, 0x89, + 0xa2, 0x6c, 0x8a, 0x82, 0xb3, 0xce, 0xcc, 0x12, 0x3b, 0x9d, 0xb5, 0xbf, 0x1d, 0x9b, 0x0f, 0x70, + 0xc1, 0x50, 0xc8, 0xa1, 0xda, 0x21, 0x14, 0x48, 0x9d, 0x0a, 0xe5, 0x13, 0x20, 0x85, 0x5a, 0x93, + 0x57, 0xcf, 0xb1, 0x58, 0xf2, 0xa8, 0xf3, 0xaa, 0xff, 0x01, 0x4c, 0xad, 0xb0, 0x05, 0xbd, 0xdb, + 0x72, 0x79, 0xc0, 0x7d, 0x62, 0x46, 0x50, 0xcf, 0x25, 0x5c, 0x95, 0x59, 0xcd, 0x90, 0x54, 0x58, + 0x10, 0xe4, 0x9e, 0xa2, 0xc1, 0xe4, 0x78, 0xcc, 0x48, 0xb6, 0x22, 0xe7, 0x01, 0x9e, 0xf0, 0x85, + 0xc9, 0x60, 0x8e, 0x2b, 0x96, 0xb5, 0x4e, 0xa7, 0x2d, 0x2d, 0xdb, 0xfc, 0xfa, 0xfe, 0x55, 0xe3, + 0x24, 0x9a, 0x2a, 0x97, 0xbc, 0xd3, 0xba, 0xe7, 0xe7, 0x5a, 0x96, 0xe1, 0x1c, 0x9e, 0x39, 0xe5, + 0xbd, 0xe6, 0xa2, 0x0a, 0x91, 0x5d, 0x6b, 0xb7, 0x53, 0xc4, 0x21, 0x79, 0xc3, 0xe4, 0x9e, 0x85, + 0xd3, 0xab, 0x06, 0x3c, 0xe9, 0x73, 0xe5, 0xad, 0xd6, 0xe9, 0xf0, 0xc5, 0xf2, 0xb2, 0x5a, 0x30, + 0xcc, 0x82, 0xf4, 0x49, 0x3f, 0x59, 0x2e, 0xd6, 0xf6, 0xfb, 0x38, 0xcd, 0xe2, 0x54, 0xc4, 0x44, + 0x3f, 0x37, 0x27, 0x33, 0x31, 0x2b, 0x5d, 0x2e, 0x51, 0xa8, 0xf6, 0x89, 0x33, 0xa8, 0x41, 0xc5, + 0x79, 0x8d, 0x95, 0x81, 0x27, 0x01, 0x97, 0xfc, 0x2e, 0xe7, 0x15, 0x2b, 0x83, 0x6b, 0x39, 0x99, + 0xee, 0x5d, 0x75, 0x39, 0x9d, 0x07, 0xde, 0xec, 0x72, 0x6e, 0x9e, 0xf8, 0xfb, 0x50, 0x4e, 0x66, + 0x9a, 0x56, 0x4c, 0x73, 0x52, 0x50, 0xe7, 0x8e, 0xc9, 0x5d, 0x98, 0xd1, 0x47, 0x54, 0xf5, 0x3b, + 0x6f, 0xf5, 0xcf, 0xe3, 0xb3, 0x03, 0xb3, 0x99, 0x89, 0xa1, 0xd5, 0x16, 0x5b, 0x94, 0x36, 0x3a, + 0x97, 0x2b, 0x85, 0x73, 0xd9, 0xb9, 0xe1, 0xc9, 0x2b, 0xa6, 0xfd, 0x20, 0x3b, 0x53, 0xf6, 0xfc, + 0xab, 0x3d, 0xb0, 0x84, 0x40, 0xbf, 0xc6, 0x1d, 0x30, 0x55, 0xc7, 0x55, 0xcd, 0xa2, 0x90, 0x53, + 0x81, 0x55, 0x84, 0xa2, 0xe6, 0xc0, 0x4c, 0x46, 0x71, 0xbe, 0x88, 0xaf, 0xe5, 0xf3, 0x8c, 0x27, + 0xd6, 0x9e, 0x8c, 0x04, 0x9d, 0x2b, 0x99, 0xc2, 0x1c, 0xe2, 0x05, 0x47, 0xd2, 0x79, 0x35, 0x1f, + 0x4e, 0xde, 0xe4, 0x3c, 0x6e, 0x2d, 0x65, 0xfd, 0x31, 0x12, 0x7c, 0x27, 0xad, 0x3f, 0x59, 0x89, + 0xc9, 0x95, 0x18, 0x8a, 0x52, 0xdf, 0xf3, 0xdd, 0xf8, 0x2b, 0x6e, 0x0e, 0x32, 0xab, 0xd0, 0xcd, + 0x41, 0x99, 0xfc, 0xaf, 0xe4, 0x23, 0xe8, 0xcc, 0x1d, 0x7e, 0xf7, 0x9b, 0xc8, 0x50, 0x4e, 0xf4, + 0x13, 0x57, 0x76, 0xf6, 0x72, 0x35, 0x37, 0x32, 0x51, 0xf4, 0x2a, 0x1e, 0xca, 0x6f, 0x30, 0x47, + 0x4a, 0x05, 0xe9, 0xdb, 0x8b, 0xd5, 0x94, 0x2d, 0xa8, 0xc4, 0x83, 0x99, 0xe8, 0xc0, 0x29, 0x87, + 0x52, 0x0a, 0xe3, 0x7c, 0x6e, 0xd2, 0x76, 0xf2, 0x7a, 0xea, 0x4b, 0xcf, 0x11, 0x4c, 0x61, 0x15, + 0x7c, 0x3d, 0xd7, 0x22, 0x4b, 0x5f, 0x88, 0x6d, 0xc1, 0x7a, 0x7e, 0xf7, 0xd4, 0x7a, 0x9e, 0x91, + 0xfc, 0xfd, 0x1e, 0xea, 0xc5, 0x5a, 0x02, 0xf7, 0xdc, 0x5e, 0x5f, 0xca, 0xe2, 0x13, 0xa6, 0x57, + 0x5c, 0xad, 0x5d, 0x52, 0x4f, 0x4b, 0x16, 0x9c, 0x66, 0xc5, 0x3d, 0x49, 0xd3, 0xf2, 0xf8, 0x2c, + 0xc3, 0xb8, 0x96, 0xf9, 0x9d, 0x9c, 0x37, 0xc4, 0x64, 0xec, 0xa1, 0xf3, 0x46, 0xe7, 0xcc, 0xed, + 0x73, 0x09, 0x2d, 0xd2, 0x2a, 0x7f, 0x7c, 0x6e, 0x2b, 0x2e, 0xa4, 0x79, 0x18, 0xd6, 0x68, 0x25, + 0x05, 0xde, 0x9a, 0x8b, 0x49, 0xe1, 0x18, 0x0d, 0xca, 0xef, 0x12, 0xd1, 0x45, 0xd3, 0xa3, 0x49, + 0xf9, 0xfa, 0xeb, 0xb4, 0x48, 0x2f, 0x8b, 0xe9, 0x60, 0x64, 0xe8, 0xc0, 0x73, 0xca, 0xb4, 0xa6, + 0x41, 0x0b, 0x2c, 0x1d, 0xdb, 0xf8, 0x02, 0x25, 0x23, 0x15, 0xbe, 0x5a, 0x61, 0x0b, 0x33, 0xe5, + 0x67, 0xe8, 0x6e, 0x6a, 0xcd, 0xce, 0xe5, 0x58, 0x98, 0x1b, 0x3f, 0xb7, 0xa5, 0x3f, 0xd2, 0xd6, + 0xec, 0x54, 0xc2, 0x7b, 0x72, 0x3d, 0xa9, 0xb8, 0xe5, 0xe5, 0xc4, 0x2f, 0xd8, 0x13, 0x66, 0xb2, + 0x72, 0xe5, 0x6b, 0xe6, 0xe1, 0xdc, 0x44, 0xfa, 0x19, 0x52, 0xb0, 0xe5, 0xfc, 0xcf, 0xe1, 0x56, + 0x90, 0x39, 0x3f, 0xb7, 0x85, 0x5f, 0x6a, 0x0b, 0x5d, 0x22, 0xc3, 0xbd, 0x3a, 0x8e, 0xf7, 0x48, + 0x81, 0x9f, 0xcb, 0x7b, 0x13, 0xdf, 0x2c, 0xa5, 0xd3, 0xd3, 0x2b, 0xcd, 0xa6, 0x28, 0x79, 0x7d, + 0xa6, 0xf5, 0x78, 0x36, 0xdd, 0x45, 0xc6, 0xef, 0x5c, 0xc2, 0xf6, 0xdb, 0xab, 0x61, 0x5f, 0xcb, + 0xc5, 0x38, 0x23, 0xad, 0x7d, 0x62, 0x31, 0xce, 0x4f, 0x7c, 0x5f, 0x70, 0x0c, 0x3a, 0x53, 0x77, + 0xf7, 0x3d, 0x2d, 0x2b, 0xbd, 0x3a, 0x04, 0xa5, 0x13, 0xe5, 0xab, 0x25, 0x26, 0x2b, 0x89, 0xfd, + 0x16, 0xd3, 0x7f, 0xb8, 0xf6, 0xae, 0xe7, 0x17, 0x27, 0xf3, 0xf9, 0x69, 0xd5, 0xd5, 0x72, 0x93, + 0x99, 0x90, 0x5c, 0x63, 0xa8, 0x27, 0xf7, 0x56, 0x0c, 0x33, 0xf2, 0x8c, 0x2b, 0x86, 0x99, 0xd9, + 0xc0, 0x6f, 0xa1, 0xd5, 0xc5, 0xf6, 0xdb, 0x54, 0xb7, 0xba, 0x68, 0xd9, 0xa2, 0x13, 0x46, 0x0f, + 0xf2, 0x21, 0x9a, 0x3c, 0x8a, 0xed, 0x24, 0x73, 0x26, 0x27, 0xdd, 0xb3, 0x64, 0x4c, 0xa5, 0xe2, + 0x56, 0x36, 0xf6, 0x64, 0x36, 0xf0, 0xf9, 0x4a, 0xba, 0x40, 0xd0, 0xbf, 0x23, 0xad, 0x26, 0xd8, + 0xe0, 0x8a, 0x69, 0x6d, 0xca, 0x6f, 0xf3, 0x3b, 0xd2, 0x64, 0x62, 0x90, 0xa5, 0x12, 0x71, 0x27, + 0xc9, 0x7e, 0x00, 0x13, 0x71, 0xd2, 0xed, 0xbd, 0x05, 0x8d, 0x30, 0x91, 0x89, 0x3b, 0x49, 0xf8, + 0x9e, 0xbc, 0x56, 0xc1, 0xfa, 0xcc, 0xc2, 0x62, 0x15, 0xe0, 0x63, 0x69, 0xa2, 0x31, 0x5a, 0x9a, + 0x4a, 0xe1, 0x5d, 0xb0, 0x72, 0x4f, 0xe8, 0x29, 0x33, 0xd5, 0xbc, 0xc8, 0x48, 0x7a, 0xab, 0xe6, + 0x45, 0x56, 0xd2, 0xda, 0xf8, 0xda, 0xe1, 0x0b, 0x69, 0x8f, 0x88, 0x99, 0x5e, 0x32, 0x9a, 0x95, + 0xe2, 0x7b, 0x39, 0xaf, 0x38, 0xc9, 0xba, 0x0e, 0xe5, 0x64, 0x7e, 0x4f, 0x75, 0x98, 0xcb, 0x49, + 0xc4, 0xaa, 0x4e, 0x88, 0xb9, 0x89, 0x41, 0xb7, 0xa5, 0x71, 0xdd, 0xe4, 0x7b, 0x35, 0xbb, 0x51, + 0x3a, 0xeb, 0x7c, 0x6b, 0xfb, 0xa4, 0x91, 0xea, 0x53, 0x3f, 0x66, 0xa7, 0x52, 0x89, 0xea, 0x6a, + 0x59, 0x46, 0x76, 0x50, 0x57, 0x46, 0x9d, 0xca, 0x4e, 0xb4, 0xfe, 0x86, 0x79, 0xfe, 0x2d, 0x88, + 0x0b, 0xdf, 0xf3, 0x0a, 0x9a, 0xfc, 0x0a, 0xcc, 0xe5, 0xc4, 0xb9, 0x26, 0xaf, 0x26, 0xcc, 0xb4, + 0xd9, 0x71, 0xb0, 0xd5, 0x04, 0xc9, 0xcc, 0xc1, 0xbd, 0x81, 0xbe, 0x0b, 0x46, 0x7c, 0x89, 0xd4, + 0x7d, 0xe0, 0x43, 0x37, 0x3a, 0xe0, 0xa9, 0xa6, 0xb5, 0x35, 0x37, 0x33, 0x30, 0x05, 0xa9, 0xe3, + 0x41, 0xc6, 0x80, 0x66, 0x5c, 0x09, 0x66, 0x30, 0x9c, 0xcf, 0x66, 0xc8, 0xd6, 0x0e, 0x36, 0x17, + 0x32, 0x82, 0x7f, 0xa8, 0xb9, 0x90, 0x1f, 0x18, 0x24, 0xb7, 0x99, 0xdb, 0x52, 0xc1, 0xca, 0xe6, + 0x98, 0x1f, 0x07, 0x24, 0x97, 0xe3, 0x7d, 0xc6, 0x31, 0x15, 0xda, 0x83, 0xe4, 0xa0, 0x17, 0xaf, + 0x1e, 0xb6, 0xdc, 0xaf, 0x4d, 0xaa, 0x05, 0xad, 0x7d, 0x79, 0x41, 0x44, 0x72, 0xdb, 0xb7, 0x22, + 0xbf, 0xa7, 0xec, 0xf6, 0x9d, 0x74, 0xc7, 0x56, 0x97, 0x67, 0x89, 0xe8, 0x32, 0x46, 0x47, 0x35, + 0xf8, 0x7c, 0x0e, 0x9c, 0x6c, 0xa2, 0x33, 0x52, 0x12, 0xaa, 0x9d, 0x68, 0xb3, 0xc3, 0xd7, 0xe4, + 0xf2, 0xe3, 0xf3, 0xd8, 0x08, 0xff, 0x71, 0x9a, 0x79, 0x9c, 0x88, 0x1b, 0x22, 0xe6, 0xb1, 0x01, + 0x3d, 0xdd, 0x3c, 0x4e, 0x30, 0x34, 0xe7, 0x71, 0xb2, 0x99, 0x49, 0x33, 0x41, 0xee, 0xa8, 0x26, + 0x9b, 0xa9, 0xe6, 0x71, 0x36, 0xc7, 0xfc, 0x30, 0x2d, 0xb9, 0x1c, 0xd5, 0x3c, 0x36, 0x39, 0xe6, + 0xa0, 0x9f, 0x70, 0x1e, 0x27, 0x2b, 0x31, 0xe7, 0xf1, 0xa9, 0xda, 0xa7, 0xe6, 0x71, 0x76, 0xfb, + 0x4e, 0x3d, 0x8f, 0x13, 0x71, 0x8d, 0x8c, 0x8e, 0x66, 0xcd, 0xe3, 0x24, 0x3e, 0x9f, 0xc7, 0x49, + 0x68, 0xc2, 0x32, 0x53, 0x30, 0x8f, 0x93, 0x94, 0x9f, 0x21, 0xbf, 0x44, 0x4c, 0x96, 0x93, 0xcc, + 0xe4, 0xdc, 0x70, 0x2e, 0xe4, 0x21, 0xda, 0x06, 0x13, 0xf0, 0x93, 0xcd, 0xe6, 0x8b, 0x79, 0x4c, + 0x71, 0x3e, 0xef, 0x49, 0x21, 0x26, 0x9b, 0x6b, 0x1a, 0xbe, 0xb2, 0x43, 0xd2, 0x14, 0x34, 0x78, + 0x8f, 0xcd, 0x9b, 0x56, 0x01, 0xdf, 0xa2, 0x88, 0x3a, 0x05, 0x7c, 0xd5, 0x39, 0x28, 0xc9, 0x37, + 0x97, 0xa4, 0x78, 0x7e, 0x7f, 0x2e, 0x6f, 0x47, 0x92, 0x74, 0x0b, 0x89, 0x93, 0xd5, 0xa9, 0x5b, + 0xaa, 0x4e, 0x58, 0xc9, 0x96, 0x9e, 0x76, 0x9e, 0x6f, 0x48, 0xed, 0x21, 0x15, 0x8a, 0x2b, 0xd1, 0x69, 0x7d, 0xae, 0xe7, 0x96, 0x90, 0x1d, 0x34, 0x04, 0xa7, 0xe1, 0x9a, 0x11, 0x39, 0x2f, 0xe6, - 0x57, 0x57, 0xae, 0xa9, 0xa0, 0x42, 0x3a, 0xd7, 0xbc, 0x88, 0x43, 0x8a, 0x6b, 0x9a, 0xfa, 0x13, - 0x34, 0x9d, 0x89, 0x17, 0x5f, 0xde, 0x23, 0x3f, 0xff, 0x9c, 0x33, 0x65, 0x38, 0x4c, 0x31, 0x5c, - 0xf4, 0x53, 0xfb, 0x48, 0x5c, 0xff, 0x49, 0x60, 0xae, 0xf0, 0xb3, 0xe8, 0xc9, 0x27, 0x50, 0x14, - 0xcb, 0x5b, 0xcc, 0x20, 0x0b, 0x31, 0x77, 0xe8, 0x16, 0xa5, 0xc5, 0xee, 0x14, 0x2d, 0x38, 0x8d, - 0xa5, 0xee, 0x34, 0x92, 0xc8, 0x37, 0x6b, 0xb1, 0xed, 0x70, 0x27, 0x68, 0x87, 0x11, 0x6d, 0xa4, + 0x57, 0x4f, 0xae, 0xa9, 0xa0, 0x42, 0x3a, 0xd7, 0xbc, 0x88, 0x43, 0x8a, 0x6b, 0x9a, 0xfa, 0x13, + 0x34, 0x9d, 0x89, 0x17, 0x5f, 0xde, 0x63, 0x3f, 0xff, 0x9c, 0x33, 0x6d, 0x38, 0x4c, 0x31, 0x5c, + 0xf4, 0x53, 0xfb, 0x48, 0x5c, 0xff, 0x49, 0x60, 0xae, 0xf0, 0xb3, 0xe8, 0xc9, 0x27, 0x50, 0x16, + 0xcb, 0x5b, 0xcc, 0x20, 0x0b, 0x31, 0x77, 0xe8, 0x16, 0xa5, 0xc5, 0xee, 0x04, 0x2d, 0x38, 0x89, + 0xa5, 0xee, 0x24, 0x92, 0xc8, 0x37, 0x6b, 0xb1, 0xed, 0x70, 0x27, 0xe8, 0x86, 0x11, 0x6d, 0xa5, 0xcd, 0x51, 0x66, 0x63, 0xa4, 0x5b, 0x85, 0x89, 0xbe, 0xb7, 0x40, 0xd6, 0x70, 0x6d, 0x33, 0xc1, - 0x9d, 0xec, 0x75, 0xd9, 0x6c, 0x70, 0xe9, 0x59, 0x55, 0x4f, 0x8b, 0xcc, 0x36, 0xe5, 0xd5, 0x9d, - 0xdf, 0x28, 0x25, 0xa2, 0x53, 0xf6, 0x2e, 0x4f, 0x44, 0xfc, 0x40, 0xcd, 0x6d, 0x87, 0xdd, 0x24, - 0x93, 0x7c, 0xec, 0x44, 0x3e, 0x85, 0x11, 0x49, 0xdc, 0x5d, 0x20, 0x49, 0x6a, 0x14, 0xc8, 0x32, - 0x8c, 0x1b, 0x2f, 0xb9, 0xd4, 0xe9, 0x26, 0xeb, 0x7d, 0x57, 0x87, 0x71, 0x1e, 0x37, 0x5e, 0x6c, - 0x29, 0x2e, 0x59, 0xef, 0xb8, 0x72, 0xb9, 0x7c, 0x1f, 0x46, 0x85, 0x48, 0x3b, 0x4a, 0x23, 0xdf, - 0x58, 0x37, 0xa3, 0x79, 0x45, 0xb7, 0x1b, 0x6e, 0xb4, 0xe4, 0x7b, 0x8f, 0xdc, 0x83, 0xae, 0x82, - 0x49, 0x93, 0xec, 0x2d, 0x90, 0xaf, 0x30, 0x7b, 0xb2, 0xcc, 0x69, 0x4d, 0xa3, 0xa7, 0x7e, 0xf0, - 0xd8, 0xf5, 0x0e, 0xba, 0xb0, 0xbc, 0x62, 0xb2, 0x4c, 0xd2, 0x49, 0xc7, 0x93, 0xaf, 0x60, 0xae, - 0x9a, 0xcf, 0xbc, 0x2b, 0x93, 0xce, 0xdb, 0x4b, 0x15, 0xe6, 0xd1, 0xf5, 0xe6, 0xac, 0x6d, 0xef, - 0xc8, 0xf4, 0x0b, 0x1e, 0xcd, 0x51, 0x1a, 0xfa, 0xeb, 0x7e, 0xd0, 0xe8, 0xce, 0xb1, 0x6c, 0x3a, - 0xf3, 0x26, 0xc8, 0xa4, 0x30, 0xbe, 0x80, 0x0b, 0xd5, 0x5c, 0xd6, 0xdd, 0x58, 0x74, 0xd3, 0x24, - 0x2f, 0xa2, 0x28, 0xce, 0xd8, 0xee, 0x8e, 0x3c, 0xd7, 0x70, 0x4d, 0x63, 0xfb, 0xd0, 0x76, 0x40, - 0x1f, 0xd1, 0x00, 0x5d, 0xc6, 0xbb, 0x39, 0x4b, 0x9b, 0xe8, 0xb2, 0xe7, 0x6b, 0x70, 0xae, 0x9a, - 0x62, 0x95, 0x47, 0xd2, 0xed, 0xf2, 0x68, 0x0a, 0x7b, 0x7a, 0xca, 0x76, 0x75, 0x71, 0x31, 0x1a, - 0xbd, 0x47, 0xa3, 0xdd, 0xb5, 0x2e, 0x52, 0x92, 0x6f, 0x1a, 0x24, 0xe2, 0xde, 0x1d, 0x46, 0x59, - 0xd5, 0x28, 0xd3, 0x18, 0xb9, 0x1f, 0xef, 0xa7, 0xf2, 0x22, 0xa5, 0x6b, 0xb5, 0x79, 0x1c, 0xde, - 0xc2, 0xb5, 0x50, 0xb8, 0x4d, 0x6b, 0x26, 0x48, 0x0e, 0x89, 0x4d, 0x75, 0x9a, 0x07, 0x75, 0x48, - 0x2a, 0xfc, 0xf8, 0xc7, 0xa7, 0x87, 0x80, 0x5d, 0x4e, 0xb9, 0xd3, 0x77, 0x64, 0xc1, 0x4d, 0xa8, - 0xeb, 0x7e, 0xfd, 0xb1, 0x6e, 0x42, 0xd5, 0xf2, 0xeb, 0xcf, 0x99, 0xd9, 0xef, 0xc5, 0x8a, 0x8f, - 0x29, 0xf0, 0x75, 0xaf, 0x31, 0x3d, 0xc3, 0xbe, 0x6e, 0x42, 0x15, 0x70, 0x61, 0x41, 0x7a, 0x4b, - 0xda, 0x16, 0xb1, 0x42, 0x93, 0x73, 0xae, 0x68, 0x94, 0x59, 0x11, 0x89, 0x4c, 0xb3, 0xa2, 0xde, - 0xd0, 0xfc, 0x8b, 0x00, 0x62, 0xd3, 0x56, 0x13, 0x3d, 0xb1, 0x8f, 0x7c, 0x4e, 0x13, 0x3b, 0xe7, - 0xa6, 0x8b, 0xba, 0x3b, 0x7f, 0x4d, 0x09, 0x97, 0x21, 0x43, 0xf0, 0x2a, 0x22, 0x72, 0xba, 0x2c, - 0x16, 0xa5, 0xee, 0xc9, 0x74, 0xbb, 0x40, 0x36, 0xe1, 0xfc, 0x3d, 0x1a, 0x89, 0x35, 0xce, 0xa6, - 0x61, 0x14, 0xb8, 0xf5, 0xa8, 0xe3, 0xad, 0xa2, 0x3c, 0x9b, 0x64, 0xd0, 0xec, 0xbd, 0xcd, 0xf8, - 0x55, 0xb3, 0xf9, 0x75, 0xa4, 0xeb, 0xe0, 0x5f, 0x2b, 0xae, 0x2a, 0xce, 0xd2, 0xc4, 0xfc, 0x29, - 0x3e, 0xc4, 0xdd, 0x77, 0xf2, 0x49, 0x8b, 0x71, 0xf4, 0x15, 0x71, 0xda, 0xba, 0x09, 0x83, 0x9c, - 0x28, 0x77, 0x43, 0x1d, 0xd3, 0x69, 0xc8, 0x1d, 0x18, 0x51, 0xfe, 0x37, 0xc4, 0x28, 0xca, 0x6d, - 0xd7, 0x1d, 0x18, 0xe1, 0x47, 0xab, 0xd3, 0x93, 0x7c, 0x08, 0x23, 0xca, 0x61, 0xe7, 0xcc, 0x3b, - 0xfd, 0x27, 0x30, 0xae, 0xbb, 0xee, 0x9c, 0x5d, 0x90, 0xdf, 0xc7, 0xbb, 0x5f, 0x79, 0xc5, 0x92, - 0x4f, 0x3f, 0x93, 0x08, 0x4a, 0x23, 0x44, 0xca, 0x17, 0x48, 0x09, 0xcc, 0x6d, 0xfe, 0xb9, 0x14, - 0x35, 0xf9, 0x50, 0xbe, 0xa6, 0x52, 0xc4, 0x69, 0xa4, 0x0e, 0x32, 0x9b, 0xe0, 0x62, 0x7e, 0x1e, - 0x62, 0xb5, 0xc0, 0x76, 0x6d, 0xf6, 0x69, 0xee, 0xa8, 0xbb, 0x8b, 0x2e, 0x8f, 0xcb, 0x16, 0x6a, - 0x69, 0xa9, 0x64, 0x78, 0xf9, 0x8c, 0x2e, 0xe7, 0xe7, 0xcf, 0xc3, 0xc1, 0xb8, 0x8f, 0xa7, 0xc0, - 0x54, 0x69, 0x6e, 0xf7, 0x3a, 0xe4, 0xe3, 0x8b, 0x8f, 0xbd, 0x69, 0x76, 0x1d, 0xc8, 0x3a, 0x9d, - 0xa2, 0xc5, 0x1b, 0xd1, 0x97, 0xc2, 0x6e, 0x4d, 0x7a, 0x40, 0x9e, 0xbe, 0xb3, 0xf9, 0x2d, 0xbb, - 0x98, 0x71, 0x2b, 0xde, 0x75, 0x2c, 0xf2, 0xd8, 0xfd, 0x12, 0x6a, 0x87, 0x99, 0x51, 0xc9, 0xf2, - 0x99, 0x5d, 0xd7, 0x1c, 0x2b, 0x32, 0x29, 0xd5, 0xa6, 0xf7, 0x18, 0x9f, 0xa9, 0x65, 0xa7, 0x0b, - 0x7c, 0xad, 0x0b, 0x17, 0x29, 0x89, 0xd7, 0xbb, 0xe2, 0xa9, 0x3b, 0xd6, 0x8b, 0x7c, 0x87, 0xcd, - 0xae, 0xaf, 0x4b, 0xfa, 0xc3, 0x8c, 0x6b, 0x6f, 0xe5, 0x5e, 0x9a, 0xcd, 0xd0, 0x74, 0x2f, 0xed, - 0xd8, 0x87, 0x3c, 0xf1, 0x7f, 0x06, 0xe5, 0xd8, 0x7b, 0xe4, 0x6c, 0x83, 0x90, 0xef, 0xd5, 0x48, - 0x52, 0x92, 0x0a, 0x49, 0xa7, 0x7c, 0x40, 0x73, 0x57, 0xf3, 0x24, 0x1c, 0x6a, 0x6e, 0x49, 0xc2, - 0x2b, 0x2e, 0x91, 0x38, 0x33, 0x2f, 0x05, 0x67, 0x07, 0x3b, 0xac, 0x78, 0xb7, 0xf7, 0x52, 0x18, - 0xa5, 0x47, 0xfb, 0xec, 0x8c, 0x94, 0x73, 0x47, 0x82, 0x91, 0xd5, 0x61, 0x78, 0xbb, 0x5f, 0x3d, - 0x96, 0x72, 0xc6, 0xf5, 0xec, 0x03, 0xea, 0xc4, 0x6f, 0xd5, 0x12, 0x41, 0x0c, 0xf5, 0xf7, 0xc1, - 0xe9, 0xa2, 0xe4, 0x43, 0xab, 0x2c, 0x0c, 0xe5, 0x51, 0x55, 0x92, 0x55, 0x30, 0x38, 0x3b, 0x8a, - 0xf8, 0x81, 0x1b, 0x3d, 0x5b, 0xb2, 0xd7, 0x63, 0xb3, 0x82, 0x5e, 0x20, 0x79, 0x83, 0x2c, 0xb4, - 0xd7, 0xc9, 0x97, 0xb8, 0x94, 0x08, 0xf6, 0x8b, 0xbe, 0x1f, 0x85, 0x51, 0xe0, 0xb4, 0xaa, 0xf5, - 0xc0, 0x6d, 0x45, 0xb9, 0x9d, 0x8e, 0x1d, 0xc0, 0xb3, 0xc8, 0x34, 0x7f, 0x54, 0x11, 0xe4, 0x3e, - 0x2b, 0xfa, 0x8e, 0x7a, 0x93, 0x93, 0x55, 0xd8, 0xe1, 0xe4, 0x52, 0x95, 0x61, 0xed, 0x5f, 0x26, - 0xd3, 0x1a, 0xcc, 0xe6, 0xc4, 0x2c, 0x52, 0xb7, 0xb7, 0x9d, 0x63, 0x1a, 0xcd, 0x75, 0xae, 0x98, - 0x7c, 0x05, 0x33, 0x99, 0x41, 0x8d, 0x94, 0x05, 0xba, 0x53, 0xc8, 0xa3, 0x6e, 0xcc, 0x1f, 0x43, - 0x89, 0xbf, 0x06, 0x41, 0xa7, 0x67, 0x23, 0xbe, 0x4d, 0xfc, 0x46, 0x28, 0x07, 0x21, 0xb9, 0x5e, - 0xe7, 0xe3, 0xa9, 0x07, 0xef, 0xd3, 0x18, 0xd8, 0x24, 0x91, 0x97, 0x5d, 0x7d, 0x78, 0x59, 0x85, - 0x9d, 0x1e, 0x22, 0x6d, 0xc3, 0xcc, 0x1e, 0x0d, 0xdc, 0x47, 0xcf, 0x92, 0x0c, 0xa5, 0x64, 0x32, - 0x4b, 0x3b, 0x71, 0xfc, 0x1c, 0x66, 0x97, 0xfc, 0xa3, 0x96, 0x78, 0xf2, 0x67, 0xf0, 0x54, 0x57, - 0xf1, 0xd9, 0xe5, 0xdd, 0x1d, 0xa1, 0xe6, 0xf2, 0x33, 0xe8, 0x2b, 0xff, 0xb7, 0xae, 0x49, 0xf6, - 0xd5, 0xc3, 0x35, 0x93, 0x7e, 0x07, 0x27, 0x61, 0x56, 0x4a, 0x7d, 0x7d, 0x12, 0x76, 0x48, 0xb9, - 0x9f, 0xf3, 0x80, 0x6c, 0x36, 0x27, 0x8b, 0x7e, 0x07, 0xae, 0xa7, 0x68, 0xed, 0xa6, 0xdc, 0x5b, - 0xcc, 0x7c, 0xe3, 0x09, 0x8f, 0xeb, 0xcc, 0x64, 0xe4, 0x99, 0xed, 0xd4, 0x22, 0x3b, 0x34, 0x9b, - 0x1d, 0x54, 0x2c, 0xa2, 0x87, 0x76, 0x60, 0x98, 0x68, 0xc4, 0x1f, 0xd7, 0x69, 0x3b, 0xad, 0xd6, - 0x29, 0x62, 0x54, 0x6a, 0x3f, 0x80, 0xb1, 0xaa, 0x5e, 0x79, 0x46, 0x25, 0xb9, 0x93, 0x42, 0x3d, - 0x21, 0xea, 0xde, 0xf6, 0x0e, 0x8e, 0xa4, 0x6a, 0xe3, 0x39, 0x55, 0x2f, 0x72, 0x5d, 0x67, 0x8c, - 0xe4, 0x71, 0x6a, 0x17, 0xc8, 0xca, 0xed, 0xa8, 0x5c, 0x67, 0xb2, 0xf3, 0xcd, 0xd5, 0x78, 0xba, - 0x9b, 0x64, 0xea, 0x4e, 0x62, 0x75, 0xcf, 0x91, 0xab, 0x1c, 0xea, 0x3b, 0xe6, 0xfe, 0xe4, 0x7e, - 0x3e, 0x71, 0xba, 0x3c, 0xdd, 0xcf, 0x27, 0x95, 0x84, 0x4f, 0xf7, 0xf3, 0xc9, 0xc8, 0xb0, 0xb7, - 0x82, 0xbc, 0xe2, 0x3c, 0x41, 0x1d, 0x8c, 0x11, 0x8a, 0x4d, 0x46, 0x3a, 0xa2, 0x07, 0x7a, 0x80, - 0x10, 0x9e, 0x5d, 0xa8, 0x83, 0xad, 0x35, 0x19, 0x18, 0x24, 0x91, 0x8e, 0xe8, 0x2e, 0x14, 0x79, - 0xa2, 0x85, 0x38, 0xa6, 0x62, 0xec, 0x37, 0x98, 0xce, 0xff, 0xd0, 0x61, 0x50, 0x8b, 0xc9, 0x68, - 0x74, 0xca, 0x64, 0x96, 0x13, 0xa6, 0xae, 0xc3, 0x54, 0x85, 0x38, 0xe6, 0x9c, 0x32, 0x4c, 0xa5, - 0xc2, 0xd0, 0xcd, 0x5d, 0xc8, 0x28, 0x51, 0x2a, 0xe5, 0x98, 0x1e, 0xa1, 0x4e, 0x75, 0x29, 0x23, - 0x6c, 0xdd, 0xdc, 0xc5, 0xcc, 0x32, 0xc1, 0x28, 0xe2, 0x69, 0xa2, 0xb3, 0x93, 0x5b, 0xc7, 0xaf, - 0xc0, 0x3a, 0xe0, 0xc8, 0x6a, 0x6e, 0x9c, 0x06, 0x55, 0xd4, 0x4a, 0x55, 0x96, 0xa4, 0x8c, 0x8c, - 0xda, 0xaf, 0x67, 0x3c, 0xd4, 0x30, 0x30, 0x62, 0x6f, 0xb0, 0xce, 0xe9, 0xbd, 0xc9, 0x43, 0x99, - 0xb5, 0x26, 0xa7, 0xa6, 0x6e, 0x0c, 0x72, 0x47, 0xf0, 0xa1, 0xcc, 0x53, 0xf3, 0xb2, 0x19, 0xef, - 0xc3, 0x7c, 0xe2, 0xf5, 0x87, 0xc9, 0xf8, 0x46, 0xf6, 0x13, 0x91, 0x4c, 0xf1, 0xe4, 0xeb, 0xec, - 0x57, 0xd2, 0xaf, 0x44, 0x12, 0xe3, 0x7e, 0xd6, 0x35, 0x6f, 0x03, 0x26, 0x70, 0x99, 0x91, 0xb9, - 0xe1, 0xe3, 0xf8, 0x34, 0x26, 0x38, 0x19, 0x28, 0x29, 0x59, 0xaa, 0x5c, 0x66, 0xc7, 0xc4, 0x8b, - 0x62, 0x9e, 0x69, 0x7e, 0xce, 0x7c, 0x66, 0x8c, 0xc0, 0xac, 0x5d, 0x4c, 0x24, 0xb0, 0x27, 0xdf, - 0x87, 0xc9, 0xf8, 0xa1, 0x31, 0x67, 0x91, 0x81, 0xd6, 0xc1, 0x50, 0x36, 0x19, 0xbf, 0x36, 0x3e, - 0x3b, 0xf9, 0xaa, 0xdc, 0x8a, 0x62, 0xf2, 0x4b, 0xa9, 0xb7, 0x32, 0x46, 0x1f, 0x4e, 0xb3, 0x23, - 0x69, 0xb2, 0x3d, 0xeb, 0xe8, 0xd4, 0xf1, 0x73, 0xcb, 0x0e, 0xbd, 0xa8, 0x7f, 0x6e, 0x1d, 0xc3, - 0x43, 0x2a, 0xf5, 0x37, 0x87, 0xcf, 0x06, 0x5c, 0xc3, 0x70, 0x2d, 0xdb, 0x3c, 0x40, 0x5f, 0x36, - 0x56, 0x7e, 0xdb, 0x93, 0x41, 0x5e, 0x9a, 0x70, 0xb5, 0x6b, 0xec, 0x49, 0x72, 0xcb, 0x70, 0x71, - 0xe9, 0x1e, 0xa5, 0xb2, 0xc3, 0xc9, 0x63, 0x3a, 0x2b, 0x84, 0xa3, 0xda, 0x67, 0x3b, 0x44, 0x93, - 0x54, 0xfb, 0x6c, 0xc7, 0x18, 0x90, 0x9f, 0x63, 0x2a, 0x28, 0xb1, 0x47, 0x61, 0x08, 0x26, 0xea, - 0xf1, 0xa0, 0xd4, 0x1d, 0xaf, 0x7d, 0xae, 0x9a, 0x97, 0xa2, 0x29, 0x42, 0x3c, 0xd3, 0x5c, 0x16, - 0x27, 0xb1, 0x3c, 0xe6, 0xdd, 0x99, 0x74, 0x70, 0xad, 0xbe, 0xcc, 0x27, 0xe0, 0x99, 0x5b, 0x9e, - 0x03, 0x5f, 0x5c, 0xfe, 0xe9, 0x7f, 0xbf, 0x5c, 0xf8, 0xe9, 0xcf, 0x2e, 0x17, 0xfe, 0xf3, 0xcf, - 0x2e, 0x17, 0xfe, 0xdb, 0xcf, 0x2e, 0x17, 0xbe, 0x5c, 0x38, 0x5d, 0x68, 0xe4, 0x7a, 0xd3, 0xa5, - 0x5e, 0x74, 0x8b, 0xb3, 0x1b, 0xc4, 0xff, 0xde, 0xfa, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x08, - 0x38, 0xb3, 0x1f, 0xc3, 0xe9, 0x00, 0x00, + 0x45, 0xf6, 0xba, 0x6c, 0x36, 0xb8, 0xf4, 0xac, 0xaa, 0xa7, 0x45, 0x66, 0x9b, 0xf2, 0xea, 0xce, + 0x6f, 0x94, 0x12, 0xd1, 0x09, 0x7b, 0x97, 0x27, 0x22, 0x7e, 0xa0, 0xe6, 0xb6, 0xc3, 0x5e, 0x92, + 0x49, 0x3e, 0x76, 0x22, 0x9f, 0xc2, 0x98, 0x24, 0xee, 0x2d, 0x90, 0x24, 0x35, 0x0a, 0x64, 0x19, + 0x26, 0x8d, 0x97, 0x5c, 0xea, 0x74, 0x93, 0xf5, 0xbe, 0xab, 0x60, 0x9c, 0x27, 0x8d, 0x17, 0x5b, + 0x8a, 0x4b, 0xd6, 0x3b, 0xae, 0x5c, 0x2e, 0x3f, 0x84, 0x71, 0x21, 0xd2, 0x42, 0x69, 0xe4, 0x1b, + 0xeb, 0x66, 0x35, 0xaf, 0xe8, 0x6e, 0xcb, 0x8d, 0x96, 0x7c, 0xef, 0xb1, 0xbb, 0xdf, 0x53, 0x30, + 0x69, 0x92, 0xbd, 0x05, 0xf2, 0x15, 0x26, 0x66, 0x96, 0xe9, 0xb2, 0x69, 0xf4, 0xcc, 0x0f, 0x9e, + 0xb8, 0xde, 0x7e, 0x0f, 0x96, 0x57, 0x4c, 0x96, 0x49, 0x3a, 0xe9, 0x78, 0xf2, 0x15, 0xcc, 0xd7, + 0xf3, 0x99, 0xf7, 0x64, 0x52, 0xbc, 0xbd, 0xd4, 0xe1, 0x22, 0xba, 0xde, 0x9c, 0xb6, 0xed, 0x85, + 0x4c, 0xbf, 0xe0, 0xd1, 0x1c, 0xa5, 0xa1, 0xbf, 0xe9, 0x07, 0xad, 0xde, 0x1c, 0xab, 0xa6, 0x33, + 0x6f, 0x82, 0x4c, 0x0a, 0xe3, 0x0b, 0x38, 0x5f, 0xcf, 0x65, 0xdd, 0x8b, 0x45, 0x2f, 0x4d, 0xf2, + 0x02, 0x8a, 0xe2, 0x94, 0xed, 0x2e, 0xe4, 0xb9, 0x86, 0x6b, 0x1a, 0xdb, 0x87, 0xb6, 0x03, 0xfa, + 0x98, 0x06, 0xe8, 0x32, 0xde, 0xcb, 0x59, 0xda, 0x44, 0x97, 0x3d, 0x5f, 0x83, 0xb3, 0xf5, 0x14, + 0xab, 0x3c, 0x92, 0x5e, 0x97, 0x47, 0xd3, 0xd8, 0xd3, 0x13, 0xb6, 0xab, 0x87, 0x8b, 0xd1, 0xf8, + 0x3d, 0x1a, 0xed, 0xae, 0xf5, 0x90, 0x92, 0x7c, 0xd3, 0x20, 0x11, 0xf7, 0xee, 0x30, 0xca, 0xba, + 0x46, 0x99, 0xc6, 0xc8, 0xfd, 0x78, 0x3f, 0x95, 0x17, 0x29, 0x3d, 0xab, 0xcd, 0xe3, 0xf0, 0x16, + 0xae, 0x85, 0xc2, 0x6d, 0x5a, 0x33, 0x41, 0x72, 0x48, 0x6c, 0xaa, 0xd3, 0x3c, 0xa8, 0x43, 0x52, + 0xe3, 0xc7, 0x3f, 0x3e, 0x3d, 0x04, 0xec, 0x72, 0xca, 0x9d, 0xbe, 0x90, 0x05, 0x37, 0xa1, 0xae, + 0xfb, 0xcd, 0x27, 0xba, 0x09, 0x55, 0x4b, 0xdd, 0x3f, 0x6f, 0x26, 0xd6, 0x17, 0x2b, 0x3e, 0x66, + 0xd7, 0xd7, 0xbd, 0xc6, 0xf4, 0xe4, 0xfd, 0xba, 0x09, 0x55, 0xc0, 0x85, 0x05, 0xe9, 0x2d, 0x69, + 0x5b, 0xc4, 0x0a, 0x4d, 0xce, 0xb9, 0xa2, 0x51, 0x66, 0x45, 0x24, 0x32, 0xcd, 0x8a, 0x7a, 0x43, + 0xf3, 0x2f, 0x02, 0x88, 0x4d, 0x3b, 0x6d, 0xf4, 0xc4, 0x3e, 0xf4, 0x39, 0x4d, 0xec, 0x9c, 0x9b, + 0x2e, 0xea, 0xed, 0xfc, 0x35, 0x2d, 0x5c, 0x86, 0x0c, 0xc1, 0xab, 0x88, 0xc8, 0xe9, 0xb2, 0x58, + 0x94, 0xba, 0x27, 0xd3, 0xed, 0x12, 0xd9, 0x84, 0x73, 0xf7, 0x68, 0x24, 0xd6, 0x38, 0x9b, 0x86, + 0x51, 0xe0, 0x36, 0xa3, 0xc2, 0x5b, 0x45, 0x79, 0x36, 0xc9, 0xa0, 0xd9, 0x7b, 0x9b, 0xf1, 0xab, + 0x67, 0xf3, 0x2b, 0xa4, 0x2b, 0xf0, 0xaf, 0x15, 0x57, 0x15, 0xa7, 0x69, 0x62, 0xfe, 0x14, 0x1f, + 0xe1, 0xee, 0x3b, 0xf9, 0xa4, 0xe5, 0x38, 0xfa, 0x8a, 0x38, 0x6d, 0xdd, 0x84, 0x61, 0x4e, 0x94, + 0xbb, 0xa1, 0x4e, 0xe8, 0x34, 0xe4, 0x0e, 0x8c, 0x29, 0xff, 0x1b, 0x62, 0x14, 0xe5, 0xb6, 0xeb, + 0x0e, 0x8c, 0xf1, 0xa3, 0xd5, 0xc9, 0x49, 0x3e, 0x84, 0x31, 0xe5, 0xb0, 0x73, 0xea, 0x9d, 0xfe, + 0x13, 0x98, 0xd4, 0x5d, 0x77, 0x4e, 0x2f, 0xc8, 0x1f, 0xe2, 0xdd, 0xaf, 0xbc, 0x62, 0xc9, 0xa7, + 0x9f, 0x4d, 0x04, 0xa5, 0x11, 0x22, 0xe5, 0x0b, 0xa4, 0x04, 0xe6, 0x36, 0xff, 0x6c, 0x8a, 0x9a, + 0x7c, 0x28, 0x5f, 0x53, 0x29, 0xe2, 0x34, 0x52, 0x81, 0xcc, 0xa6, 0xb8, 0x98, 0x5f, 0x84, 0x58, + 0x2d, 0xb0, 0x3d, 0x9b, 0x7d, 0x92, 0x3b, 0xea, 0xde, 0xa2, 0xcb, 0xe3, 0xb2, 0x85, 0x5a, 0x5a, + 0x2a, 0x19, 0x5e, 0x3e, 0xa3, 0xcb, 0xf9, 0xf9, 0xf3, 0x70, 0x30, 0xee, 0xe3, 0x29, 0x30, 0x55, + 0x9a, 0xdb, 0xbd, 0x82, 0x7c, 0x7c, 0xf1, 0xb1, 0x37, 0xcd, 0xae, 0x80, 0xac, 0xe8, 0x14, 0x2d, + 0xde, 0x88, 0xbe, 0x14, 0x76, 0x6b, 0xd2, 0x03, 0xf2, 0xe4, 0x9d, 0xcd, 0x6f, 0xd9, 0x85, 0x8c, + 0x5b, 0xf1, 0x9e, 0x63, 0x91, 0xc7, 0xee, 0x57, 0x50, 0x3b, 0xcc, 0x8c, 0x4a, 0x96, 0xcf, 0xec, + 0xba, 0xe6, 0x58, 0x91, 0x49, 0xa9, 0x36, 0xbd, 0x27, 0xf8, 0x4c, 0x2d, 0x3b, 0x5d, 0xe0, 0x6b, + 0x3d, 0xb8, 0x48, 0x49, 0xbc, 0xde, 0x13, 0x4f, 0xdd, 0xb1, 0x5e, 0xe0, 0x3b, 0x6c, 0x76, 0x7d, + 0x3d, 0xd2, 0x1f, 0x66, 0x5c, 0x7b, 0x2b, 0xf7, 0xd2, 0x6c, 0x86, 0xa6, 0x7b, 0x69, 0x61, 0x1f, + 0xf2, 0xc4, 0xff, 0x19, 0x54, 0x63, 0xef, 0x91, 0xd3, 0x0d, 0x42, 0xbe, 0x57, 0x23, 0x49, 0x49, + 0x2a, 0x24, 0x45, 0xf9, 0x80, 0xe6, 0xaf, 0xe6, 0x49, 0x38, 0xd4, 0xdc, 0x92, 0x84, 0x57, 0x5c, + 0x22, 0x71, 0x66, 0x5e, 0x0a, 0xce, 0x02, 0x3b, 0xac, 0x78, 0xb7, 0xf7, 0x52, 0x18, 0xa5, 0x47, + 0xfb, 0xf4, 0x8c, 0x94, 0x73, 0x47, 0x82, 0x91, 0x55, 0x30, 0xbc, 0xbd, 0xaf, 0x1e, 0x2b, 0x39, + 0xe3, 0x7a, 0xfa, 0x01, 0x75, 0xe2, 0xb7, 0x6a, 0x89, 0x20, 0x86, 0xfa, 0xfb, 0xe0, 0x74, 0x51, + 0xf2, 0xa1, 0x55, 0x16, 0x86, 0xf2, 0xa8, 0xaa, 0xc8, 0x2a, 0x18, 0x9c, 0x1d, 0x45, 0xfc, 0xc0, + 0x8d, 0x9e, 0x2f, 0xd9, 0xeb, 0xb1, 0x59, 0x41, 0x2f, 0x90, 0xbc, 0x41, 0x16, 0xda, 0xeb, 0xe4, + 0x4b, 0x5c, 0x4a, 0x04, 0xfb, 0x45, 0xdf, 0x8f, 0xc2, 0x28, 0x70, 0x3a, 0xf5, 0x66, 0xe0, 0x76, + 0xa2, 0xdc, 0x4e, 0xc7, 0x0e, 0xe0, 0x59, 0x64, 0x9a, 0x3f, 0xaa, 0x08, 0x72, 0x9f, 0x15, 0x7d, + 0x47, 0xbd, 0xc9, 0xc9, 0x2a, 0x2c, 0x38, 0xb9, 0xd4, 0x65, 0x58, 0xfb, 0x97, 0xc9, 0xb4, 0x01, + 0x73, 0x39, 0x31, 0x8b, 0xd4, 0xed, 0x6d, 0x71, 0x4c, 0xa3, 0xf9, 0xe2, 0x8a, 0xc9, 0x57, 0x30, + 0x9b, 0x19, 0xd4, 0x48, 0x59, 0xa0, 0x8b, 0x42, 0x1e, 0xf5, 0x62, 0xfe, 0x04, 0x2a, 0xfc, 0x35, + 0x08, 0x3a, 0x3d, 0x1b, 0xf1, 0x6d, 0xe2, 0x37, 0x42, 0x39, 0x08, 0xc9, 0xf5, 0x3a, 0x1f, 0x4f, + 0x3d, 0x78, 0x9f, 0xc1, 0xc0, 0x26, 0x89, 0x94, 0xef, 0xea, 0xc3, 0xcb, 0x2a, 0x2c, 0x7a, 0x88, + 0xb4, 0x0d, 0xb3, 0x7b, 0x34, 0x70, 0x1f, 0x3f, 0x4f, 0x32, 0x94, 0x92, 0xc9, 0x2c, 0x2d, 0xe2, + 0xf8, 0x39, 0xcc, 0x2d, 0xf9, 0x87, 0x1d, 0xf1, 0xe4, 0xcf, 0xe0, 0xa9, 0xae, 0xe2, 0xb3, 0xcb, + 0x7b, 0x3b, 0x42, 0xcd, 0xe7, 0x27, 0xe7, 0x57, 0xfe, 0x6f, 0x3d, 0xf3, 0xf7, 0xab, 0x87, 0x6b, + 0x26, 0xfd, 0x0e, 0x4e, 0xc2, 0xac, 0x6c, 0xfd, 0xfa, 0x24, 0x2c, 0xc8, 0xe6, 0x9f, 0xf3, 0x80, + 0x6c, 0x2e, 0x27, 0x41, 0x7f, 0x01, 0xd7, 0x13, 0xb4, 0x76, 0x53, 0xee, 0x2d, 0x66, 0xbe, 0xf1, + 0x84, 0xc7, 0x75, 0x66, 0x32, 0xf2, 0xcc, 0x76, 0x6a, 0x91, 0x1d, 0xda, 0xed, 0x02, 0x15, 0x8b, + 0xe8, 0xa1, 0x1d, 0x18, 0x26, 0x1a, 0xf1, 0x27, 0x75, 0xda, 0xa2, 0xd5, 0x3a, 0x45, 0x8c, 0x4a, + 0xed, 0x07, 0x30, 0x51, 0xd7, 0x2b, 0xcf, 0xa8, 0x24, 0x77, 0x52, 0xa8, 0x27, 0x44, 0xbd, 0xdb, + 0x5e, 0xe0, 0x48, 0xaa, 0x36, 0x9e, 0x13, 0xf5, 0x22, 0xd7, 0x75, 0xc6, 0x48, 0x1e, 0xa7, 0x76, + 0x81, 0xac, 0xdc, 0x8e, 0xca, 0x75, 0x26, 0x3b, 0xdf, 0x5c, 0x83, 0xa7, 0xbb, 0x49, 0xa6, 0xee, + 0x24, 0x56, 0xef, 0x1c, 0xb9, 0xca, 0xa1, 0xbe, 0x30, 0xf7, 0x27, 0xf7, 0xf3, 0x89, 0xd3, 0xe5, + 0xe9, 0x7e, 0x3e, 0xa9, 0x24, 0x7c, 0xba, 0x9f, 0x4f, 0x46, 0x86, 0xbd, 0x15, 0xe4, 0x15, 0xe7, + 0x09, 0x2a, 0x30, 0x46, 0x28, 0x36, 0x19, 0xe9, 0x88, 0x1e, 0xe8, 0x01, 0x42, 0x78, 0x76, 0xa1, + 0x02, 0x5b, 0x6b, 0x32, 0x30, 0x48, 0x22, 0x1d, 0xd1, 0x5d, 0x28, 0xf3, 0x44, 0x0b, 0x71, 0x4c, + 0xc5, 0xd8, 0x6f, 0x30, 0x9d, 0xff, 0xa1, 0x60, 0x50, 0xcb, 0xc9, 0x68, 0x74, 0xca, 0x64, 0x96, + 0x13, 0xa6, 0xae, 0x60, 0xaa, 0x42, 0x1c, 0x73, 0x4e, 0x19, 0xa6, 0x52, 0x61, 0xe8, 0xe6, 0xcf, + 0x67, 0x94, 0x28, 0x95, 0x72, 0x42, 0x8f, 0x50, 0xa7, 0xba, 0x94, 0x11, 0xb6, 0x6e, 0xfe, 0x42, + 0x66, 0x99, 0x60, 0x14, 0xf1, 0x34, 0xd1, 0xd9, 0xc9, 0xad, 0xe3, 0x57, 0x60, 0x05, 0x38, 0xb2, + 0x9a, 0x1b, 0x27, 0x41, 0x15, 0xb5, 0x52, 0x95, 0x25, 0x29, 0x23, 0xa3, 0xf6, 0xeb, 0x19, 0x0f, + 0x35, 0x0c, 0x8c, 0xd8, 0x1b, 0xac, 0x38, 0xbd, 0x37, 0x79, 0x28, 0xb3, 0xd6, 0xe4, 0xd4, 0xd4, + 0x8b, 0x41, 0xee, 0x08, 0x3e, 0x94, 0x79, 0x6a, 0x5e, 0x36, 0xe3, 0x47, 0x70, 0x31, 0xf1, 0xfa, + 0xc3, 0x64, 0x7c, 0x23, 0xfb, 0x89, 0x48, 0xa6, 0x78, 0xf2, 0x75, 0xf6, 0x2b, 0xe9, 0x57, 0x22, + 0x89, 0x71, 0x3f, 0xed, 0x9a, 0xb7, 0x01, 0x53, 0xb8, 0xcc, 0xc8, 0xdc, 0xf0, 0x71, 0x7c, 0x1a, + 0x13, 0x9c, 0x0c, 0x94, 0x94, 0x2c, 0x55, 0x2e, 0xb3, 0x13, 0xe2, 0x45, 0x31, 0xcf, 0x34, 0x3f, + 0x6f, 0x3e, 0x33, 0x46, 0x60, 0xd6, 0x2e, 0x26, 0x12, 0xd8, 0x93, 0x1f, 0xc2, 0x99, 0xf8, 0xa1, + 0x31, 0x67, 0x91, 0x81, 0x56, 0x60, 0x28, 0x3b, 0x13, 0xbf, 0x36, 0x3e, 0x3d, 0xf9, 0xaa, 0xdc, + 0x8a, 0x62, 0xf2, 0x4b, 0xa9, 0xb7, 0x32, 0x46, 0x1f, 0x4e, 0xb2, 0x23, 0x69, 0xb2, 0x3d, 0xed, + 0xe8, 0x34, 0xf1, 0x73, 0xcb, 0x0e, 0xbd, 0xa8, 0x7f, 0x6e, 0x85, 0xe1, 0x21, 0x95, 0xfa, 0x9b, + 0xc3, 0x67, 0x03, 0xae, 0x61, 0xb8, 0x96, 0x6d, 0x1e, 0xa0, 0x2f, 0x1b, 0x2b, 0xbf, 0xed, 0xc9, + 0x20, 0x2f, 0x6d, 0xb8, 0xda, 0x33, 0xf6, 0x24, 0xb9, 0x65, 0xb8, 0xb8, 0xf4, 0x8e, 0x52, 0x59, + 0x70, 0xf2, 0x98, 0xc9, 0x0a, 0xe1, 0xa8, 0xf6, 0xd9, 0x82, 0x68, 0x92, 0x6a, 0x9f, 0x2d, 0x8c, + 0x01, 0xf9, 0x39, 0xa6, 0x82, 0x12, 0x7b, 0x14, 0x86, 0x60, 0xa2, 0x1e, 0x0f, 0x4a, 0x5d, 0x78, + 0xed, 0x73, 0xd5, 0xbc, 0x14, 0x4d, 0x11, 0xe2, 0x99, 0xe6, 0xb2, 0x38, 0x89, 0xe5, 0x31, 0xef, + 0xcd, 0xa4, 0xc0, 0xb5, 0xfa, 0x32, 0x9f, 0x80, 0xa7, 0x6e, 0x79, 0x0e, 0x7c, 0x71, 0xf9, 0x67, + 0xff, 0xe1, 0x72, 0xe9, 0x67, 0x3f, 0xbf, 0x5c, 0xfa, 0xd7, 0x3f, 0xbf, 0x5c, 0xfa, 0xf7, 0x3f, + 0xbf, 0x5c, 0xfa, 0x72, 0xe1, 0x64, 0xa1, 0x91, 0x9b, 0x6d, 0x97, 0x7a, 0xd1, 0x2d, 0xce, 0x6e, + 0x18, 0xff, 0x7b, 0xeb, 0xbf, 0x07, 0x00, 0x00, 0xff, 0xff, 0xdc, 0x66, 0x4b, 0x5c, 0x15, 0xeb, + 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -31791,6 +31950,18 @@ func (m *MFAAuthenticateChallenge) MarshalToSizedBuffer(dAtA []byte) (int, error i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } + if m.SSOChallenge != nil { + { + size, err := m.SSOChallenge.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintAuthservice(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x2a + } if m.MFARequired != 0 { i = encodeVarintAuthservice(dAtA, i, uint64(m.MFARequired)) i-- @@ -31901,6 +32072,27 @@ func (m *MFAAuthenticateResponse_Webauthn) MarshalToSizedBuffer(dAtA []byte) (in } return len(dAtA) - i, nil } +func (m *MFAAuthenticateResponse_SSO) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *MFAAuthenticateResponse_SSO) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + if m.SSO != nil { + { + size, err := m.SSO.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintAuthservice(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x22 + } + return len(dAtA) - i, nil +} func (m *TOTPChallenge) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -31962,6 +32154,88 @@ func (m *TOTPResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *SSOChallenge) 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 *SSOChallenge) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *SSOChallenge) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.XXX_unrecognized != nil { + i -= len(m.XXX_unrecognized) + copy(dAtA[i:], m.XXX_unrecognized) + } + if len(m.RedirectUrl) > 0 { + i -= len(m.RedirectUrl) + copy(dAtA[i:], m.RedirectUrl) + i = encodeVarintAuthservice(dAtA, i, uint64(len(m.RedirectUrl))) + i-- + dAtA[i] = 0x12 + } + if len(m.RequestId) > 0 { + i -= len(m.RequestId) + copy(dAtA[i:], m.RequestId) + i = encodeVarintAuthservice(dAtA, i, uint64(len(m.RequestId))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *SSOResponse) 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 *SSOResponse) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *SSOResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.XXX_unrecognized != nil { + i -= len(m.XXX_unrecognized) + copy(dAtA[i:], m.XXX_unrecognized) + } + if len(m.Token) > 0 { + i -= len(m.Token) + copy(dAtA[i:], m.Token) + i = encodeVarintAuthservice(dAtA, i, uint64(len(m.Token))) + i-- + dAtA[i] = 0x12 + } + if len(m.RequestId) > 0 { + i -= len(m.RequestId) + copy(dAtA[i:], m.RequestId) + i = encodeVarintAuthservice(dAtA, i, uint64(len(m.RequestId))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + func (m *MFARegisterChallenge) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -32991,20 +33265,20 @@ func (m *GetEventsRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { dAtA[i] = 0x22 } } - n64, err64 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.EndDate, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.EndDate):]) - if err64 != nil { - return 0, err64 + n66, err66 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.EndDate, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.EndDate):]) + if err66 != nil { + return 0, err66 } - i -= n64 - i = encodeVarintAuthservice(dAtA, i, uint64(n64)) + i -= n66 + i = encodeVarintAuthservice(dAtA, i, uint64(n66)) i-- dAtA[i] = 0x1a - n65, err65 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.StartDate, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.StartDate):]) - if err65 != nil { - return 0, err65 + n67, err67 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.StartDate, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.StartDate):]) + if err67 != nil { + return 0, err67 } - i -= n65 - i = encodeVarintAuthservice(dAtA, i, uint64(n65)) + i -= n67 + i = encodeVarintAuthservice(dAtA, i, uint64(n67)) i-- dAtA[i] = 0x12 if len(m.Namespace) > 0 { @@ -33058,20 +33332,20 @@ func (m *GetSessionEventsRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) i-- dAtA[i] = 0x18 } - n66, err66 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.EndDate, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.EndDate):]) - if err66 != nil { - return 0, err66 + n68, err68 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.EndDate, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.EndDate):]) + if err68 != nil { + return 0, err68 } - i -= n66 - i = encodeVarintAuthservice(dAtA, i, uint64(n66)) + i -= n68 + i = encodeVarintAuthservice(dAtA, i, uint64(n68)) i-- dAtA[i] = 0x12 - n67, err67 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.StartDate, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.StartDate):]) - if err67 != nil { - return 0, err67 + n69, err69 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.StartDate, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.StartDate):]) + if err69 != nil { + return 0, err69 } - i -= n67 - i = encodeVarintAuthservice(dAtA, i, uint64(n67)) + i -= n69 + i = encodeVarintAuthservice(dAtA, i, uint64(n69)) i-- dAtA[i] = 0xa return len(dAtA) - i, nil @@ -34437,12 +34711,12 @@ func (m *RecoveryCodes) MarshalToSizedBuffer(dAtA []byte) (int, error) { i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } - n74, err74 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.Created, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.Created):]) - if err74 != nil { - return 0, err74 + n76, err76 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.Created, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.Created):]) + if err76 != nil { + return 0, err76 } - i -= n74 - i = encodeVarintAuthservice(dAtA, i, uint64(n74)) + i -= n76 + i = encodeVarintAuthservice(dAtA, i, uint64(n76)) i-- dAtA[i] = 0x12 if len(m.Codes) > 0 { @@ -34671,6 +34945,13 @@ func (m *CreateAuthenticateChallengeRequest) MarshalToSizedBuffer(dAtA []byte) ( i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } + if len(m.SSOClientRedirectURL) > 0 { + i -= len(m.SSOClientRedirectURL) + copy(dAtA[i:], m.SSOClientRedirectURL) + i = encodeVarintAuthservice(dAtA, i, uint64(len(m.SSOClientRedirectURL))) + i-- + dAtA[i] = 0x3a + } if m.ChallengeExtensions != nil { { size, err := m.ChallengeExtensions.MarshalToSizedBuffer(dAtA[:i]) @@ -35886,12 +36167,12 @@ func (m *SessionTrackerUpdateExpiry) MarshalToSizedBuffer(dAtA []byte) (int, err copy(dAtA[i:], m.XXX_unrecognized) } if m.Expires != nil { - n99, err99 := github_com_gogo_protobuf_types.StdTimeMarshalTo(*m.Expires, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(*m.Expires):]) - if err99 != nil { - return 0, err99 + n101, err101 := github_com_gogo_protobuf_types.StdTimeMarshalTo(*m.Expires, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(*m.Expires):]) + if err101 != nil { + return 0, err101 } - i -= n99 - i = encodeVarintAuthservice(dAtA, i, uint64(n99)) + i -= n101 + i = encodeVarintAuthservice(dAtA, i, uint64(n101)) i-- dAtA[i] = 0xa } @@ -41006,6 +41287,10 @@ func (m *MFAAuthenticateChallenge) Size() (n int) { if m.MFARequired != 0 { n += 1 + sovAuthservice(uint64(m.MFARequired)) } + if m.SSOChallenge != nil { + l = m.SSOChallenge.Size() + n += 1 + l + sovAuthservice(uint64(l)) + } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } @@ -41051,6 +41336,18 @@ func (m *MFAAuthenticateResponse_Webauthn) Size() (n int) { } return n } +func (m *MFAAuthenticateResponse_SSO) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.SSO != nil { + l = m.SSO.Size() + n += 1 + l + sovAuthservice(uint64(l)) + } + return n +} func (m *TOTPChallenge) Size() (n int) { if m == nil { return 0 @@ -41079,6 +41376,46 @@ func (m *TOTPResponse) Size() (n int) { return n } +func (m *SSOChallenge) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.RequestId) + if l > 0 { + n += 1 + l + sovAuthservice(uint64(l)) + } + l = len(m.RedirectUrl) + if l > 0 { + n += 1 + l + sovAuthservice(uint64(l)) + } + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + +func (m *SSOResponse) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.RequestId) + if l > 0 { + n += 1 + l + sovAuthservice(uint64(l)) + } + l = len(m.Token) + if l > 0 { + n += 1 + l + sovAuthservice(uint64(l)) + } + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + func (m *MFARegisterChallenge) Size() (n int) { if m == nil { return 0 @@ -42367,6 +42704,10 @@ func (m *CreateAuthenticateChallengeRequest) Size() (n int) { l = m.ChallengeExtensions.Size() n += 1 + l + sovAuthservice(uint64(l)) } + l = len(m.SSOClientRedirectURL) + if l > 0 { + n += 1 + l + sovAuthservice(uint64(l)) + } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } @@ -56213,6 +56554,42 @@ func (m *MFAAuthenticateChallenge) Unmarshal(dAtA []byte) error { break } } + case 5: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field SSOChallenge", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAuthservice + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthAuthservice + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthAuthservice + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.SSOChallenge == nil { + m.SSOChallenge = &SSOChallenge{} + } + if err := m.SSOChallenge.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipAuthservice(dAtA[iNdEx:]) @@ -56293,15 +56670,50 @@ func (m *MFAAuthenticateResponse) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &TOTPResponse{} + v := &TOTPResponse{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + m.Response = &MFAAuthenticateResponse_TOTP{v} + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Webauthn", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAuthservice + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthAuthservice + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthAuthservice + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + v := &webauthn.CredentialAssertionResponse{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Response = &MFAAuthenticateResponse_TOTP{v} + m.Response = &MFAAuthenticateResponse_Webauthn{v} iNdEx = postIndex - case 3: + case 4: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Webauthn", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field SSO", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -56328,11 +56740,11 @@ func (m *MFAAuthenticateResponse) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &webauthn.CredentialAssertionResponse{} + v := &SSOResponse{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.Response = &MFAAuthenticateResponse_Webauthn{v} + m.Response = &MFAAuthenticateResponse_SSO{v} iNdEx = postIndex default: iNdEx = preIndex @@ -56490,6 +56902,236 @@ func (m *TOTPResponse) Unmarshal(dAtA []byte) error { } return nil } +func (m *SSOChallenge) 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 ErrIntOverflowAuthservice + } + 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: SSOChallenge: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: SSOChallenge: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field RequestId", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAuthservice + } + 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 ErrInvalidLengthAuthservice + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthAuthservice + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.RequestId = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field RedirectUrl", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAuthservice + } + 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 ErrInvalidLengthAuthservice + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthAuthservice + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.RedirectUrl = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipAuthservice(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthAuthservice + } + 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 *SSOResponse) 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 ErrIntOverflowAuthservice + } + 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: SSOResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: SSOResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field RequestId", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAuthservice + } + 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 ErrInvalidLengthAuthservice + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthAuthservice + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.RequestId = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Token", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAuthservice + } + 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 ErrInvalidLengthAuthservice + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthAuthservice + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Token = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipAuthservice(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthAuthservice + } + 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 *MFARegisterChallenge) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -63162,6 +63804,38 @@ func (m *CreateAuthenticateChallengeRequest) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 7: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field SSOClientRedirectURL", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAuthservice + } + 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 ErrInvalidLengthAuthservice + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthAuthservice + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.SSOClientRedirectURL = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipAuthservice(dAtA[iNdEx:]) diff --git a/api/proto/teleport/legacy/client/proto/authservice.proto b/api/proto/teleport/legacy/client/proto/authservice.proto index 0afe660915936..4f4a4dff614bf 100644 --- a/api/proto/teleport/legacy/client/proto/authservice.proto +++ b/api/proto/teleport/legacy/client/proto/authservice.proto @@ -1215,6 +1215,10 @@ message MFAAuthenticateChallenge { // communications, in case of streaming RPCs. It may also return empty // challenges for all other fields. MFARequired MFARequired = 4; + // SSO Challenge is an SSO MFA challenge. If set, the client can go to the + // IdP redirect URL to perform an MFA check in the IdP and obtain an MFA token. + // This token paired with the request id can then be used as MFA verification. + SSOChallenge SSOChallenge = 5; } // MFAAuthenticateResponse is a response to MFAAuthenticateChallenge using one @@ -1224,6 +1228,7 @@ message MFAAuthenticateResponse { // Removed: U2FResponse U2F = 1; TOTPResponse TOTP = 2; webauthn.CredentialAssertionResponse Webauthn = 3; + SSOResponse SSO = 4; } } @@ -1240,6 +1245,22 @@ message TOTPResponse { string Code = 1; } +// SSOChallenge contains SSO auth request details to perform an SSO MFA check. +message SSOChallenge { + // RequestId is the ID of an SSO auth request. + string request_id = 1; + // RedirectUrl is an IdP redirect URL to initate the SSO MFA flow. + string redirect_url = 2; +} + +// SSOResponse is a response to SSOChallenge. +message SSOResponse { + // RequestId is the ID of an SSO auth request. + string request_id = 1; + // Token is a secret token used to verify the user's SSO MFA session. + string token = 2; +} + // MFARegisterChallenge is a challenge for registering a new MFA device. message MFARegisterChallenge { // Request depends on the type of the MFA device being registered. @@ -1864,9 +1885,11 @@ message CreateAuthenticateChallengeRequest { // call [AuthService.IsMFARequired] in the leaf instead of setting this field. IsMFARequiredRequest MFARequiredCheck = 5 [(gogoproto.jsontag) = "mfa_required_check,omitempty"]; // ChallengeExtensions are extensions that will be apply to the issued MFA challenge. - // ChallengeExtensions only apply to webauthn challenges currently. Required, except - // for v15 clients and older. + // Required, except for v15 clients and older. teleport.mfa.v1.ChallengeExtensions ChallengeExtensions = 6 [(gogoproto.jsontag) = "challenge_extensions,omitempty"]; + // SSOClientRedirectURL should be supplied If the client supports SSO MFA checks. + // If unset, the server will only return non-SSO challenges. + string SSOClientRedirectURL = 7 [(gogoproto.jsontag) = "sso_client_redirect_url,omitempty"]; } // CreatePrivilegeTokenRequest defines a request to obtain a privilege token. diff --git a/e b/e index b5db15651a8d4..88c5aecb075ba 160000 --- a/e +++ b/e @@ -1 +1 @@ -Subproject commit b5db15651a8d4590601e470d3e86cc3698e011b2 +Subproject commit 88c5aecb075bae5d3c3276fa239de69fa78112f2 diff --git a/lib/auth/auth.go b/lib/auth/auth.go index 85881e3c026d7..372253e950e44 100644 --- a/lib/auth/auth.go +++ b/lib/auth/auth.go @@ -3673,7 +3673,7 @@ func (a *Server) CreateAuthenticateChallenge(ctx context.Context, req *proto.Cre } } - challenges, err := a.mfaAuthChallenge(ctx, username, challengeExtensions) + challenges, err := a.mfaAuthChallenge(ctx, username, req.SSOClientRedirectURL, challengeExtensions) if err != nil { // Do not obfuscate config-related errors. if errors.Is(err, types.ErrPasswordlessRequiresWebauthn) || errors.Is(err, types.ErrPasswordlessDisabledBySettings) { @@ -6754,7 +6754,7 @@ func (a *Server) isMFARequired(ctx context.Context, checker services.AccessCheck // mfaAuthChallenge constructs an MFAAuthenticateChallenge for all MFA devices // registered by the user. -func (a *Server) mfaAuthChallenge(ctx context.Context, user string, challengeExtensions *mfav1.ChallengeExtensions) (*proto.MFAAuthenticateChallenge, error) { +func (a *Server) mfaAuthChallenge(ctx context.Context, user string, ssoClientRedirectURL string, challengeExtensions *mfav1.ChallengeExtensions) (*proto.MFAAuthenticateChallenge, error) { isPasswordless := challengeExtensions.Scope == mfav1.ChallengeScope_CHALLENGE_SCOPE_PASSWORDLESS_LOGIN // Check what kind of MFA is enabled. @@ -6764,6 +6764,7 @@ func (a *Server) mfaAuthChallenge(ctx context.Context, user string, challengeExt } enableTOTP := apref.IsSecondFactorTOTPAllowed() enableWebauthn := apref.IsSecondFactorWebauthnAllowed() + enableSSO := apref.IsSecondFactorSSOAllowed() // Fetch configurations. The IsSecondFactor*Allowed calls above already // include the necessary checks of config empty, disabled, etc. @@ -6834,7 +6835,7 @@ func (a *Server) mfaAuthChallenge(ctx context.Context, user string, challengeExt if err != nil { return nil, trace.Wrap(err) } - groupedDevs := groupByDeviceType(devs, enableWebauthn) + groupedDevs := groupByDeviceType(devs) challenge := &proto.MFAAuthenticateChallenge{} // TOTP challenge. @@ -6843,7 +6844,7 @@ func (a *Server) mfaAuthChallenge(ctx context.Context, user string, challengeExt } // WebAuthn challenge. - if len(groupedDevs.Webauthn) > 0 { + if enableWebauthn && len(groupedDevs.Webauthn) > 0 { webLogin := &wanlib.LoginFlow{ U2F: u2fPref, Webauthn: webConfig, @@ -6856,6 +6857,14 @@ func (a *Server) mfaAuthChallenge(ctx context.Context, user string, challengeExt challenge.WebauthnChallenge = wantypes.CredentialAssertionToProto(assertion) } + // If the user has an SSO device and the client provided a redirect URL to handle + // the MFA SSO flow, create an SSO challenge. + if enableSSO && groupedDevs.SSO != nil && ssoClientRedirectURL != "" { + if challenge.SSOChallenge, err = a.beginSSOMFAChallenge(ctx, user, groupedDevs.SSO.GetSso(), ssoClientRedirectURL, challengeExtensions); err != nil { + return nil, trace.Wrap(err) + } + } + clusterName, err := a.GetClusterName() if err != nil { return nil, trace.Wrap(err) @@ -6883,20 +6892,16 @@ type devicesByType struct { SSO *types.MFADevice } -func groupByDeviceType(devs []*types.MFADevice, groupWebauthn bool) devicesByType { +func groupByDeviceType(devs []*types.MFADevice) devicesByType { res := devicesByType{} for _, dev := range devs { switch dev.Device.(type) { case *types.MFADevice_Totp: res.TOTP = true case *types.MFADevice_U2F: - if groupWebauthn { - res.Webauthn = append(res.Webauthn, dev) - } + res.Webauthn = append(res.Webauthn, dev) case *types.MFADevice_Webauthn: - if groupWebauthn { - res.Webauthn = append(res.Webauthn, dev) - } + res.Webauthn = append(res.Webauthn, dev) case *types.MFADevice_Sso: res.SSO = dev default: @@ -6914,7 +6919,7 @@ func groupByDeviceType(devs []*types.MFADevice, groupWebauthn bool) devicesByTyp // Use only for registration purposes. func (a *Server) validateMFAAuthResponseForRegister(ctx context.Context, resp *proto.MFAAuthenticateResponse, username string, requiredExtensions *mfav1.ChallengeExtensions) (hasDevices bool, err error) { // Let users without a useable device go through registration. - if resp == nil || (resp.GetTOTP() == nil && resp.GetWebauthn() == nil) { + if resp == nil || (resp.GetTOTP() == nil && resp.GetWebauthn() == nil && resp.GetSSO() == nil) { devices, err := a.Services.GetMFADevices(ctx, username, false /* withSecrets */) if err != nil { return false, trace.Wrap(err) @@ -6923,16 +6928,18 @@ func (a *Server) validateMFAAuthResponseForRegister(ctx context.Context, resp *p // Allowed, no devices registered. return false, nil } + devsByType := groupByDeviceType(devices) authPref, err := a.GetAuthPreference(ctx) if err != nil { return false, trace.Wrap(err) } - totpEnabled := authPref.IsSecondFactorTOTPAllowed() - webauthnEnabled := authPref.IsSecondFactorWebauthnAllowed() - devsByType := groupByDeviceType(devices, webauthnEnabled) - if (totpEnabled && devsByType.TOTP) || (webauthnEnabled && len(devsByType.Webauthn) > 0) { + hasTOTP := authPref.IsSecondFactorTOTPAllowed() && devsByType.TOTP + hasWebAuthn := authPref.IsSecondFactorWebauthnAllowed() && len(devsByType.Webauthn) > 0 + hasSSO := authPref.IsSecondFactorSSOAllowed() && devsByType.SSO != nil + + if hasTOTP || hasWebAuthn || hasSSO { return false, trace.BadParameter("second factor authentication required") } @@ -6960,6 +6967,10 @@ func (a *Server) ValidateMFAAuthResponse( user string, requiredExtensions *mfav1.ChallengeExtensions, ) (*authz.MFAAuthData, error) { + if requiredExtensions == nil { + return nil, trace.BadParameter("required challenge extensions parameter required") + } + authData, validateErr := a.validateMFAAuthResponseInternal(ctx, resp, user, requiredExtensions) // validateErr handled after audit. @@ -7094,6 +7105,9 @@ func (a *Server) validateMFAAuthResponseInternal( AllowReuse: mfav1.ChallengeAllowReuse_CHALLENGE_ALLOW_REUSE_NO, }, nil + case *proto.MFAAuthenticateResponse_SSO: + mfaAuthData, err := a.verifySSOMFASession(ctx, user, res.SSO.RequestId, res.SSO.Token, requiredExtensions) + return mfaAuthData, trace.Wrap(err) default: return nil, trace.BadParameter("unknown or missing MFAAuthenticateResponse type %T", resp.Response) } diff --git a/lib/auth/grpcserver.go b/lib/auth/grpcserver.go index e0e39b17de0d1..e94eea9fb04f9 100644 --- a/lib/auth/grpcserver.go +++ b/lib/auth/grpcserver.go @@ -2165,8 +2165,11 @@ func (g *GRPCServer) DeleteRole(ctx context.Context, req *authpb.DeleteRoleReque func doMFAPresenceChallenge(ctx context.Context, actx *grpcContext, stream authpb.AuthService_MaintainSessionPresenceServer, challengeReq *authpb.PresenceMFAChallengeRequest) error { user := actx.User.GetName() + // TODO(Joerger): Extend SSO MFA support for moderated sessions. + var ssoClientRedirectURL string + chalExt := &mfav1pb.ChallengeExtensions{Scope: mfav1pb.ChallengeScope_CHALLENGE_SCOPE_USER_SESSION} - authChallenge, err := actx.authServer.mfaAuthChallenge(ctx, user, chalExt) + authChallenge, err := actx.authServer.mfaAuthChallenge(ctx, user, ssoClientRedirectURL, chalExt) if err != nil { return trace.Wrap(err) } diff --git a/lib/auth/oidc.go b/lib/auth/oidc.go index 3418be1942c69..fd138373f2540 100644 --- a/lib/auth/oidc.go +++ b/lib/auth/oidc.go @@ -33,6 +33,7 @@ import ( type OIDCService interface { CreateOIDCAuthRequest(ctx context.Context, req types.OIDCAuthRequest) (*types.OIDCAuthRequest, error) + CreateOIDCAuthRequestForMFA(ctx context.Context, req types.OIDCAuthRequest) (*types.OIDCAuthRequest, error) ValidateOIDCAuthCallback(ctx context.Context, q url.Values) (*authclient.OIDCAuthResponse, error) } @@ -124,6 +125,8 @@ func (a *Server) DeleteOIDCConnector(ctx context.Context, connectorName string) return nil } +// CreateOIDCAuthRequest delegates the method call to the oidcAuthService if present, +// or returns a NotImplemented error if not present. func (a *Server) CreateOIDCAuthRequest(ctx context.Context, req types.OIDCAuthRequest) (*types.OIDCAuthRequest, error) { if a.oidcAuthService == nil { return nil, errOIDCNotImplemented @@ -133,6 +136,19 @@ func (a *Server) CreateOIDCAuthRequest(ctx context.Context, req types.OIDCAuthRe return rq, trace.Wrap(err) } +// CreateOIDCAuthRequestForMFA delegates the method call to the oidcAuthService if present, +// or returns a NotImplemented error if not present. +func (a *Server) CreateOIDCAuthRequestForMFA(ctx context.Context, req types.OIDCAuthRequest) (*types.OIDCAuthRequest, error) { + if a.oidcAuthService == nil { + return nil, errOIDCNotImplemented + } + + rq, err := a.oidcAuthService.CreateOIDCAuthRequestForMFA(ctx, req) + return rq, trace.Wrap(err) +} + +// ValidateOIDCAuthCallback delegates the method call to the oidcAuthService if present, +// or returns a NotImplemented error if not present. func (a *Server) ValidateOIDCAuthCallback(ctx context.Context, q url.Values) (*authclient.OIDCAuthResponse, error) { if a.oidcAuthService == nil { return nil, errOIDCNotImplemented diff --git a/lib/auth/saml.go b/lib/auth/saml.go index dd5e381ee6730..4c11479967156 100644 --- a/lib/auth/saml.go +++ b/lib/auth/saml.go @@ -44,9 +44,8 @@ var ErrSAMLRequiresEnterprise = &trace.AccessDeniedError{Message: "SAML is only // authentication - the connector CRUD operations and Get methods are // implemented in auth.Server and provide no connector-specific logic. type SAMLService interface { - // CreateSAMLAuthRequest creates SAML AuthnRequest CreateSAMLAuthRequest(ctx context.Context, req types.SAMLAuthRequest) (*types.SAMLAuthRequest, error) - // ValidateSAMLResponse validates SAML auth response + CreateSAMLAuthRequestForMFA(ctx context.Context, req types.SAMLAuthRequest) (*types.SAMLAuthRequest, error) ValidateSAMLResponse(ctx context.Context, samlResponse, connectorID, clientIP string) (*authclient.SAMLAuthResponse, error) } @@ -214,6 +213,17 @@ func (a *Server) CreateSAMLAuthRequest(ctx context.Context, req types.SAMLAuthRe return rq, trace.Wrap(err) } +// CreateSAMLAuthRequestForMFA delegates the method call to the samlAuthService if present, +// or returns a NotImplemented error if not present. +func (a *Server) CreateSAMLAuthRequestForMFA(ctx context.Context, req types.SAMLAuthRequest) (*types.SAMLAuthRequest, error) { + if a.samlAuthService == nil { + return nil, trace.Wrap(ErrSAMLRequiresEnterprise) + } + + rq, err := a.samlAuthService.CreateSAMLAuthRequestForMFA(ctx, req) + return rq, trace.Wrap(err) +} + // ValidateSAMLResponse delegates the method call to the samlAuthService if present, // or returns a NotImplemented error if not present. func (a *Server) ValidateSAMLResponse(ctx context.Context, samlResponse, connectorID, clientIP string) (*authclient.SAMLAuthResponse, error) { diff --git a/lib/auth/sso_mfa.go b/lib/auth/sso_mfa.go index 0e430ce99d739..d53659f9d3ba9 100644 --- a/lib/auth/sso_mfa.go +++ b/lib/auth/sso_mfa.go @@ -18,18 +18,124 @@ package auth import ( "context" + "crypto/subtle" "github.com/gravitational/trace" + "github.com/gravitational/teleport/api/client/proto" + "github.com/gravitational/teleport/api/constants" mfav1 "github.com/gravitational/teleport/api/gen/proto/go/teleport/mfa/v1" + "github.com/gravitational/teleport/api/types" + "github.com/gravitational/teleport/lib/authz" "github.com/gravitational/teleport/lib/defaults" "github.com/gravitational/teleport/lib/services" "github.com/gravitational/teleport/lib/utils" ) -// UpsertSSOMFASession upserts a new unverified SSO MFA session for the given username, +// beginSSOMFAChallenge creates a new SSO MFA auth request and session data for the given user and sso device. +func (a *Server) beginSSOMFAChallenge(ctx context.Context, user string, sso *types.SSOMFADevice, ssoClientRedirectURL string, ext *mfav1.ChallengeExtensions) (*proto.SSOChallenge, error) { + chal := new(proto.SSOChallenge) + switch sso.ConnectorType { + case constants.SAML: + resp, err := a.CreateSAMLAuthRequestForMFA(ctx, types.SAMLAuthRequest{ + ConnectorID: sso.ConnectorId, + Type: sso.ConnectorType, + ClientRedirectURL: ssoClientRedirectURL, + CheckUser: true, + }) + if err != nil { + return nil, trace.Wrap(err) + } + chal.RequestId = resp.ID + chal.RedirectUrl = resp.RedirectURL + case constants.OIDC: + resp, err := a.CreateOIDCAuthRequestForMFA(ctx, types.OIDCAuthRequest{ + ConnectorID: sso.ConnectorId, + Type: sso.ConnectorType, + ClientRedirectURL: ssoClientRedirectURL, + CheckUser: true, + }) + if err != nil { + return nil, trace.Wrap(err) + } + chal.RequestId = resp.StateToken + chal.RedirectUrl = resp.RedirectURL + default: + return nil, trace.BadParameter("unsupported sso connector type %v", sso.ConnectorType) + } + + if err := a.upsertSSOMFASession(ctx, user, chal.RequestId, sso.ConnectorId, sso.ConnectorType, ext); err != nil { + return nil, trace.Wrap(err) + } + + return chal, nil +} + +// verifySSOMFASession verifies that the given sso mfa token matches an existing MFA session +// for the user and session ID. It also checks the required extensions, and finishes by deleting +// the MFA session if reuse is not allowed. +func (a *Server) verifySSOMFASession(ctx context.Context, username, sessionID, token string, requiredExtensions *mfav1.ChallengeExtensions) (*authz.MFAAuthData, error) { + if requiredExtensions == nil { + return nil, trace.BadParameter("requested challenge extensions must be supplied.") + } + + const notFoundErrMsg = "mfa sso session data not found" + mfaSess, err := a.GetSSOMFASessionData(ctx, sessionID) + if trace.IsNotFound(err) { + return nil, trace.AccessDenied(notFoundErrMsg) + } else if err != nil { + return nil, trace.Wrap(err) + } + + // Verify the user's name and sso device matches. + if mfaSess.Username != username { + return nil, trace.AccessDenied(notFoundErrMsg) + } + + // Check if the MFA session matches the user's SSO MFA settings. + devs, err := a.Services.GetMFADevices(ctx, username, false /* withSecrets */) + if err != nil { + return nil, trace.Wrap(err) + } + + groupedDevs := groupByDeviceType(devs) + if groupedDevs.SSO == nil { + return nil, trace.AccessDenied("invalid sso mfa session data; non-sso user") + } else if groupedDevs.SSO.GetSso().ConnectorId != mfaSess.ConnectorID || groupedDevs.SSO.GetSso().ConnectorType != mfaSess.ConnectorType { + return nil, trace.AccessDenied("invalid sso mfa session data; mismatched sso auth connector") + } + + // Verify the token matches. + if subtle.ConstantTimeCompare([]byte(mfaSess.Token), []byte(token)) == 0 { + return nil, trace.AccessDenied("invalid SSO MFA challenge response") + } + + // Check if the given scope is satisfied by the challenge scope. + if requiredExtensions.Scope != mfaSess.ChallengeExtensions.Scope { + return nil, trace.AccessDenied("required scope %q is not satisfied by the given sso mfa session with scope %q", requiredExtensions.Scope, mfaSess.ChallengeExtensions.Scope) + } + + // If this session is reusable, but this context forbids reusable sessions, return an error. + if requiredExtensions.AllowReuse == mfav1.ChallengeAllowReuse_CHALLENGE_ALLOW_REUSE_NO && mfaSess.ChallengeExtensions.AllowReuse == mfav1.ChallengeAllowReuse_CHALLENGE_ALLOW_REUSE_YES { + return nil, trace.AccessDenied("the given sso mfa session allows reuse, but reuse is not permitted in this context") + } + + if mfaSess.ChallengeExtensions.AllowReuse != mfav1.ChallengeAllowReuse_CHALLENGE_ALLOW_REUSE_YES { + if err := a.DeleteSSOMFASessionData(ctx, sessionID); err != nil { + return nil, trace.Wrap(err) + } + } + + return &authz.MFAAuthData{ + Device: groupedDevs.SSO, + User: username, + AllowReuse: mfaSess.ChallengeExtensions.AllowReuse, + }, nil +} + +// upsertSSOMFASession upserts a new unverified SSO MFA session for the given username, // sessionID, connector details, and challenge extensions. -func (a *Server) UpsertSSOMFASession(ctx context.Context, user string, sessionID string, connectorID string, connectorType string, ext *mfav1.ChallengeExtensions) error { +func (a *Server) upsertSSOMFASession(ctx context.Context, user string, sessionID string, connectorID string, connectorType string, ext *mfav1.ChallengeExtensions) error { err := a.UpsertSSOMFASessionData(ctx, &services.SSOMFASessionData{ Username: user, RequestID: sessionID, diff --git a/lib/auth/sso_mfa_test.go b/lib/auth/sso_mfa_test.go new file mode 100644 index 0000000000000..081ffaa0ef13e --- /dev/null +++ b/lib/auth/sso_mfa_test.go @@ -0,0 +1,752 @@ +/* + * Teleport + * Copyright (C) 2024 Gravitational, Inc. + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + +package auth + +import ( + "context" + "net/url" + "testing" + + "github.com/google/uuid" + "github.com/gravitational/trace" + "github.com/jonboulle/clockwork" + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" + + "github.com/gravitational/teleport/api/client/proto" + "github.com/gravitational/teleport/api/constants" + mfav1 "github.com/gravitational/teleport/api/gen/proto/go/teleport/mfa/v1" + "github.com/gravitational/teleport/api/types" + "github.com/gravitational/teleport/lib/auth/authclient" + "github.com/gravitational/teleport/lib/authz" + "github.com/gravitational/teleport/lib/defaults" + "github.com/gravitational/teleport/lib/services" +) + +func TestSSOMFAChallenge_Creation(t *testing.T) { + t.Parallel() + ctx := context.Background() + + fakeClock := clockwork.NewFakeClock() + testAuthServer, err := NewTestAuthServer(TestAuthServerConfig{ + Dir: t.TempDir(), + Clock: fakeClock, + }) + require.NoError(t, err) + testServer, err := testAuthServer.NewTestTLSServer() + require.NoError(t, err) + + a := testServer.Auth() + a.SetSAMLService(&fakeSSOService{a}) + a.SetOIDCService(&fakeSSOService{a}) + + // Enable SSO MFA support. + authPref, err := types.NewAuthPreference(types.AuthPreferenceSpecV2{ + Type: constants.Local, + SecondFactors: []types.SecondFactorType{ + types.SecondFactorType_SECOND_FACTOR_TYPE_SSO, + }, + AllowLocalAuth: types.NewBoolOption(false), + }) + require.NoError(t, err) + _, err = a.UpsertAuthPreference(ctx, authPref) + require.NoError(t, err) + + // Create a standard user. + standardUser, _, err := CreateUserAndRole(a, "standard", []string{"role"}, nil) + require.NoError(t, err) + + // Create a fake saml user with MFA disabled. + noMFASAMLUser, noMFASAMLRole, err := CreateUserAndRole(a, "saml-user-no-mfa", []string{"role"}, nil) + require.NoError(t, err) + + noMFASAMLConnector, err := types.NewSAMLConnector("saml-no-mfa", types.SAMLConnectorSpecV2{ + AssertionConsumerService: "http://localhost:65535/acs", // not called + Issuer: "test", + SSO: "https://localhost:65535/sso", // not called + AttributesToRoles: []types.AttributeMapping{ + // not used. can be any name, value but role must exist + {Name: "groups", Value: "admin", Roles: []string{noMFASAMLRole.GetName()}}, + }, + }) + require.NoError(t, err) + _, err = a.UpsertSAMLConnector(ctx, noMFASAMLConnector) + require.NoError(t, err) + + noMFASAMLUser.SetCreatedBy(types.CreatedBy{ + Time: a.clock.Now(), + Connector: &types.ConnectorRef{ + ID: noMFASAMLConnector.GetName(), + Type: noMFASAMLConnector.GetKind(), + }, + }) + _, err = a.UpsertUser(ctx, noMFASAMLUser) + require.NoError(t, err) + + // Create a fake saml user with MFA enabled. + samlUser, samlRole, err := CreateUserAndRole(a, "saml-user", []string{"role"}, nil) + require.NoError(t, err) + + samlConnector, err := types.NewSAMLConnector("saml", types.SAMLConnectorSpecV2{ + AssertionConsumerService: "http://localhost:65535/acs", // not called + Issuer: "test", + SSO: "https://localhost:65535/sso", // not called + AttributesToRoles: []types.AttributeMapping{ + // not used. can be any name, value but role must exist + {Name: "groups", Value: "admin", Roles: []string{samlRole.GetName()}}, + }, + MFASettings: &types.SAMLConnectorMFASettings{ + Enabled: true, + Issuer: "test", + Sso: "https://localhost:65535/sso", // not called + }, + }) + require.NoError(t, err) + _, err = a.UpsertSAMLConnector(ctx, samlConnector) + require.NoError(t, err) + + samlUser.SetCreatedBy(types.CreatedBy{ + Time: a.clock.Now(), + Connector: &types.ConnectorRef{ + ID: samlConnector.GetName(), + Type: samlConnector.GetKind(), + }, + }) + _, err = a.UpsertUser(ctx, samlUser) + require.NoError(t, err) + + // Create a fake oidc user with MFA enabled. + oidcUser, oidcRole, err := CreateUserAndRole(a, "oidc-user", []string{"role"}, nil) + require.NoError(t, err) + + oidcConnector, err := types.NewOIDCConnector("oidc", types.OIDCConnectorSpecV3{ + ClientID: "12345", + ClientSecret: "678910", + RedirectURLs: []string{"https://proxy.example.com/v1/webapi/oidc/callback"}, + ClaimsToRoles: []types.ClaimMapping{ + { + Claim: "test", + Value: "test", + Roles: []string{oidcRole.GetName()}, + }, + }, + MFASettings: &types.OIDCConnectorMFASettings{ + Enabled: true, + ClientId: "12345", + ClientSecret: "678910", + }, + }) + require.NoError(t, err) + _, err = a.UpsertOIDCConnector(ctx, oidcConnector) + require.NoError(t, err) + + oidcUser.SetCreatedBy(types.CreatedBy{ + Time: a.clock.Now(), + Connector: &types.ConnectorRef{ + ID: oidcConnector.GetName(), + Type: oidcConnector.GetKind(), + }, + }) + _, err = a.UpsertUser(ctx, oidcUser) + require.NoError(t, err) + + for _, tt := range []struct { + name string + username string + setup func(t *testing.T) + challengeRequest *proto.CreateAuthenticateChallengeRequest + assertChallenge func(t *testing.T, chal *proto.MFAAuthenticateChallenge, err error) + }{ + { + name: "NOK non sso user", + username: standardUser.GetName(), + challengeRequest: &proto.CreateAuthenticateChallengeRequest{ + ChallengeExtensions: &mfav1.ChallengeExtensions{ + Scope: mfav1.ChallengeScope_CHALLENGE_SCOPE_LOGIN, // which scope doesn't matter here. + }, + SSOClientRedirectURL: "/web/home", // value doesn't matter, as long as it isn't empty. + }, + assertChallenge: func(t *testing.T, chal *proto.MFAAuthenticateChallenge, err error) { + require.NoError(t, err) + assert.Nil(t, chal.SSOChallenge) + }, + }, + { + name: "NOK sso mfa not enabled by auth connector", + username: noMFASAMLUser.GetName(), + challengeRequest: &proto.CreateAuthenticateChallengeRequest{ + ChallengeExtensions: &mfav1.ChallengeExtensions{ + Scope: mfav1.ChallengeScope_CHALLENGE_SCOPE_LOGIN, // which scope doesn't matter here. + }, + SSOClientRedirectURL: "/web/home", // value doesn't matter, as long as it isn't empty. + }, + assertChallenge: func(t *testing.T, chal *proto.MFAAuthenticateChallenge, err error) { + require.NoError(t, err) + assert.Nil(t, chal.SSOChallenge) + }, + }, + { + name: "NOK sso mfa not enabled by auth preference", + username: samlUser.GetName(), + challengeRequest: &proto.CreateAuthenticateChallengeRequest{ + ChallengeExtensions: &mfav1.ChallengeExtensions{ + Scope: mfav1.ChallengeScope_CHALLENGE_SCOPE_LOGIN, // which scope doesn't matter here. + }, + SSOClientRedirectURL: "/web/home", // value doesn't matter, as long as it isn't empty. + }, + setup: func(t *testing.T) { + // disable SSO MFA. + authPref.SetSecondFactors() + require.NoError(t, err) + _, err = a.UpsertAuthPreference(ctx, authPref) + require.NoError(t, err) + t.Cleanup(func() { + authPref.SetSecondFactors(types.SecondFactorType_SECOND_FACTOR_TYPE_SSO) + require.NoError(t, err) + _, err = a.UpsertAuthPreference(ctx, authPref) + require.NoError(t, err) + }) + }, + assertChallenge: func(t *testing.T, chal *proto.MFAAuthenticateChallenge, err error) { + require.NoError(t, err) + assert.Nil(t, chal.SSOChallenge) + }, + }, + { + name: "NOK SSOClientRedirectURL not provided", + username: samlUser.GetName(), + challengeRequest: &proto.CreateAuthenticateChallengeRequest{ + ChallengeExtensions: &mfav1.ChallengeExtensions{ + Scope: mfav1.ChallengeScope_CHALLENGE_SCOPE_LOGIN, // which scope doesn't matter here. + }, + SSOClientRedirectURL: "", + }, + assertChallenge: func(t *testing.T, chal *proto.MFAAuthenticateChallenge, err error) { + require.NoError(t, err) + assert.Nil(t, chal.SSOChallenge) + }, + }, + { + name: "OK saml user", + username: samlUser.GetName(), + challengeRequest: &proto.CreateAuthenticateChallengeRequest{ + ChallengeExtensions: &mfav1.ChallengeExtensions{ + Scope: mfav1.ChallengeScope_CHALLENGE_SCOPE_LOGIN, // which scope doesn't matter here. + }, + SSOClientRedirectURL: "/web/home", // value doesn't matter, as long as it isn't empty. + }, + assertChallenge: func(t *testing.T, chal *proto.MFAAuthenticateChallenge, err error) { + require.NoError(t, err) + require.NotNil(t, chal.SSOChallenge, "expected SSO challenge to be returned") + assert.NotEmpty(t, chal.SSOChallenge.RedirectUrl) + assert.NotEmpty(t, chal.SSOChallenge.RequestId) + + // We should find an auth request with the resulting request ID. + req, err := a.GetSAMLAuthRequest(ctx, chal.SSOChallenge.RequestId) + assert.NoError(t, err) + assert.Equal(t, chal.SSOChallenge.RedirectUrl, req.RedirectURL) + assert.Equal(t, chal.SSOChallenge.RequestId, req.ID) + assert.Equal(t, "/web/home", req.ClientRedirectURL) + assert.Equal(t, samlConnector.GetName(), req.ConnectorID) + assert.Equal(t, samlConnector.GetKind(), req.Type) + assert.True(t, req.CheckUser) + + // We should find non validated SSO MFA session data tied to the challenge by auth request ID. + sd, err := a.GetSSOMFASessionData(ctx, chal.SSOChallenge.RequestId) + require.NoError(t, err) + assert.Equal(t, &services.SSOMFASessionData{ + RequestID: chal.SSOChallenge.RequestId, + Username: samlUser.GetName(), + ConnectorID: samlConnector.GetName(), + ConnectorType: samlConnector.GetKind(), + ChallengeExtensions: &mfav1.ChallengeExtensions{ + Scope: mfav1.ChallengeScope_CHALLENGE_SCOPE_LOGIN, + }, + }, sd) + }, + }, + { + name: "OK oidc user", + username: oidcUser.GetName(), + challengeRequest: &proto.CreateAuthenticateChallengeRequest{ + ChallengeExtensions: &mfav1.ChallengeExtensions{ + Scope: mfav1.ChallengeScope_CHALLENGE_SCOPE_LOGIN, // which scope doesn't matter here. + }, + SSOClientRedirectURL: "/web/home", // value doesn't matter, as long as it isn't empty. + }, + assertChallenge: func(t *testing.T, chal *proto.MFAAuthenticateChallenge, err error) { + require.NoError(t, err) + require.NotNil(t, chal.SSOChallenge, "expected SSO challenge to be returned") + assert.NotEmpty(t, chal.SSOChallenge.RedirectUrl) + assert.NotEmpty(t, chal.SSOChallenge.RequestId) + + // We should find an auth request with the resulting request ID. + req, err := a.GetOIDCAuthRequest(ctx, chal.SSOChallenge.RequestId) + assert.NoError(t, err) + assert.Equal(t, chal.SSOChallenge.RedirectUrl, req.RedirectURL) + assert.Equal(t, chal.SSOChallenge.RequestId, req.StateToken) + assert.Equal(t, "/web/home", req.ClientRedirectURL) + assert.Equal(t, oidcConnector.GetName(), req.ConnectorID) + assert.Equal(t, oidcConnector.GetKind(), req.Type) + assert.True(t, req.CheckUser) + + // We should find non validated SSO MFA session data tied to the challenge by auth request ID. + sd, err := a.GetSSOMFASessionData(ctx, chal.SSOChallenge.RequestId) + require.NoError(t, err) + assert.Equal(t, &services.SSOMFASessionData{ + RequestID: chal.SSOChallenge.RequestId, + Username: oidcUser.GetName(), + ConnectorID: oidcConnector.GetName(), + ConnectorType: oidcConnector.GetKind(), + ChallengeExtensions: &mfav1.ChallengeExtensions{ + Scope: mfav1.ChallengeScope_CHALLENGE_SCOPE_LOGIN, + }, + }, sd) + }, + }, + { + name: "OK allow reuse", + username: samlUser.GetName(), + challengeRequest: &proto.CreateAuthenticateChallengeRequest{ + ChallengeExtensions: &mfav1.ChallengeExtensions{ + Scope: mfav1.ChallengeScope_CHALLENGE_SCOPE_LOGIN, // which scope doesn't matter here. + AllowReuse: mfav1.ChallengeAllowReuse_CHALLENGE_ALLOW_REUSE_YES, + }, + SSOClientRedirectURL: "/web/home", // value doesn't matter, as long as it isn't empty. + }, + assertChallenge: func(t *testing.T, chal *proto.MFAAuthenticateChallenge, err error) { + require.NoError(t, err) + require.NotNil(t, chal.SSOChallenge, "expected SSO challenge to be returned") + + // We should find non validated SSO MFA session data tied to the challenge by auth request ID. + sd, err := a.GetSSOMFASessionData(ctx, chal.SSOChallenge.RequestId) + require.NoError(t, err) + assert.Equal(t, mfav1.ChallengeAllowReuse_CHALLENGE_ALLOW_REUSE_YES, sd.ChallengeExtensions.AllowReuse) + }, + }, + } { + t.Run(tt.name, func(t *testing.T) { + userClient, err := testServer.NewClient(TestUser(tt.username)) + require.NoError(t, err) + + if tt.setup != nil { + tt.setup(t) + } + + chal, err := userClient.CreateAuthenticateChallenge(ctx, tt.challengeRequest) + tt.assertChallenge(t, chal, err) + }) + } +} + +func TestSSOMFAChallenge_Validation(t *testing.T) { + t.Parallel() + ctx := context.Background() + + fakeClock := clockwork.NewFakeClock() + testAuthServer, err := NewTestAuthServer(TestAuthServerConfig{ + Dir: t.TempDir(), + Clock: fakeClock, + }) + require.NoError(t, err) + testServer, err := testAuthServer.NewTestTLSServer() + require.NoError(t, err) + + a := testServer.Auth() + + // Create a standard user. + standardUser, _, err := CreateUserAndRole(a, "standard", []string{"role"}, nil) + require.NoError(t, err) + + // Create a fake saml user with MFA enabled. + samlUser, samlRole, err := CreateUserAndRole(a, "saml-user", []string{"role"}, nil) + require.NoError(t, err) + + samlConnector, err := types.NewSAMLConnector("saml", types.SAMLConnectorSpecV2{ + AssertionConsumerService: "http://localhost:65535/acs", // not called + Issuer: "test", + SSO: "https://localhost:65535/sso", // not called + AttributesToRoles: []types.AttributeMapping{ + // not used. can be any name, value but role must exist + {Name: "groups", Value: "admin", Roles: []string{samlRole.GetName()}}, + }, + MFASettings: &types.SAMLConnectorMFASettings{ + Enabled: true, + Issuer: "test", + Sso: "https://localhost:65535/sso", // not called + }, + }) + require.NoError(t, err) + _, err = a.UpsertSAMLConnector(ctx, samlConnector) + require.NoError(t, err) + + userCreatedAt := a.clock.Now().UTC() + samlUser.SetCreatedBy(types.CreatedBy{ + Time: userCreatedAt, + Connector: &types.ConnectorRef{ + ID: samlConnector.GetName(), + Type: samlConnector.GetKind(), + }, + }) + _, err = a.UpsertUser(ctx, samlUser) + require.NoError(t, err) + + ssoDevice, err := types.NewMFADevice(samlConnector.GetDisplay(), samlConnector.GetName(), userCreatedAt, &types.MFADevice_Sso{ + Sso: &types.SSOMFADevice{ + ConnectorId: samlConnector.GetName(), + ConnectorType: samlConnector.GetKind(), + }, + }) + require.NoError(t, err) + + // Create a fake saml user with MFA disabled. + noMFASAMLUser, noMFASAMLRole, err := CreateUserAndRole(a, "saml-user-no-mfa", []string{"role"}, nil) + require.NoError(t, err) + + noMFASAMLConnector, err := types.NewSAMLConnector("saml-no-mfa", types.SAMLConnectorSpecV2{ + AssertionConsumerService: "http://localhost:65535/acs", // not called + Issuer: "test", + SSO: "https://localhost:65535/sso", // not called + AttributesToRoles: []types.AttributeMapping{ + // not used. can be any name, value but role must exist + {Name: "groups", Value: "admin", Roles: []string{noMFASAMLRole.GetName()}}, + }, + }) + require.NoError(t, err) + _, err = a.UpsertSAMLConnector(ctx, noMFASAMLConnector) + require.NoError(t, err) + + noMFASAMLUser.SetCreatedBy(types.CreatedBy{ + Time: a.clock.Now(), + Connector: &types.ConnectorRef{ + ID: noMFASAMLConnector.GetName(), + Type: noMFASAMLConnector.GetKind(), + }, + }) + _, err = a.UpsertUser(ctx, noMFASAMLUser) + require.NoError(t, err) + + for _, tt := range []struct { + name string + username string + sd *services.SSOMFASessionData + ssoResponse *proto.SSOResponse + requiredExtensions *mfav1.ChallengeExtensions + assertValidation func(t *testing.T, mad *authz.MFAAuthData, err error) + }{ + { + name: "NOK no required extensions data", + username: samlUser.GetName(), + sd: nil, + ssoResponse: nil, + assertValidation: func(t *testing.T, mad *authz.MFAAuthData, err error) { + require.True(t, trace.IsBadParameter(err), "expected bad parameter error but got %v", err) + }, + }, + { + name: "NOK no session data", + username: samlUser.GetName(), + sd: nil, + ssoResponse: &proto.SSOResponse{ + RequestId: "unknown", + Token: "token", + }, + requiredExtensions: &mfav1.ChallengeExtensions{}, + assertValidation: func(t *testing.T, mad *authz.MFAAuthData, err error) { + require.True(t, trace.IsAccessDenied(err), "expected access denied error but got %v", err) + }, + }, + { + name: "NOK mismatch user", + username: samlUser.GetName(), + sd: &services.SSOMFASessionData{ + RequestID: "request1", + Username: "wrong-user", + ConnectorID: samlConnector.GetName(), + ConnectorType: samlConnector.GetKind(), + ChallengeExtensions: &mfav1.ChallengeExtensions{ + Scope: mfav1.ChallengeScope_CHALLENGE_SCOPE_LOGIN, + }, + Token: "token", + }, + ssoResponse: &proto.SSOResponse{ + RequestId: "request1", + Token: "token", + }, + requiredExtensions: &mfav1.ChallengeExtensions{ + Scope: mfav1.ChallengeScope_CHALLENGE_SCOPE_LOGIN, + }, + assertValidation: func(t *testing.T, mad *authz.MFAAuthData, err error) { + require.True(t, trace.IsAccessDenied(err), "expected access denied error but got %v", err) + }, + }, + { + name: "NOK mismatch token", + username: samlUser.GetName(), + sd: &services.SSOMFASessionData{ + RequestID: "request2", + Username: samlUser.GetName(), + ConnectorID: samlConnector.GetName(), + ConnectorType: samlConnector.GetKind(), + ChallengeExtensions: &mfav1.ChallengeExtensions{ + Scope: mfav1.ChallengeScope_CHALLENGE_SCOPE_LOGIN, + }, + Token: "token", + }, + ssoResponse: &proto.SSOResponse{ + RequestId: "request2", + Token: "wrong-token", + }, + requiredExtensions: &mfav1.ChallengeExtensions{ + Scope: mfav1.ChallengeScope_CHALLENGE_SCOPE_LOGIN, + }, + assertValidation: func(t *testing.T, mad *authz.MFAAuthData, err error) { + require.True(t, trace.IsAccessDenied(err), "expected access denied error but got %v", err) + }, + }, + { + name: "NOK non validated session data", + username: samlUser.GetName(), + sd: &services.SSOMFASessionData{ + RequestID: "request2", + Username: samlUser.GetName(), + ConnectorID: samlConnector.GetName(), + ConnectorType: samlConnector.GetKind(), + ChallengeExtensions: &mfav1.ChallengeExtensions{ + Scope: mfav1.ChallengeScope_CHALLENGE_SCOPE_LOGIN, + }, + }, + ssoResponse: &proto.SSOResponse{ + RequestId: "request2", + Token: "token", + }, + requiredExtensions: &mfav1.ChallengeExtensions{ + Scope: mfav1.ChallengeScope_CHALLENGE_SCOPE_LOGIN, + }, + assertValidation: func(t *testing.T, mad *authz.MFAAuthData, err error) { + require.True(t, trace.IsAccessDenied(err), "expected access denied error but got %v", err) + }, + }, + { + name: "NOK mismatch scope", + username: samlUser.GetName(), + sd: &services.SSOMFASessionData{ + RequestID: "request3", + Username: samlUser.GetName(), + ConnectorID: samlConnector.GetName(), + ConnectorType: samlConnector.GetKind(), + ChallengeExtensions: &mfav1.ChallengeExtensions{ + Scope: mfav1.ChallengeScope_CHALLENGE_SCOPE_LOGIN, + }, + Token: "token", + }, + ssoResponse: &proto.SSOResponse{ + RequestId: "request3", + Token: "token", + }, + requiredExtensions: &mfav1.ChallengeExtensions{ + Scope: mfav1.ChallengeScope_CHALLENGE_SCOPE_ADMIN_ACTION, + }, + assertValidation: func(t *testing.T, mad *authz.MFAAuthData, err error) { + require.True(t, trace.IsAccessDenied(err), "expected access denied error but got %v", err) + }, + }, + { + name: "NOK reuse not allowed", + username: samlUser.GetName(), + sd: &services.SSOMFASessionData{ + RequestID: "request4", + Username: samlUser.GetName(), + ConnectorID: samlConnector.GetName(), + ConnectorType: samlConnector.GetKind(), + ChallengeExtensions: &mfav1.ChallengeExtensions{ + Scope: mfav1.ChallengeScope_CHALLENGE_SCOPE_LOGIN, + AllowReuse: mfav1.ChallengeAllowReuse_CHALLENGE_ALLOW_REUSE_YES, + }, + Token: "token", + }, + ssoResponse: &proto.SSOResponse{ + RequestId: "request4", + Token: "token", + }, + requiredExtensions: &mfav1.ChallengeExtensions{ + Scope: mfav1.ChallengeScope_CHALLENGE_SCOPE_LOGIN, + AllowReuse: mfav1.ChallengeAllowReuse_CHALLENGE_ALLOW_REUSE_NO, + }, + assertValidation: func(t *testing.T, mad *authz.MFAAuthData, err error) { + require.True(t, trace.IsAccessDenied(err), "expected access denied error but got %v", err) + }, + }, + { + name: "NOK sso mfa not enabled by auth connector", + username: noMFASAMLUser.GetName(), + sd: &services.SSOMFASessionData{ + RequestID: "request5", + Username: noMFASAMLUser.GetName(), + ConnectorID: noMFASAMLConnector.GetName(), + ConnectorType: noMFASAMLConnector.GetKind(), + ChallengeExtensions: &mfav1.ChallengeExtensions{ + Scope: mfav1.ChallengeScope_CHALLENGE_SCOPE_LOGIN, + }, + Token: "token", + }, + ssoResponse: &proto.SSOResponse{ + RequestId: "request5", + Token: "token", + }, + requiredExtensions: &mfav1.ChallengeExtensions{ + Scope: mfav1.ChallengeScope_CHALLENGE_SCOPE_LOGIN, + }, + assertValidation: func(t *testing.T, mad *authz.MFAAuthData, err error) { + require.True(t, trace.IsAccessDenied(err), "expected access denied error but got %v", err) + }, + }, + { + name: "NOK non sso user", + username: standardUser.GetName(), + sd: &services.SSOMFASessionData{ + RequestID: "request6", + Username: standardUser.GetName(), + ConnectorID: samlConnector.GetName(), + ConnectorType: samlConnector.GetKind(), + ChallengeExtensions: &mfav1.ChallengeExtensions{ + Scope: mfav1.ChallengeScope_CHALLENGE_SCOPE_LOGIN, + }, + Token: "token", + }, + ssoResponse: &proto.SSOResponse{ + RequestId: "request6", + Token: "token", + }, + requiredExtensions: &mfav1.ChallengeExtensions{ + Scope: mfav1.ChallengeScope_CHALLENGE_SCOPE_LOGIN, + }, + assertValidation: func(t *testing.T, mad *authz.MFAAuthData, err error) { + require.True(t, trace.IsAccessDenied(err), "expected access denied error but got %v", err) + }, + }, + { + name: "OK sso user", + username: samlUser.GetName(), + sd: &services.SSOMFASessionData{ + RequestID: "request7", + Username: samlUser.GetName(), + ConnectorID: samlConnector.GetName(), + ConnectorType: samlConnector.GetKind(), + ChallengeExtensions: &mfav1.ChallengeExtensions{ + Scope: mfav1.ChallengeScope_CHALLENGE_SCOPE_LOGIN, + AllowReuse: mfav1.ChallengeAllowReuse_CHALLENGE_ALLOW_REUSE_NO, + }, + Token: "token", + }, + ssoResponse: &proto.SSOResponse{ + RequestId: "request7", + Token: "token", + }, + requiredExtensions: &mfav1.ChallengeExtensions{ + Scope: mfav1.ChallengeScope_CHALLENGE_SCOPE_LOGIN, + }, + assertValidation: func(t *testing.T, mad *authz.MFAAuthData, err error) { + assert.NoError(t, err) + assert.Equal(t, &authz.MFAAuthData{ + User: samlUser.GetName(), + Device: ssoDevice, + AllowReuse: mfav1.ChallengeAllowReuse_CHALLENGE_ALLOW_REUSE_NO, + }, mad) + }, + }, + { + name: "OK sso user allow reuse", + username: samlUser.GetName(), + sd: &services.SSOMFASessionData{ + RequestID: "request8", + Username: samlUser.GetName(), + ConnectorID: samlConnector.GetName(), + ConnectorType: samlConnector.GetKind(), + ChallengeExtensions: &mfav1.ChallengeExtensions{ + Scope: mfav1.ChallengeScope_CHALLENGE_SCOPE_LOGIN, + AllowReuse: mfav1.ChallengeAllowReuse_CHALLENGE_ALLOW_REUSE_YES, + }, + Token: "token", + }, + ssoResponse: &proto.SSOResponse{ + RequestId: "request8", + Token: "token", + }, + requiredExtensions: &mfav1.ChallengeExtensions{ + Scope: mfav1.ChallengeScope_CHALLENGE_SCOPE_LOGIN, + AllowReuse: mfav1.ChallengeAllowReuse_CHALLENGE_ALLOW_REUSE_YES, + }, + assertValidation: func(t *testing.T, mad *authz.MFAAuthData, err error) { + assert.NoError(t, err) + assert.Equal(t, &authz.MFAAuthData{ + User: samlUser.GetName(), + Device: ssoDevice, + AllowReuse: mfav1.ChallengeAllowReuse_CHALLENGE_ALLOW_REUSE_YES, + }, mad) + }, + }, + } { + t.Run(tt.name, func(t *testing.T) { + if tt.sd != nil { + err := a.UpsertSSOMFASessionData(ctx, tt.sd) + require.NoError(t, err) + } + + data, err := a.ValidateMFAAuthResponse(ctx, &proto.MFAAuthenticateResponse{ + Response: &proto.MFAAuthenticateResponse_SSO{ + SSO: tt.ssoResponse, + }, + }, tt.username, tt.requiredExtensions) + tt.assertValidation(t, data, err) + }) + } +} + +type fakeSSOService struct { + a *Server +} + +func (s *fakeSSOService) CreateSAMLAuthRequest(ctx context.Context, req types.SAMLAuthRequest) (*types.SAMLAuthRequest, error) { + return nil, nil // unused in these tests. +} + +func (s *fakeSSOService) CreateSAMLAuthRequestForMFA(ctx context.Context, req types.SAMLAuthRequest) (*types.SAMLAuthRequest, error) { + req.ID = uuid.NewString() + req.RedirectURL = uuid.NewString() + return &req, s.a.Services.CreateSAMLAuthRequest(ctx, req, defaults.SAMLAuthRequestTTL) +} + +func (s *fakeSSOService) ValidateSAMLResponse(ctx context.Context, samlResponse, connectorID, clientIP string) (*authclient.SAMLAuthResponse, error) { + return nil, nil // unused in these tests. +} + +func (s *fakeSSOService) CreateOIDCAuthRequest(ctx context.Context, req types.OIDCAuthRequest) (*types.OIDCAuthRequest, error) { + return nil, nil // unused in these tests. +} + +func (s *fakeSSOService) CreateOIDCAuthRequestForMFA(ctx context.Context, req types.OIDCAuthRequest) (*types.OIDCAuthRequest, error) { + req.StateToken = uuid.NewString() + req.RedirectURL = uuid.NewString() + return &req, s.a.Services.CreateOIDCAuthRequest(ctx, req, defaults.OIDCAuthRequestTTL) +} + +func (s *fakeSSOService) ValidateOIDCAuthCallback(ctx context.Context, q url.Values) (*authclient.OIDCAuthResponse, error) { + return nil, nil // unused in these tests. +}