From fb3f8ac3c35d303de99b2e262ae6863ce8e5920b Mon Sep 17 00:00:00 2001 From: Ed Bartosh Date: Mon, 20 Feb 2023 01:00:53 +0200 Subject: [PATCH 1/2] CRI: add CDIDevice to the ContainerConfig --- .../cri-api/pkg/apis/runtime/v1/api.pb.go | 1241 ++++++++++------- .../cri-api/pkg/apis/runtime/v1/api.proto | 12 + 2 files changed, 762 insertions(+), 491 deletions(-) diff --git a/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.pb.go b/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.pb.go index 10c25f7a526..e6fb5ce11b8 100644 --- a/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.pb.go +++ b/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.pb.go @@ -4671,6 +4671,56 @@ func (m *Device) GetPermissions() string { return "" } +// CDIDevice specifies a CDI device information. +type CDIDevice struct { + // Fully qualified CDI device name + // for example: vendor.com/gpu=gpudevice1 + // see more details in the CDI specification: + // https://github.com/container-orchestrated-devices/container-device-interface/blob/main/SPEC.md + Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *CDIDevice) Reset() { *m = CDIDevice{} } +func (*CDIDevice) ProtoMessage() {} +func (*CDIDevice) Descriptor() ([]byte, []int) { + return fileDescriptor_00212fb1f9d3bf1c, []int{63} +} +func (m *CDIDevice) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *CDIDevice) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_CDIDevice.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 *CDIDevice) XXX_Merge(src proto.Message) { + xxx_messageInfo_CDIDevice.Merge(m, src) +} +func (m *CDIDevice) XXX_Size() int { + return m.Size() +} +func (m *CDIDevice) XXX_DiscardUnknown() { + xxx_messageInfo_CDIDevice.DiscardUnknown(m) +} + +var xxx_messageInfo_CDIDevice proto.InternalMessageInfo + +func (m *CDIDevice) GetName() string { + if m != nil { + return m.Name + } + return "" +} + // ContainerConfig holds all the required and optional fields for creating a // container. type ContainerConfig struct { @@ -4727,15 +4777,17 @@ type ContainerConfig struct { // Configuration specific to Linux containers. Linux *LinuxContainerConfig `protobuf:"bytes,15,opt,name=linux,proto3" json:"linux,omitempty"` // Configuration specific to Windows containers. - Windows *WindowsContainerConfig `protobuf:"bytes,16,opt,name=windows,proto3" json:"windows,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_sizecache int32 `json:"-"` + Windows *WindowsContainerConfig `protobuf:"bytes,16,opt,name=windows,proto3" json:"windows,omitempty"` + // CDI devices for the container. + CDIDevices []*CDIDevice `protobuf:"bytes,17,rep,name=CDI_devices,json=CDIDevices,proto3" json:"CDI_devices,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *ContainerConfig) Reset() { *m = ContainerConfig{} } func (*ContainerConfig) ProtoMessage() {} func (*ContainerConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{63} + return fileDescriptor_00212fb1f9d3bf1c, []int{64} } func (m *ContainerConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4876,6 +4928,13 @@ func (m *ContainerConfig) GetWindows() *WindowsContainerConfig { return nil } +func (m *ContainerConfig) GetCDIDevices() []*CDIDevice { + if m != nil { + return m.CDIDevices + } + return nil +} + type CreateContainerRequest struct { // ID of the PodSandbox in which the container should be created. PodSandboxId string `protobuf:"bytes,1,opt,name=pod_sandbox_id,json=podSandboxId,proto3" json:"pod_sandbox_id,omitempty"` @@ -4893,7 +4952,7 @@ type CreateContainerRequest struct { func (m *CreateContainerRequest) Reset() { *m = CreateContainerRequest{} } func (*CreateContainerRequest) ProtoMessage() {} func (*CreateContainerRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{64} + return fileDescriptor_00212fb1f9d3bf1c, []int{65} } func (m *CreateContainerRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4953,7 +5012,7 @@ type CreateContainerResponse struct { func (m *CreateContainerResponse) Reset() { *m = CreateContainerResponse{} } func (*CreateContainerResponse) ProtoMessage() {} func (*CreateContainerResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{65} + return fileDescriptor_00212fb1f9d3bf1c, []int{66} } func (m *CreateContainerResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4999,7 +5058,7 @@ type StartContainerRequest struct { func (m *StartContainerRequest) Reset() { *m = StartContainerRequest{} } func (*StartContainerRequest) ProtoMessage() {} func (*StartContainerRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{66} + return fileDescriptor_00212fb1f9d3bf1c, []int{67} } func (m *StartContainerRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5043,7 +5102,7 @@ type StartContainerResponse struct { func (m *StartContainerResponse) Reset() { *m = StartContainerResponse{} } func (*StartContainerResponse) ProtoMessage() {} func (*StartContainerResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{67} + return fileDescriptor_00212fb1f9d3bf1c, []int{68} } func (m *StartContainerResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5085,7 +5144,7 @@ type StopContainerRequest struct { func (m *StopContainerRequest) Reset() { *m = StopContainerRequest{} } func (*StopContainerRequest) ProtoMessage() {} func (*StopContainerRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{68} + return fileDescriptor_00212fb1f9d3bf1c, []int{69} } func (m *StopContainerRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5136,7 +5195,7 @@ type StopContainerResponse struct { func (m *StopContainerResponse) Reset() { *m = StopContainerResponse{} } func (*StopContainerResponse) ProtoMessage() {} func (*StopContainerResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{69} + return fileDescriptor_00212fb1f9d3bf1c, []int{70} } func (m *StopContainerResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5175,7 +5234,7 @@ type RemoveContainerRequest struct { func (m *RemoveContainerRequest) Reset() { *m = RemoveContainerRequest{} } func (*RemoveContainerRequest) ProtoMessage() {} func (*RemoveContainerRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{70} + return fileDescriptor_00212fb1f9d3bf1c, []int{71} } func (m *RemoveContainerRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5219,7 +5278,7 @@ type RemoveContainerResponse struct { func (m *RemoveContainerResponse) Reset() { *m = RemoveContainerResponse{} } func (*RemoveContainerResponse) ProtoMessage() {} func (*RemoveContainerResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{71} + return fileDescriptor_00212fb1f9d3bf1c, []int{72} } func (m *RemoveContainerResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5259,7 +5318,7 @@ type ContainerStateValue struct { func (m *ContainerStateValue) Reset() { *m = ContainerStateValue{} } func (*ContainerStateValue) ProtoMessage() {} func (*ContainerStateValue) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{72} + return fileDescriptor_00212fb1f9d3bf1c, []int{73} } func (m *ContainerStateValue) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5315,7 +5374,7 @@ type ContainerFilter struct { func (m *ContainerFilter) Reset() { *m = ContainerFilter{} } func (*ContainerFilter) ProtoMessage() {} func (*ContainerFilter) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{73} + return fileDescriptor_00212fb1f9d3bf1c, []int{74} } func (m *ContainerFilter) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5381,7 +5440,7 @@ type ListContainersRequest struct { func (m *ListContainersRequest) Reset() { *m = ListContainersRequest{} } func (*ListContainersRequest) ProtoMessage() {} func (*ListContainersRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{74} + return fileDescriptor_00212fb1f9d3bf1c, []int{75} } func (m *ListContainersRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5450,7 +5509,7 @@ type Container struct { func (m *Container) Reset() { *m = Container{} } func (*Container) ProtoMessage() {} func (*Container) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{75} + return fileDescriptor_00212fb1f9d3bf1c, []int{76} } func (m *Container) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5552,7 +5611,7 @@ type ListContainersResponse struct { func (m *ListContainersResponse) Reset() { *m = ListContainersResponse{} } func (*ListContainersResponse) ProtoMessage() {} func (*ListContainersResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{76} + return fileDescriptor_00212fb1f9d3bf1c, []int{77} } func (m *ListContainersResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5600,7 +5659,7 @@ type ContainerStatusRequest struct { func (m *ContainerStatusRequest) Reset() { *m = ContainerStatusRequest{} } func (*ContainerStatusRequest) ProtoMessage() {} func (*ContainerStatusRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{77} + return fileDescriptor_00212fb1f9d3bf1c, []int{78} } func (m *ContainerStatusRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5690,7 +5749,7 @@ type ContainerStatus struct { func (m *ContainerStatus) Reset() { *m = ContainerStatus{} } func (*ContainerStatus) ProtoMessage() {} func (*ContainerStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{78} + return fileDescriptor_00212fb1f9d3bf1c, []int{79} } func (m *ContainerStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5846,7 +5905,7 @@ type ContainerStatusResponse struct { func (m *ContainerStatusResponse) Reset() { *m = ContainerStatusResponse{} } func (*ContainerStatusResponse) ProtoMessage() {} func (*ContainerStatusResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{79} + return fileDescriptor_00212fb1f9d3bf1c, []int{80} } func (m *ContainerStatusResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5902,7 +5961,7 @@ type ContainerResources struct { func (m *ContainerResources) Reset() { *m = ContainerResources{} } func (*ContainerResources) ProtoMessage() {} func (*ContainerResources) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{80} + return fileDescriptor_00212fb1f9d3bf1c, []int{81} } func (m *ContainerResources) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5963,7 +6022,7 @@ type UpdateContainerResourcesRequest struct { func (m *UpdateContainerResourcesRequest) Reset() { *m = UpdateContainerResourcesRequest{} } func (*UpdateContainerResourcesRequest) ProtoMessage() {} func (*UpdateContainerResourcesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{81} + return fileDescriptor_00212fb1f9d3bf1c, []int{82} } func (m *UpdateContainerResourcesRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6028,7 +6087,7 @@ type UpdateContainerResourcesResponse struct { func (m *UpdateContainerResourcesResponse) Reset() { *m = UpdateContainerResourcesResponse{} } func (*UpdateContainerResourcesResponse) ProtoMessage() {} func (*UpdateContainerResourcesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{82} + return fileDescriptor_00212fb1f9d3bf1c, []int{83} } func (m *UpdateContainerResourcesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6071,7 +6130,7 @@ type ExecSyncRequest struct { func (m *ExecSyncRequest) Reset() { *m = ExecSyncRequest{} } func (*ExecSyncRequest) ProtoMessage() {} func (*ExecSyncRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{83} + return fileDescriptor_00212fb1f9d3bf1c, []int{84} } func (m *ExecSyncRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6135,7 +6194,7 @@ type ExecSyncResponse struct { func (m *ExecSyncResponse) Reset() { *m = ExecSyncResponse{} } func (*ExecSyncResponse) ProtoMessage() {} func (*ExecSyncResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{84} + return fileDescriptor_00212fb1f9d3bf1c, []int{85} } func (m *ExecSyncResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6211,7 +6270,7 @@ type ExecRequest struct { func (m *ExecRequest) Reset() { *m = ExecRequest{} } func (*ExecRequest) ProtoMessage() {} func (*ExecRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{85} + return fileDescriptor_00212fb1f9d3bf1c, []int{86} } func (m *ExecRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6292,7 +6351,7 @@ type ExecResponse struct { func (m *ExecResponse) Reset() { *m = ExecResponse{} } func (*ExecResponse) ProtoMessage() {} func (*ExecResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{86} + return fileDescriptor_00212fb1f9d3bf1c, []int{87} } func (m *ExecResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6353,7 +6412,7 @@ type AttachRequest struct { func (m *AttachRequest) Reset() { *m = AttachRequest{} } func (*AttachRequest) ProtoMessage() {} func (*AttachRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{87} + return fileDescriptor_00212fb1f9d3bf1c, []int{88} } func (m *AttachRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6427,7 +6486,7 @@ type AttachResponse struct { func (m *AttachResponse) Reset() { *m = AttachResponse{} } func (*AttachResponse) ProtoMessage() {} func (*AttachResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{88} + return fileDescriptor_00212fb1f9d3bf1c, []int{89} } func (m *AttachResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6475,7 +6534,7 @@ type PortForwardRequest struct { func (m *PortForwardRequest) Reset() { *m = PortForwardRequest{} } func (*PortForwardRequest) ProtoMessage() {} func (*PortForwardRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{89} + return fileDescriptor_00212fb1f9d3bf1c, []int{90} } func (m *PortForwardRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6528,7 +6587,7 @@ type PortForwardResponse struct { func (m *PortForwardResponse) Reset() { *m = PortForwardResponse{} } func (*PortForwardResponse) ProtoMessage() {} func (*PortForwardResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{90} + return fileDescriptor_00212fb1f9d3bf1c, []int{91} } func (m *PortForwardResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6574,7 +6633,7 @@ type ImageFilter struct { func (m *ImageFilter) Reset() { *m = ImageFilter{} } func (*ImageFilter) ProtoMessage() {} func (*ImageFilter) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{91} + return fileDescriptor_00212fb1f9d3bf1c, []int{92} } func (m *ImageFilter) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6620,7 +6679,7 @@ type ListImagesRequest struct { func (m *ListImagesRequest) Reset() { *m = ListImagesRequest{} } func (*ListImagesRequest) ProtoMessage() {} func (*ListImagesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{92} + return fileDescriptor_00212fb1f9d3bf1c, []int{93} } func (m *ListImagesRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6686,7 +6745,7 @@ type Image struct { func (m *Image) Reset() { *m = Image{} } func (*Image) ProtoMessage() {} func (*Image) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{93} + return fileDescriptor_00212fb1f9d3bf1c, []int{94} } func (m *Image) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6781,7 +6840,7 @@ type ListImagesResponse struct { func (m *ListImagesResponse) Reset() { *m = ListImagesResponse{} } func (*ListImagesResponse) ProtoMessage() {} func (*ListImagesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{94} + return fileDescriptor_00212fb1f9d3bf1c, []int{95} } func (m *ListImagesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6829,7 +6888,7 @@ type ImageStatusRequest struct { func (m *ImageStatusRequest) Reset() { *m = ImageStatusRequest{} } func (*ImageStatusRequest) ProtoMessage() {} func (*ImageStatusRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{95} + return fileDescriptor_00212fb1f9d3bf1c, []int{96} } func (m *ImageStatusRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6887,7 +6946,7 @@ type ImageStatusResponse struct { func (m *ImageStatusResponse) Reset() { *m = ImageStatusResponse{} } func (*ImageStatusResponse) ProtoMessage() {} func (*ImageStatusResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{96} + return fileDescriptor_00212fb1f9d3bf1c, []int{97} } func (m *ImageStatusResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6948,7 +7007,7 @@ type AuthConfig struct { func (m *AuthConfig) Reset() { *m = AuthConfig{} } func (*AuthConfig) ProtoMessage() {} func (*AuthConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{97} + return fileDescriptor_00212fb1f9d3bf1c, []int{98} } func (m *AuthConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7033,7 +7092,7 @@ type PullImageRequest struct { func (m *PullImageRequest) Reset() { *m = PullImageRequest{} } func (*PullImageRequest) ProtoMessage() {} func (*PullImageRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{98} + return fileDescriptor_00212fb1f9d3bf1c, []int{99} } func (m *PullImageRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7094,7 +7153,7 @@ type PullImageResponse struct { func (m *PullImageResponse) Reset() { *m = PullImageResponse{} } func (*PullImageResponse) ProtoMessage() {} func (*PullImageResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{99} + return fileDescriptor_00212fb1f9d3bf1c, []int{100} } func (m *PullImageResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7140,7 +7199,7 @@ type RemoveImageRequest struct { func (m *RemoveImageRequest) Reset() { *m = RemoveImageRequest{} } func (*RemoveImageRequest) ProtoMessage() {} func (*RemoveImageRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{100} + return fileDescriptor_00212fb1f9d3bf1c, []int{101} } func (m *RemoveImageRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7184,7 +7243,7 @@ type RemoveImageResponse struct { func (m *RemoveImageResponse) Reset() { *m = RemoveImageResponse{} } func (*RemoveImageResponse) ProtoMessage() {} func (*RemoveImageResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{101} + return fileDescriptor_00212fb1f9d3bf1c, []int{102} } func (m *RemoveImageResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7224,7 +7283,7 @@ type NetworkConfig struct { func (m *NetworkConfig) Reset() { *m = NetworkConfig{} } func (*NetworkConfig) ProtoMessage() {} func (*NetworkConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{102} + return fileDescriptor_00212fb1f9d3bf1c, []int{103} } func (m *NetworkConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7269,7 +7328,7 @@ type RuntimeConfig struct { func (m *RuntimeConfig) Reset() { *m = RuntimeConfig{} } func (*RuntimeConfig) ProtoMessage() {} func (*RuntimeConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{103} + return fileDescriptor_00212fb1f9d3bf1c, []int{104} } func (m *RuntimeConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7314,7 +7373,7 @@ type UpdateRuntimeConfigRequest struct { func (m *UpdateRuntimeConfigRequest) Reset() { *m = UpdateRuntimeConfigRequest{} } func (*UpdateRuntimeConfigRequest) ProtoMessage() {} func (*UpdateRuntimeConfigRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{104} + return fileDescriptor_00212fb1f9d3bf1c, []int{105} } func (m *UpdateRuntimeConfigRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7358,7 +7417,7 @@ type UpdateRuntimeConfigResponse struct { func (m *UpdateRuntimeConfigResponse) Reset() { *m = UpdateRuntimeConfigResponse{} } func (*UpdateRuntimeConfigResponse) ProtoMessage() {} func (*UpdateRuntimeConfigResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{105} + return fileDescriptor_00212fb1f9d3bf1c, []int{106} } func (m *UpdateRuntimeConfigResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7417,7 +7476,7 @@ type RuntimeCondition struct { func (m *RuntimeCondition) Reset() { *m = RuntimeCondition{} } func (*RuntimeCondition) ProtoMessage() {} func (*RuntimeCondition) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{106} + return fileDescriptor_00212fb1f9d3bf1c, []int{107} } func (m *RuntimeCondition) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7485,7 +7544,7 @@ type RuntimeStatus struct { func (m *RuntimeStatus) Reset() { *m = RuntimeStatus{} } func (*RuntimeStatus) ProtoMessage() {} func (*RuntimeStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{107} + return fileDescriptor_00212fb1f9d3bf1c, []int{108} } func (m *RuntimeStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7531,7 +7590,7 @@ type StatusRequest struct { func (m *StatusRequest) Reset() { *m = StatusRequest{} } func (*StatusRequest) ProtoMessage() {} func (*StatusRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{108} + return fileDescriptor_00212fb1f9d3bf1c, []int{109} } func (m *StatusRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7582,7 +7641,7 @@ type StatusResponse struct { func (m *StatusResponse) Reset() { *m = StatusResponse{} } func (*StatusResponse) ProtoMessage() {} func (*StatusResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{109} + return fileDescriptor_00212fb1f9d3bf1c, []int{110} } func (m *StatusResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7633,7 +7692,7 @@ type ImageFsInfoRequest struct { func (m *ImageFsInfoRequest) Reset() { *m = ImageFsInfoRequest{} } func (*ImageFsInfoRequest) ProtoMessage() {} func (*ImageFsInfoRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{110} + return fileDescriptor_00212fb1f9d3bf1c, []int{111} } func (m *ImageFsInfoRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7673,7 +7732,7 @@ type UInt64Value struct { func (m *UInt64Value) Reset() { *m = UInt64Value{} } func (*UInt64Value) ProtoMessage() {} func (*UInt64Value) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{111} + return fileDescriptor_00212fb1f9d3bf1c, []int{112} } func (m *UInt64Value) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7720,7 +7779,7 @@ type FilesystemIdentifier struct { func (m *FilesystemIdentifier) Reset() { *m = FilesystemIdentifier{} } func (*FilesystemIdentifier) ProtoMessage() {} func (*FilesystemIdentifier) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{112} + return fileDescriptor_00212fb1f9d3bf1c, []int{113} } func (m *FilesystemIdentifier) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7777,7 +7836,7 @@ type FilesystemUsage struct { func (m *FilesystemUsage) Reset() { *m = FilesystemUsage{} } func (*FilesystemUsage) ProtoMessage() {} func (*FilesystemUsage) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{113} + return fileDescriptor_00212fb1f9d3bf1c, []int{114} } func (m *FilesystemUsage) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7851,7 +7910,7 @@ type WindowsFilesystemUsage struct { func (m *WindowsFilesystemUsage) Reset() { *m = WindowsFilesystemUsage{} } func (*WindowsFilesystemUsage) ProtoMessage() {} func (*WindowsFilesystemUsage) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{114} + return fileDescriptor_00212fb1f9d3bf1c, []int{115} } func (m *WindowsFilesystemUsage) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7911,7 +7970,7 @@ type ImageFsInfoResponse struct { func (m *ImageFsInfoResponse) Reset() { *m = ImageFsInfoResponse{} } func (*ImageFsInfoResponse) ProtoMessage() {} func (*ImageFsInfoResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{115} + return fileDescriptor_00212fb1f9d3bf1c, []int{116} } func (m *ImageFsInfoResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7957,7 +8016,7 @@ type ContainerStatsRequest struct { func (m *ContainerStatsRequest) Reset() { *m = ContainerStatsRequest{} } func (*ContainerStatsRequest) ProtoMessage() {} func (*ContainerStatsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{116} + return fileDescriptor_00212fb1f9d3bf1c, []int{117} } func (m *ContainerStatsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8003,7 +8062,7 @@ type ContainerStatsResponse struct { func (m *ContainerStatsResponse) Reset() { *m = ContainerStatsResponse{} } func (*ContainerStatsResponse) ProtoMessage() {} func (*ContainerStatsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{117} + return fileDescriptor_00212fb1f9d3bf1c, []int{118} } func (m *ContainerStatsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8049,7 +8108,7 @@ type ListContainerStatsRequest struct { func (m *ListContainerStatsRequest) Reset() { *m = ListContainerStatsRequest{} } func (*ListContainerStatsRequest) ProtoMessage() {} func (*ListContainerStatsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{118} + return fileDescriptor_00212fb1f9d3bf1c, []int{119} } func (m *ListContainerStatsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8103,7 +8162,7 @@ type ContainerStatsFilter struct { func (m *ContainerStatsFilter) Reset() { *m = ContainerStatsFilter{} } func (*ContainerStatsFilter) ProtoMessage() {} func (*ContainerStatsFilter) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{119} + return fileDescriptor_00212fb1f9d3bf1c, []int{120} } func (m *ContainerStatsFilter) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8163,7 +8222,7 @@ type ListContainerStatsResponse struct { func (m *ListContainerStatsResponse) Reset() { *m = ListContainerStatsResponse{} } func (*ListContainerStatsResponse) ProtoMessage() {} func (*ListContainerStatsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{120} + return fileDescriptor_00212fb1f9d3bf1c, []int{121} } func (m *ListContainerStatsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8219,7 +8278,7 @@ type ContainerAttributes struct { func (m *ContainerAttributes) Reset() { *m = ContainerAttributes{} } func (*ContainerAttributes) ProtoMessage() {} func (*ContainerAttributes) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{121} + return fileDescriptor_00212fb1f9d3bf1c, []int{122} } func (m *ContainerAttributes) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8293,7 +8352,7 @@ type ContainerStats struct { func (m *ContainerStats) Reset() { *m = ContainerStats{} } func (*ContainerStats) ProtoMessage() {} func (*ContainerStats) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{122} + return fileDescriptor_00212fb1f9d3bf1c, []int{123} } func (m *ContainerStats) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8367,7 +8426,7 @@ type WindowsContainerStats struct { func (m *WindowsContainerStats) Reset() { *m = WindowsContainerStats{} } func (*WindowsContainerStats) ProtoMessage() {} func (*WindowsContainerStats) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{123} + return fileDescriptor_00212fb1f9d3bf1c, []int{124} } func (m *WindowsContainerStats) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8440,7 +8499,7 @@ type CpuUsage struct { func (m *CpuUsage) Reset() { *m = CpuUsage{} } func (*CpuUsage) ProtoMessage() {} func (*CpuUsage) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{124} + return fileDescriptor_00212fb1f9d3bf1c, []int{125} } func (m *CpuUsage) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8506,7 +8565,7 @@ type WindowsCpuUsage struct { func (m *WindowsCpuUsage) Reset() { *m = WindowsCpuUsage{} } func (*WindowsCpuUsage) ProtoMessage() {} func (*WindowsCpuUsage) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{125} + return fileDescriptor_00212fb1f9d3bf1c, []int{126} } func (m *WindowsCpuUsage) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8579,7 +8638,7 @@ type MemoryUsage struct { func (m *MemoryUsage) Reset() { *m = MemoryUsage{} } func (*MemoryUsage) ProtoMessage() {} func (*MemoryUsage) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{126} + return fileDescriptor_00212fb1f9d3bf1c, []int{127} } func (m *MemoryUsage) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8674,7 +8733,7 @@ type WindowsMemoryUsage struct { func (m *WindowsMemoryUsage) Reset() { *m = WindowsMemoryUsage{} } func (*WindowsMemoryUsage) ProtoMessage() {} func (*WindowsMemoryUsage) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{127} + return fileDescriptor_00212fb1f9d3bf1c, []int{128} } func (m *WindowsMemoryUsage) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8741,7 +8800,7 @@ type ReopenContainerLogRequest struct { func (m *ReopenContainerLogRequest) Reset() { *m = ReopenContainerLogRequest{} } func (*ReopenContainerLogRequest) ProtoMessage() {} func (*ReopenContainerLogRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{128} + return fileDescriptor_00212fb1f9d3bf1c, []int{129} } func (m *ReopenContainerLogRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8785,7 +8844,7 @@ type ReopenContainerLogResponse struct { func (m *ReopenContainerLogResponse) Reset() { *m = ReopenContainerLogResponse{} } func (*ReopenContainerLogResponse) ProtoMessage() {} func (*ReopenContainerLogResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{129} + return fileDescriptor_00212fb1f9d3bf1c, []int{130} } func (m *ReopenContainerLogResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8830,7 +8889,7 @@ type CheckpointContainerRequest struct { func (m *CheckpointContainerRequest) Reset() { *m = CheckpointContainerRequest{} } func (*CheckpointContainerRequest) ProtoMessage() {} func (*CheckpointContainerRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{130} + return fileDescriptor_00212fb1f9d3bf1c, []int{131} } func (m *CheckpointContainerRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8888,7 +8947,7 @@ type CheckpointContainerResponse struct { func (m *CheckpointContainerResponse) Reset() { *m = CheckpointContainerResponse{} } func (*CheckpointContainerResponse) ProtoMessage() {} func (*CheckpointContainerResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{131} + return fileDescriptor_00212fb1f9d3bf1c, []int{132} } func (m *CheckpointContainerResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8925,7 +8984,7 @@ type GetEventsRequest struct { func (m *GetEventsRequest) Reset() { *m = GetEventsRequest{} } func (*GetEventsRequest) ProtoMessage() {} func (*GetEventsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{132} + return fileDescriptor_00212fb1f9d3bf1c, []int{133} } func (m *GetEventsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8972,7 +9031,7 @@ type ContainerEventResponse struct { func (m *ContainerEventResponse) Reset() { *m = ContainerEventResponse{} } func (*ContainerEventResponse) ProtoMessage() {} func (*ContainerEventResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{133} + return fileDescriptor_00212fb1f9d3bf1c, []int{134} } func (m *ContainerEventResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9044,7 +9103,7 @@ type ListMetricDescriptorsRequest struct { func (m *ListMetricDescriptorsRequest) Reset() { *m = ListMetricDescriptorsRequest{} } func (*ListMetricDescriptorsRequest) ProtoMessage() {} func (*ListMetricDescriptorsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{134} + return fileDescriptor_00212fb1f9d3bf1c, []int{135} } func (m *ListMetricDescriptorsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9082,7 +9141,7 @@ type ListMetricDescriptorsResponse struct { func (m *ListMetricDescriptorsResponse) Reset() { *m = ListMetricDescriptorsResponse{} } func (*ListMetricDescriptorsResponse) ProtoMessage() {} func (*ListMetricDescriptorsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{135} + return fileDescriptor_00212fb1f9d3bf1c, []int{136} } func (m *ListMetricDescriptorsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9135,7 +9194,7 @@ type MetricDescriptor struct { func (m *MetricDescriptor) Reset() { *m = MetricDescriptor{} } func (*MetricDescriptor) ProtoMessage() {} func (*MetricDescriptor) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{136} + return fileDescriptor_00212fb1f9d3bf1c, []int{137} } func (m *MetricDescriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9193,7 +9252,7 @@ type ListPodSandboxMetricsRequest struct { func (m *ListPodSandboxMetricsRequest) Reset() { *m = ListPodSandboxMetricsRequest{} } func (*ListPodSandboxMetricsRequest) ProtoMessage() {} func (*ListPodSandboxMetricsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{137} + return fileDescriptor_00212fb1f9d3bf1c, []int{138} } func (m *ListPodSandboxMetricsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9231,7 +9290,7 @@ type ListPodSandboxMetricsResponse struct { func (m *ListPodSandboxMetricsResponse) Reset() { *m = ListPodSandboxMetricsResponse{} } func (*ListPodSandboxMetricsResponse) ProtoMessage() {} func (*ListPodSandboxMetricsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{138} + return fileDescriptor_00212fb1f9d3bf1c, []int{139} } func (m *ListPodSandboxMetricsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9278,7 +9337,7 @@ type PodSandboxMetrics struct { func (m *PodSandboxMetrics) Reset() { *m = PodSandboxMetrics{} } func (*PodSandboxMetrics) ProtoMessage() {} func (*PodSandboxMetrics) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{139} + return fileDescriptor_00212fb1f9d3bf1c, []int{140} } func (m *PodSandboxMetrics) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9338,7 +9397,7 @@ type ContainerMetrics struct { func (m *ContainerMetrics) Reset() { *m = ContainerMetrics{} } func (*ContainerMetrics) ProtoMessage() {} func (*ContainerMetrics) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{140} + return fileDescriptor_00212fb1f9d3bf1c, []int{141} } func (m *ContainerMetrics) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9401,7 +9460,7 @@ type Metric struct { func (m *Metric) Reset() { *m = Metric{} } func (*Metric) ProtoMessage() {} func (*Metric) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{141} + return fileDescriptor_00212fb1f9d3bf1c, []int{142} } func (m *Metric) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9551,6 +9610,7 @@ func init() { proto.RegisterType((*WindowsContainerResources)(nil), "runtime.v1.WindowsContainerResources") proto.RegisterType((*ContainerMetadata)(nil), "runtime.v1.ContainerMetadata") proto.RegisterType((*Device)(nil), "runtime.v1.Device") + proto.RegisterType((*CDIDevice)(nil), "runtime.v1.CDIDevice") proto.RegisterType((*ContainerConfig)(nil), "runtime.v1.ContainerConfig") proto.RegisterMapType((map[string]string)(nil), "runtime.v1.ContainerConfig.AnnotationsEntry") proto.RegisterMapType((map[string]string)(nil), "runtime.v1.ContainerConfig.LabelsEntry") @@ -9649,416 +9709,418 @@ func init() { func init() { proto.RegisterFile("api.proto", fileDescriptor_00212fb1f9d3bf1c) } var fileDescriptor_00212fb1f9d3bf1c = []byte{ - // 6539 bytes of a gzipped FileDescriptorProto + // 6569 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x7d, 0x4d, 0x6c, 0x1c, 0xc9, - 0x75, 0x30, 0x7b, 0x66, 0x48, 0xce, 0xbc, 0xe1, 0x90, 0xc3, 0x12, 0x45, 0x52, 0x43, 0x89, 0x2b, - 0xb5, 0xf6, 0x47, 0x3f, 0xab, 0x9f, 0xd5, 0x6a, 0x77, 0x25, 0x59, 0xbb, 0xab, 0x11, 0xc9, 0x95, - 0xb8, 0x96, 0xc8, 0x71, 0x93, 0x94, 0xbd, 0xf6, 0x07, 0xf7, 0xd7, 0x9a, 0x2e, 0x92, 0xbd, 0x9a, - 0xe9, 0x6e, 0x77, 0xf7, 0x48, 0xa2, 0x4f, 0x39, 0x26, 0x3e, 0x19, 0x48, 0x1c, 0x03, 0x46, 0x90, - 0x20, 0x87, 0xfc, 0x00, 0x39, 0x38, 0x08, 0x90, 0xc0, 0x41, 0x90, 0x04, 0x08, 0x12, 0xc3, 0x09, - 0x10, 0xc0, 0x87, 0x04, 0xf0, 0x21, 0x40, 0xec, 0x4d, 0x4e, 0x39, 0xe4, 0x12, 0x1f, 0x72, 0x73, - 0x50, 0x7f, 0xdd, 0x5d, 0xfd, 0x37, 0x43, 0xee, 0x7a, 0x77, 0x7d, 0xe2, 0xf4, 0xab, 0xf7, 0x5e, - 0xbd, 0x7a, 0xf5, 0xea, 0xd5, 0xab, 0xaa, 0x57, 0x45, 0xa8, 0x19, 0xae, 0x75, 0xd9, 0xf5, 0x9c, - 0xc0, 0x41, 0xe0, 0x0d, 0xec, 0xc0, 0xea, 0xe3, 0xcb, 0x4f, 0x5f, 0x6b, 0x5d, 0xda, 0xb3, 0x82, - 0xfd, 0xc1, 0xe3, 0xcb, 0x5d, 0xa7, 0x7f, 0x65, 0xcf, 0xd9, 0x73, 0xae, 0x50, 0x94, 0xc7, 0x83, - 0x5d, 0xfa, 0x45, 0x3f, 0xe8, 0x2f, 0x46, 0xaa, 0x5e, 0x80, 0xe9, 0x47, 0xd8, 0xf3, 0x2d, 0xc7, - 0xd6, 0xf0, 0x37, 0x06, 0xd8, 0x0f, 0xd0, 0x22, 0x4c, 0x3e, 0x65, 0x90, 0x45, 0xe5, 0xb4, 0x72, - 0xae, 0xa6, 0x89, 0x4f, 0xf5, 0x8f, 0x14, 0x98, 0x09, 0x91, 0x7d, 0xd7, 0xb1, 0x7d, 0x9c, 0x8f, - 0x8d, 0xce, 0xc0, 0x14, 0x17, 0x4b, 0xb7, 0x8d, 0x3e, 0x5e, 0x2c, 0xd1, 0xe2, 0x3a, 0x87, 0x6d, - 0x18, 0x7d, 0x8c, 0x5e, 0x81, 0x19, 0x81, 0x22, 0x98, 0x94, 0x29, 0xd6, 0x34, 0x07, 0xf3, 0xda, - 0xd0, 0x65, 0x38, 0x26, 0x10, 0x0d, 0xd7, 0x0a, 0x91, 0x2b, 0x14, 0x79, 0x96, 0x17, 0xb5, 0x5d, - 0x8b, 0xe3, 0xab, 0x5f, 0x83, 0xda, 0xea, 0xc6, 0xd6, 0x8a, 0x63, 0xef, 0x5a, 0x7b, 0x44, 0x44, - 0x1f, 0x7b, 0x84, 0x66, 0x51, 0x39, 0x5d, 0x26, 0x22, 0xf2, 0x4f, 0xd4, 0x82, 0xaa, 0x8f, 0x0d, - 0xaf, 0xbb, 0x8f, 0xfd, 0xc5, 0x12, 0x2d, 0x0a, 0xbf, 0x09, 0x95, 0xe3, 0x06, 0x96, 0x63, 0xfb, - 0x8b, 0x65, 0x46, 0xc5, 0x3f, 0xd5, 0xdf, 0x51, 0xa0, 0xde, 0x71, 0xbc, 0xe0, 0xa1, 0xe1, 0xba, - 0x96, 0xbd, 0x87, 0xae, 0x42, 0x95, 0xea, 0xb2, 0xeb, 0xf4, 0xa8, 0x0e, 0xa6, 0xaf, 0xcd, 0x5d, - 0x8e, 0x3a, 0xe4, 0x72, 0x87, 0x97, 0x69, 0x21, 0x16, 0x7a, 0x09, 0xa6, 0xbb, 0x8e, 0x1d, 0x18, - 0x96, 0x8d, 0x3d, 0xdd, 0x75, 0xbc, 0x80, 0x2a, 0x67, 0x5c, 0x6b, 0x84, 0x50, 0xc2, 0x1f, 0x2d, - 0x41, 0x6d, 0xdf, 0xf1, 0x03, 0x86, 0x51, 0xa6, 0x18, 0x55, 0x02, 0xa0, 0x85, 0x0b, 0x30, 0x49, - 0x0b, 0x2d, 0x97, 0xab, 0x61, 0x82, 0x7c, 0xae, 0xbb, 0xea, 0x8f, 0x15, 0x18, 0x7f, 0xe8, 0x0c, - 0xec, 0x20, 0x51, 0x8d, 0x11, 0xec, 0xf3, 0x2e, 0x8a, 0x55, 0x63, 0x04, 0xfb, 0x51, 0x35, 0x04, - 0x83, 0xf5, 0x12, 0xab, 0x86, 0x14, 0xb6, 0xa0, 0xea, 0x61, 0xc3, 0x74, 0xec, 0xde, 0x01, 0x15, - 0xa1, 0xaa, 0x85, 0xdf, 0xa4, 0xfb, 0x7c, 0xdc, 0xb3, 0xec, 0xc1, 0x73, 0xdd, 0xc3, 0x3d, 0xe3, - 0x31, 0xee, 0x51, 0x51, 0xaa, 0xda, 0x34, 0x07, 0x6b, 0x0c, 0x8a, 0xde, 0x81, 0xba, 0xeb, 0x39, - 0xae, 0xb1, 0x67, 0x10, 0x0d, 0x2e, 0x8e, 0x53, 0x25, 0x9d, 0x8c, 0x2b, 0x89, 0x0a, 0xdc, 0x89, - 0x70, 0xb4, 0x38, 0x81, 0xaa, 0x43, 0x6d, 0x7d, 0x55, 0xa8, 0x3b, 0x6c, 0xb8, 0x49, 0x9b, 0xd3, - 0xe0, 0x0d, 0x37, 0x89, 0xc1, 0x45, 0xcd, 0xb5, 0x4c, 0xda, 0x94, 0x86, 0x56, 0x0f, 0x61, 0xeb, - 0x26, 0x9a, 0x87, 0x89, 0x1e, 0xb6, 0xf7, 0x82, 0x7d, 0xda, 0x96, 0x86, 0xc6, 0xbf, 0xd4, 0xdf, - 0x52, 0xa0, 0xb1, 0xe3, 0x63, 0x8f, 0x58, 0xa5, 0xef, 0x1a, 0x5d, 0x8c, 0x2e, 0x41, 0xa5, 0xef, - 0x98, 0x98, 0x77, 0xe8, 0x89, 0xb8, 0xac, 0x21, 0xd2, 0x43, 0xc7, 0xc4, 0x1a, 0x45, 0x43, 0xe7, - 0xa1, 0x32, 0xb0, 0x4c, 0x66, 0x45, 0xf5, 0x6b, 0xc7, 0xe3, 0xe8, 0xa1, 0xe4, 0x1a, 0x45, 0x21, - 0xa8, 0x7b, 0x04, 0xb5, 0x5c, 0x88, 0x4a, 0x50, 0xd4, 0x5f, 0x28, 0x30, 0x13, 0xd6, 0xb6, 0x49, - 0xcd, 0x0f, 0xbd, 0x0e, 0x93, 0x36, 0x0e, 0x9e, 0x39, 0xde, 0x93, 0xe1, 0xb2, 0x09, 0x4c, 0x74, - 0x11, 0xca, 0x2e, 0xd7, 0x48, 0x21, 0x01, 0xc1, 0x22, 0xc8, 0x96, 0xdb, 0xa5, 0x1a, 0x2a, 0x46, - 0xb6, 0xdc, 0x2e, 0x31, 0x9e, 0xc0, 0xf0, 0xf6, 0x30, 0xed, 0x0f, 0x66, 0x88, 0x55, 0x06, 0x58, - 0x37, 0xd1, 0x1d, 0x98, 0x1e, 0xf8, 0xd8, 0xb3, 0x7d, 0x5d, 0x0c, 0x25, 0xd2, 0xf5, 0x75, 0x99, - 0xa9, 0xa4, 0x77, 0xad, 0xc1, 0x08, 0x36, 0xf9, 0x58, 0x53, 0x01, 0xd6, 0xed, 0xe0, 0xcd, 0xeb, - 0x8f, 0x8c, 0xde, 0x00, 0xa3, 0x39, 0x18, 0x7f, 0x4a, 0x7e, 0xd0, 0x96, 0x97, 0x35, 0xf6, 0xa1, - 0xfe, 0x75, 0x05, 0x96, 0x1e, 0x10, 0x73, 0xdb, 0x32, 0x6c, 0xf3, 0xb1, 0xf3, 0x7c, 0x0b, 0x77, - 0x07, 0x9e, 0x15, 0x1c, 0xac, 0x38, 0x76, 0x80, 0x9f, 0x07, 0xe8, 0x3e, 0xcc, 0xda, 0x82, 0x7f, - 0x28, 0x88, 0x42, 0x05, 0x59, 0xca, 0x6c, 0x1d, 0xab, 0x5c, 0x6b, 0xda, 0x32, 0xc0, 0x47, 0x77, - 0x23, 0x83, 0x17, 0x7c, 0x4a, 0xe9, 0x06, 0x6d, 0xad, 0x51, 0x69, 0x38, 0x17, 0x31, 0x16, 0x04, - 0x8f, 0x37, 0x81, 0xb8, 0x40, 0xdd, 0xf0, 0x75, 0xd2, 0x52, 0xaa, 0xe5, 0xfa, 0xb5, 0x79, 0xc9, - 0x0a, 0xc2, 0x06, 0x6b, 0x35, 0x6f, 0x60, 0xb7, 0x7d, 0xa2, 0x21, 0x74, 0x83, 0xba, 0x53, 0x42, - 0xb7, 0xe7, 0x39, 0x03, 0x77, 0xb1, 0x5a, 0x48, 0x08, 0x94, 0xf0, 0x1e, 0xc1, 0xa4, 0x5e, 0x96, - 0x0f, 0x59, 0xdd, 0x73, 0x9c, 0x60, 0xd7, 0x17, 0xc3, 0x54, 0x80, 0x35, 0x0a, 0x45, 0x57, 0xe0, - 0x98, 0x3f, 0x70, 0xdd, 0x1e, 0xee, 0x63, 0x3b, 0x30, 0x7a, 0xac, 0x22, 0xd2, 0x67, 0xe5, 0x73, - 0x65, 0x0d, 0xc5, 0x8b, 0x28, 0x63, 0x1f, 0x2d, 0x03, 0xb8, 0x9e, 0xf5, 0xd4, 0xea, 0xe1, 0x3d, - 0x6c, 0x2e, 0x4e, 0x50, 0xa6, 0x31, 0x08, 0x7a, 0x83, 0x78, 0xde, 0x6e, 0xd7, 0xe9, 0xbb, 0x8b, - 0xb5, 0xb4, 0xbe, 0x45, 0x3f, 0x75, 0x3c, 0x67, 0xd7, 0xea, 0x61, 0x4d, 0xe0, 0xa2, 0xb7, 0xa0, - 0x6a, 0xb8, 0xae, 0xe1, 0xf5, 0x1d, 0x6f, 0x11, 0x86, 0xd3, 0x85, 0xc8, 0xe8, 0x3a, 0xcc, 0x71, - 0x1e, 0xba, 0xcb, 0x0a, 0x99, 0x53, 0x9b, 0x24, 0x76, 0x79, 0xb7, 0xb4, 0xa8, 0x68, 0x88, 0x97, - 0x73, 0x5a, 0xe2, 0xe2, 0xd4, 0xbf, 0x57, 0x60, 0x26, 0xc1, 0x13, 0xbd, 0x0f, 0x53, 0x82, 0x43, - 0x70, 0xe0, 0x0a, 0x37, 0xf0, 0x4a, 0x81, 0x18, 0x97, 0xf9, 0xdf, 0xed, 0x03, 0x17, 0x53, 0xef, - 0x25, 0x3e, 0xd0, 0x59, 0x68, 0xf4, 0x9c, 0xae, 0xd1, 0xa3, 0x5e, 0xcb, 0xc3, 0xbb, 0xdc, 0xc7, - 0x4e, 0x85, 0x40, 0x0d, 0xef, 0xaa, 0x77, 0xa0, 0x1e, 0x63, 0x80, 0x10, 0x4c, 0x6b, 0xac, 0xaa, - 0x55, 0xbc, 0x6b, 0x0c, 0x7a, 0x41, 0x73, 0x0c, 0x4d, 0x03, 0xec, 0xd8, 0x5d, 0x32, 0xa7, 0xd9, - 0xd8, 0x6c, 0x2a, 0xa8, 0x01, 0xb5, 0x07, 0x82, 0x45, 0xb3, 0xa4, 0x7e, 0xaf, 0x0c, 0xc7, 0xa9, - 0xe1, 0x75, 0x1c, 0x93, 0x8f, 0x04, 0x3e, 0x01, 0x9e, 0x85, 0x46, 0x97, 0xf6, 0xa5, 0xee, 0x1a, - 0x1e, 0xb6, 0x03, 0x3e, 0x0d, 0x4c, 0x31, 0x60, 0x87, 0xc2, 0x90, 0x06, 0x4d, 0x9f, 0xb7, 0x48, - 0xef, 0xb2, 0x91, 0xc3, 0x8d, 0x5b, 0x6a, 0x75, 0xc1, 0x40, 0xd3, 0x66, 0xfc, 0xd4, 0xc8, 0x9b, - 0xf4, 0x0f, 0xfc, 0x6e, 0xd0, 0x13, 0xde, 0xee, 0x72, 0x8a, 0x55, 0x52, 0xd8, 0xcb, 0x5b, 0x8c, - 0x60, 0xcd, 0x0e, 0xbc, 0x03, 0x4d, 0x90, 0xa3, 0x77, 0xa1, 0xea, 0x3c, 0xc5, 0xde, 0x3e, 0x36, - 0x98, 0x97, 0xa9, 0x5f, 0x3b, 0x9b, 0x62, 0xb5, 0x22, 0x1c, 0xbd, 0x86, 0x7d, 0x67, 0xe0, 0x75, - 0xb1, 0xaf, 0x85, 0x44, 0xa8, 0x0d, 0x35, 0x4f, 0x80, 0xb9, 0x17, 0x1a, 0x89, 0x43, 0x44, 0xd5, - 0xba, 0x05, 0x53, 0x71, 0xe1, 0x50, 0x13, 0xca, 0x4f, 0xf0, 0x01, 0x57, 0x26, 0xf9, 0x19, 0xf9, - 0x27, 0xd6, 0xc3, 0xec, 0xe3, 0x56, 0xe9, 0x86, 0xa2, 0x7a, 0x80, 0xa2, 0x96, 0x3e, 0xc4, 0x81, - 0x61, 0x1a, 0x81, 0x81, 0x10, 0x54, 0x68, 0x68, 0xc4, 0x58, 0xd0, 0xdf, 0x84, 0xeb, 0x80, 0xbb, - 0xea, 0x9a, 0x46, 0x7e, 0xa2, 0x93, 0x50, 0x0b, 0x3d, 0x11, 0x8f, 0x8f, 0x22, 0x00, 0x89, 0x53, - 0x8c, 0x20, 0xc0, 0x7d, 0x37, 0xa0, 0x8a, 0x69, 0x68, 0xe2, 0x53, 0xfd, 0x8d, 0x71, 0x68, 0xa6, - 0x6c, 0xe1, 0x16, 0x54, 0xfb, 0xbc, 0x7a, 0xee, 0x03, 0x97, 0xa5, 0x60, 0x25, 0x25, 0xa4, 0x16, - 0xe2, 0x93, 0x58, 0x80, 0xd8, 0x5a, 0x2c, 0x9a, 0x0b, 0xbf, 0x99, 0x91, 0xef, 0xe9, 0xa6, 0xe5, - 0xe1, 0x6e, 0xe0, 0x78, 0x07, 0x5c, 0xd0, 0xa9, 0x9e, 0xb3, 0xb7, 0x2a, 0x60, 0xe8, 0x3a, 0x80, - 0x69, 0xfb, 0x3a, 0xb5, 0xe1, 0x3d, 0xde, 0x8f, 0xd2, 0x04, 0x18, 0x06, 0x6d, 0x5a, 0xcd, 0xb4, - 0x7d, 0x2e, 0xf2, 0x6d, 0x68, 0x90, 0x08, 0x48, 0xef, 0xb3, 0xb9, 0x91, 0x39, 0xa4, 0xfa, 0xb5, - 0x05, 0x59, 0xee, 0x30, 0x1e, 0xd3, 0xa6, 0xdc, 0xe8, 0xc3, 0x47, 0x77, 0x60, 0x82, 0x06, 0x21, - 0xfe, 0xe2, 0x04, 0x25, 0x3b, 0x97, 0xdd, 0x5c, 0x6e, 0x7d, 0x0f, 0x28, 0x2a, 0x33, 0x3e, 0x4e, - 0x87, 0x36, 0xa1, 0x6e, 0xd8, 0xb6, 0x13, 0x18, 0xcc, 0xe3, 0x4f, 0x52, 0x36, 0x97, 0x0a, 0xd9, - 0xb4, 0x23, 0x7c, 0xc6, 0x2b, 0xce, 0x01, 0xbd, 0x05, 0xe3, 0x74, 0x4a, 0xe0, 0x3e, 0xfc, 0xcc, - 0xd0, 0x41, 0xa1, 0x31, 0x7c, 0xf4, 0x36, 0x4c, 0x3e, 0xb3, 0x6c, 0xd3, 0x79, 0xe6, 0x73, 0x7f, - 0x2a, 0x99, 0xf0, 0x97, 0x59, 0x51, 0x8a, 0x58, 0xd0, 0xb4, 0x6e, 0x42, 0x3d, 0xd6, 0xbe, 0xc3, - 0xd8, 0x6f, 0xeb, 0x1d, 0x68, 0x26, 0xdb, 0x74, 0x28, 0xfb, 0x1f, 0xc0, 0x9c, 0x36, 0xb0, 0x23, - 0xd1, 0xc4, 0x62, 0xe3, 0x3a, 0x4c, 0x70, 0x6b, 0x60, 0xc6, 0x78, 0xb2, 0x48, 0xad, 0x1a, 0xc7, - 0x8d, 0xaf, 0x1b, 0xf6, 0x0d, 0xdb, 0xec, 0x61, 0x8f, 0xd7, 0x28, 0xd6, 0x0d, 0xf7, 0x19, 0x54, - 0x7d, 0x1b, 0x8e, 0x27, 0xaa, 0xe5, 0xcb, 0x96, 0x17, 0x61, 0xda, 0x75, 0x4c, 0xdd, 0x67, 0x60, - 0x11, 0x4b, 0xd6, 0x88, 0xed, 0x08, 0xdc, 0x75, 0x93, 0x90, 0x6f, 0x05, 0x8e, 0x9b, 0x16, 0x7b, - 0x34, 0xf2, 0x45, 0x98, 0x4f, 0x92, 0xb3, 0xea, 0xd5, 0x77, 0x61, 0x41, 0xc3, 0x7d, 0xe7, 0x29, - 0x3e, 0x2a, 0xeb, 0x16, 0x2c, 0xa6, 0x19, 0x70, 0xe6, 0x1f, 0xc0, 0x42, 0x04, 0xdd, 0x0a, 0x8c, - 0x60, 0xe0, 0x1f, 0x8a, 0x39, 0x5f, 0xd3, 0x3d, 0x76, 0x7c, 0xd6, 0x91, 0x55, 0x4d, 0x7c, 0xaa, - 0x0b, 0x30, 0xde, 0x71, 0xcc, 0xf5, 0x0e, 0x9a, 0x86, 0x92, 0xe5, 0x72, 0xe2, 0x92, 0xe5, 0xaa, - 0xdd, 0x78, 0x9d, 0x1b, 0x2c, 0xea, 0x64, 0x55, 0x27, 0x51, 0xd1, 0x0d, 0x98, 0x36, 0x4c, 0xd3, - 0x22, 0x86, 0x64, 0xf4, 0x74, 0xcb, 0x15, 0x41, 0xf3, 0x6c, 0xa2, 0xeb, 0xd7, 0x3b, 0x5a, 0x23, - 0x42, 0x5c, 0x77, 0x7d, 0xf5, 0x2e, 0xd4, 0xa2, 0x00, 0xfd, 0x8d, 0x68, 0x7d, 0x56, 0x1a, 0x1e, - 0xcb, 0x85, 0x8b, 0xb7, 0x8d, 0xd4, 0x24, 0xc9, 0xc5, 0x7c, 0x03, 0x20, 0x74, 0xaa, 0x22, 0x3c, - 0x3c, 0x9e, 0xc9, 0x52, 0x8b, 0x21, 0xaa, 0xff, 0x5e, 0x89, 0x3b, 0xd9, 0x58, 0x93, 0xcd, 0xb0, - 0xc9, 0xa6, 0xe4, 0x74, 0x4b, 0x87, 0x74, 0xba, 0xaf, 0xc1, 0xb8, 0x1f, 0x18, 0x01, 0xe6, 0xf1, - 0xf8, 0x52, 0x36, 0x21, 0xa9, 0x18, 0x6b, 0x0c, 0x13, 0x9d, 0x02, 0xe8, 0x7a, 0xd8, 0x08, 0xb0, - 0xa9, 0x1b, 0x6c, 0x56, 0x28, 0x6b, 0x35, 0x0e, 0x69, 0x07, 0xc4, 0x8b, 0x88, 0x15, 0x44, 0xc6, - 0x44, 0x98, 0xd3, 0x8d, 0xd1, 0x5a, 0x22, 0xf4, 0x5e, 0x13, 0x43, 0xbd, 0x17, 0x27, 0xe5, 0xde, - 0x2b, 0xf2, 0xc4, 0x93, 0x45, 0x9e, 0x98, 0x11, 0x8d, 0xe2, 0x89, 0xab, 0x45, 0x9e, 0x98, 0xb3, - 0x29, 0xf6, 0xc4, 0x19, 0x8e, 0xa4, 0x96, 0xe5, 0x48, 0x3e, 0x4b, 0xd7, 0xf9, 0x97, 0x25, 0x58, - 0x4c, 0x8f, 0x67, 0xee, 0xc7, 0xae, 0xc3, 0x84, 0x4f, 0x21, 0xc5, 0xfe, 0x93, 0x53, 0x71, 0x5c, - 0x74, 0x17, 0x2a, 0x96, 0xbd, 0xeb, 0xf0, 0x81, 0x77, 0xb9, 0x90, 0x86, 0xd7, 0x74, 0x79, 0xdd, - 0xde, 0x75, 0x98, 0x06, 0x29, 0x2d, 0x7a, 0x00, 0xc7, 0xc2, 0x95, 0xb5, 0xaf, 0x33, 0xc6, 0x58, - 0xc4, 0x79, 0x92, 0x95, 0x86, 0x51, 0x15, 0xe7, 0x88, 0x22, 0xba, 0x2d, 0x4e, 0x46, 0x62, 0x1c, - 0x82, 0xee, 0x07, 0x46, 0xdf, 0x15, 0x16, 0x1b, 0x02, 0x5a, 0x6f, 0x41, 0x2d, 0xac, 0xfe, 0x50, - 0xba, 0x5b, 0x87, 0xb9, 0xc4, 0x18, 0x61, 0x0b, 0xc9, 0x70, 0x50, 0x29, 0xa3, 0x0e, 0x2a, 0xf5, - 0xe7, 0x4a, 0x7c, 0xa0, 0xbf, 0x67, 0xf5, 0x02, 0xec, 0xa5, 0x06, 0xfa, 0x9b, 0x82, 0x2f, 0x1b, - 0xe5, 0xa7, 0x0b, 0xf8, 0xb2, 0x75, 0x1a, 0x1f, 0xb1, 0x8f, 0x60, 0x9a, 0x9a, 0xb8, 0xee, 0xe3, - 0x1e, 0x8d, 0x95, 0xb8, 0x1e, 0xaf, 0x64, 0x33, 0x60, 0xb5, 0xb3, 0x21, 0xb2, 0xc5, 0x29, 0x58, - 0xdf, 0x34, 0x7a, 0x71, 0x58, 0xeb, 0x0e, 0xa0, 0x34, 0xd2, 0xa1, 0x34, 0xf8, 0x90, 0xf8, 0x4b, - 0x3f, 0xc8, 0x9c, 0xb9, 0x77, 0xa9, 0x18, 0xc5, 0x96, 0xc7, 0x44, 0xd5, 0x38, 0xae, 0xfa, 0xaf, - 0x65, 0x80, 0xa8, 0xf0, 0x73, 0xee, 0x28, 0x6f, 0x85, 0x0e, 0x8b, 0x45, 0x9c, 0x6a, 0x36, 0xcb, - 0x4c, 0x57, 0xb5, 0x2e, 0xbb, 0x2a, 0x16, 0x7b, 0xbe, 0x92, 0xc3, 0xe0, 0xd0, 0x4e, 0x6a, 0xf2, - 0xf3, 0xe6, 0xa4, 0xde, 0x83, 0xf9, 0xa4, 0x99, 0x70, 0x0f, 0xf5, 0x2a, 0x8c, 0x5b, 0x01, 0xee, - 0xb3, 0xbd, 0xd7, 0xc4, 0x86, 0x45, 0x0c, 0x9d, 0x21, 0xa9, 0xef, 0xc0, 0xbc, 0xdc, 0x57, 0x87, - 0x0b, 0x5d, 0xd4, 0x07, 0xc9, 0xd8, 0x27, 0x72, 0x95, 0xdc, 0x3e, 0x32, 0xb7, 0x7e, 0x92, 0x34, - 0x0c, 0x53, 0xfd, 0xa1, 0x02, 0xc7, 0x13, 0x45, 0x39, 0x03, 0xff, 0x6b, 0xa9, 0x01, 0xcc, 0x7c, - 0xeb, 0xf5, 0x82, 0x5a, 0x3e, 0xc5, 0x51, 0xfc, 0x65, 0x68, 0xc9, 0xdd, 0x23, 0xa9, 0xf6, 0x66, - 0x62, 0x28, 0x9f, 0x19, 0x2a, 0x74, 0x38, 0x9e, 0x3b, 0xb0, 0x94, 0xc9, 0x38, 0xad, 0xf3, 0xf2, - 0x88, 0x3a, 0xff, 0xdf, 0x52, 0xdc, 0x67, 0xb7, 0x83, 0xc0, 0xb3, 0x1e, 0x0f, 0x02, 0xfc, 0xc9, - 0x06, 0x55, 0xab, 0xe1, 0xc8, 0x66, 0x7e, 0xf6, 0xd5, 0x6c, 0xca, 0xa8, 0xf6, 0xcc, 0x31, 0xbe, - 0x25, 0x8f, 0xf1, 0x0a, 0x65, 0xf5, 0xda, 0x50, 0x56, 0x85, 0xa3, 0xfd, 0xb3, 0x1c, 0xc4, 0xff, - 0xa8, 0xc0, 0x4c, 0xa2, 0x57, 0xd0, 0x1d, 0x00, 0x23, 0x14, 0x9d, 0xdb, 0xc7, 0xe9, 0x61, 0x4d, - 0xd4, 0x62, 0x34, 0x64, 0x4e, 0x64, 0xf1, 0x62, 0xc6, 0x9c, 0x98, 0x11, 0x2f, 0x86, 0xe1, 0xe2, - 0xed, 0x68, 0xb1, 0xcb, 0x36, 0x49, 0xd5, 0xc2, 0xc5, 0x2e, 0xa3, 0x15, 0x24, 0xea, 0x6f, 0x96, - 0x60, 0x2e, 0x8b, 0x3b, 0x7a, 0x19, 0xca, 0x5d, 0x77, 0xc0, 0x5b, 0x22, 0x1d, 0xd4, 0xac, 0xb8, - 0x83, 0x1d, 0xdf, 0xd8, 0xc3, 0x1a, 0x41, 0x40, 0x57, 0x60, 0xa2, 0x8f, 0xfb, 0x8e, 0x77, 0xc0, - 0xe5, 0x96, 0xb6, 0x1b, 0x1e, 0xd2, 0x12, 0x86, 0xcd, 0xd1, 0xd0, 0xb5, 0x28, 0xac, 0x66, 0xf2, - 0x2e, 0x4a, 0xab, 0x07, 0x56, 0xc4, 0x48, 0xc2, 0x58, 0xfa, 0x1a, 0x4c, 0xba, 0x9e, 0xd3, 0xc5, - 0xbe, 0xcf, 0x77, 0x43, 0x16, 0x13, 0x27, 0x47, 0xa4, 0x88, 0xd3, 0x70, 0x44, 0x74, 0x0b, 0x20, - 0x0a, 0xa0, 0xf8, 0xcc, 0xd4, 0xca, 0x8d, 0xb7, 0x7c, 0x2d, 0x86, 0xad, 0xfe, 0xa0, 0x04, 0xf3, - 0xd9, 0x9a, 0x43, 0x97, 0xe2, 0x7a, 0x59, 0xca, 0x50, 0xb5, 0xac, 0x9e, 0x37, 0x13, 0xea, 0x59, - 0xce, 0xa0, 0xc8, 0xd2, 0xd2, 0xcd, 0xa4, 0x96, 0x5e, 0xc8, 0x20, 0xcc, 0x56, 0xd6, 0xcd, 0xa4, - 0xb2, 0xb2, 0x48, 0xb3, 0x75, 0xd6, 0xce, 0xd0, 0xd9, 0x99, 0xac, 0x36, 0xe6, 0xab, 0xee, 0x6f, - 0x15, 0x98, 0x8a, 0xcb, 0x25, 0x87, 0xac, 0x4a, 0x22, 0x64, 0x45, 0x1b, 0x30, 0x6b, 0xb2, 0x9d, - 0x5b, 0xdd, 0xb2, 0x03, 0xec, 0xed, 0x1a, 0x5d, 0x11, 0x15, 0x9e, 0xc9, 0xb0, 0x8b, 0x75, 0x81, - 0xc3, 0x04, 0x6f, 0x72, 0xda, 0x10, 0x4c, 0x5a, 0x10, 0xf2, 0x11, 0x5e, 0x6b, 0x04, 0x46, 0x31, - 0x22, 0xf5, 0x5f, 0x14, 0x38, 0x96, 0xa1, 0xe0, 0x21, 0x0d, 0xd9, 0xc9, 0x6f, 0xc8, 0xb9, 0xfc, - 0xae, 0x1b, 0xda, 0x9e, 0xfb, 0x19, 0xed, 0x19, 0x9d, 0x5f, 0xbc, 0x59, 0xbf, 0x50, 0xe0, 0x78, - 0x26, 0x56, 0xe6, 0xf6, 0xea, 0x35, 0xa8, 0x7a, 0xcf, 0xf5, 0xc7, 0x07, 0x01, 0xf6, 0xb3, 0x06, - 0xf6, 0x4e, 0xec, 0x0c, 0x65, 0xd2, 0x7b, 0x7e, 0x97, 0xe0, 0xa1, 0xeb, 0x50, 0xf3, 0x9e, 0xeb, - 0xd8, 0xf3, 0x1c, 0x4f, 0xf8, 0xa2, 0x5c, 0xa2, 0xaa, 0xf7, 0x7c, 0x8d, 0x22, 0x92, 0x9a, 0x02, - 0x51, 0x53, 0x65, 0x48, 0x4d, 0x41, 0x54, 0x53, 0x10, 0xd6, 0x34, 0x3e, 0xa4, 0xa6, 0x80, 0xd7, - 0xa4, 0xfe, 0x71, 0x09, 0x4e, 0x16, 0xa9, 0xeb, 0x13, 0x53, 0xc4, 0x1a, 0x20, 0xef, 0xb9, 0xee, - 0x1a, 0xdd, 0x27, 0x38, 0xf0, 0x75, 0xd3, 0x73, 0x5c, 0x17, 0x9b, 0xc3, 0x34, 0xd2, 0xf4, 0x9e, - 0x77, 0x18, 0xc5, 0x2a, 0x23, 0x38, 0x92, 0x66, 0xd6, 0x00, 0x05, 0xe9, 0xaa, 0x87, 0xa8, 0xa8, - 0x19, 0x24, 0xaa, 0x56, 0x3f, 0x84, 0xa9, 0xb8, 0x87, 0x18, 0x62, 0xfb, 0xb7, 0xa1, 0xc1, 0x3d, - 0x88, 0xde, 0x75, 0x06, 0x76, 0x30, 0x4c, 0x51, 0x53, 0x1c, 0x7b, 0x85, 0x20, 0xab, 0xdf, 0x08, - 0x87, 0xdb, 0xa7, 0x56, 0xe5, 0x9f, 0x28, 0x50, 0x5b, 0xef, 0x1b, 0x7b, 0x78, 0xcb, 0xc5, 0x5d, - 0x32, 0xd3, 0x5b, 0xe4, 0x83, 0xf7, 0x3b, 0xfb, 0x40, 0xf7, 0xe5, 0xa8, 0x85, 0xc5, 0xa9, 0x2f, - 0x4b, 0xe7, 0x88, 0x82, 0xc3, 0x90, 0x50, 0xe5, 0xe3, 0xc6, 0x1b, 0xd7, 0xa0, 0xfa, 0x45, 0x7c, - 0xc0, 0x56, 0xe4, 0x23, 0xd2, 0xa9, 0xdf, 0xa9, 0xc0, 0x42, 0xce, 0x59, 0x0d, 0x5d, 0xce, 0xb9, - 0x03, 0xdd, 0xc5, 0x9e, 0xe5, 0x98, 0x42, 0xb5, 0x5d, 0x77, 0xd0, 0xa1, 0x00, 0xb4, 0x04, 0xe4, - 0x43, 0xff, 0xc6, 0xc0, 0xe1, 0x11, 0x63, 0x59, 0xab, 0x76, 0xdd, 0xc1, 0x97, 0xc8, 0xb7, 0xa0, - 0xf5, 0xf7, 0x0d, 0x0f, 0xb3, 0x41, 0xce, 0x68, 0xb7, 0x28, 0x00, 0xbd, 0x06, 0xc7, 0xd9, 0x04, - 0xa6, 0xf7, 0xac, 0xbe, 0x45, 0x5c, 0x61, 0xcc, 0x7e, 0xcb, 0x1a, 0x62, 0x85, 0x0f, 0x48, 0xd9, - 0xba, 0xcd, 0x2c, 0x56, 0x85, 0x86, 0xe3, 0xf4, 0x75, 0xbf, 0xeb, 0x78, 0x58, 0x37, 0xcc, 0x0f, - 0xa9, 0xb1, 0x96, 0xb5, 0xba, 0xe3, 0xf4, 0xb7, 0x08, 0xac, 0x6d, 0x7e, 0x88, 0x5e, 0x80, 0x7a, - 0xd7, 0x1d, 0xf8, 0x38, 0xd0, 0xc9, 0x1f, 0xba, 0xa3, 0x56, 0xd3, 0x80, 0x81, 0x56, 0xdc, 0x81, - 0x1f, 0x43, 0xe8, 0x93, 0x35, 0xd4, 0x64, 0x1c, 0xe1, 0x21, 0xee, 0xd3, 0x23, 0xe9, 0xfd, 0xc1, - 0x1e, 0x76, 0x8d, 0x3d, 0xcc, 0x44, 0x13, 0xdb, 0x62, 0xd2, 0x91, 0xf4, 0x7d, 0x8e, 0x42, 0x05, - 0xd4, 0xa6, 0xf7, 0xe3, 0x9f, 0x3e, 0x7a, 0x1f, 0x26, 0x07, 0xb6, 0xb5, 0x6b, 0x61, 0x73, 0xb1, - 0x46, 0x69, 0xaf, 0x8e, 0x70, 0x32, 0x76, 0x79, 0x87, 0x91, 0xf0, 0x83, 0x3a, 0xce, 0x00, 0xdd, - 0x82, 0x16, 0x57, 0x94, 0xff, 0xcc, 0x70, 0x93, 0xda, 0x02, 0xaa, 0x82, 0x79, 0x86, 0xb1, 0xf5, - 0xcc, 0x70, 0xe3, 0x1a, 0x6b, 0xdd, 0x82, 0xa9, 0x38, 0xd3, 0x43, 0xd9, 0xd2, 0x5d, 0x68, 0x48, - 0x8d, 0x24, 0xbd, 0x4d, 0x95, 0xe2, 0x5b, 0xdf, 0x14, 0x03, 0xa0, 0x4a, 0x00, 0x5b, 0xd6, 0x37, - 0x69, 0x22, 0x01, 0x95, 0x8c, 0xf2, 0xa9, 0x68, 0xec, 0x43, 0x35, 0xa0, 0x21, 0x9d, 0xdd, 0x13, - 0xbf, 0x49, 0x0f, 0xe9, 0xb9, 0xdf, 0x24, 0xbf, 0x09, 0xcc, 0x73, 0x7a, 0x42, 0x02, 0xfa, 0x9b, - 0xc0, 0xe8, 0x29, 0x31, 0x3b, 0xf3, 0xa2, 0xbf, 0x69, 0x15, 0xf8, 0x29, 0x4f, 0x89, 0xa9, 0x69, - 0xec, 0x43, 0xfd, 0x5d, 0x05, 0x60, 0xc5, 0x70, 0x8d, 0xc7, 0x56, 0xcf, 0x0a, 0x0e, 0xd0, 0x79, - 0x68, 0x1a, 0xa6, 0xa9, 0x77, 0x05, 0xc4, 0xc2, 0x22, 0x47, 0x69, 0xc6, 0x30, 0xcd, 0x95, 0x18, - 0x18, 0x5d, 0x84, 0x59, 0xe2, 0xf5, 0x64, 0x5c, 0x96, 0xb4, 0xd4, 0x24, 0x05, 0x12, 0xf2, 0x0d, - 0x58, 0x24, 0x7c, 0x8d, 0xfe, 0x63, 0x0b, 0xdb, 0x81, 0x4c, 0xc3, 0xb2, 0x99, 0xe6, 0x0d, 0xd3, - 0x6c, 0xb3, 0xe2, 0x38, 0xa5, 0xfa, 0x37, 0x13, 0x70, 0x4a, 0xee, 0xf1, 0x64, 0x3a, 0xc5, 0x2d, - 0x98, 0x4a, 0xc8, 0x9b, 0x4a, 0x44, 0x88, 0x5a, 0xa8, 0x49, 0xb8, 0x89, 0x84, 0x81, 0x52, 0x2a, - 0x61, 0x20, 0x33, 0x55, 0xa3, 0xfc, 0x09, 0xa5, 0x6a, 0x54, 0x3e, 0x66, 0xaa, 0xc6, 0xf8, 0x51, - 0x53, 0x35, 0xa6, 0x46, 0x4e, 0xd5, 0x78, 0x99, 0x6e, 0xf5, 0x88, 0x1a, 0xe9, 0x9c, 0xcd, 0x7c, - 0x42, 0x23, 0xe4, 0x6e, 0x8b, 0xc4, 0xb9, 0x44, 0x4a, 0xc7, 0xe4, 0x61, 0x52, 0x3a, 0xaa, 0xb9, - 0x29, 0x1d, 0xa7, 0x61, 0xca, 0x76, 0x74, 0x1b, 0x3f, 0xd3, 0x49, 0xb7, 0xf8, 0x8b, 0x75, 0xd6, - 0x47, 0xb6, 0xb3, 0x81, 0x9f, 0x75, 0x08, 0x04, 0x9d, 0x81, 0xa9, 0xbe, 0xe1, 0x3f, 0xc1, 0x26, - 0xcd, 0xad, 0xf0, 0x17, 0x1b, 0xd4, 0x9e, 0xea, 0x0c, 0xd6, 0x21, 0x20, 0xf4, 0x12, 0x84, 0x72, - 0x70, 0xa4, 0x69, 0x8a, 0xd4, 0x10, 0x50, 0x86, 0x16, 0x4b, 0x0f, 0x99, 0x39, 0x62, 0x7a, 0x48, - 0xf3, 0x30, 0xe9, 0x21, 0x97, 0xa0, 0x29, 0x7e, 0x8b, 0xfc, 0x10, 0xb6, 0xdd, 0x4f, 0x53, 0x43, - 0x66, 0x44, 0x99, 0xc8, 0x01, 0xc9, 0xcb, 0x26, 0x81, 0xc2, 0x6c, 0x92, 0xef, 0x2b, 0x7c, 0xe1, - 0x19, 0x0e, 0x20, 0x7e, 0x8c, 0x2d, 0x65, 0x20, 0x28, 0x47, 0xc9, 0x40, 0x40, 0xdb, 0xb9, 0x39, - 0x1a, 0xe7, 0xf3, 0x39, 0x0d, 0xcb, 0xd2, 0x50, 0x1f, 0x86, 0x6b, 0xc2, 0x4f, 0x22, 0xd7, 0x4c, - 0xfd, 0x4f, 0x05, 0x4e, 0x71, 0x7e, 0x39, 0x09, 0x59, 0x19, 0x56, 0xae, 0xe4, 0x58, 0x79, 0xd7, - 0xc3, 0x26, 0xb6, 0x03, 0xcb, 0xe8, 0xe9, 0xbe, 0x8b, 0xbb, 0xe2, 0x98, 0x37, 0x02, 0xd3, 0x40, - 0xe7, 0x0c, 0x4c, 0xb1, 0x0c, 0x46, 0xbe, 0x3c, 0x64, 0x89, 0x8a, 0x75, 0x9a, 0xc4, 0xc8, 0x57, - 0x80, 0x9b, 0x59, 0x9e, 0xa5, 0x92, 0xbb, 0xaf, 0x30, 0xd4, 0xc1, 0xa8, 0x0e, 0x2c, 0xe4, 0x1c, - 0xb8, 0x67, 0x76, 0x93, 0x92, 0xee, 0xa6, 0x42, 0x25, 0xa5, 0xbb, 0xe9, 0x3b, 0x0a, 0xbc, 0x90, - 0x5a, 0xa6, 0x7e, 0xf6, 0x9a, 0x55, 0xff, 0x5c, 0x09, 0xed, 0x27, 0x69, 0xf2, 0x2b, 0x69, 0x93, - 0x7f, 0xa9, 0x68, 0xd5, 0x9d, 0x69, 0xf4, 0x8f, 0x72, 0x8d, 0xfe, 0x62, 0xe1, 0x0a, 0x7e, 0x98, - 0x3e, 0xff, 0x4d, 0x81, 0x13, 0xb9, 0x02, 0x24, 0xe2, 0x41, 0x25, 0x19, 0x0f, 0xf2, 0x58, 0x32, - 0x0a, 0xd1, 0x59, 0x2c, 0x49, 0xa3, 0x70, 0x1e, 0xb4, 0xe9, 0x7d, 0xe3, 0xb9, 0xd5, 0x1f, 0xf4, - 0x79, 0x30, 0x49, 0xd8, 0x3d, 0x64, 0x90, 0xa3, 0x44, 0x93, 0x57, 0x60, 0x8e, 0x39, 0x7a, 0x1a, - 0xd0, 0x44, 0x14, 0x2c, 0xa8, 0x9c, 0x65, 0x65, 0x24, 0xb6, 0xe1, 0x04, 0x6a, 0x1b, 0x66, 0xc3, - 0x66, 0x15, 0x26, 0x1c, 0xc5, 0x12, 0x88, 0x4a, 0x72, 0x02, 0x91, 0x0d, 0x13, 0xab, 0xf8, 0xa9, - 0xd5, 0xc5, 0x9f, 0x48, 0x26, 0xf1, 0x69, 0xa8, 0xbb, 0xd8, 0xeb, 0x5b, 0xbe, 0x1f, 0xce, 0xea, - 0x35, 0x2d, 0x0e, 0x52, 0xbf, 0x3f, 0x01, 0x33, 0x49, 0x13, 0xba, 0x99, 0xca, 0x57, 0x3a, 0x95, - 0xb9, 0xd7, 0x95, 0xb1, 0xc9, 0x7b, 0x51, 0x2c, 0x7f, 0x4a, 0xe9, 0xc3, 0xfc, 0x70, 0x89, 0x23, - 0x56, 0x45, 0x8b, 0x30, 0xd9, 0x75, 0xfa, 0x7d, 0xc3, 0x36, 0x45, 0xba, 0x37, 0xff, 0x24, 0x3a, - 0x33, 0xbc, 0x3d, 0xb6, 0xbd, 0x5b, 0xd3, 0xe8, 0x6f, 0xd2, 0xc3, 0xc4, 0xd7, 0x59, 0x36, 0xcd, - 0x78, 0xa2, 0x9d, 0x50, 0xd3, 0x80, 0x83, 0x56, 0x2d, 0x0f, 0x9d, 0x83, 0x0a, 0xb6, 0x9f, 0x8a, - 0x73, 0x1f, 0x69, 0x9b, 0x51, 0x2c, 0x79, 0x34, 0x8a, 0x81, 0xce, 0xc3, 0x44, 0x9f, 0x58, 0x8d, - 0x38, 0x15, 0x9f, 0x4d, 0xa5, 0x45, 0x6b, 0x1c, 0x01, 0xbd, 0x0a, 0x93, 0x26, 0xed, 0x0f, 0x11, - 0xe3, 0x23, 0x29, 0x77, 0x8a, 0x16, 0x69, 0x02, 0x05, 0xbd, 0x1b, 0xee, 0x71, 0xd7, 0xd2, 0x87, - 0x4f, 0x09, 0x35, 0x67, 0x6e, 0x6f, 0x6f, 0xc8, 0x0b, 0x45, 0x48, 0xef, 0x94, 0x27, 0xb9, 0x14, - 0x9f, 0x63, 0x9d, 0x80, 0x6a, 0xcf, 0xd9, 0x63, 0xc6, 0x51, 0x67, 0x77, 0x05, 0x7a, 0xce, 0x1e, - 0xb5, 0x8d, 0x39, 0x18, 0xf7, 0x03, 0xd3, 0xb2, 0x69, 0xa8, 0x54, 0xd5, 0xd8, 0x07, 0x19, 0x83, - 0xf4, 0x87, 0xee, 0xd8, 0x5d, 0xbc, 0xd8, 0xa0, 0x45, 0x35, 0x0a, 0xd9, 0xb4, 0xbb, 0x74, 0xc9, - 0x18, 0x04, 0x07, 0x8b, 0xd3, 0x14, 0x4e, 0x7e, 0x46, 0x5b, 0xcd, 0x33, 0x39, 0x5b, 0xcd, 0x09, - 0x81, 0x33, 0xb6, 0x9a, 0x9b, 0xb9, 0x53, 0x42, 0x92, 0xf6, 0xf3, 0x90, 0x56, 0xf5, 0x03, 0x05, - 0xe6, 0x57, 0xe8, 0x79, 0x65, 0xcc, 0x85, 0x1d, 0x26, 0xd5, 0xe7, 0xf5, 0x30, 0xff, 0x2a, 0x23, - 0x89, 0x26, 0xd9, 0x62, 0x91, 0x7e, 0xb5, 0x02, 0xd3, 0x82, 0x2d, 0x27, 0x2e, 0x8f, 0x90, 0xbc, - 0xd5, 0xf0, 0xe3, 0x9f, 0xea, 0x6d, 0x58, 0x48, 0x49, 0xce, 0x4f, 0x8d, 0x92, 0x89, 0xfc, 0x4c, - 0xf0, 0x78, 0x22, 0xbf, 0x7a, 0x0b, 0x8e, 0x6f, 0x05, 0x86, 0x17, 0xa4, 0x9a, 0x3d, 0x02, 0x2d, - 0x4d, 0xcb, 0x92, 0x69, 0x79, 0xe6, 0xd4, 0x16, 0xcc, 0x6d, 0x05, 0x8e, 0x7b, 0x04, 0xa6, 0xc4, - 0x7f, 0x90, 0x96, 0x3b, 0x03, 0x31, 0x1d, 0x88, 0x4f, 0x75, 0x81, 0x25, 0x91, 0xa5, 0x6b, 0xfb, - 0x02, 0xcc, 0xb3, 0x1c, 0xae, 0xa3, 0x34, 0xe2, 0x84, 0xc8, 0x20, 0x4b, 0xf3, 0xbd, 0x07, 0xc7, - 0xa4, 0x7d, 0x6c, 0x9e, 0xf3, 0x70, 0x55, 0xce, 0x79, 0xc8, 0x3f, 0x32, 0x08, 0x53, 0x1e, 0xbe, - 0x5b, 0x8a, 0xf9, 0xe3, 0x9c, 0x83, 0xcf, 0x37, 0xe4, 0x8c, 0x87, 0x17, 0xf2, 0xb9, 0x4a, 0x09, - 0x0f, 0x69, 0xeb, 0x2c, 0x67, 0x58, 0xe7, 0x4e, 0xea, 0x54, 0xb5, 0x92, 0xce, 0x58, 0x49, 0x48, - 0xf8, 0xa9, 0x9c, 0xa7, 0x3e, 0x60, 0x59, 0x11, 0x61, 0xd5, 0xe1, 0x51, 0xea, 0xeb, 0x89, 0xa3, - 0xd4, 0xa5, 0x02, 0x49, 0xc3, 0x43, 0xd4, 0xef, 0x56, 0xa0, 0x16, 0x96, 0xa5, 0x34, 0x9c, 0x56, - 0x55, 0x29, 0x43, 0x55, 0xf1, 0x79, 0xb2, 0x7c, 0xc4, 0x79, 0xb2, 0x32, 0xc2, 0x3c, 0xb9, 0x04, - 0x35, 0xfa, 0x83, 0x26, 0xb2, 0xb3, 0x79, 0xaf, 0x4a, 0x01, 0x1a, 0xde, 0x8d, 0x4c, 0x6c, 0x62, - 0x44, 0x13, 0x4b, 0x64, 0x60, 0x4c, 0x26, 0x33, 0x30, 0x6e, 0x86, 0x73, 0x58, 0x35, 0x7d, 0xe2, - 0x11, 0x72, 0xcc, 0x9c, 0xbd, 0x12, 0xdb, 0x9c, 0xb5, 0xf4, 0x36, 0x67, 0x44, 0xff, 0xb9, 0x3d, - 0x91, 0xdd, 0x64, 0x69, 0x15, 0x71, 0x3b, 0xe3, 0x3e, 0xf2, 0x0d, 0xe9, 0x44, 0x4b, 0x49, 0xdf, - 0x25, 0x8a, 0xfc, 0x42, 0xfc, 0x14, 0x6b, 0x07, 0xe6, 0x93, 0xe9, 0x58, 0x87, 0xf2, 0x71, 0x39, - 0x79, 0xa1, 0xbf, 0x1d, 0x8f, 0xdc, 0x72, 0x92, 0x20, 0x6f, 0xa6, 0xce, 0xeb, 0x47, 0xb6, 0xd0, - 0xab, 0x72, 0x6a, 0xcf, 0xa1, 0xed, 0x2a, 0x95, 0xd9, 0x43, 0x23, 0x0b, 0xc3, 0xe3, 0xc5, 0x2c, - 0x86, 0xae, 0x71, 0x48, 0x9b, 0x06, 0xf0, 0xbb, 0x96, 0x6d, 0xf9, 0xfb, 0xac, 0x7c, 0x82, 0x05, - 0xf0, 0x02, 0xd4, 0xa6, 0x9b, 0x8b, 0xf8, 0xb9, 0x15, 0xe8, 0x5d, 0xc7, 0xc4, 0xd4, 0x6a, 0xc7, - 0xb5, 0x2a, 0x01, 0xac, 0x38, 0x26, 0x8e, 0xc6, 0x53, 0xf5, 0xb0, 0xe3, 0xa9, 0x96, 0x18, 0x4f, - 0xf3, 0x30, 0xe1, 0x61, 0xc3, 0x77, 0x6c, 0xb6, 0xe7, 0xa0, 0xf1, 0x2f, 0xd2, 0x11, 0x7d, 0xec, - 0xfb, 0xa4, 0x0e, 0x1e, 0x48, 0xf1, 0xcf, 0x58, 0xd0, 0x37, 0x55, 0x10, 0xf4, 0x15, 0xa4, 0x58, - 0x26, 0x82, 0xbe, 0x46, 0x41, 0xd0, 0x37, 0x52, 0x86, 0x65, 0x14, 0xde, 0x4e, 0x0f, 0x0b, 0x6f, - 0xe3, 0xf1, 0xe1, 0x8c, 0x1c, 0x1f, 0xde, 0x8e, 0x2f, 0x24, 0x9b, 0xe9, 0x03, 0xe7, 0xe2, 0x8b, - 0x1b, 0x9f, 0xe1, 0x00, 0xfe, 0x27, 0x05, 0x16, 0x52, 0x03, 0x8e, 0x0f, 0xe1, 0xd7, 0x13, 0xb9, - 0x9b, 0x85, 0x49, 0x93, 0x22, 0x75, 0xb3, 0x2d, 0xa5, 0x6e, 0x5e, 0x2a, 0x22, 0xc9, 0xc9, 0xdc, - 0x3c, 0x7a, 0x36, 0xe5, 0xb7, 0x15, 0x40, 0x19, 0x4b, 0xe5, 0x9b, 0x22, 0xea, 0x3e, 0xc4, 0xa6, - 0x16, 0x0f, 0xbc, 0xdf, 0x8d, 0x02, 0xef, 0xd2, 0x61, 0xb6, 0x07, 0xc2, 0x34, 0x8f, 0x9f, 0x96, - 0xe0, 0x85, 0x1d, 0xd7, 0x4c, 0x84, 0x91, 0x1c, 0x6b, 0x74, 0xcf, 0x76, 0x53, 0xce, 0x51, 0x39, - 0x62, 0x13, 0xca, 0x47, 0x69, 0x02, 0xfa, 0x7a, 0x56, 0x16, 0xd1, 0x6d, 0xe9, 0xbc, 0xaf, 0xb8, - 0x81, 0xbf, 0xe4, 0x53, 0x3a, 0x15, 0x4e, 0xe7, 0x0b, 0xc0, 0x43, 0xce, 0xff, 0x0f, 0x33, 0x6b, - 0xcf, 0x71, 0x77, 0xeb, 0xc0, 0xee, 0x1e, 0x42, 0xeb, 0x4d, 0x28, 0x77, 0xfb, 0x26, 0x3f, 0xc4, - 0x20, 0x3f, 0xe3, 0x51, 0x74, 0x59, 0x8e, 0xa2, 0x75, 0x68, 0x46, 0x35, 0xf0, 0x01, 0x34, 0x4f, - 0x06, 0x90, 0x49, 0x90, 0x09, 0xf3, 0x29, 0x8d, 0x7f, 0x71, 0x38, 0xf6, 0xd8, 0xad, 0x10, 0x06, - 0xc7, 0x9e, 0x27, 0x7b, 0xed, 0xb2, 0xec, 0xb5, 0xd5, 0xef, 0x29, 0x50, 0x27, 0x35, 0x7c, 0x2c, - 0xf9, 0xf9, 0x92, 0xb4, 0x1c, 0x2d, 0x49, 0xc3, 0x95, 0x6d, 0x25, 0xbe, 0xb2, 0x8d, 0x24, 0x1f, - 0xa7, 0xe0, 0xb4, 0xe4, 0x13, 0x21, 0x1c, 0x7b, 0x9e, 0x7a, 0x1a, 0xa6, 0x98, 0x6c, 0xbc, 0xe5, - 0x4d, 0x28, 0x0f, 0xbc, 0x9e, 0xe8, 0xbf, 0x81, 0xd7, 0x53, 0xbf, 0xa5, 0x40, 0xa3, 0x1d, 0x04, - 0x46, 0x77, 0xff, 0x10, 0x0d, 0x08, 0x85, 0x2b, 0xc5, 0x85, 0x4b, 0x37, 0x22, 0x12, 0xb7, 0x92, - 0x23, 0xee, 0xb8, 0x24, 0xae, 0x0a, 0xd3, 0x42, 0x96, 0x5c, 0x81, 0x37, 0x00, 0x75, 0x1c, 0x2f, - 0x78, 0xcf, 0xf1, 0x9e, 0x19, 0x9e, 0x79, 0xb8, 0x55, 0x2b, 0x82, 0x0a, 0xbf, 0x35, 0x5f, 0x3e, - 0x37, 0xae, 0xd1, 0xdf, 0xea, 0x2b, 0x70, 0x4c, 0xe2, 0x97, 0x5b, 0xf1, 0x2d, 0xa8, 0xd3, 0x59, - 0x98, 0x2f, 0x68, 0x2e, 0xc6, 0x0f, 0xc9, 0x87, 0xcc, 0xd6, 0xea, 0x2a, 0xcc, 0x92, 0x78, 0x8c, - 0xc2, 0x43, 0xff, 0x72, 0x25, 0x11, 0xf3, 0x2f, 0xa4, 0x58, 0x24, 0xe2, 0xfd, 0x9f, 0x2b, 0x30, - 0x4e, 0xe1, 0xa9, 0x18, 0x69, 0x89, 0xcc, 0x73, 0xae, 0xa3, 0x07, 0xc6, 0x5e, 0xf8, 0x22, 0x01, - 0x01, 0x6c, 0x1b, 0x7b, 0xf4, 0xe0, 0x85, 0x16, 0x9a, 0xd6, 0x1e, 0xf6, 0x03, 0x71, 0x90, 0x57, - 0x27, 0xb0, 0x55, 0x06, 0x22, 0x8a, 0xa1, 0xe7, 0x9d, 0x15, 0x7a, 0xac, 0x49, 0x7f, 0xa3, 0x73, - 0xec, 0x42, 0x61, 0xf1, 0xe9, 0x15, 0xbd, 0x68, 0xd8, 0x82, 0x6a, 0xe2, 0xd8, 0x29, 0xfc, 0x46, - 0xe7, 0xa1, 0x42, 0xb7, 0x89, 0x27, 0x8b, 0xb4, 0x44, 0x51, 0x88, 0x55, 0xb8, 0x96, 0x6d, 0x63, - 0x93, 0x06, 0x40, 0x55, 0x8d, 0x7f, 0xa9, 0xef, 0x02, 0x8a, 0x2b, 0x8f, 0x77, 0xd0, 0x79, 0x98, - 0xa0, 0xba, 0x15, 0x41, 0xec, 0x6c, 0x8a, 0xb5, 0xc6, 0x11, 0xd4, 0xaf, 0x01, 0x62, 0x75, 0x49, - 0x81, 0xeb, 0x61, 0x3a, 0xb0, 0x20, 0x84, 0xfd, 0x0b, 0x05, 0x8e, 0x49, 0xdc, 0xb9, 0x7c, 0xaf, - 0xc8, 0xec, 0x33, 0xc4, 0xe3, 0xac, 0xdf, 0x96, 0x66, 0xe6, 0xf3, 0x69, 0x31, 0x7e, 0x49, 0xb3, - 0xf2, 0x3f, 0x2b, 0x00, 0xed, 0x41, 0xb0, 0xcf, 0x37, 0x4c, 0xe3, 0x9d, 0xa8, 0x24, 0x3a, 0xb1, - 0x05, 0x55, 0xd7, 0xf0, 0xfd, 0x67, 0x8e, 0x27, 0x16, 0x91, 0xe1, 0x37, 0xdd, 0xe6, 0x1c, 0xf0, - 0x87, 0x11, 0x6a, 0x1a, 0xfd, 0x8d, 0x5e, 0x82, 0x69, 0xf6, 0x54, 0x86, 0x6e, 0x98, 0xa6, 0x27, - 0x12, 0xef, 0x6a, 0x5a, 0x83, 0x41, 0xdb, 0x0c, 0x48, 0xd0, 0x2c, 0x7a, 0x68, 0x10, 0x1c, 0xe8, - 0x81, 0xf3, 0x04, 0xdb, 0x7c, 0x61, 0xd8, 0x10, 0xd0, 0x6d, 0x02, 0x64, 0xa7, 0x82, 0x7b, 0x96, - 0x1f, 0x78, 0x02, 0x4d, 0x9c, 0x6d, 0x72, 0x28, 0x45, 0x53, 0xff, 0x54, 0x81, 0x66, 0x67, 0xd0, - 0xeb, 0x31, 0xe5, 0x1e, 0xa5, 0x93, 0x2f, 0xf0, 0xa6, 0x94, 0xd2, 0x26, 0x1f, 0x29, 0x8a, 0x37, - 0xf1, 0x13, 0xd9, 0xcb, 0xba, 0x0a, 0xb3, 0x31, 0x89, 0xb9, 0xe1, 0x48, 0x91, 0xbd, 0x22, 0x47, - 0xf6, 0x6a, 0x1b, 0x10, 0xdb, 0xbe, 0x39, 0x72, 0x2b, 0xd5, 0xe3, 0x70, 0x4c, 0x62, 0xc1, 0xa7, - 0xe2, 0x0b, 0xd0, 0xe0, 0x49, 0x60, 0xdc, 0x20, 0x4e, 0x40, 0x95, 0xb8, 0xd4, 0xae, 0x65, 0x8a, - 0x44, 0x86, 0x49, 0xd7, 0x31, 0x57, 0x2c, 0xd3, 0x53, 0xbf, 0x04, 0x0d, 0x7e, 0xcb, 0x9c, 0xe3, - 0xde, 0x81, 0x69, 0x7e, 0x8c, 0xa7, 0x4b, 0xd7, 0x32, 0x4f, 0x64, 0x64, 0x1a, 0x0a, 0x55, 0xd8, - 0xf1, 0x4f, 0xf5, 0xeb, 0xd0, 0x62, 0xd1, 0x82, 0xc4, 0x58, 0x34, 0xf0, 0x0e, 0x88, 0x3b, 0x0b, - 0x05, 0xfc, 0x65, 0xca, 0x86, 0x17, 0xff, 0x54, 0x4f, 0xc1, 0x52, 0x26, 0x7f, 0xde, 0x7a, 0x17, - 0x9a, 0x51, 0x01, 0xbb, 0x3b, 0x18, 0x66, 0x67, 0x28, 0xb1, 0xec, 0x8c, 0xf9, 0x30, 0xf6, 0x2e, - 0x89, 0x99, 0x8b, 0x86, 0xd7, 0xd1, 0x8a, 0xab, 0x9c, 0xb7, 0xe2, 0xaa, 0x48, 0x2b, 0x2e, 0xf5, - 0x61, 0xa8, 0x43, 0xbe, 0xee, 0xbd, 0x4d, 0x57, 0xe6, 0xac, 0x6e, 0xe1, 0xd4, 0x4e, 0x66, 0xb7, - 0x8f, 0x21, 0x69, 0x31, 0x7c, 0xf5, 0x3c, 0x34, 0x64, 0xf7, 0x16, 0xf3, 0x58, 0x4a, 0xca, 0x63, - 0x4d, 0x27, 0x9c, 0xd5, 0x6b, 0x89, 0x25, 0x45, 0x96, 0x5e, 0x13, 0x0b, 0x8a, 0x1b, 0x92, 0xdb, - 0x7a, 0x51, 0x3a, 0x49, 0xff, 0x25, 0x79, 0xac, 0x39, 0xee, 0xc7, 0xdf, 0xf3, 0x09, 0x3d, 0x6f, - 0xa8, 0x7a, 0x16, 0xea, 0x3b, 0x79, 0x6f, 0x7d, 0x54, 0x44, 0xfa, 0xd7, 0x9b, 0x30, 0xf7, 0x9e, - 0xd5, 0xc3, 0xfe, 0x81, 0x1f, 0xe0, 0xfe, 0x3a, 0x75, 0x2f, 0xbb, 0x16, 0xf6, 0xd0, 0x32, 0x00, - 0x5d, 0x45, 0xba, 0x8e, 0x15, 0xbe, 0x6f, 0x10, 0x83, 0xa8, 0x3f, 0x51, 0x60, 0x26, 0x22, 0x1c, - 0x25, 0x11, 0xef, 0x0d, 0x18, 0xdf, 0xf5, 0xc5, 0x6e, 0x5b, 0xe2, 0x2c, 0x21, 0x4b, 0x04, 0xad, - 0xb2, 0xeb, 0xaf, 0x9b, 0xe8, 0x4d, 0x80, 0x81, 0x8f, 0x4d, 0x7e, 0x3a, 0x37, 0x24, 0x35, 0xb2, - 0x46, 0x50, 0xd9, 0xf9, 0xde, 0x0d, 0xa8, 0x5b, 0xb6, 0x63, 0x62, 0x7a, 0x72, 0x6b, 0x0e, 0x4b, - 0x8b, 0x04, 0x86, 0xbb, 0xe3, 0x63, 0x53, 0xfd, 0x83, 0xe8, 0xfc, 0xf5, 0xf3, 0xdc, 0x42, 0x55, - 0xe7, 0xf3, 0xab, 0xe8, 0x75, 0x6e, 0xb2, 0xf7, 0x61, 0x96, 0xb9, 0xc9, 0xdd, 0xb0, 0xca, 0xcc, - 0xeb, 0x22, 0x89, 0xb6, 0x69, 0x4d, 0x8b, 0x47, 0x56, 0x82, 0x48, 0xbd, 0x05, 0xc7, 0x13, 0xf9, - 0xdb, 0xa3, 0x6f, 0xa7, 0xbf, 0x9f, 0xd8, 0x17, 0x8b, 0x86, 0xd4, 0x55, 0xf9, 0xda, 0x50, 0x51, - 0xa6, 0x3d, 0xbf, 0xc1, 0xb2, 0x03, 0x27, 0xa4, 0x4d, 0x3b, 0x49, 0x96, 0x1b, 0x89, 0x60, 0xf1, - 0x74, 0x3e, 0xbf, 0x44, 0xd4, 0xf8, 0x5f, 0x0a, 0xcc, 0x65, 0x21, 0x1c, 0x71, 0xc3, 0xf8, 0xab, - 0x39, 0x57, 0x0e, 0x5f, 0x1f, 0x26, 0xd0, 0xa7, 0xb2, 0xc1, 0xbe, 0xc1, 0x2e, 0x2c, 0x0d, 0xef, - 0x93, 0xf2, 0x68, 0x7d, 0xf2, 0xf3, 0x52, 0xec, 0x50, 0xa4, 0xe0, 0x52, 0xd1, 0xc7, 0xd8, 0xa4, - 0x5c, 0x49, 0xdc, 0x29, 0xba, 0x98, 0x49, 0x38, 0xe4, 0x4a, 0x91, 0x96, 0xb5, 0x19, 0x70, 0x75, - 0x18, 0xa7, 0xcf, 0xed, 0xfe, 0xf5, 0x7f, 0x2b, 0x30, 0x2d, 0x77, 0x08, 0x7a, 0x37, 0xe3, 0x42, - 0xd1, 0x0b, 0x43, 0x1a, 0x28, 0xdd, 0x27, 0xe2, 0x17, 0x78, 0x4a, 0xa3, 0x5f, 0xe0, 0x29, 0x8f, - 0x76, 0x81, 0xe7, 0x2e, 0x4c, 0x3f, 0xf3, 0xac, 0xc0, 0x78, 0xdc, 0xc3, 0x7a, 0xcf, 0x38, 0xc0, - 0x1e, 0xf7, 0xc2, 0x85, 0x6e, 0xa8, 0x21, 0x48, 0x1e, 0x10, 0x0a, 0xf5, 0x5b, 0x25, 0x38, 0x9e, - 0x79, 0x97, 0xe4, 0xe3, 0xb7, 0xfb, 0x52, 0xbc, 0xdd, 0x87, 0xb9, 0xa0, 0x53, 0x3e, 0xd4, 0x05, - 0x9d, 0xf5, 0x1c, 0x2d, 0x64, 0x1d, 0x89, 0x0f, 0x51, 0xc6, 0x5f, 0x29, 0x50, 0x15, 0x42, 0x0d, - 0xbd, 0x2e, 0xb3, 0x30, 0x20, 0x68, 0x3a, 0xcd, 0x96, 0xb6, 0x0d, 0xdb, 0xd1, 0x7d, 0x4c, 0xc2, - 0xa2, 0xa1, 0x97, 0x13, 0xe6, 0x28, 0xdd, 0x8a, 0xe3, 0xe1, 0x0d, 0xc3, 0x76, 0xb6, 0x18, 0x11, - 0x6a, 0x43, 0x93, 0xf1, 0xa3, 0xac, 0x08, 0xd3, 0xa1, 0x53, 0xd5, 0x34, 0x25, 0x20, 0x4c, 0x08, - 0x33, 0x5f, 0xfd, 0x3b, 0x05, 0x66, 0x12, 0x9a, 0xfd, 0xd5, 0x6b, 0xc4, 0xef, 0x97, 0xa1, 0x1e, - 0xeb, 0xe5, 0x21, 0x0d, 0x58, 0x81, 0x59, 0x91, 0xd6, 0xe2, 0xe3, 0x60, 0xb4, 0xcb, 0x21, 0x33, - 0x9c, 0x62, 0x0b, 0x07, 0x2c, 0x92, 0xb9, 0x03, 0x33, 0xc6, 0x53, 0xc3, 0xea, 0x51, 0x0b, 0x1a, - 0x29, 0x48, 0x98, 0x0e, 0xf1, 0xc3, 0x58, 0x88, 0xb5, 0x7b, 0xa4, 0x2b, 0x22, 0x40, 0x71, 0xa3, - 0x9b, 0x3a, 0xbe, 0x1f, 0x4b, 0x8d, 0x2a, 0xbc, 0xa9, 0xe3, 0xfb, 0x61, 0x7d, 0x34, 0x55, 0x9c, - 0x5e, 0x51, 0xf2, 0xf9, 0xbb, 0x16, 0xf9, 0xf5, 0x11, 0xdc, 0xf7, 0x28, 0x2a, 0x51, 0x58, 0xdf, - 0xf8, 0xd0, 0xf1, 0xf4, 0x38, 0xfd, 0xe4, 0x10, 0x85, 0x51, 0x8a, 0x4e, 0xc8, 0x44, 0xfd, 0x1f, - 0x05, 0x50, 0x7a, 0x40, 0xfe, 0xca, 0x74, 0x55, 0xbc, 0xe9, 0x95, 0x91, 0x55, 0xa7, 0xbe, 0x03, - 0x27, 0x34, 0xec, 0xb8, 0xd8, 0x0e, 0xfd, 0xde, 0x03, 0x67, 0xef, 0x10, 0x11, 0xdb, 0x49, 0x68, - 0x65, 0xd1, 0xf3, 0x75, 0xe0, 0x00, 0x5a, 0x2b, 0xfb, 0xb8, 0xfb, 0x84, 0x46, 0xff, 0x47, 0xc9, - 0xe7, 0x68, 0x41, 0xb5, 0xe7, 0x74, 0xd9, 0x7b, 0x95, 0x7c, 0xab, 0x44, 0x7c, 0x17, 0xec, 0x52, - 0x9f, 0x82, 0xa5, 0xcc, 0x6a, 0xb9, 0x54, 0x08, 0x9a, 0xf7, 0x70, 0xb0, 0xf6, 0x14, 0xdb, 0x61, - 0x40, 0xa8, 0xfe, 0xb0, 0x14, 0x0b, 0x3d, 0x69, 0xd1, 0x21, 0xf2, 0x60, 0x50, 0x07, 0xe6, 0x22, - 0x14, 0x4c, 0xa8, 0xd9, 0x7b, 0x75, 0xec, 0xa5, 0xc7, 0xec, 0x33, 0x32, 0x5a, 0x09, 0x7d, 0xa6, - 0x2e, 0x7a, 0x89, 0x23, 0x84, 0x25, 0x4e, 0x4e, 0xcb, 0xc9, 0x93, 0xd3, 0xf7, 0x01, 0xc5, 0x83, - 0x4b, 0xbe, 0xda, 0xac, 0x8c, 0xf0, 0xf8, 0x48, 0xd3, 0x4d, 0x3e, 0x93, 0x93, 0xf3, 0x84, 0xc8, - 0xf8, 0x91, 0x9e, 0x10, 0x51, 0x97, 0xe1, 0x24, 0x09, 0x19, 0x1f, 0xe2, 0xc0, 0xb3, 0xba, 0xab, - 0xd8, 0xef, 0x7a, 0x96, 0x1b, 0x38, 0x61, 0x6a, 0x86, 0xaa, 0xc3, 0xa9, 0x9c, 0x72, 0xae, 0xee, - 0x77, 0xa0, 0x6e, 0x46, 0xe0, 0xac, 0x95, 0x7b, 0x92, 0x56, 0x8b, 0x13, 0xa8, 0x1f, 0x40, 0x33, - 0x89, 0x90, 0x99, 0x70, 0x89, 0xa0, 0xb2, 0x8f, 0x7b, 0xae, 0xb8, 0x41, 0x42, 0x7e, 0x13, 0xad, - 0xb3, 0x68, 0xfc, 0x09, 0x3e, 0x10, 0x3b, 0xbb, 0x35, 0x0a, 0xf9, 0x22, 0x3e, 0x08, 0xdb, 0x26, - 0xdd, 0x69, 0xf7, 0xac, 0x6e, 0xb2, 0x6d, 0x19, 0xe5, 0x51, 0xdb, 0x48, 0xb7, 0xf5, 0x19, 0x98, - 0xb7, 0xed, 0x54, 0xee, 0x7d, 0x79, 0x4a, 0x0b, 0xae, 0x63, 0xf2, 0xdf, 0xea, 0x9f, 0x29, 0x30, - 0x9b, 0xc2, 0x18, 0x71, 0xb7, 0xfe, 0x55, 0x98, 0x14, 0xf5, 0x96, 0xd2, 0x69, 0x8b, 0x8c, 0x97, - 0x26, 0x50, 0xd0, 0x3a, 0xcc, 0x46, 0x16, 0x2d, 0xe8, 0xca, 0xe9, 0xbe, 0x88, 0x87, 0xe2, 0x54, - 0xdc, 0x66, 0x37, 0x01, 0x51, 0xbb, 0xd0, 0x4c, 0x62, 0x8d, 0x32, 0xa6, 0x0e, 0x25, 0xaf, 0xfa, - 0x0f, 0x0a, 0x4c, 0x30, 0x58, 0x66, 0x67, 0x4b, 0x5e, 0xbc, 0x94, 0xf4, 0xe2, 0x6f, 0x41, 0x9d, - 0xf1, 0xd1, 0xc3, 0xfb, 0x43, 0xd3, 0xf2, 0x86, 0x25, 0x63, 0x4d, 0x47, 0x2b, 0xf4, 0xc3, 0xdf, - 0xa4, 0x19, 0xcc, 0x5e, 0x68, 0xac, 0x2d, 0x92, 0x53, 0xeb, 0x14, 0x46, 0x7d, 0x2d, 0x89, 0x17, - 0x79, 0x54, 0x3e, 0x64, 0x1e, 0x64, 0x58, 0x17, 0x5e, 0x86, 0xaa, 0x78, 0xa9, 0x18, 0x4d, 0x42, - 0x79, 0x7b, 0xa5, 0xd3, 0x1c, 0x23, 0x3f, 0x76, 0x56, 0x3b, 0x4d, 0x05, 0x55, 0xa1, 0xb2, 0xb5, - 0xb2, 0xdd, 0x69, 0x96, 0x2e, 0xf4, 0xa1, 0x99, 0x7c, 0xac, 0x17, 0x2d, 0xc0, 0xb1, 0x8e, 0xb6, - 0xd9, 0x69, 0xdf, 0x6b, 0x6f, 0xaf, 0x6f, 0x6e, 0xe8, 0x1d, 0x6d, 0xfd, 0x51, 0x7b, 0x7b, 0xad, - 0x39, 0x86, 0xce, 0xc0, 0xa9, 0x78, 0xc1, 0xfd, 0xcd, 0xad, 0x6d, 0x7d, 0x7b, 0x53, 0x5f, 0xd9, - 0xdc, 0xd8, 0x6e, 0xaf, 0x6f, 0xac, 0x69, 0x4d, 0x05, 0x9d, 0x82, 0x13, 0x71, 0x94, 0xbb, 0xeb, - 0xab, 0xeb, 0xda, 0xda, 0x0a, 0xf9, 0xdd, 0x7e, 0xd0, 0x2c, 0x5d, 0x78, 0x1b, 0x1a, 0xd2, 0x3d, - 0x03, 0x22, 0x52, 0x67, 0x73, 0xb5, 0x39, 0x86, 0x1a, 0x50, 0x8b, 0xf3, 0xa9, 0x42, 0x65, 0x63, - 0x73, 0x75, 0xad, 0x59, 0x42, 0x00, 0x13, 0xdb, 0x6d, 0xed, 0xde, 0xda, 0x76, 0xb3, 0x7c, 0xe1, - 0x56, 0xf2, 0x45, 0x03, 0x8c, 0x66, 0xa1, 0xb1, 0xd5, 0xde, 0x58, 0xbd, 0xbb, 0xf9, 0x15, 0x5d, - 0x5b, 0x6b, 0xaf, 0x7e, 0xd0, 0x1c, 0x43, 0x73, 0xd0, 0x14, 0xa0, 0x8d, 0xcd, 0x6d, 0x06, 0x55, - 0x2e, 0x3c, 0x49, 0xac, 0x5d, 0x30, 0x3a, 0x0e, 0xb3, 0x61, 0x95, 0xfa, 0x8a, 0xb6, 0xd6, 0xde, - 0x5e, 0x23, 0x92, 0x48, 0x60, 0x6d, 0x67, 0x63, 0x63, 0x7d, 0xe3, 0x5e, 0x53, 0x21, 0x5c, 0x23, - 0xf0, 0xda, 0x57, 0xd6, 0x09, 0x72, 0x49, 0x46, 0xde, 0xd9, 0xf8, 0xe2, 0xc6, 0xe6, 0x97, 0x37, - 0x9a, 0xe5, 0x0b, 0xbf, 0x1e, 0x3f, 0x5b, 0x8f, 0xbc, 0xf1, 0x12, 0x2c, 0xa4, 0x6a, 0xd4, 0xd7, - 0x1e, 0xad, 0x6d, 0x6c, 0x37, 0xc7, 0xe4, 0xc2, 0xad, 0xed, 0xb6, 0x16, 0x15, 0x2a, 0xc9, 0xc2, - 0xcd, 0x4e, 0x27, 0x2c, 0x2c, 0xc9, 0x85, 0xab, 0x6b, 0x0f, 0xd6, 0x22, 0xca, 0xf2, 0x85, 0x17, - 0x01, 0x22, 0xab, 0x43, 0x75, 0x98, 0x5c, 0xd9, 0xdc, 0xd9, 0xd8, 0x5e, 0xd3, 0x9a, 0x63, 0xa8, - 0x06, 0xe3, 0xf7, 0xda, 0x3b, 0xf7, 0xd6, 0x9a, 0xca, 0xb5, 0x3f, 0x9c, 0x0b, 0x9f, 0x28, 0xdd, - 0xc2, 0x1e, 0xcd, 0x12, 0x5f, 0x85, 0x49, 0xf1, 0x60, 0xb7, 0xb4, 0x24, 0x97, 0x1f, 0x18, 0x6f, - 0x2d, 0x65, 0x96, 0xf1, 0x29, 0x72, 0x0c, 0x3d, 0xa2, 0x1b, 0xaa, 0xb1, 0x47, 0x82, 0x4e, 0x27, - 0x36, 0x31, 0x53, 0x6f, 0x11, 0xb5, 0xce, 0x14, 0x60, 0x84, 0x7c, 0x3f, 0x80, 0x69, 0xf9, 0x35, - 0x3e, 0x74, 0x46, 0xde, 0xec, 0xcc, 0x78, 0xe8, 0xaf, 0xa5, 0x16, 0xa1, 0x84, 0xac, 0x75, 0x68, - 0x26, 0x5f, 0xe3, 0x43, 0x52, 0x0e, 0x41, 0xce, 0x63, 0x7f, 0xad, 0x17, 0x8b, 0x91, 0xe2, 0x15, - 0xa4, 0x1e, 0x99, 0x3b, 0x5b, 0xfc, 0x6c, 0x57, 0x46, 0x05, 0x79, 0x6f, 0x7b, 0x31, 0xe5, 0xc8, - 0x13, 0x08, 0x4a, 0xbc, 0xeb, 0x96, 0xf1, 0x04, 0x94, 0xac, 0x9c, 0xec, 0xe7, 0x7f, 0xd4, 0x31, - 0xf4, 0xff, 0x60, 0x26, 0x91, 0xe8, 0x8b, 0x24, 0xc2, 0xec, 0xfc, 0xe5, 0xd6, 0xd9, 0x42, 0x1c, - 0xb9, 0x57, 0xe3, 0xc9, 0xbc, 0xc9, 0x5e, 0xcd, 0x48, 0x12, 0x4e, 0xf6, 0x6a, 0x66, 0x2e, 0x30, - 0x35, 0x44, 0x29, 0x71, 0x57, 0x36, 0xc4, 0xac, 0x44, 0xe1, 0xd6, 0x99, 0x02, 0x8c, 0xb8, 0x42, - 0x12, 0xa9, 0xbb, 0xb2, 0x42, 0xb2, 0x93, 0x82, 0x5b, 0x67, 0x0b, 0x71, 0x92, 0x3d, 0x19, 0xa5, - 0x0c, 0xa6, 0x7b, 0x32, 0x95, 0xb6, 0x9a, 0xee, 0xc9, 0x74, 0xc6, 0x21, 0xef, 0xc9, 0x44, 0x92, - 0x9f, 0x5a, 0x98, 0x80, 0x94, 0xd5, 0x93, 0xd9, 0x49, 0x4a, 0xea, 0x18, 0x7a, 0x06, 0x8b, 0x79, - 0x79, 0x26, 0xe8, 0xe2, 0x21, 0xd2, 0x61, 0x5a, 0xaf, 0x8e, 0x86, 0x1c, 0x56, 0x8c, 0x01, 0xa5, - 0x57, 0x12, 0xe8, 0x25, 0x59, 0xdd, 0x39, 0x2b, 0x95, 0xd6, 0xcb, 0xc3, 0xd0, 0xc2, 0x6a, 0xee, - 0x41, 0x55, 0x64, 0xb0, 0x20, 0xc9, 0x05, 0x26, 0x32, 0x67, 0x5a, 0x27, 0xb3, 0x0b, 0x43, 0x46, - 0x5f, 0x80, 0x0a, 0x81, 0xa2, 0x85, 0x24, 0x9e, 0x60, 0xb0, 0x98, 0x2e, 0x08, 0x89, 0xdb, 0x30, - 0xc1, 0x52, 0x33, 0x90, 0x74, 0x36, 0x24, 0xa5, 0x8e, 0xb4, 0x5a, 0x59, 0x45, 0x21, 0x8b, 0x0e, - 0xfb, 0xf7, 0x07, 0x3c, 0xd3, 0x02, 0x2d, 0x27, 0xdf, 0xe1, 0x95, 0x53, 0x3a, 0x5a, 0x2f, 0xe4, - 0x96, 0xc7, 0x6d, 0x36, 0xb1, 0x5b, 0x76, 0xa6, 0x60, 0x4b, 0x37, 0xcb, 0x66, 0xb3, 0x37, 0x8a, - 0x59, 0xe7, 0xa6, 0x37, 0x92, 0xe5, 0xce, 0xcd, 0xdd, 0xac, 0x97, 0x3b, 0x37, 0x7f, 0x3f, 0x9a, - 0x0d, 0x8d, 0xe4, 0x83, 0x3a, 0x6a, 0xd1, 0x63, 0x57, 0x59, 0x43, 0x23, 0xe7, 0x11, 0x2d, 0x75, - 0x0c, 0xed, 0xc3, 0xb1, 0x8c, 0x57, 0xb6, 0xd0, 0xcb, 0xf9, 0xfe, 0x57, 0xaa, 0xe5, 0x95, 0xa1, - 0x78, 0xf1, 0x9a, 0x32, 0x8e, 0x57, 0xe5, 0x9a, 0xf2, 0xcf, 0x77, 0xe5, 0x9a, 0x8a, 0xce, 0x69, - 0xa9, 0x21, 0x72, 0x1f, 0x72, 0x22, 0xeb, 0xcc, 0x31, 0xc3, 0x10, 0x53, 0x1e, 0x63, 0x1f, 0x8e, - 0x65, 0xac, 0xb6, 0x65, 0x61, 0xf3, 0x77, 0x01, 0x64, 0x61, 0x8b, 0x96, 0xed, 0x63, 0xe8, 0xab, - 0x80, 0xee, 0xe1, 0x40, 0x8e, 0xcf, 0x7c, 0x24, 0x0d, 0xd4, 0xe4, 0xc2, 0x3e, 0xc7, 0x3e, 0xa5, - 0x15, 0xbe, 0x3a, 0x76, 0x55, 0x41, 0x36, 0xbb, 0x4b, 0x90, 0x5a, 0x97, 0xa2, 0x73, 0xc9, 0x6e, - 0xcb, 0x5b, 0xda, 0xb6, 0xce, 0x8f, 0x80, 0x19, 0xb6, 0xc5, 0x4e, 0xbe, 0xe8, 0x28, 0x96, 0x46, - 0xe7, 0xf2, 0xcd, 0x44, 0x5e, 0x6e, 0xa6, 0xeb, 0xcb, 0x5d, 0x78, 0xaa, 0x63, 0xd7, 0x7e, 0xaf, - 0x0c, 0x53, 0x2c, 0x79, 0x81, 0x87, 0x89, 0x0f, 0x01, 0xa2, 0x3c, 0x20, 0x74, 0x2a, 0xc9, 0x4b, - 0x4a, 0xae, 0x6a, 0x2d, 0xe7, 0x15, 0xc7, 0xdd, 0x51, 0x2c, 0xbf, 0x46, 0x76, 0x47, 0xe9, 0x74, - 0x21, 0xd9, 0x1d, 0x65, 0x24, 0xe6, 0xa8, 0x63, 0xe8, 0x7d, 0xa8, 0x85, 0xe9, 0x1c, 0x72, 0x27, - 0x27, 0xf3, 0x52, 0x5a, 0xa7, 0x72, 0x4a, 0xe3, 0xd2, 0xc5, 0xb2, 0x34, 0x64, 0xe9, 0xd2, 0x19, - 0x20, 0xb2, 0x74, 0x59, 0xe9, 0x1d, 0x51, 0x7b, 0xd9, 0x39, 0x6a, 0x46, 0x7b, 0xa5, 0x63, 0xf5, - 0x8c, 0xf6, 0xca, 0x07, 0xb0, 0xea, 0xd8, 0xdd, 0x3b, 0x3f, 0xfa, 0xd9, 0xb2, 0xf2, 0x93, 0x9f, - 0x2d, 0x8f, 0xfd, 0xda, 0x47, 0xcb, 0xca, 0x8f, 0x3e, 0x5a, 0x56, 0x7e, 0xfc, 0xd1, 0xb2, 0xf2, - 0xd3, 0x8f, 0x96, 0x95, 0x6f, 0xff, 0xc7, 0xf2, 0xd8, 0x57, 0xd5, 0x27, 0x37, 0xfc, 0xcb, 0x96, - 0x73, 0xa5, 0xeb, 0x59, 0x97, 0x0c, 0xd7, 0xba, 0xe2, 0x3e, 0xd9, 0xbb, 0x62, 0xb8, 0x96, 0x7f, - 0x85, 0xf3, 0xbd, 0xf2, 0xf4, 0xb5, 0xc7, 0x13, 0xf4, 0x5f, 0xdb, 0xbc, 0xfe, 0x7f, 0x01, 0x00, - 0x00, 0xff, 0xff, 0x4f, 0x2a, 0xd4, 0x99, 0x94, 0x68, 0x00, 0x00, + 0x75, 0x30, 0x7b, 0x66, 0x48, 0xce, 0xbc, 0xe1, 0x90, 0xc3, 0x12, 0x45, 0x52, 0x43, 0x89, 0x92, + 0x7a, 0xff, 0xf4, 0xb3, 0xfa, 0x59, 0xad, 0x76, 0x57, 0x92, 0xb5, 0xbb, 0x1a, 0x91, 0x5c, 0x69, + 0xd6, 0x12, 0x39, 0x6e, 0x92, 0xb2, 0xd7, 0xfe, 0xe0, 0xfe, 0x5a, 0xd3, 0x45, 0xb2, 0x57, 0x33, + 0xdd, 0xed, 0xee, 0x1e, 0x49, 0xf4, 0x29, 0xc7, 0xc4, 0x27, 0x03, 0x89, 0x63, 0xc0, 0x08, 0x12, + 0xe4, 0x90, 0x1f, 0x20, 0x87, 0x04, 0x01, 0x12, 0x38, 0x08, 0x92, 0x00, 0x41, 0x62, 0x38, 0x01, + 0x02, 0xf8, 0x90, 0x00, 0x3e, 0x04, 0x88, 0xbd, 0x09, 0x10, 0x20, 0x87, 0x5c, 0xe2, 0x43, 0x6e, + 0x0e, 0xea, 0xaf, 0xbb, 0xab, 0x7f, 0xe6, 0x87, 0xbb, 0xde, 0x5d, 0x9f, 0x38, 0xfd, 0xea, 0xbd, + 0x57, 0xaf, 0x5e, 0xbd, 0x7a, 0xf5, 0xaa, 0xea, 0x55, 0x11, 0x2a, 0x86, 0x6b, 0x5d, 0x76, 0x3d, + 0x27, 0x70, 0x10, 0x78, 0x7d, 0x3b, 0xb0, 0x7a, 0xf8, 0xf2, 0xd3, 0xd7, 0x1a, 0x97, 0xf6, 0xad, + 0xe0, 0xa0, 0xff, 0xf8, 0x72, 0xc7, 0xe9, 0x5d, 0xd9, 0x77, 0xf6, 0x9d, 0x2b, 0x14, 0xe5, 0x71, + 0x7f, 0x8f, 0x7e, 0xd1, 0x0f, 0xfa, 0x8b, 0x91, 0xaa, 0x17, 0x60, 0xf6, 0x11, 0xf6, 0x7c, 0xcb, + 0xb1, 0x35, 0xfc, 0x8d, 0x3e, 0xf6, 0x03, 0xb4, 0x0c, 0xd3, 0x4f, 0x19, 0x64, 0x59, 0x39, 0xa3, + 0x9c, 0xab, 0x68, 0xe2, 0x53, 0xfd, 0x03, 0x05, 0xe6, 0x42, 0x64, 0xdf, 0x75, 0x6c, 0x1f, 0xe7, + 0x63, 0xa3, 0xb3, 0x30, 0xc3, 0xc5, 0xd2, 0x6d, 0xa3, 0x87, 0x97, 0x0b, 0xb4, 0xb8, 0xca, 0x61, + 0x9b, 0x46, 0x0f, 0xa3, 0x57, 0x60, 0x4e, 0xa0, 0x08, 0x26, 0x45, 0x8a, 0x35, 0xcb, 0xc1, 0xbc, + 0x36, 0x74, 0x19, 0x8e, 0x09, 0x44, 0xc3, 0xb5, 0x42, 0xe4, 0x12, 0x45, 0x9e, 0xe7, 0x45, 0x4d, + 0xd7, 0xe2, 0xf8, 0xea, 0xd7, 0xa0, 0xb2, 0xbe, 0xb9, 0xbd, 0xe6, 0xd8, 0x7b, 0xd6, 0x3e, 0x11, + 0xd1, 0xc7, 0x1e, 0xa1, 0x59, 0x56, 0xce, 0x14, 0x89, 0x88, 0xfc, 0x13, 0x35, 0xa0, 0xec, 0x63, + 0xc3, 0xeb, 0x1c, 0x60, 0x7f, 0xb9, 0x40, 0x8b, 0xc2, 0x6f, 0x42, 0xe5, 0xb8, 0x81, 0xe5, 0xd8, + 0xfe, 0x72, 0x91, 0x51, 0xf1, 0x4f, 0xf5, 0xb7, 0x14, 0xa8, 0xb6, 0x1d, 0x2f, 0x78, 0x68, 0xb8, + 0xae, 0x65, 0xef, 0xa3, 0xab, 0x50, 0xa6, 0xba, 0xec, 0x38, 0x5d, 0xaa, 0x83, 0xd9, 0x6b, 0x0b, + 0x97, 0xa3, 0x0e, 0xb9, 0xdc, 0xe6, 0x65, 0x5a, 0x88, 0x85, 0x5e, 0x82, 0xd9, 0x8e, 0x63, 0x07, + 0x86, 0x65, 0x63, 0x4f, 0x77, 0x1d, 0x2f, 0xa0, 0xca, 0x99, 0xd4, 0x6a, 0x21, 0x94, 0xf0, 0x47, + 0x2b, 0x50, 0x39, 0x70, 0xfc, 0x80, 0x61, 0x14, 0x29, 0x46, 0x99, 0x00, 0x68, 0xe1, 0x12, 0x4c, + 0xd3, 0x42, 0xcb, 0xe5, 0x6a, 0x98, 0x22, 0x9f, 0x2d, 0x57, 0xfd, 0x91, 0x02, 0x93, 0x0f, 0x9d, + 0xbe, 0x1d, 0x24, 0xaa, 0x31, 0x82, 0x03, 0xde, 0x45, 0xb1, 0x6a, 0x8c, 0xe0, 0x20, 0xaa, 0x86, + 0x60, 0xb0, 0x5e, 0x62, 0xd5, 0x90, 0xc2, 0x06, 0x94, 0x3d, 0x6c, 0x98, 0x8e, 0xdd, 0x3d, 0xa4, + 0x22, 0x94, 0xb5, 0xf0, 0x9b, 0x74, 0x9f, 0x8f, 0xbb, 0x96, 0xdd, 0x7f, 0xae, 0x7b, 0xb8, 0x6b, + 0x3c, 0xc6, 0x5d, 0x2a, 0x4a, 0x59, 0x9b, 0xe5, 0x60, 0x8d, 0x41, 0xd1, 0x3b, 0x50, 0x75, 0x3d, + 0xc7, 0x35, 0xf6, 0x0d, 0xa2, 0xc1, 0xe5, 0x49, 0xaa, 0xa4, 0x93, 0x71, 0x25, 0x51, 0x81, 0xdb, + 0x11, 0x8e, 0x16, 0x27, 0x50, 0x75, 0xa8, 0xb4, 0xd6, 0x85, 0xba, 0xc3, 0x86, 0x9b, 0xb4, 0x39, + 0x35, 0xde, 0x70, 0x93, 0x18, 0x5c, 0xd4, 0x5c, 0xcb, 0xa4, 0x4d, 0xa9, 0x69, 0xd5, 0x10, 0xd6, + 0x32, 0xd1, 0x22, 0x4c, 0x75, 0xb1, 0xbd, 0x1f, 0x1c, 0xd0, 0xb6, 0xd4, 0x34, 0xfe, 0xa5, 0xfe, + 0x86, 0x02, 0xb5, 0x5d, 0x1f, 0x7b, 0xc4, 0x2a, 0x7d, 0xd7, 0xe8, 0x60, 0x74, 0x09, 0x4a, 0x3d, + 0xc7, 0xc4, 0xbc, 0x43, 0x4f, 0xc4, 0x65, 0x0d, 0x91, 0x1e, 0x3a, 0x26, 0xd6, 0x28, 0x1a, 0x3a, + 0x0f, 0xa5, 0xbe, 0x65, 0x32, 0x2b, 0xaa, 0x5e, 0x3b, 0x1e, 0x47, 0x0f, 0x25, 0xd7, 0x28, 0x0a, + 0x41, 0xdd, 0x27, 0xa8, 0xc5, 0x81, 0xa8, 0x04, 0x45, 0xfd, 0xb9, 0x02, 0x73, 0x61, 0x6d, 0x5b, + 0xd4, 0xfc, 0xd0, 0xeb, 0x30, 0x6d, 0xe3, 0xe0, 0x99, 0xe3, 0x3d, 0x19, 0x2e, 0x9b, 0xc0, 0x44, + 0x17, 0xa1, 0xe8, 0x72, 0x8d, 0x0c, 0x24, 0x20, 0x58, 0x04, 0xd9, 0x72, 0x3b, 0x54, 0x43, 0x83, + 0x91, 0x2d, 0xb7, 0x43, 0x8c, 0x27, 0x30, 0xbc, 0x7d, 0x4c, 0xfb, 0x83, 0x19, 0x62, 0x99, 0x01, + 0x5a, 0x26, 0xba, 0x03, 0xb3, 0x7d, 0x1f, 0x7b, 0xb6, 0xaf, 0x8b, 0xa1, 0x44, 0xba, 0xbe, 0x2a, + 0x33, 0x95, 0xf4, 0xae, 0xd5, 0x18, 0xc1, 0x16, 0x1f, 0x6b, 0x2a, 0x40, 0xcb, 0x0e, 0xde, 0xbc, + 0xfe, 0xc8, 0xe8, 0xf6, 0x31, 0x5a, 0x80, 0xc9, 0xa7, 0xe4, 0x07, 0x6d, 0x79, 0x51, 0x63, 0x1f, + 0xea, 0x5f, 0x95, 0x60, 0xe5, 0x01, 0x31, 0xb7, 0x6d, 0xc3, 0x36, 0x1f, 0x3b, 0xcf, 0xb7, 0x71, + 0xa7, 0xef, 0x59, 0xc1, 0xe1, 0x9a, 0x63, 0x07, 0xf8, 0x79, 0x80, 0xee, 0xc3, 0xbc, 0x2d, 0xf8, + 0x87, 0x82, 0x28, 0x54, 0x90, 0x95, 0xcc, 0xd6, 0xb1, 0xca, 0xb5, 0xba, 0x2d, 0x03, 0x7c, 0x74, + 0x37, 0x32, 0x78, 0xc1, 0xa7, 0x90, 0x6e, 0xd0, 0xf6, 0x06, 0x95, 0x86, 0x73, 0x11, 0x63, 0x41, + 0xf0, 0x78, 0x13, 0x88, 0x0b, 0xd4, 0x0d, 0x5f, 0x27, 0x2d, 0xa5, 0x5a, 0xae, 0x5e, 0x5b, 0x94, + 0xac, 0x20, 0x6c, 0xb0, 0x56, 0xf1, 0xfa, 0x76, 0xd3, 0x27, 0x1a, 0x42, 0x37, 0xa8, 0x3b, 0x25, + 0x74, 0xfb, 0x9e, 0xd3, 0x77, 0x97, 0xcb, 0x03, 0x09, 0x81, 0x12, 0xde, 0x23, 0x98, 0xd4, 0xcb, + 0xf2, 0x21, 0xab, 0x7b, 0x8e, 0x13, 0xec, 0xf9, 0x62, 0x98, 0x0a, 0xb0, 0x46, 0xa1, 0xe8, 0x0a, + 0x1c, 0xf3, 0xfb, 0xae, 0xdb, 0xc5, 0x3d, 0x6c, 0x07, 0x46, 0x97, 0x55, 0x44, 0xfa, 0xac, 0x78, + 0xae, 0xa8, 0xa1, 0x78, 0x11, 0x65, 0xec, 0xa3, 0x55, 0x00, 0xd7, 0xb3, 0x9e, 0x5a, 0x5d, 0xbc, + 0x8f, 0xcd, 0xe5, 0x29, 0xca, 0x34, 0x06, 0x41, 0x6f, 0x10, 0xcf, 0xdb, 0xe9, 0x38, 0x3d, 0x77, + 0xb9, 0x92, 0xd6, 0xb7, 0xe8, 0xa7, 0xb6, 0xe7, 0xec, 0x59, 0x5d, 0xac, 0x09, 0x5c, 0xf4, 0x16, + 0x94, 0x0d, 0xd7, 0x35, 0xbc, 0x9e, 0xe3, 0x2d, 0xc3, 0x70, 0xba, 0x10, 0x19, 0x5d, 0x87, 0x05, + 0xce, 0x43, 0x77, 0x59, 0x21, 0x73, 0x6a, 0xd3, 0xc4, 0x2e, 0xef, 0x16, 0x96, 0x15, 0x0d, 0xf1, + 0x72, 0x4e, 0x4b, 0x5c, 0x9c, 0xfa, 0x77, 0x0a, 0xcc, 0x25, 0x78, 0xa2, 0xf7, 0x61, 0x46, 0x70, + 0x08, 0x0e, 0x5d, 0xe1, 0x06, 0x5e, 0x19, 0x20, 0xc6, 0x65, 0xfe, 0x77, 0xe7, 0xd0, 0xc5, 0xd4, + 0x7b, 0x89, 0x0f, 0xf4, 0x02, 0xd4, 0xba, 0x4e, 0xc7, 0xe8, 0x52, 0xaf, 0xe5, 0xe1, 0x3d, 0xee, + 0x63, 0x67, 0x42, 0xa0, 0x86, 0xf7, 0xd4, 0x3b, 0x50, 0x8d, 0x31, 0x40, 0x08, 0x66, 0x35, 0x56, + 0xd5, 0x3a, 0xde, 0x33, 0xfa, 0xdd, 0xa0, 0x3e, 0x81, 0x66, 0x01, 0x76, 0xed, 0x0e, 0x99, 0xd3, + 0x6c, 0x6c, 0xd6, 0x15, 0x54, 0x83, 0xca, 0x03, 0xc1, 0xa2, 0x5e, 0x50, 0xbf, 0x57, 0x84, 0xe3, + 0xd4, 0xf0, 0xda, 0x8e, 0xc9, 0x47, 0x02, 0x9f, 0x00, 0x5f, 0x80, 0x5a, 0x87, 0xf6, 0xa5, 0xee, + 0x1a, 0x1e, 0xb6, 0x03, 0x3e, 0x0d, 0xcc, 0x30, 0x60, 0x9b, 0xc2, 0x90, 0x06, 0x75, 0x9f, 0xb7, + 0x48, 0xef, 0xb0, 0x91, 0xc3, 0x8d, 0x5b, 0x6a, 0xf5, 0x80, 0x81, 0xa6, 0xcd, 0xf9, 0xa9, 0x91, + 0x37, 0xed, 0x1f, 0xfa, 0x9d, 0xa0, 0x2b, 0xbc, 0xdd, 0xe5, 0x14, 0xab, 0xa4, 0xb0, 0x97, 0xb7, + 0x19, 0xc1, 0x86, 0x1d, 0x78, 0x87, 0x9a, 0x20, 0x47, 0xef, 0x42, 0xd9, 0x79, 0x8a, 0xbd, 0x03, + 0x6c, 0x30, 0x2f, 0x53, 0xbd, 0xf6, 0x42, 0x8a, 0xd5, 0x9a, 0x70, 0xf4, 0x1a, 0xf6, 0x9d, 0xbe, + 0xd7, 0xc1, 0xbe, 0x16, 0x12, 0xa1, 0x26, 0x54, 0x3c, 0x01, 0xe6, 0x5e, 0x68, 0x24, 0x0e, 0x11, + 0x55, 0xe3, 0x16, 0xcc, 0xc4, 0x85, 0x43, 0x75, 0x28, 0x3e, 0xc1, 0x87, 0x5c, 0x99, 0xe4, 0x67, + 0xe4, 0x9f, 0x58, 0x0f, 0xb3, 0x8f, 0x5b, 0x85, 0x1b, 0x8a, 0xea, 0x01, 0x8a, 0x5a, 0xfa, 0x10, + 0x07, 0x86, 0x69, 0x04, 0x06, 0x42, 0x50, 0xa2, 0xa1, 0x11, 0x63, 0x41, 0x7f, 0x13, 0xae, 0x7d, + 0xee, 0xaa, 0x2b, 0x1a, 0xf9, 0x89, 0x4e, 0x42, 0x25, 0xf4, 0x44, 0x3c, 0x3e, 0x8a, 0x00, 0x24, + 0x4e, 0x31, 0x82, 0x00, 0xf7, 0xdc, 0x80, 0x2a, 0xa6, 0xa6, 0x89, 0x4f, 0xf5, 0xd7, 0x26, 0xa1, + 0x9e, 0xb2, 0x85, 0x5b, 0x50, 0xee, 0xf1, 0xea, 0xb9, 0x0f, 0x5c, 0x95, 0x82, 0x95, 0x94, 0x90, + 0x5a, 0x88, 0x4f, 0x62, 0x01, 0x62, 0x6b, 0xb1, 0x68, 0x2e, 0xfc, 0x66, 0x46, 0xbe, 0xaf, 0x9b, + 0x96, 0x87, 0x3b, 0x81, 0xe3, 0x1d, 0x72, 0x41, 0x67, 0xba, 0xce, 0xfe, 0xba, 0x80, 0xa1, 0xeb, + 0x00, 0xa6, 0xed, 0xeb, 0xd4, 0x86, 0xf7, 0x79, 0x3f, 0x4a, 0x13, 0x60, 0x18, 0xb4, 0x69, 0x15, + 0xd3, 0xf6, 0xb9, 0xc8, 0xb7, 0xa1, 0x46, 0x22, 0x20, 0xbd, 0xc7, 0xe6, 0x46, 0xe6, 0x90, 0xaa, + 0xd7, 0x96, 0x64, 0xb9, 0xc3, 0x78, 0x4c, 0x9b, 0x71, 0xa3, 0x0f, 0x1f, 0xdd, 0x81, 0x29, 0x1a, + 0x84, 0xf8, 0xcb, 0x53, 0x94, 0xec, 0x5c, 0x76, 0x73, 0xb9, 0xf5, 0x3d, 0xa0, 0xa8, 0xcc, 0xf8, + 0x38, 0x1d, 0xda, 0x82, 0xaa, 0x61, 0xdb, 0x4e, 0x60, 0x30, 0x8f, 0x3f, 0x4d, 0xd9, 0x5c, 0x1a, + 0xc8, 0xa6, 0x19, 0xe1, 0x33, 0x5e, 0x71, 0x0e, 0xe8, 0x2d, 0x98, 0xa4, 0x53, 0x02, 0xf7, 0xe1, + 0x67, 0x87, 0x0e, 0x0a, 0x8d, 0xe1, 0xa3, 0xb7, 0x61, 0xfa, 0x99, 0x65, 0x9b, 0xce, 0x33, 0x9f, + 0xfb, 0x53, 0xc9, 0x84, 0xbf, 0xcc, 0x8a, 0x52, 0xc4, 0x82, 0xa6, 0x71, 0x13, 0xaa, 0xb1, 0xf6, + 0x8d, 0x63, 0xbf, 0x8d, 0x77, 0xa0, 0x9e, 0x6c, 0xd3, 0x58, 0xf6, 0xdf, 0x87, 0x05, 0xad, 0x6f, + 0x47, 0xa2, 0x89, 0xc5, 0xc6, 0x75, 0x98, 0xe2, 0xd6, 0xc0, 0x8c, 0xf1, 0xe4, 0x20, 0xb5, 0x6a, + 0x1c, 0x37, 0xbe, 0x6e, 0x38, 0x30, 0x6c, 0xb3, 0x8b, 0x3d, 0x5e, 0xa3, 0x58, 0x37, 0xdc, 0x67, + 0x50, 0xf5, 0x6d, 0x38, 0x9e, 0xa8, 0x96, 0x2f, 0x5b, 0x5e, 0x84, 0x59, 0xd7, 0x31, 0x75, 0x9f, + 0x81, 0x45, 0x2c, 0x59, 0x21, 0xb6, 0x23, 0x70, 0x5b, 0x26, 0x21, 0xdf, 0x0e, 0x1c, 0x37, 0x2d, + 0xf6, 0x68, 0xe4, 0xcb, 0xb0, 0x98, 0x24, 0x67, 0xd5, 0xab, 0xef, 0xc2, 0x92, 0x86, 0x7b, 0xce, + 0x53, 0x7c, 0x54, 0xd6, 0x0d, 0x58, 0x4e, 0x33, 0xe0, 0xcc, 0x3f, 0x80, 0xa5, 0x08, 0xba, 0x1d, + 0x18, 0x41, 0xdf, 0x1f, 0x8b, 0x39, 0x5f, 0xd3, 0x3d, 0x76, 0x7c, 0xd6, 0x91, 0x65, 0x4d, 0x7c, + 0xaa, 0x4b, 0x30, 0xd9, 0x76, 0xcc, 0x56, 0x1b, 0xcd, 0x42, 0xc1, 0x72, 0x39, 0x71, 0xc1, 0x72, + 0xd5, 0x4e, 0xbc, 0xce, 0x4d, 0x16, 0x75, 0xb2, 0xaa, 0x93, 0xa8, 0xe8, 0x06, 0xcc, 0x1a, 0xa6, + 0x69, 0x11, 0x43, 0x32, 0xba, 0xba, 0xe5, 0x8a, 0xa0, 0x79, 0x3e, 0xd1, 0xf5, 0xad, 0xb6, 0x56, + 0x8b, 0x10, 0x5b, 0xae, 0xaf, 0xde, 0x85, 0x4a, 0x14, 0xa0, 0xbf, 0x11, 0xad, 0xcf, 0x0a, 0xc3, + 0x63, 0xb9, 0x70, 0xf1, 0xb6, 0x99, 0x9a, 0x24, 0xb9, 0x98, 0x6f, 0x00, 0x84, 0x4e, 0x55, 0x84, + 0x87, 0xc7, 0x33, 0x59, 0x6a, 0x31, 0x44, 0xf5, 0xdf, 0x4a, 0x71, 0x27, 0x1b, 0x6b, 0xb2, 0x19, + 0x36, 0xd9, 0x94, 0x9c, 0x6e, 0x61, 0x4c, 0xa7, 0xfb, 0x1a, 0x4c, 0xfa, 0x81, 0x11, 0x60, 0x1e, + 0x8f, 0xaf, 0x64, 0x13, 0x92, 0x8a, 0xb1, 0xc6, 0x30, 0xd1, 0x29, 0x80, 0x8e, 0x87, 0x8d, 0x00, + 0x9b, 0xba, 0xc1, 0x66, 0x85, 0xa2, 0x56, 0xe1, 0x90, 0x66, 0x40, 0xbc, 0x88, 0x58, 0x41, 0x64, + 0x4c, 0x84, 0x39, 0xdd, 0x18, 0xad, 0x25, 0x42, 0xef, 0x35, 0x35, 0xd4, 0x7b, 0x71, 0x52, 0xee, + 0xbd, 0x22, 0x4f, 0x3c, 0x3d, 0xc8, 0x13, 0x33, 0xa2, 0x51, 0x3c, 0x71, 0x79, 0x90, 0x27, 0xe6, + 0x6c, 0x06, 0x7b, 0xe2, 0x0c, 0x47, 0x52, 0xc9, 0x72, 0x24, 0x9f, 0xa5, 0xeb, 0xfc, 0x8b, 0x02, + 0x2c, 0xa7, 0xc7, 0x33, 0xf7, 0x63, 0xd7, 0x61, 0xca, 0xa7, 0x90, 0xc1, 0xfe, 0x93, 0x53, 0x71, + 0x5c, 0x74, 0x17, 0x4a, 0x96, 0xbd, 0xe7, 0xf0, 0x81, 0x77, 0x79, 0x20, 0x0d, 0xaf, 0xe9, 0x72, + 0xcb, 0xde, 0x73, 0x98, 0x06, 0x29, 0x2d, 0x7a, 0x00, 0xc7, 0xc2, 0x95, 0xb5, 0xaf, 0x33, 0xc6, + 0x58, 0xc4, 0x79, 0x92, 0x95, 0x86, 0x51, 0x15, 0xe7, 0x88, 0x22, 0xba, 0x6d, 0x4e, 0x46, 0x62, + 0x1c, 0x82, 0xee, 0x07, 0x46, 0xcf, 0x15, 0x16, 0x1b, 0x02, 0x1a, 0x6f, 0x41, 0x25, 0xac, 0x7e, + 0x2c, 0xdd, 0xb5, 0x60, 0x21, 0x31, 0x46, 0xd8, 0x42, 0x32, 0x1c, 0x54, 0xca, 0xa8, 0x83, 0x4a, + 0xfd, 0x99, 0x12, 0x1f, 0xe8, 0xef, 0x59, 0xdd, 0x00, 0x7b, 0xa9, 0x81, 0xfe, 0xa6, 0xe0, 0xcb, + 0x46, 0xf9, 0x99, 0x01, 0x7c, 0xd9, 0x3a, 0x8d, 0x8f, 0xd8, 0x47, 0x30, 0x4b, 0x4d, 0x5c, 0xf7, + 0x71, 0x97, 0xc6, 0x4a, 0x5c, 0x8f, 0x57, 0xb2, 0x19, 0xb0, 0xda, 0xd9, 0x10, 0xd9, 0xe6, 0x14, + 0xac, 0x6f, 0x6a, 0xdd, 0x38, 0xac, 0x71, 0x07, 0x50, 0x1a, 0x69, 0x2c, 0x0d, 0x3e, 0x24, 0xfe, + 0xd2, 0x0f, 0x32, 0x67, 0xee, 0x3d, 0x2a, 0xc6, 0x60, 0xcb, 0x63, 0xa2, 0x6a, 0x1c, 0x57, 0xfd, + 0x97, 0x22, 0x40, 0x54, 0xf8, 0x39, 0x77, 0x94, 0xb7, 0x42, 0x87, 0xc5, 0x22, 0x4e, 0x35, 0x9b, + 0x65, 0xa6, 0xab, 0x6a, 0xc9, 0xae, 0x8a, 0xc5, 0x9e, 0xaf, 0xe4, 0x30, 0x18, 0xdb, 0x49, 0x4d, + 0x7f, 0xde, 0x9c, 0xd4, 0x7b, 0xb0, 0x98, 0x34, 0x13, 0xee, 0xa1, 0x5e, 0x85, 0x49, 0x2b, 0xc0, + 0x3d, 0xb6, 0xf7, 0x9a, 0xd8, 0xb0, 0x88, 0xa1, 0x33, 0x24, 0xf5, 0x1d, 0x58, 0x94, 0xfb, 0x6a, + 0xbc, 0xd0, 0x45, 0x7d, 0x90, 0x8c, 0x7d, 0x22, 0x57, 0xc9, 0xed, 0x23, 0x73, 0xeb, 0x27, 0x49, + 0xc3, 0x30, 0xd5, 0x1f, 0x28, 0x70, 0x3c, 0x51, 0x94, 0x33, 0xf0, 0xbf, 0x96, 0x1a, 0xc0, 0xcc, + 0xb7, 0x5e, 0x1f, 0x50, 0xcb, 0xa7, 0x38, 0x8a, 0xbf, 0x0c, 0x0d, 0xb9, 0x7b, 0x24, 0xd5, 0xde, + 0x4c, 0x0c, 0xe5, 0xb3, 0x43, 0x85, 0x0e, 0xc7, 0x73, 0x1b, 0x56, 0x32, 0x19, 0xa7, 0x75, 0x5e, + 0x1c, 0x51, 0xe7, 0xff, 0x5b, 0x88, 0xfb, 0xec, 0x66, 0x10, 0x78, 0xd6, 0xe3, 0x7e, 0x80, 0x3f, + 0xd9, 0xa0, 0x6a, 0x3d, 0x1c, 0xd9, 0xcc, 0xcf, 0xbe, 0x9a, 0x4d, 0x19, 0xd5, 0x9e, 0x39, 0xc6, + 0xb7, 0xe5, 0x31, 0x5e, 0xa2, 0xac, 0x5e, 0x1b, 0xca, 0x6a, 0xe0, 0x68, 0xff, 0x2c, 0x07, 0xf1, + 0x3f, 0x28, 0x30, 0x97, 0xe8, 0x15, 0x74, 0x07, 0xc0, 0x08, 0x45, 0xe7, 0xf6, 0x71, 0x66, 0x58, + 0x13, 0xb5, 0x18, 0x0d, 0x99, 0x13, 0x59, 0xbc, 0x98, 0x31, 0x27, 0x66, 0xc4, 0x8b, 0x61, 0xb8, + 0x78, 0x3b, 0x5a, 0xec, 0xb2, 0x4d, 0x52, 0x75, 0xe0, 0x62, 0x97, 0xd1, 0x0a, 0x12, 0xf5, 0xd7, + 0x0b, 0xb0, 0x90, 0xc5, 0x1d, 0xbd, 0x0c, 0xc5, 0x8e, 0xdb, 0xe7, 0x2d, 0x91, 0x0e, 0x6a, 0xd6, + 0xdc, 0xfe, 0xae, 0x6f, 0xec, 0x63, 0x8d, 0x20, 0xa0, 0x2b, 0x30, 0xd5, 0xc3, 0x3d, 0xc7, 0x3b, + 0xe4, 0x72, 0x4b, 0xdb, 0x0d, 0x0f, 0x69, 0x09, 0xc3, 0xe6, 0x68, 0xe8, 0x5a, 0x14, 0x56, 0x33, + 0x79, 0x97, 0xa5, 0xd5, 0x03, 0x2b, 0x62, 0x24, 0x61, 0x2c, 0x7d, 0x0d, 0xa6, 0x5d, 0xcf, 0xe9, + 0x60, 0xdf, 0xe7, 0xbb, 0x21, 0xcb, 0x89, 0x93, 0x23, 0x52, 0xc4, 0x69, 0x38, 0x22, 0xba, 0x05, + 0x10, 0x05, 0x50, 0x7c, 0x66, 0x6a, 0xe4, 0xc6, 0x5b, 0xbe, 0x16, 0xc3, 0x56, 0xbf, 0x5f, 0x80, + 0xc5, 0x6c, 0xcd, 0xa1, 0x4b, 0x71, 0xbd, 0xac, 0x64, 0xa8, 0x5a, 0x56, 0xcf, 0x9b, 0x09, 0xf5, + 0xac, 0x66, 0x50, 0x64, 0x69, 0xe9, 0x66, 0x52, 0x4b, 0xa7, 0x33, 0x08, 0xb3, 0x95, 0x75, 0x33, + 0xa9, 0xac, 0x2c, 0xd2, 0x6c, 0x9d, 0x35, 0x33, 0x74, 0x76, 0x36, 0xab, 0x8d, 0xf9, 0xaa, 0xfb, + 0x1b, 0x05, 0x66, 0xe2, 0x72, 0xc9, 0x21, 0xab, 0x92, 0x08, 0x59, 0xd1, 0x26, 0xcc, 0x9b, 0x6c, + 0xe7, 0x56, 0xb7, 0xec, 0x00, 0x7b, 0x7b, 0x46, 0x47, 0x44, 0x85, 0x67, 0x33, 0xec, 0xa2, 0x25, + 0x70, 0x98, 0xe0, 0x75, 0x4e, 0x1b, 0x82, 0x49, 0x0b, 0x42, 0x3e, 0xc2, 0x6b, 0x8d, 0xc0, 0x28, + 0x46, 0xa4, 0xfe, 0xb3, 0x02, 0xc7, 0x32, 0x14, 0x3c, 0xa4, 0x21, 0xbb, 0xf9, 0x0d, 0x39, 0x97, + 0xdf, 0x75, 0x43, 0xdb, 0x73, 0x3f, 0xa3, 0x3d, 0xa3, 0xf3, 0x8b, 0x37, 0xeb, 0xe7, 0x0a, 0x1c, + 0xcf, 0xc4, 0xca, 0xdc, 0x5e, 0xbd, 0x06, 0x65, 0xef, 0xb9, 0xfe, 0xf8, 0x30, 0xc0, 0x7e, 0xd6, + 0xc0, 0xde, 0x8d, 0x9d, 0xa1, 0x4c, 0x7b, 0xcf, 0xef, 0x12, 0x3c, 0x74, 0x1d, 0x2a, 0xde, 0x73, + 0x1d, 0x7b, 0x9e, 0xe3, 0x09, 0x5f, 0x94, 0x4b, 0x54, 0xf6, 0x9e, 0x6f, 0x50, 0x44, 0x52, 0x53, + 0x20, 0x6a, 0x2a, 0x0d, 0xa9, 0x29, 0x88, 0x6a, 0x0a, 0xc2, 0x9a, 0x26, 0x87, 0xd4, 0x14, 0xf0, + 0x9a, 0xd4, 0x3f, 0x2c, 0xc0, 0xc9, 0x41, 0xea, 0xfa, 0xc4, 0x14, 0xb1, 0x01, 0xc8, 0x7b, 0xae, + 0xbb, 0x46, 0xe7, 0x09, 0x0e, 0x7c, 0xdd, 0xf4, 0x1c, 0xd7, 0xc5, 0xe6, 0x30, 0x8d, 0xd4, 0xbd, + 0xe7, 0x6d, 0x46, 0xb1, 0xce, 0x08, 0x8e, 0xa4, 0x99, 0x0d, 0x40, 0x41, 0xba, 0xea, 0x21, 0x2a, + 0xaa, 0x07, 0x89, 0xaa, 0xd5, 0x0f, 0x61, 0x26, 0xee, 0x21, 0x86, 0xd8, 0xfe, 0x6d, 0xa8, 0x71, + 0x0f, 0xa2, 0x77, 0x9c, 0xbe, 0x1d, 0x0c, 0x53, 0xd4, 0x0c, 0xc7, 0x5e, 0x23, 0xc8, 0xea, 0x37, + 0xc2, 0xe1, 0xf6, 0xa9, 0x55, 0xf9, 0x47, 0x0a, 0x54, 0x5a, 0x3d, 0x63, 0x1f, 0x6f, 0xbb, 0xb8, + 0x43, 0x66, 0x7a, 0x8b, 0x7c, 0xf0, 0x7e, 0x67, 0x1f, 0xe8, 0xbe, 0x1c, 0xb5, 0xb0, 0x38, 0xf5, + 0x65, 0xe9, 0x1c, 0x51, 0x70, 0x18, 0x12, 0xaa, 0x7c, 0xdc, 0x78, 0xe3, 0x1a, 0x94, 0xbf, 0x88, + 0x0f, 0xd9, 0x8a, 0x7c, 0x44, 0x3a, 0xf5, 0x3b, 0x25, 0x58, 0xca, 0x39, 0xab, 0xa1, 0xcb, 0x39, + 0xb7, 0xaf, 0xbb, 0xd8, 0xb3, 0x1c, 0x53, 0xa8, 0xb6, 0xe3, 0xf6, 0xdb, 0x14, 0x80, 0x56, 0x80, + 0x7c, 0xe8, 0xdf, 0xe8, 0x3b, 0x3c, 0x62, 0x2c, 0x6a, 0xe5, 0x8e, 0xdb, 0xff, 0x12, 0xf9, 0x16, + 0xb4, 0xfe, 0x81, 0xe1, 0x61, 0x36, 0xc8, 0x19, 0xed, 0x36, 0x05, 0xa0, 0xd7, 0xe0, 0x38, 0x9b, + 0xc0, 0xf4, 0xae, 0xd5, 0xb3, 0x88, 0x2b, 0x8c, 0xd9, 0x6f, 0x51, 0x43, 0xac, 0xf0, 0x01, 0x29, + 0x6b, 0xd9, 0xcc, 0x62, 0x55, 0xa8, 0x39, 0x4e, 0x4f, 0xf7, 0x3b, 0x8e, 0x87, 0x75, 0xc3, 0xfc, + 0x90, 0x1a, 0x6b, 0x51, 0xab, 0x3a, 0x4e, 0x6f, 0x9b, 0xc0, 0x9a, 0xe6, 0x87, 0xe8, 0x34, 0x54, + 0x3b, 0x6e, 0xdf, 0xc7, 0x81, 0x4e, 0xfe, 0xd0, 0x1d, 0xb5, 0x8a, 0x06, 0x0c, 0xb4, 0xe6, 0xf6, + 0xfd, 0x18, 0x42, 0x8f, 0xac, 0xa1, 0xa6, 0xe3, 0x08, 0x0f, 0x71, 0x8f, 0x1e, 0x49, 0x1f, 0xf4, + 0xf7, 0xb1, 0x6b, 0xec, 0x63, 0x26, 0x9a, 0xd8, 0x16, 0x93, 0x8e, 0xa4, 0xef, 0x73, 0x14, 0x2a, + 0xa0, 0x36, 0x7b, 0x10, 0xff, 0xf4, 0xd1, 0xfb, 0x30, 0xdd, 0xb7, 0xad, 0x3d, 0x0b, 0x9b, 0xcb, + 0x15, 0x4a, 0x7b, 0x75, 0x84, 0x93, 0xb1, 0xcb, 0xbb, 0x8c, 0x84, 0x1f, 0xd4, 0x71, 0x06, 0xe8, + 0x16, 0x34, 0xb8, 0xa2, 0xfc, 0x67, 0x86, 0x9b, 0xd4, 0x16, 0x50, 0x15, 0x2c, 0x32, 0x8c, 0xed, + 0x67, 0x86, 0x1b, 0xd7, 0x58, 0xe3, 0x16, 0xcc, 0xc4, 0x99, 0x8e, 0x65, 0x4b, 0x77, 0xa1, 0x26, + 0x35, 0x92, 0xf4, 0x36, 0x55, 0x8a, 0x6f, 0x7d, 0x53, 0x0c, 0x80, 0x32, 0x01, 0x6c, 0x5b, 0xdf, + 0xa4, 0x89, 0x04, 0x54, 0x32, 0xca, 0xa7, 0xa4, 0xb1, 0x0f, 0xd5, 0x80, 0x9a, 0x74, 0x76, 0x4f, + 0xfc, 0x26, 0x3d, 0xa4, 0xe7, 0x7e, 0x93, 0xfc, 0x26, 0x30, 0xcf, 0xe9, 0x0a, 0x09, 0xe8, 0x6f, + 0x02, 0xa3, 0xa7, 0xc4, 0xec, 0xcc, 0x8b, 0xfe, 0xa6, 0x55, 0xe0, 0xa7, 0x3c, 0x25, 0xa6, 0xa2, + 0xb1, 0x0f, 0xf5, 0xb7, 0x15, 0x80, 0x35, 0xc3, 0x35, 0x1e, 0x5b, 0x5d, 0x2b, 0x38, 0x44, 0xe7, + 0xa1, 0x6e, 0x98, 0xa6, 0xde, 0x11, 0x10, 0x0b, 0x8b, 0x1c, 0xa5, 0x39, 0xc3, 0x34, 0xd7, 0x62, + 0x60, 0x74, 0x11, 0xe6, 0x89, 0xd7, 0x93, 0x71, 0x59, 0xd2, 0x52, 0x9d, 0x14, 0x48, 0xc8, 0x37, + 0x60, 0x99, 0xf0, 0x35, 0x7a, 0x8f, 0x2d, 0x6c, 0x07, 0x32, 0x0d, 0xcb, 0x66, 0x5a, 0x34, 0x4c, + 0xb3, 0xc9, 0x8a, 0xe3, 0x94, 0xea, 0x5f, 0x4f, 0xc1, 0x29, 0xb9, 0xc7, 0x93, 0xe9, 0x14, 0xb7, + 0x60, 0x26, 0x21, 0x6f, 0x2a, 0x11, 0x21, 0x6a, 0xa1, 0x26, 0xe1, 0x26, 0x12, 0x06, 0x0a, 0xa9, + 0x84, 0x81, 0xcc, 0x54, 0x8d, 0xe2, 0x27, 0x94, 0xaa, 0x51, 0xfa, 0x98, 0xa9, 0x1a, 0x93, 0x47, + 0x4d, 0xd5, 0x98, 0x19, 0x39, 0x55, 0xe3, 0x65, 0xba, 0xd5, 0x23, 0x6a, 0xa4, 0x73, 0x36, 0xf3, + 0x09, 0xb5, 0x90, 0xbb, 0x2d, 0x12, 0xe7, 0x12, 0x29, 0x1d, 0xd3, 0xe3, 0xa4, 0x74, 0x94, 0x73, + 0x53, 0x3a, 0xce, 0xc0, 0x8c, 0xed, 0xe8, 0x36, 0x7e, 0xa6, 0x93, 0x6e, 0xf1, 0x97, 0xab, 0xac, + 0x8f, 0x6c, 0x67, 0x13, 0x3f, 0x6b, 0x13, 0x08, 0x3a, 0x0b, 0x33, 0x3d, 0xc3, 0x7f, 0x82, 0x4d, + 0x9a, 0x5b, 0xe1, 0x2f, 0xd7, 0xa8, 0x3d, 0x55, 0x19, 0xac, 0x4d, 0x40, 0xe8, 0x25, 0x08, 0xe5, + 0xe0, 0x48, 0xb3, 0x14, 0xa9, 0x26, 0xa0, 0x0c, 0x2d, 0x96, 0x1e, 0x32, 0x77, 0xc4, 0xf4, 0x90, + 0xfa, 0x38, 0xe9, 0x21, 0x97, 0xa0, 0x2e, 0x7e, 0x8b, 0xfc, 0x10, 0xb6, 0xdd, 0x4f, 0x53, 0x43, + 0xe6, 0x44, 0x99, 0xc8, 0x01, 0xc9, 0xcb, 0x26, 0x81, 0x81, 0xd9, 0x24, 0x7f, 0xac, 0xf0, 0x85, + 0x67, 0x38, 0x80, 0xf8, 0x31, 0xb6, 0x94, 0x81, 0xa0, 0x1c, 0x25, 0x03, 0x01, 0xed, 0xe4, 0xe6, + 0x68, 0x9c, 0xcf, 0xe7, 0x34, 0x2c, 0x4b, 0x43, 0x7d, 0x18, 0xae, 0x09, 0x3f, 0x89, 0x5c, 0x33, + 0xf5, 0x3f, 0x14, 0x38, 0xc5, 0xf9, 0xe5, 0x24, 0x64, 0x65, 0x58, 0xb9, 0x92, 0x63, 0xe5, 0x1d, + 0x0f, 0x9b, 0xd8, 0x0e, 0x2c, 0xa3, 0xab, 0xfb, 0x2e, 0xee, 0x88, 0x63, 0xde, 0x08, 0x4c, 0x03, + 0x9d, 0xb3, 0x30, 0xc3, 0x32, 0x18, 0xf9, 0xf2, 0x90, 0x25, 0x2a, 0x56, 0x69, 0x12, 0x23, 0x5f, + 0x01, 0x6e, 0x65, 0x79, 0x96, 0x52, 0xee, 0xbe, 0xc2, 0x50, 0x07, 0xa3, 0x3a, 0xb0, 0x94, 0x73, + 0xe0, 0x9e, 0xd9, 0x4d, 0x4a, 0xba, 0x9b, 0x06, 0x2a, 0x29, 0xdd, 0x4d, 0xdf, 0x51, 0xe0, 0x74, + 0x6a, 0x99, 0xfa, 0xd9, 0x6b, 0x56, 0xfd, 0x33, 0x25, 0xb4, 0x9f, 0xa4, 0xc9, 0xaf, 0xa5, 0x4d, + 0xfe, 0xa5, 0x41, 0xab, 0xee, 0x4c, 0xa3, 0x7f, 0x94, 0x6b, 0xf4, 0x17, 0x07, 0xae, 0xe0, 0x87, + 0xe9, 0xf3, 0x5f, 0x15, 0x38, 0x91, 0x2b, 0x40, 0x22, 0x1e, 0x54, 0x92, 0xf1, 0x20, 0x8f, 0x25, + 0xa3, 0x10, 0x9d, 0xc5, 0x92, 0x34, 0x0a, 0xe7, 0x41, 0x9b, 0xde, 0x33, 0x9e, 0x5b, 0xbd, 0x7e, + 0x8f, 0x07, 0x93, 0x84, 0xdd, 0x43, 0x06, 0x39, 0x4a, 0x34, 0x79, 0x05, 0x16, 0x98, 0xa3, 0xa7, + 0x01, 0x4d, 0x44, 0xc1, 0x82, 0xca, 0x79, 0x56, 0x46, 0x62, 0x1b, 0x4e, 0xa0, 0x36, 0x61, 0x3e, + 0x6c, 0xd6, 0xc0, 0x84, 0xa3, 0x58, 0x02, 0x51, 0x41, 0x4e, 0x20, 0xb2, 0x61, 0x6a, 0x1d, 0x3f, + 0xb5, 0x3a, 0xf8, 0x13, 0xc9, 0x24, 0x3e, 0x03, 0x55, 0x17, 0x7b, 0x3d, 0xcb, 0xf7, 0xc3, 0x59, + 0xbd, 0xa2, 0xc5, 0x41, 0xea, 0x69, 0xa8, 0xac, 0xad, 0xb7, 0x78, 0x95, 0x19, 0xa2, 0xaa, 0xff, + 0x39, 0x05, 0x73, 0x49, 0x1b, 0xbb, 0x99, 0x4a, 0x68, 0x3a, 0x95, 0xb9, 0x19, 0x96, 0xb1, 0x0b, + 0x7c, 0x51, 0xac, 0x8f, 0x0a, 0xe9, 0xd3, 0xfe, 0x70, 0x0d, 0x24, 0x96, 0x4d, 0xcb, 0x30, 0xdd, + 0x71, 0x7a, 0x3d, 0xc3, 0x36, 0x45, 0x3e, 0x38, 0xff, 0x24, 0x92, 0x1a, 0xde, 0x3e, 0xdb, 0xff, + 0xad, 0x68, 0xf4, 0x37, 0x31, 0x01, 0xe2, 0x0c, 0x2d, 0x9b, 0xa6, 0x44, 0xd1, 0x5e, 0xaa, 0x68, + 0xc0, 0x41, 0xeb, 0x96, 0x87, 0xce, 0x41, 0x09, 0xdb, 0x4f, 0xc5, 0xc1, 0x90, 0xb4, 0x0f, 0x29, + 0xd6, 0x44, 0x1a, 0xc5, 0x40, 0xe7, 0x61, 0xaa, 0x47, 0xcc, 0x4a, 0x1c, 0x9b, 0xcf, 0xa7, 0xf2, + 0xa6, 0x35, 0x8e, 0x80, 0x5e, 0x85, 0x69, 0x93, 0x6a, 0x4f, 0x2c, 0x02, 0x90, 0x94, 0x5c, 0x45, + 0x8b, 0x34, 0x81, 0x82, 0xde, 0x0d, 0x37, 0xc1, 0x2b, 0xe9, 0xd3, 0xa9, 0x84, 0x9a, 0x33, 0xf7, + 0xbf, 0x37, 0xe5, 0x95, 0x24, 0xa4, 0xb7, 0xd2, 0x93, 0x5c, 0x06, 0x1f, 0x74, 0x9d, 0x80, 0x72, + 0xd7, 0xd9, 0x67, 0xd6, 0x53, 0x65, 0x97, 0x09, 0xba, 0xce, 0x3e, 0x35, 0x9e, 0x05, 0x98, 0xf4, + 0x03, 0xd3, 0xb2, 0x69, 0x2c, 0x55, 0xd6, 0xd8, 0x07, 0x19, 0xa4, 0xf4, 0x87, 0xee, 0xd8, 0x1d, + 0xbc, 0x5c, 0xa3, 0x45, 0x15, 0x0a, 0xd9, 0xb2, 0x3b, 0x74, 0x4d, 0x19, 0x04, 0x87, 0xcb, 0xb3, + 0x14, 0x4e, 0x7e, 0x46, 0x7b, 0xd1, 0x73, 0x39, 0x7b, 0xd1, 0x09, 0x81, 0x33, 0xf6, 0xa2, 0xeb, + 0xb9, 0x73, 0x46, 0x92, 0x56, 0x90, 0x90, 0x38, 0x72, 0x6d, 0xbd, 0xa5, 0x8b, 0xae, 0x99, 0x4f, + 0x27, 0x7e, 0x87, 0x66, 0xaf, 0x41, 0xf8, 0xf3, 0x33, 0x3d, 0x0a, 0xf8, 0xbe, 0x02, 0x8b, 0x6b, + 0xf4, 0x20, 0x34, 0xe6, 0x1b, 0xc7, 0xc9, 0x21, 0x7a, 0x3d, 0x4c, 0xec, 0xca, 0xc8, 0xce, 0x49, + 0x6a, 0x4a, 0xe4, 0x75, 0xad, 0xc1, 0xac, 0x60, 0xcb, 0x89, 0x8b, 0x23, 0x64, 0x85, 0xd5, 0xfc, + 0xf8, 0xa7, 0x7a, 0x1b, 0x96, 0x52, 0x92, 0xf3, 0xe3, 0xa8, 0xe4, 0x0d, 0x01, 0x26, 0x78, 0xfc, + 0x86, 0x80, 0x7a, 0x0b, 0x8e, 0x6f, 0x07, 0x86, 0x17, 0xa4, 0x9a, 0x3d, 0x02, 0x2d, 0xcd, 0xf7, + 0x92, 0x69, 0x79, 0x4a, 0xd6, 0x36, 0x2c, 0x6c, 0x07, 0x8e, 0x7b, 0x04, 0xa6, 0xc4, 0xef, 0x90, + 0x96, 0x3b, 0x7d, 0x31, 0xcf, 0x88, 0x4f, 0x75, 0x89, 0x65, 0xa7, 0xa5, 0x6b, 0xfb, 0x02, 0x2c, + 0xb2, 0xe4, 0xb0, 0xa3, 0x34, 0xe2, 0x84, 0x48, 0x4d, 0x4b, 0xf3, 0xbd, 0x07, 0xc7, 0xa4, 0x0d, + 0x72, 0x9e, 0x4c, 0x71, 0x55, 0x4e, 0xa6, 0xc8, 0x3f, 0x8b, 0x08, 0x73, 0x29, 0xbe, 0x5b, 0x88, + 0xf9, 0xf1, 0x9c, 0x13, 0xd5, 0x37, 0xe4, 0x54, 0x8a, 0xd3, 0xf9, 0x5c, 0xa5, 0x4c, 0x8a, 0xb4, + 0x75, 0x16, 0x33, 0xac, 0x73, 0x37, 0x75, 0x5c, 0x5b, 0x4a, 0xa7, 0xc2, 0x24, 0x24, 0xfc, 0x54, + 0x0e, 0x6a, 0x1f, 0xb0, 0x74, 0x8b, 0xb0, 0xea, 0xf0, 0x8c, 0xf6, 0xf5, 0xc4, 0x19, 0xed, 0xca, + 0x00, 0x49, 0xc3, 0xd3, 0xd9, 0xef, 0x96, 0xa0, 0x12, 0x96, 0xa5, 0x34, 0x9c, 0x56, 0x55, 0x21, + 0x43, 0x55, 0xf1, 0xf9, 0xb5, 0x78, 0xc4, 0xf9, 0xb5, 0x34, 0xc2, 0xfc, 0xba, 0x02, 0x15, 0xfa, + 0x83, 0x66, 0xc8, 0xb3, 0xf9, 0xb2, 0x4c, 0x01, 0x1a, 0xde, 0x8b, 0x4c, 0x6c, 0x6a, 0x44, 0x13, + 0x4b, 0xa4, 0x76, 0x4c, 0x27, 0x53, 0x3b, 0x6e, 0x86, 0x73, 0x5f, 0x39, 0x7d, 0x94, 0x12, 0x72, + 0xcc, 0x9c, 0xf5, 0x12, 0xfb, 0xa7, 0x95, 0xf4, 0xfe, 0x69, 0x44, 0xff, 0xb9, 0x3d, 0xea, 0xdd, + 0x62, 0xf9, 0x1a, 0x71, 0x3b, 0xe3, 0x3e, 0xf2, 0x0d, 0xe9, 0xa8, 0x4c, 0xc9, 0x98, 0xab, 0x42, + 0xbf, 0x10, 0x3f, 0x1e, 0xdb, 0x85, 0xc5, 0x64, 0x9e, 0xd7, 0x58, 0x3e, 0x2e, 0x27, 0xe1, 0xf4, + 0x37, 0xe3, 0x11, 0x5f, 0x4e, 0x76, 0xe5, 0xcd, 0x54, 0x22, 0xc0, 0xc8, 0x16, 0x7a, 0x55, 0xce, + 0x19, 0x1a, 0xdb, 0xae, 0x52, 0x29, 0x43, 0x34, 0x22, 0x31, 0x3c, 0x5e, 0xcc, 0x82, 0xf3, 0x0a, + 0x87, 0x34, 0xe9, 0xca, 0x60, 0xcf, 0xb2, 0x2d, 0xff, 0x80, 0x95, 0x4f, 0xb1, 0x95, 0x81, 0x00, + 0x35, 0xe9, 0xae, 0x25, 0x7e, 0x6e, 0x05, 0x7a, 0xc7, 0x31, 0x31, 0xb5, 0xda, 0x49, 0xad, 0x4c, + 0x00, 0x6b, 0x8e, 0x89, 0xa3, 0xf1, 0x54, 0x1e, 0x77, 0x3c, 0x55, 0x12, 0xe3, 0x69, 0x11, 0xa6, + 0x3c, 0x6c, 0xf8, 0x8e, 0xcd, 0x36, 0x33, 0x34, 0xfe, 0x45, 0x3a, 0xa2, 0x87, 0x7d, 0x9f, 0xd4, + 0xc1, 0x03, 0x30, 0xfe, 0x19, 0x0b, 0x16, 0x67, 0x06, 0x04, 0x8b, 0x03, 0x72, 0x37, 0x13, 0xc1, + 0x62, 0x6d, 0x40, 0xb0, 0x38, 0x52, 0xea, 0x66, 0x14, 0x16, 0xcf, 0x0e, 0x0b, 0x8b, 0xe3, 0x71, + 0xe5, 0x9c, 0x1c, 0x57, 0xde, 0x8e, 0xaf, 0x50, 0xeb, 0xe9, 0x93, 0xec, 0xc1, 0x37, 0x42, 0x3e, + 0xc3, 0x01, 0xfc, 0x8f, 0x0a, 0x2c, 0xa5, 0x06, 0x1c, 0x1f, 0xc2, 0xaf, 0x27, 0x92, 0x42, 0x07, + 0x66, 0x63, 0x8a, 0x9c, 0xd0, 0xa6, 0x94, 0x13, 0x7a, 0x69, 0x10, 0x49, 0x4e, 0x4a, 0xe8, 0xd1, + 0xd3, 0x34, 0xbf, 0xad, 0x00, 0xca, 0x58, 0x83, 0xdf, 0x14, 0xd1, 0xfa, 0x18, 0xbb, 0x65, 0x3c, + 0x60, 0x7f, 0x37, 0x0a, 0xd8, 0x0b, 0xe3, 0xec, 0x3b, 0x84, 0xf9, 0x23, 0x3f, 0x29, 0xc0, 0xe9, + 0x5d, 0xd7, 0x4c, 0x84, 0x91, 0x1c, 0x6b, 0x74, 0xcf, 0x76, 0x53, 0x4e, 0x7e, 0x39, 0x62, 0x13, + 0x8a, 0x47, 0x69, 0x02, 0xfa, 0x7a, 0x56, 0x7a, 0xd2, 0x6d, 0xe9, 0x20, 0x71, 0x70, 0x03, 0x7f, + 0xc1, 0xc7, 0x7f, 0x2a, 0x9c, 0xc9, 0x17, 0x80, 0x87, 0x9c, 0xff, 0x1f, 0xe6, 0x36, 0x9e, 0xe3, + 0xce, 0xf6, 0xa1, 0xdd, 0x19, 0x43, 0xeb, 0x75, 0x28, 0x76, 0x7a, 0x26, 0x3f, 0x1d, 0x21, 0x3f, + 0xe3, 0x51, 0x74, 0x51, 0x8e, 0xa2, 0x75, 0xa8, 0x47, 0x35, 0xf0, 0x01, 0xb4, 0x48, 0x06, 0x90, + 0x49, 0x90, 0x09, 0xf3, 0x19, 0x8d, 0x7f, 0x71, 0x38, 0xf6, 0xd8, 0x75, 0x13, 0x06, 0xc7, 0x9e, + 0x27, 0x7b, 0xed, 0xa2, 0xec, 0xb5, 0xd5, 0xef, 0x29, 0x50, 0x25, 0x35, 0x7c, 0x2c, 0xf9, 0xf9, + 0x52, 0xb6, 0x18, 0x2d, 0x65, 0xc3, 0x15, 0x71, 0x29, 0xbe, 0x22, 0x8e, 0x24, 0x9f, 0xa4, 0xe0, + 0xb4, 0xe4, 0x53, 0x21, 0x1c, 0x7b, 0x9e, 0x7a, 0x06, 0x66, 0x98, 0x6c, 0xbc, 0xe5, 0x75, 0x28, + 0xf6, 0xbd, 0xae, 0xe8, 0xbf, 0xbe, 0xd7, 0x55, 0xbf, 0xa5, 0x40, 0xad, 0x19, 0x04, 0x46, 0xe7, + 0x60, 0x8c, 0x06, 0x84, 0xc2, 0x15, 0xe2, 0xc2, 0xa5, 0x1b, 0x11, 0x89, 0x5b, 0xca, 0x11, 0x77, + 0x52, 0x12, 0x57, 0x85, 0x59, 0x21, 0x4b, 0xae, 0xc0, 0x9b, 0x80, 0xda, 0x8e, 0x17, 0xbc, 0xe7, + 0x78, 0xcf, 0x0c, 0xcf, 0x1c, 0x6f, 0xd5, 0x8a, 0xa0, 0xc4, 0xaf, 0xe3, 0x17, 0xcf, 0x4d, 0x6a, + 0xf4, 0xb7, 0xfa, 0x0a, 0x1c, 0x93, 0xf8, 0xe5, 0x56, 0x7c, 0x0b, 0xaa, 0x74, 0x16, 0xe6, 0x0b, + 0x9a, 0x8b, 0xf1, 0xd3, 0xf7, 0x21, 0xb3, 0xb5, 0xba, 0x0e, 0xf3, 0x24, 0x1e, 0xa3, 0xf0, 0xd0, + 0xbf, 0x5c, 0x49, 0xc4, 0xfc, 0x4b, 0x29, 0x16, 0x89, 0x78, 0xff, 0x67, 0x0a, 0x4c, 0x52, 0x78, + 0x2a, 0x46, 0x5a, 0x21, 0xf3, 0x9c, 0xeb, 0xe8, 0x81, 0xb1, 0x1f, 0x3e, 0x75, 0x40, 0x00, 0x3b, + 0xc6, 0x3e, 0x3d, 0xd1, 0xa1, 0x85, 0xa6, 0xb5, 0x8f, 0xfd, 0x40, 0x9c, 0x10, 0x56, 0x09, 0x6c, + 0x9d, 0x81, 0x88, 0x62, 0xe8, 0x41, 0x6a, 0x89, 0x9e, 0x97, 0xd2, 0xdf, 0xe8, 0x1c, 0xbb, 0xa9, + 0x38, 0xf8, 0x58, 0x8c, 0xde, 0x60, 0x6c, 0x40, 0x39, 0x71, 0x9e, 0x15, 0x7e, 0xa3, 0xf3, 0x50, + 0xa2, 0xfb, 0xcf, 0xd3, 0x83, 0xb4, 0x44, 0x51, 0x88, 0x55, 0xb8, 0x96, 0x6d, 0x63, 0x93, 0x06, + 0x40, 0x65, 0x8d, 0x7f, 0xa9, 0xef, 0x02, 0x8a, 0x2b, 0x8f, 0x77, 0xd0, 0x79, 0x98, 0xa2, 0xba, + 0x15, 0x41, 0xec, 0x7c, 0x8a, 0xb5, 0xc6, 0x11, 0xd4, 0xaf, 0x01, 0x62, 0x75, 0x49, 0x81, 0xeb, + 0x38, 0x1d, 0x38, 0x20, 0x84, 0xfd, 0x73, 0x05, 0x8e, 0x49, 0xdc, 0xb9, 0x7c, 0xaf, 0xc8, 0xec, + 0x33, 0xc4, 0xe3, 0xac, 0xdf, 0x96, 0x66, 0xe6, 0xf3, 0x69, 0x31, 0x7e, 0x41, 0xb3, 0xf2, 0x3f, + 0x29, 0x00, 0xcd, 0x7e, 0x70, 0xc0, 0x37, 0x5a, 0xe3, 0x9d, 0xa8, 0x24, 0x3a, 0xb1, 0x01, 0x65, + 0xd7, 0xf0, 0xfd, 0x67, 0x8e, 0x27, 0x16, 0x91, 0xe1, 0x37, 0xdd, 0x1e, 0xed, 0xf3, 0x17, 0x17, + 0x2a, 0x1a, 0xfd, 0x8d, 0x5e, 0x82, 0x59, 0xf6, 0x06, 0x87, 0x6e, 0x98, 0xa6, 0x27, 0x32, 0xfa, + 0x2a, 0x5a, 0x8d, 0x41, 0x9b, 0x0c, 0x48, 0xd0, 0x2c, 0x7a, 0x1a, 0x11, 0x1c, 0xea, 0x81, 0xf3, + 0x04, 0xdb, 0x7c, 0x61, 0x58, 0x13, 0xd0, 0x1d, 0x02, 0x64, 0xc7, 0x8d, 0xfb, 0x96, 0x1f, 0x78, + 0x02, 0x4d, 0x1c, 0x9a, 0x72, 0x28, 0x45, 0x53, 0xff, 0x44, 0x81, 0x7a, 0xbb, 0xdf, 0xed, 0x32, + 0xe5, 0x1e, 0xa5, 0x93, 0x2f, 0xf0, 0xa6, 0x14, 0xd2, 0x26, 0x1f, 0x29, 0x8a, 0x37, 0xf1, 0x13, + 0xd9, 0xcb, 0xba, 0x0a, 0xf3, 0x31, 0x89, 0xb9, 0xe1, 0x48, 0x91, 0xbd, 0x22, 0x47, 0xf6, 0x6a, + 0x13, 0x10, 0xdb, 0xbe, 0x39, 0x72, 0x2b, 0xd5, 0xe3, 0x70, 0x4c, 0x62, 0xc1, 0xa7, 0xe2, 0x0b, + 0x50, 0xe3, 0xd9, 0x65, 0xdc, 0x20, 0x4e, 0x40, 0x99, 0xb8, 0xd4, 0x8e, 0x65, 0x8a, 0x0c, 0x89, + 0x69, 0xd7, 0x31, 0xd7, 0x2c, 0xd3, 0x53, 0xbf, 0x04, 0x35, 0x7e, 0x7d, 0x9d, 0xe3, 0xde, 0x81, + 0x59, 0x7e, 0x3e, 0xa8, 0x4b, 0xf7, 0x3d, 0x4f, 0x64, 0xa4, 0x30, 0x0a, 0x55, 0xd8, 0xf1, 0x4f, + 0xf5, 0xeb, 0xd0, 0x60, 0xd1, 0x82, 0xc4, 0x58, 0x34, 0xf0, 0x0e, 0x88, 0xcb, 0x10, 0x03, 0xf8, + 0xcb, 0x94, 0x35, 0x2f, 0xfe, 0xa9, 0x9e, 0x82, 0x95, 0x4c, 0xfe, 0xbc, 0xf5, 0x2e, 0xd4, 0xa3, + 0x02, 0x76, 0x29, 0x31, 0x4c, 0xfb, 0x50, 0x62, 0x69, 0x1f, 0x8b, 0x61, 0xec, 0x5d, 0x10, 0x33, + 0x17, 0x0d, 0xaf, 0xa3, 0x15, 0x57, 0x31, 0x6f, 0xc5, 0x55, 0x92, 0x56, 0x5c, 0xea, 0xc3, 0x50, + 0x87, 0x7c, 0xdd, 0x7b, 0x9b, 0xae, 0xcc, 0x59, 0xdd, 0xc2, 0xa9, 0x9d, 0xcc, 0x6e, 0x1f, 0x43, + 0xd2, 0x62, 0xf8, 0xea, 0x79, 0xa8, 0xc9, 0xee, 0x2d, 0xe6, 0xb1, 0x94, 0x94, 0xc7, 0x9a, 0x4d, + 0x38, 0xab, 0xd7, 0x12, 0x4b, 0x8a, 0x2c, 0xbd, 0x26, 0x16, 0x14, 0x37, 0x24, 0xb7, 0xf5, 0xa2, + 0x74, 0x44, 0xff, 0x0b, 0xf2, 0x58, 0x0b, 0xdc, 0x8f, 0xbf, 0xe7, 0x13, 0x7a, 0xde, 0x50, 0xf5, + 0x05, 0xa8, 0xee, 0xe6, 0x3d, 0x22, 0x52, 0x12, 0x79, 0x65, 0x6f, 0xc2, 0xc2, 0x7b, 0x56, 0x17, + 0xfb, 0x87, 0x7e, 0x80, 0x7b, 0x2d, 0xea, 0x5e, 0xf6, 0x2c, 0xec, 0xa1, 0x55, 0x00, 0xba, 0x8a, + 0x74, 0x1d, 0x2b, 0x7c, 0x38, 0x21, 0x06, 0x51, 0x7f, 0xac, 0xc0, 0x5c, 0x44, 0x38, 0x4a, 0x86, + 0xdf, 0x1b, 0x30, 0xb9, 0xe7, 0x8b, 0xdd, 0xb6, 0xc4, 0x19, 0x44, 0x96, 0x08, 0x5a, 0x69, 0xcf, + 0x6f, 0x99, 0xe8, 0x4d, 0x80, 0xbe, 0x8f, 0x4d, 0x7e, 0xec, 0x37, 0x24, 0xe7, 0xb2, 0x42, 0x50, + 0xd9, 0xc1, 0xe1, 0x0d, 0xa8, 0x5a, 0xb6, 0x63, 0x62, 0x7a, 0x24, 0x6c, 0x0e, 0xcb, 0xb7, 0x04, + 0x86, 0xbb, 0xeb, 0x63, 0x53, 0xfd, 0xbd, 0xe8, 0x60, 0xf7, 0xf3, 0xdc, 0x42, 0x55, 0xe7, 0xf3, + 0xab, 0xe8, 0x75, 0x6e, 0xb2, 0xf7, 0x61, 0x9e, 0xb9, 0xc9, 0xbd, 0xb0, 0xca, 0xcc, 0x7b, 0x28, + 0x89, 0xb6, 0x69, 0x75, 0x8b, 0x47, 0x56, 0x82, 0x48, 0xbd, 0x05, 0xc7, 0x13, 0x89, 0xe1, 0xa3, + 0x6f, 0xa7, 0xbf, 0x9f, 0xd8, 0x17, 0x8b, 0x86, 0xd4, 0x55, 0xf9, 0x3e, 0xd2, 0xa0, 0x14, 0x7e, + 0x7e, 0x35, 0x66, 0x17, 0x4e, 0x48, 0x9b, 0x76, 0x92, 0x2c, 0x37, 0x12, 0xc1, 0xe2, 0x99, 0x7c, + 0x7e, 0x89, 0xa8, 0xf1, 0xbf, 0x14, 0x58, 0xc8, 0x42, 0x38, 0xe2, 0x86, 0xf1, 0x57, 0x73, 0xee, + 0x32, 0xbe, 0x3e, 0x4c, 0xa0, 0x4f, 0x65, 0x83, 0x7d, 0x93, 0xdd, 0x84, 0x1a, 0xde, 0x27, 0xc5, + 0xd1, 0xfa, 0xe4, 0x67, 0x85, 0xd8, 0xa1, 0xc8, 0x80, 0xdb, 0x4a, 0x1f, 0x63, 0x93, 0x72, 0x2d, + 0x71, 0x59, 0xe9, 0x62, 0x26, 0xe1, 0x90, 0xbb, 0x4a, 0x5a, 0xd6, 0x66, 0xc0, 0xd5, 0x61, 0x9c, + 0x3e, 0xb7, 0xfb, 0xd7, 0xff, 0xad, 0xc0, 0xac, 0xdc, 0x21, 0xe8, 0xdd, 0x8c, 0x9b, 0x4a, 0xa7, + 0x87, 0x34, 0x50, 0xba, 0xa8, 0xc4, 0x6f, 0x06, 0x15, 0x46, 0xbf, 0x19, 0x54, 0x1c, 0xed, 0x66, + 0xd0, 0x5d, 0x98, 0x7d, 0xe6, 0x59, 0x81, 0xf1, 0xb8, 0x8b, 0xf5, 0xae, 0x71, 0x88, 0x3d, 0xee, + 0x85, 0x07, 0xba, 0xa1, 0x9a, 0x20, 0x79, 0x40, 0x28, 0xd4, 0x6f, 0x15, 0xe0, 0x78, 0xe6, 0x25, + 0x95, 0x8f, 0xdf, 0xee, 0x4b, 0xf1, 0x76, 0x8f, 0x73, 0xf3, 0xa7, 0x38, 0xd6, 0xcd, 0x9f, 0x56, + 0x8e, 0x16, 0xb2, 0x8e, 0xd2, 0x87, 0x28, 0xe3, 0x2f, 0x15, 0x28, 0x0b, 0xa1, 0x86, 0xde, 0xc3, + 0x59, 0xea, 0x13, 0x34, 0x9d, 0xa6, 0x61, 0xdb, 0x86, 0xed, 0xe8, 0x3e, 0x26, 0x61, 0xd1, 0xd0, + 0x5b, 0x0f, 0x0b, 0x94, 0x6e, 0xcd, 0xf1, 0xf0, 0xa6, 0x61, 0x3b, 0xdb, 0x8c, 0x08, 0x35, 0xa1, + 0xce, 0xf8, 0x51, 0x56, 0x84, 0xe9, 0xd0, 0xa9, 0x6a, 0x96, 0x12, 0x10, 0x26, 0x84, 0x99, 0xaf, + 0xfe, 0xad, 0x02, 0x73, 0x09, 0xcd, 0xfe, 0xf2, 0x35, 0xe2, 0x77, 0x8b, 0x50, 0x8d, 0xf5, 0xf2, + 0x90, 0x06, 0xac, 0xc1, 0xbc, 0x48, 0x87, 0xf1, 0x71, 0x30, 0xda, 0xad, 0x93, 0x39, 0x4e, 0xb1, + 0x8d, 0x03, 0x16, 0xc9, 0xdc, 0x81, 0x39, 0xe3, 0xa9, 0x61, 0x75, 0xa9, 0x05, 0x8d, 0x14, 0x24, + 0xcc, 0x86, 0xf8, 0x61, 0x2c, 0xc4, 0xda, 0x3d, 0xd2, 0xdd, 0x13, 0xa0, 0xb8, 0xd1, 0x15, 0x20, + 0xdf, 0x8f, 0xe5, 0x5c, 0x0d, 0xbc, 0x02, 0xe4, 0xfb, 0x61, 0x7d, 0x34, 0x07, 0x9d, 0xde, 0x7d, + 0xf2, 0xf9, 0x83, 0x19, 0xf9, 0xf5, 0x11, 0xdc, 0xf7, 0x28, 0x2a, 0x51, 0x58, 0xcf, 0xf8, 0xd0, + 0xf1, 0xf4, 0x38, 0xfd, 0xf4, 0x10, 0x85, 0x51, 0x8a, 0x76, 0xc8, 0x44, 0xfd, 0x1f, 0x05, 0x50, + 0x7a, 0x40, 0xfe, 0xd2, 0x74, 0x55, 0xbc, 0xe9, 0xa5, 0x91, 0x55, 0xa7, 0xbe, 0x03, 0x27, 0x34, + 0xec, 0xb8, 0xd8, 0x0e, 0xfd, 0xde, 0x03, 0x67, 0x7f, 0x8c, 0x88, 0xed, 0x24, 0x34, 0xb2, 0xe8, + 0xf9, 0x3a, 0xb0, 0x0f, 0x8d, 0xb5, 0x03, 0xdc, 0x79, 0x42, 0xa3, 0xff, 0xa3, 0xe4, 0x73, 0x34, + 0xa0, 0xdc, 0x75, 0x3a, 0xec, 0x21, 0x4c, 0xbe, 0x55, 0x22, 0xbe, 0x07, 0xec, 0x52, 0x9f, 0x82, + 0x95, 0xcc, 0x6a, 0xb9, 0x54, 0x08, 0xea, 0xf7, 0x70, 0xb0, 0xf1, 0x14, 0xdb, 0x61, 0x40, 0xa8, + 0xfe, 0xa0, 0x10, 0x0b, 0x3d, 0x69, 0xd1, 0x18, 0x79, 0x30, 0xa8, 0x0d, 0x0b, 0x11, 0x0a, 0x26, + 0xd4, 0xec, 0x21, 0x3c, 0xf6, 0x84, 0x64, 0xf6, 0x19, 0x19, 0xad, 0x84, 0xbe, 0x7f, 0x17, 0x3d, + 0xf1, 0x11, 0xc2, 0x12, 0x27, 0xa7, 0xc5, 0xe4, 0xc9, 0xe9, 0xfb, 0x80, 0xe2, 0xc1, 0x25, 0x5f, + 0x6d, 0x96, 0x46, 0x78, 0xd5, 0xa4, 0xee, 0x26, 0xdf, 0xdf, 0xc9, 0x79, 0x9b, 0x64, 0xf2, 0x48, + 0x6f, 0x93, 0xa8, 0xab, 0x70, 0x92, 0x84, 0x8c, 0x0f, 0x71, 0xe0, 0x59, 0x9d, 0x75, 0xec, 0x77, + 0x3c, 0xcb, 0x0d, 0x9c, 0x30, 0x35, 0x43, 0xd5, 0xe1, 0x54, 0x4e, 0x39, 0x57, 0xf7, 0x3b, 0x50, + 0x35, 0x23, 0x70, 0xd6, 0xca, 0x3d, 0x49, 0xab, 0xc5, 0x09, 0xd4, 0x0f, 0xa0, 0x9e, 0x44, 0xc8, + 0xcc, 0xe4, 0x44, 0x50, 0x3a, 0xc0, 0x5d, 0x57, 0x5c, 0x4d, 0x21, 0xbf, 0x89, 0xd6, 0x59, 0x34, + 0xfe, 0x04, 0x1f, 0x8a, 0x9d, 0xdd, 0x0a, 0x85, 0x7c, 0x11, 0x1f, 0x86, 0x6d, 0x93, 0x2e, 0xcb, + 0x7b, 0x56, 0x27, 0xd9, 0xb6, 0x8c, 0xf2, 0xa8, 0x6d, 0xa4, 0xdb, 0x7a, 0x0c, 0xcc, 0xdb, 0x76, + 0x2a, 0xf7, 0x22, 0x3e, 0xa5, 0x05, 0xd7, 0x31, 0xf9, 0x6f, 0xf5, 0x4f, 0x15, 0x98, 0x4f, 0x61, + 0x8c, 0xb8, 0x5b, 0xff, 0x2a, 0x4c, 0x8b, 0x7a, 0x0b, 0xe9, 0x74, 0x47, 0xc6, 0x4b, 0x13, 0x28, + 0xa8, 0x05, 0xf3, 0x91, 0x45, 0x0b, 0xba, 0x62, 0xba, 0x2f, 0xe2, 0xa1, 0x38, 0x15, 0xb7, 0xde, + 0x49, 0x40, 0xd4, 0x0e, 0xd4, 0x93, 0x58, 0xa3, 0x8c, 0xa9, 0xb1, 0xe4, 0x55, 0xff, 0x5e, 0x81, + 0x29, 0x06, 0xcb, 0xec, 0x6c, 0xc9, 0x8b, 0x17, 0x92, 0x5e, 0xfc, 0x2d, 0xa8, 0x32, 0x3e, 0x7a, + 0x78, 0x31, 0x69, 0x56, 0xde, 0xb0, 0x64, 0xac, 0xe9, 0x68, 0x85, 0x5e, 0xf8, 0x9b, 0x34, 0x83, + 0xd9, 0x0b, 0x8d, 0xb5, 0x45, 0x52, 0x6b, 0x95, 0xc2, 0xa8, 0xaf, 0x25, 0xf1, 0x22, 0x8f, 0xca, + 0x87, 0xcc, 0x83, 0x0c, 0xeb, 0xc2, 0xcb, 0x50, 0x16, 0x4f, 0x20, 0xa3, 0x69, 0x28, 0xee, 0xac, + 0xb5, 0xeb, 0x13, 0xe4, 0xc7, 0xee, 0x7a, 0xbb, 0xae, 0xa0, 0x32, 0x94, 0xb6, 0xd7, 0x76, 0xda, + 0xf5, 0xc2, 0x85, 0x1e, 0xd4, 0x93, 0xaf, 0x00, 0xa3, 0x25, 0x38, 0xd6, 0xd6, 0xb6, 0xda, 0xcd, + 0x7b, 0xcd, 0x9d, 0xd6, 0xd6, 0xa6, 0xde, 0xd6, 0x5a, 0x8f, 0x9a, 0x3b, 0x1b, 0xf5, 0x09, 0x74, + 0x16, 0x4e, 0xc5, 0x0b, 0xee, 0x6f, 0x6d, 0xef, 0xe8, 0x3b, 0x5b, 0xfa, 0xda, 0xd6, 0xe6, 0x4e, + 0xb3, 0xb5, 0xb9, 0xa1, 0xd5, 0x15, 0x74, 0x0a, 0x4e, 0xc4, 0x51, 0xee, 0xb6, 0xd6, 0x5b, 0xda, + 0xc6, 0x1a, 0xf9, 0xdd, 0x7c, 0x50, 0x2f, 0x5c, 0x78, 0x1b, 0x6a, 0xd2, 0x05, 0x06, 0x22, 0x52, + 0x7b, 0x6b, 0xbd, 0x3e, 0x81, 0x6a, 0x50, 0x89, 0xf3, 0x29, 0x43, 0x69, 0x73, 0x6b, 0x7d, 0xa3, + 0x5e, 0x40, 0x00, 0x53, 0x3b, 0x4d, 0xed, 0xde, 0xc6, 0x4e, 0xbd, 0x78, 0xe1, 0x56, 0xf2, 0xa9, + 0x04, 0x8c, 0xe6, 0xa1, 0xb6, 0xdd, 0xdc, 0x5c, 0xbf, 0xbb, 0xf5, 0x15, 0x5d, 0xdb, 0x68, 0xae, + 0x7f, 0x50, 0x9f, 0x40, 0x0b, 0x50, 0x17, 0xa0, 0xcd, 0xad, 0x1d, 0x06, 0x55, 0x2e, 0x3c, 0x49, + 0xac, 0x5d, 0x30, 0x3a, 0x0e, 0xf3, 0x61, 0x95, 0xfa, 0x9a, 0xb6, 0xd1, 0xdc, 0xd9, 0x20, 0x92, + 0x48, 0x60, 0x6d, 0x77, 0x73, 0xb3, 0xb5, 0x79, 0xaf, 0xae, 0x10, 0xae, 0x11, 0x78, 0xe3, 0x2b, + 0x2d, 0x82, 0x5c, 0x90, 0x91, 0x77, 0x37, 0xbf, 0xb8, 0xb9, 0xf5, 0xe5, 0xcd, 0x7a, 0xf1, 0xc2, + 0xaf, 0xc6, 0xcf, 0xd6, 0x23, 0x6f, 0xbc, 0x02, 0x4b, 0xa9, 0x1a, 0xf5, 0x8d, 0x47, 0x1b, 0x9b, + 0x3b, 0xf5, 0x09, 0xb9, 0x70, 0x7b, 0xa7, 0xa9, 0x45, 0x85, 0x4a, 0xb2, 0x70, 0xab, 0xdd, 0x0e, + 0x0b, 0x0b, 0x72, 0xe1, 0xfa, 0xc6, 0x83, 0x8d, 0x88, 0xb2, 0x78, 0xe1, 0x45, 0x80, 0xc8, 0xea, + 0x50, 0x15, 0xa6, 0xd7, 0xb6, 0x76, 0x37, 0x77, 0x36, 0xb4, 0xfa, 0x04, 0xaa, 0xc0, 0xe4, 0xbd, + 0xe6, 0xee, 0xbd, 0x8d, 0xba, 0x72, 0xed, 0xf7, 0x17, 0xc2, 0xb7, 0x4f, 0xb7, 0xb1, 0x47, 0x73, + 0xc1, 0xd7, 0x61, 0x5a, 0xbc, 0x04, 0x2e, 0x2d, 0xc9, 0xe5, 0x97, 0xcb, 0x1b, 0x2b, 0x99, 0x65, + 0x7c, 0x8a, 0x9c, 0x40, 0x8f, 0xe8, 0x86, 0x6a, 0xec, 0xf5, 0xa1, 0x33, 0x89, 0x4d, 0xcc, 0xd4, + 0x23, 0x47, 0x8d, 0xb3, 0x03, 0x30, 0x42, 0xbe, 0x1f, 0xc0, 0xac, 0xfc, 0xcc, 0x1f, 0x3a, 0x2b, + 0x6f, 0x76, 0x66, 0xbc, 0x20, 0xd8, 0x50, 0x07, 0xa1, 0x84, 0xac, 0x75, 0xa8, 0x27, 0x9f, 0xf9, + 0x43, 0x52, 0x0e, 0x41, 0xce, 0x2b, 0x82, 0x8d, 0x17, 0x07, 0x23, 0xc5, 0x2b, 0x48, 0xbd, 0x5e, + 0xf7, 0xc2, 0xe0, 0xf7, 0xc0, 0x32, 0x2a, 0xc8, 0x7b, 0x34, 0x8c, 0x29, 0x47, 0x9e, 0x40, 0x50, + 0xe2, 0xc1, 0xb8, 0x8c, 0xb7, 0xa5, 0x64, 0xe5, 0x64, 0xbf, 0x2b, 0xa4, 0x4e, 0xa0, 0xff, 0x07, + 0x73, 0x89, 0x44, 0x5f, 0x24, 0x11, 0x66, 0xe7, 0x2f, 0x37, 0x5e, 0x18, 0x88, 0x23, 0xf7, 0x6a, + 0x3c, 0x99, 0x37, 0xd9, 0xab, 0x19, 0x49, 0xc2, 0xc9, 0x5e, 0xcd, 0xcc, 0x05, 0xa6, 0x86, 0x28, + 0x25, 0xee, 0xca, 0x86, 0x98, 0x95, 0x28, 0xdc, 0x38, 0x3b, 0x00, 0x23, 0xae, 0x90, 0x44, 0xea, + 0xae, 0xac, 0x90, 0xec, 0xa4, 0xe0, 0xc6, 0x0b, 0x03, 0x71, 0x92, 0x3d, 0x19, 0xa5, 0x0c, 0xa6, + 0x7b, 0x32, 0x95, 0xb6, 0x9a, 0xee, 0xc9, 0x74, 0xc6, 0x21, 0xef, 0xc9, 0x44, 0x92, 0x9f, 0x3a, + 0x30, 0x01, 0x29, 0xab, 0x27, 0xb3, 0x93, 0x94, 0xd4, 0x09, 0xf4, 0x0c, 0x96, 0xf3, 0xf2, 0x4c, + 0xd0, 0xc5, 0x31, 0xd2, 0x61, 0x1a, 0xaf, 0x8e, 0x86, 0x1c, 0x56, 0x8c, 0x01, 0xa5, 0x57, 0x12, + 0xe8, 0x25, 0x59, 0xdd, 0x39, 0x2b, 0x95, 0xc6, 0xcb, 0xc3, 0xd0, 0xc2, 0x6a, 0xee, 0x41, 0x59, + 0x64, 0xb0, 0x20, 0xc9, 0x05, 0x26, 0x32, 0x67, 0x1a, 0x27, 0xb3, 0x0b, 0x43, 0x46, 0x5f, 0x80, + 0x12, 0x81, 0xa2, 0xa5, 0x24, 0x9e, 0x60, 0xb0, 0x9c, 0x2e, 0x08, 0x89, 0x9b, 0x30, 0xc5, 0x52, + 0x33, 0x90, 0x74, 0x36, 0x24, 0xa5, 0x8e, 0x34, 0x1a, 0x59, 0x45, 0x21, 0x8b, 0x36, 0xfb, 0xbf, + 0x0a, 0x3c, 0xd3, 0x02, 0xad, 0x26, 0x1f, 0xf8, 0x95, 0x53, 0x3a, 0x1a, 0xa7, 0x73, 0xcb, 0xe3, + 0x36, 0x9b, 0xd8, 0x2d, 0x3b, 0x3b, 0x60, 0x4b, 0x37, 0xcb, 0x66, 0xb3, 0x37, 0x8a, 0x59, 0xe7, + 0xa6, 0x37, 0x92, 0xe5, 0xce, 0xcd, 0xdd, 0xac, 0x97, 0x3b, 0x37, 0x7f, 0x3f, 0x9a, 0x0d, 0x8d, + 0xe4, 0x4b, 0x3d, 0xea, 0xa0, 0x57, 0xb4, 0xb2, 0x86, 0x46, 0xce, 0xeb, 0x5c, 0xea, 0x04, 0x3a, + 0x80, 0x63, 0x19, 0xcf, 0x77, 0xa1, 0x97, 0xf3, 0xfd, 0xaf, 0x54, 0xcb, 0x2b, 0x43, 0xf1, 0xe2, + 0x35, 0x65, 0x1c, 0xaf, 0xca, 0x35, 0xe5, 0x9f, 0xef, 0xca, 0x35, 0x0d, 0x3a, 0xa7, 0xa5, 0x86, + 0xc8, 0x7d, 0xc8, 0x89, 0xac, 0x33, 0xc7, 0x0c, 0x43, 0x4c, 0x79, 0x8c, 0x03, 0x38, 0x96, 0xb1, + 0xda, 0x96, 0x85, 0xcd, 0xdf, 0x05, 0x90, 0x85, 0x1d, 0xb4, 0x6c, 0x9f, 0x40, 0x5f, 0x05, 0x74, + 0x0f, 0x07, 0x72, 0x7c, 0xe6, 0x23, 0x69, 0xa0, 0x26, 0x17, 0xf6, 0x39, 0xf6, 0x29, 0xad, 0xf0, + 0xd5, 0x89, 0xab, 0x0a, 0xb2, 0xd9, 0x5d, 0x82, 0xd4, 0xba, 0x14, 0x9d, 0x4b, 0x76, 0x5b, 0xde, + 0xd2, 0xb6, 0x71, 0x7e, 0x04, 0xcc, 0xb0, 0x2d, 0x76, 0xf2, 0xa9, 0x48, 0xb1, 0x34, 0x3a, 0x97, + 0x6f, 0x26, 0xf2, 0x72, 0x33, 0x5d, 0x5f, 0xee, 0xc2, 0x53, 0x9d, 0xb8, 0xf6, 0x3b, 0x45, 0x98, + 0x61, 0xc9, 0x0b, 0x3c, 0x4c, 0x7c, 0x08, 0x10, 0xe5, 0x01, 0xa1, 0x53, 0x49, 0x5e, 0x52, 0x72, + 0x55, 0x63, 0x35, 0xaf, 0x38, 0xee, 0x8e, 0x62, 0xf9, 0x35, 0xb2, 0x3b, 0x4a, 0xa7, 0x0b, 0xc9, + 0xee, 0x28, 0x23, 0x31, 0x47, 0x9d, 0x40, 0xef, 0x43, 0x25, 0x4c, 0xe7, 0x90, 0x3b, 0x39, 0x99, + 0x97, 0xd2, 0x38, 0x95, 0x53, 0x1a, 0x97, 0x2e, 0x96, 0xa5, 0x21, 0x4b, 0x97, 0xce, 0x00, 0x91, + 0xa5, 0xcb, 0x4a, 0xef, 0x88, 0xda, 0xcb, 0xce, 0x51, 0x33, 0xda, 0x2b, 0x1d, 0xab, 0x67, 0xb4, + 0x57, 0x3e, 0x80, 0x55, 0x27, 0xee, 0xde, 0xf9, 0xe1, 0x4f, 0x57, 0x95, 0x1f, 0xff, 0x74, 0x75, + 0xe2, 0x57, 0x3e, 0x5a, 0x55, 0x7e, 0xf8, 0xd1, 0xaa, 0xf2, 0xa3, 0x8f, 0x56, 0x95, 0x9f, 0x7c, + 0xb4, 0xaa, 0x7c, 0xfb, 0xdf, 0x57, 0x27, 0xbe, 0xaa, 0x3e, 0xb9, 0xe1, 0x5f, 0xb6, 0x9c, 0x2b, + 0x1d, 0xcf, 0xba, 0x64, 0xb8, 0xd6, 0x15, 0xf7, 0xc9, 0xfe, 0x15, 0xc3, 0xb5, 0xfc, 0x2b, 0x9c, + 0xef, 0x95, 0xa7, 0xaf, 0x3d, 0x9e, 0xa2, 0xff, 0x33, 0xe7, 0xf5, 0xff, 0x0b, 0x00, 0x00, 0xff, + 0xff, 0x10, 0x22, 0xf5, 0xd0, 0xed, 0x68, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -14921,6 +14983,36 @@ func (m *Device) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *CDIDevice) 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 *CDIDevice) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *CDIDevice) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Name) > 0 { + i -= len(m.Name) + copy(dAtA[i:], m.Name) + i = encodeVarintApi(dAtA, i, uint64(len(m.Name))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + func (m *ContainerConfig) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -14941,6 +15033,22 @@ func (m *ContainerConfig) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if len(m.CDIDevices) > 0 { + for iNdEx := len(m.CDIDevices) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.CDIDevices[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintApi(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1 + i-- + dAtA[i] = 0x8a + } + } if m.Windows != nil { { size, err := m.Windows.MarshalToSizedBuffer(dAtA[:i]) @@ -20158,6 +20266,19 @@ func (m *Device) Size() (n int) { return n } +func (m *CDIDevice) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Name) + if l > 0 { + n += 1 + l + sovApi(uint64(l)) + } + return n +} + func (m *ContainerConfig) Size() (n int) { if m == nil { return 0 @@ -20243,6 +20364,12 @@ func (m *ContainerConfig) Size() (n int) { l = m.Windows.Size() n += 2 + l + sovApi(uint64(l)) } + if len(m.CDIDevices) > 0 { + for _, e := range m.CDIDevices { + l = e.Size() + n += 2 + l + sovApi(uint64(l)) + } + } return n } @@ -22689,6 +22816,16 @@ func (this *Device) String() string { }, "") return s } +func (this *CDIDevice) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&CDIDevice{`, + `Name:` + fmt.Sprintf("%v", this.Name) + `,`, + `}`, + }, "") + return s +} func (this *ContainerConfig) String() string { if this == nil { return "nil" @@ -22708,6 +22845,11 @@ func (this *ContainerConfig) String() string { repeatedStringForDevices += strings.Replace(f.String(), "Device", "Device", 1) + "," } repeatedStringForDevices += "}" + repeatedStringForCDIDevices := "[]*CDIDevice{" + for _, f := range this.CDIDevices { + repeatedStringForCDIDevices += strings.Replace(f.String(), "CDIDevice", "CDIDevice", 1) + "," + } + repeatedStringForCDIDevices += "}" keysForLabels := make([]string, 0, len(this.Labels)) for k := range this.Labels { keysForLabels = append(keysForLabels, k) @@ -22745,6 +22887,7 @@ func (this *ContainerConfig) String() string { `Tty:` + fmt.Sprintf("%v", this.Tty) + `,`, `Linux:` + strings.Replace(this.Linux.String(), "LinuxContainerConfig", "LinuxContainerConfig", 1) + `,`, `Windows:` + strings.Replace(this.Windows.String(), "WindowsContainerConfig", "WindowsContainerConfig", 1) + `,`, + `CDIDevices:` + repeatedStringForCDIDevices + `,`, `}`, }, "") return s @@ -34512,6 +34655,88 @@ func (m *Device) Unmarshal(dAtA []byte) error { } return nil } +func (m *CDIDevice) 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 ErrIntOverflowApi + } + 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: CDIDevice: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: CDIDevice: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Name", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + 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 ErrInvalidLengthApi + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Name = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *ContainerConfig) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -35229,6 +35454,40 @@ func (m *ContainerConfig) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 17: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field CDIDevices", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.CDIDevices = append(m.CDIDevices, &CDIDevice{}) + if err := m.CDIDevices[len(m.CDIDevices)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipApi(dAtA[iNdEx:]) diff --git a/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.proto b/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.proto index c744b6e12e3..c1910573a3f 100644 --- a/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.proto +++ b/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.proto @@ -1017,6 +1017,15 @@ message Device { string permissions = 3; } +// CDIDevice specifies a CDI device information. +message CDIDevice { + // Fully qualified CDI device name + // for example: vendor.com/gpu=gpudevice1 + // see more details in the CDI specification: + // https://github.com/container-orchestrated-devices/container-device-interface/blob/main/SPEC.md + string name = 1; +} + // ContainerConfig holds all the required and optional fields for creating a // container. message ContainerConfig { @@ -1074,6 +1083,9 @@ message ContainerConfig { LinuxContainerConfig linux = 15; // Configuration specific to Windows containers. WindowsContainerConfig windows = 16; + + // CDI devices for the container. + repeated CDIDevice CDI_devices = 17; } message CreateContainerRequest { From 5a8689507037e4e2c98c1af9837dbd1420f6188a Mon Sep 17 00:00:00 2001 From: Ed Bartosh Date: Mon, 20 Feb 2023 01:02:46 +0200 Subject: [PATCH 2/2] DRA: pass CDI devices through CRI CDIDevice field --- pkg/kubelet/cm/container_manager_linux.go | 4 ++++ pkg/kubelet/cm/dra/manager.go | 9 ++++++++- pkg/kubelet/cm/dra/types.go | 2 ++ pkg/kubelet/container/runtime.go | 8 ++++++++ pkg/kubelet/kuberuntime/kuberuntime_container.go | 14 ++++++++++++++ .../kuberuntime_container_linux_test.go | 1 + 6 files changed, 37 insertions(+), 1 deletion(-) diff --git a/pkg/kubelet/cm/container_manager_linux.go b/pkg/kubelet/cm/container_manager_linux.go index ff3b197aeb0..7d735e8bfd7 100644 --- a/pkg/kubelet/cm/container_manager_linux.go +++ b/pkg/kubelet/cm/container_manager_linux.go @@ -661,7 +661,11 @@ func (cm *containerManagerImpl) GetResources(pod *v1.Pod, container *v1.Containe if err != nil { return nil, err } + // NOTE: Passing CDI device names as annotations is a temporary solution + // It will be removed after all runtimes are updated + // to get CDI device names from the ContainerConfig.CDIDevices field opts.Annotations = append(opts.Annotations, resOpts.Annotations...) + opts.CDIDevices = append(opts.CDIDevices, resOpts.CDIDevices...) } // Allocate should already be called during predicateAdmitHandler.Admit(), // just try to fetch device runtime information from cached state here diff --git a/pkg/kubelet/cm/dra/manager.go b/pkg/kubelet/cm/dra/manager.go index 95eb9687c05..2513af1b498 100644 --- a/pkg/kubelet/cm/dra/manager.go +++ b/pkg/kubelet/cm/dra/manager.go @@ -126,6 +126,9 @@ func (m *ManagerImpl) PrepareResources(pod *v1.Pod) error { klog.V(3).InfoS("NodePrepareResource succeeded", "response", response) + // NOTE: Passing CDI device names as annotations is a temporary solution + // It will be removed after all runtimes are updated + // to get CDI device names from the ContainerConfig.CDIDevices field annotations, err := generateCDIAnnotations(resourceClaim.UID, driverName, response.CdiDevices) if err != nil { return fmt.Errorf("failed to generate container annotations, err: %+v", err) @@ -163,6 +166,7 @@ func (m *ManagerImpl) PrepareResources(pod *v1.Pod) error { // This information is used by the caller to update a container config. func (m *ManagerImpl) GetResources(pod *v1.Pod, container *v1.Container) (*ContainerInfo, error) { annotations := []kubecontainer.Annotation{} + cdiDevices := []kubecontainer.CDIDevice{} for i, podResourceClaim := range pod.Spec.ResourceClaims { claimName := resourceclaim.Name(pod, &pod.Spec.ResourceClaims[i]) @@ -179,10 +183,13 @@ func (m *ManagerImpl) GetResources(pod *v1.Pod, container *v1.Container) (*Conta klog.V(3).InfoS("add resource annotations", "claim", claimName, "annotations", claimInfo.annotations) annotations = append(annotations, claimInfo.annotations...) + for _, cdiDevice := range claimInfo.cdiDevices { + cdiDevices = append(cdiDevices, kubecontainer.CDIDevice{Name: cdiDevice}) + } } } - return &ContainerInfo{Annotations: annotations}, nil + return &ContainerInfo{Annotations: annotations, CDIDevices: cdiDevices}, nil } // UnprepareResources calls a plugin's NodeUnprepareResource API for each resource claim owned by a pod. diff --git a/pkg/kubelet/cm/dra/types.go b/pkg/kubelet/cm/dra/types.go index 6b52ad8ef5c..7e559a06356 100644 --- a/pkg/kubelet/cm/dra/types.go +++ b/pkg/kubelet/cm/dra/types.go @@ -44,4 +44,6 @@ type Manager interface { type ContainerInfo struct { // The Annotations for the container Annotations []kubecontainer.Annotation + // CDI Devices for the container + CDIDevices []kubecontainer.CDIDevice } diff --git a/pkg/kubelet/container/runtime.go b/pkg/kubelet/container/runtime.go index 5f54799c7ed..bbc322b1975 100644 --- a/pkg/kubelet/container/runtime.go +++ b/pkg/kubelet/container/runtime.go @@ -463,6 +463,12 @@ type DeviceInfo struct { Permissions string } +// CDIDevice contains information about CDI device +type CDIDevice struct { + // Name is a fully qualified device name + Name string +} + // RunContainerOptions specify the options which are necessary for running containers type RunContainerOptions struct { // The environment variables list. @@ -471,6 +477,8 @@ type RunContainerOptions struct { Mounts []Mount // The host devices mapped into the containers. Devices []DeviceInfo + // The CDI devices for the container + CDIDevices []CDIDevice // The annotations for the container // These annotations are generated by other components (i.e., // not users). Currently, only device plugins populate the annotations. diff --git a/pkg/kubelet/kuberuntime/kuberuntime_container.go b/pkg/kubelet/kuberuntime/kuberuntime_container.go index 745d70fc7ed..881af3f2190 100644 --- a/pkg/kubelet/kuberuntime/kuberuntime_container.go +++ b/pkg/kubelet/kuberuntime/kuberuntime_container.go @@ -335,6 +335,7 @@ func (m *kubeGenericRuntimeManager) generateContainerConfig(ctx context.Context, Labels: newContainerLabels(container, pod), Annotations: newContainerAnnotations(container, pod, restartCount, opts), Devices: makeDevices(opts), + CDIDevices: makeCDIDevices(opts), Mounts: m.makeMounts(opts, container), LogPath: containerLogsPath, Stdin: container.Stdin, @@ -390,6 +391,19 @@ func makeDevices(opts *kubecontainer.RunContainerOptions) []*runtimeapi.Device { return devices } +// makeCDIDevices generates container CDIDevices for kubelet runtime v1. +func makeCDIDevices(opts *kubecontainer.RunContainerOptions) []*runtimeapi.CDIDevice { + devices := make([]*runtimeapi.CDIDevice, len(opts.CDIDevices)) + + for i, device := range opts.CDIDevices { + devices[i] = &runtimeapi.CDIDevice{ + Name: device.Name, + } + } + + return devices +} + // makeMounts generates container volume mounts for kubelet runtime v1. func (m *kubeGenericRuntimeManager) makeMounts(opts *kubecontainer.RunContainerOptions, container *v1.Container) []*runtimeapi.Mount { volumeMounts := []*runtimeapi.Mount{} diff --git a/pkg/kubelet/kuberuntime/kuberuntime_container_linux_test.go b/pkg/kubelet/kuberuntime/kuberuntime_container_linux_test.go index 2297cffcdf9..82b3ab16ff0 100644 --- a/pkg/kubelet/kuberuntime/kuberuntime_container_linux_test.go +++ b/pkg/kubelet/kuberuntime/kuberuntime_container_linux_test.go @@ -71,6 +71,7 @@ func makeExpectedConfig(m *kubeGenericRuntimeManager, pod *v1.Pod, containerInde Tty: container.TTY, Linux: l, Envs: envs, + CDIDevices: makeCDIDevices(opts), } return expectedConfig }