From 51a02fdb80cb7ba042a66362eb76facd2fd82401 Mon Sep 17 00:00:00 2001 From: marosset Date: Wed, 24 Feb 2021 10:48:00 -0800 Subject: [PATCH] Updating CRI API to include Windows Pod/Sandbox configs --- .../cri-api/pkg/apis/runtime/v1/api.pb.go | 1389 +++++++++++----- .../cri-api/pkg/apis/runtime/v1/api.proto | 28 + .../pkg/apis/runtime/v1alpha2/api.pb.go | 1395 ++++++++++++----- .../pkg/apis/runtime/v1alpha2/api.proto | 28 + 4 files changed, 2033 insertions(+), 807 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 b4e4b981787..1648c307d76 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 @@ -1114,9 +1114,11 @@ type PodSandboxConfig struct { // consider proposing new typed fields for any new features instead. Annotations map[string]string `protobuf:"bytes,7,rep,name=annotations,proto3" json:"annotations,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` // Optional configurations specific to Linux hosts. - Linux *LinuxPodSandboxConfig `protobuf:"bytes,8,opt,name=linux,proto3" json:"linux,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_sizecache int32 `json:"-"` + Linux *LinuxPodSandboxConfig `protobuf:"bytes,8,opt,name=linux,proto3" json:"linux,omitempty"` + // Optional configurations specific to Windows hosts. + Windows *WindowsPodSandboxConfig `protobuf:"bytes,9,opt,name=windows,proto3" json:"windows,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *PodSandboxConfig) Reset() { *m = PodSandboxConfig{} } @@ -1207,6 +1209,13 @@ func (m *PodSandboxConfig) GetLinux() *LinuxPodSandboxConfig { return nil } +func (m *PodSandboxConfig) GetWindows() *WindowsPodSandboxConfig { + if m != nil { + return m.Windows + } + return nil +} + type RunPodSandboxRequest struct { // Configuration for creating a PodSandbox. Config *PodSandboxConfig `protobuf:"bytes,1,opt,name=config,proto3" json:"config,omitempty"` @@ -2905,6 +2914,123 @@ func (m *LinuxContainerConfig) GetSecurityContext() *LinuxContainerSecurityConte return nil } +// WindowsSandboxSecurityContext holds platform-specific configurations that will be +// applied to a sandbox. +// These settings will only apply to the sandbox container. +type WindowsSandboxSecurityContext struct { + // User name to run the container process as. If specified, the user MUST + // exist in the container image and be resolved there by the runtime; + // otherwise, the runtime MUST return error. + RunAsUsername string `protobuf:"bytes,1,opt,name=run_as_username,json=runAsUsername,proto3" json:"run_as_username,omitempty"` + // The contents of the GMSA credential spec to use to run this container. + CredentialSpec string `protobuf:"bytes,2,opt,name=credential_spec,json=credentialSpec,proto3" json:"credential_spec,omitempty"` + // Indicates whether the container requested to run as a HostProcess container. + HostProcess bool `protobuf:"varint,3,opt,name=host_process,json=hostProcess,proto3" json:"host_process,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *WindowsSandboxSecurityContext) Reset() { *m = WindowsSandboxSecurityContext{} } +func (*WindowsSandboxSecurityContext) ProtoMessage() {} +func (*WindowsSandboxSecurityContext) Descriptor() ([]byte, []int) { + return fileDescriptor_00212fb1f9d3bf1c, []int{38} +} +func (m *WindowsSandboxSecurityContext) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *WindowsSandboxSecurityContext) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_WindowsSandboxSecurityContext.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 *WindowsSandboxSecurityContext) XXX_Merge(src proto.Message) { + xxx_messageInfo_WindowsSandboxSecurityContext.Merge(m, src) +} +func (m *WindowsSandboxSecurityContext) XXX_Size() int { + return m.Size() +} +func (m *WindowsSandboxSecurityContext) XXX_DiscardUnknown() { + xxx_messageInfo_WindowsSandboxSecurityContext.DiscardUnknown(m) +} + +var xxx_messageInfo_WindowsSandboxSecurityContext proto.InternalMessageInfo + +func (m *WindowsSandboxSecurityContext) GetRunAsUsername() string { + if m != nil { + return m.RunAsUsername + } + return "" +} + +func (m *WindowsSandboxSecurityContext) GetCredentialSpec() string { + if m != nil { + return m.CredentialSpec + } + return "" +} + +func (m *WindowsSandboxSecurityContext) GetHostProcess() bool { + if m != nil { + return m.HostProcess + } + return false +} + +// WindowsPodSandboxConfig holds platform-specific configurations for Windows +// host platforms and Windows-based containers. +type WindowsPodSandboxConfig struct { + // WindowsSandboxSecurityContext holds sandbox security attributes. + SecurityContext *WindowsSandboxSecurityContext `protobuf:"bytes,1,opt,name=security_context,json=securityContext,proto3" json:"security_context,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *WindowsPodSandboxConfig) Reset() { *m = WindowsPodSandboxConfig{} } +func (*WindowsPodSandboxConfig) ProtoMessage() {} +func (*WindowsPodSandboxConfig) Descriptor() ([]byte, []int) { + return fileDescriptor_00212fb1f9d3bf1c, []int{39} +} +func (m *WindowsPodSandboxConfig) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *WindowsPodSandboxConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_WindowsPodSandboxConfig.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 *WindowsPodSandboxConfig) XXX_Merge(src proto.Message) { + xxx_messageInfo_WindowsPodSandboxConfig.Merge(m, src) +} +func (m *WindowsPodSandboxConfig) XXX_Size() int { + return m.Size() +} +func (m *WindowsPodSandboxConfig) XXX_DiscardUnknown() { + xxx_messageInfo_WindowsPodSandboxConfig.DiscardUnknown(m) +} + +var xxx_messageInfo_WindowsPodSandboxConfig proto.InternalMessageInfo + +func (m *WindowsPodSandboxConfig) GetSecurityContext() *WindowsSandboxSecurityContext { + if m != nil { + return m.SecurityContext + } + return nil +} + // WindowsContainerSecurityContext holds windows security configuration that will be applied to a container. type WindowsContainerSecurityContext struct { // User name to run the container process as. If specified, the user MUST @@ -2912,7 +3038,9 @@ type WindowsContainerSecurityContext struct { // otherwise, the runtime MUST return error. RunAsUsername string `protobuf:"bytes,1,opt,name=run_as_username,json=runAsUsername,proto3" json:"run_as_username,omitempty"` // The contents of the GMSA credential spec to use to run this container. - CredentialSpec string `protobuf:"bytes,2,opt,name=credential_spec,json=credentialSpec,proto3" json:"credential_spec,omitempty"` + CredentialSpec string `protobuf:"bytes,2,opt,name=credential_spec,json=credentialSpec,proto3" json:"credential_spec,omitempty"` + // Indicates whether a container is to be run as a HostProcess container. + HostProcess bool `protobuf:"varint,3,opt,name=host_process,json=hostProcess,proto3" json:"host_process,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_sizecache int32 `json:"-"` } @@ -2920,7 +3048,7 @@ type WindowsContainerSecurityContext struct { func (m *WindowsContainerSecurityContext) Reset() { *m = WindowsContainerSecurityContext{} } func (*WindowsContainerSecurityContext) ProtoMessage() {} func (*WindowsContainerSecurityContext) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{38} + return fileDescriptor_00212fb1f9d3bf1c, []int{40} } func (m *WindowsContainerSecurityContext) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2963,6 +3091,13 @@ func (m *WindowsContainerSecurityContext) GetCredentialSpec() string { return "" } +func (m *WindowsContainerSecurityContext) GetHostProcess() bool { + if m != nil { + return m.HostProcess + } + return false +} + // WindowsContainerConfig contains platform-specific configuration for // Windows-based containers. type WindowsContainerConfig struct { @@ -2977,7 +3112,7 @@ type WindowsContainerConfig struct { func (m *WindowsContainerConfig) Reset() { *m = WindowsContainerConfig{} } func (*WindowsContainerConfig) ProtoMessage() {} func (*WindowsContainerConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{39} + return fileDescriptor_00212fb1f9d3bf1c, []int{41} } func (m *WindowsContainerConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3038,7 +3173,7 @@ type WindowsContainerResources struct { func (m *WindowsContainerResources) Reset() { *m = WindowsContainerResources{} } func (*WindowsContainerResources) ProtoMessage() {} func (*WindowsContainerResources) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{40} + return fileDescriptor_00212fb1f9d3bf1c, []int{42} } func (m *WindowsContainerResources) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3112,7 +3247,7 @@ type ContainerMetadata struct { func (m *ContainerMetadata) Reset() { *m = ContainerMetadata{} } func (*ContainerMetadata) ProtoMessage() {} func (*ContainerMetadata) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{41} + return fileDescriptor_00212fb1f9d3bf1c, []int{43} } func (m *ContainerMetadata) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3173,7 +3308,7 @@ type Device struct { func (m *Device) Reset() { *m = Device{} } func (*Device) ProtoMessage() {} func (*Device) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{42} + return fileDescriptor_00212fb1f9d3bf1c, []int{44} } func (m *Device) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3290,7 +3425,7 @@ type ContainerConfig struct { func (m *ContainerConfig) Reset() { *m = ContainerConfig{} } func (*ContainerConfig) ProtoMessage() {} func (*ContainerConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{43} + return fileDescriptor_00212fb1f9d3bf1c, []int{45} } func (m *ContainerConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3448,7 +3583,7 @@ type CreateContainerRequest struct { func (m *CreateContainerRequest) Reset() { *m = CreateContainerRequest{} } func (*CreateContainerRequest) ProtoMessage() {} func (*CreateContainerRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{44} + return fileDescriptor_00212fb1f9d3bf1c, []int{46} } func (m *CreateContainerRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3508,7 +3643,7 @@ type CreateContainerResponse struct { func (m *CreateContainerResponse) Reset() { *m = CreateContainerResponse{} } func (*CreateContainerResponse) ProtoMessage() {} func (*CreateContainerResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{45} + return fileDescriptor_00212fb1f9d3bf1c, []int{47} } func (m *CreateContainerResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3554,7 +3689,7 @@ type StartContainerRequest struct { func (m *StartContainerRequest) Reset() { *m = StartContainerRequest{} } func (*StartContainerRequest) ProtoMessage() {} func (*StartContainerRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{46} + return fileDescriptor_00212fb1f9d3bf1c, []int{48} } func (m *StartContainerRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3598,7 +3733,7 @@ type StartContainerResponse struct { func (m *StartContainerResponse) Reset() { *m = StartContainerResponse{} } func (*StartContainerResponse) ProtoMessage() {} func (*StartContainerResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{47} + return fileDescriptor_00212fb1f9d3bf1c, []int{49} } func (m *StartContainerResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3640,7 +3775,7 @@ type StopContainerRequest struct { func (m *StopContainerRequest) Reset() { *m = StopContainerRequest{} } func (*StopContainerRequest) ProtoMessage() {} func (*StopContainerRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{48} + return fileDescriptor_00212fb1f9d3bf1c, []int{50} } func (m *StopContainerRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3691,7 +3826,7 @@ type StopContainerResponse struct { func (m *StopContainerResponse) Reset() { *m = StopContainerResponse{} } func (*StopContainerResponse) ProtoMessage() {} func (*StopContainerResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{49} + return fileDescriptor_00212fb1f9d3bf1c, []int{51} } func (m *StopContainerResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3730,7 +3865,7 @@ type RemoveContainerRequest struct { func (m *RemoveContainerRequest) Reset() { *m = RemoveContainerRequest{} } func (*RemoveContainerRequest) ProtoMessage() {} func (*RemoveContainerRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{50} + return fileDescriptor_00212fb1f9d3bf1c, []int{52} } func (m *RemoveContainerRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3774,7 +3909,7 @@ type RemoveContainerResponse struct { func (m *RemoveContainerResponse) Reset() { *m = RemoveContainerResponse{} } func (*RemoveContainerResponse) ProtoMessage() {} func (*RemoveContainerResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{51} + return fileDescriptor_00212fb1f9d3bf1c, []int{53} } func (m *RemoveContainerResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3814,7 +3949,7 @@ type ContainerStateValue struct { func (m *ContainerStateValue) Reset() { *m = ContainerStateValue{} } func (*ContainerStateValue) ProtoMessage() {} func (*ContainerStateValue) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{52} + return fileDescriptor_00212fb1f9d3bf1c, []int{54} } func (m *ContainerStateValue) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3870,7 +4005,7 @@ type ContainerFilter struct { func (m *ContainerFilter) Reset() { *m = ContainerFilter{} } func (*ContainerFilter) ProtoMessage() {} func (*ContainerFilter) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{53} + return fileDescriptor_00212fb1f9d3bf1c, []int{55} } func (m *ContainerFilter) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3936,7 +4071,7 @@ type ListContainersRequest struct { func (m *ListContainersRequest) Reset() { *m = ListContainersRequest{} } func (*ListContainersRequest) ProtoMessage() {} func (*ListContainersRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{54} + return fileDescriptor_00212fb1f9d3bf1c, []int{56} } func (m *ListContainersRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4005,7 +4140,7 @@ type Container struct { func (m *Container) Reset() { *m = Container{} } func (*Container) ProtoMessage() {} func (*Container) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{55} + return fileDescriptor_00212fb1f9d3bf1c, []int{57} } func (m *Container) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4107,7 +4242,7 @@ type ListContainersResponse struct { func (m *ListContainersResponse) Reset() { *m = ListContainersResponse{} } func (*ListContainersResponse) ProtoMessage() {} func (*ListContainersResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{56} + return fileDescriptor_00212fb1f9d3bf1c, []int{58} } func (m *ListContainersResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4155,7 +4290,7 @@ type ContainerStatusRequest struct { func (m *ContainerStatusRequest) Reset() { *m = ContainerStatusRequest{} } func (*ContainerStatusRequest) ProtoMessage() {} func (*ContainerStatusRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{57} + return fileDescriptor_00212fb1f9d3bf1c, []int{59} } func (m *ContainerStatusRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4242,7 +4377,7 @@ type ContainerStatus struct { func (m *ContainerStatus) Reset() { *m = ContainerStatus{} } func (*ContainerStatus) ProtoMessage() {} func (*ContainerStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{58} + return fileDescriptor_00212fb1f9d3bf1c, []int{60} } func (m *ContainerStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4391,7 +4526,7 @@ type ContainerStatusResponse struct { func (m *ContainerStatusResponse) Reset() { *m = ContainerStatusResponse{} } func (*ContainerStatusResponse) ProtoMessage() {} func (*ContainerStatusResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{59} + return fileDescriptor_00212fb1f9d3bf1c, []int{61} } func (m *ContainerStatusResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4452,7 +4587,7 @@ type UpdateContainerResourcesRequest struct { func (m *UpdateContainerResourcesRequest) Reset() { *m = UpdateContainerResourcesRequest{} } func (*UpdateContainerResourcesRequest) ProtoMessage() {} func (*UpdateContainerResourcesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{60} + return fileDescriptor_00212fb1f9d3bf1c, []int{62} } func (m *UpdateContainerResourcesRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4517,7 +4652,7 @@ type UpdateContainerResourcesResponse struct { func (m *UpdateContainerResourcesResponse) Reset() { *m = UpdateContainerResourcesResponse{} } func (*UpdateContainerResourcesResponse) ProtoMessage() {} func (*UpdateContainerResourcesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{61} + return fileDescriptor_00212fb1f9d3bf1c, []int{63} } func (m *UpdateContainerResourcesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4560,7 +4695,7 @@ type ExecSyncRequest struct { func (m *ExecSyncRequest) Reset() { *m = ExecSyncRequest{} } func (*ExecSyncRequest) ProtoMessage() {} func (*ExecSyncRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{62} + return fileDescriptor_00212fb1f9d3bf1c, []int{64} } func (m *ExecSyncRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4624,7 +4759,7 @@ type ExecSyncResponse struct { func (m *ExecSyncResponse) Reset() { *m = ExecSyncResponse{} } func (*ExecSyncResponse) ProtoMessage() {} func (*ExecSyncResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{63} + return fileDescriptor_00212fb1f9d3bf1c, []int{65} } func (m *ExecSyncResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4700,7 +4835,7 @@ type ExecRequest struct { func (m *ExecRequest) Reset() { *m = ExecRequest{} } func (*ExecRequest) ProtoMessage() {} func (*ExecRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{64} + return fileDescriptor_00212fb1f9d3bf1c, []int{66} } func (m *ExecRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4781,7 +4916,7 @@ type ExecResponse struct { func (m *ExecResponse) Reset() { *m = ExecResponse{} } func (*ExecResponse) ProtoMessage() {} func (*ExecResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{65} + return fileDescriptor_00212fb1f9d3bf1c, []int{67} } func (m *ExecResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4842,7 +4977,7 @@ type AttachRequest struct { func (m *AttachRequest) Reset() { *m = AttachRequest{} } func (*AttachRequest) ProtoMessage() {} func (*AttachRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{66} + return fileDescriptor_00212fb1f9d3bf1c, []int{68} } func (m *AttachRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4916,7 +5051,7 @@ type AttachResponse struct { func (m *AttachResponse) Reset() { *m = AttachResponse{} } func (*AttachResponse) ProtoMessage() {} func (*AttachResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{67} + return fileDescriptor_00212fb1f9d3bf1c, []int{69} } func (m *AttachResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4964,7 +5099,7 @@ type PortForwardRequest struct { func (m *PortForwardRequest) Reset() { *m = PortForwardRequest{} } func (*PortForwardRequest) ProtoMessage() {} func (*PortForwardRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{68} + return fileDescriptor_00212fb1f9d3bf1c, []int{70} } func (m *PortForwardRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5017,7 +5152,7 @@ type PortForwardResponse struct { func (m *PortForwardResponse) Reset() { *m = PortForwardResponse{} } func (*PortForwardResponse) ProtoMessage() {} func (*PortForwardResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{69} + return fileDescriptor_00212fb1f9d3bf1c, []int{71} } func (m *PortForwardResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5063,7 +5198,7 @@ type ImageFilter struct { func (m *ImageFilter) Reset() { *m = ImageFilter{} } func (*ImageFilter) ProtoMessage() {} func (*ImageFilter) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{70} + return fileDescriptor_00212fb1f9d3bf1c, []int{72} } func (m *ImageFilter) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5109,7 +5244,7 @@ type ListImagesRequest struct { func (m *ListImagesRequest) Reset() { *m = ListImagesRequest{} } func (*ListImagesRequest) ProtoMessage() {} func (*ListImagesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{71} + return fileDescriptor_00212fb1f9d3bf1c, []int{73} } func (m *ListImagesRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5171,7 +5306,7 @@ type Image struct { func (m *Image) Reset() { *m = Image{} } func (*Image) ProtoMessage() {} func (*Image) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{72} + return fileDescriptor_00212fb1f9d3bf1c, []int{74} } func (m *Image) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5259,7 +5394,7 @@ type ListImagesResponse struct { func (m *ListImagesResponse) Reset() { *m = ListImagesResponse{} } func (*ListImagesResponse) ProtoMessage() {} func (*ListImagesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{73} + return fileDescriptor_00212fb1f9d3bf1c, []int{75} } func (m *ListImagesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5307,7 +5442,7 @@ type ImageStatusRequest struct { func (m *ImageStatusRequest) Reset() { *m = ImageStatusRequest{} } func (*ImageStatusRequest) ProtoMessage() {} func (*ImageStatusRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{74} + return fileDescriptor_00212fb1f9d3bf1c, []int{76} } func (m *ImageStatusRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5365,7 +5500,7 @@ type ImageStatusResponse struct { func (m *ImageStatusResponse) Reset() { *m = ImageStatusResponse{} } func (*ImageStatusResponse) ProtoMessage() {} func (*ImageStatusResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{75} + return fileDescriptor_00212fb1f9d3bf1c, []int{77} } func (m *ImageStatusResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5426,7 +5561,7 @@ type AuthConfig struct { func (m *AuthConfig) Reset() { *m = AuthConfig{} } func (*AuthConfig) ProtoMessage() {} func (*AuthConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{76} + return fileDescriptor_00212fb1f9d3bf1c, []int{78} } func (m *AuthConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5511,7 +5646,7 @@ type PullImageRequest struct { func (m *PullImageRequest) Reset() { *m = PullImageRequest{} } func (*PullImageRequest) ProtoMessage() {} func (*PullImageRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{77} + return fileDescriptor_00212fb1f9d3bf1c, []int{79} } func (m *PullImageRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5572,7 +5707,7 @@ type PullImageResponse struct { func (m *PullImageResponse) Reset() { *m = PullImageResponse{} } func (*PullImageResponse) ProtoMessage() {} func (*PullImageResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{78} + return fileDescriptor_00212fb1f9d3bf1c, []int{80} } func (m *PullImageResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5618,7 +5753,7 @@ type RemoveImageRequest struct { func (m *RemoveImageRequest) Reset() { *m = RemoveImageRequest{} } func (*RemoveImageRequest) ProtoMessage() {} func (*RemoveImageRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{79} + return fileDescriptor_00212fb1f9d3bf1c, []int{81} } func (m *RemoveImageRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5662,7 +5797,7 @@ type RemoveImageResponse struct { func (m *RemoveImageResponse) Reset() { *m = RemoveImageResponse{} } func (*RemoveImageResponse) ProtoMessage() {} func (*RemoveImageResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{80} + return fileDescriptor_00212fb1f9d3bf1c, []int{82} } func (m *RemoveImageResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5702,7 +5837,7 @@ type NetworkConfig struct { func (m *NetworkConfig) Reset() { *m = NetworkConfig{} } func (*NetworkConfig) ProtoMessage() {} func (*NetworkConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{81} + return fileDescriptor_00212fb1f9d3bf1c, []int{83} } func (m *NetworkConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5747,7 +5882,7 @@ type RuntimeConfig struct { func (m *RuntimeConfig) Reset() { *m = RuntimeConfig{} } func (*RuntimeConfig) ProtoMessage() {} func (*RuntimeConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{82} + return fileDescriptor_00212fb1f9d3bf1c, []int{84} } func (m *RuntimeConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5792,7 +5927,7 @@ type UpdateRuntimeConfigRequest struct { func (m *UpdateRuntimeConfigRequest) Reset() { *m = UpdateRuntimeConfigRequest{} } func (*UpdateRuntimeConfigRequest) ProtoMessage() {} func (*UpdateRuntimeConfigRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{83} + return fileDescriptor_00212fb1f9d3bf1c, []int{85} } func (m *UpdateRuntimeConfigRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5836,7 +5971,7 @@ type UpdateRuntimeConfigResponse struct { func (m *UpdateRuntimeConfigResponse) Reset() { *m = UpdateRuntimeConfigResponse{} } func (*UpdateRuntimeConfigResponse) ProtoMessage() {} func (*UpdateRuntimeConfigResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{84} + return fileDescriptor_00212fb1f9d3bf1c, []int{86} } func (m *UpdateRuntimeConfigResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5894,7 +6029,7 @@ type RuntimeCondition struct { func (m *RuntimeCondition) Reset() { *m = RuntimeCondition{} } func (*RuntimeCondition) ProtoMessage() {} func (*RuntimeCondition) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{85} + return fileDescriptor_00212fb1f9d3bf1c, []int{87} } func (m *RuntimeCondition) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5962,7 +6097,7 @@ type RuntimeStatus struct { func (m *RuntimeStatus) Reset() { *m = RuntimeStatus{} } func (*RuntimeStatus) ProtoMessage() {} func (*RuntimeStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{86} + return fileDescriptor_00212fb1f9d3bf1c, []int{88} } func (m *RuntimeStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6008,7 +6143,7 @@ type StatusRequest struct { func (m *StatusRequest) Reset() { *m = StatusRequest{} } func (*StatusRequest) ProtoMessage() {} func (*StatusRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{87} + return fileDescriptor_00212fb1f9d3bf1c, []int{89} } func (m *StatusRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6059,7 +6194,7 @@ type StatusResponse struct { func (m *StatusResponse) Reset() { *m = StatusResponse{} } func (*StatusResponse) ProtoMessage() {} func (*StatusResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{88} + return fileDescriptor_00212fb1f9d3bf1c, []int{90} } func (m *StatusResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6110,7 +6245,7 @@ type ImageFsInfoRequest struct { func (m *ImageFsInfoRequest) Reset() { *m = ImageFsInfoRequest{} } func (*ImageFsInfoRequest) ProtoMessage() {} func (*ImageFsInfoRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{89} + return fileDescriptor_00212fb1f9d3bf1c, []int{91} } func (m *ImageFsInfoRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6150,7 +6285,7 @@ type UInt64Value struct { func (m *UInt64Value) Reset() { *m = UInt64Value{} } func (*UInt64Value) ProtoMessage() {} func (*UInt64Value) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{90} + return fileDescriptor_00212fb1f9d3bf1c, []int{92} } func (m *UInt64Value) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6197,7 +6332,7 @@ type FilesystemIdentifier struct { func (m *FilesystemIdentifier) Reset() { *m = FilesystemIdentifier{} } func (*FilesystemIdentifier) ProtoMessage() {} func (*FilesystemIdentifier) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{91} + return fileDescriptor_00212fb1f9d3bf1c, []int{93} } func (m *FilesystemIdentifier) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6254,7 +6389,7 @@ type FilesystemUsage struct { func (m *FilesystemUsage) Reset() { *m = FilesystemUsage{} } func (*FilesystemUsage) ProtoMessage() {} func (*FilesystemUsage) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{92} + return fileDescriptor_00212fb1f9d3bf1c, []int{94} } func (m *FilesystemUsage) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6321,7 +6456,7 @@ type ImageFsInfoResponse struct { func (m *ImageFsInfoResponse) Reset() { *m = ImageFsInfoResponse{} } func (*ImageFsInfoResponse) ProtoMessage() {} func (*ImageFsInfoResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{93} + return fileDescriptor_00212fb1f9d3bf1c, []int{95} } func (m *ImageFsInfoResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6367,7 +6502,7 @@ type ContainerStatsRequest struct { func (m *ContainerStatsRequest) Reset() { *m = ContainerStatsRequest{} } func (*ContainerStatsRequest) ProtoMessage() {} func (*ContainerStatsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{94} + return fileDescriptor_00212fb1f9d3bf1c, []int{96} } func (m *ContainerStatsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6413,7 +6548,7 @@ type ContainerStatsResponse struct { func (m *ContainerStatsResponse) Reset() { *m = ContainerStatsResponse{} } func (*ContainerStatsResponse) ProtoMessage() {} func (*ContainerStatsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{95} + return fileDescriptor_00212fb1f9d3bf1c, []int{97} } func (m *ContainerStatsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6459,7 +6594,7 @@ type ListContainerStatsRequest struct { func (m *ListContainerStatsRequest) Reset() { *m = ListContainerStatsRequest{} } func (*ListContainerStatsRequest) ProtoMessage() {} func (*ListContainerStatsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{96} + return fileDescriptor_00212fb1f9d3bf1c, []int{98} } func (m *ListContainerStatsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6513,7 +6648,7 @@ type ContainerStatsFilter struct { func (m *ContainerStatsFilter) Reset() { *m = ContainerStatsFilter{} } func (*ContainerStatsFilter) ProtoMessage() {} func (*ContainerStatsFilter) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{97} + return fileDescriptor_00212fb1f9d3bf1c, []int{99} } func (m *ContainerStatsFilter) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6573,7 +6708,7 @@ type ListContainerStatsResponse struct { func (m *ListContainerStatsResponse) Reset() { *m = ListContainerStatsResponse{} } func (*ListContainerStatsResponse) ProtoMessage() {} func (*ListContainerStatsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{98} + return fileDescriptor_00212fb1f9d3bf1c, []int{100} } func (m *ListContainerStatsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6629,7 +6764,7 @@ type ContainerAttributes struct { func (m *ContainerAttributes) Reset() { *m = ContainerAttributes{} } func (*ContainerAttributes) ProtoMessage() {} func (*ContainerAttributes) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{99} + return fileDescriptor_00212fb1f9d3bf1c, []int{101} } func (m *ContainerAttributes) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6703,7 +6838,7 @@ type ContainerStats struct { func (m *ContainerStats) Reset() { *m = ContainerStats{} } func (*ContainerStats) ProtoMessage() {} func (*ContainerStats) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{100} + return fileDescriptor_00212fb1f9d3bf1c, []int{102} } func (m *ContainerStats) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6773,7 +6908,7 @@ type CpuUsage struct { func (m *CpuUsage) Reset() { *m = CpuUsage{} } func (*CpuUsage) ProtoMessage() {} func (*CpuUsage) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{101} + return fileDescriptor_00212fb1f9d3bf1c, []int{103} } func (m *CpuUsage) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6829,7 +6964,7 @@ type MemoryUsage struct { func (m *MemoryUsage) Reset() { *m = MemoryUsage{} } func (*MemoryUsage) ProtoMessage() {} func (*MemoryUsage) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{102} + return fileDescriptor_00212fb1f9d3bf1c, []int{104} } func (m *MemoryUsage) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6882,7 +7017,7 @@ type ReopenContainerLogRequest struct { func (m *ReopenContainerLogRequest) Reset() { *m = ReopenContainerLogRequest{} } func (*ReopenContainerLogRequest) ProtoMessage() {} func (*ReopenContainerLogRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{103} + return fileDescriptor_00212fb1f9d3bf1c, []int{105} } func (m *ReopenContainerLogRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6926,7 +7061,7 @@ type ReopenContainerLogResponse struct { func (m *ReopenContainerLogResponse) Reset() { *m = ReopenContainerLogResponse{} } func (*ReopenContainerLogResponse) ProtoMessage() {} func (*ReopenContainerLogResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{104} + return fileDescriptor_00212fb1f9d3bf1c, []int{106} } func (m *ReopenContainerLogResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7010,6 +7145,8 @@ func init() { proto.RegisterType((*Capability)(nil), "runtime.v1.Capability") proto.RegisterType((*LinuxContainerSecurityContext)(nil), "runtime.v1.LinuxContainerSecurityContext") proto.RegisterType((*LinuxContainerConfig)(nil), "runtime.v1.LinuxContainerConfig") + proto.RegisterType((*WindowsSandboxSecurityContext)(nil), "runtime.v1.WindowsSandboxSecurityContext") + proto.RegisterType((*WindowsPodSandboxConfig)(nil), "runtime.v1.WindowsPodSandboxConfig") proto.RegisterType((*WindowsContainerSecurityContext)(nil), "runtime.v1.WindowsContainerSecurityContext") proto.RegisterType((*WindowsContainerConfig)(nil), "runtime.v1.WindowsContainerConfig") proto.RegisterType((*WindowsContainerResources)(nil), "runtime.v1.WindowsContainerResources") @@ -7096,319 +7233,323 @@ func init() { func init() { proto.RegisterFile("api.proto", fileDescriptor_00212fb1f9d3bf1c) } var fileDescriptor_00212fb1f9d3bf1c = []byte{ - // 4994 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x5c, 0xcd, 0x73, 0x1b, 0xc9, - 0x75, 0xe7, 0x00, 0x20, 0x09, 0x3c, 0x10, 0x20, 0xd8, 0xa2, 0x44, 0x08, 0x94, 0x28, 0x6a, 0xb4, - 0xab, 0xcf, 0x5d, 0xee, 0xae, 0xb4, 0x1f, 0x5a, 0x79, 0xbf, 0x20, 0x92, 0x2b, 0x61, 0x2d, 0x81, - 0xf0, 0x80, 0x94, 0xbd, 0x76, 0xca, 0x93, 0x11, 0xa6, 0x09, 0x8e, 0x05, 0xcc, 0x8c, 0x67, 0x06, - 0x92, 0xe8, 0x53, 0xce, 0x39, 0xe5, 0x14, 0x57, 0xa5, 0x52, 0x95, 0x63, 0x0e, 0x3e, 0x38, 0x97, - 0xa4, 0x7c, 0x71, 0x4e, 0x39, 0xb8, 0x5c, 0xe5, 0x2a, 0xe7, 0x90, 0xaa, 0x3d, 0xa4, 0x2a, 0xf6, - 0xe6, 0x96, 0x43, 0x4e, 0xfe, 0x03, 0x5c, 0xfd, 0x35, 0x33, 0x3d, 0x33, 0x18, 0x92, 0x5a, 0xad, - 0x77, 0x4f, 0x44, 0xbf, 0x7e, 0xef, 0xf5, 0xeb, 0xee, 0xd7, 0xaf, 0x5f, 0xff, 0xba, 0x87, 0x50, - 0x31, 0x5c, 0x6b, 0xc3, 0xf5, 0x9c, 0xc0, 0x41, 0xe0, 0x4d, 0xec, 0xc0, 0x1a, 0xe3, 0x8d, 0xa7, - 0x6f, 0xb5, 0x5e, 0x1f, 0x5a, 0xc1, 0xc1, 0xe4, 0xf1, 0xc6, 0xc0, 0x19, 0xbf, 0x31, 0x74, 0x86, - 0xce, 0x1b, 0x94, 0xe5, 0xf1, 0x64, 0x9f, 0x96, 0x68, 0x81, 0xfe, 0x62, 0xa2, 0xea, 0x75, 0xa8, - 0x3f, 0xc2, 0x9e, 0x6f, 0x39, 0xb6, 0x86, 0x7f, 0x3a, 0xc1, 0x7e, 0x80, 0x9a, 0x30, 0xff, 0x94, - 0x51, 0x9a, 0xca, 0xba, 0x72, 0xb5, 0xa2, 0x89, 0xa2, 0xfa, 0xcf, 0x0a, 0x2c, 0x86, 0xcc, 0xbe, - 0xeb, 0xd8, 0x3e, 0x9e, 0xce, 0x8d, 0x2e, 0xc2, 0x02, 0x37, 0x4b, 0xb7, 0x8d, 0x31, 0x6e, 0x16, - 0x68, 0x75, 0x95, 0xd3, 0xba, 0xc6, 0x18, 0xa3, 0x2b, 0xb0, 0x28, 0x58, 0x84, 0x92, 0x22, 0xe5, - 0xaa, 0x73, 0x32, 0x6f, 0x0d, 0x6d, 0xc0, 0x29, 0xc1, 0x68, 0xb8, 0x56, 0xc8, 0x5c, 0xa2, 0xcc, - 0x4b, 0xbc, 0xaa, 0xed, 0x5a, 0x9c, 0x5f, 0xfd, 0x11, 0x54, 0xb6, 0xba, 0xfd, 0x4d, 0xc7, 0xde, - 0xb7, 0x86, 0xc4, 0x44, 0x1f, 0x7b, 0x44, 0xa6, 0xa9, 0xac, 0x17, 0x89, 0x89, 0xbc, 0x88, 0x5a, - 0x50, 0xf6, 0xb1, 0xe1, 0x0d, 0x0e, 0xb0, 0xdf, 0x2c, 0xd0, 0xaa, 0xb0, 0x4c, 0xa4, 0x1c, 0x37, - 0xb0, 0x1c, 0xdb, 0x6f, 0x16, 0x99, 0x14, 0x2f, 0xaa, 0xff, 0xa8, 0x40, 0xb5, 0xe7, 0x78, 0xc1, - 0x43, 0xc3, 0x75, 0x2d, 0x7b, 0x88, 0xde, 0x84, 0x32, 0x1d, 0xcb, 0x81, 0x33, 0xa2, 0x63, 0x50, - 0xbf, 0xb9, 0xbc, 0x11, 0x4d, 0xc8, 0x46, 0x8f, 0xd7, 0x69, 0x21, 0x17, 0x7a, 0x15, 0xea, 0x03, - 0xc7, 0x0e, 0x0c, 0xcb, 0xc6, 0x9e, 0xee, 0x3a, 0x5e, 0x40, 0x07, 0x67, 0x56, 0xab, 0x85, 0x54, - 0xa2, 0x1f, 0xad, 0x42, 0xe5, 0xc0, 0xf1, 0x03, 0xc6, 0x51, 0xa4, 0x1c, 0x65, 0x42, 0xa0, 0x95, - 0x2b, 0x30, 0x4f, 0x2b, 0x2d, 0x97, 0x0f, 0xc3, 0x1c, 0x29, 0x76, 0x5c, 0xf5, 0xf7, 0x0a, 0xcc, - 0x3e, 0x74, 0x26, 0x76, 0x90, 0x68, 0xc6, 0x08, 0x0e, 0xf8, 0x14, 0xc5, 0x9a, 0x31, 0x82, 0x83, - 0xa8, 0x19, 0xc2, 0xc1, 0x66, 0x89, 0x35, 0x43, 0x2a, 0x5b, 0x50, 0xf6, 0xb0, 0x61, 0x3a, 0xf6, - 0xe8, 0x90, 0x9a, 0x50, 0xd6, 0xc2, 0x32, 0x99, 0x3e, 0x1f, 0x8f, 0x2c, 0x7b, 0xf2, 0x5c, 0xf7, - 0xf0, 0xc8, 0x78, 0x8c, 0x47, 0xd4, 0x94, 0xb2, 0x56, 0xe7, 0x64, 0x8d, 0x51, 0xd1, 0x47, 0x50, - 0x75, 0x3d, 0xc7, 0x35, 0x86, 0x06, 0x19, 0xc1, 0xe6, 0x2c, 0x1d, 0xa4, 0x73, 0xf1, 0x41, 0xa2, - 0x06, 0xf7, 0x22, 0x1e, 0x2d, 0x2e, 0xa0, 0xfe, 0x5a, 0x81, 0x45, 0xe2, 0x30, 0xbe, 0x6b, 0x0c, - 0xf0, 0x0e, 0x9d, 0x06, 0x74, 0x0b, 0xe6, 0x6d, 0x1c, 0x3c, 0x73, 0xbc, 0x27, 0x7c, 0xd0, 0xcf, - 0xc6, 0xf5, 0x85, 0xdc, 0x0f, 0x1d, 0x13, 0x6b, 0x82, 0x13, 0xdd, 0x80, 0xa2, 0x6b, 0x99, 0xb4, - 0x93, 0xb9, 0x02, 0x84, 0x8b, 0x30, 0x5b, 0xee, 0x80, 0xf6, 0x3a, 0x9f, 0xd9, 0x72, 0x07, 0x64, - 0x10, 0x03, 0xc3, 0x1b, 0xe2, 0x40, 0xb7, 0x4c, 0x3e, 0x21, 0x65, 0x46, 0xe8, 0x98, 0xaa, 0x0a, - 0xd0, 0xb1, 0x83, 0x77, 0xdf, 0x7e, 0x64, 0x8c, 0x26, 0x18, 0x2d, 0xc3, 0xec, 0x53, 0xf2, 0x83, - 0xda, 0x5d, 0xd4, 0x58, 0x41, 0xfd, 0x75, 0x09, 0x56, 0x1f, 0x90, 0x41, 0xeb, 0x1b, 0xb6, 0xf9, - 0xd8, 0x79, 0xde, 0xc7, 0x83, 0x89, 0x67, 0x05, 0x87, 0x9b, 0x8e, 0x1d, 0xe0, 0xe7, 0x01, 0xba, - 0x0f, 0x4b, 0xb6, 0x68, 0x56, 0x17, 0x9e, 0x49, 0x34, 0x54, 0x6f, 0xae, 0x66, 0xda, 0xc6, 0xc6, - 0x49, 0x6b, 0xd8, 0x32, 0xc1, 0x47, 0x77, 0xa3, 0x69, 0x13, 0x7a, 0x0a, 0x54, 0x8f, 0xd4, 0xc7, - 0xfe, 0x36, 0xb5, 0x86, 0x6b, 0x11, 0x33, 0x2a, 0x74, 0xbc, 0x0b, 0x64, 0x21, 0xeb, 0x86, 0xaf, - 0x4f, 0x7c, 0xec, 0xd1, 0x31, 0xaa, 0xde, 0x3c, 0x13, 0x97, 0x8f, 0x3a, 0xac, 0x55, 0xbc, 0x89, - 0xdd, 0xf6, 0xf7, 0x7c, 0xec, 0xa1, 0xdb, 0x34, 0x28, 0x10, 0xb9, 0xa1, 0xe7, 0x4c, 0xdc, 0x66, - 0x39, 0x57, 0x10, 0xa8, 0xe0, 0x3d, 0xc2, 0x49, 0x63, 0x05, 0x77, 0x3c, 0xdd, 0x73, 0x9c, 0x60, - 0xdf, 0x17, 0xce, 0x26, 0xc8, 0x1a, 0xa5, 0xa2, 0x37, 0xe0, 0x94, 0x3f, 0x71, 0xdd, 0x11, 0x1e, - 0x63, 0x3b, 0x30, 0x46, 0xac, 0x21, 0xbf, 0x39, 0xbb, 0x5e, 0xbc, 0x5a, 0xd4, 0x50, 0xbc, 0x8a, - 0x2a, 0xf6, 0xd1, 0x1a, 0x80, 0xeb, 0x59, 0x4f, 0xad, 0x11, 0x1e, 0x62, 0xb3, 0x39, 0x47, 0x95, - 0xc6, 0x28, 0xe8, 0x1d, 0x12, 0x3f, 0x06, 0x03, 0x67, 0xec, 0x36, 0x2b, 0xe9, 0xf1, 0x16, 0xf3, - 0xd4, 0xf3, 0x9c, 0x7d, 0x6b, 0x84, 0x35, 0xc1, 0x8b, 0xde, 0x83, 0xb2, 0xe1, 0xba, 0x86, 0x37, - 0x76, 0xbc, 0x26, 0x1c, 0x2d, 0x17, 0x32, 0xa3, 0xb7, 0x61, 0x99, 0xeb, 0xd0, 0x5d, 0x56, 0xc9, - 0x96, 0xe6, 0x3c, 0xf1, 0xaa, 0xbb, 0x85, 0xa6, 0xa2, 0x21, 0x5e, 0xcf, 0x65, 0xc9, 0x42, 0x55, - 0xff, 0x43, 0x81, 0xc5, 0x84, 0x4e, 0xf4, 0x19, 0x2c, 0x08, 0x0d, 0xc1, 0xa1, 0x8b, 0xf9, 0x42, - 0xb9, 0x92, 0x63, 0xc6, 0x06, 0xff, 0xbb, 0x7b, 0xe8, 0x62, 0xba, 0x06, 0x45, 0x01, 0x5d, 0x82, - 0xda, 0xc8, 0x19, 0x18, 0x23, 0x1a, 0x2a, 0x3c, 0xbc, 0xcf, 0x23, 0xc5, 0x42, 0x48, 0xd4, 0xf0, - 0xbe, 0xfa, 0x09, 0x54, 0x63, 0x0a, 0x10, 0x82, 0xba, 0xc6, 0x9a, 0xda, 0xc2, 0xfb, 0xc6, 0x64, - 0x14, 0x34, 0x66, 0x50, 0x1d, 0x60, 0xcf, 0x1e, 0x90, 0xc8, 0x6c, 0x63, 0xb3, 0xa1, 0xa0, 0x1a, - 0x54, 0x1e, 0x08, 0x15, 0x8d, 0x82, 0xfa, 0xf7, 0x05, 0x38, 0x4d, 0x1d, 0xaf, 0xe7, 0x98, 0x7c, - 0x25, 0xf0, 0x30, 0x7e, 0x09, 0x6a, 0x03, 0x3a, 0x97, 0xba, 0x6b, 0x78, 0xd8, 0x0e, 0x78, 0x30, - 0x5b, 0x60, 0xc4, 0x1e, 0xa5, 0x21, 0x0d, 0x1a, 0x3e, 0xef, 0x91, 0x3e, 0x60, 0x2b, 0x87, 0x3b, - 0xb7, 0xd4, 0xeb, 0x9c, 0x85, 0xa6, 0x2d, 0xfa, 0xa9, 0x95, 0x37, 0xef, 0x1f, 0xfa, 0x83, 0x60, - 0xc4, 0x76, 0x82, 0xea, 0xcd, 0x8d, 0x94, 0xaa, 0xa4, 0xb1, 0x1b, 0x7d, 0x26, 0xb0, 0x6d, 0x07, - 0xde, 0xa1, 0x26, 0xc4, 0x5b, 0x77, 0x60, 0x21, 0x5e, 0x81, 0x1a, 0x50, 0x7c, 0x82, 0x0f, 0x79, - 0x47, 0xc8, 0xcf, 0x28, 0x36, 0xb0, 0xd1, 0x65, 0x85, 0x3b, 0x85, 0xdb, 0x8a, 0xea, 0x01, 0x8a, - 0x5a, 0x79, 0x88, 0x03, 0xc3, 0x34, 0x02, 0x03, 0x21, 0x28, 0xd1, 0xcd, 0x95, 0xa9, 0xa0, 0xbf, - 0x89, 0xd6, 0x09, 0x0f, 0x72, 0x15, 0x8d, 0xfc, 0x44, 0xe7, 0xa0, 0x12, 0x46, 0x01, 0xbe, 0xc3, - 0x46, 0x04, 0xb2, 0xd3, 0x19, 0x41, 0x80, 0xc7, 0x6e, 0x40, 0x57, 0x54, 0x4d, 0x13, 0x45, 0xf5, - 0xb7, 0x25, 0x68, 0xa4, 0xe6, 0xe1, 0x0e, 0x94, 0xc7, 0xbc, 0x79, 0x1e, 0x7f, 0xd6, 0xa4, 0xed, - 0x2e, 0x65, 0xa4, 0x16, 0xf2, 0x93, 0xdd, 0x84, 0xcc, 0x73, 0x2c, 0x1f, 0x08, 0xcb, 0xcc, 0xc1, - 0x86, 0xba, 0x69, 0x79, 0x78, 0x10, 0x38, 0xde, 0x21, 0x37, 0x74, 0x61, 0xe4, 0x0c, 0xb7, 0x04, - 0x0d, 0xbd, 0x0d, 0x60, 0xda, 0xbe, 0x4e, 0xfd, 0x67, 0x48, 0xcd, 0xad, 0xde, 0x3c, 0x1d, 0x6f, - 0x3e, 0xdc, 0xf6, 0xb5, 0x8a, 0x69, 0xfb, 0xdc, 0xe4, 0x0f, 0xa0, 0x46, 0xf6, 0x50, 0x7d, 0xcc, - 0x76, 0x6c, 0x16, 0x0c, 0xaa, 0x37, 0x57, 0x64, 0xbb, 0xc3, 0x1d, 0x5d, 0x5b, 0x70, 0xa3, 0x82, - 0x8f, 0x3e, 0x81, 0x39, 0xba, 0x8d, 0xf9, 0xcd, 0x39, 0x2a, 0x76, 0x35, 0xbb, 0xbb, 0x7c, 0xe6, - 0x1f, 0x50, 0x56, 0x36, 0xf1, 0x5c, 0x0e, 0xed, 0x40, 0xd5, 0xb0, 0x6d, 0x27, 0x30, 0x58, 0xb4, - 0x9d, 0xa7, 0x6a, 0x5e, 0xcf, 0x55, 0xd3, 0x8e, 0xf8, 0x99, 0xae, 0xb8, 0x06, 0xf4, 0x1e, 0xcc, - 0xd2, 0x70, 0xcc, 0xe3, 0xe7, 0xc5, 0x23, 0x1d, 0x52, 0x63, 0xfc, 0xad, 0xf7, 0xa1, 0x1a, 0x33, - 0xf0, 0x24, 0x0e, 0xd8, 0xfa, 0x08, 0x1a, 0x49, 0xa3, 0x4e, 0xe4, 0xc0, 0x13, 0x58, 0xd6, 0x26, - 0x76, 0x64, 0x98, 0xc8, 0x37, 0xdf, 0x86, 0x39, 0x3e, 0x9d, 0xcc, 0x9b, 0xce, 0xe5, 0x8d, 0x8b, - 0xc6, 0x79, 0xe3, 0xa9, 0xe3, 0x81, 0x61, 0x9b, 0x23, 0xec, 0xf1, 0x16, 0x45, 0xea, 0x78, 0x9f, - 0x51, 0xd5, 0x0f, 0xe1, 0x74, 0xa2, 0x59, 0x9e, 0xb9, 0xbe, 0x02, 0x75, 0xd7, 0x31, 0x75, 0x9f, - 0x91, 0xc9, 0xb6, 0xcd, 0x03, 0x8a, 0x1b, 0xf2, 0x76, 0x4c, 0x22, 0xde, 0x0f, 0x1c, 0x37, 0x6d, - 0xf6, 0xf1, 0xc4, 0x9b, 0x70, 0x26, 0x29, 0xce, 0x9a, 0x57, 0x3f, 0x86, 0x15, 0x0d, 0x8f, 0x9d, - 0xa7, 0xf8, 0x45, 0x55, 0xb7, 0xa0, 0x99, 0x56, 0xc0, 0x95, 0x7f, 0x0e, 0x2b, 0x11, 0xb5, 0x1f, - 0x18, 0xc1, 0xc4, 0x3f, 0x91, 0x72, 0x9e, 0xd6, 0x3f, 0x76, 0x7c, 0x36, 0x91, 0x65, 0x4d, 0x14, - 0xd5, 0x15, 0x98, 0xed, 0x39, 0x66, 0xa7, 0x87, 0xea, 0x50, 0xb0, 0x5c, 0x2e, 0x5c, 0xb0, 0x5c, - 0x75, 0x10, 0x6f, 0xb3, 0xcb, 0x12, 0x2e, 0xd6, 0x74, 0x92, 0x15, 0xdd, 0x86, 0xba, 0x61, 0x9a, - 0x16, 0x71, 0x24, 0x63, 0xa4, 0x5b, 0x2e, 0xcb, 0xbe, 0xab, 0x37, 0x97, 0x12, 0x53, 0xdf, 0xe9, - 0x69, 0xb5, 0x88, 0xb1, 0xe3, 0xfa, 0xea, 0x5d, 0xa8, 0x84, 0x09, 0x0e, 0xd9, 0x98, 0xe5, 0x04, - 0x26, 0x37, 0x11, 0x0a, 0xf3, 0xf7, 0x6e, 0x6a, 0x87, 0xe1, 0x66, 0xbe, 0x03, 0x10, 0x46, 0x45, - 0x91, 0x5b, 0x9d, 0xce, 0x54, 0xa9, 0xc5, 0x18, 0xd5, 0xff, 0x91, 0xa2, 0x64, 0xac, 0xcb, 0x66, - 0xd8, 0x65, 0x53, 0x8a, 0x9a, 0x85, 0x13, 0x46, 0xcd, 0xb7, 0x60, 0xd6, 0x0f, 0x8c, 0x00, 0xf3, - 0x54, 0x74, 0x35, 0x5b, 0x90, 0x34, 0x8c, 0x35, 0xc6, 0x89, 0xce, 0x03, 0x0c, 0x3c, 0x6c, 0x04, - 0xd8, 0xd4, 0x0d, 0x16, 0xd6, 0x8b, 0x5a, 0x85, 0x53, 0xda, 0x01, 0xfa, 0x30, 0x4a, 0x9e, 0x67, - 0xa9, 0x31, 0x97, 0xb2, 0x75, 0x4a, 0xd3, 0x18, 0xa5, 0xd1, 0x61, 0xf8, 0x99, 0x3b, 0x32, 0xfc, - 0x70, 0x51, 0xc6, 0x1f, 0x0b, 0xa5, 0xf3, 0x79, 0xa1, 0x94, 0x09, 0x1d, 0x27, 0x94, 0x96, 0xf3, - 0x42, 0x29, 0x57, 0x93, 0x1f, 0x4a, 0x33, 0x02, 0x49, 0x25, 0x2b, 0x90, 0x7c, 0x93, 0xa1, 0xf3, - 0x77, 0x0a, 0x34, 0xd3, 0xeb, 0x99, 0xc7, 0xb1, 0xb7, 0x61, 0xce, 0xa7, 0x94, 0xfc, 0xf8, 0xc9, - 0xa5, 0x38, 0x2f, 0xba, 0x0b, 0x25, 0xcb, 0xde, 0x77, 0xf8, 0xc2, 0xdb, 0xc8, 0x95, 0xe1, 0x2d, - 0x6d, 0x74, 0xec, 0x7d, 0x87, 0x8d, 0x20, 0x95, 0x6d, 0xbd, 0x07, 0x95, 0x90, 0x74, 0xa2, 0xfe, - 0x74, 0x60, 0x39, 0xe1, 0xb7, 0xec, 0x64, 0x14, 0x3a, 0xba, 0x72, 0x5c, 0x47, 0x57, 0xff, 0xa4, - 0xc4, 0x17, 0xdf, 0xa7, 0xd6, 0x28, 0xc0, 0x5e, 0x6a, 0xf1, 0xbd, 0x2b, 0xf4, 0xb2, 0x95, 0xb7, - 0x9e, 0xa3, 0x97, 0x1d, 0x3c, 0xf8, 0x2a, 0x7a, 0x04, 0x75, 0xea, 0x76, 0xba, 0x8f, 0x47, 0x34, - 0x01, 0xe1, 0x09, 0xe0, 0x1b, 0xd9, 0x0a, 0x58, 0xeb, 0xcc, 0x6d, 0xfb, 0x5c, 0x82, 0x8d, 0x57, - 0x6d, 0x14, 0xa7, 0xb5, 0x3e, 0x01, 0x94, 0x66, 0x3a, 0xd1, 0x08, 0x3e, 0x24, 0x31, 0xcc, 0x0f, - 0x32, 0x77, 0xd3, 0x7d, 0x6a, 0x46, 0xbe, 0x37, 0x30, 0x53, 0x35, 0xce, 0xab, 0xfe, 0x57, 0x11, - 0x20, 0xaa, 0xfc, 0x96, 0x07, 0xaf, 0x3b, 0x61, 0x10, 0x61, 0x69, 0x9c, 0x9a, 0xad, 0x32, 0x33, - 0x7c, 0x74, 0xe4, 0xf0, 0xc1, 0x12, 0xba, 0x2b, 0x53, 0x14, 0x9c, 0x38, 0x70, 0xcc, 0x7f, 0xdb, - 0x02, 0xc7, 0xa7, 0x70, 0x26, 0xe9, 0x26, 0x3c, 0x6a, 0xbc, 0x06, 0xb3, 0x56, 0x80, 0xc7, 0x0c, - 0x12, 0x4b, 0x9c, 0xc0, 0x63, 0xec, 0x8c, 0x49, 0xfd, 0x85, 0x02, 0x95, 0xce, 0xd8, 0x18, 0xe2, - 0xbe, 0x8b, 0x07, 0xa4, 0x3d, 0x8b, 0x14, 0xb8, 0x0d, 0xac, 0x80, 0xee, 0xcb, 0x43, 0xcb, 0x02, - 0xcb, 0x65, 0xe9, 0x64, 0x2f, 0x34, 0xe4, 0x8f, 0xec, 0x57, 0xee, 0xf5, 0x4d, 0x28, 0x7f, 0x17, - 0x1f, 0xb2, 0x90, 0x72, 0x4c, 0x39, 0xf5, 0x3f, 0x0b, 0xb0, 0x42, 0xb7, 0xae, 0x4d, 0x81, 0x8d, - 0x69, 0xd8, 0x77, 0x26, 0xde, 0x00, 0xfb, 0xd4, 0x1f, 0xdd, 0x89, 0xee, 0x62, 0xcf, 0x72, 0x4c, - 0x8e, 0xda, 0x54, 0x06, 0xee, 0xa4, 0x47, 0x09, 0x68, 0x15, 0x48, 0x41, 0xff, 0xe9, 0xc4, 0xe1, - 0xcb, 0xa3, 0xa8, 0x95, 0x07, 0xee, 0xe4, 0x7b, 0xa4, 0x2c, 0x64, 0xfd, 0x03, 0xc3, 0xc3, 0x3e, - 0x5d, 0x03, 0x4c, 0xb6, 0x4f, 0x09, 0xe8, 0x2d, 0x38, 0x3d, 0xc6, 0x63, 0xc7, 0x3b, 0xd4, 0x47, - 0xd6, 0xd8, 0x0a, 0x74, 0xcb, 0xd6, 0x1f, 0x1f, 0x06, 0xd8, 0xe7, 0x5e, 0x8f, 0x58, 0xe5, 0x03, - 0x52, 0xd7, 0xb1, 0xef, 0x92, 0x1a, 0xa4, 0x42, 0xcd, 0x71, 0xc6, 0xba, 0x3f, 0x70, 0x3c, 0xac, - 0x1b, 0xe6, 0x4f, 0xe8, 0x0e, 0x5e, 0xd4, 0xaa, 0x8e, 0x33, 0xee, 0x13, 0x5a, 0xdb, 0xfc, 0x09, - 0xba, 0x00, 0xd5, 0x81, 0x3b, 0xf1, 0x71, 0xa0, 0x93, 0x3f, 0x74, 0x9b, 0xae, 0x68, 0xc0, 0x48, - 0x9b, 0xee, 0xc4, 0x8f, 0x31, 0x8c, 0x89, 0x13, 0xcc, 0xc7, 0x19, 0x1e, 0xe2, 0x31, 0x05, 0x89, - 0x0e, 0x26, 0x43, 0xec, 0x1a, 0x43, 0xcc, 0x4c, 0x13, 0x7b, 0xad, 0x04, 0x12, 0xdd, 0xe7, 0x2c, - 0xd4, 0x40, 0xad, 0x7e, 0x10, 0x2f, 0x92, 0x64, 0xad, 0x26, 0x31, 0x90, 0x91, 0xa2, 0x0a, 0x7d, - 0xeb, 0x67, 0xc2, 0x79, 0xca, 0x84, 0xd0, 0xb7, 0x7e, 0x46, 0x61, 0x31, 0xda, 0x10, 0x1d, 0xc2, - 0x92, 0xc6, 0x0a, 0xaa, 0x01, 0x35, 0x09, 0x89, 0x22, 0x27, 0x5e, 0x0a, 0x39, 0xf1, 0x13, 0x2f, - 0xf9, 0x4d, 0x68, 0x9e, 0x33, 0x12, 0x33, 0x4a, 0x7f, 0x13, 0x1a, 0xc5, 0x3c, 0xd8, 0x29, 0x92, - 0xfe, 0xa6, 0x4d, 0xe0, 0xa7, 0x1c, 0xa6, 0xac, 0x68, 0xac, 0xa0, 0x9a, 0x00, 0x9b, 0x86, 0x6b, - 0x3c, 0xb6, 0x46, 0x56, 0x70, 0x88, 0xae, 0x41, 0xc3, 0x30, 0x4d, 0x7d, 0x20, 0x28, 0x16, 0x16, - 0xb0, 0xf1, 0xa2, 0x61, 0x9a, 0x9b, 0x31, 0x32, 0xba, 0x01, 0x4b, 0xa6, 0xe7, 0xb8, 0x32, 0x2f, - 0xc3, 0x91, 0x1b, 0xa4, 0x22, 0xce, 0xac, 0xfe, 0xfb, 0x1c, 0x9c, 0x97, 0x1d, 0x2c, 0x89, 0xf0, - 0xdd, 0x81, 0x85, 0x44, 0xab, 0x29, 0x6c, 0x2c, 0xb2, 0x53, 0x93, 0x78, 0x13, 0x18, 0x56, 0x21, - 0x85, 0x61, 0x65, 0xa2, 0x87, 0xc5, 0x97, 0x84, 0x1e, 0x96, 0xbe, 0x22, 0x7a, 0x38, 0xfb, 0xa2, - 0xe8, 0xe1, 0xc2, 0xb1, 0xd1, 0xc3, 0xcb, 0x34, 0x58, 0x8b, 0x16, 0x29, 0xfe, 0xc0, 0x16, 0x45, - 0x2d, 0xd4, 0x6e, 0x8b, 0x1b, 0x89, 0x04, 0xca, 0x38, 0x7f, 0x12, 0x94, 0xb1, 0x3c, 0x15, 0x65, - 0x5c, 0x87, 0x05, 0xdb, 0xd1, 0x6d, 0xfc, 0x4c, 0x27, 0xd3, 0xe2, 0x37, 0xab, 0x6c, 0x8e, 0x6c, - 0xa7, 0x8b, 0x9f, 0xf5, 0x08, 0x05, 0x5d, 0x84, 0x85, 0xb1, 0xe1, 0x3f, 0xc1, 0x26, 0x85, 0xfb, - 0xfc, 0x66, 0x8d, 0x7a, 0x52, 0x95, 0xd1, 0x7a, 0x84, 0x84, 0x5e, 0x85, 0xd0, 0x0e, 0xce, 0x54, - 0xa7, 0x4c, 0x35, 0x41, 0x65, 0x6c, 0x31, 0xc4, 0x72, 0xf1, 0x05, 0x11, 0xcb, 0xc6, 0x49, 0x10, - 0xcb, 0xd7, 0xa1, 0x21, 0x7e, 0x0b, 0xc8, 0x92, 0x25, 0xd1, 0x14, 0xad, 0x5c, 0x14, 0x75, 0x02, - 0x96, 0x9c, 0x06, 0x70, 0x42, 0x2e, 0xc0, 0xf9, 0x4b, 0x05, 0x96, 0xe5, 0x05, 0xc4, 0xd1, 0x9d, - 0x36, 0x54, 0x3c, 0x11, 0xab, 0xf9, 0xa2, 0xb9, 0x94, 0x3a, 0x91, 0xa4, 0xc3, 0xba, 0x16, 0x49, - 0xa1, 0xdd, 0xa9, 0xb0, 0xe1, 0xb5, 0xe9, 0x9a, 0x8e, 0x02, 0x0e, 0x55, 0x0f, 0x2e, 0x7c, 0xdf, - 0xb2, 0x4d, 0xe7, 0x99, 0x3f, 0x75, 0xcd, 0x67, 0xf8, 0xa5, 0x32, 0xc5, 0x2f, 0x07, 0x1e, 0x36, - 0xb1, 0x1d, 0x58, 0xc6, 0x48, 0xf7, 0x5d, 0x3c, 0x10, 0x70, 0x47, 0x44, 0x26, 0x3b, 0xab, 0xfa, - 0xaf, 0x0a, 0x9c, 0x49, 0x36, 0xca, 0xc7, 0x69, 0x33, 0x3d, 0x4e, 0xaf, 0xc6, 0x7b, 0x97, 0x14, - 0xcb, 0x1c, 0xa9, 0x47, 0x53, 0x47, 0xea, 0x46, 0x9e, 0xae, 0x23, 0xc7, 0xea, 0x17, 0x0a, 0x9c, - 0x9d, 0x6a, 0x40, 0x62, 0x17, 0x55, 0x92, 0xbb, 0x28, 0xdf, 0x81, 0x07, 0xce, 0xc4, 0x0e, 0x62, - 0x3b, 0xf0, 0x26, 0xbd, 0x05, 0x63, 0x5b, 0x9d, 0x3e, 0x36, 0x9e, 0x5b, 0xe3, 0xc9, 0x98, 0x6f, - 0xc1, 0x44, 0xdd, 0x43, 0x46, 0x79, 0x81, 0x3d, 0x58, 0x6d, 0xc3, 0x52, 0x68, 0x65, 0x2e, 0x16, - 0x1b, 0xc3, 0x56, 0x0b, 0x32, 0xb6, 0x6a, 0xc3, 0xdc, 0x16, 0x7e, 0x6a, 0x0d, 0xf0, 0x4b, 0xb9, - 0xa6, 0x5b, 0x87, 0xaa, 0x8b, 0xbd, 0xb1, 0xe5, 0xfb, 0x61, 0x64, 0xaf, 0x68, 0x71, 0x92, 0xfa, - 0xcb, 0x39, 0x58, 0x4c, 0x7a, 0xc4, 0xfb, 0x29, 0x28, 0xf7, 0xbc, 0xb4, 0xdb, 0x24, 0xbb, 0x18, - 0x4b, 0xeb, 0x6f, 0x88, 0x1c, 0xb0, 0x90, 0x86, 0x49, 0xc2, 0x3c, 0x4f, 0xa4, 0x86, 0x4d, 0x98, - 0x1f, 0x38, 0xe3, 0xb1, 0x61, 0x9b, 0xe2, 0x2e, 0x95, 0x17, 0xc9, 0x98, 0x19, 0xde, 0x90, 0x0c, - 0x35, 0x21, 0xd3, 0xdf, 0x64, 0xc2, 0x9e, 0x39, 0xde, 0x13, 0xcb, 0xa6, 0x60, 0x30, 0xdd, 0x1d, - 0x2a, 0x1a, 0x70, 0xd2, 0x96, 0xe5, 0xa1, 0xab, 0x50, 0xc2, 0xf6, 0x53, 0x91, 0xbd, 0x4b, 0x97, - 0xad, 0x22, 0xef, 0xd3, 0x28, 0x07, 0xba, 0x06, 0x73, 0x63, 0xe2, 0x04, 0x02, 0x6f, 0x58, 0x4a, - 0xdd, 0x39, 0x6a, 0x9c, 0x01, 0xbd, 0x06, 0xf3, 0x26, 0x9d, 0x0f, 0x91, 0xe8, 0x20, 0x09, 0x56, - 0xa6, 0x55, 0x9a, 0x60, 0x41, 0x1f, 0x87, 0x67, 0x90, 0x4a, 0xfa, 0x08, 0x91, 0x18, 0xe6, 0xcc, - 0x83, 0x48, 0x57, 0xce, 0x96, 0x81, 0x6a, 0x79, 0x2d, 0x4f, 0x4b, 0xfe, 0x69, 0xe4, 0x2c, 0x94, - 0x47, 0xce, 0x90, 0x39, 0x47, 0x95, 0x5d, 0xc4, 0x8f, 0x9c, 0x21, 0xf5, 0x8d, 0x65, 0x72, 0x02, - 0x33, 0x2d, 0x9b, 0x6e, 0x97, 0x65, 0x8d, 0x15, 0xc8, 0x92, 0xa2, 0x3f, 0x74, 0xc7, 0x1e, 0xe0, - 0x66, 0x8d, 0x56, 0x55, 0x28, 0x65, 0xc7, 0x1e, 0xd0, 0xbc, 0x39, 0x08, 0x0e, 0x9b, 0x75, 0x4a, - 0x27, 0x3f, 0xc9, 0x21, 0x9a, 0x81, 0x3e, 0x8b, 0xe9, 0x43, 0x74, 0x56, 0x5c, 0x16, 0x98, 0xcf, - 0x07, 0x30, 0xff, 0x8c, 0x2d, 0x6c, 0xbe, 0xa9, 0xa8, 0x79, 0x81, 0x82, 0xcb, 0x0a, 0x91, 0x6f, - 0xf2, 0xf0, 0xf4, 0x2b, 0x05, 0xce, 0x6c, 0xd2, 0x53, 0x67, 0x2c, 0x22, 0x9d, 0x04, 0x44, 0xbd, - 0x15, 0x22, 0xdb, 0x19, 0xf0, 0x64, 0xb2, 0xc7, 0x02, 0xd8, 0xde, 0x84, 0xba, 0x50, 0xcb, 0x85, - 0x8b, 0xc7, 0x80, 0xc5, 0x6b, 0x7e, 0xbc, 0xa8, 0x7e, 0x00, 0x2b, 0x29, 0xcb, 0xf9, 0xc1, 0xef, - 0x22, 0x2c, 0x44, 0xd1, 0x26, 0x34, 0xbc, 0x1a, 0xd2, 0x3a, 0xa6, 0x7a, 0x07, 0x4e, 0xf7, 0x03, - 0xc3, 0x0b, 0x52, 0xdd, 0x3e, 0x86, 0x2c, 0x05, 0xbc, 0x65, 0x59, 0x8e, 0x49, 0xf7, 0x61, 0xb9, - 0x1f, 0x38, 0xee, 0x0b, 0x28, 0x25, 0xf1, 0x83, 0xf4, 0xdc, 0x99, 0x88, 0xe8, 0x2e, 0x8a, 0xea, - 0x0a, 0x83, 0xe7, 0xd3, 0xad, 0x7d, 0x07, 0xce, 0x30, 0x74, 0xfc, 0x45, 0x3a, 0x71, 0x56, 0x60, - 0xf3, 0x69, 0xbd, 0xf7, 0xe0, 0x54, 0xb4, 0xa9, 0x45, 0xc8, 0xd5, 0x9b, 0x32, 0x72, 0xd5, 0xca, - 0x9c, 0x69, 0x09, 0xb8, 0xfa, 0x79, 0x21, 0x16, 0x8f, 0xa7, 0xe0, 0x56, 0xef, 0xc8, 0xb8, 0xd5, - 0x85, 0xe9, 0x5a, 0x25, 0xd8, 0x2a, 0xed, 0x9d, 0xc5, 0x0c, 0xef, 0xdc, 0x4b, 0x81, 0x5b, 0xa5, - 0x34, 0x16, 0x98, 0xb0, 0xf0, 0x2f, 0x82, 0x6d, 0x3d, 0x60, 0xd8, 0x56, 0xd8, 0x74, 0x78, 0x75, - 0x71, 0x2b, 0x81, 0x6d, 0xad, 0xe6, 0x58, 0x1a, 0x42, 0x5b, 0x3f, 0x2f, 0x41, 0x25, 0xac, 0x4b, - 0x8d, 0x70, 0x7a, 0xa8, 0x0a, 0x19, 0x43, 0x15, 0xdf, 0x27, 0x8b, 0x2f, 0xb8, 0x4f, 0x96, 0x8e, - 0xb1, 0x4f, 0xae, 0x42, 0x85, 0xfe, 0xa0, 0xf7, 0xeb, 0x6c, 0xdf, 0x2b, 0x53, 0x82, 0x86, 0xf7, - 0x23, 0x17, 0x9b, 0x3b, 0xa6, 0x8b, 0x25, 0x70, 0xb4, 0xf9, 0x24, 0x8e, 0xf6, 0x7e, 0xb8, 0x87, - 0xb1, 0x0d, 0xef, 0x62, 0xa6, 0xc6, 0xcc, 0xdd, 0x2b, 0x81, 0xf5, 0x54, 0xd2, 0x58, 0x4f, 0x24, - 0x9f, 0x8f, 0xf5, 0x7c, 0x83, 0xf1, 0x7d, 0x87, 0x81, 0x63, 0x71, 0x3f, 0xe3, 0x31, 0xf2, 0x1d, - 0x80, 0x30, 0x1c, 0x08, 0x84, 0xec, 0x74, 0x66, 0xef, 0xb4, 0x18, 0xa3, 0xba, 0x07, 0x67, 0xa4, - 0x89, 0x88, 0x2e, 0xdd, 0x8e, 0x17, 0xe3, 0xa6, 0xdc, 0xb8, 0x7d, 0x31, 0x1b, 0x8b, 0x14, 0x53, - 0xae, 0x97, 0xde, 0x4f, 0x21, 0xb4, 0xc7, 0xf6, 0xd0, 0x37, 0x65, 0x80, 0xf6, 0xc4, 0x7e, 0x95, - 0xc2, 0x67, 0x69, 0x66, 0x61, 0x78, 0xbc, 0x9a, 0xa1, 0x53, 0x15, 0x4e, 0x69, 0xd3, 0x7c, 0x7c, - 0xdf, 0xb2, 0x2d, 0xff, 0x80, 0xd5, 0xcf, 0xb1, 0x7c, 0x5c, 0x90, 0xda, 0x14, 0x25, 0xc2, 0xcf, - 0xad, 0x40, 0x1f, 0x38, 0x26, 0xa6, 0x5e, 0x3b, 0xab, 0x95, 0x09, 0x61, 0xd3, 0x31, 0x71, 0xb4, - 0x9e, 0xca, 0x27, 0x5d, 0x4f, 0x95, 0xc4, 0x7a, 0x3a, 0x03, 0x73, 0x1e, 0x36, 0x7c, 0xc7, 0x66, - 0xe7, 0x4e, 0x8d, 0x97, 0xc8, 0x44, 0x8c, 0xb1, 0xef, 0x93, 0x36, 0x78, 0x22, 0xc5, 0x8b, 0xb1, - 0xa4, 0x6f, 0x21, 0x27, 0xe9, 0xcb, 0xb9, 0xbc, 0x4a, 0x24, 0x7d, 0xb5, 0x9c, 0xa4, 0xef, 0x58, - 0x77, 0x57, 0x51, 0x7a, 0x5b, 0x3f, 0x2a, 0xbd, 0x8d, 0xe7, 0x87, 0x8b, 0x52, 0x7e, 0xf8, 0x4d, - 0x2e, 0xc1, 0xdf, 0x2a, 0xb0, 0x92, 0x5a, 0x32, 0x7c, 0x11, 0xde, 0x4a, 0xdc, 0x6b, 0xad, 0xe6, - 0x8c, 0x53, 0x78, 0xad, 0xd5, 0x96, 0xae, 0xb5, 0x5e, 0xcf, 0x13, 0x79, 0xe9, 0xb7, 0x5a, 0x7f, - 0x28, 0xc0, 0x85, 0x3d, 0xd7, 0x4c, 0x64, 0x5d, 0xfc, 0x08, 0x7d, 0xfc, 0x40, 0xf0, 0xbe, 0xc8, - 0xb3, 0x0b, 0xc7, 0x87, 0x32, 0x78, 0xaa, 0xfd, 0x71, 0x94, 0x6a, 0x17, 0x4f, 0x72, 0xbe, 0x17, - 0x52, 0xe8, 0xc7, 0xb2, 0x83, 0xb2, 0x84, 0xe0, 0x83, 0xb8, 0x92, 0x23, 0x3a, 0xf8, 0x35, 0x23, - 0xfb, 0x2a, 0xac, 0x4f, 0x37, 0x80, 0x67, 0x68, 0x7f, 0x0d, 0x8b, 0xdb, 0xcf, 0xf1, 0xa0, 0x7f, - 0x68, 0x0f, 0x4e, 0x30, 0xea, 0x0d, 0x28, 0x0e, 0xc6, 0x26, 0x47, 0x6f, 0xc9, 0xcf, 0x78, 0xd2, - 0x59, 0x94, 0x93, 0x4e, 0x1d, 0x1a, 0x51, 0x0b, 0xdc, 0x5b, 0xcf, 0x10, 0x6f, 0x35, 0x09, 0x33, - 0x51, 0xbe, 0xa0, 0xf1, 0x12, 0xa7, 0x63, 0x8f, 0x3d, 0x4f, 0x61, 0x74, 0xec, 0x79, 0x72, 0x90, - 0x2b, 0xca, 0x41, 0x4e, 0xfd, 0x07, 0x05, 0xaa, 0xa4, 0x85, 0xaf, 0x64, 0x3f, 0x3f, 0xc1, 0x15, - 0xa3, 0x13, 0x5c, 0x78, 0x10, 0x2c, 0xc5, 0x0f, 0x82, 0x91, 0xe5, 0xb3, 0x94, 0x9c, 0xb6, 0x7c, - 0x2e, 0xa4, 0x63, 0xcf, 0x53, 0xd7, 0x61, 0x81, 0xd9, 0xc6, 0x7b, 0xde, 0x80, 0xe2, 0xc4, 0x1b, - 0x89, 0xf9, 0x9b, 0x78, 0x23, 0xf5, 0x6f, 0x15, 0xa8, 0xb5, 0x83, 0xc0, 0x18, 0x1c, 0x9c, 0xa0, - 0x03, 0xa1, 0x71, 0x85, 0xb8, 0x71, 0xe9, 0x4e, 0x44, 0xe6, 0x96, 0xa6, 0x98, 0x3b, 0x2b, 0x99, - 0xab, 0x42, 0x5d, 0xd8, 0x32, 0xd5, 0xe0, 0x2e, 0xa0, 0x9e, 0xe3, 0x05, 0x9f, 0x3a, 0xde, 0x33, - 0xc3, 0x33, 0x4f, 0x76, 0xc8, 0x43, 0x50, 0xe2, 0x2f, 0xb8, 0x8b, 0x57, 0x67, 0x35, 0xfa, 0x5b, - 0xbd, 0x02, 0xa7, 0x24, 0x7d, 0x53, 0x1b, 0xbe, 0x03, 0x55, 0xba, 0x69, 0xf1, 0xfc, 0xff, 0x46, - 0xfc, 0x62, 0xed, 0x88, 0xcd, 0x4d, 0xdd, 0x82, 0x25, 0x92, 0xbe, 0x50, 0x7a, 0x18, 0x5f, 0xde, - 0x48, 0xa4, 0xc8, 0x2b, 0x29, 0x15, 0x89, 0xf4, 0xf8, 0xbf, 0x15, 0x98, 0xa5, 0xf4, 0x54, 0x4a, - 0xb1, 0x0a, 0x15, 0x0f, 0xbb, 0x8e, 0x1e, 0x18, 0xc3, 0xf0, 0x75, 0x3c, 0x21, 0xec, 0x1a, 0x43, - 0x8a, 0x55, 0xd3, 0x4a, 0xd3, 0x1a, 0x62, 0x3f, 0x10, 0x4f, 0xe4, 0xab, 0x84, 0xb6, 0xc5, 0x48, - 0x64, 0x60, 0xe8, 0x3d, 0x4f, 0x89, 0x5e, 0xe7, 0xd0, 0xdf, 0xe8, 0x2a, 0x7b, 0x9a, 0x98, 0x0f, - 0xf8, 0xd3, 0x27, 0x8b, 0x2d, 0x28, 0x27, 0x90, 0xfa, 0xb0, 0x8c, 0xae, 0x41, 0x89, 0x22, 0xa0, - 0xf3, 0x79, 0xa3, 0x44, 0x59, 0xd4, 0x8f, 0x01, 0xc5, 0x07, 0x89, 0x4f, 0xc4, 0x35, 0x98, 0xa3, - 0x63, 0x28, 0x72, 0xbb, 0xa5, 0x94, 0x0a, 0x8d, 0x33, 0xa8, 0x3f, 0x02, 0xc4, 0x74, 0x4a, 0xf9, - 0xdc, 0x49, 0x26, 0x2a, 0x27, 0xb3, 0xfb, 0x37, 0x05, 0x4e, 0x49, 0xda, 0xb9, 0x7d, 0x57, 0x64, - 0xf5, 0x19, 0xe6, 0x71, 0xd5, 0x1f, 0x4a, 0xdb, 0xdd, 0xb5, 0xb4, 0x19, 0x5f, 0xd3, 0x56, 0xf7, - 0x3b, 0x05, 0xa0, 0x3d, 0x09, 0x0e, 0x38, 0x8e, 0x18, 0x9f, 0x2c, 0x25, 0x31, 0x59, 0x2d, 0x28, - 0xbb, 0x86, 0xef, 0x3f, 0x73, 0x3c, 0x71, 0xb6, 0x0a, 0xcb, 0x14, 0xfd, 0x9b, 0x04, 0x07, 0xe2, - 0x8e, 0x8e, 0xfc, 0x46, 0xaf, 0x42, 0x9d, 0x7d, 0x9e, 0xa1, 0x1b, 0xa6, 0xe9, 0x61, 0xdf, 0xe7, - 0x97, 0x75, 0x35, 0x46, 0x6d, 0x33, 0x22, 0x61, 0xb3, 0x28, 0xee, 0x1d, 0x1c, 0xea, 0x81, 0xf3, - 0x04, 0xdb, 0xfc, 0xbc, 0x54, 0x13, 0xd4, 0x5d, 0x42, 0x64, 0x17, 0x26, 0x43, 0xcb, 0x0f, 0x3c, - 0xc1, 0x26, 0xae, 0x7d, 0x38, 0x95, 0xb2, 0xa9, 0xff, 0xa2, 0x40, 0xa3, 0x37, 0x19, 0x8d, 0xd8, - 0xe0, 0xbe, 0xc8, 0x24, 0x5f, 0xe7, 0x5d, 0x29, 0xa4, 0x5d, 0x3b, 0x1a, 0x28, 0xde, 0xc5, 0x97, - 0x02, 0xf1, 0xbc, 0x09, 0x4b, 0x31, 0x8b, 0xb9, 0xe3, 0x48, 0x09, 0xaf, 0x22, 0x27, 0xbc, 0x6a, - 0x1b, 0x10, 0x43, 0x35, 0x5e, 0xb8, 0x97, 0xea, 0x69, 0x38, 0x25, 0xa9, 0xe0, 0x5b, 0xee, 0x75, - 0xa8, 0xf1, 0x97, 0x62, 0xdc, 0x21, 0xce, 0x42, 0x99, 0x84, 0xce, 0x81, 0x65, 0x8a, 0x8b, 0xda, - 0x79, 0xd7, 0x31, 0x37, 0x2d, 0xd3, 0x53, 0xbf, 0x07, 0x35, 0xfe, 0x26, 0x9c, 0xf3, 0x7e, 0x02, - 0x75, 0xfe, 0xae, 0x4c, 0x97, 0xde, 0x81, 0xca, 0x5f, 0x5c, 0xc4, 0xd5, 0x6b, 0x35, 0x3b, 0x5e, - 0x54, 0x7f, 0x0c, 0x2d, 0x96, 0x15, 0x48, 0x8a, 0x45, 0x07, 0x3f, 0x01, 0xf1, 0x20, 0x23, 0x47, - 0xbf, 0x2c, 0x59, 0xf3, 0xe2, 0x45, 0xf5, 0x3c, 0xac, 0x66, 0xea, 0xe7, 0xbd, 0x77, 0xa1, 0x11, - 0x55, 0xb0, 0xc7, 0x8a, 0xe1, 0xed, 0xb3, 0x12, 0xbb, 0x7d, 0x3e, 0x13, 0x26, 0xb4, 0x05, 0xb1, - 0x43, 0xd1, 0x9c, 0x35, 0x3a, 0x88, 0x14, 0xa7, 0x1d, 0x44, 0x4a, 0xd2, 0x41, 0x44, 0x7d, 0x18, - 0x8e, 0x21, 0x3f, 0x0e, 0x7e, 0x40, 0x0f, 0xac, 0xac, 0x6d, 0x11, 0xd4, 0xce, 0x65, 0xf7, 0x8f, - 0x31, 0x69, 0x31, 0x7e, 0xf5, 0x1a, 0xd4, 0xe4, 0xf0, 0x16, 0x8b, 0x58, 0x4a, 0x2a, 0x62, 0xd5, - 0x13, 0xc1, 0xea, 0xad, 0x44, 0x9e, 0x9e, 0x35, 0xae, 0x89, 0x2c, 0xfd, 0xb6, 0x14, 0xb6, 0x5e, - 0x91, 0x2e, 0x19, 0xbf, 0xa6, 0x88, 0xb5, 0xcc, 0xe3, 0xf8, 0xa7, 0x3e, 0x91, 0xe7, 0x1d, 0x55, - 0x2f, 0x41, 0x75, 0x6f, 0xda, 0x97, 0x39, 0x25, 0xf1, 0x34, 0xe4, 0x5d, 0x58, 0xfe, 0xd4, 0x1a, - 0x61, 0xff, 0xd0, 0x0f, 0xf0, 0xb8, 0x43, 0xc3, 0xcb, 0xbe, 0x85, 0x3d, 0xb4, 0x06, 0x40, 0x0f, - 0x57, 0xae, 0x63, 0x85, 0x5f, 0x23, 0xc4, 0x28, 0xea, 0x17, 0x0a, 0x2c, 0x46, 0x82, 0x7b, 0xf4, - 0x08, 0x79, 0x0e, 0x2a, 0xa4, 0xa7, 0x7e, 0x60, 0x8c, 0x5d, 0x71, 0x8f, 0x15, 0x12, 0xd0, 0x3b, - 0x30, 0xbb, 0xef, 0x0b, 0x10, 0x2a, 0x01, 0xb1, 0x67, 0x99, 0xa0, 0x95, 0xf6, 0xfd, 0x8e, 0x89, - 0xde, 0x05, 0x98, 0xf8, 0xd8, 0xe4, 0xb7, 0x56, 0xc5, 0xf4, 0xc6, 0xbf, 0x17, 0xbf, 0x4e, 0x27, - 0xac, 0xec, 0x25, 0xc9, 0x6d, 0xa8, 0x5a, 0xb6, 0x63, 0x62, 0x7a, 0xf9, 0x68, 0x72, 0x84, 0x6a, - 0xaa, 0x20, 0x30, 0xde, 0x3d, 0x1f, 0x9b, 0xaa, 0xce, 0xf7, 0x2d, 0x31, 0x9a, 0xdc, 0x15, 0xee, - 0xc3, 0x12, 0x0b, 0x3f, 0xfb, 0xa1, 0xb1, 0xc2, 0x1b, 0x57, 0xb3, 0xfb, 0x42, 0x47, 0x45, 0x6b, - 0x58, 0x3c, 0x33, 0x11, 0x42, 0xea, 0x1d, 0x38, 0x2d, 0x9d, 0xd7, 0x4e, 0x70, 0x80, 0x52, 0x3f, - 0x4b, 0xc0, 0x30, 0x91, 0xab, 0x72, 0xa8, 0x43, 0x78, 0xea, 0x74, 0xa8, 0xc3, 0x67, 0x50, 0x87, - 0xaf, 0xee, 0xc1, 0x59, 0x09, 0x23, 0x92, 0x6c, 0xb9, 0x9d, 0x48, 0xb6, 0xd6, 0xa7, 0xeb, 0x4b, - 0x64, 0x5d, 0xff, 0xa7, 0xc0, 0x72, 0x16, 0xc3, 0x0b, 0xe2, 0x93, 0x3f, 0x9c, 0xf2, 0x4e, 0xf1, - 0xd6, 0x51, 0x06, 0xfd, 0x45, 0xf0, 0xdc, 0x2e, 0xb4, 0xb2, 0xc6, 0x30, 0x3d, 0x27, 0xc5, 0xe3, - 0xcd, 0xc9, 0x9f, 0x0a, 0x31, 0x0c, 0xbe, 0x1d, 0x04, 0x9e, 0xf5, 0x78, 0x42, 0xdc, 0xf9, 0x25, - 0x62, 0x62, 0x9b, 0x21, 0xd2, 0xc3, 0x06, 0xf2, 0x46, 0xa6, 0x60, 0xd4, 0x76, 0x26, 0xda, 0xa3, - 0x65, 0x1d, 0xa6, 0xdf, 0x3c, 0x4a, 0xd3, 0xb7, 0x16, 0x2e, 0xfd, 0x7f, 0x05, 0xea, 0xf2, 0x84, - 0xa0, 0x8f, 0x01, 0x8c, 0xd0, 0x72, 0xbe, 0x08, 0x2e, 0x1c, 0xd1, 0x41, 0x2d, 0x26, 0x82, 0x2e, - 0x43, 0x71, 0xe0, 0x4e, 0xf8, 0xec, 0x48, 0x17, 0xb9, 0x9b, 0xee, 0x84, 0xc5, 0x06, 0xc2, 0x40, - 0x8e, 0x35, 0xec, 0x16, 0x3e, 0x2b, 0xba, 0x3d, 0xa4, 0x35, 0x8c, 0x9b, 0xb3, 0xa1, 0xbb, 0x50, - 0x7f, 0xe6, 0x59, 0x81, 0xf1, 0x78, 0x84, 0xf5, 0x91, 0x71, 0x88, 0x3d, 0x1e, 0xdd, 0x72, 0xc3, - 0x50, 0x4d, 0x88, 0x3c, 0x20, 0x12, 0xea, 0x73, 0x28, 0x0b, 0x2b, 0x8e, 0x88, 0xdb, 0x5d, 0x58, - 0x99, 0x10, 0x36, 0x9d, 0xbe, 0xc9, 0xb3, 0x0d, 0xdb, 0xd1, 0x7d, 0x4c, 0x36, 0x58, 0xf1, 0x61, - 0xc2, 0xd4, 0xa0, 0xba, 0x4c, 0xe5, 0x36, 0x1d, 0x0f, 0x77, 0x0d, 0xdb, 0xe9, 0x33, 0x21, 0xd5, - 0x85, 0x6a, 0xac, 0x53, 0x47, 0x34, 0xbe, 0x09, 0x4b, 0xe2, 0xba, 0xdc, 0xc7, 0x01, 0xdf, 0x04, - 0x8e, 0x68, 0x76, 0x91, 0x4b, 0xf4, 0x71, 0xc0, 0x1e, 0x34, 0x7c, 0x04, 0x67, 0x35, 0xec, 0xb8, - 0xd8, 0x0e, 0x67, 0xec, 0x81, 0x33, 0x3c, 0x41, 0xcc, 0x3d, 0x07, 0xad, 0x2c, 0x79, 0xb6, 0xc6, - 0xaf, 0x5f, 0x86, 0xb2, 0xf8, 0x0a, 0x1a, 0xcd, 0x43, 0x71, 0x77, 0xb3, 0xd7, 0x98, 0x21, 0x3f, - 0xf6, 0xb6, 0x7a, 0x0d, 0x05, 0x95, 0xa1, 0xd4, 0xdf, 0xdc, 0xed, 0x35, 0x0a, 0xd7, 0xc7, 0xd0, - 0x48, 0x7e, 0x08, 0x8c, 0x56, 0xe0, 0x54, 0x4f, 0xdb, 0xe9, 0xb5, 0xef, 0xb5, 0x77, 0x3b, 0x3b, - 0x5d, 0xbd, 0xa7, 0x75, 0x1e, 0xb5, 0x77, 0xb7, 0x1b, 0x33, 0xe8, 0x22, 0x9c, 0x8f, 0x57, 0xdc, - 0xdf, 0xe9, 0xef, 0xea, 0xbb, 0x3b, 0xfa, 0xe6, 0x4e, 0x77, 0xb7, 0xdd, 0xe9, 0x6e, 0x6b, 0x0d, - 0x05, 0x9d, 0x87, 0xb3, 0x71, 0x96, 0xbb, 0x9d, 0xad, 0x8e, 0xb6, 0xbd, 0x49, 0x7e, 0xb7, 0x1f, - 0x34, 0x0a, 0xd7, 0x3f, 0x84, 0x9a, 0xf4, 0x25, 0x2f, 0x31, 0xa9, 0xb7, 0xb3, 0xd5, 0x98, 0x41, - 0x35, 0xa8, 0xc4, 0xf5, 0x94, 0xa1, 0xd4, 0xdd, 0xd9, 0xda, 0x6e, 0x14, 0x10, 0xc0, 0xdc, 0x6e, - 0x5b, 0xbb, 0xb7, 0xbd, 0xdb, 0x28, 0x5e, 0xbf, 0x03, 0x8b, 0x89, 0x07, 0xcc, 0x68, 0x09, 0x6a, - 0xfd, 0x76, 0x77, 0xeb, 0xee, 0xce, 0x0f, 0x74, 0x6d, 0xbb, 0xbd, 0xf5, 0x79, 0x63, 0x06, 0x2d, - 0x43, 0x43, 0x90, 0xba, 0x3b, 0xbb, 0x8c, 0xaa, 0x5c, 0x7f, 0x92, 0x58, 0x4b, 0x18, 0x9d, 0x86, - 0xa5, 0xb0, 0x49, 0x7d, 0x53, 0xdb, 0x6e, 0xef, 0x6e, 0x13, 0x4b, 0x24, 0xb2, 0xb6, 0xd7, 0xed, - 0x76, 0xba, 0xf7, 0x1a, 0x0a, 0xd1, 0x1a, 0x91, 0xb7, 0x7f, 0xd0, 0x21, 0xcc, 0x05, 0x99, 0x79, - 0xaf, 0xfb, 0xdd, 0xee, 0xce, 0xf7, 0xbb, 0x8d, 0xe2, 0xcd, 0x5f, 0x2d, 0x86, 0xdf, 0x61, 0xf6, - 0xb1, 0x47, 0xdf, 0x9c, 0x6c, 0xc1, 0xbc, 0xf8, 0xb6, 0x5e, 0x8a, 0xb8, 0xf2, 0xff, 0x02, 0x68, - 0xad, 0x66, 0xd6, 0xf1, 0xbc, 0x77, 0x06, 0x3d, 0xa2, 0x79, 0x68, 0xec, 0xe1, 0xf8, 0x7a, 0x22, - 0xf7, 0x4b, 0xbd, 0x4f, 0x6f, 0x5d, 0xcc, 0xe1, 0x08, 0xf5, 0x7e, 0x4e, 0x92, 0xcc, 0xf8, 0x57, - 0x53, 0xe8, 0xa2, 0x9c, 0x23, 0x66, 0x7c, 0x90, 0xd5, 0x52, 0xf3, 0x58, 0x42, 0xd5, 0x3a, 0x34, - 0x92, 0x5f, 0x4d, 0x21, 0x09, 0x62, 0x9d, 0xf2, 0x51, 0x56, 0xeb, 0x95, 0x7c, 0xa6, 0x78, 0x03, - 0xa9, 0x8f, 0x81, 0x2e, 0xe5, 0x7f, 0x5e, 0x91, 0xd1, 0xc0, 0xb4, 0x6f, 0x30, 0xd8, 0xe0, 0xc8, - 0x6f, 0xba, 0x51, 0xe2, 0xfb, 0x9b, 0x8c, 0xcf, 0x02, 0xe4, 0xc1, 0xc9, 0x7e, 0x12, 0xae, 0xce, - 0xa0, 0xbf, 0x82, 0xc5, 0xc4, 0xb3, 0x01, 0x24, 0x09, 0x66, 0xbf, 0x86, 0x68, 0x5d, 0xca, 0xe5, - 0x91, 0x67, 0x35, 0xfe, 0x34, 0x20, 0x39, 0xab, 0x19, 0x4f, 0x0e, 0x92, 0xb3, 0x9a, 0xf9, 0xb2, - 0x80, 0x3a, 0xa2, 0xf4, 0x0c, 0x40, 0x76, 0xc4, 0xac, 0x67, 0x07, 0xad, 0x8b, 0x39, 0x1c, 0xf1, - 0x01, 0x49, 0x3c, 0x04, 0x90, 0x07, 0x24, 0xfb, 0x89, 0x41, 0xeb, 0x52, 0x2e, 0x4f, 0x72, 0x26, - 0xa3, 0x0b, 0xc8, 0xf4, 0x4c, 0xa6, 0x2e, 0xc1, 0xd3, 0x33, 0x99, 0xbe, 0xbf, 0xe4, 0x33, 0x99, - 0xb8, 0x32, 0x54, 0x73, 0x2f, 0x43, 0xb2, 0x66, 0x32, 0xfb, 0xc2, 0x44, 0x9d, 0x41, 0xcf, 0xa0, - 0x39, 0x0d, 0x86, 0x47, 0x37, 0x4e, 0x70, 0x5b, 0xd0, 0x7a, 0xed, 0x78, 0xcc, 0x61, 0xc3, 0x18, - 0x50, 0x7a, 0x9b, 0x41, 0xaf, 0xca, 0xc3, 0x3d, 0x65, 0x1b, 0x6b, 0x5d, 0x3e, 0x8a, 0x2d, 0x6c, - 0xe6, 0x1e, 0x94, 0x05, 0xc0, 0x8f, 0xa4, 0x10, 0x98, 0xb8, 0x58, 0x68, 0x9d, 0xcb, 0xae, 0x0c, - 0x15, 0x7d, 0x07, 0x4a, 0x84, 0x8a, 0x56, 0x92, 0x7c, 0x42, 0x41, 0x33, 0x5d, 0x11, 0x0a, 0xb7, - 0x61, 0x8e, 0x21, 0xd7, 0x48, 0x3a, 0x52, 0x4b, 0xc8, 0x7a, 0xab, 0x95, 0x55, 0x15, 0xaa, 0xe8, - 0xb1, 0xff, 0x54, 0xc2, 0x81, 0x68, 0xb4, 0x96, 0xfc, 0xe0, 0x59, 0x46, 0xbc, 0x5b, 0x17, 0xa6, - 0xd6, 0xc7, 0x7d, 0x36, 0x91, 0x04, 0x5e, 0xcc, 0xc9, 0xd8, 0xb3, 0x7c, 0x36, 0xfb, 0x1c, 0xc0, - 0x26, 0x37, 0x7d, 0x4e, 0x90, 0x27, 0x77, 0xea, 0x59, 0x4c, 0x9e, 0xdc, 0xe9, 0xc7, 0x0d, 0x75, - 0x06, 0x1d, 0xc0, 0xa9, 0x0c, 0x34, 0x07, 0x5d, 0x4e, 0xbb, 0x62, 0x16, 0x9c, 0xd4, 0xba, 0x72, - 0x24, 0x5f, 0x7c, 0x02, 0xf9, 0xda, 0x3b, 0x9b, 0x05, 0x71, 0x64, 0x4c, 0x60, 0x72, 0xa5, 0xdd, - 0xfc, 0xa7, 0x22, 0x2c, 0x30, 0x14, 0x8e, 0x6f, 0xdc, 0x0f, 0x01, 0x22, 0x40, 0x1b, 0x9d, 0x4f, - 0xf6, 0x5a, 0xba, 0x0d, 0x68, 0xad, 0x4d, 0xab, 0x8e, 0x3b, 0x48, 0x0c, 0x28, 0x96, 0x1d, 0x24, - 0x8d, 0x7b, 0xcb, 0x0e, 0x92, 0x81, 0x30, 0xab, 0x33, 0xe8, 0x33, 0xa8, 0x84, 0xb8, 0x24, 0x92, - 0x11, 0xcd, 0x04, 0xc0, 0xda, 0x3a, 0x3f, 0xa5, 0x36, 0x6e, 0x5d, 0x0c, 0x6e, 0x94, 0xad, 0x4b, - 0x43, 0x99, 0xb2, 0x75, 0x59, 0x38, 0x65, 0xd4, 0x5f, 0x06, 0x5c, 0x64, 0xf4, 0x57, 0xc2, 0x87, - 0x32, 0xfa, 0x2b, 0x23, 0x1e, 0xea, 0xcc, 0xdd, 0xf5, 0xdf, 0xfc, 0x71, 0x4d, 0xf9, 0xe2, 0x8f, - 0x6b, 0x33, 0x7f, 0xf3, 0xe5, 0x9a, 0xf2, 0x9b, 0x2f, 0xd7, 0x94, 0xdf, 0x7f, 0xb9, 0xa6, 0xfc, - 0xe1, 0xcb, 0x35, 0xe5, 0xef, 0xfe, 0x77, 0x6d, 0xe6, 0x87, 0x85, 0xa7, 0x6f, 0x3d, 0x9e, 0xa3, - 0xff, 0xf7, 0xe7, 0xd6, 0x9f, 0x03, 0x00, 0x00, 0xff, 0xff, 0x01, 0xa1, 0x97, 0xfb, 0xb1, 0x49, + // 5058 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x7c, 0xcf, 0x73, 0x1b, 0xc9, + 0x75, 0x3f, 0x07, 0x00, 0x49, 0xe0, 0x81, 0x00, 0xc1, 0x16, 0x25, 0x42, 0xa0, 0x44, 0x89, 0xa3, + 0x5d, 0xfd, 0xdc, 0xe5, 0xee, 0x4a, 0xbb, 0x5a, 0xad, 0xbc, 0xbf, 0x20, 0x92, 0x2b, 0x61, 0x2d, + 0x81, 0xf0, 0x80, 0x94, 0xbd, 0xf6, 0xb7, 0x3c, 0xdf, 0x11, 0xa6, 0x09, 0x8e, 0x05, 0xcc, 0x8c, + 0x67, 0x06, 0x92, 0xe8, 0x53, 0xae, 0xc9, 0x29, 0x55, 0xa9, 0xc4, 0x55, 0xa9, 0x54, 0xe5, 0x98, + 0x83, 0x0f, 0xce, 0x25, 0x29, 0x5f, 0x9c, 0x53, 0x0e, 0xae, 0x54, 0xb9, 0xca, 0x39, 0xa4, 0x6a, + 0x0f, 0xa9, 0x8a, 0xbd, 0xb9, 0xe5, 0x90, 0x93, 0xff, 0x80, 0x54, 0xff, 0x9a, 0x99, 0x9e, 0x19, + 0x0c, 0x49, 0xed, 0xae, 0x77, 0x4f, 0x44, 0xbf, 0x7e, 0xfd, 0xfa, 0x75, 0xf7, 0xeb, 0xd7, 0xaf, + 0x3f, 0xaf, 0x87, 0x50, 0x31, 0x5c, 0x6b, 0xc3, 0xf5, 0x9c, 0xc0, 0x41, 0xe0, 0x4d, 0xec, 0xc0, + 0x1a, 0xe3, 0x8d, 0x67, 0x6f, 0xb5, 0x5e, 0x1f, 0x5a, 0xc1, 0xc1, 0xe4, 0xc9, 0xc6, 0xc0, 0x19, + 0xbf, 0x31, 0x74, 0x86, 0xce, 0x1b, 0x94, 0xe5, 0xc9, 0x64, 0x9f, 0x96, 0x68, 0x81, 0xfe, 0x62, + 0x4d, 0xd5, 0xeb, 0x50, 0x7f, 0x8c, 0x3d, 0xdf, 0x72, 0x6c, 0x0d, 0xff, 0x74, 0x82, 0xfd, 0x00, + 0x35, 0x61, 0xfe, 0x19, 0xa3, 0x34, 0x95, 0x8b, 0xca, 0xd5, 0x8a, 0x26, 0x8a, 0xea, 0x3f, 0x28, + 0xb0, 0x18, 0x32, 0xfb, 0xae, 0x63, 0xfb, 0x78, 0x3a, 0x37, 0x5a, 0x87, 0x05, 0xae, 0x96, 0x6e, + 0x1b, 0x63, 0xdc, 0x2c, 0xd0, 0xea, 0x2a, 0xa7, 0x75, 0x8d, 0x31, 0x46, 0x57, 0x60, 0x51, 0xb0, + 0x08, 0x21, 0x45, 0xca, 0x55, 0xe7, 0x64, 0xde, 0x1b, 0xda, 0x80, 0x53, 0x82, 0xd1, 0x70, 0xad, + 0x90, 0xb9, 0x44, 0x99, 0x97, 0x78, 0x55, 0xdb, 0xb5, 0x38, 0xbf, 0xfa, 0x23, 0xa8, 0x6c, 0x75, + 0xfb, 0x9b, 0x8e, 0xbd, 0x6f, 0x0d, 0x89, 0x8a, 0x3e, 0xf6, 0x48, 0x9b, 0xa6, 0x72, 0xb1, 0x48, + 0x54, 0xe4, 0x45, 0xd4, 0x82, 0xb2, 0x8f, 0x0d, 0x6f, 0x70, 0x80, 0xfd, 0x66, 0x81, 0x56, 0x85, + 0x65, 0xd2, 0xca, 0x71, 0x03, 0xcb, 0xb1, 0xfd, 0x66, 0x91, 0xb5, 0xe2, 0x45, 0xf5, 0xef, 0x14, + 0xa8, 0xf6, 0x1c, 0x2f, 0x78, 0x64, 0xb8, 0xae, 0x65, 0x0f, 0xd1, 0x9b, 0x50, 0xa6, 0x73, 0x39, + 0x70, 0x46, 0x74, 0x0e, 0xea, 0x37, 0x97, 0x37, 0xa2, 0x05, 0xd9, 0xe8, 0xf1, 0x3a, 0x2d, 0xe4, + 0x42, 0xaf, 0x42, 0x7d, 0xe0, 0xd8, 0x81, 0x61, 0xd9, 0xd8, 0xd3, 0x5d, 0xc7, 0x0b, 0xe8, 0xe4, + 0xcc, 0x6a, 0xb5, 0x90, 0x4a, 0xe4, 0xa3, 0x55, 0xa8, 0x1c, 0x38, 0x7e, 0xc0, 0x38, 0x8a, 0x94, + 0xa3, 0x4c, 0x08, 0xb4, 0x72, 0x05, 0xe6, 0x69, 0xa5, 0xe5, 0xf2, 0x69, 0x98, 0x23, 0xc5, 0x8e, + 0xab, 0xfe, 0x4e, 0x81, 0xd9, 0x47, 0xce, 0xc4, 0x0e, 0x12, 0xdd, 0x18, 0xc1, 0x01, 0x5f, 0xa2, + 0x58, 0x37, 0x46, 0x70, 0x10, 0x75, 0x43, 0x38, 0xd8, 0x2a, 0xb1, 0x6e, 0x48, 0x65, 0x0b, 0xca, + 0x1e, 0x36, 0x4c, 0xc7, 0x1e, 0x1d, 0x52, 0x15, 0xca, 0x5a, 0x58, 0x26, 0xcb, 0xe7, 0xe3, 0x91, + 0x65, 0x4f, 0x5e, 0xe8, 0x1e, 0x1e, 0x19, 0x4f, 0xf0, 0x88, 0xaa, 0x52, 0xd6, 0xea, 0x9c, 0xac, + 0x31, 0x2a, 0xfa, 0x10, 0xaa, 0xae, 0xe7, 0xb8, 0xc6, 0xd0, 0x20, 0x33, 0xd8, 0x9c, 0xa5, 0x93, + 0x74, 0x2e, 0x3e, 0x49, 0x54, 0xe1, 0x5e, 0xc4, 0xa3, 0xc5, 0x1b, 0xa8, 0xbf, 0x56, 0x60, 0x91, + 0x18, 0x8c, 0xef, 0x1a, 0x03, 0xbc, 0x43, 0x97, 0x01, 0xdd, 0x82, 0x79, 0x1b, 0x07, 0xcf, 0x1d, + 0xef, 0x29, 0x9f, 0xf4, 0xb3, 0x71, 0x79, 0x21, 0xf7, 0x23, 0xc7, 0xc4, 0x9a, 0xe0, 0x44, 0x37, + 0xa0, 0xe8, 0x5a, 0x26, 0x1d, 0x64, 0x6e, 0x03, 0xc2, 0x45, 0x98, 0x2d, 0x77, 0x40, 0x47, 0x9d, + 0xcf, 0x6c, 0xb9, 0x03, 0x32, 0x89, 0x81, 0xe1, 0x0d, 0x71, 0xa0, 0x5b, 0x26, 0x5f, 0x90, 0x32, + 0x23, 0x74, 0x4c, 0x55, 0x05, 0xe8, 0xd8, 0xc1, 0xed, 0xb7, 0x1f, 0x1b, 0xa3, 0x09, 0x46, 0xcb, + 0x30, 0xfb, 0x8c, 0xfc, 0xa0, 0x7a, 0x17, 0x35, 0x56, 0x50, 0x7f, 0x5d, 0x82, 0xd5, 0x87, 0x64, + 0xd2, 0xfa, 0x86, 0x6d, 0x3e, 0x71, 0x5e, 0xf4, 0xf1, 0x60, 0xe2, 0x59, 0xc1, 0xe1, 0xa6, 0x63, + 0x07, 0xf8, 0x45, 0x80, 0x1e, 0xc0, 0x92, 0x2d, 0xba, 0xd5, 0x85, 0x65, 0x12, 0x09, 0xd5, 0x9b, + 0xab, 0x99, 0xba, 0xb1, 0x79, 0xd2, 0x1a, 0xb6, 0x4c, 0xf0, 0xd1, 0xbd, 0x68, 0xd9, 0x84, 0x9c, + 0x02, 0x95, 0x23, 0x8d, 0xb1, 0xbf, 0x4d, 0xb5, 0xe1, 0x52, 0xc4, 0x8a, 0x0a, 0x19, 0xb7, 0x81, + 0x6c, 0x64, 0xdd, 0xf0, 0xf5, 0x89, 0x8f, 0x3d, 0x3a, 0x47, 0xd5, 0x9b, 0x67, 0xe2, 0xed, 0xa3, + 0x01, 0x6b, 0x15, 0x6f, 0x62, 0xb7, 0xfd, 0x3d, 0x1f, 0x7b, 0xe8, 0x0e, 0x75, 0x0a, 0xa4, 0xdd, + 0xd0, 0x73, 0x26, 0x6e, 0xb3, 0x9c, 0xdb, 0x10, 0x68, 0xc3, 0xfb, 0x84, 0x93, 0xfa, 0x0a, 0x6e, + 0x78, 0xba, 0xe7, 0x38, 0xc1, 0xbe, 0x2f, 0x8c, 0x4d, 0x90, 0x35, 0x4a, 0x45, 0x6f, 0xc0, 0x29, + 0x7f, 0xe2, 0xba, 0x23, 0x3c, 0xc6, 0x76, 0x60, 0x8c, 0x58, 0x47, 0x7e, 0x73, 0xf6, 0x62, 0xf1, + 0x6a, 0x51, 0x43, 0xf1, 0x2a, 0x2a, 0xd8, 0x47, 0x6b, 0x00, 0xae, 0x67, 0x3d, 0xb3, 0x46, 0x78, + 0x88, 0xcd, 0xe6, 0x1c, 0x15, 0x1a, 0xa3, 0xa0, 0x77, 0x88, 0xff, 0x18, 0x0c, 0x9c, 0xb1, 0xdb, + 0xac, 0xa4, 0xe7, 0x5b, 0xac, 0x53, 0xcf, 0x73, 0xf6, 0xad, 0x11, 0xd6, 0x04, 0x2f, 0x7a, 0x17, + 0xca, 0x86, 0xeb, 0x1a, 0xde, 0xd8, 0xf1, 0x9a, 0x70, 0x74, 0xbb, 0x90, 0x19, 0xbd, 0x0d, 0xcb, + 0x5c, 0x86, 0xee, 0xb2, 0x4a, 0xb6, 0x35, 0xe7, 0x89, 0x55, 0xdd, 0x2b, 0x34, 0x15, 0x0d, 0xf1, + 0x7a, 0xde, 0x96, 0x6c, 0x54, 0xf5, 0x5f, 0x15, 0x58, 0x4c, 0xc8, 0x44, 0x9f, 0xc2, 0x82, 0x90, + 0x10, 0x1c, 0xba, 0x98, 0x6f, 0x94, 0x2b, 0x39, 0x6a, 0x6c, 0xf0, 0xbf, 0xbb, 0x87, 0x2e, 0xa6, + 0x7b, 0x50, 0x14, 0xd0, 0x25, 0xa8, 0x8d, 0x9c, 0x81, 0x31, 0xa2, 0xae, 0xc2, 0xc3, 0xfb, 0xdc, + 0x53, 0x2c, 0x84, 0x44, 0x0d, 0xef, 0xab, 0x1f, 0x43, 0x35, 0x26, 0x00, 0x21, 0xa8, 0x6b, 0xac, + 0xab, 0x2d, 0xbc, 0x6f, 0x4c, 0x46, 0x41, 0x63, 0x06, 0xd5, 0x01, 0xf6, 0xec, 0x01, 0xf1, 0xcc, + 0x36, 0x36, 0x1b, 0x0a, 0xaa, 0x41, 0xe5, 0xa1, 0x10, 0xd1, 0x28, 0xa8, 0x7f, 0x53, 0x80, 0xd3, + 0xd4, 0xf0, 0x7a, 0x8e, 0xc9, 0x77, 0x02, 0x77, 0xe3, 0x97, 0xa0, 0x36, 0xa0, 0x6b, 0xa9, 0xbb, + 0x86, 0x87, 0xed, 0x80, 0x3b, 0xb3, 0x05, 0x46, 0xec, 0x51, 0x1a, 0xd2, 0xa0, 0xe1, 0xf3, 0x11, + 0xe9, 0x03, 0xb6, 0x73, 0xb8, 0x71, 0x4b, 0xa3, 0xce, 0xd9, 0x68, 0xda, 0xa2, 0x9f, 0xda, 0x79, + 0xf3, 0xfe, 0xa1, 0x3f, 0x08, 0x46, 0xec, 0x24, 0xa8, 0xde, 0xdc, 0x48, 0x89, 0x4a, 0x2a, 0xbb, + 0xd1, 0x67, 0x0d, 0xb6, 0xed, 0xc0, 0x3b, 0xd4, 0x44, 0xf3, 0xd6, 0x5d, 0x58, 0x88, 0x57, 0xa0, + 0x06, 0x14, 0x9f, 0xe2, 0x43, 0x3e, 0x10, 0xf2, 0x33, 0xf2, 0x0d, 0x6c, 0x76, 0x59, 0xe1, 0x6e, + 0xe1, 0x8e, 0xa2, 0x7a, 0x80, 0xa2, 0x5e, 0x1e, 0xe1, 0xc0, 0x30, 0x8d, 0xc0, 0x40, 0x08, 0x4a, + 0xf4, 0x70, 0x65, 0x22, 0xe8, 0x6f, 0x22, 0x75, 0xc2, 0x9d, 0x5c, 0x45, 0x23, 0x3f, 0xd1, 0x39, + 0xa8, 0x84, 0x5e, 0x80, 0x9f, 0xb0, 0x11, 0x81, 0x9c, 0x74, 0x46, 0x10, 0xe0, 0xb1, 0x1b, 0xd0, + 0x1d, 0x55, 0xd3, 0x44, 0x51, 0xfd, 0xf3, 0x59, 0x68, 0xa4, 0xd6, 0xe1, 0x2e, 0x94, 0xc7, 0xbc, + 0x7b, 0xee, 0x7f, 0xd6, 0xa4, 0xe3, 0x2e, 0xa5, 0xa4, 0x16, 0xf2, 0x93, 0xd3, 0x84, 0xac, 0x73, + 0x2c, 0x1e, 0x08, 0xcb, 0xcc, 0xc0, 0x86, 0xba, 0x69, 0x79, 0x78, 0x10, 0x38, 0xde, 0x21, 0x57, + 0x74, 0x61, 0xe4, 0x0c, 0xb7, 0x04, 0x0d, 0xbd, 0x0d, 0x60, 0xda, 0xbe, 0x4e, 0xed, 0x67, 0x48, + 0xd5, 0xad, 0xde, 0x3c, 0x1d, 0xef, 0x3e, 0x3c, 0xf6, 0xb5, 0x8a, 0x69, 0xfb, 0x5c, 0xe5, 0xf7, + 0xa1, 0x46, 0xce, 0x50, 0x7d, 0xcc, 0x4e, 0x6c, 0xe6, 0x0c, 0xaa, 0x37, 0x57, 0x64, 0xbd, 0xc3, + 0x13, 0x5d, 0x5b, 0x70, 0xa3, 0x82, 0x8f, 0x3e, 0x86, 0x39, 0x7a, 0x8c, 0xf9, 0xcd, 0x39, 0xda, + 0xec, 0x6a, 0xf6, 0x70, 0xf9, 0xca, 0x3f, 0xa4, 0xac, 0x6c, 0xe1, 0x79, 0x3b, 0xb4, 0x03, 0x55, + 0xc3, 0xb6, 0x9d, 0xc0, 0x60, 0xde, 0x76, 0x9e, 0x8a, 0x79, 0x3d, 0x57, 0x4c, 0x3b, 0xe2, 0x67, + 0xb2, 0xe2, 0x12, 0xd0, 0xbb, 0x30, 0x4b, 0xdd, 0x31, 0xf7, 0x9f, 0xeb, 0x47, 0x1a, 0xa4, 0xc6, + 0xf8, 0xd1, 0x07, 0x30, 0xff, 0xdc, 0xb2, 0x4d, 0xe7, 0xb9, 0xcf, 0x7d, 0xd9, 0xa5, 0x78, 0xd3, + 0xef, 0xb3, 0xaa, 0x54, 0x63, 0xd1, 0xa6, 0xf5, 0x1e, 0x54, 0x63, 0xe3, 0x3b, 0x89, 0xfd, 0xb6, + 0x3e, 0x84, 0x46, 0x72, 0x4c, 0x27, 0xb2, 0xff, 0x09, 0x2c, 0x6b, 0x13, 0x3b, 0x52, 0x4d, 0x84, + 0xab, 0x6f, 0xc3, 0x1c, 0xb7, 0x06, 0x66, 0x8c, 0xe7, 0xf2, 0xa6, 0x55, 0xe3, 0xbc, 0xf1, 0xc8, + 0xf3, 0xc0, 0xb0, 0xcd, 0x11, 0xf6, 0x78, 0x8f, 0x22, 0xf2, 0x7c, 0xc0, 0xa8, 0xea, 0x07, 0x70, + 0x3a, 0xd1, 0x2d, 0x0f, 0x7c, 0x5f, 0x81, 0xba, 0xeb, 0x98, 0xba, 0xcf, 0xc8, 0xe4, 0xd4, 0xe7, + 0xfe, 0xc8, 0x0d, 0x79, 0x3b, 0x26, 0x69, 0xde, 0x0f, 0x1c, 0x37, 0xad, 0xf6, 0xf1, 0x9a, 0x37, + 0xe1, 0x4c, 0xb2, 0x39, 0xeb, 0x5e, 0xfd, 0x08, 0x56, 0x34, 0x3c, 0x76, 0x9e, 0xe1, 0x97, 0x15, + 0xdd, 0x82, 0x66, 0x5a, 0x00, 0x17, 0xfe, 0x19, 0xac, 0x44, 0xd4, 0x7e, 0x60, 0x04, 0x13, 0xff, + 0x44, 0xc2, 0xf9, 0xad, 0xe0, 0x89, 0xe3, 0xb3, 0x85, 0x2c, 0x6b, 0xa2, 0xa8, 0xae, 0xc0, 0x6c, + 0xcf, 0x31, 0x3b, 0x3d, 0x54, 0x87, 0x82, 0xe5, 0xf2, 0xc6, 0x05, 0xcb, 0x55, 0x07, 0xf1, 0x3e, + 0xbb, 0x2c, 0x5e, 0x63, 0x5d, 0x27, 0x59, 0xd1, 0x1d, 0xa8, 0x1b, 0xa6, 0x69, 0x11, 0x43, 0x32, + 0x46, 0xba, 0xe5, 0xb2, 0xe0, 0xbd, 0x7a, 0x73, 0x29, 0xb1, 0xf4, 0x9d, 0x9e, 0x56, 0x8b, 0x18, + 0x3b, 0xae, 0xaf, 0xde, 0x83, 0x4a, 0x18, 0x1f, 0x91, 0x73, 0x5d, 0x8e, 0x7f, 0x72, 0xe3, 0xa8, + 0x30, 0xfc, 0xef, 0xa6, 0x0e, 0x28, 0xae, 0xe6, 0x3b, 0x00, 0xa1, 0x53, 0x15, 0xa1, 0xd9, 0xe9, + 0x4c, 0x91, 0x5a, 0x8c, 0x51, 0xfd, 0xaf, 0x52, 0xdc, 0xc9, 0xc6, 0x86, 0x6c, 0x86, 0x43, 0x36, + 0x25, 0xa7, 0x5b, 0x38, 0xa1, 0xd3, 0x7d, 0x0b, 0x66, 0xfd, 0xc0, 0x08, 0x30, 0x8f, 0x64, 0x57, + 0xb3, 0x1b, 0x92, 0x8e, 0xb1, 0xc6, 0x38, 0xd1, 0x79, 0x80, 0x81, 0x87, 0x8d, 0x00, 0x9b, 0xba, + 0xc1, 0x4e, 0x85, 0xa2, 0x56, 0xe1, 0x94, 0x76, 0x40, 0xbc, 0x88, 0x88, 0xbd, 0x67, 0xd3, 0x5e, + 0x64, 0xca, 0x32, 0x46, 0x51, 0x78, 0xe8, 0xbd, 0xe6, 0x8e, 0xf4, 0x5e, 0xbc, 0x29, 0xf7, 0x5e, + 0x91, 0x27, 0x9e, 0xcf, 0xf3, 0xc4, 0xac, 0xd1, 0x71, 0x3c, 0x71, 0x39, 0xcf, 0x13, 0x73, 0x31, + 0xf9, 0x9e, 0x38, 0xc3, 0x91, 0x54, 0xb2, 0x1c, 0xc9, 0x37, 0xe9, 0x3a, 0x7f, 0xab, 0x40, 0x33, + 0xbd, 0x9f, 0xb9, 0x1f, 0x7b, 0x1b, 0xe6, 0x7c, 0x4a, 0xc9, 0xf7, 0x9f, 0xbc, 0x15, 0xe7, 0x45, + 0xf7, 0xa0, 0x64, 0xd9, 0xfb, 0x0e, 0xdf, 0x78, 0x1b, 0xb9, 0x6d, 0x78, 0x4f, 0x1b, 0x1d, 0x7b, + 0xdf, 0x61, 0x33, 0x48, 0xdb, 0xb6, 0xde, 0x85, 0x4a, 0x48, 0x3a, 0xd1, 0x78, 0x3a, 0xb0, 0x9c, + 0xb0, 0x5b, 0x76, 0xb1, 0x0a, 0x0d, 0x5d, 0x39, 0xae, 0xa1, 0xab, 0x7f, 0x54, 0xe2, 0x9b, 0xef, + 0x13, 0x6b, 0x14, 0x60, 0x2f, 0xb5, 0xf9, 0x6e, 0x0b, 0xb9, 0x6c, 0xe7, 0x5d, 0xcc, 0x91, 0xcb, + 0xee, 0x2d, 0x7c, 0x17, 0x3d, 0x86, 0x3a, 0x35, 0x3b, 0xdd, 0xc7, 0x23, 0x1a, 0xbf, 0xf0, 0xf8, + 0xf1, 0x8d, 0x6c, 0x01, 0xac, 0x77, 0x66, 0xb6, 0x7d, 0xde, 0x82, 0xcd, 0x57, 0x6d, 0x14, 0xa7, + 0xb5, 0x3e, 0x06, 0x94, 0x66, 0x3a, 0xd1, 0x0c, 0x3e, 0x22, 0x3e, 0xcc, 0x0f, 0x32, 0x4f, 0xd3, + 0x7d, 0xaa, 0x46, 0xbe, 0x35, 0x30, 0x55, 0x35, 0xce, 0xab, 0xfe, 0x47, 0x11, 0x20, 0xaa, 0xfc, + 0x96, 0x3b, 0xaf, 0xbb, 0xa1, 0x13, 0x61, 0x51, 0xa0, 0x9a, 0x2d, 0x32, 0xd3, 0x7d, 0x74, 0x64, + 0xf7, 0xc1, 0xe2, 0xc1, 0x2b, 0x53, 0x04, 0x9c, 0xd8, 0x71, 0xcc, 0x7f, 0xdb, 0x1c, 0xc7, 0x27, + 0x70, 0x26, 0x69, 0x26, 0xdc, 0x6b, 0xbc, 0x06, 0xb3, 0x56, 0x80, 0xc7, 0x0c, 0x51, 0x4b, 0x5c, + 0xe0, 0x63, 0xec, 0x8c, 0x49, 0xfd, 0x85, 0x02, 0x95, 0xce, 0xd8, 0x18, 0xe2, 0xbe, 0x8b, 0x07, + 0xa4, 0x3f, 0x8b, 0x14, 0xb8, 0x0e, 0xac, 0x80, 0x1e, 0xc8, 0x53, 0xcb, 0x1c, 0xcb, 0x65, 0x09, + 0x18, 0x10, 0x12, 0xf2, 0x67, 0xf6, 0x4b, 0x8f, 0xfa, 0x26, 0x94, 0xbf, 0x8b, 0x0f, 0x99, 0x4b, + 0x39, 0x66, 0x3b, 0xf5, 0xdf, 0x0b, 0xb0, 0x42, 0x8f, 0xae, 0x4d, 0x01, 0xad, 0x69, 0xd8, 0x77, + 0x26, 0xde, 0x00, 0xfb, 0xd4, 0x1e, 0xdd, 0x89, 0xee, 0x62, 0xcf, 0x72, 0x4c, 0x0e, 0xfa, 0x54, + 0x06, 0xee, 0xa4, 0x47, 0x09, 0x68, 0x15, 0x48, 0x41, 0xff, 0xe9, 0xc4, 0xe1, 0xdb, 0xa3, 0xa8, + 0x95, 0x07, 0xee, 0xe4, 0x7b, 0xa4, 0x2c, 0xda, 0xfa, 0x07, 0x86, 0x87, 0x7d, 0xba, 0x07, 0x58, + 0xdb, 0x3e, 0x25, 0xa0, 0xb7, 0xe0, 0xf4, 0x18, 0x8f, 0x1d, 0xef, 0x50, 0x1f, 0x59, 0x63, 0x2b, + 0xd0, 0x2d, 0x5b, 0x7f, 0x72, 0x18, 0x60, 0x9f, 0x5b, 0x3d, 0x62, 0x95, 0x0f, 0x49, 0x5d, 0xc7, + 0xbe, 0x47, 0x6a, 0x90, 0x0a, 0x35, 0xc7, 0x19, 0xeb, 0xfe, 0xc0, 0xf1, 0xb0, 0x6e, 0x98, 0x3f, + 0xa1, 0x27, 0x78, 0x51, 0xab, 0x3a, 0xce, 0xb8, 0x4f, 0x68, 0x6d, 0xf3, 0x27, 0xe8, 0x02, 0x54, + 0x07, 0xee, 0xc4, 0xc7, 0x81, 0x4e, 0xfe, 0xd0, 0x63, 0xba, 0xa2, 0x01, 0x23, 0x6d, 0xba, 0x13, + 0x3f, 0xc6, 0x30, 0x26, 0x46, 0x30, 0x1f, 0x67, 0x78, 0x84, 0xc7, 0x14, 0x63, 0x3a, 0x98, 0x0c, + 0xb1, 0x6b, 0x0c, 0x31, 0x53, 0x4d, 0x9c, 0xb5, 0x12, 0xc6, 0xf4, 0x80, 0xb3, 0x50, 0x05, 0xb5, + 0xfa, 0x41, 0xbc, 0x48, 0x82, 0xb5, 0x9a, 0xc4, 0x40, 0x66, 0x8a, 0x0a, 0xf4, 0xad, 0x9f, 0x09, + 0xe3, 0x29, 0x13, 0x42, 0xdf, 0xfa, 0x19, 0x45, 0xd5, 0x68, 0x47, 0x74, 0x0a, 0x4b, 0x1a, 0x2b, + 0xa8, 0x06, 0xd4, 0x24, 0x20, 0x8b, 0x5c, 0x98, 0x29, 0x62, 0xc5, 0x2f, 0xcc, 0xe4, 0x37, 0xa1, + 0x79, 0xce, 0x48, 0xac, 0x28, 0xfd, 0x4d, 0x68, 0x14, 0x32, 0x61, 0x97, 0x50, 0xfa, 0x9b, 0x76, + 0x81, 0x9f, 0x71, 0x94, 0xb3, 0xa2, 0xb1, 0x82, 0x6a, 0x02, 0x6c, 0x1a, 0xae, 0xf1, 0xc4, 0x1a, + 0x59, 0xc1, 0x21, 0xba, 0x06, 0x0d, 0xc3, 0x34, 0xf5, 0x81, 0xa0, 0x58, 0x58, 0xa0, 0xce, 0x8b, + 0x86, 0x69, 0x6e, 0xc6, 0xc8, 0xe8, 0x06, 0x2c, 0x99, 0x9e, 0xe3, 0xca, 0xbc, 0x0c, 0x86, 0x6e, + 0x90, 0x8a, 0x38, 0xb3, 0xfa, 0x2f, 0x73, 0x70, 0x5e, 0x36, 0xb0, 0x24, 0x40, 0x78, 0x17, 0x16, + 0x12, 0xbd, 0xa6, 0xa0, 0xb5, 0x48, 0x4f, 0x4d, 0xe2, 0x4d, 0x40, 0x60, 0x85, 0x14, 0x04, 0x96, + 0x09, 0x3e, 0x16, 0xbf, 0x22, 0xf0, 0xb1, 0xf4, 0x25, 0xc1, 0xc7, 0xd9, 0x97, 0x05, 0x1f, 0x17, + 0x8e, 0x0d, 0x3e, 0x5e, 0xa6, 0xce, 0x5a, 0xf4, 0x48, 0xe1, 0x0b, 0xb6, 0x29, 0x6a, 0xa1, 0x74, + 0x5b, 0x24, 0x34, 0x12, 0x20, 0xe5, 0xfc, 0x49, 0x40, 0xca, 0xf2, 0x54, 0x90, 0xf2, 0x22, 0x2c, + 0xd8, 0x8e, 0x6e, 0xe3, 0xe7, 0x3a, 0x59, 0x16, 0xbf, 0x59, 0x65, 0x6b, 0x64, 0x3b, 0x5d, 0xfc, + 0xbc, 0x47, 0x28, 0x68, 0x1d, 0x16, 0xc6, 0x86, 0xff, 0x14, 0x9b, 0x14, 0x2d, 0xf4, 0x9b, 0x35, + 0x6a, 0x49, 0x55, 0x46, 0xeb, 0x11, 0x12, 0x7a, 0x15, 0x42, 0x3d, 0x38, 0x53, 0x9d, 0x32, 0xd5, + 0x04, 0x95, 0xb1, 0xc5, 0x00, 0xcf, 0xc5, 0x97, 0x04, 0x3c, 0x1b, 0x27, 0x01, 0x3c, 0x5f, 0x87, + 0x86, 0xf8, 0x2d, 0x10, 0x4f, 0x16, 0x44, 0x53, 0xb0, 0x73, 0x51, 0xd4, 0x09, 0x54, 0x73, 0x1a, + 0x3e, 0x0a, 0xb9, 0xf8, 0xe8, 0x2f, 0x15, 0x58, 0x96, 0x37, 0x10, 0x07, 0x87, 0xda, 0x50, 0xf1, + 0x84, 0xaf, 0xe6, 0x9b, 0xe6, 0x52, 0xea, 0x46, 0x92, 0x76, 0xeb, 0x5a, 0xd4, 0x0a, 0xed, 0x4e, + 0x45, 0x1d, 0xaf, 0x4d, 0x97, 0x74, 0x14, 0xee, 0xa8, 0xfe, 0x95, 0x02, 0xe7, 0x39, 0x22, 0x33, + 0x25, 0x27, 0x90, 0x61, 0x96, 0xca, 0x14, 0xb3, 0x1c, 0x78, 0xd8, 0xc4, 0x76, 0x60, 0x19, 0x23, + 0xdd, 0x77, 0xf1, 0x40, 0xa0, 0x1d, 0x11, 0x99, 0x1e, 0xcd, 0xeb, 0xb0, 0xc0, 0x52, 0x41, 0x9e, + 0x33, 0xc0, 0xbe, 0xcf, 0x33, 0x3e, 0x55, 0x9a, 0x0d, 0x62, 0x24, 0xd5, 0x81, 0x95, 0x29, 0x30, + 0x51, 0xe6, 0x34, 0x28, 0xe9, 0x69, 0xc8, 0x1d, 0x53, 0x7a, 0x1a, 0xfe, 0x5a, 0x81, 0x0b, 0xbc, + 0xc9, 0x54, 0xdf, 0xf7, 0x4d, 0x4c, 0xc4, 0x3f, 0x29, 0x70, 0x26, 0xa9, 0x17, 0x9f, 0x88, 0xcd, + 0xb4, 0x49, 0xbd, 0x9a, 0x31, 0x03, 0xf9, 0x46, 0xf5, 0x78, 0xaa, 0x51, 0xdd, 0xc8, 0x93, 0x75, + 0xe4, 0x7c, 0xfe, 0x42, 0x81, 0xb3, 0x53, 0x15, 0x48, 0x04, 0x1c, 0x4a, 0x32, 0xe0, 0xe0, 0xc1, + 0xca, 0xc0, 0x99, 0xd8, 0x41, 0x2c, 0x58, 0xd9, 0xa4, 0xf9, 0x46, 0x16, 0x15, 0xe8, 0x63, 0xe3, + 0x85, 0x35, 0x9e, 0x8c, 0x79, 0xb4, 0x42, 0xc4, 0x3d, 0x62, 0x94, 0x97, 0x08, 0x57, 0xd4, 0x36, + 0x2c, 0x85, 0x5a, 0xe6, 0xa2, 0xde, 0x31, 0x14, 0xbb, 0x20, 0xa3, 0xd8, 0x36, 0xcc, 0x6d, 0xe1, + 0x67, 0xd6, 0x00, 0x7f, 0x25, 0x09, 0xd1, 0x8b, 0x50, 0x75, 0xb1, 0x37, 0xb6, 0x7c, 0x3f, 0x3c, + 0x04, 0x2b, 0x5a, 0x9c, 0xa4, 0xfe, 0x72, 0x0e, 0x16, 0x93, 0x16, 0xf1, 0x5e, 0x0a, 0x34, 0x3f, + 0x2f, 0x1d, 0xcc, 0xc9, 0x21, 0xc6, 0x6e, 0x40, 0x37, 0x44, 0xb8, 0x5c, 0x48, 0x23, 0x4a, 0x61, + 0x48, 0x2c, 0xa2, 0xe8, 0x26, 0xcc, 0x0f, 0x9c, 0xf1, 0xd8, 0xb0, 0x4d, 0x91, 0xb5, 0xe6, 0x45, + 0x32, 0x67, 0x86, 0x37, 0x24, 0x53, 0x4d, 0xc8, 0xf4, 0x37, 0x59, 0xb0, 0xe7, 0x8e, 0xf7, 0xd4, + 0xb2, 0x29, 0xec, 0x4e, 0x0f, 0xd2, 0x8a, 0x06, 0x9c, 0xb4, 0x65, 0x79, 0xe8, 0x2a, 0x94, 0xb0, + 0xfd, 0x4c, 0x5c, 0x74, 0xa4, 0xb4, 0xb6, 0x08, 0x91, 0x35, 0xca, 0x81, 0xae, 0xc1, 0xdc, 0x98, + 0x18, 0x81, 0x80, 0x66, 0x96, 0x52, 0xd9, 0x5d, 0x8d, 0x33, 0xa0, 0xd7, 0x60, 0xde, 0xa4, 0xeb, + 0x21, 0x62, 0x42, 0x24, 0x01, 0xf8, 0xb4, 0x4a, 0x13, 0x2c, 0xe8, 0xa3, 0xf0, 0xba, 0x56, 0x49, + 0xdf, 0xb6, 0x12, 0xd3, 0x9c, 0x79, 0x67, 0xeb, 0xca, 0x17, 0x0b, 0xa0, 0x52, 0x5e, 0xcb, 0x93, + 0x92, 0x7f, 0x71, 0x3b, 0x0b, 0xe5, 0x91, 0x33, 0x64, 0xc6, 0x51, 0x65, 0x4f, 0x1e, 0x46, 0xce, + 0x90, 0xda, 0xc6, 0x32, 0xb9, 0xac, 0x9a, 0x96, 0x4d, 0x23, 0x8b, 0xb2, 0xc6, 0x0a, 0x64, 0x4b, + 0xd1, 0x1f, 0xba, 0x63, 0x0f, 0x70, 0xb3, 0x46, 0xab, 0x2a, 0x94, 0xb2, 0x63, 0x0f, 0xe8, 0x15, + 0x23, 0x08, 0x0e, 0x9b, 0x75, 0x4a, 0x27, 0x3f, 0xd1, 0x6d, 0x81, 0x8f, 0x2d, 0xa6, 0xf1, 0x86, + 0xac, 0x23, 0x4c, 0xc0, 0x63, 0xef, 0x47, 0xe0, 0x3e, 0x3b, 0x7f, 0xd5, 0x3c, 0x47, 0xf1, 0x2d, + 0xc2, 0xf6, 0x7f, 0xa5, 0xc0, 0x99, 0x4d, 0x7a, 0x41, 0x8f, 0x79, 0xa4, 0x93, 0xe0, 0xcd, 0xb7, + 0xc2, 0x24, 0x40, 0x06, 0x92, 0x9b, 0x1c, 0xb1, 0xc8, 0x01, 0x6c, 0x42, 0x5d, 0x88, 0xe5, 0x8d, + 0x8b, 0xc7, 0xc8, 0x20, 0xd4, 0xfc, 0x78, 0x51, 0x7d, 0x1f, 0x56, 0x52, 0x9a, 0xf3, 0x3b, 0xf2, + 0x3a, 0x2c, 0x44, 0xde, 0x26, 0x54, 0xbc, 0x1a, 0xd2, 0x3a, 0xa6, 0x7a, 0x17, 0x4e, 0xf7, 0x03, + 0xc3, 0x0b, 0x52, 0xc3, 0x3e, 0x46, 0x5b, 0x9a, 0x1b, 0x90, 0xdb, 0x72, 0xf8, 0xbe, 0x0f, 0xcb, + 0xfd, 0xc0, 0x71, 0x5f, 0x42, 0x28, 0xf1, 0x1f, 0x64, 0xe4, 0xce, 0x44, 0x78, 0x77, 0x51, 0x54, + 0x57, 0x58, 0x26, 0x23, 0xdd, 0xdb, 0x77, 0xe0, 0x0c, 0x4b, 0x24, 0xbc, 0xcc, 0x20, 0xce, 0x8a, + 0x34, 0x46, 0x5a, 0xee, 0x7d, 0x38, 0x15, 0x1d, 0x6a, 0x11, 0xc8, 0xf7, 0xa6, 0x0c, 0xf2, 0xb5, + 0x32, 0x57, 0x5a, 0xc2, 0xf8, 0x7e, 0x5e, 0x88, 0xf9, 0xe3, 0x29, 0x10, 0xdf, 0x3b, 0x32, 0xc4, + 0x77, 0x61, 0xba, 0x54, 0x09, 0xe1, 0x4b, 0x5b, 0x67, 0x31, 0xc3, 0x3a, 0xf7, 0x52, 0x38, 0x60, + 0x29, 0x0d, 0x9b, 0x26, 0x34, 0xfc, 0x93, 0xc0, 0x80, 0x0f, 0x19, 0x0c, 0x18, 0x76, 0x1d, 0x66, + 0x79, 0x6e, 0x25, 0x60, 0xc0, 0xd5, 0x1c, 0x4d, 0x43, 0x14, 0xf0, 0xe7, 0x25, 0xa8, 0x84, 0x75, + 0xa9, 0x19, 0x4e, 0x4f, 0x55, 0x21, 0x63, 0xaa, 0xe2, 0xe7, 0x64, 0xf1, 0x25, 0xcf, 0xc9, 0xd2, + 0x31, 0xce, 0xc9, 0x55, 0xa8, 0xd0, 0x1f, 0xf4, 0x25, 0x03, 0x3b, 0xf7, 0xca, 0x94, 0xa0, 0xe1, + 0xfd, 0xc8, 0xc4, 0xe6, 0x8e, 0x69, 0x62, 0x09, 0xc8, 0x71, 0x3e, 0x09, 0x39, 0xbe, 0x17, 0x9e, + 0x61, 0xec, 0xc0, 0x5b, 0xcf, 0x94, 0x98, 0x79, 0x7a, 0x25, 0x60, 0xb1, 0x4a, 0x1a, 0x16, 0x8b, + 0xda, 0xe7, 0xc3, 0x62, 0xdf, 0xa0, 0x7f, 0xdf, 0x61, 0x38, 0x62, 0xdc, 0xce, 0xb8, 0x8f, 0x7c, + 0x07, 0x20, 0x74, 0x07, 0x02, 0x4c, 0x3c, 0x9d, 0x39, 0x3a, 0x2d, 0xc6, 0xa8, 0xee, 0xc1, 0x19, + 0x69, 0x21, 0xa2, 0xfc, 0xe4, 0xf1, 0x7c, 0xdc, 0x94, 0xe4, 0xe4, 0xe7, 0xb3, 0x31, 0x4f, 0x31, + 0x25, 0x13, 0xf7, 0x5e, 0x0a, 0xcc, 0x3e, 0xb6, 0x85, 0xbe, 0x29, 0x63, 0xd9, 0x27, 0xb6, 0xab, + 0x14, 0x94, 0x4d, 0x23, 0x0b, 0xc3, 0xe3, 0xd5, 0x0c, 0xc8, 0xab, 0x70, 0x4a, 0x9b, 0xc6, 0xe3, + 0xfb, 0x96, 0x6d, 0xf9, 0x07, 0xac, 0x7e, 0x8e, 0xc5, 0xe3, 0x82, 0xd4, 0xa6, 0x80, 0x1a, 0x7e, + 0x61, 0x05, 0xfa, 0xc0, 0x31, 0x31, 0xb5, 0xda, 0x59, 0xad, 0x4c, 0x08, 0x9b, 0x8e, 0x89, 0xa3, + 0xfd, 0x54, 0x3e, 0xe9, 0x7e, 0xaa, 0x24, 0xf6, 0xd3, 0x19, 0x98, 0xf3, 0xb0, 0xe1, 0x3b, 0x36, + 0xbb, 0xa2, 0x6b, 0xbc, 0x44, 0x16, 0x62, 0x8c, 0x7d, 0x9f, 0xf4, 0xc1, 0x03, 0x29, 0x5e, 0x8c, + 0x05, 0x7d, 0x0b, 0x39, 0x41, 0x5f, 0x4e, 0x9e, 0x2f, 0x11, 0xf4, 0xd5, 0x72, 0x82, 0xbe, 0x63, + 0xa5, 0xf9, 0xa2, 0xf0, 0xb6, 0x7e, 0x54, 0x78, 0x1b, 0x8f, 0x0f, 0x17, 0xa5, 0xf8, 0xf0, 0x9b, + 0xdc, 0x82, 0xff, 0xa6, 0xc0, 0x4a, 0x6a, 0xcb, 0xf0, 0x4d, 0x78, 0x2b, 0x91, 0x02, 0x5c, 0xcd, + 0x99, 0xa7, 0x30, 0x03, 0xd8, 0x96, 0x32, 0x80, 0xaf, 0xe7, 0x35, 0xf9, 0xca, 0x13, 0x80, 0xbf, + 0x2f, 0xc0, 0x85, 0x3d, 0xd7, 0x4c, 0x44, 0x5d, 0xfc, 0x0a, 0x7d, 0x7c, 0x47, 0xf0, 0x9e, 0x88, + 0xb3, 0x0b, 0xc7, 0x47, 0x7d, 0x78, 0xa8, 0xfd, 0x51, 0x14, 0x6a, 0x17, 0x4f, 0x72, 0xbf, 0x17, + 0xad, 0xd0, 0x8f, 0x65, 0x03, 0x65, 0x01, 0xc1, 0xfb, 0x71, 0x21, 0x47, 0x0c, 0xf0, 0x6b, 0x4e, + 0x82, 0xa8, 0x70, 0x71, 0xba, 0x02, 0x3c, 0x42, 0xfb, 0xff, 0xb0, 0xb8, 0xfd, 0x02, 0x0f, 0xfa, + 0x87, 0xf6, 0xe0, 0x04, 0xb3, 0xde, 0x80, 0xe2, 0x60, 0x6c, 0x72, 0xa0, 0x9b, 0xfc, 0x8c, 0x07, + 0x9d, 0x45, 0x39, 0xe8, 0xd4, 0xa1, 0x11, 0xf5, 0xc0, 0xad, 0xf5, 0x0c, 0xb1, 0x56, 0x93, 0x30, + 0x13, 0xe1, 0x0b, 0x1a, 0x2f, 0x71, 0x3a, 0xf6, 0xd8, 0x4b, 0x1e, 0x46, 0xc7, 0x9e, 0x27, 0x3b, + 0xb9, 0xa2, 0xec, 0xe4, 0xd4, 0xbf, 0x55, 0xa0, 0x4a, 0x7a, 0xf8, 0x52, 0xfa, 0xf3, 0x1b, 0x5c, + 0x31, 0xba, 0xc1, 0x85, 0x17, 0xc1, 0x52, 0xfc, 0x22, 0x18, 0x69, 0x3e, 0x4b, 0xc9, 0x69, 0xcd, + 0xe7, 0x42, 0x3a, 0xf6, 0x3c, 0xf5, 0x22, 0x2c, 0x30, 0xdd, 0xf8, 0xc8, 0x1b, 0x50, 0x9c, 0x78, + 0x23, 0xb1, 0x7e, 0x13, 0x6f, 0xa4, 0xfe, 0x85, 0x02, 0xb5, 0x76, 0x10, 0x18, 0x83, 0x83, 0x13, + 0x0c, 0x20, 0x54, 0xae, 0x10, 0x57, 0x2e, 0x3d, 0x88, 0x48, 0xdd, 0xd2, 0x14, 0x75, 0x67, 0x25, + 0x75, 0x55, 0xa8, 0x0b, 0x5d, 0xa6, 0x2a, 0xdc, 0x05, 0xd4, 0x73, 0xbc, 0xe0, 0x13, 0xc7, 0x7b, + 0x6e, 0x78, 0xe6, 0xc9, 0x2e, 0x79, 0x08, 0x4a, 0xfc, 0xad, 0x7c, 0xf1, 0xea, 0xac, 0x46, 0x7f, + 0xab, 0x57, 0xe0, 0x94, 0x24, 0x6f, 0x6a, 0xc7, 0x77, 0xa1, 0x4a, 0x0f, 0x2d, 0x1e, 0xff, 0xdf, + 0x88, 0xe7, 0x20, 0x8f, 0x38, 0xdc, 0xd4, 0x2d, 0x58, 0x22, 0xe1, 0x0b, 0xa5, 0x87, 0xfe, 0xe5, + 0x8d, 0x44, 0x88, 0xbc, 0x92, 0x12, 0x91, 0x08, 0x8f, 0xff, 0x53, 0x81, 0x59, 0x4a, 0x4f, 0x85, + 0x14, 0xab, 0x50, 0xf1, 0xb0, 0xeb, 0xe8, 0x81, 0x31, 0x0c, 0xbf, 0x43, 0x20, 0x84, 0x5d, 0x63, + 0x48, 0x61, 0x7d, 0x5a, 0x69, 0x5a, 0x43, 0xec, 0x07, 0xe2, 0x63, 0x84, 0x2a, 0xa1, 0x6d, 0x31, + 0x12, 0x99, 0x18, 0x9a, 0x12, 0x2b, 0xd1, 0xcc, 0x17, 0xfd, 0x8d, 0xae, 0xb2, 0x47, 0xa0, 0xf9, + 0xb9, 0x11, 0xfa, 0x38, 0xb4, 0x05, 0xe5, 0x44, 0x52, 0x23, 0x2c, 0xa3, 0x6b, 0x50, 0xa2, 0x20, + 0xe9, 0x7c, 0xde, 0x2c, 0x51, 0x16, 0xf5, 0x23, 0x40, 0xf1, 0x49, 0xe2, 0x0b, 0x71, 0x0d, 0xe6, + 0xe8, 0x1c, 0x8a, 0xd8, 0x6e, 0x29, 0x25, 0x42, 0xe3, 0x0c, 0xea, 0x8f, 0x00, 0x31, 0x99, 0x52, + 0x3c, 0x77, 0x92, 0x85, 0xca, 0x89, 0xec, 0xfe, 0x59, 0x81, 0x53, 0x92, 0x74, 0xae, 0xdf, 0x15, + 0x59, 0x7c, 0x86, 0x7a, 0x5c, 0xf4, 0x07, 0xd2, 0x71, 0x77, 0x2d, 0xad, 0xc6, 0xd7, 0x74, 0xd4, + 0xfd, 0x56, 0x01, 0x68, 0x4f, 0x82, 0x03, 0x8e, 0x23, 0xc6, 0x17, 0x4b, 0x49, 0x2c, 0x56, 0x0b, + 0xca, 0xae, 0xe1, 0xfb, 0xcf, 0x1d, 0x4f, 0xdc, 0xad, 0xc2, 0x32, 0x45, 0xff, 0x26, 0xc1, 0x81, + 0x48, 0x67, 0x92, 0xdf, 0xe8, 0x55, 0xa8, 0xb3, 0x0f, 0x61, 0x74, 0xc3, 0x34, 0x3d, 0xec, 0xfb, + 0x3c, 0xaf, 0x59, 0x63, 0xd4, 0x36, 0x23, 0x12, 0x36, 0x8b, 0x42, 0xe3, 0xc1, 0xa1, 0x1e, 0x38, + 0x4f, 0xb1, 0xcd, 0xef, 0x4b, 0x35, 0x41, 0xdd, 0x25, 0x44, 0x96, 0x5b, 0x1a, 0x5a, 0x7e, 0xe0, + 0x09, 0x36, 0x91, 0x21, 0xe3, 0x54, 0xca, 0xa6, 0xfe, 0xa3, 0x02, 0x8d, 0xde, 0x64, 0x34, 0x62, + 0x93, 0xfb, 0x32, 0x8b, 0x7c, 0x9d, 0x0f, 0xa5, 0x90, 0x36, 0xed, 0x68, 0xa2, 0xf8, 0x10, 0xbf, + 0x12, 0x88, 0xe7, 0x4d, 0x58, 0x8a, 0x69, 0xcc, 0x0d, 0x47, 0x0a, 0x78, 0x15, 0x39, 0xe0, 0x55, + 0xdb, 0x80, 0x18, 0xaa, 0xf1, 0xd2, 0xa3, 0x54, 0x4f, 0xc3, 0x29, 0x49, 0x04, 0x3f, 0x72, 0xaf, + 0x43, 0x8d, 0x3f, 0xaa, 0xe3, 0x06, 0x71, 0x16, 0xca, 0xc4, 0x75, 0x0e, 0x2c, 0x53, 0xe4, 0xb4, + 0xe7, 0x5d, 0xc7, 0xdc, 0xb4, 0x4c, 0x4f, 0xfd, 0x1e, 0xd4, 0xf8, 0xeb, 0x7b, 0xce, 0xfb, 0x31, + 0xd4, 0xf9, 0x13, 0x3c, 0x5d, 0x7a, 0x32, 0x2b, 0x7f, 0xdb, 0x12, 0x17, 0xaf, 0xd5, 0xec, 0x78, + 0x51, 0xfd, 0x31, 0xb4, 0x58, 0x54, 0x20, 0x09, 0x16, 0x03, 0xfc, 0x18, 0xc4, 0xdb, 0x95, 0x1c, + 0xf9, 0x72, 0xcb, 0x9a, 0x17, 0x2f, 0xaa, 0xe7, 0x61, 0x35, 0x53, 0x3e, 0x1f, 0xbd, 0x0b, 0x8d, + 0xa8, 0x82, 0xbd, 0xeb, 0x0c, 0x13, 0xf5, 0x4a, 0x2c, 0x51, 0x7f, 0x26, 0x0c, 0x68, 0x0b, 0xe2, + 0x84, 0xa2, 0x31, 0x6b, 0x74, 0x11, 0x29, 0x4e, 0xbb, 0x88, 0x94, 0xa4, 0x8b, 0x88, 0xfa, 0x28, + 0x9c, 0x43, 0x7e, 0x1d, 0x7c, 0x9f, 0x5e, 0x58, 0x59, 0xdf, 0xc2, 0xa9, 0x9d, 0xcb, 0x1e, 0x1f, + 0x63, 0xd2, 0x62, 0xfc, 0xea, 0x35, 0xa8, 0xc9, 0xee, 0x2d, 0xe6, 0xb1, 0x94, 0x94, 0xc7, 0xaa, + 0x27, 0x9c, 0xd5, 0x5b, 0x89, 0x38, 0x3d, 0x6b, 0x5e, 0x13, 0x51, 0xfa, 0x1d, 0xc9, 0x6d, 0xbd, + 0x22, 0xe5, 0x63, 0xbf, 0x26, 0x8f, 0xb5, 0xcc, 0xfd, 0xf8, 0x27, 0x3e, 0x69, 0xcf, 0x07, 0xaa, + 0x5e, 0x82, 0xea, 0xde, 0xb4, 0x6f, 0xa0, 0x4a, 0xe2, 0x15, 0xcd, 0x6d, 0x58, 0xfe, 0xc4, 0x1a, + 0x61, 0xff, 0xd0, 0x0f, 0xf0, 0xb8, 0x43, 0xdd, 0xcb, 0xbe, 0x85, 0x3d, 0xb4, 0x06, 0x40, 0x2f, + 0x57, 0xae, 0x63, 0x85, 0xdf, 0x7d, 0xc4, 0x28, 0xea, 0xe7, 0x0a, 0x2c, 0x46, 0x0d, 0xf7, 0xe8, + 0x15, 0xf2, 0x1c, 0x54, 0xc8, 0x48, 0xfd, 0xc0, 0x18, 0xbb, 0x22, 0x8f, 0x15, 0x12, 0xd0, 0x3b, + 0x30, 0xbb, 0xef, 0x0b, 0x10, 0x2a, 0x01, 0xb1, 0x67, 0xa9, 0xa0, 0x95, 0xf6, 0xfd, 0x8e, 0x89, + 0x6e, 0x03, 0x4c, 0x7c, 0x6c, 0xf2, 0xac, 0x55, 0x31, 0x7d, 0xf0, 0xef, 0xc5, 0x5f, 0x1e, 0x10, + 0x56, 0xf6, 0xe8, 0xe6, 0x0e, 0x54, 0x2d, 0xdb, 0x31, 0x31, 0xcd, 0x4f, 0x9a, 0x1c, 0xa1, 0x9a, + 0xda, 0x10, 0x18, 0xef, 0x9e, 0x8f, 0x4d, 0x55, 0xe7, 0xe7, 0x96, 0x98, 0x4d, 0x6e, 0x0a, 0x0f, + 0x60, 0x89, 0xb9, 0x9f, 0xfd, 0x50, 0x59, 0x61, 0x8d, 0xab, 0xd9, 0x63, 0xa1, 0xb3, 0xa2, 0x35, + 0x2c, 0x1e, 0x99, 0x88, 0x46, 0xea, 0x5d, 0x38, 0x2d, 0xdd, 0xd7, 0x4e, 0x70, 0x81, 0x52, 0x3f, + 0x4d, 0xc0, 0x30, 0x91, 0xa9, 0x72, 0xa8, 0x43, 0x58, 0xea, 0x74, 0xa8, 0xc3, 0x67, 0x50, 0x87, + 0xaf, 0xee, 0xc1, 0x59, 0x09, 0x23, 0x92, 0x74, 0xb9, 0x93, 0x08, 0xb6, 0x2e, 0x4e, 0x97, 0x97, + 0x88, 0xba, 0xfe, 0x47, 0x81, 0xe5, 0x2c, 0x86, 0x97, 0xc4, 0x27, 0x7f, 0x38, 0xe5, 0x49, 0xe7, + 0xad, 0xa3, 0x14, 0xfa, 0x93, 0xe0, 0xb9, 0x5d, 0x68, 0x65, 0xcd, 0x61, 0x7a, 0x4d, 0x8a, 0xc7, + 0x5b, 0x93, 0x3f, 0x16, 0x62, 0x18, 0x7c, 0x3b, 0x08, 0x3c, 0xeb, 0xc9, 0x84, 0x98, 0xf3, 0x57, + 0x88, 0x89, 0x6d, 0x86, 0x48, 0x0f, 0x9b, 0xc8, 0x1b, 0x99, 0x0d, 0xa3, 0xbe, 0x33, 0xd1, 0x1e, + 0x2d, 0xeb, 0x32, 0xfd, 0xe6, 0x51, 0x92, 0xbe, 0xb5, 0x70, 0xe9, 0xff, 0x2a, 0x50, 0x97, 0x17, + 0x04, 0x7d, 0x04, 0x60, 0x84, 0x9a, 0xf3, 0x4d, 0x70, 0xe1, 0x88, 0x01, 0x6a, 0xb1, 0x26, 0xe8, + 0x32, 0x14, 0x07, 0xee, 0x84, 0xaf, 0x8e, 0x94, 0xc8, 0xdd, 0x74, 0x27, 0xcc, 0x37, 0x10, 0x06, + 0x72, 0xad, 0x61, 0x59, 0xf8, 0x2c, 0xef, 0xf6, 0x88, 0xd6, 0x30, 0x6e, 0xce, 0x86, 0xee, 0x41, + 0xfd, 0xb9, 0x67, 0x05, 0xc6, 0x93, 0x11, 0xd6, 0x47, 0xc6, 0x21, 0xf6, 0xb8, 0x77, 0xcb, 0x75, + 0x43, 0x35, 0xd1, 0xe4, 0x21, 0x69, 0xa1, 0xbe, 0x80, 0xb2, 0xd0, 0xe2, 0x08, 0xbf, 0xdd, 0x85, + 0x95, 0x09, 0x61, 0xd3, 0xe9, 0xf3, 0x45, 0xdb, 0xb0, 0x1d, 0xdd, 0xc7, 0xe4, 0x80, 0x15, 0xdf, + 0x70, 0x4c, 0x75, 0xaa, 0xcb, 0xb4, 0xdd, 0xa6, 0xe3, 0xe1, 0xae, 0x61, 0x3b, 0x7d, 0xd6, 0x48, + 0x75, 0xa1, 0x1a, 0x1b, 0xd4, 0x11, 0x9d, 0x6f, 0xc2, 0x92, 0x48, 0x97, 0xfb, 0x38, 0xe0, 0x87, + 0xc0, 0x11, 0xdd, 0x2e, 0xf2, 0x16, 0x7d, 0x1c, 0xb0, 0x07, 0x0d, 0x1f, 0xc2, 0x59, 0x0d, 0x3b, + 0x2e, 0xb6, 0xc3, 0x15, 0x7b, 0xe8, 0x0c, 0x4f, 0xe0, 0x73, 0xcf, 0x41, 0x2b, 0xab, 0x3d, 0xdb, + 0xe3, 0xd7, 0x2f, 0x43, 0x59, 0x7c, 0x6f, 0x8e, 0xe6, 0xa1, 0xb8, 0xbb, 0xd9, 0x6b, 0xcc, 0x90, + 0x1f, 0x7b, 0x5b, 0xbd, 0x86, 0x82, 0xca, 0x50, 0xea, 0x6f, 0xee, 0xf6, 0x1a, 0x85, 0xeb, 0x63, + 0x68, 0x24, 0x3f, 0xb9, 0x46, 0x2b, 0x70, 0xaa, 0xa7, 0xed, 0xf4, 0xda, 0xf7, 0xdb, 0xbb, 0x9d, + 0x9d, 0xae, 0xde, 0xd3, 0x3a, 0x8f, 0xdb, 0xbb, 0xdb, 0x8d, 0x19, 0xb4, 0x0e, 0xe7, 0xe3, 0x15, + 0x0f, 0x76, 0xfa, 0xbb, 0xfa, 0xee, 0x8e, 0xbe, 0xb9, 0xd3, 0xdd, 0x6d, 0x77, 0xba, 0xdb, 0x5a, + 0x43, 0x41, 0xe7, 0xe1, 0x6c, 0x9c, 0xe5, 0x5e, 0x67, 0xab, 0xa3, 0x6d, 0x6f, 0x92, 0xdf, 0xed, + 0x87, 0x8d, 0xc2, 0xf5, 0x0f, 0xa0, 0x26, 0x7d, 0x33, 0x4d, 0x54, 0xea, 0xed, 0x6c, 0x35, 0x66, + 0x50, 0x0d, 0x2a, 0x71, 0x39, 0x65, 0x28, 0x75, 0x77, 0xb6, 0xb6, 0x1b, 0x05, 0x04, 0x30, 0xb7, + 0xdb, 0xd6, 0xee, 0x6f, 0xef, 0x36, 0x8a, 0xd7, 0xef, 0xc2, 0x62, 0xe2, 0xad, 0x37, 0x5a, 0x82, + 0x5a, 0xbf, 0xdd, 0xdd, 0xba, 0xb7, 0xf3, 0x03, 0x5d, 0xdb, 0x6e, 0x6f, 0x7d, 0xd6, 0x98, 0x41, + 0xcb, 0xd0, 0x10, 0xa4, 0xee, 0xce, 0x2e, 0xa3, 0x2a, 0xd7, 0x9f, 0x26, 0xf6, 0x12, 0x46, 0xa7, + 0x61, 0x29, 0xec, 0x52, 0xdf, 0xd4, 0xb6, 0xdb, 0xbb, 0xdb, 0x44, 0x13, 0x89, 0xac, 0xed, 0x75, + 0xbb, 0x9d, 0xee, 0xfd, 0x86, 0x42, 0xa4, 0x46, 0xe4, 0xed, 0x1f, 0x74, 0x08, 0x73, 0x41, 0x66, + 0xde, 0xeb, 0x7e, 0xb7, 0xbb, 0xf3, 0xfd, 0x6e, 0xa3, 0x78, 0xf3, 0x57, 0x8b, 0xe1, 0x17, 0xaf, + 0x7d, 0xec, 0xd1, 0x37, 0x27, 0x5b, 0x30, 0x2f, 0xfe, 0x8b, 0x81, 0xe4, 0x71, 0xe5, 0xff, 0xba, + 0xd0, 0x5a, 0xcd, 0xac, 0xe3, 0x71, 0xef, 0x0c, 0x7a, 0x4c, 0xe3, 0xd0, 0xd8, 0x1b, 0xfb, 0x8b, + 0x89, 0xd8, 0x2f, 0xf5, 0x94, 0xbf, 0xb5, 0x9e, 0xc3, 0x11, 0xca, 0xfd, 0x8c, 0x04, 0x99, 0xf1, + 0x0f, 0xcc, 0xd0, 0xba, 0x1c, 0x23, 0x66, 0x7c, 0xbb, 0xd6, 0x52, 0xf3, 0x58, 0x42, 0xd1, 0x3a, + 0x34, 0x92, 0x1f, 0x98, 0x21, 0x09, 0x62, 0x9d, 0xf2, 0xfd, 0x5a, 0xeb, 0x95, 0x7c, 0xa6, 0x78, + 0x07, 0xa9, 0xef, 0xa6, 0x2e, 0xe5, 0x7f, 0x89, 0x92, 0xd1, 0xc1, 0xb4, 0xcf, 0x55, 0xd8, 0xe4, + 0xc8, 0xcf, 0xdf, 0x51, 0xe2, 0x53, 0xa5, 0x8c, 0x2f, 0x28, 0xe4, 0xc9, 0xc9, 0x7e, 0x3d, 0xaf, + 0xce, 0xa0, 0xff, 0x07, 0x8b, 0x89, 0x67, 0x03, 0x48, 0x6a, 0x98, 0xfd, 0x1a, 0xa2, 0x75, 0x29, + 0x97, 0x47, 0x5e, 0xd5, 0xf8, 0xd3, 0x80, 0xe4, 0xaa, 0x66, 0x3c, 0x39, 0x48, 0xae, 0x6a, 0xe6, + 0xcb, 0x02, 0x6a, 0x88, 0xd2, 0x33, 0x00, 0xd9, 0x10, 0xb3, 0x9e, 0x1d, 0xb4, 0xd6, 0x73, 0x38, + 0xe2, 0x13, 0x92, 0x78, 0x08, 0x20, 0x4f, 0x48, 0xf6, 0x13, 0x83, 0xd6, 0xa5, 0x5c, 0x9e, 0xe4, + 0x4a, 0x46, 0x09, 0xc8, 0xf4, 0x4a, 0xa6, 0x92, 0xe0, 0xe9, 0x95, 0x4c, 0xe7, 0x2f, 0xf9, 0x4a, + 0x26, 0x52, 0x86, 0x6a, 0x6e, 0x32, 0x24, 0x6b, 0x25, 0xb3, 0x13, 0x26, 0xea, 0x0c, 0x7a, 0x0e, + 0xcd, 0x69, 0x30, 0x3c, 0xba, 0x71, 0x82, 0x6c, 0x41, 0xeb, 0xb5, 0xe3, 0x31, 0x87, 0x1d, 0x63, + 0x40, 0xe9, 0x63, 0x06, 0xbd, 0x2a, 0x4f, 0xf7, 0x94, 0x63, 0xac, 0x75, 0xf9, 0x28, 0xb6, 0xb0, + 0x9b, 0xfb, 0x50, 0x16, 0x00, 0x3f, 0x92, 0x5c, 0x60, 0x22, 0xb1, 0xd0, 0x3a, 0x97, 0x5d, 0x19, + 0x0a, 0xfa, 0x0e, 0x94, 0x08, 0x15, 0xad, 0x24, 0xf9, 0x84, 0x80, 0x66, 0xba, 0x22, 0x6c, 0xdc, + 0x86, 0x39, 0x86, 0x5c, 0x23, 0xe9, 0x4a, 0x2d, 0x21, 0xeb, 0xad, 0x56, 0x56, 0x55, 0x28, 0xa2, + 0xc7, 0xfe, 0x27, 0x0c, 0x07, 0xa2, 0xd1, 0x5a, 0xf2, 0xd3, 0x72, 0x19, 0xf1, 0x6e, 0x5d, 0x98, + 0x5a, 0x1f, 0xb7, 0xd9, 0x44, 0x10, 0xb8, 0x9e, 0x13, 0xb1, 0x67, 0xd9, 0x6c, 0xf6, 0x3d, 0x80, + 0x2d, 0x6e, 0xfa, 0x9e, 0x20, 0x2f, 0xee, 0xd4, 0xbb, 0x98, 0xbc, 0xb8, 0xd3, 0xaf, 0x1b, 0xea, + 0x0c, 0x3a, 0x80, 0x53, 0x19, 0x68, 0x0e, 0xba, 0x9c, 0x36, 0xc5, 0x2c, 0x38, 0xa9, 0x75, 0xe5, + 0x48, 0xbe, 0xf8, 0x02, 0xf2, 0xbd, 0x77, 0x36, 0x0b, 0xe2, 0xc8, 0x58, 0xc0, 0xe4, 0x4e, 0xbb, + 0xf9, 0xf7, 0x45, 0x58, 0x60, 0x28, 0x1c, 0x3f, 0xb8, 0x1f, 0x01, 0x44, 0x80, 0x36, 0x3a, 0x9f, + 0x1c, 0xb5, 0x94, 0x0d, 0x68, 0xad, 0x4d, 0xab, 0x8e, 0x1b, 0x48, 0x0c, 0x28, 0x96, 0x0d, 0x24, + 0x8d, 0x7b, 0xcb, 0x06, 0x92, 0x81, 0x30, 0xab, 0x33, 0xe8, 0x53, 0xa8, 0x84, 0xb8, 0x24, 0x92, + 0x11, 0xcd, 0x04, 0xc0, 0xda, 0x3a, 0x3f, 0xa5, 0x36, 0xae, 0x5d, 0x0c, 0x6e, 0x94, 0xb5, 0x4b, + 0x43, 0x99, 0xb2, 0x76, 0x59, 0x38, 0x65, 0x34, 0x5e, 0x06, 0x5c, 0x64, 0x8c, 0x57, 0xc2, 0x87, + 0x32, 0xc6, 0x2b, 0x23, 0x1e, 0xea, 0xcc, 0xbd, 0x8b, 0xbf, 0xf9, 0xc3, 0x9a, 0xf2, 0xf9, 0x1f, + 0xd6, 0x66, 0xfe, 0xec, 0x8b, 0x35, 0xe5, 0x37, 0x5f, 0xac, 0x29, 0xbf, 0xfb, 0x62, 0x4d, 0xf9, + 0xfd, 0x17, 0x6b, 0xca, 0x5f, 0xfe, 0xf7, 0xda, 0xcc, 0x0f, 0x0b, 0xcf, 0xde, 0x7a, 0x32, 0x47, + 0xff, 0xc3, 0xd2, 0xad, 0xff, 0x0b, 0x00, 0x00, 0xff, 0xff, 0xd4, 0xa5, 0x3f, 0x47, 0x1b, 0x4b, 0x00, 0x00, } @@ -9195,6 +9336,18 @@ func (m *PodSandboxConfig) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if m.Windows != nil { + { + size, err := m.Windows.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintApi(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x4a + } if m.Linux != nil { { size, err := m.Linux.MarshalToSizedBuffer(dAtA[:i]) @@ -10485,21 +10638,21 @@ func (m *LinuxContainerSecurityContext) MarshalToSizedBuffer(dAtA []byte) (int, dAtA[i] = 0x4a } if len(m.SupplementalGroups) > 0 { - dAtA27 := make([]byte, len(m.SupplementalGroups)*10) - var j26 int + dAtA28 := make([]byte, len(m.SupplementalGroups)*10) + var j27 int for _, num1 := range m.SupplementalGroups { num := uint64(num1) for num >= 1<<7 { - dAtA27[j26] = uint8(uint64(num)&0x7f | 0x80) + dAtA28[j27] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 - j26++ + j27++ } - dAtA27[j26] = uint8(num) - j26++ + dAtA28[j27] = uint8(num) + j27++ } - i -= j26 - copy(dAtA[i:], dAtA27[:j26]) - i = encodeVarintApi(dAtA, i, uint64(j26)) + i -= j27 + copy(dAtA[i:], dAtA28[:j27]) + i = encodeVarintApi(dAtA, i, uint64(j27)) i-- dAtA[i] = 0x42 } @@ -10628,6 +10781,88 @@ func (m *LinuxContainerConfig) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *WindowsSandboxSecurityContext) 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 *WindowsSandboxSecurityContext) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *WindowsSandboxSecurityContext) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.HostProcess { + i-- + if m.HostProcess { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x18 + } + if len(m.CredentialSpec) > 0 { + i -= len(m.CredentialSpec) + copy(dAtA[i:], m.CredentialSpec) + i = encodeVarintApi(dAtA, i, uint64(len(m.CredentialSpec))) + i-- + dAtA[i] = 0x12 + } + if len(m.RunAsUsername) > 0 { + i -= len(m.RunAsUsername) + copy(dAtA[i:], m.RunAsUsername) + i = encodeVarintApi(dAtA, i, uint64(len(m.RunAsUsername))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *WindowsPodSandboxConfig) 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 *WindowsPodSandboxConfig) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *WindowsPodSandboxConfig) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.SecurityContext != nil { + { + size, err := m.SecurityContext.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintApi(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + func (m *WindowsContainerSecurityContext) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -10648,6 +10883,16 @@ func (m *WindowsContainerSecurityContext) MarshalToSizedBuffer(dAtA []byte) (int _ = i var l int _ = l + if m.HostProcess { + i-- + if m.HostProcess { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x18 + } if len(m.CredentialSpec) > 0 { i -= len(m.CredentialSpec) copy(dAtA[i:], m.CredentialSpec) @@ -12246,21 +12491,21 @@ func (m *PortForwardRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { var l int _ = l if len(m.Port) > 0 { - dAtA52 := make([]byte, len(m.Port)*10) - var j51 int + dAtA54 := make([]byte, len(m.Port)*10) + var j53 int for _, num1 := range m.Port { num := uint64(num1) for num >= 1<<7 { - dAtA52[j51] = uint8(uint64(num)&0x7f | 0x80) + dAtA54[j53] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 - j51++ + j53++ } - dAtA52[j51] = uint8(num) - j51++ + dAtA54[j53] = uint8(num) + j53++ } - i -= j51 - copy(dAtA[i:], dAtA52[:j51]) - i = encodeVarintApi(dAtA, i, uint64(j51)) + i -= j53 + copy(dAtA[i:], dAtA54[:j53]) + i = encodeVarintApi(dAtA, i, uint64(j53)) i-- dAtA[i] = 0x12 } @@ -14087,6 +14332,10 @@ func (m *PodSandboxConfig) Size() (n int) { l = m.Linux.Size() n += 1 + l + sovApi(uint64(l)) } + if m.Windows != nil { + l = m.Windows.Size() + n += 1 + l + sovApi(uint64(l)) + } return n } @@ -14650,6 +14899,39 @@ func (m *LinuxContainerConfig) Size() (n int) { return n } +func (m *WindowsSandboxSecurityContext) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.RunAsUsername) + if l > 0 { + n += 1 + l + sovApi(uint64(l)) + } + l = len(m.CredentialSpec) + if l > 0 { + n += 1 + l + sovApi(uint64(l)) + } + if m.HostProcess { + n += 2 + } + return n +} + +func (m *WindowsPodSandboxConfig) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.SecurityContext != nil { + l = m.SecurityContext.Size() + n += 1 + l + sovApi(uint64(l)) + } + return n +} + func (m *WindowsContainerSecurityContext) Size() (n int) { if m == nil { return 0 @@ -14664,6 +14946,9 @@ func (m *WindowsContainerSecurityContext) Size() (n int) { if l > 0 { n += 1 + l + sovApi(uint64(l)) } + if m.HostProcess { + n += 2 + } return n } @@ -16144,6 +16429,7 @@ func (this *PodSandboxConfig) String() string { `Labels:` + mapStringForLabels + `,`, `Annotations:` + mapStringForAnnotations + `,`, `Linux:` + strings.Replace(this.Linux.String(), "LinuxPodSandboxConfig", "LinuxPodSandboxConfig", 1) + `,`, + `Windows:` + strings.Replace(this.Windows.String(), "WindowsPodSandboxConfig", "WindowsPodSandboxConfig", 1) + `,`, `}`, }, "") return s @@ -16541,6 +16827,28 @@ func (this *LinuxContainerConfig) String() string { }, "") return s } +func (this *WindowsSandboxSecurityContext) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&WindowsSandboxSecurityContext{`, + `RunAsUsername:` + fmt.Sprintf("%v", this.RunAsUsername) + `,`, + `CredentialSpec:` + fmt.Sprintf("%v", this.CredentialSpec) + `,`, + `HostProcess:` + fmt.Sprintf("%v", this.HostProcess) + `,`, + `}`, + }, "") + return s +} +func (this *WindowsPodSandboxConfig) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&WindowsPodSandboxConfig{`, + `SecurityContext:` + strings.Replace(this.SecurityContext.String(), "WindowsSandboxSecurityContext", "WindowsSandboxSecurityContext", 1) + `,`, + `}`, + }, "") + return s +} func (this *WindowsContainerSecurityContext) String() string { if this == nil { return "nil" @@ -16548,6 +16856,7 @@ func (this *WindowsContainerSecurityContext) String() string { s := strings.Join([]string{`&WindowsContainerSecurityContext{`, `RunAsUsername:` + fmt.Sprintf("%v", this.RunAsUsername) + `,`, `CredentialSpec:` + fmt.Sprintf("%v", this.CredentialSpec) + `,`, + `HostProcess:` + fmt.Sprintf("%v", this.HostProcess) + `,`, `}`, }, "") return s @@ -19838,6 +20147,42 @@ func (m *PodSandboxConfig) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 9: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Windows", 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 + } + if m.Windows == nil { + m.Windows = &WindowsPodSandboxConfig{} + } + if err := m.Windows.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipApi(dAtA[iNdEx:]) @@ -24127,6 +24472,226 @@ func (m *LinuxContainerConfig) Unmarshal(dAtA []byte) error { } return nil } +func (m *WindowsSandboxSecurityContext) 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: WindowsSandboxSecurityContext: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: WindowsSandboxSecurityContext: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field RunAsUsername", 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.RunAsUsername = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field CredentialSpec", 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.CredentialSpec = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 3: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field HostProcess", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.HostProcess = bool(v != 0) + 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 *WindowsPodSandboxConfig) 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: WindowsPodSandboxConfig: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: WindowsPodSandboxConfig: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field SecurityContext", 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 + } + if m.SecurityContext == nil { + m.SecurityContext = &WindowsSandboxSecurityContext{} + } + if err := m.SecurityContext.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + 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 *WindowsContainerSecurityContext) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -24220,6 +24785,26 @@ func (m *WindowsContainerSecurityContext) Unmarshal(dAtA []byte) error { } m.CredentialSpec = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex + case 3: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field HostProcess", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.HostProcess = bool(v != 0) 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 8f89834a6f9..7aabae76693 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 @@ -388,6 +388,8 @@ message PodSandboxConfig { map annotations = 7; // Optional configurations specific to Linux hosts. LinuxPodSandboxConfig linux = 8; + // Optional configurations specific to Windows hosts. + WindowsPodSandboxConfig windows = 9; } message RunPodSandboxRequest { @@ -687,6 +689,29 @@ message LinuxContainerConfig { LinuxContainerSecurityContext security_context = 2; } +// WindowsSandboxSecurityContext holds platform-specific configurations that will be +// applied to a sandbox. +// These settings will only apply to the sandbox container. +message WindowsSandboxSecurityContext { + // User name to run the container process as. If specified, the user MUST + // exist in the container image and be resolved there by the runtime; + // otherwise, the runtime MUST return error. + string run_as_username = 1; + + // The contents of the GMSA credential spec to use to run this container. + string credential_spec = 2; + + // Indicates whether the container requested to run as a HostProcess container. + bool host_process = 3; +} + +// WindowsPodSandboxConfig holds platform-specific configurations for Windows +// host platforms and Windows-based containers. +message WindowsPodSandboxConfig { + // WindowsSandboxSecurityContext holds sandbox security attributes. + WindowsSandboxSecurityContext security_context = 1; +} + // WindowsContainerSecurityContext holds windows security configuration that will be applied to a container. message WindowsContainerSecurityContext { // User name to run the container process as. If specified, the user MUST @@ -696,6 +721,9 @@ message WindowsContainerSecurityContext { // The contents of the GMSA credential spec to use to run this container. string credential_spec = 2; + + // Indicates whether a container is to be run as a HostProcess container. + bool host_process = 3; } // WindowsContainerConfig contains platform-specific configuration for diff --git a/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1alpha2/api.pb.go b/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1alpha2/api.pb.go index 5a147bac477..4c2f1d162dd 100644 --- a/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1alpha2/api.pb.go +++ b/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1alpha2/api.pb.go @@ -1119,9 +1119,11 @@ type PodSandboxConfig struct { // consider proposing new typed fields for any new features instead. Annotations map[string]string `protobuf:"bytes,7,rep,name=annotations,proto3" json:"annotations,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` // Optional configurations specific to Linux hosts. - Linux *LinuxPodSandboxConfig `protobuf:"bytes,8,opt,name=linux,proto3" json:"linux,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_sizecache int32 `json:"-"` + Linux *LinuxPodSandboxConfig `protobuf:"bytes,8,opt,name=linux,proto3" json:"linux,omitempty"` + // Optional configurations specific to Windows hosts. + Windows *WindowsPodSandboxConfig `protobuf:"bytes,9,opt,name=windows,proto3" json:"windows,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *PodSandboxConfig) Reset() { *m = PodSandboxConfig{} } @@ -1212,6 +1214,13 @@ func (m *PodSandboxConfig) GetLinux() *LinuxPodSandboxConfig { return nil } +func (m *PodSandboxConfig) GetWindows() *WindowsPodSandboxConfig { + if m != nil { + return m.Windows + } + return nil +} + type RunPodSandboxRequest struct { // Configuration for creating a PodSandbox. Config *PodSandboxConfig `protobuf:"bytes,1,opt,name=config,proto3" json:"config,omitempty"` @@ -2912,6 +2921,123 @@ func (m *LinuxContainerConfig) GetSecurityContext() *LinuxContainerSecurityConte return nil } +// WindowsSandboxSecurityContext holds platform-specific configurations that will be +// applied to a sandbox. +// These settings will only apply to the sandbox container. +type WindowsSandboxSecurityContext struct { + // User name to run the container process as. If specified, the user MUST + // exist in the container image and be resolved there by the runtime; + // otherwise, the runtime MUST return error. + RunAsUsername string `protobuf:"bytes,1,opt,name=run_as_username,json=runAsUsername,proto3" json:"run_as_username,omitempty"` + // The contents of the GMSA credential spec to use to run this container. + CredentialSpec string `protobuf:"bytes,2,opt,name=credential_spec,json=credentialSpec,proto3" json:"credential_spec,omitempty"` + // Indicates whether the container be asked to run as a HostProcess container. + HostProcess bool `protobuf:"varint,3,opt,name=host_process,json=hostProcess,proto3" json:"host_process,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *WindowsSandboxSecurityContext) Reset() { *m = WindowsSandboxSecurityContext{} } +func (*WindowsSandboxSecurityContext) ProtoMessage() {} +func (*WindowsSandboxSecurityContext) Descriptor() ([]byte, []int) { + return fileDescriptor_00212fb1f9d3bf1c, []int{38} +} +func (m *WindowsSandboxSecurityContext) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *WindowsSandboxSecurityContext) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_WindowsSandboxSecurityContext.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 *WindowsSandboxSecurityContext) XXX_Merge(src proto.Message) { + xxx_messageInfo_WindowsSandboxSecurityContext.Merge(m, src) +} +func (m *WindowsSandboxSecurityContext) XXX_Size() int { + return m.Size() +} +func (m *WindowsSandboxSecurityContext) XXX_DiscardUnknown() { + xxx_messageInfo_WindowsSandboxSecurityContext.DiscardUnknown(m) +} + +var xxx_messageInfo_WindowsSandboxSecurityContext proto.InternalMessageInfo + +func (m *WindowsSandboxSecurityContext) GetRunAsUsername() string { + if m != nil { + return m.RunAsUsername + } + return "" +} + +func (m *WindowsSandboxSecurityContext) GetCredentialSpec() string { + if m != nil { + return m.CredentialSpec + } + return "" +} + +func (m *WindowsSandboxSecurityContext) GetHostProcess() bool { + if m != nil { + return m.HostProcess + } + return false +} + +// WindowsPodSandboxConfig holds platform-specific configurations for Windows +// host platforms and Windows-based containers. +type WindowsPodSandboxConfig struct { + // WindowsSandboxSecurityContext holds sandbox security attributes. + SecurityContext *WindowsSandboxSecurityContext `protobuf:"bytes,1,opt,name=security_context,json=securityContext,proto3" json:"security_context,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *WindowsPodSandboxConfig) Reset() { *m = WindowsPodSandboxConfig{} } +func (*WindowsPodSandboxConfig) ProtoMessage() {} +func (*WindowsPodSandboxConfig) Descriptor() ([]byte, []int) { + return fileDescriptor_00212fb1f9d3bf1c, []int{39} +} +func (m *WindowsPodSandboxConfig) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *WindowsPodSandboxConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_WindowsPodSandboxConfig.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 *WindowsPodSandboxConfig) XXX_Merge(src proto.Message) { + xxx_messageInfo_WindowsPodSandboxConfig.Merge(m, src) +} +func (m *WindowsPodSandboxConfig) XXX_Size() int { + return m.Size() +} +func (m *WindowsPodSandboxConfig) XXX_DiscardUnknown() { + xxx_messageInfo_WindowsPodSandboxConfig.DiscardUnknown(m) +} + +var xxx_messageInfo_WindowsPodSandboxConfig proto.InternalMessageInfo + +func (m *WindowsPodSandboxConfig) GetSecurityContext() *WindowsSandboxSecurityContext { + if m != nil { + return m.SecurityContext + } + return nil +} + // WindowsContainerSecurityContext holds windows security configuration that will be applied to a container. type WindowsContainerSecurityContext struct { // User name to run the container process as. If specified, the user MUST @@ -2919,7 +3045,9 @@ type WindowsContainerSecurityContext struct { // otherwise, the runtime MUST return error. RunAsUsername string `protobuf:"bytes,1,opt,name=run_as_username,json=runAsUsername,proto3" json:"run_as_username,omitempty"` // The contents of the GMSA credential spec to use to run this container. - CredentialSpec string `protobuf:"bytes,2,opt,name=credential_spec,json=credentialSpec,proto3" json:"credential_spec,omitempty"` + CredentialSpec string `protobuf:"bytes,2,opt,name=credential_spec,json=credentialSpec,proto3" json:"credential_spec,omitempty"` + // Indicates whether a container is to be run as a HostProcess container. + HostProcess bool `protobuf:"varint,3,opt,name=host_process,json=hostProcess,proto3" json:"host_process,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_sizecache int32 `json:"-"` } @@ -2927,7 +3055,7 @@ type WindowsContainerSecurityContext struct { func (m *WindowsContainerSecurityContext) Reset() { *m = WindowsContainerSecurityContext{} } func (*WindowsContainerSecurityContext) ProtoMessage() {} func (*WindowsContainerSecurityContext) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{38} + return fileDescriptor_00212fb1f9d3bf1c, []int{40} } func (m *WindowsContainerSecurityContext) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2970,6 +3098,13 @@ func (m *WindowsContainerSecurityContext) GetCredentialSpec() string { return "" } +func (m *WindowsContainerSecurityContext) GetHostProcess() bool { + if m != nil { + return m.HostProcess + } + return false +} + // WindowsContainerConfig contains platform-specific configuration for // Windows-based containers. type WindowsContainerConfig struct { @@ -2984,7 +3119,7 @@ type WindowsContainerConfig struct { func (m *WindowsContainerConfig) Reset() { *m = WindowsContainerConfig{} } func (*WindowsContainerConfig) ProtoMessage() {} func (*WindowsContainerConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{39} + return fileDescriptor_00212fb1f9d3bf1c, []int{41} } func (m *WindowsContainerConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3045,7 +3180,7 @@ type WindowsContainerResources struct { func (m *WindowsContainerResources) Reset() { *m = WindowsContainerResources{} } func (*WindowsContainerResources) ProtoMessage() {} func (*WindowsContainerResources) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{40} + return fileDescriptor_00212fb1f9d3bf1c, []int{42} } func (m *WindowsContainerResources) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3119,7 +3254,7 @@ type ContainerMetadata struct { func (m *ContainerMetadata) Reset() { *m = ContainerMetadata{} } func (*ContainerMetadata) ProtoMessage() {} func (*ContainerMetadata) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{41} + return fileDescriptor_00212fb1f9d3bf1c, []int{43} } func (m *ContainerMetadata) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3180,7 +3315,7 @@ type Device struct { func (m *Device) Reset() { *m = Device{} } func (*Device) ProtoMessage() {} func (*Device) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{42} + return fileDescriptor_00212fb1f9d3bf1c, []int{44} } func (m *Device) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3299,7 +3434,7 @@ type ContainerConfig struct { func (m *ContainerConfig) Reset() { *m = ContainerConfig{} } func (*ContainerConfig) ProtoMessage() {} func (*ContainerConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{43} + return fileDescriptor_00212fb1f9d3bf1c, []int{45} } func (m *ContainerConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3457,7 +3592,7 @@ type CreateContainerRequest struct { func (m *CreateContainerRequest) Reset() { *m = CreateContainerRequest{} } func (*CreateContainerRequest) ProtoMessage() {} func (*CreateContainerRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{44} + return fileDescriptor_00212fb1f9d3bf1c, []int{46} } func (m *CreateContainerRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3517,7 +3652,7 @@ type CreateContainerResponse struct { func (m *CreateContainerResponse) Reset() { *m = CreateContainerResponse{} } func (*CreateContainerResponse) ProtoMessage() {} func (*CreateContainerResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{45} + return fileDescriptor_00212fb1f9d3bf1c, []int{47} } func (m *CreateContainerResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3563,7 +3698,7 @@ type StartContainerRequest struct { func (m *StartContainerRequest) Reset() { *m = StartContainerRequest{} } func (*StartContainerRequest) ProtoMessage() {} func (*StartContainerRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{46} + return fileDescriptor_00212fb1f9d3bf1c, []int{48} } func (m *StartContainerRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3607,7 +3742,7 @@ type StartContainerResponse struct { func (m *StartContainerResponse) Reset() { *m = StartContainerResponse{} } func (*StartContainerResponse) ProtoMessage() {} func (*StartContainerResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{47} + return fileDescriptor_00212fb1f9d3bf1c, []int{49} } func (m *StartContainerResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3649,7 +3784,7 @@ type StopContainerRequest struct { func (m *StopContainerRequest) Reset() { *m = StopContainerRequest{} } func (*StopContainerRequest) ProtoMessage() {} func (*StopContainerRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{48} + return fileDescriptor_00212fb1f9d3bf1c, []int{50} } func (m *StopContainerRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3700,7 +3835,7 @@ type StopContainerResponse struct { func (m *StopContainerResponse) Reset() { *m = StopContainerResponse{} } func (*StopContainerResponse) ProtoMessage() {} func (*StopContainerResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{49} + return fileDescriptor_00212fb1f9d3bf1c, []int{51} } func (m *StopContainerResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3739,7 +3874,7 @@ type RemoveContainerRequest struct { func (m *RemoveContainerRequest) Reset() { *m = RemoveContainerRequest{} } func (*RemoveContainerRequest) ProtoMessage() {} func (*RemoveContainerRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{50} + return fileDescriptor_00212fb1f9d3bf1c, []int{52} } func (m *RemoveContainerRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3783,7 +3918,7 @@ type RemoveContainerResponse struct { func (m *RemoveContainerResponse) Reset() { *m = RemoveContainerResponse{} } func (*RemoveContainerResponse) ProtoMessage() {} func (*RemoveContainerResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{51} + return fileDescriptor_00212fb1f9d3bf1c, []int{53} } func (m *RemoveContainerResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3823,7 +3958,7 @@ type ContainerStateValue struct { func (m *ContainerStateValue) Reset() { *m = ContainerStateValue{} } func (*ContainerStateValue) ProtoMessage() {} func (*ContainerStateValue) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{52} + return fileDescriptor_00212fb1f9d3bf1c, []int{54} } func (m *ContainerStateValue) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3879,7 +4014,7 @@ type ContainerFilter struct { func (m *ContainerFilter) Reset() { *m = ContainerFilter{} } func (*ContainerFilter) ProtoMessage() {} func (*ContainerFilter) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{53} + return fileDescriptor_00212fb1f9d3bf1c, []int{55} } func (m *ContainerFilter) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3945,7 +4080,7 @@ type ListContainersRequest struct { func (m *ListContainersRequest) Reset() { *m = ListContainersRequest{} } func (*ListContainersRequest) ProtoMessage() {} func (*ListContainersRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{54} + return fileDescriptor_00212fb1f9d3bf1c, []int{56} } func (m *ListContainersRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4014,7 +4149,7 @@ type Container struct { func (m *Container) Reset() { *m = Container{} } func (*Container) ProtoMessage() {} func (*Container) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{55} + return fileDescriptor_00212fb1f9d3bf1c, []int{57} } func (m *Container) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4116,7 +4251,7 @@ type ListContainersResponse struct { func (m *ListContainersResponse) Reset() { *m = ListContainersResponse{} } func (*ListContainersResponse) ProtoMessage() {} func (*ListContainersResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{56} + return fileDescriptor_00212fb1f9d3bf1c, []int{58} } func (m *ListContainersResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4164,7 +4299,7 @@ type ContainerStatusRequest struct { func (m *ContainerStatusRequest) Reset() { *m = ContainerStatusRequest{} } func (*ContainerStatusRequest) ProtoMessage() {} func (*ContainerStatusRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{57} + return fileDescriptor_00212fb1f9d3bf1c, []int{59} } func (m *ContainerStatusRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4251,7 +4386,7 @@ type ContainerStatus struct { func (m *ContainerStatus) Reset() { *m = ContainerStatus{} } func (*ContainerStatus) ProtoMessage() {} func (*ContainerStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{58} + return fileDescriptor_00212fb1f9d3bf1c, []int{60} } func (m *ContainerStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4400,7 +4535,7 @@ type ContainerStatusResponse struct { func (m *ContainerStatusResponse) Reset() { *m = ContainerStatusResponse{} } func (*ContainerStatusResponse) ProtoMessage() {} func (*ContainerStatusResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{59} + return fileDescriptor_00212fb1f9d3bf1c, []int{61} } func (m *ContainerStatusResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4461,7 +4596,7 @@ type UpdateContainerResourcesRequest struct { func (m *UpdateContainerResourcesRequest) Reset() { *m = UpdateContainerResourcesRequest{} } func (*UpdateContainerResourcesRequest) ProtoMessage() {} func (*UpdateContainerResourcesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{60} + return fileDescriptor_00212fb1f9d3bf1c, []int{62} } func (m *UpdateContainerResourcesRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4526,7 +4661,7 @@ type UpdateContainerResourcesResponse struct { func (m *UpdateContainerResourcesResponse) Reset() { *m = UpdateContainerResourcesResponse{} } func (*UpdateContainerResourcesResponse) ProtoMessage() {} func (*UpdateContainerResourcesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{61} + return fileDescriptor_00212fb1f9d3bf1c, []int{63} } func (m *UpdateContainerResourcesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4569,7 +4704,7 @@ type ExecSyncRequest struct { func (m *ExecSyncRequest) Reset() { *m = ExecSyncRequest{} } func (*ExecSyncRequest) ProtoMessage() {} func (*ExecSyncRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{62} + return fileDescriptor_00212fb1f9d3bf1c, []int{64} } func (m *ExecSyncRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4633,7 +4768,7 @@ type ExecSyncResponse struct { func (m *ExecSyncResponse) Reset() { *m = ExecSyncResponse{} } func (*ExecSyncResponse) ProtoMessage() {} func (*ExecSyncResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{63} + return fileDescriptor_00212fb1f9d3bf1c, []int{65} } func (m *ExecSyncResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4709,7 +4844,7 @@ type ExecRequest struct { func (m *ExecRequest) Reset() { *m = ExecRequest{} } func (*ExecRequest) ProtoMessage() {} func (*ExecRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{64} + return fileDescriptor_00212fb1f9d3bf1c, []int{66} } func (m *ExecRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4790,7 +4925,7 @@ type ExecResponse struct { func (m *ExecResponse) Reset() { *m = ExecResponse{} } func (*ExecResponse) ProtoMessage() {} func (*ExecResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{65} + return fileDescriptor_00212fb1f9d3bf1c, []int{67} } func (m *ExecResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4851,7 +4986,7 @@ type AttachRequest struct { func (m *AttachRequest) Reset() { *m = AttachRequest{} } func (*AttachRequest) ProtoMessage() {} func (*AttachRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{66} + return fileDescriptor_00212fb1f9d3bf1c, []int{68} } func (m *AttachRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4925,7 +5060,7 @@ type AttachResponse struct { func (m *AttachResponse) Reset() { *m = AttachResponse{} } func (*AttachResponse) ProtoMessage() {} func (*AttachResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{67} + return fileDescriptor_00212fb1f9d3bf1c, []int{69} } func (m *AttachResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4973,7 +5108,7 @@ type PortForwardRequest struct { func (m *PortForwardRequest) Reset() { *m = PortForwardRequest{} } func (*PortForwardRequest) ProtoMessage() {} func (*PortForwardRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{68} + return fileDescriptor_00212fb1f9d3bf1c, []int{70} } func (m *PortForwardRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5026,7 +5161,7 @@ type PortForwardResponse struct { func (m *PortForwardResponse) Reset() { *m = PortForwardResponse{} } func (*PortForwardResponse) ProtoMessage() {} func (*PortForwardResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{69} + return fileDescriptor_00212fb1f9d3bf1c, []int{71} } func (m *PortForwardResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5072,7 +5207,7 @@ type ImageFilter struct { func (m *ImageFilter) Reset() { *m = ImageFilter{} } func (*ImageFilter) ProtoMessage() {} func (*ImageFilter) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{70} + return fileDescriptor_00212fb1f9d3bf1c, []int{72} } func (m *ImageFilter) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5118,7 +5253,7 @@ type ListImagesRequest struct { func (m *ListImagesRequest) Reset() { *m = ListImagesRequest{} } func (*ListImagesRequest) ProtoMessage() {} func (*ListImagesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{71} + return fileDescriptor_00212fb1f9d3bf1c, []int{73} } func (m *ListImagesRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5180,7 +5315,7 @@ type Image struct { func (m *Image) Reset() { *m = Image{} } func (*Image) ProtoMessage() {} func (*Image) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{72} + return fileDescriptor_00212fb1f9d3bf1c, []int{74} } func (m *Image) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5268,7 +5403,7 @@ type ListImagesResponse struct { func (m *ListImagesResponse) Reset() { *m = ListImagesResponse{} } func (*ListImagesResponse) ProtoMessage() {} func (*ListImagesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{73} + return fileDescriptor_00212fb1f9d3bf1c, []int{75} } func (m *ListImagesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5316,7 +5451,7 @@ type ImageStatusRequest struct { func (m *ImageStatusRequest) Reset() { *m = ImageStatusRequest{} } func (*ImageStatusRequest) ProtoMessage() {} func (*ImageStatusRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{74} + return fileDescriptor_00212fb1f9d3bf1c, []int{76} } func (m *ImageStatusRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5374,7 +5509,7 @@ type ImageStatusResponse struct { func (m *ImageStatusResponse) Reset() { *m = ImageStatusResponse{} } func (*ImageStatusResponse) ProtoMessage() {} func (*ImageStatusResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{75} + return fileDescriptor_00212fb1f9d3bf1c, []int{77} } func (m *ImageStatusResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5435,7 +5570,7 @@ type AuthConfig struct { func (m *AuthConfig) Reset() { *m = AuthConfig{} } func (*AuthConfig) ProtoMessage() {} func (*AuthConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{76} + return fileDescriptor_00212fb1f9d3bf1c, []int{78} } func (m *AuthConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5520,7 +5655,7 @@ type PullImageRequest struct { func (m *PullImageRequest) Reset() { *m = PullImageRequest{} } func (*PullImageRequest) ProtoMessage() {} func (*PullImageRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{77} + return fileDescriptor_00212fb1f9d3bf1c, []int{79} } func (m *PullImageRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5581,7 +5716,7 @@ type PullImageResponse struct { func (m *PullImageResponse) Reset() { *m = PullImageResponse{} } func (*PullImageResponse) ProtoMessage() {} func (*PullImageResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{78} + return fileDescriptor_00212fb1f9d3bf1c, []int{80} } func (m *PullImageResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5627,7 +5762,7 @@ type RemoveImageRequest struct { func (m *RemoveImageRequest) Reset() { *m = RemoveImageRequest{} } func (*RemoveImageRequest) ProtoMessage() {} func (*RemoveImageRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{79} + return fileDescriptor_00212fb1f9d3bf1c, []int{81} } func (m *RemoveImageRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5671,7 +5806,7 @@ type RemoveImageResponse struct { func (m *RemoveImageResponse) Reset() { *m = RemoveImageResponse{} } func (*RemoveImageResponse) ProtoMessage() {} func (*RemoveImageResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{80} + return fileDescriptor_00212fb1f9d3bf1c, []int{82} } func (m *RemoveImageResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5711,7 +5846,7 @@ type NetworkConfig struct { func (m *NetworkConfig) Reset() { *m = NetworkConfig{} } func (*NetworkConfig) ProtoMessage() {} func (*NetworkConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{81} + return fileDescriptor_00212fb1f9d3bf1c, []int{83} } func (m *NetworkConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5756,7 +5891,7 @@ type RuntimeConfig struct { func (m *RuntimeConfig) Reset() { *m = RuntimeConfig{} } func (*RuntimeConfig) ProtoMessage() {} func (*RuntimeConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{82} + return fileDescriptor_00212fb1f9d3bf1c, []int{84} } func (m *RuntimeConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5801,7 +5936,7 @@ type UpdateRuntimeConfigRequest struct { func (m *UpdateRuntimeConfigRequest) Reset() { *m = UpdateRuntimeConfigRequest{} } func (*UpdateRuntimeConfigRequest) ProtoMessage() {} func (*UpdateRuntimeConfigRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{83} + return fileDescriptor_00212fb1f9d3bf1c, []int{85} } func (m *UpdateRuntimeConfigRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5845,7 +5980,7 @@ type UpdateRuntimeConfigResponse struct { func (m *UpdateRuntimeConfigResponse) Reset() { *m = UpdateRuntimeConfigResponse{} } func (*UpdateRuntimeConfigResponse) ProtoMessage() {} func (*UpdateRuntimeConfigResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{84} + return fileDescriptor_00212fb1f9d3bf1c, []int{86} } func (m *UpdateRuntimeConfigResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5903,7 +6038,7 @@ type RuntimeCondition struct { func (m *RuntimeCondition) Reset() { *m = RuntimeCondition{} } func (*RuntimeCondition) ProtoMessage() {} func (*RuntimeCondition) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{85} + return fileDescriptor_00212fb1f9d3bf1c, []int{87} } func (m *RuntimeCondition) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5971,7 +6106,7 @@ type RuntimeStatus struct { func (m *RuntimeStatus) Reset() { *m = RuntimeStatus{} } func (*RuntimeStatus) ProtoMessage() {} func (*RuntimeStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{86} + return fileDescriptor_00212fb1f9d3bf1c, []int{88} } func (m *RuntimeStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6017,7 +6152,7 @@ type StatusRequest struct { func (m *StatusRequest) Reset() { *m = StatusRequest{} } func (*StatusRequest) ProtoMessage() {} func (*StatusRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{87} + return fileDescriptor_00212fb1f9d3bf1c, []int{89} } func (m *StatusRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6068,7 +6203,7 @@ type StatusResponse struct { func (m *StatusResponse) Reset() { *m = StatusResponse{} } func (*StatusResponse) ProtoMessage() {} func (*StatusResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{88} + return fileDescriptor_00212fb1f9d3bf1c, []int{90} } func (m *StatusResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6119,7 +6254,7 @@ type ImageFsInfoRequest struct { func (m *ImageFsInfoRequest) Reset() { *m = ImageFsInfoRequest{} } func (*ImageFsInfoRequest) ProtoMessage() {} func (*ImageFsInfoRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{89} + return fileDescriptor_00212fb1f9d3bf1c, []int{91} } func (m *ImageFsInfoRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6159,7 +6294,7 @@ type UInt64Value struct { func (m *UInt64Value) Reset() { *m = UInt64Value{} } func (*UInt64Value) ProtoMessage() {} func (*UInt64Value) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{90} + return fileDescriptor_00212fb1f9d3bf1c, []int{92} } func (m *UInt64Value) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6206,7 +6341,7 @@ type FilesystemIdentifier struct { func (m *FilesystemIdentifier) Reset() { *m = FilesystemIdentifier{} } func (*FilesystemIdentifier) ProtoMessage() {} func (*FilesystemIdentifier) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{91} + return fileDescriptor_00212fb1f9d3bf1c, []int{93} } func (m *FilesystemIdentifier) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6263,7 +6398,7 @@ type FilesystemUsage struct { func (m *FilesystemUsage) Reset() { *m = FilesystemUsage{} } func (*FilesystemUsage) ProtoMessage() {} func (*FilesystemUsage) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{92} + return fileDescriptor_00212fb1f9d3bf1c, []int{94} } func (m *FilesystemUsage) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6330,7 +6465,7 @@ type ImageFsInfoResponse struct { func (m *ImageFsInfoResponse) Reset() { *m = ImageFsInfoResponse{} } func (*ImageFsInfoResponse) ProtoMessage() {} func (*ImageFsInfoResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{93} + return fileDescriptor_00212fb1f9d3bf1c, []int{95} } func (m *ImageFsInfoResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6376,7 +6511,7 @@ type ContainerStatsRequest struct { func (m *ContainerStatsRequest) Reset() { *m = ContainerStatsRequest{} } func (*ContainerStatsRequest) ProtoMessage() {} func (*ContainerStatsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{94} + return fileDescriptor_00212fb1f9d3bf1c, []int{96} } func (m *ContainerStatsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6422,7 +6557,7 @@ type ContainerStatsResponse struct { func (m *ContainerStatsResponse) Reset() { *m = ContainerStatsResponse{} } func (*ContainerStatsResponse) ProtoMessage() {} func (*ContainerStatsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{95} + return fileDescriptor_00212fb1f9d3bf1c, []int{97} } func (m *ContainerStatsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6468,7 +6603,7 @@ type ListContainerStatsRequest struct { func (m *ListContainerStatsRequest) Reset() { *m = ListContainerStatsRequest{} } func (*ListContainerStatsRequest) ProtoMessage() {} func (*ListContainerStatsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{96} + return fileDescriptor_00212fb1f9d3bf1c, []int{98} } func (m *ListContainerStatsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6522,7 +6657,7 @@ type ContainerStatsFilter struct { func (m *ContainerStatsFilter) Reset() { *m = ContainerStatsFilter{} } func (*ContainerStatsFilter) ProtoMessage() {} func (*ContainerStatsFilter) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{97} + return fileDescriptor_00212fb1f9d3bf1c, []int{99} } func (m *ContainerStatsFilter) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6582,7 +6717,7 @@ type ListContainerStatsResponse struct { func (m *ListContainerStatsResponse) Reset() { *m = ListContainerStatsResponse{} } func (*ListContainerStatsResponse) ProtoMessage() {} func (*ListContainerStatsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{98} + return fileDescriptor_00212fb1f9d3bf1c, []int{100} } func (m *ListContainerStatsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6638,7 +6773,7 @@ type ContainerAttributes struct { func (m *ContainerAttributes) Reset() { *m = ContainerAttributes{} } func (*ContainerAttributes) ProtoMessage() {} func (*ContainerAttributes) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{99} + return fileDescriptor_00212fb1f9d3bf1c, []int{101} } func (m *ContainerAttributes) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6712,7 +6847,7 @@ type ContainerStats struct { func (m *ContainerStats) Reset() { *m = ContainerStats{} } func (*ContainerStats) ProtoMessage() {} func (*ContainerStats) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{100} + return fileDescriptor_00212fb1f9d3bf1c, []int{102} } func (m *ContainerStats) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6782,7 +6917,7 @@ type CpuUsage struct { func (m *CpuUsage) Reset() { *m = CpuUsage{} } func (*CpuUsage) ProtoMessage() {} func (*CpuUsage) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{101} + return fileDescriptor_00212fb1f9d3bf1c, []int{103} } func (m *CpuUsage) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6838,7 +6973,7 @@ type MemoryUsage struct { func (m *MemoryUsage) Reset() { *m = MemoryUsage{} } func (*MemoryUsage) ProtoMessage() {} func (*MemoryUsage) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{102} + return fileDescriptor_00212fb1f9d3bf1c, []int{104} } func (m *MemoryUsage) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6891,7 +7026,7 @@ type ReopenContainerLogRequest struct { func (m *ReopenContainerLogRequest) Reset() { *m = ReopenContainerLogRequest{} } func (*ReopenContainerLogRequest) ProtoMessage() {} func (*ReopenContainerLogRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{103} + return fileDescriptor_00212fb1f9d3bf1c, []int{105} } func (m *ReopenContainerLogRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6935,7 +7070,7 @@ type ReopenContainerLogResponse struct { func (m *ReopenContainerLogResponse) Reset() { *m = ReopenContainerLogResponse{} } func (*ReopenContainerLogResponse) ProtoMessage() {} func (*ReopenContainerLogResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{104} + return fileDescriptor_00212fb1f9d3bf1c, []int{106} } func (m *ReopenContainerLogResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7019,6 +7154,8 @@ func init() { proto.RegisterType((*Capability)(nil), "runtime.v1alpha2.Capability") proto.RegisterType((*LinuxContainerSecurityContext)(nil), "runtime.v1alpha2.LinuxContainerSecurityContext") proto.RegisterType((*LinuxContainerConfig)(nil), "runtime.v1alpha2.LinuxContainerConfig") + proto.RegisterType((*WindowsSandboxSecurityContext)(nil), "runtime.v1alpha2.WindowsSandboxSecurityContext") + proto.RegisterType((*WindowsPodSandboxConfig)(nil), "runtime.v1alpha2.WindowsPodSandboxConfig") proto.RegisterType((*WindowsContainerSecurityContext)(nil), "runtime.v1alpha2.WindowsContainerSecurityContext") proto.RegisterType((*WindowsContainerConfig)(nil), "runtime.v1alpha2.WindowsContainerConfig") proto.RegisterType((*WindowsContainerResources)(nil), "runtime.v1alpha2.WindowsContainerResources") @@ -7105,322 +7242,326 @@ func init() { func init() { proto.RegisterFile("api.proto", fileDescriptor_00212fb1f9d3bf1c) } var fileDescriptor_00212fb1f9d3bf1c = []byte{ - // 5033 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x7c, 0x4d, 0x6c, 0x1b, 0x49, - 0x76, 0xbf, 0x9a, 0xa4, 0x24, 0xf2, 0x51, 0xa4, 0xa8, 0xb2, 0x6c, 0xd1, 0xf4, 0xd8, 0x63, 0xb7, - 0xc7, 0x9f, 0x33, 0x96, 0xd7, 0x9a, 0x59, 0xcf, 0xdf, 0xf6, 0x8c, 0x6d, 0x5a, 0x92, 0x6d, 0xfe, - 0xd7, 0xa6, 0x98, 0xa6, 0x34, 0x1f, 0x3b, 0x03, 0xf4, 0xb6, 0xd8, 0x25, 0xaa, 0xd7, 0x64, 0x77, - 0x4f, 0x77, 0xd3, 0xb6, 0x36, 0x40, 0xb0, 0xc0, 0x02, 0x7b, 0xc8, 0x29, 0xe7, 0x1c, 0x37, 0x87, - 0x1c, 0x72, 0xca, 0x21, 0xa7, 0x9c, 0x36, 0xc8, 0x61, 0x11, 0x20, 0x48, 0x4e, 0x9b, 0x04, 0xb9, - 0x64, 0x26, 0x08, 0xb0, 0x08, 0x90, 0x20, 0xc8, 0x39, 0x87, 0xa0, 0xbe, 0xfa, 0xbb, 0xf9, 0x61, - 0x7b, 0x76, 0x36, 0x27, 0xb1, 0x5e, 0xbf, 0xf7, 0xea, 0xf5, 0xab, 0x57, 0xaf, 0x5e, 0xfd, 0xaa, - 0x5a, 0x50, 0xd2, 0x6c, 0x63, 0xdd, 0x76, 0x2c, 0xcf, 0x42, 0x35, 0x67, 0x64, 0x7a, 0xc6, 0x10, - 0xaf, 0x3f, 0xbf, 0xa1, 0x0d, 0xec, 0x43, 0x6d, 0xa3, 0x71, 0xad, 0x6f, 0x78, 0x87, 0xa3, 0xfd, - 0xf5, 0x9e, 0x35, 0xbc, 0xde, 0xb7, 0xfa, 0xd6, 0x75, 0xca, 0xb8, 0x3f, 0x3a, 0xa0, 0x2d, 0xda, - 0xa0, 0xbf, 0x98, 0x02, 0xf9, 0x2a, 0x54, 0x3f, 0xc1, 0x8e, 0x6b, 0x58, 0xa6, 0x82, 0xbf, 0x1a, - 0x61, 0xd7, 0x43, 0x75, 0x58, 0x7c, 0xce, 0x28, 0x75, 0xe9, 0xac, 0x74, 0xb9, 0xa4, 0x88, 0xa6, - 0xfc, 0xa7, 0x12, 0x2c, 0xfb, 0xcc, 0xae, 0x6d, 0x99, 0x2e, 0xce, 0xe6, 0x46, 0xe7, 0x60, 0x89, - 0x1b, 0xa7, 0x9a, 0xda, 0x10, 0xd7, 0x73, 0xf4, 0x71, 0x99, 0xd3, 0xda, 0xda, 0x10, 0xa3, 0x4b, - 0xb0, 0x2c, 0x58, 0x84, 0x92, 0x3c, 0xe5, 0xaa, 0x72, 0x32, 0xef, 0x0d, 0xad, 0xc3, 0x31, 0xc1, - 0xa8, 0xd9, 0x86, 0xcf, 0x5c, 0xa0, 0xcc, 0x2b, 0xfc, 0x51, 0xd3, 0x36, 0x38, 0xbf, 0xfc, 0x05, - 0x94, 0xb6, 0xda, 0xdd, 0x4d, 0xcb, 0x3c, 0x30, 0xfa, 0xc4, 0x44, 0x17, 0x3b, 0x44, 0xa6, 0x2e, - 0x9d, 0xcd, 0x13, 0x13, 0x79, 0x13, 0x35, 0xa0, 0xe8, 0x62, 0xcd, 0xe9, 0x1d, 0x62, 0xb7, 0x9e, - 0xa3, 0x8f, 0xfc, 0x36, 0x91, 0xb2, 0x6c, 0xcf, 0xb0, 0x4c, 0xb7, 0x9e, 0x67, 0x52, 0xbc, 0x29, - 0xff, 0x42, 0x82, 0x72, 0xc7, 0x72, 0xbc, 0xa7, 0x9a, 0x6d, 0x1b, 0x66, 0x1f, 0xdd, 0x84, 0x22, - 0xf5, 0x65, 0xcf, 0x1a, 0x50, 0x1f, 0x54, 0x37, 0x1a, 0xeb, 0xf1, 0x61, 0x59, 0xef, 0x70, 0x0e, - 0xc5, 0xe7, 0x45, 0x17, 0xa0, 0xda, 0xb3, 0x4c, 0x4f, 0x33, 0x4c, 0xec, 0xa8, 0xb6, 0xe5, 0x78, - 0xd4, 0x45, 0xf3, 0x4a, 0xc5, 0xa7, 0x92, 0x5e, 0xd0, 0x29, 0x28, 0x1d, 0x5a, 0xae, 0xc7, 0x38, - 0xf2, 0x94, 0xa3, 0x48, 0x08, 0xf4, 0xe1, 0x1a, 0x2c, 0xd2, 0x87, 0x86, 0xcd, 0x9d, 0xb1, 0x40, - 0x9a, 0x2d, 0x5b, 0xfe, 0xb5, 0x04, 0xf3, 0x4f, 0xad, 0x91, 0xe9, 0xc5, 0xba, 0xd1, 0xbc, 0x43, - 0x3e, 0x50, 0xa1, 0x6e, 0x34, 0xef, 0x30, 0xe8, 0x86, 0x70, 0xb0, 0xb1, 0x62, 0xdd, 0x90, 0x87, - 0x0d, 0x28, 0x3a, 0x58, 0xd3, 0x2d, 0x73, 0x70, 0x44, 0x4d, 0x28, 0x2a, 0x7e, 0x9b, 0x0c, 0xa2, - 0x8b, 0x07, 0x86, 0x39, 0x7a, 0xa9, 0x3a, 0x78, 0xa0, 0xed, 0xe3, 0x01, 0x35, 0xa5, 0xa8, 0x54, - 0x39, 0x59, 0x61, 0x54, 0xb4, 0x05, 0x65, 0xdb, 0xb1, 0x6c, 0xad, 0xaf, 0x11, 0x3f, 0xd6, 0xe7, - 0xa9, 0xab, 0xe4, 0xa4, 0xab, 0xa8, 0xd9, 0x9d, 0x80, 0x53, 0x09, 0x8b, 0xc9, 0x7f, 0x27, 0xc1, - 0x32, 0x09, 0x1e, 0xd7, 0xd6, 0x7a, 0x78, 0x87, 0x0e, 0x09, 0xba, 0x05, 0x8b, 0x26, 0xf6, 0x5e, - 0x58, 0xce, 0x33, 0x3e, 0x00, 0x6f, 0x27, 0xb5, 0xfa, 0x32, 0x4f, 0x2d, 0x1d, 0x2b, 0x82, 0x1f, - 0xdd, 0x80, 0xbc, 0x6d, 0xe8, 0xf4, 0x85, 0xa7, 0x10, 0x23, 0xbc, 0x44, 0xc4, 0xb0, 0x7b, 0xd4, - 0x0f, 0xd3, 0x88, 0x18, 0x76, 0x8f, 0x38, 0xd7, 0xd3, 0x9c, 0x3e, 0xf6, 0x54, 0x43, 0xe7, 0x03, - 0x55, 0x64, 0x84, 0x96, 0x2e, 0xcb, 0x00, 0x2d, 0xd3, 0xbb, 0xf9, 0xc1, 0x27, 0xda, 0x60, 0x84, - 0xd1, 0x2a, 0xcc, 0x3f, 0x27, 0x3f, 0xe8, 0x9b, 0xe4, 0x15, 0xd6, 0x90, 0xbf, 0x2e, 0xc0, 0xa9, - 0x27, 0xc4, 0x99, 0x5d, 0xcd, 0xd4, 0xf7, 0xad, 0x97, 0x5d, 0xdc, 0x1b, 0x39, 0x86, 0x77, 0xb4, - 0x69, 0x99, 0x1e, 0x7e, 0xe9, 0xa1, 0x36, 0xac, 0x98, 0xa2, 0x5b, 0x55, 0xc4, 0x2d, 0xd1, 0x50, - 0xde, 0x38, 0x37, 0xc6, 0x42, 0xe6, 0x3f, 0xa5, 0x66, 0x46, 0x09, 0x2e, 0x7a, 0x1c, 0x0c, 0xaa, - 0xd0, 0x96, 0xa3, 0xda, 0x52, 0xde, 0xb7, 0xbb, 0x4d, 0x2d, 0xe3, 0xba, 0xc4, 0xa8, 0x0b, 0x4d, - 0x1f, 0x01, 0x99, 0xf2, 0xaa, 0xe6, 0xaa, 0x23, 0x17, 0x3b, 0xd4, 0x6b, 0xe5, 0x8d, 0xb7, 0x92, - 0x5a, 0x02, 0x17, 0x28, 0x25, 0x67, 0x64, 0x36, 0xdd, 0x3d, 0x17, 0x3b, 0xe8, 0x2e, 0x4d, 0x22, - 0x44, 0xba, 0xef, 0x58, 0x23, 0xbb, 0x5e, 0x9c, 0x42, 0x1c, 0xa8, 0xf8, 0x23, 0xc2, 0x4f, 0x33, - 0x0c, 0x0f, 0x54, 0xd5, 0xb1, 0x2c, 0xef, 0xc0, 0x15, 0xc1, 0x29, 0xc8, 0x0a, 0xa5, 0xa2, 0xeb, - 0x70, 0xcc, 0x1d, 0xd9, 0xf6, 0x00, 0x0f, 0xb1, 0xe9, 0x69, 0x03, 0xd6, 0x9d, 0x5b, 0x9f, 0x3f, - 0x9b, 0xbf, 0x9c, 0x57, 0x50, 0xf8, 0x11, 0x55, 0xec, 0xa2, 0x33, 0x00, 0xb6, 0x63, 0x3c, 0x37, - 0x06, 0xb8, 0x8f, 0xf5, 0xfa, 0x02, 0x55, 0x1a, 0xa2, 0xa0, 0x3b, 0x24, 0xeb, 0xf4, 0x7a, 0xd6, - 0xd0, 0xae, 0x97, 0xb2, 0xc6, 0x41, 0x8c, 0x62, 0xc7, 0xb1, 0x0e, 0x8c, 0x01, 0x56, 0x84, 0x04, - 0xfa, 0x18, 0x8a, 0x9a, 0x6d, 0x6b, 0xce, 0xd0, 0x72, 0xea, 0x30, 0xad, 0xb4, 0x2f, 0x82, 0x3e, - 0x80, 0x55, 0xae, 0x49, 0xb5, 0xd9, 0x43, 0x36, 0xad, 0x17, 0x49, 0xe4, 0x3d, 0xc8, 0xd5, 0x25, - 0x05, 0xf1, 0xe7, 0x5c, 0x96, 0x4c, 0x72, 0xf9, 0x6f, 0x24, 0x58, 0x8e, 0xe9, 0x44, 0x1d, 0x58, - 0x12, 0x1a, 0xbc, 0x23, 0x1b, 0xf3, 0xe9, 0x75, 0x6d, 0xa2, 0x31, 0xeb, 0xfc, 0xef, 0xee, 0x91, - 0x8d, 0xe9, 0xfc, 0x15, 0x0d, 0x74, 0x1e, 0x2a, 0x03, 0xab, 0xa7, 0x0d, 0x68, 0xb2, 0x71, 0xf0, - 0x01, 0xcf, 0x35, 0x4b, 0x3e, 0x51, 0xc1, 0x07, 0xf2, 0x7d, 0x28, 0x87, 0x14, 0x20, 0x04, 0x55, - 0x85, 0x75, 0xb8, 0x85, 0x0f, 0xb4, 0xd1, 0xc0, 0xab, 0xcd, 0xa1, 0x2a, 0xc0, 0x9e, 0xd9, 0x23, - 0x19, 0xde, 0xc4, 0x7a, 0x4d, 0x42, 0x15, 0x28, 0x3d, 0x11, 0x2a, 0x6a, 0x39, 0xf9, 0x17, 0x39, - 0x38, 0x4e, 0xc3, 0xb2, 0x63, 0xe9, 0x7c, 0xce, 0xf0, 0xe5, 0xe0, 0x3c, 0x54, 0x7a, 0x74, 0x74, - 0x55, 0x5b, 0x73, 0xb0, 0xe9, 0xf1, 0x74, 0xb8, 0xc4, 0x88, 0x1d, 0x4a, 0x43, 0x9f, 0x41, 0xcd, - 0xe5, 0x6f, 0xa4, 0xf6, 0xd8, 0x1c, 0xe3, 0x13, 0x20, 0xe5, 0xdd, 0xc7, 0x4c, 0x4c, 0x65, 0xd9, - 0x4d, 0xcc, 0xd4, 0x45, 0xf7, 0xc8, 0xed, 0x79, 0x03, 0xb6, 0xae, 0x94, 0x37, 0x3e, 0xc8, 0x50, - 0x18, 0x37, 0x7c, 0xbd, 0xcb, 0xc4, 0xb6, 0x4d, 0xcf, 0x39, 0x52, 0x84, 0x92, 0xc6, 0x6d, 0x58, - 0x0a, 0x3f, 0x40, 0x35, 0xc8, 0x3f, 0xc3, 0x47, 0xfc, 0xa5, 0xc8, 0xcf, 0x20, 0xa3, 0x30, 0x4f, - 0xb3, 0xc6, 0xed, 0xdc, 0xff, 0x93, 0x64, 0x07, 0x50, 0xd0, 0xcb, 0x53, 0xec, 0x69, 0xba, 0xe6, - 0x69, 0x08, 0x41, 0x81, 0x2e, 0xd8, 0x4c, 0x05, 0xfd, 0x4d, 0xb4, 0x8e, 0x78, 0x9a, 0x2c, 0x29, - 0xe4, 0x27, 0x7a, 0x0b, 0x4a, 0x7e, 0xd6, 0xe0, 0xab, 0x76, 0x40, 0x20, 0xab, 0xa7, 0xe6, 0x79, - 0x78, 0x68, 0x7b, 0x74, 0xbe, 0x55, 0x14, 0xd1, 0x94, 0xff, 0xb3, 0x00, 0xb5, 0xc4, 0x98, 0xdc, - 0x87, 0xe2, 0x90, 0x77, 0xcf, 0xb3, 0xd6, 0x3b, 0x29, 0x4b, 0x68, 0xc2, 0x54, 0xc5, 0x97, 0x22, - 0x2b, 0x14, 0x19, 0xf9, 0x50, 0xa5, 0xe1, 0xb7, 0x59, 0xc8, 0xf5, 0x55, 0xdd, 0x70, 0x70, 0xcf, - 0xb3, 0x9c, 0x23, 0x6e, 0xee, 0xd2, 0xc0, 0xea, 0x6f, 0x09, 0x1a, 0xba, 0x0d, 0xa0, 0x9b, 0xae, - 0x4a, 0x23, 0xaa, 0x4f, 0x8d, 0x2e, 0x6f, 0x9c, 0x4a, 0x1a, 0xe1, 0x97, 0x15, 0x4a, 0x49, 0x37, - 0x5d, 0x6e, 0xfe, 0x03, 0xa8, 0x90, 0xd5, 0x59, 0x1d, 0xb2, 0x8a, 0x80, 0xa5, 0x8d, 0xf2, 0xc6, - 0xe9, 0xb4, 0x77, 0xf0, 0xeb, 0x06, 0x65, 0xc9, 0x0e, 0x1a, 0x2e, 0x7a, 0x08, 0x0b, 0x74, 0x99, - 0x74, 0xeb, 0x0b, 0x54, 0x78, 0x7d, 0x9c, 0x03, 0x78, 0x44, 0x3c, 0xa1, 0x02, 0x2c, 0x20, 0xb8, - 0x34, 0xda, 0x83, 0xb2, 0x66, 0x9a, 0x96, 0xa7, 0xb1, 0xac, 0xbd, 0x48, 0x95, 0xbd, 0x3f, 0x85, - 0xb2, 0x66, 0x20, 0xc5, 0x34, 0x86, 0xf5, 0xa0, 0x8f, 0x61, 0x9e, 0xa6, 0x75, 0x9e, 0x81, 0x2f, - 0x4d, 0x19, 0xb4, 0x0a, 0x93, 0x6a, 0xdc, 0x82, 0x72, 0xc8, 0xd8, 0x59, 0x82, 0xb4, 0x71, 0x17, - 0x6a, 0x71, 0xd3, 0x66, 0x0a, 0xf2, 0xdf, 0x87, 0x55, 0x65, 0x64, 0x06, 0x86, 0x89, 0x3a, 0xf7, - 0x36, 0x2c, 0xf0, 0xc1, 0x66, 0x11, 0x27, 0x4f, 0xf6, 0x91, 0xc2, 0x25, 0xc2, 0x85, 0xeb, 0xa1, - 0x66, 0xea, 0x03, 0xec, 0xf0, 0x7e, 0x45, 0xe1, 0xfa, 0x98, 0x51, 0xe5, 0x8f, 0xe1, 0x78, 0xac, - 0x73, 0x5e, 0x37, 0xbf, 0x03, 0x55, 0xdb, 0xd2, 0x55, 0x97, 0x91, 0x49, 0x59, 0xc0, 0xd3, 0x90, - 0xed, 0xf3, 0xb6, 0x74, 0x22, 0xde, 0xf5, 0x2c, 0x3b, 0x69, 0xfc, 0x74, 0xe2, 0x75, 0x38, 0x11, - 0x17, 0x67, 0xdd, 0xcb, 0xf7, 0x60, 0x4d, 0xc1, 0x43, 0xeb, 0x39, 0x7e, 0x55, 0xd5, 0x0d, 0xa8, - 0x27, 0x15, 0x70, 0xe5, 0x9f, 0xc3, 0x5a, 0x40, 0xed, 0x7a, 0x9a, 0x37, 0x72, 0x67, 0x52, 0xce, - 0x37, 0x15, 0xfb, 0x96, 0xcb, 0x86, 0xb3, 0xa8, 0x88, 0xa6, 0xbc, 0x06, 0xf3, 0x1d, 0x4b, 0x6f, - 0x75, 0x50, 0x15, 0x72, 0x86, 0xcd, 0x85, 0x73, 0x86, 0x2d, 0x1b, 0xe1, 0x3e, 0xdb, 0xac, 0xb8, - 0x63, 0x5d, 0xc7, 0x59, 0xd1, 0x5d, 0xa8, 0x6a, 0xba, 0x6e, 0x90, 0x70, 0xd2, 0x06, 0xaa, 0x61, - 0xb3, 0xda, 0xbf, 0xbc, 0xb1, 0x96, 0x1a, 0x00, 0xad, 0x8e, 0x52, 0x09, 0xd8, 0x5b, 0xb6, 0x2b, - 0x3f, 0x86, 0x92, 0x5f, 0x40, 0x91, 0x65, 0x3e, 0x5a, 0x20, 0x4d, 0x51, 0x6e, 0xf9, 0x3b, 0x89, - 0xdd, 0xc4, 0x1a, 0xc5, 0x4d, 0xbe, 0x03, 0xe0, 0xe7, 0x52, 0x51, 0xc7, 0x9d, 0x1a, 0xa3, 0x58, - 0x09, 0xb1, 0xcb, 0x3f, 0x9b, 0x0f, 0x67, 0xd8, 0x90, 0x13, 0x74, 0xdf, 0x09, 0x7a, 0x24, 0xe3, - 0xe6, 0x5e, 0x29, 0xe3, 0x7e, 0x08, 0xf3, 0xae, 0xa7, 0x79, 0x98, 0x17, 0xc2, 0xe7, 0xc6, 0x89, - 0x13, 0x23, 0xb0, 0xc2, 0xf8, 0xd1, 0x69, 0x80, 0x9e, 0x83, 0x35, 0x0f, 0xeb, 0xaa, 0xc6, 0x96, - 0x87, 0xbc, 0x52, 0xe2, 0x94, 0xa6, 0x87, 0x36, 0x83, 0x62, 0x7e, 0x9e, 0x1a, 0x76, 0x65, 0x9c, - 0xe6, 0xc8, 0x50, 0x07, 0x65, 0xbd, 0x9f, 0xae, 0x16, 0xa6, 0x4c, 0x57, 0x5c, 0x01, 0x93, 0x0a, - 0x25, 0xe3, 0xc5, 0xc9, 0xc9, 0x98, 0x89, 0x4e, 0x93, 0x8c, 0x8b, 0x93, 0x93, 0x31, 0x57, 0x36, - 0x3e, 0x19, 0xa7, 0xa4, 0x9f, 0x52, 0x5a, 0xfa, 0xf9, 0x2e, 0xd3, 0xee, 0x3f, 0x49, 0x50, 0x4f, - 0x66, 0x01, 0x9e, 0xfd, 0x6e, 0xc3, 0x82, 0x4b, 0x29, 0xd3, 0xe4, 0x5e, 0x2e, 0xcb, 0x25, 0xd0, - 0x63, 0x28, 0x18, 0xe6, 0x81, 0xc5, 0x27, 0xed, 0x07, 0x53, 0x48, 0xf2, 0x5e, 0xd7, 0x5b, 0xe6, - 0x81, 0xc5, 0xbc, 0x49, 0x35, 0x34, 0x3e, 0x84, 0x92, 0x4f, 0x9a, 0xe9, 0xdd, 0x76, 0x60, 0x35, - 0x16, 0xdb, 0x6c, 0xef, 0xe6, 0x4f, 0x09, 0x69, 0xb6, 0x29, 0x21, 0xff, 0x34, 0x17, 0x9e, 0xb2, - 0x0f, 0x8d, 0x81, 0x87, 0x9d, 0xc4, 0x94, 0xfd, 0x48, 0x68, 0x67, 0xf3, 0xf5, 0xe2, 0x44, 0xed, - 0x6c, 0x3b, 0xc4, 0x67, 0xdd, 0x97, 0x50, 0xa5, 0x41, 0xa9, 0xba, 0x78, 0x40, 0x4b, 0x1e, 0x5e, - 0x7e, 0x7e, 0x7f, 0x9c, 0x1a, 0x66, 0x09, 0x0b, 0xed, 0x2e, 0x97, 0x63, 0x1e, 0xac, 0x0c, 0xc2, - 0xb4, 0xc6, 0x7d, 0x40, 0x49, 0xa6, 0x99, 0x7c, 0xda, 0x25, 0xb9, 0xd0, 0xf5, 0x52, 0xd7, 0xe9, - 0x03, 0x6a, 0xc6, 0x34, 0xb1, 0xc2, 0x0c, 0x56, 0xb8, 0x84, 0xfc, 0x1f, 0x79, 0x80, 0xe0, 0xe1, - 0xff, 0xa1, 0x24, 0x78, 0xdf, 0x4f, 0x40, 0xac, 0x94, 0xbc, 0x3c, 0x4e, 0x71, 0x6a, 0xea, 0xd9, - 0x89, 0xa6, 0x1e, 0x56, 0x54, 0x5e, 0x1b, 0xab, 0x66, 0xe6, 0xa4, 0xb3, 0xf8, 0xbb, 0x96, 0x74, - 0x9e, 0xc0, 0x89, 0x78, 0x10, 0xf1, 0x8c, 0xb3, 0x01, 0xf3, 0x86, 0x87, 0x87, 0x0c, 0x02, 0x4c, - 0x45, 0x10, 0x42, 0x42, 0x8c, 0x55, 0xfe, 0x73, 0x09, 0x4a, 0xad, 0xa1, 0xd6, 0xc7, 0x5d, 0x1b, - 0xf7, 0x48, 0xaf, 0x06, 0x69, 0x70, 0x4b, 0x58, 0x03, 0xb5, 0xa3, 0x6e, 0x66, 0x49, 0xe9, 0xbd, - 0x14, 0x7c, 0x42, 0xe8, 0x19, 0xef, 0xe5, 0xd7, 0xf6, 0xc0, 0x06, 0x14, 0x7f, 0x80, 0x8f, 0x58, - 0x3a, 0x9a, 0x52, 0x4e, 0xfe, 0x87, 0x1c, 0xac, 0xd1, 0xe5, 0x70, 0x53, 0x20, 0x82, 0x0a, 0x76, - 0xad, 0x91, 0xd3, 0xc3, 0x2e, 0x8d, 0x53, 0x7b, 0xa4, 0xda, 0xd8, 0x31, 0x2c, 0x9d, 0x63, 0x52, - 0xa5, 0x9e, 0x3d, 0xea, 0x50, 0x02, 0x3a, 0x05, 0xa4, 0xa1, 0x7e, 0x35, 0xb2, 0xf8, 0x14, 0xca, - 0x2b, 0xc5, 0x9e, 0x3d, 0xfa, 0x3d, 0xd2, 0x16, 0xb2, 0xee, 0xa1, 0xe6, 0x60, 0x97, 0xce, 0x10, - 0x26, 0xdb, 0xa5, 0x04, 0x74, 0x03, 0x8e, 0x0f, 0xf1, 0xd0, 0x72, 0x8e, 0xd4, 0x81, 0x31, 0x34, - 0x3c, 0xd5, 0x30, 0xd5, 0xfd, 0x23, 0x0f, 0xbb, 0x7c, 0x36, 0x20, 0xf6, 0xf0, 0x09, 0x79, 0xd6, - 0x32, 0x1f, 0x90, 0x27, 0x48, 0x86, 0x8a, 0x65, 0x0d, 0x55, 0xb7, 0x67, 0x39, 0x58, 0xd5, 0xf4, - 0x1f, 0xd3, 0x0a, 0x21, 0xaf, 0x94, 0x2d, 0x6b, 0xd8, 0x25, 0xb4, 0xa6, 0xfe, 0x63, 0xf4, 0x36, - 0x94, 0x7b, 0xf6, 0xc8, 0xc5, 0x9e, 0x4a, 0xfe, 0xd0, 0x02, 0xa0, 0xa4, 0x00, 0x23, 0x6d, 0xda, - 0x23, 0x37, 0xc4, 0x30, 0x24, 0x01, 0xb1, 0x18, 0x66, 0x78, 0x8a, 0x87, 0x14, 0xfc, 0x3a, 0x1c, - 0xf5, 0xb1, 0xad, 0xf5, 0x31, 0x33, 0x4d, 0xac, 0xdc, 0x29, 0xe0, 0xd7, 0x63, 0xce, 0x48, 0xcd, - 0x54, 0xaa, 0x87, 0xe1, 0xa6, 0x2b, 0x3f, 0x80, 0x4a, 0x84, 0x81, 0xf8, 0x8b, 0xaa, 0x75, 0x8d, - 0x9f, 0x88, 0x40, 0x2a, 0x12, 0x42, 0xd7, 0xf8, 0x09, 0x85, 0xfe, 0x68, 0x77, 0xd4, 0x91, 0x05, - 0x85, 0x35, 0x64, 0x0d, 0x2a, 0x11, 0x84, 0x8d, 0xec, 0xcf, 0x29, 0x94, 0xc6, 0xf7, 0xe7, 0xe4, - 0x37, 0xa1, 0x39, 0xd6, 0x40, 0x8c, 0x2b, 0xfd, 0x4d, 0x68, 0x14, 0xb3, 0x61, 0xbb, 0x5d, 0xfa, - 0x9b, 0x76, 0x81, 0x9f, 0x73, 0x88, 0xb6, 0xa4, 0xb0, 0x86, 0xac, 0x03, 0x6c, 0x6a, 0xb6, 0xb6, - 0x6f, 0x0c, 0x0c, 0xef, 0x08, 0x5d, 0x81, 0x9a, 0xa6, 0xeb, 0x6a, 0x4f, 0x50, 0x0c, 0x2c, 0x80, - 0xf3, 0x65, 0x4d, 0xd7, 0x37, 0x43, 0x64, 0xf4, 0x2e, 0xac, 0xe8, 0x8e, 0x65, 0x47, 0x79, 0x19, - 0x92, 0x5e, 0x23, 0x0f, 0xc2, 0xcc, 0xf2, 0x6f, 0x16, 0xe0, 0x74, 0x34, 0xcc, 0xe2, 0x28, 0xe6, - 0x7d, 0x58, 0x8a, 0xf5, 0x9a, 0x81, 0xf6, 0x05, 0xd6, 0x2a, 0x11, 0x89, 0x18, 0x2a, 0x97, 0x4b, - 0xa0, 0x72, 0xa9, 0x38, 0x69, 0xfe, 0x8d, 0xe2, 0xa4, 0x85, 0x37, 0x82, 0x93, 0xce, 0xbf, 0x1e, - 0x4e, 0xba, 0x34, 0x23, 0x4e, 0x7a, 0x91, 0x26, 0x77, 0xd1, 0x3b, 0x45, 0x51, 0xd8, 0xc4, 0xa9, - 0xf8, 0x7d, 0x98, 0xe2, 0xc4, 0x26, 0x86, 0xa7, 0x2e, 0xce, 0x82, 0xa7, 0x16, 0x33, 0xf1, 0xd4, - 0xb3, 0xb0, 0x64, 0x5a, 0xaa, 0x89, 0x5f, 0xa8, 0x64, 0xb8, 0xdc, 0x7a, 0x99, 0x8d, 0x9d, 0x69, - 0xb5, 0xf1, 0x8b, 0x0e, 0xa1, 0xa0, 0x73, 0xb0, 0x34, 0xd4, 0xdc, 0x67, 0x58, 0xa7, 0x60, 0xa6, - 0x5b, 0xaf, 0xd0, 0x38, 0x2b, 0x33, 0x5a, 0x87, 0x90, 0xd0, 0x05, 0xf0, 0xed, 0xe0, 0x4c, 0x55, - 0xca, 0x54, 0x11, 0x54, 0xc6, 0x16, 0xc2, 0x66, 0x97, 0x5f, 0x0b, 0x9b, 0xad, 0xcd, 0x8e, 0xcd, - 0x5e, 0x83, 0x9a, 0xf8, 0x2d, 0xc0, 0x59, 0x56, 0xbc, 0x53, 0x5c, 0x76, 0x59, 0x3c, 0x13, 0x00, - 0x6c, 0x16, 0x94, 0x0b, 0x63, 0xa1, 0xdc, 0xbf, 0x94, 0x60, 0x35, 0x3a, 0xd5, 0x38, 0x52, 0xf5, - 0x08, 0x4a, 0x8e, 0xc8, 0xed, 0x7c, 0x7a, 0x5d, 0xc9, 0xd8, 0x1b, 0x25, 0x17, 0x03, 0x25, 0x90, - 0x45, 0x3f, 0xcc, 0x04, 0x48, 0xaf, 0x4f, 0xd2, 0x37, 0x09, 0x22, 0x95, 0x1d, 0x78, 0xfb, 0x53, - 0xc3, 0xd4, 0xad, 0x17, 0x6e, 0x66, 0xa6, 0x48, 0x89, 0x57, 0x29, 0x23, 0x5e, 0x7b, 0x0e, 0xd6, - 0xb1, 0xe9, 0x19, 0xda, 0x40, 0x75, 0x6d, 0xdc, 0x13, 0x40, 0x4d, 0x40, 0x26, 0xab, 0xb2, 0xfc, - 0x4b, 0x09, 0x4e, 0xc4, 0x3b, 0xe5, 0x3e, 0x6b, 0x25, 0x7d, 0xf6, 0x6e, 0xf2, 0x1d, 0xe3, 0xc2, - 0xa9, 0x5e, 0xfb, 0x32, 0xd3, 0x6b, 0x37, 0x26, 0x6b, 0x9c, 0xe8, 0xb7, 0x3f, 0x93, 0xe0, 0x64, - 0xa6, 0x19, 0xb1, 0xd5, 0x58, 0x8a, 0xaf, 0xc6, 0x7c, 0x25, 0xef, 0x59, 0x23, 0xd3, 0x0b, 0xad, - 0xe4, 0x9b, 0xf4, 0x0c, 0x91, 0x2d, 0x99, 0xea, 0x50, 0x7b, 0x69, 0x0c, 0x47, 0x43, 0xbe, 0x94, - 0x13, 0x75, 0x4f, 0x19, 0xe5, 0x15, 0xd6, 0x72, 0xb9, 0x09, 0x2b, 0xbe, 0x95, 0x63, 0xb1, 0xe7, - 0x10, 0x96, 0x9c, 0x8b, 0x62, 0xc9, 0x26, 0x2c, 0x6c, 0xe1, 0xe7, 0x46, 0x0f, 0xbf, 0x91, 0x43, - 0xce, 0xb3, 0x50, 0xb6, 0xb1, 0x33, 0x34, 0x5c, 0xd7, 0x5f, 0x15, 0x4a, 0x4a, 0x98, 0x24, 0xff, - 0xdb, 0x02, 0x2c, 0xc7, 0xa3, 0xe3, 0x5e, 0x02, 0xba, 0x3e, 0x9f, 0xb2, 0x5e, 0xc5, 0x5f, 0x34, - 0xb4, 0x85, 0xb8, 0x21, 0xea, 0xca, 0x5c, 0x16, 0xcc, 0xe3, 0xd7, 0x8e, 0xa2, 0xe8, 0xac, 0xc3, - 0x62, 0xcf, 0x1a, 0x0e, 0x35, 0x53, 0x17, 0x67, 0xd3, 0xbc, 0x49, 0xfc, 0xa7, 0x39, 0x7d, 0xe2, - 0x76, 0x42, 0xa6, 0xbf, 0xc9, 0xe0, 0xbd, 0xb0, 0x9c, 0x67, 0x86, 0x49, 0x21, 0x70, 0xba, 0xb2, - 0x94, 0x14, 0xe0, 0xa4, 0x2d, 0xc3, 0x41, 0xeb, 0x50, 0xc0, 0xe6, 0x73, 0xb1, 0x47, 0x48, 0x39, - 0xbc, 0x16, 0x15, 0xa5, 0x42, 0xf9, 0xd0, 0x75, 0x58, 0x18, 0x92, 0xb0, 0x10, 0xe8, 0xc8, 0x5a, - 0xc6, 0x19, 0xae, 0xc2, 0xd9, 0xd0, 0x06, 0x2c, 0xea, 0x74, 0x9c, 0x44, 0x21, 0x55, 0x4f, 0x01, - 0xd6, 0x29, 0x83, 0x22, 0x18, 0xd1, 0xb6, 0xbf, 0x03, 0x2a, 0x65, 0x6d, 0x5d, 0x62, 0x43, 0x91, - 0xba, 0x0d, 0xda, 0x8d, 0xd6, 0xe7, 0x40, 0x75, 0x6d, 0x4c, 0xd6, 0x35, 0x7e, 0x2f, 0x74, 0x12, - 0x8a, 0x03, 0xab, 0xcf, 0xc2, 0xa8, 0xcc, 0xae, 0x3d, 0x0c, 0xac, 0x3e, 0x8d, 0xa2, 0x55, 0xb2, - 0x23, 0xd4, 0x0d, 0x93, 0x2e, 0xc1, 0x45, 0x85, 0x35, 0xc8, 0xe4, 0xa3, 0x3f, 0x54, 0xcb, 0xec, - 0xe1, 0x7a, 0x85, 0x3e, 0x2a, 0x51, 0xca, 0x8e, 0xd9, 0xa3, 0x95, 0xba, 0xe7, 0x1d, 0xd5, 0xab, - 0x94, 0x4e, 0x7e, 0x92, 0xcd, 0x3e, 0x03, 0xb0, 0x96, 0xb3, 0x36, 0xfb, 0x69, 0xf9, 0x5d, 0xe0, - 0x57, 0x0f, 0x60, 0xf1, 0x05, 0x4b, 0x04, 0x7c, 0x89, 0xba, 0x3c, 0x39, 0xbd, 0x70, 0x0d, 0x42, - 0xf0, 0xbb, 0xdc, 0xc6, 0xfd, 0xb5, 0x04, 0x27, 0x36, 0xe9, 0x5e, 0x38, 0x94, 0xc7, 0x66, 0x01, - 0x90, 0x6f, 0xf9, 0xd8, 0x7e, 0x26, 0x28, 0x1b, 0x7f, 0x6f, 0x01, 0xed, 0xb7, 0xa0, 0x2a, 0x94, - 0x73, 0x15, 0xf9, 0xa9, 0x8f, 0x07, 0x2a, 0x6e, 0xb8, 0x29, 0x7f, 0x04, 0x6b, 0x89, 0xb7, 0xe0, - 0xdb, 0xd1, 0x73, 0xb0, 0x14, 0xe4, 0x2b, 0xff, 0x25, 0xca, 0x3e, 0xad, 0xa5, 0xcb, 0xb7, 0xe1, - 0x78, 0xd7, 0xd3, 0x1c, 0x2f, 0xe1, 0x82, 0x29, 0x64, 0x29, 0xf0, 0x1f, 0x95, 0xe5, 0xd8, 0x7c, - 0x17, 0x56, 0xbb, 0x9e, 0x65, 0xbf, 0x82, 0x52, 0x92, 0x75, 0xc8, 0xfb, 0x5b, 0x23, 0xb1, 0x3e, - 0x88, 0xa6, 0xbc, 0xc6, 0x8e, 0x29, 0x92, 0xbd, 0xdd, 0x81, 0x13, 0xec, 0x94, 0xe0, 0x55, 0x5e, - 0xe2, 0xa4, 0x38, 0xa3, 0x48, 0xea, 0x7d, 0x0a, 0xc7, 0x82, 0x65, 0x31, 0xc0, 0xdf, 0x6e, 0x46, - 0xf1, 0xb7, 0xb3, 0x63, 0x46, 0x3d, 0x02, 0xbf, 0xfd, 0x49, 0x2e, 0x94, 0xd7, 0x33, 0xd0, 0xb7, - 0x3b, 0x51, 0xf4, 0xed, 0xc2, 0x24, 0xdd, 0x11, 0xf0, 0x2d, 0x19, 0xb5, 0xf9, 0x94, 0xa8, 0xfd, - 0x22, 0x01, 0xd1, 0x15, 0xb2, 0x30, 0xce, 0x98, 0xb5, 0xbf, 0x15, 0x84, 0x4e, 0x61, 0x08, 0x9d, - 0xdf, 0xb5, 0x7f, 0xa8, 0x73, 0x2b, 0x86, 0xd0, 0x9d, 0x9b, 0x68, 0xaf, 0x0f, 0xd0, 0xfd, 0x45, - 0x01, 0x4a, 0xfe, 0xb3, 0x84, 0xcf, 0x93, 0x6e, 0xcb, 0xa5, 0xb8, 0x2d, 0xbc, 0x02, 0xe7, 0x5f, - 0x6b, 0x05, 0x2e, 0x4c, 0xbd, 0x02, 0x9f, 0x82, 0x12, 0xfd, 0x41, 0x6f, 0x30, 0xb0, 0x15, 0xb5, - 0x48, 0x09, 0x0a, 0x3e, 0x08, 0xc2, 0x70, 0x61, 0xa6, 0x30, 0x8c, 0x61, 0x82, 0x8b, 0x71, 0x4c, - 0xf0, 0x9e, 0xbf, 0x22, 0xb2, 0x45, 0xf4, 0xd2, 0x18, 0xbd, 0xa9, 0x6b, 0x61, 0x0c, 0xab, 0x2a, - 0x65, 0x61, 0x55, 0x81, 0x96, 0xf1, 0x58, 0xd5, 0x77, 0xb8, 0x42, 0xec, 0x31, 0xa0, 0x2f, 0x1c, - 0x8b, 0x3c, 0xb3, 0xde, 0x01, 0xf0, 0x93, 0x88, 0x40, 0xfb, 0x4e, 0x8d, 0x79, 0x47, 0x25, 0xc4, - 0x4e, 0xd4, 0x46, 0x86, 0x26, 0x38, 0xb8, 0x9c, 0x2e, 0x3f, 0x66, 0x9c, 0x5a, 0xfe, 0xcf, 0x7c, - 0x28, 0xbf, 0x64, 0x1c, 0xc8, 0xdd, 0x4b, 0x60, 0xd1, 0x33, 0x46, 0xf1, 0xcd, 0x28, 0x14, 0xfd, - 0x8a, 0x51, 0x97, 0x40, 0xa2, 0x69, 0xe5, 0xa2, 0x39, 0xfc, 0x31, 0xc3, 0xdb, 0x4a, 0x9c, 0xd2, - 0xa4, 0x3b, 0x83, 0x03, 0xc3, 0x34, 0xdc, 0x43, 0xf6, 0x7c, 0x81, 0xed, 0x0c, 0x04, 0xa9, 0x49, - 0x11, 0x2f, 0xfc, 0xd2, 0xf0, 0xd4, 0x9e, 0xa5, 0x63, 0x1a, 0xd3, 0xf3, 0x4a, 0x91, 0x10, 0x36, - 0x2d, 0x1d, 0x07, 0x33, 0xaf, 0xf8, 0x6a, 0x33, 0xaf, 0x14, 0x9b, 0x79, 0x27, 0x60, 0xc1, 0xc1, - 0x9a, 0x6b, 0x99, 0x6c, 0x7f, 0xac, 0xf0, 0x16, 0x19, 0x9a, 0x21, 0x76, 0x5d, 0xd2, 0x13, 0x2f, - 0xd7, 0x78, 0x33, 0x54, 0x66, 0x2e, 0x4d, 0x2c, 0x33, 0xc7, 0x1c, 0xf4, 0xc5, 0xca, 0xcc, 0xca, - 0xc4, 0x32, 0x73, 0xaa, 0x73, 0xbe, 0xa0, 0xd0, 0xae, 0x4e, 0x57, 0x68, 0x87, 0xeb, 0xd2, 0xe5, - 0x48, 0x5d, 0xfa, 0x5d, 0x4e, 0xd6, 0x5f, 0x4b, 0xb0, 0x96, 0x98, 0x56, 0x7c, 0xba, 0xde, 0x8a, - 0x9d, 0x04, 0x9e, 0x9b, 0xe8, 0x33, 0xff, 0x20, 0xf0, 0x51, 0xe4, 0x20, 0xf0, 0xfd, 0xc9, 0x82, - 0x6f, 0xfc, 0x1c, 0xf0, 0xbf, 0x73, 0xf0, 0xf6, 0x9e, 0xad, 0xc7, 0x2a, 0x3c, 0xbe, 0xed, 0x9f, - 0x3e, 0x71, 0xdc, 0x13, 0xb5, 0x7e, 0x6e, 0x56, 0x40, 0x86, 0x97, 0xfb, 0xdb, 0x41, 0xb9, 0x9f, - 0x9f, 0x1d, 0x9f, 0x10, 0xb2, 0x48, 0x8f, 0x06, 0x31, 0x2b, 0x3e, 0x1e, 0x24, 0x55, 0x4d, 0x78, - 0xe5, 0x6f, 0xf9, 0x84, 0x43, 0x86, 0xb3, 0xd9, 0x06, 0xf0, 0xfa, 0xf0, 0x47, 0xb0, 0xbc, 0xfd, - 0x12, 0xf7, 0xba, 0x47, 0x66, 0x6f, 0x86, 0x71, 0xa8, 0x41, 0xbe, 0x37, 0xd4, 0x39, 0x7e, 0x4d, - 0x7e, 0x86, 0x4b, 0xde, 0x7c, 0xb4, 0xe4, 0x55, 0xa1, 0x16, 0xf4, 0xc0, 0x63, 0xf9, 0x04, 0x89, - 0x65, 0x9d, 0x30, 0x13, 0xe5, 0x4b, 0x0a, 0x6f, 0x71, 0x3a, 0x76, 0xd8, 0x25, 0x21, 0x46, 0xc7, - 0x8e, 0x13, 0x4d, 0x8d, 0xf9, 0x68, 0x6a, 0x94, 0xff, 0x58, 0x82, 0x32, 0xe9, 0xe1, 0xb5, 0xec, - 0xe7, 0xfb, 0xca, 0x7c, 0xb0, 0xaf, 0xf4, 0xb7, 0xa7, 0x85, 0xf0, 0xf6, 0x34, 0xb0, 0x7c, 0x9e, - 0x92, 0x93, 0x96, 0x2f, 0xf8, 0x74, 0xec, 0x38, 0xf2, 0x59, 0x58, 0x62, 0xb6, 0xf1, 0x37, 0xaf, - 0x41, 0x7e, 0xe4, 0x0c, 0xc4, 0xf8, 0x8d, 0x9c, 0x81, 0xfc, 0x87, 0x12, 0x54, 0x9a, 0x9e, 0xa7, - 0xf5, 0x0e, 0x67, 0x78, 0x01, 0xdf, 0xb8, 0x5c, 0xd8, 0xb8, 0xe4, 0x4b, 0x04, 0xe6, 0x16, 0x32, - 0xcc, 0x9d, 0x8f, 0x98, 0x2b, 0x43, 0x55, 0xd8, 0x92, 0x69, 0x70, 0x1b, 0x50, 0xc7, 0x72, 0xbc, - 0x87, 0x96, 0xf3, 0x42, 0x73, 0xf4, 0xd9, 0xb6, 0x9b, 0x08, 0x0a, 0xfc, 0xfe, 0x7e, 0xfe, 0xf2, - 0xbc, 0x42, 0x7f, 0xcb, 0x97, 0xe0, 0x58, 0x44, 0x5f, 0x66, 0xc7, 0xf7, 0xa1, 0x4c, 0x17, 0x39, - 0xbe, 0xef, 0xb8, 0x11, 0x3e, 0x66, 0x9c, 0x6a, 0x49, 0x94, 0xff, 0x3f, 0xac, 0x90, 0x62, 0x88, - 0xd2, 0xfd, 0xbc, 0xf3, 0xfd, 0x58, 0x51, 0x7e, 0x3a, 0x43, 0x51, 0xac, 0x20, 0xff, 0x8d, 0x04, - 0xf3, 0x94, 0x9e, 0x28, 0x50, 0x4e, 0x41, 0xc9, 0xc1, 0xb6, 0xa5, 0x7a, 0x5a, 0xdf, 0xff, 0x5a, - 0x82, 0x10, 0x76, 0xb5, 0x3e, 0xc5, 0xe6, 0xe9, 0x43, 0xdd, 0xe8, 0x63, 0xd7, 0x13, 0x9f, 0x4c, - 0x94, 0x09, 0x6d, 0x8b, 0x91, 0x88, 0x93, 0xe8, 0xa9, 0x57, 0x81, 0x1e, 0x6e, 0xd1, 0xdf, 0x68, - 0x9d, 0x5d, 0x2b, 0x9d, 0xe6, 0xb0, 0x83, 0x5e, 0x3a, 0x6d, 0x40, 0x31, 0x76, 0x3e, 0xe1, 0xb7, - 0xd1, 0x75, 0x28, 0x50, 0x7c, 0x77, 0x71, 0xb2, 0xdf, 0x28, 0xa3, 0xbc, 0x0d, 0x28, 0xec, 0x36, - 0x3e, 0x40, 0xd7, 0x61, 0x81, 0x7a, 0x55, 0xd4, 0x8e, 0x6b, 0x19, 0x8a, 0x14, 0xce, 0x26, 0x6b, - 0x80, 0x98, 0xe6, 0x48, 0xbd, 0x38, 0xfb, 0x30, 0x8e, 0xa9, 0x1f, 0xff, 0x4a, 0x82, 0x63, 0x91, - 0x3e, 0xb8, 0xad, 0xd7, 0xa2, 0x9d, 0x64, 0x9a, 0xca, 0x3b, 0xd8, 0x8c, 0x2c, 0x98, 0xd7, 0xb3, - 0x4c, 0xfa, 0x96, 0x16, 0xcb, 0xbf, 0x95, 0x00, 0x9a, 0x23, 0xef, 0x90, 0xe3, 0xa6, 0xe1, 0xa1, - 0x94, 0x62, 0x43, 0xd9, 0x80, 0xa2, 0xad, 0xb9, 0xee, 0x0b, 0xcb, 0x11, 0x3b, 0x3e, 0xbf, 0x4d, - 0x11, 0xce, 0x91, 0x77, 0x28, 0x4e, 0x35, 0xc9, 0x6f, 0x74, 0x01, 0xaa, 0xec, 0x93, 0x1e, 0x55, - 0xd3, 0x75, 0x07, 0xbb, 0x2e, 0x3f, 0xde, 0xac, 0x30, 0x6a, 0x93, 0x11, 0x09, 0x9b, 0x41, 0x31, - 0x7f, 0xef, 0x48, 0xf5, 0xac, 0x67, 0xd8, 0xe4, 0x3b, 0xb7, 0x8a, 0xa0, 0xee, 0x12, 0x22, 0x3b, - 0x44, 0xea, 0x1b, 0xae, 0xe7, 0x08, 0x36, 0x71, 0x14, 0xc6, 0xa9, 0x94, 0x8d, 0x0c, 0x4a, 0xad, - 0x33, 0x1a, 0x0c, 0x98, 0x8b, 0x5f, 0x7d, 0xd8, 0xbf, 0xc7, 0x5f, 0x28, 0x97, 0x35, 0x09, 0x02, - 0xa7, 0xf1, 0xd7, 0x7d, 0x83, 0x10, 0xd5, 0xf7, 0x60, 0x25, 0xf4, 0x0e, 0x3c, 0xac, 0x22, 0x25, - 0xb6, 0x14, 0x2d, 0xb1, 0xe5, 0x47, 0x80, 0x18, 0x2a, 0xf3, 0x9a, 0xef, 0x2d, 0x1f, 0x87, 0x63, - 0x11, 0x45, 0x7c, 0xe9, 0xbe, 0x0a, 0x15, 0x7e, 0xa7, 0x8f, 0x07, 0xca, 0x49, 0x28, 0x92, 0x14, - 0xdc, 0x33, 0x74, 0x71, 0xe4, 0xbd, 0x68, 0x5b, 0xfa, 0xa6, 0xa1, 0x3b, 0xf2, 0xa7, 0x50, 0xe1, - 0xdf, 0x05, 0x70, 0xde, 0x87, 0x50, 0xe5, 0x37, 0x00, 0xd5, 0xc8, 0xdd, 0xde, 0xb4, 0xaf, 0x74, - 0xc2, 0x9d, 0x28, 0x15, 0x33, 0xdc, 0x94, 0x75, 0x68, 0xb0, 0x1a, 0x23, 0xa2, 0x5e, 0xbc, 0xec, - 0x43, 0x10, 0x57, 0x5e, 0x26, 0xf6, 0x12, 0x95, 0xaf, 0x38, 0xe1, 0xa6, 0x7c, 0x1a, 0x4e, 0xa5, - 0xf6, 0xc2, 0x3d, 0x61, 0x43, 0x2d, 0x78, 0xc0, 0x2e, 0xa0, 0xfa, 0x67, 0xfa, 0x52, 0xe8, 0x4c, - 0xff, 0x84, 0x5f, 0x42, 0xe7, 0xc4, 0xaa, 0x47, 0xeb, 0xe3, 0x60, 0x33, 0x94, 0xcf, 0xda, 0x0c, - 0x15, 0x22, 0x9b, 0x21, 0xb9, 0xeb, 0xfb, 0x93, 0x6f, 0x52, 0x1f, 0xd0, 0xcd, 0x34, 0xeb, 0x5b, - 0x24, 0x44, 0x79, 0xdc, 0x5b, 0x32, 0x56, 0x25, 0x24, 0x25, 0x5f, 0x81, 0x4a, 0x34, 0x35, 0x86, - 0xf2, 0x9c, 0x94, 0xc8, 0x73, 0xd5, 0x58, 0x8a, 0xfb, 0x30, 0xb6, 0x3f, 0xc8, 0xf6, 0x71, 0x6c, - 0x77, 0x70, 0x37, 0x92, 0xec, 0xae, 0xa6, 0x1c, 0xd1, 0x7e, 0x4b, 0x79, 0x6e, 0x95, 0xaf, 0x07, - 0x0f, 0x5d, 0x22, 0xcf, 0x5f, 0x5a, 0x3e, 0x0f, 0xe5, 0xbd, 0xac, 0xaf, 0xbc, 0x0a, 0xe2, 0x22, - 0xce, 0x4d, 0x58, 0x7d, 0x68, 0x0c, 0xb0, 0x7b, 0xe4, 0x7a, 0x78, 0xd8, 0xa2, 0x49, 0xe9, 0xc0, - 0xc0, 0x0e, 0x3a, 0x03, 0x40, 0x37, 0x78, 0xb6, 0x65, 0xf8, 0xdf, 0xab, 0x84, 0x28, 0xf2, 0xbf, - 0x4b, 0xb0, 0x1c, 0x08, 0xee, 0xd1, 0x8d, 0xed, 0x5b, 0x50, 0x22, 0xef, 0xeb, 0x7a, 0xda, 0xd0, - 0x16, 0xa7, 0x7d, 0x3e, 0x01, 0xdd, 0x81, 0xf9, 0x03, 0x57, 0x00, 0x6a, 0xa9, 0xc7, 0x0b, 0x69, - 0x86, 0x28, 0x85, 0x03, 0xb7, 0xa5, 0xa3, 0x8f, 0x00, 0x46, 0x2e, 0xd6, 0xf9, 0x09, 0x5f, 0x3e, - 0xab, 0xbc, 0xd8, 0x0b, 0x5f, 0x55, 0x20, 0x02, 0xec, 0x0e, 0xcf, 0x5d, 0x28, 0x1b, 0xa6, 0xa5, - 0x63, 0x7a, 0x74, 0xab, 0x73, 0xcc, 0x6d, 0x82, 0x38, 0x30, 0x89, 0x3d, 0x17, 0xeb, 0x32, 0xe6, - 0x6b, 0xa1, 0xf0, 0x2f, 0x0f, 0x94, 0x36, 0xac, 0xb0, 0xa4, 0x75, 0xe0, 0x1b, 0x2e, 0x22, 0xf6, - 0xdc, 0xb8, 0xb7, 0xa3, 0xde, 0x52, 0x6a, 0x06, 0xaf, 0x85, 0x84, 0xa8, 0x7c, 0x1b, 0x8e, 0x47, - 0xf6, 0x8f, 0x33, 0x6c, 0xe8, 0xe4, 0x4e, 0x0c, 0x46, 0x0a, 0xc2, 0x99, 0x83, 0x34, 0x22, 0x9a, - 0x27, 0x81, 0x34, 0x2e, 0x03, 0x69, 0x5c, 0xf9, 0x0b, 0x38, 0x19, 0xc1, 0xbb, 0x22, 0x16, 0xdd, - 0x8d, 0x95, 0x7a, 0x17, 0x27, 0x69, 0x8d, 0xd5, 0x7c, 0xff, 0x25, 0xc1, 0x6a, 0x1a, 0xc3, 0x2b, - 0xe2, 0xb1, 0x3f, 0xca, 0xb8, 0x69, 0x7a, 0x6b, 0x3a, 0xb3, 0x7e, 0x2b, 0x58, 0xf6, 0x2e, 0x34, - 0xd2, 0xfc, 0x99, 0x1c, 0xa5, 0xfc, 0x2c, 0xa3, 0xf4, 0xf3, 0x7c, 0xe8, 0x5c, 0xa2, 0xe9, 0x79, - 0x8e, 0xb1, 0x3f, 0x22, 0x21, 0xff, 0xc6, 0xb1, 0xbe, 0x96, 0x8f, 0x5a, 0x31, 0xd7, 0xde, 0x18, - 0x23, 0x1e, 0xd8, 0x91, 0x8a, 0x5c, 0x7d, 0x96, 0xb6, 0xe9, 0xbf, 0x39, 0x9d, 0xbe, 0xdf, 0x59, - 0x78, 0xf8, 0xe7, 0x39, 0xa8, 0x46, 0x87, 0x08, 0x6d, 0x03, 0x68, 0xbe, 0xe5, 0x7c, 0xa2, 0x5c, - 0x98, 0xea, 0x35, 0x95, 0x90, 0x20, 0x7a, 0x0f, 0xf2, 0x3d, 0x7b, 0xc4, 0x47, 0x2d, 0xe5, 0xa8, - 0x7c, 0xd3, 0x1e, 0xb1, 0x8c, 0x42, 0xd8, 0xc8, 0x26, 0x8c, 0xdd, 0x7c, 0xc8, 0xce, 0x92, 0x4f, - 0xe9, 0x73, 0x26, 0xc3, 0x99, 0xd1, 0x63, 0xa8, 0xbe, 0x70, 0x0c, 0x4f, 0xdb, 0x1f, 0x60, 0x75, - 0xa0, 0x1d, 0x61, 0x87, 0x67, 0xc9, 0x29, 0x12, 0x59, 0x45, 0x08, 0x3e, 0x21, 0x72, 0xf2, 0x1f, - 0x40, 0x51, 0x58, 0x34, 0x61, 0x45, 0xd8, 0x85, 0xb5, 0x11, 0x61, 0x53, 0xe9, 0xdd, 0x4a, 0x53, - 0x33, 0x2d, 0xd5, 0xc5, 0x64, 0x19, 0x17, 0x1f, 0xb6, 0x4c, 0x48, 0xd1, 0xab, 0x54, 0x7a, 0xd3, - 0x72, 0x70, 0x5b, 0x33, 0xad, 0x2e, 0x13, 0x95, 0x9f, 0x43, 0x39, 0xf4, 0x82, 0x13, 0x4c, 0x68, - 0xc1, 0x8a, 0xb8, 0xa8, 0xe0, 0x62, 0x8f, 0x2f, 0x2f, 0x53, 0x75, 0xbe, 0xcc, 0xe5, 0xba, 0xd8, - 0x63, 0x97, 0x4b, 0xee, 0xc2, 0x49, 0x05, 0x5b, 0x36, 0x36, 0xfd, 0xf1, 0x7c, 0x62, 0xf5, 0x67, - 0xc8, 0xe0, 0x6f, 0x41, 0x23, 0x4d, 0x9e, 0xe5, 0x87, 0xab, 0x17, 0xa1, 0x28, 0xbe, 0xe7, 0x47, - 0x8b, 0x90, 0xdf, 0xdd, 0xec, 0xd4, 0xe6, 0xc8, 0x8f, 0xbd, 0xad, 0x4e, 0x4d, 0x42, 0x45, 0x28, - 0x74, 0x37, 0x77, 0x3b, 0xb5, 0xdc, 0xd5, 0x21, 0xd4, 0xe2, 0x1f, 0xb3, 0xa3, 0x35, 0x38, 0xd6, - 0x51, 0x76, 0x3a, 0xcd, 0x47, 0xcd, 0xdd, 0xd6, 0x4e, 0x5b, 0xed, 0x28, 0xad, 0x4f, 0x9a, 0xbb, - 0xdb, 0xb5, 0x39, 0x74, 0x0e, 0x4e, 0x87, 0x1f, 0x3c, 0xde, 0xe9, 0xee, 0xaa, 0xbb, 0x3b, 0xea, - 0xe6, 0x4e, 0x7b, 0xb7, 0xd9, 0x6a, 0x6f, 0x2b, 0x35, 0x09, 0x9d, 0x86, 0x93, 0x61, 0x96, 0x07, - 0xad, 0xad, 0x96, 0xb2, 0xbd, 0x49, 0x7e, 0x37, 0x9f, 0xd4, 0x72, 0x57, 0x3f, 0x86, 0x4a, 0xe4, - 0xdb, 0x73, 0x62, 0x52, 0x67, 0x67, 0xab, 0x36, 0x87, 0x2a, 0x50, 0x0a, 0xeb, 0x29, 0x42, 0xa1, - 0xbd, 0xb3, 0xb5, 0x5d, 0xcb, 0x21, 0x80, 0x85, 0xdd, 0xa6, 0xf2, 0x68, 0x7b, 0xb7, 0x96, 0xbf, - 0x7a, 0x1b, 0x96, 0x63, 0x97, 0xd5, 0xd1, 0x0a, 0x54, 0xba, 0xcd, 0xf6, 0xd6, 0x83, 0x9d, 0xcf, - 0x54, 0x65, 0xbb, 0xb9, 0xf5, 0x79, 0x6d, 0x0e, 0xad, 0x42, 0x4d, 0x90, 0xda, 0x3b, 0xbb, 0x8c, - 0x2a, 0x5d, 0x7d, 0x16, 0x9b, 0x6f, 0x18, 0x1d, 0x87, 0x15, 0xbf, 0x4b, 0x75, 0x53, 0xd9, 0x6e, - 0xee, 0x6e, 0x13, 0x4b, 0x22, 0x64, 0x65, 0xaf, 0xdd, 0x6e, 0xb5, 0x1f, 0xd5, 0x24, 0xa2, 0x35, - 0x20, 0x6f, 0x7f, 0xd6, 0x22, 0xcc, 0xb9, 0x28, 0xf3, 0x5e, 0xfb, 0x07, 0xed, 0x9d, 0x4f, 0xdb, - 0xb5, 0xfc, 0xc6, 0x2f, 0x57, 0xfc, 0xef, 0x81, 0xbb, 0xd8, 0xa1, 0xf7, 0x7f, 0x3a, 0xb0, 0x28, - 0xfe, 0x57, 0x44, 0x4a, 0xb6, 0x8e, 0xfe, 0x87, 0x8b, 0xc6, 0xb9, 0x31, 0x1c, 0xbc, 0xf6, 0x9e, - 0x43, 0xfb, 0xb4, 0x16, 0x0e, 0x7d, 0x3c, 0x70, 0x31, 0xb5, 0xf2, 0x4c, 0x7c, 0xaf, 0xd0, 0xb8, - 0x34, 0x91, 0xcf, 0xef, 0x03, 0x93, 0x72, 0x37, 0xfc, 0x7d, 0x1e, 0xba, 0x94, 0x56, 0xa7, 0xa6, - 0x7c, 0x00, 0xd8, 0xb8, 0x3c, 0x99, 0xd1, 0xef, 0xe6, 0x19, 0xd4, 0xe2, 0xdf, 0xea, 0xa1, 0x14, - 0x90, 0x39, 0xe3, 0x83, 0xc0, 0xc6, 0xd5, 0x69, 0x58, 0xc3, 0x9d, 0x25, 0x3e, 0x3e, 0xbb, 0x32, - 0xcd, 0x47, 0x3a, 0x99, 0x9d, 0x65, 0x7d, 0xcf, 0xc3, 0x1c, 0x18, 0xbd, 0xef, 0x8f, 0x52, 0xbf, - 0xf4, 0x4a, 0xf9, 0xac, 0x24, 0xcd, 0x81, 0xe9, 0x9f, 0x0e, 0xc8, 0x73, 0xe8, 0x10, 0x96, 0x63, - 0x17, 0x39, 0x50, 0x8a, 0x78, 0xfa, 0x8d, 0x95, 0xc6, 0x95, 0x29, 0x38, 0xa3, 0x11, 0x11, 0xbe, - 0xb8, 0x91, 0x1e, 0x11, 0x29, 0xd7, 0x42, 0xd2, 0x23, 0x22, 0xf5, 0x0e, 0x08, 0x0d, 0xee, 0xc8, - 0x85, 0x8d, 0xb4, 0xe0, 0x4e, 0xbb, 0x26, 0xd2, 0xb8, 0x34, 0x91, 0x2f, 0xec, 0xb4, 0xd8, 0xf5, - 0x8d, 0x34, 0xa7, 0xa5, 0x5f, 0x0f, 0x69, 0x5c, 0x99, 0x82, 0x33, 0x1e, 0x05, 0xc1, 0x61, 0x70, - 0x56, 0x14, 0x24, 0xae, 0x2e, 0x64, 0x45, 0x41, 0xf2, 0x5c, 0x99, 0x47, 0x41, 0xec, 0x10, 0xf7, - 0xf2, 0x14, 0x87, 0x4e, 0xd9, 0x51, 0x90, 0x7e, 0x3c, 0x25, 0xcf, 0xa1, 0x9f, 0x49, 0x50, 0xcf, - 0x3a, 0xe3, 0x40, 0x37, 0x66, 0x3e, 0x90, 0x69, 0x6c, 0xcc, 0x22, 0xe2, 0x5b, 0xf1, 0x15, 0xa0, - 0xe4, 0x1a, 0x88, 0xde, 0x4d, 0x1b, 0x99, 0x8c, 0x95, 0xb6, 0xf1, 0xde, 0x74, 0xcc, 0x7e, 0x97, - 0x5d, 0x28, 0x8a, 0x53, 0x15, 0x94, 0x92, 0xa5, 0x63, 0x67, 0x3a, 0x0d, 0x79, 0x1c, 0x8b, 0xaf, - 0xf4, 0x11, 0x14, 0x08, 0x15, 0x9d, 0x4e, 0xe7, 0x16, 0xca, 0xce, 0x64, 0x3d, 0xf6, 0x15, 0x3d, - 0x85, 0x05, 0x76, 0x8c, 0x80, 0x52, 0x50, 0x88, 0xc8, 0x61, 0x47, 0xe3, 0x6c, 0x36, 0x83, 0xaf, - 0xee, 0x4b, 0xf6, 0x6f, 0x84, 0xf8, 0x09, 0x01, 0x7a, 0x27, 0xfd, 0xbf, 0x05, 0x44, 0x0f, 0x24, - 0x1a, 0x17, 0x26, 0x70, 0x85, 0x27, 0x45, 0xac, 0x02, 0xbe, 0x34, 0x71, 0x1b, 0x93, 0x3d, 0x29, - 0xd2, 0x37, 0x4a, 0x2c, 0x48, 0x92, 0x1b, 0xa9, 0xb4, 0x20, 0xc9, 0xdc, 0xbe, 0xa6, 0x05, 0x49, - 0xf6, 0xde, 0x4c, 0x9e, 0x43, 0x1e, 0x1c, 0x4b, 0x81, 0xcd, 0xd0, 0x7b, 0x59, 0x41, 0x9e, 0x86, - 0xe1, 0x35, 0xae, 0x4d, 0xc9, 0x1d, 0x1e, 0x7c, 0x3e, 0xe9, 0xdf, 0xce, 0xc6, 0x92, 0x32, 0x07, - 0x3f, 0x3e, 0xc5, 0x37, 0xfe, 0x39, 0x0f, 0x4b, 0x0c, 0x12, 0xe5, 0x15, 0xcc, 0xe7, 0x00, 0xc1, - 0x69, 0x04, 0x3a, 0x9f, 0xee, 0x93, 0xc8, 0x11, 0x4f, 0xe3, 0x9d, 0xf1, 0x4c, 0xe1, 0x40, 0x0b, - 0x21, 0xfb, 0x69, 0x81, 0x96, 0x3c, 0xc0, 0x48, 0x0b, 0xb4, 0x94, 0xe3, 0x01, 0x79, 0x0e, 0x7d, - 0x02, 0x25, 0x1f, 0x42, 0x46, 0x69, 0x10, 0x74, 0x0c, 0x23, 0x6f, 0x9c, 0x1f, 0xcb, 0x13, 0xb6, - 0x3a, 0x84, 0x0f, 0xa7, 0x59, 0x9d, 0xc4, 0xa1, 0xd3, 0xac, 0x4e, 0x03, 0x99, 0x03, 0x9f, 0x30, - 0x14, 0x29, 0xd3, 0x27, 0x11, 0x10, 0x2f, 0xd3, 0x27, 0x51, 0x28, 0x4a, 0x9e, 0x7b, 0x70, 0xf1, - 0x57, 0x5f, 0x9f, 0x91, 0xfe, 0xf1, 0xeb, 0x33, 0x73, 0x3f, 0xfd, 0xe6, 0x8c, 0xf4, 0xab, 0x6f, - 0xce, 0x48, 0x7f, 0xff, 0xcd, 0x19, 0xe9, 0x5f, 0xbe, 0x39, 0x23, 0xfd, 0xd1, 0xbf, 0x9e, 0x99, - 0xfb, 0x61, 0x51, 0x48, 0xef, 0x2f, 0xd0, 0x7f, 0x06, 0xf6, 0xfe, 0xff, 0x06, 0x00, 0x00, 0xff, - 0xff, 0x9e, 0x13, 0x0f, 0x8c, 0xd2, 0x4d, 0x00, 0x00, + // 5092 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x7c, 0x4d, 0x6c, 0x1b, 0x59, + 0x72, 0xb0, 0x9a, 0xa4, 0x24, 0xb2, 0x28, 0x52, 0xf4, 0xb3, 0x6c, 0xd1, 0xf4, 0xd8, 0x63, 0xb5, + 0xc7, 0xbf, 0x33, 0x96, 0xd7, 0x9a, 0x59, 0xcf, 0x67, 0x7b, 0xc6, 0x63, 0x5a, 0x92, 0x6d, 0x7e, + 0x6b, 0x53, 0x4c, 0x53, 0x9a, 0x9f, 0x9d, 0x01, 0x7a, 0x5b, 0xec, 0x27, 0xaa, 0xd7, 0x64, 0x77, + 0x4f, 0x77, 0xd3, 0xb6, 0x36, 0x40, 0xb0, 0xc0, 0x02, 0x7b, 0xc8, 0x29, 0x40, 0x90, 0x4b, 0x8e, + 0x9b, 0x43, 0x0e, 0x39, 0x05, 0x41, 0x4e, 0x39, 0x6d, 0x90, 0xc3, 0x22, 0x40, 0x90, 0x9c, 0x36, + 0x09, 0x72, 0xc9, 0x4c, 0x10, 0x60, 0x11, 0x20, 0x40, 0x90, 0x73, 0x0e, 0xc1, 0xfb, 0xeb, 0xff, + 0xe6, 0x8f, 0xed, 0xd9, 0x99, 0x9c, 0xd8, 0xaf, 0xba, 0xaa, 0x5e, 0xbd, 0x7a, 0xf5, 0xea, 0xd5, + 0xab, 0x7a, 0x4d, 0x28, 0x69, 0xb6, 0xb1, 0x6e, 0x3b, 0x96, 0x67, 0xa1, 0x9a, 0x33, 0x32, 0x3d, + 0x63, 0x88, 0xd7, 0x9f, 0xdd, 0xd0, 0x06, 0xf6, 0xa1, 0xb6, 0xd1, 0xb8, 0xd6, 0x37, 0xbc, 0xc3, + 0xd1, 0xfe, 0x7a, 0xcf, 0x1a, 0x5e, 0xef, 0x5b, 0x7d, 0xeb, 0x3a, 0x45, 0xdc, 0x1f, 0x1d, 0xd0, + 0x16, 0x6d, 0xd0, 0x27, 0xc6, 0x40, 0xbe, 0x0a, 0xd5, 0x8f, 0xb1, 0xe3, 0x1a, 0x96, 0xa9, 0xe0, + 0x2f, 0x47, 0xd8, 0xf5, 0x50, 0x1d, 0x16, 0x9f, 0x31, 0x48, 0x5d, 0x3a, 0x27, 0x5d, 0x2e, 0x29, + 0xa2, 0x29, 0xff, 0xa9, 0x04, 0xcb, 0x3e, 0xb2, 0x6b, 0x5b, 0xa6, 0x8b, 0xb3, 0xb1, 0xd1, 0x1a, + 0x2c, 0x71, 0xe1, 0x54, 0x53, 0x1b, 0xe2, 0x7a, 0x8e, 0xbe, 0x2e, 0x73, 0x58, 0x5b, 0x1b, 0x62, + 0x74, 0x09, 0x96, 0x05, 0x8a, 0x60, 0x92, 0xa7, 0x58, 0x55, 0x0e, 0xe6, 0xbd, 0xa1, 0x75, 0x38, + 0x2e, 0x10, 0x35, 0xdb, 0xf0, 0x91, 0x0b, 0x14, 0xf9, 0x18, 0x7f, 0xd5, 0xb4, 0x0d, 0x8e, 0x2f, + 0x7f, 0x0e, 0xa5, 0xad, 0x76, 0x77, 0xd3, 0x32, 0x0f, 0x8c, 0x3e, 0x11, 0xd1, 0xc5, 0x0e, 0xa1, + 0xa9, 0x4b, 0xe7, 0xf2, 0x44, 0x44, 0xde, 0x44, 0x0d, 0x28, 0xba, 0x58, 0x73, 0x7a, 0x87, 0xd8, + 0xad, 0xe7, 0xe8, 0x2b, 0xbf, 0x4d, 0xa8, 0x2c, 0xdb, 0x33, 0x2c, 0xd3, 0xad, 0xe7, 0x19, 0x15, + 0x6f, 0xca, 0xbf, 0x90, 0xa0, 0xdc, 0xb1, 0x1c, 0xef, 0x89, 0x66, 0xdb, 0x86, 0xd9, 0x47, 0x37, + 0xa1, 0x48, 0x75, 0xd9, 0xb3, 0x06, 0x54, 0x07, 0xd5, 0x8d, 0xc6, 0x7a, 0x7c, 0x5a, 0xd6, 0x3b, + 0x1c, 0x43, 0xf1, 0x71, 0xd1, 0x05, 0xa8, 0xf6, 0x2c, 0xd3, 0xd3, 0x0c, 0x13, 0x3b, 0xaa, 0x6d, + 0x39, 0x1e, 0x55, 0xd1, 0xbc, 0x52, 0xf1, 0xa1, 0xa4, 0x17, 0x74, 0x1a, 0x4a, 0x87, 0x96, 0xeb, + 0x31, 0x8c, 0x3c, 0xc5, 0x28, 0x12, 0x00, 0x7d, 0xb9, 0x0a, 0x8b, 0xf4, 0xa5, 0x61, 0x73, 0x65, + 0x2c, 0x90, 0x66, 0xcb, 0x96, 0x7f, 0x2d, 0xc1, 0xfc, 0x13, 0x6b, 0x64, 0x7a, 0xb1, 0x6e, 0x34, + 0xef, 0x90, 0x4f, 0x54, 0xa8, 0x1b, 0xcd, 0x3b, 0x0c, 0xba, 0x21, 0x18, 0x6c, 0xae, 0x58, 0x37, + 0xe4, 0x65, 0x03, 0x8a, 0x0e, 0xd6, 0x74, 0xcb, 0x1c, 0x1c, 0x51, 0x11, 0x8a, 0x8a, 0xdf, 0x26, + 0x93, 0xe8, 0xe2, 0x81, 0x61, 0x8e, 0x5e, 0xa8, 0x0e, 0x1e, 0x68, 0xfb, 0x78, 0x40, 0x45, 0x29, + 0x2a, 0x55, 0x0e, 0x56, 0x18, 0x14, 0x6d, 0x41, 0xd9, 0x76, 0x2c, 0x5b, 0xeb, 0x6b, 0x44, 0x8f, + 0xf5, 0x79, 0xaa, 0x2a, 0x39, 0xa9, 0x2a, 0x2a, 0x76, 0x27, 0xc0, 0x54, 0xc2, 0x64, 0xf2, 0xdf, + 0x4b, 0xb0, 0x4c, 0x8c, 0xc7, 0xb5, 0xb5, 0x1e, 0xde, 0xa1, 0x53, 0x82, 0x6e, 0xc1, 0xa2, 0x89, + 0xbd, 0xe7, 0x96, 0xf3, 0x94, 0x4f, 0xc0, 0x9b, 0x49, 0xae, 0x3e, 0xcd, 0x13, 0x4b, 0xc7, 0x8a, + 0xc0, 0x47, 0x37, 0x20, 0x6f, 0x1b, 0x3a, 0x1d, 0xf0, 0x14, 0x64, 0x04, 0x97, 0x90, 0x18, 0x76, + 0x8f, 0xea, 0x61, 0x1a, 0x12, 0xc3, 0xee, 0x11, 0xe5, 0x7a, 0x9a, 0xd3, 0xc7, 0x9e, 0x6a, 0xe8, + 0x7c, 0xa2, 0x8a, 0x0c, 0xd0, 0xd2, 0x65, 0x19, 0xa0, 0x65, 0x7a, 0x37, 0xdf, 0xfb, 0x58, 0x1b, + 0x8c, 0x30, 0x5a, 0x81, 0xf9, 0x67, 0xe4, 0x81, 0x8e, 0x24, 0xaf, 0xb0, 0x86, 0xfc, 0x55, 0x01, + 0x4e, 0x3f, 0x26, 0xca, 0xec, 0x6a, 0xa6, 0xbe, 0x6f, 0xbd, 0xe8, 0xe2, 0xde, 0xc8, 0x31, 0xbc, + 0xa3, 0x4d, 0xcb, 0xf4, 0xf0, 0x0b, 0x0f, 0xb5, 0xe1, 0x98, 0x29, 0xba, 0x55, 0x85, 0xdd, 0x12, + 0x0e, 0xe5, 0x8d, 0xb5, 0x31, 0x12, 0x32, 0xfd, 0x29, 0x35, 0x33, 0x0a, 0x70, 0xd1, 0xa3, 0x60, + 0x52, 0x05, 0xb7, 0x1c, 0xe5, 0x96, 0x32, 0xde, 0xee, 0x36, 0x95, 0x8c, 0xf3, 0x12, 0xb3, 0x2e, + 0x38, 0x7d, 0x00, 0x64, 0xc9, 0xab, 0x9a, 0xab, 0x8e, 0x5c, 0xec, 0x50, 0xad, 0x95, 0x37, 0xde, + 0x48, 0x72, 0x09, 0x54, 0xa0, 0x94, 0x9c, 0x91, 0xd9, 0x74, 0xf7, 0x5c, 0xec, 0xa0, 0xbb, 0xd4, + 0x89, 0x10, 0xea, 0xbe, 0x63, 0x8d, 0xec, 0x7a, 0x71, 0x0a, 0x72, 0xa0, 0xe4, 0x0f, 0x09, 0x3e, + 0xf5, 0x30, 0xdc, 0x50, 0x55, 0xc7, 0xb2, 0xbc, 0x03, 0x57, 0x18, 0xa7, 0x00, 0x2b, 0x14, 0x8a, + 0xae, 0xc3, 0x71, 0x77, 0x64, 0xdb, 0x03, 0x3c, 0xc4, 0xa6, 0xa7, 0x0d, 0x58, 0x77, 0x6e, 0x7d, + 0xfe, 0x5c, 0xfe, 0x72, 0x5e, 0x41, 0xe1, 0x57, 0x94, 0xb1, 0x8b, 0xce, 0x02, 0xd8, 0x8e, 0xf1, + 0xcc, 0x18, 0xe0, 0x3e, 0xd6, 0xeb, 0x0b, 0x94, 0x69, 0x08, 0x82, 0xee, 0x10, 0xaf, 0xd3, 0xeb, + 0x59, 0x43, 0xbb, 0x5e, 0xca, 0x9a, 0x07, 0x31, 0x8b, 0x1d, 0xc7, 0x3a, 0x30, 0x06, 0x58, 0x11, + 0x14, 0xe8, 0x43, 0x28, 0x6a, 0xb6, 0xad, 0x39, 0x43, 0xcb, 0xa9, 0xc3, 0xb4, 0xd4, 0x3e, 0x09, + 0x7a, 0x0f, 0x56, 0x38, 0x27, 0xd5, 0x66, 0x2f, 0xd9, 0xb2, 0x5e, 0x24, 0x96, 0x77, 0x3f, 0x57, + 0x97, 0x14, 0xc4, 0xdf, 0x73, 0x5a, 0xb2, 0xc8, 0xe5, 0xbf, 0x95, 0x60, 0x39, 0xc6, 0x13, 0x75, + 0x60, 0x49, 0x70, 0xf0, 0x8e, 0x6c, 0xcc, 0x97, 0xd7, 0xb5, 0x89, 0xc2, 0xac, 0xf3, 0xdf, 0xdd, + 0x23, 0x1b, 0xd3, 0xf5, 0x2b, 0x1a, 0xe8, 0x3c, 0x54, 0x06, 0x56, 0x4f, 0x1b, 0x50, 0x67, 0xe3, + 0xe0, 0x03, 0xee, 0x6b, 0x96, 0x7c, 0xa0, 0x82, 0x0f, 0xe4, 0x7b, 0x50, 0x0e, 0x31, 0x40, 0x08, + 0xaa, 0x0a, 0xeb, 0x70, 0x0b, 0x1f, 0x68, 0xa3, 0x81, 0x57, 0x9b, 0x43, 0x55, 0x80, 0x3d, 0xb3, + 0x47, 0x3c, 0xbc, 0x89, 0xf5, 0x9a, 0x84, 0x2a, 0x50, 0x7a, 0x2c, 0x58, 0xd4, 0x72, 0xf2, 0x2f, + 0x72, 0x70, 0x82, 0x9a, 0x65, 0xc7, 0xd2, 0xf9, 0x9a, 0xe1, 0xdb, 0xc1, 0x79, 0xa8, 0xf4, 0xe8, + 0xec, 0xaa, 0xb6, 0xe6, 0x60, 0xd3, 0xe3, 0xee, 0x70, 0x89, 0x01, 0x3b, 0x14, 0x86, 0x3e, 0x85, + 0x9a, 0xcb, 0x47, 0xa4, 0xf6, 0xd8, 0x1a, 0xe3, 0x0b, 0x20, 0x65, 0xec, 0x63, 0x16, 0xa6, 0xb2, + 0xec, 0x26, 0x56, 0xea, 0xa2, 0x7b, 0xe4, 0xf6, 0xbc, 0x01, 0xdb, 0x57, 0xca, 0x1b, 0xef, 0x65, + 0x30, 0x8c, 0x0b, 0xbe, 0xde, 0x65, 0x64, 0xdb, 0xa6, 0xe7, 0x1c, 0x29, 0x82, 0x49, 0xe3, 0x36, + 0x2c, 0x85, 0x5f, 0xa0, 0x1a, 0xe4, 0x9f, 0xe2, 0x23, 0x3e, 0x28, 0xf2, 0x18, 0x78, 0x14, 0xa6, + 0x69, 0xd6, 0xb8, 0x9d, 0xfb, 0x7f, 0x92, 0xec, 0x00, 0x0a, 0x7a, 0x79, 0x82, 0x3d, 0x4d, 0xd7, + 0x3c, 0x0d, 0x21, 0x28, 0xd0, 0x0d, 0x9b, 0xb1, 0xa0, 0xcf, 0x84, 0xeb, 0x88, 0xbb, 0xc9, 0x92, + 0x42, 0x1e, 0xd1, 0x1b, 0x50, 0xf2, 0xbd, 0x06, 0xdf, 0xb5, 0x03, 0x00, 0xd9, 0x3d, 0x35, 0xcf, + 0xc3, 0x43, 0xdb, 0xa3, 0xeb, 0xad, 0xa2, 0x88, 0xa6, 0xfc, 0x17, 0xf3, 0x50, 0x4b, 0xcc, 0xc9, + 0x3d, 0x28, 0x0e, 0x79, 0xf7, 0xdc, 0x6b, 0xbd, 0x95, 0xb2, 0x85, 0x26, 0x44, 0x55, 0x7c, 0x2a, + 0xb2, 0x43, 0x91, 0x99, 0x0f, 0x45, 0x1a, 0x7e, 0x9b, 0x99, 0x5c, 0x5f, 0xd5, 0x0d, 0x07, 0xf7, + 0x3c, 0xcb, 0x39, 0xe2, 0xe2, 0x2e, 0x0d, 0xac, 0xfe, 0x96, 0x80, 0xa1, 0xdb, 0x00, 0xba, 0xe9, + 0xaa, 0xd4, 0xa2, 0xfa, 0x54, 0xe8, 0xf2, 0xc6, 0xe9, 0xa4, 0x10, 0x7e, 0x58, 0xa1, 0x94, 0x74, + 0xd3, 0xe5, 0xe2, 0xdf, 0x87, 0x0a, 0xd9, 0x9d, 0xd5, 0x21, 0x8b, 0x08, 0x98, 0xdb, 0x28, 0x6f, + 0x9c, 0x49, 0x1b, 0x83, 0x1f, 0x37, 0x28, 0x4b, 0x76, 0xd0, 0x70, 0xd1, 0x03, 0x58, 0xa0, 0xdb, + 0xa4, 0x5b, 0x5f, 0xa0, 0xc4, 0xeb, 0xe3, 0x14, 0xc0, 0x2d, 0xe2, 0x31, 0x25, 0x60, 0x06, 0xc1, + 0xa9, 0xd1, 0x1e, 0x94, 0x35, 0xd3, 0xb4, 0x3c, 0x8d, 0x79, 0xed, 0x45, 0xca, 0xec, 0xdd, 0x29, + 0x98, 0x35, 0x03, 0x2a, 0xc6, 0x31, 0xcc, 0x07, 0x7d, 0x08, 0xf3, 0xd4, 0xad, 0x73, 0x0f, 0x7c, + 0x69, 0x4a, 0xa3, 0x55, 0x18, 0x15, 0xda, 0x84, 0xc5, 0xe7, 0x86, 0xa9, 0x5b, 0xcf, 0x5d, 0xee, + 0x0d, 0xaf, 0x24, 0x19, 0x7c, 0xc2, 0x10, 0x12, 0x2c, 0x04, 0x65, 0xe3, 0x16, 0x94, 0x43, 0x23, + 0x9e, 0xc5, 0xd2, 0x1b, 0x77, 0xa1, 0x16, 0x1f, 0xdf, 0x4c, 0x2b, 0xe5, 0x77, 0x61, 0x45, 0x19, + 0x99, 0x81, 0x68, 0x22, 0x58, 0xbe, 0x0d, 0x0b, 0xdc, 0x62, 0x98, 0xd9, 0xca, 0x93, 0x15, 0xad, + 0x70, 0x8a, 0x70, 0xf4, 0x7b, 0xa8, 0x99, 0xfa, 0x00, 0x3b, 0xbc, 0x5f, 0x11, 0xfd, 0x3e, 0x62, + 0x50, 0xf9, 0x43, 0x38, 0x11, 0xeb, 0x9c, 0x07, 0xdf, 0x6f, 0x41, 0xd5, 0xb6, 0x74, 0xd5, 0x65, + 0x60, 0x12, 0x5b, 0x70, 0x5f, 0x66, 0xfb, 0xb8, 0x2d, 0x9d, 0x90, 0x77, 0x3d, 0xcb, 0x4e, 0x0a, + 0x3f, 0x1d, 0x79, 0x1d, 0x4e, 0xc6, 0xc9, 0x59, 0xf7, 0xf2, 0x47, 0xb0, 0xaa, 0xe0, 0xa1, 0xf5, + 0x0c, 0xbf, 0x2c, 0xeb, 0x06, 0xd4, 0x93, 0x0c, 0x38, 0xf3, 0xcf, 0x60, 0x35, 0x80, 0x76, 0x3d, + 0xcd, 0x1b, 0xb9, 0x33, 0x31, 0xe7, 0x27, 0x93, 0x7d, 0xcb, 0x65, 0xd3, 0x59, 0x54, 0x44, 0x53, + 0x5e, 0x85, 0xf9, 0x8e, 0xa5, 0xb7, 0x3a, 0xa8, 0x0a, 0x39, 0xc3, 0xe6, 0xc4, 0x39, 0xc3, 0x96, + 0x8d, 0x70, 0x9f, 0x6d, 0x16, 0x21, 0xb2, 0xae, 0xe3, 0xa8, 0xe8, 0x2e, 0x54, 0x35, 0x5d, 0x37, + 0x88, 0x39, 0x69, 0x03, 0xd5, 0xb0, 0xd9, 0x01, 0xa2, 0xbc, 0xb1, 0x9a, 0x6a, 0x00, 0xad, 0x8e, + 0x52, 0x09, 0xd0, 0x5b, 0xb6, 0x2b, 0x3f, 0x82, 0x92, 0x1f, 0x85, 0x91, 0x58, 0x21, 0x1a, 0x65, + 0x4d, 0x11, 0xb3, 0xf9, 0xc7, 0x91, 0xdd, 0xc4, 0x46, 0xc7, 0x45, 0xbe, 0x03, 0xe0, 0x3b, 0x64, + 0x11, 0x0c, 0x9e, 0x1e, 0xc3, 0x58, 0x09, 0xa1, 0xcb, 0x3f, 0x8b, 0xb8, 0xe9, 0x90, 0x12, 0x74, + 0x5f, 0x09, 0x7a, 0xc4, 0x6d, 0xe7, 0x5e, 0xca, 0x6d, 0xbf, 0x0f, 0xf3, 0xae, 0xa7, 0x79, 0x98, + 0x47, 0xd3, 0x6b, 0xe3, 0xc8, 0x89, 0x10, 0x58, 0x61, 0xf8, 0xe8, 0x0c, 0x40, 0xcf, 0xc1, 0x9a, + 0x87, 0x75, 0x55, 0x63, 0x7b, 0x4c, 0x5e, 0x29, 0x71, 0x48, 0xd3, 0x23, 0xfe, 0x46, 0x9c, 0x08, + 0xe6, 0xb3, 0xfc, 0x4d, 0xc6, 0x54, 0x07, 0x67, 0x03, 0xdf, 0xe7, 0x2d, 0x4c, 0xe9, 0xf3, 0x38, + 0x03, 0xee, 0xf3, 0x02, 0x8f, 0xbe, 0x38, 0xd9, 0xa3, 0x33, 0xd2, 0x69, 0x3c, 0x7a, 0x71, 0xb2, + 0x47, 0xe7, 0xcc, 0xc6, 0x7b, 0xf4, 0x14, 0xf7, 0x53, 0x4a, 0x73, 0x3f, 0xdf, 0xa6, 0xdb, 0xfd, + 0x67, 0x09, 0xea, 0x49, 0x2f, 0xc0, 0xbd, 0xdf, 0x6d, 0x58, 0x70, 0x29, 0x64, 0x1a, 0xdf, 0xcb, + 0x69, 0x39, 0x05, 0x7a, 0x04, 0x05, 0xc3, 0x3c, 0xb0, 0xf8, 0xa2, 0x7d, 0x6f, 0x0a, 0x4a, 0xde, + 0xeb, 0x7a, 0xcb, 0x3c, 0xb0, 0x98, 0x36, 0x29, 0x87, 0xc6, 0xfb, 0x50, 0xf2, 0x41, 0x33, 0x8d, + 0x6d, 0x07, 0x56, 0x62, 0xb6, 0xcd, 0x0e, 0x80, 0xfe, 0x92, 0x90, 0x66, 0x5b, 0x12, 0xf2, 0x4f, + 0x73, 0xe1, 0x25, 0xfb, 0xc0, 0x18, 0x78, 0xd8, 0x49, 0x2c, 0xd9, 0x0f, 0x04, 0x77, 0xb6, 0x5e, + 0x2f, 0x4e, 0xe4, 0xce, 0xce, 0x54, 0x7c, 0xd5, 0x7d, 0x01, 0x55, 0x6a, 0x94, 0xaa, 0x8b, 0x07, + 0x34, 0x6e, 0xe2, 0x31, 0xec, 0xf7, 0xc7, 0xb1, 0x61, 0x92, 0x30, 0xd3, 0xee, 0x72, 0x3a, 0xa6, + 0xc1, 0xca, 0x20, 0x0c, 0x6b, 0xdc, 0x03, 0x94, 0x44, 0x9a, 0x49, 0xa7, 0x5d, 0xe2, 0x0b, 0x5d, + 0x2f, 0x75, 0x9f, 0x3e, 0xa0, 0x62, 0x4c, 0x63, 0x2b, 0x4c, 0x60, 0x85, 0x53, 0xc8, 0xff, 0x99, + 0x07, 0x08, 0x5e, 0xfe, 0x1f, 0x72, 0x82, 0xf7, 0x7c, 0x07, 0xc4, 0xe2, 0xd1, 0xcb, 0xe3, 0x18, + 0xa7, 0xba, 0x9e, 0x9d, 0xa8, 0xeb, 0x61, 0x91, 0xe9, 0xb5, 0xb1, 0x6c, 0x66, 0x76, 0x3a, 0x8b, + 0xdf, 0x35, 0xa7, 0xf3, 0x18, 0x4e, 0xc6, 0x8d, 0x88, 0x7b, 0x9c, 0x0d, 0x98, 0x37, 0x3c, 0x3c, + 0x64, 0x79, 0xc4, 0xd4, 0x34, 0x44, 0x88, 0x88, 0xa1, 0xca, 0x7f, 0x2e, 0x41, 0xa9, 0x35, 0xd4, + 0xfa, 0xb8, 0x6b, 0xe3, 0x1e, 0xe9, 0xd5, 0x20, 0x0d, 0x2e, 0x09, 0x6b, 0xa0, 0x76, 0x54, 0xcd, + 0xcc, 0x29, 0xbd, 0x93, 0x92, 0xe4, 0x10, 0x7c, 0xc6, 0x6b, 0xf9, 0x95, 0x35, 0xb0, 0x01, 0xc5, + 0x1f, 0xe0, 0x23, 0xe6, 0x8e, 0xa6, 0xa4, 0x93, 0xff, 0x31, 0x07, 0xab, 0x74, 0x3b, 0xdc, 0x14, + 0x69, 0x45, 0x05, 0xbb, 0xd6, 0xc8, 0xe9, 0x61, 0x97, 0xda, 0xa9, 0x3d, 0x52, 0x6d, 0xec, 0x18, + 0x96, 0xce, 0x13, 0x5b, 0xa5, 0x9e, 0x3d, 0xea, 0x50, 0x00, 0x3a, 0x0d, 0xa4, 0xa1, 0x7e, 0x39, + 0xb2, 0xf8, 0x12, 0xca, 0x2b, 0xc5, 0x9e, 0x3d, 0xfa, 0x1d, 0xd2, 0x16, 0xb4, 0xee, 0xa1, 0xe6, + 0x60, 0x97, 0xae, 0x10, 0x46, 0xdb, 0xa5, 0x00, 0x74, 0x03, 0x4e, 0x0c, 0xf1, 0xd0, 0x72, 0x8e, + 0xd4, 0x81, 0x31, 0x34, 0x3c, 0xd5, 0x30, 0xd5, 0xfd, 0x23, 0x0f, 0xbb, 0x7c, 0x35, 0x20, 0xf6, + 0xf2, 0x31, 0x79, 0xd7, 0x32, 0xef, 0x93, 0x37, 0x48, 0x86, 0x8a, 0x65, 0x0d, 0x55, 0xb7, 0x67, + 0x39, 0x58, 0xd5, 0xf4, 0x1f, 0xd3, 0x08, 0x21, 0xaf, 0x94, 0x2d, 0x6b, 0xd8, 0x25, 0xb0, 0xa6, + 0xfe, 0x63, 0xf4, 0x26, 0x94, 0x7b, 0xf6, 0xc8, 0xc5, 0x9e, 0x4a, 0x7e, 0x68, 0x00, 0x50, 0x52, + 0x80, 0x81, 0x36, 0xed, 0x91, 0x1b, 0x42, 0x18, 0x12, 0x83, 0x58, 0x0c, 0x23, 0x3c, 0xc1, 0x43, + 0x9a, 0x41, 0x3b, 0x1c, 0xf5, 0xb1, 0xad, 0xf5, 0x31, 0x13, 0x4d, 0xec, 0xdc, 0x29, 0x19, 0xb4, + 0x47, 0x1c, 0x91, 0x8a, 0xa9, 0x54, 0x0f, 0xc3, 0x4d, 0x57, 0xbe, 0x0f, 0x95, 0x08, 0x02, 0xd1, + 0x17, 0x65, 0xeb, 0x1a, 0x3f, 0x11, 0x86, 0x54, 0x24, 0x80, 0xae, 0xf1, 0x13, 0x9a, 0x3f, 0xa4, + 0xdd, 0x51, 0x45, 0x16, 0x14, 0xd6, 0x90, 0x35, 0xa8, 0x44, 0xd2, 0x74, 0xe4, 0x90, 0x4f, 0xf3, + 0x71, 0xfc, 0x90, 0x4f, 0x9e, 0x09, 0xcc, 0xb1, 0x06, 0x62, 0x5e, 0xe9, 0x33, 0x81, 0xd1, 0xc4, + 0x0f, 0x3b, 0x32, 0xd3, 0x67, 0xda, 0x05, 0x7e, 0xc6, 0xf3, 0xbc, 0x25, 0x85, 0x35, 0x64, 0x1d, + 0x60, 0x53, 0xb3, 0xb5, 0x7d, 0x63, 0x60, 0x78, 0x47, 0xe8, 0x0a, 0xd4, 0x34, 0x5d, 0x57, 0x7b, + 0x02, 0x62, 0x60, 0x91, 0x7d, 0x5f, 0xd6, 0x74, 0x7d, 0x33, 0x04, 0x46, 0x6f, 0xc3, 0x31, 0xdd, + 0xb1, 0xec, 0x28, 0x2e, 0x4b, 0xc7, 0xd7, 0xc8, 0x8b, 0x30, 0xb2, 0xfc, 0x9b, 0x05, 0x38, 0x13, + 0x35, 0xb3, 0x78, 0x2a, 0xf4, 0x1e, 0x2c, 0xc5, 0x7a, 0xcd, 0x48, 0x19, 0x06, 0xd2, 0x2a, 0x11, + 0x8a, 0x58, 0x6a, 0x2f, 0x97, 0x48, 0xed, 0xa5, 0x26, 0x5b, 0xf3, 0xaf, 0x35, 0xd9, 0x5a, 0x78, + 0x2d, 0xc9, 0xd6, 0xf9, 0x57, 0x4b, 0xb6, 0x2e, 0xcd, 0x98, 0x6c, 0xbd, 0x48, 0x9d, 0xbb, 0xe8, + 0x9d, 0xa6, 0x62, 0xd8, 0xc2, 0xa9, 0xf8, 0x7d, 0x98, 0xa2, 0xec, 0x13, 0x4b, 0xca, 0x2e, 0xce, + 0x92, 0x94, 0x2d, 0x66, 0x26, 0x65, 0xcf, 0xc1, 0x92, 0x69, 0xa9, 0x26, 0x7e, 0xae, 0x92, 0xe9, + 0x72, 0xeb, 0x65, 0x36, 0x77, 0xa6, 0xd5, 0xc6, 0xcf, 0x3b, 0x04, 0x82, 0xd6, 0x60, 0x69, 0xa8, + 0xb9, 0x4f, 0xb1, 0x4e, 0x33, 0xa2, 0x6e, 0xbd, 0x42, 0xed, 0xac, 0xcc, 0x60, 0x1d, 0x02, 0x42, + 0x17, 0xc0, 0x97, 0x83, 0x23, 0x55, 0x29, 0x52, 0x45, 0x40, 0x19, 0x5a, 0x28, 0xc1, 0xbb, 0xfc, + 0x4a, 0x09, 0xde, 0xda, 0xec, 0x09, 0xde, 0x6b, 0x50, 0x13, 0xcf, 0x22, 0xc3, 0xcb, 0x82, 0x77, + 0x9a, 0xdc, 0x5d, 0x16, 0xef, 0x44, 0x16, 0x37, 0x2b, 0x1f, 0x0c, 0x63, 0xf3, 0xc1, 0x7f, 0x25, + 0xc1, 0x4a, 0x74, 0xa9, 0xf1, 0x74, 0xd7, 0x43, 0x28, 0x39, 0xc2, 0xb7, 0xf3, 0xe5, 0x75, 0x25, + 0xe3, 0x6c, 0x94, 0xdc, 0x0c, 0x94, 0x80, 0x16, 0xfd, 0x30, 0x33, 0xcb, 0x7a, 0x7d, 0x12, 0xbf, + 0x49, 0x79, 0x56, 0xf9, 0x0f, 0x25, 0x38, 0xc3, 0x33, 0x4a, 0x19, 0x35, 0x93, 0x14, 0x73, 0x95, + 0x32, 0xcc, 0xb5, 0xe7, 0x60, 0x1d, 0x9b, 0x9e, 0xa1, 0x0d, 0x54, 0xd7, 0xc6, 0x3d, 0x91, 0xa7, + 0x09, 0xc0, 0x74, 0x73, 0x5f, 0x83, 0x25, 0x56, 0x42, 0x73, 0xac, 0x1e, 0x76, 0x5d, 0x5e, 0x29, + 0x2b, 0xd3, 0x2a, 0x1a, 0x03, 0xc9, 0x23, 0x58, 0xcd, 0x48, 0x73, 0xa5, 0x2a, 0x43, 0xca, 0x52, + 0xc6, 0xd8, 0x91, 0x25, 0x95, 0xf1, 0x47, 0x12, 0xbc, 0xc9, 0x49, 0x32, 0xfd, 0xe6, 0xb7, 0xa1, + 0x8e, 0x5f, 0x4a, 0x70, 0x32, 0x2e, 0x17, 0x57, 0x47, 0x2b, 0x69, 0x64, 0x6f, 0x67, 0xea, 0x61, + 0xbc, 0x99, 0x7d, 0x91, 0x69, 0x66, 0x37, 0x26, 0x73, 0x9c, 0xa8, 0xdb, 0x3f, 0x93, 0xe0, 0x54, + 0xa6, 0x18, 0xb1, 0xf0, 0x45, 0x8a, 0x87, 0x2f, 0x3c, 0xf4, 0xe9, 0x59, 0x23, 0xd3, 0x0b, 0x85, + 0x3e, 0x9b, 0xb4, 0x72, 0xcb, 0x62, 0x0c, 0x75, 0xa8, 0xbd, 0x30, 0x86, 0xa3, 0x21, 0x8f, 0x7d, + 0x08, 0xbb, 0x27, 0x0c, 0xf2, 0x12, 0xc1, 0x8f, 0xdc, 0x84, 0x63, 0xbe, 0x94, 0x63, 0x33, 0xfe, + 0xa1, 0x0c, 0x7e, 0x2e, 0x9a, 0xc1, 0x37, 0x61, 0x61, 0x0b, 0x3f, 0x33, 0x7a, 0xf8, 0xb5, 0x94, + 0x96, 0xcf, 0x41, 0xd9, 0xc6, 0xce, 0xd0, 0x70, 0x5d, 0x7f, 0x1b, 0x2d, 0x29, 0x61, 0x90, 0xfc, + 0xef, 0x0b, 0xb0, 0x1c, 0xb7, 0x8e, 0x8f, 0x12, 0x05, 0x83, 0xf3, 0x29, 0x1b, 0x7c, 0x7c, 0xa0, + 0xa1, 0x33, 0xd7, 0x0d, 0x11, 0x88, 0xe7, 0xb2, 0xf2, 0x62, 0x7e, 0xb0, 0x2d, 0xa2, 0xf4, 0x3a, + 0x2c, 0xf6, 0xac, 0xe1, 0x50, 0x33, 0x75, 0x71, 0x23, 0x80, 0x37, 0x89, 0xfe, 0x34, 0xa7, 0x4f, + 0xd4, 0x4e, 0xc0, 0xf4, 0x99, 0x4c, 0xde, 0x73, 0xcb, 0x79, 0x6a, 0x98, 0xb4, 0xf0, 0x40, 0xb7, + 0xe2, 0x92, 0x02, 0x1c, 0xb4, 0x65, 0x38, 0x68, 0x1d, 0x0a, 0xd8, 0x7c, 0x26, 0x0e, 0x55, 0x29, + 0x57, 0x06, 0x44, 0x08, 0xae, 0x50, 0x3c, 0x74, 0x1d, 0x16, 0x86, 0xc4, 0x2c, 0x44, 0x3a, 0x69, + 0x35, 0xa3, 0x72, 0xae, 0x70, 0x34, 0xb4, 0x01, 0x8b, 0x3a, 0x9d, 0x27, 0x11, 0x79, 0xd6, 0x53, + 0xca, 0x19, 0x14, 0x41, 0x11, 0x88, 0x68, 0xdb, 0x3f, 0x32, 0x96, 0xb2, 0xce, 0x7a, 0xb1, 0xa9, + 0x48, 0x3d, 0x37, 0xee, 0x46, 0x0f, 0x34, 0x40, 0x79, 0x6d, 0x4c, 0xe6, 0x35, 0xfe, 0xf0, 0x78, + 0x0a, 0x8a, 0x03, 0xab, 0xcf, 0xcc, 0xa8, 0xcc, 0x2e, 0x9b, 0x0c, 0xac, 0x3e, 0xb5, 0xa2, 0x15, + 0x72, 0x84, 0xd6, 0x0d, 0x93, 0xc6, 0x2c, 0x45, 0x85, 0x35, 0xc8, 0xe2, 0xa3, 0x0f, 0xaa, 0x65, + 0xf6, 0x70, 0xbd, 0x42, 0x5f, 0x95, 0x28, 0x64, 0xc7, 0xec, 0xd1, 0xa3, 0x8d, 0xe7, 0x1d, 0xd5, + 0xab, 0x14, 0x4e, 0x1e, 0xd1, 0x07, 0x22, 0xe3, 0xb7, 0x9c, 0x95, 0x1d, 0x49, 0xdb, 0x10, 0x45, + 0xc2, 0xef, 0x7e, 0x50, 0xe4, 0x60, 0x7b, 0xfa, 0xe5, 0xc9, 0xee, 0xe5, 0x3b, 0x54, 0xe3, 0xf8, + 0x1b, 0x09, 0x4e, 0x6e, 0xd2, 0xe4, 0x41, 0xc8, 0x8f, 0xcd, 0x92, 0x71, 0xbf, 0xe5, 0x17, 0x43, + 0x32, 0xb3, 0xd8, 0xf1, 0x71, 0x8b, 0x5a, 0x48, 0x0b, 0xaa, 0x82, 0x39, 0x67, 0x91, 0x9f, 0xba, + 0x9e, 0x52, 0x71, 0xc3, 0x4d, 0xf9, 0x03, 0x58, 0x4d, 0x8c, 0x82, 0x9f, 0xdf, 0xd7, 0x60, 0x29, + 0xf0, 0x57, 0xfe, 0x20, 0xca, 0x3e, 0xac, 0xa5, 0xcb, 0xb7, 0xe1, 0x44, 0xd7, 0xd3, 0x1c, 0x2f, + 0xa1, 0x82, 0x29, 0x68, 0x69, 0xa5, 0x24, 0x4a, 0xcb, 0x8b, 0x19, 0x5d, 0x58, 0xe9, 0x7a, 0x96, + 0xfd, 0x12, 0x4c, 0x89, 0xd7, 0x21, 0xe3, 0xb7, 0x46, 0x62, 0x7f, 0x10, 0x4d, 0x79, 0x95, 0xd5, + 0x75, 0x92, 0xbd, 0xdd, 0x81, 0x93, 0xac, 0xac, 0xf2, 0x32, 0x83, 0x38, 0x25, 0x8a, 0x3a, 0x49, + 0xbe, 0x4f, 0xe0, 0x78, 0xb0, 0x2d, 0x06, 0x09, 0xcb, 0x9b, 0xd1, 0x84, 0xe5, 0xb9, 0x31, 0xb3, + 0x1e, 0xc9, 0x57, 0xfe, 0x49, 0x2e, 0xe4, 0xd7, 0x33, 0xd2, 0x95, 0x77, 0xa2, 0xe9, 0xca, 0x0b, + 0x93, 0x78, 0x47, 0xb2, 0x95, 0x49, 0xab, 0xcd, 0xa7, 0x58, 0xed, 0xe7, 0x89, 0x9c, 0x66, 0x21, + 0x2b, 0x29, 0x1c, 0x93, 0xf6, 0xb7, 0x92, 0xd2, 0x54, 0x58, 0x4a, 0xd3, 0xef, 0xda, 0xaf, 0x82, + 0xdd, 0x8a, 0xa5, 0x34, 0xd7, 0x26, 0xca, 0xeb, 0x67, 0x34, 0xff, 0xb2, 0x00, 0x25, 0xff, 0x5d, + 0x42, 0xe7, 0x49, 0xb5, 0xe5, 0x52, 0xd4, 0x16, 0xde, 0x81, 0xf3, 0xaf, 0xb4, 0x03, 0x17, 0xa6, + 0xde, 0x81, 0x4f, 0x43, 0x89, 0x3e, 0xd0, 0x7b, 0x23, 0x6c, 0x47, 0x2d, 0x52, 0x80, 0x82, 0x0f, + 0x02, 0x33, 0x5c, 0x98, 0xc9, 0x0c, 0x63, 0x49, 0xd4, 0xc5, 0x78, 0x12, 0xf5, 0x23, 0x7f, 0x47, + 0x64, 0x9b, 0xe8, 0xa5, 0x31, 0x7c, 0x53, 0xf7, 0xc2, 0x58, 0x72, 0xaf, 0x94, 0x95, 0xdc, 0x0b, + 0xb8, 0x8c, 0x4f, 0xee, 0x7d, 0x8b, 0x3b, 0xc4, 0x1e, 0xcb, 0x8c, 0x86, 0x6d, 0x91, 0x7b, 0xd6, + 0x3b, 0x00, 0xbe, 0x13, 0x11, 0xe9, 0xd1, 0xd3, 0x63, 0xc6, 0xa8, 0x84, 0xd0, 0x09, 0xdb, 0xc8, + 0xd4, 0x04, 0x95, 0xde, 0xe9, 0xfc, 0x63, 0x46, 0x99, 0xf7, 0x7f, 0xe6, 0x43, 0xfe, 0x25, 0xa3, + 0x82, 0xf9, 0x51, 0x22, 0x79, 0x3f, 0xa3, 0x15, 0xdf, 0x8c, 0xe6, 0xee, 0x5f, 0xd2, 0xea, 0x12, + 0xa9, 0x7b, 0x1a, 0xb9, 0x68, 0x0e, 0x7f, 0xcd, 0x12, 0x94, 0x25, 0x0e, 0x69, 0xd2, 0x93, 0xc1, + 0x81, 0x61, 0x1a, 0xee, 0x21, 0x7b, 0xbf, 0xc0, 0x4e, 0x06, 0x02, 0xd4, 0xa4, 0x29, 0x42, 0xfc, + 0xc2, 0xf0, 0xd4, 0x9e, 0xa5, 0x63, 0x6a, 0xd3, 0xf3, 0x4a, 0x91, 0x00, 0x36, 0x2d, 0x1d, 0x07, + 0x2b, 0xaf, 0xf8, 0x72, 0x2b, 0xaf, 0x14, 0x5b, 0x79, 0x27, 0x61, 0xc1, 0xc1, 0x9a, 0x6b, 0x99, + 0x2c, 0xa1, 0xa0, 0xf0, 0x16, 0x99, 0x9a, 0x21, 0x76, 0x5d, 0xd2, 0x13, 0x0f, 0xd7, 0x78, 0x33, + 0x14, 0x66, 0x2e, 0x4d, 0x0c, 0x33, 0xc7, 0x54, 0x46, 0x63, 0x61, 0x66, 0x65, 0x62, 0x98, 0x39, + 0x55, 0x61, 0x34, 0x08, 0xb4, 0xab, 0xd3, 0x05, 0xda, 0xe1, 0xb8, 0x74, 0x39, 0x12, 0x97, 0x7e, + 0x9b, 0x8b, 0xf5, 0xd7, 0x12, 0xac, 0x26, 0x96, 0x15, 0x5f, 0xae, 0xb7, 0x62, 0xa5, 0xd3, 0xb5, + 0x89, 0x3a, 0xf3, 0x2b, 0xa7, 0x0f, 0x23, 0x95, 0xd3, 0x77, 0x27, 0x13, 0xbe, 0xf6, 0xc2, 0xe9, + 0x7f, 0xe7, 0xe0, 0xcd, 0x3d, 0x5b, 0x8f, 0x45, 0x78, 0xfc, 0xd8, 0x3f, 0xbd, 0xe3, 0xf8, 0x48, + 0xc4, 0xfa, 0xb9, 0x59, 0x33, 0x58, 0x3c, 0xdc, 0xdf, 0x0e, 0xc2, 0xfd, 0xfc, 0xec, 0xf9, 0x09, + 0x41, 0x8b, 0xf4, 0xa8, 0x11, 0xb3, 0xe0, 0xe3, 0x7e, 0x92, 0xd5, 0x84, 0x21, 0x7f, 0xc3, 0x25, + 0x21, 0x19, 0xce, 0x65, 0x0b, 0xc0, 0xe3, 0xc3, 0x1f, 0xc1, 0xf2, 0xf6, 0x0b, 0xdc, 0xeb, 0x1e, + 0x99, 0xbd, 0x19, 0xe6, 0xa1, 0x06, 0xf9, 0xde, 0x50, 0xe7, 0x09, 0x7f, 0xf2, 0x18, 0x0e, 0x79, + 0xf3, 0xd1, 0x90, 0x57, 0x85, 0x5a, 0xd0, 0x03, 0xb7, 0xe5, 0x93, 0xc4, 0x96, 0x75, 0x82, 0x4c, + 0x98, 0x2f, 0x29, 0xbc, 0xc5, 0xe1, 0xd8, 0x61, 0xb7, 0xaa, 0x18, 0x1c, 0x3b, 0x4e, 0xd4, 0x35, + 0xe6, 0xa3, 0xae, 0x51, 0xfe, 0x63, 0x09, 0xca, 0xa4, 0x87, 0x57, 0x92, 0x9f, 0x9f, 0x2b, 0xf3, + 0xc1, 0xb9, 0xd2, 0x3f, 0x9e, 0x16, 0xc2, 0xc7, 0xd3, 0x40, 0xf2, 0x79, 0x0a, 0x4e, 0x4a, 0xbe, + 0xe0, 0xc3, 0xb1, 0xe3, 0xc8, 0xe7, 0x60, 0x89, 0xc9, 0xc6, 0x47, 0x5e, 0x83, 0xfc, 0xc8, 0x19, + 0x88, 0xf9, 0x1b, 0x39, 0x03, 0xf9, 0xf7, 0x25, 0xa8, 0x34, 0x3d, 0x4f, 0xeb, 0x1d, 0xce, 0x30, + 0x00, 0x5f, 0xb8, 0x5c, 0x58, 0xb8, 0xe4, 0x20, 0x02, 0x71, 0x0b, 0x19, 0xe2, 0xce, 0x47, 0xc4, + 0x95, 0xa1, 0x2a, 0x64, 0xc9, 0x14, 0xb8, 0x0d, 0xa8, 0x63, 0x39, 0xde, 0x03, 0xcb, 0x79, 0xae, + 0x39, 0xfa, 0x6c, 0xc7, 0x4d, 0x04, 0x05, 0xfe, 0xd5, 0x44, 0xfe, 0xf2, 0xbc, 0x42, 0x9f, 0xe5, + 0x4b, 0x70, 0x3c, 0xc2, 0x2f, 0xb3, 0xe3, 0x7b, 0x50, 0xa6, 0x9b, 0x1c, 0x3f, 0x77, 0xdc, 0x08, + 0xd7, 0x65, 0xa7, 0xda, 0x12, 0xe5, 0xff, 0x0f, 0xc7, 0x48, 0x30, 0x44, 0xe1, 0xbe, 0xdf, 0xf9, + 0x7e, 0x2c, 0x28, 0x3f, 0x93, 0xc1, 0x28, 0x16, 0x90, 0xff, 0x46, 0x82, 0x79, 0x0a, 0x4f, 0x04, + 0x28, 0xa7, 0xa1, 0xe4, 0x60, 0xdb, 0x52, 0x3d, 0xad, 0xef, 0x7f, 0xa3, 0x42, 0x00, 0xbb, 0x5a, + 0x9f, 0x16, 0x33, 0xe8, 0x4b, 0xdd, 0xe8, 0x63, 0xd7, 0x13, 0x1f, 0xaa, 0x94, 0x09, 0x6c, 0x8b, + 0x81, 0x88, 0x92, 0x68, 0x99, 0xb0, 0x40, 0xab, 0x81, 0xf4, 0x19, 0xad, 0xb3, 0xcb, 0xbc, 0xd3, + 0x54, 0x87, 0xe8, 0x55, 0xdf, 0x06, 0x14, 0x63, 0x05, 0x1d, 0xbf, 0x8d, 0xae, 0x43, 0x81, 0xa6, + 0x80, 0x17, 0x27, 0xeb, 0x8d, 0x22, 0xca, 0xdb, 0x80, 0xc2, 0x6a, 0xe3, 0x13, 0x74, 0x1d, 0x16, + 0xa8, 0x56, 0x45, 0xec, 0xb8, 0x9a, 0xc1, 0x48, 0xe1, 0x68, 0xb2, 0x06, 0x88, 0x71, 0x8e, 0xc4, + 0x8b, 0xb3, 0x4f, 0xe3, 0x98, 0xf8, 0xf1, 0xaf, 0x25, 0x38, 0x1e, 0xe9, 0x83, 0xcb, 0x7a, 0x2d, + 0xda, 0x49, 0xa6, 0xa8, 0xbc, 0x83, 0xcd, 0xc8, 0x86, 0x79, 0x3d, 0x4b, 0xa4, 0x6f, 0x68, 0xb3, + 0xfc, 0x3b, 0x09, 0xa0, 0x39, 0xf2, 0x0e, 0x79, 0xde, 0x34, 0x3c, 0x95, 0x52, 0x6c, 0x2a, 0x1b, + 0x50, 0xb4, 0x35, 0xd7, 0x7d, 0x6e, 0x39, 0xe2, 0xc4, 0xe7, 0xb7, 0x69, 0x86, 0x73, 0xe4, 0x1d, + 0x8a, 0x32, 0x30, 0x79, 0x46, 0x17, 0xa0, 0xca, 0x3e, 0xa4, 0x52, 0x35, 0x5d, 0x77, 0xb0, 0xeb, + 0xf2, 0x7a, 0x70, 0x85, 0x41, 0x9b, 0x0c, 0x48, 0xd0, 0x0c, 0x5a, 0x16, 0xf0, 0x8e, 0x54, 0xcf, + 0x7a, 0x8a, 0x4d, 0x7e, 0x72, 0xab, 0x08, 0xe8, 0x2e, 0x01, 0xb2, 0xaa, 0x5b, 0xdf, 0x70, 0x3d, + 0x47, 0xa0, 0x89, 0xda, 0x21, 0x87, 0x52, 0x34, 0x32, 0x29, 0xb5, 0xce, 0x68, 0x30, 0x60, 0x2a, + 0x7e, 0xf9, 0x69, 0xff, 0x1e, 0x1f, 0x50, 0x2e, 0x6b, 0x11, 0x04, 0x4a, 0xe3, 0xc3, 0x7d, 0x8d, + 0x29, 0xaa, 0xef, 0xc1, 0xb1, 0xd0, 0x18, 0xb8, 0x59, 0x45, 0x42, 0x6c, 0x29, 0x1a, 0x62, 0xcb, + 0x0f, 0x01, 0xb1, 0xac, 0xcc, 0x2b, 0x8e, 0x5b, 0x3e, 0x01, 0xc7, 0x23, 0x8c, 0xf8, 0xd6, 0x7d, + 0x15, 0x2a, 0xfc, 0x12, 0x24, 0x37, 0x94, 0x53, 0x50, 0x24, 0x2e, 0xb8, 0x67, 0xe8, 0xe2, 0x8e, + 0xc0, 0xa2, 0x6d, 0xe9, 0x9b, 0x86, 0xee, 0xc8, 0x9f, 0x40, 0x85, 0x7f, 0x8d, 0xc1, 0x71, 0x1f, + 0x40, 0x95, 0x5f, 0x99, 0x54, 0x23, 0x97, 0xa1, 0xd3, 0xbe, 0x8d, 0x0a, 0x77, 0xa2, 0x54, 0xcc, + 0x70, 0x53, 0xd6, 0xa1, 0xc1, 0x62, 0x8c, 0x08, 0x7b, 0x31, 0xd8, 0x07, 0x20, 0xee, 0x08, 0x4d, + 0xec, 0x25, 0x4a, 0x5f, 0x71, 0xc2, 0x4d, 0xf9, 0x0c, 0x9c, 0x4e, 0xed, 0x85, 0x6b, 0xc2, 0x86, + 0x5a, 0xf0, 0x82, 0xdd, 0xd8, 0xf5, 0x2f, 0x41, 0x48, 0xa1, 0x4b, 0x10, 0x27, 0xfd, 0x10, 0x3a, + 0x27, 0x76, 0x3d, 0x1a, 0x1f, 0x07, 0x87, 0xa1, 0x7c, 0xd6, 0x61, 0xa8, 0x10, 0x39, 0x0c, 0xc9, + 0x5d, 0x5f, 0x9f, 0xfc, 0x90, 0x7a, 0x9f, 0x1e, 0xa6, 0x59, 0xdf, 0xc2, 0x21, 0xca, 0xe3, 0x46, + 0xc9, 0x50, 0x95, 0x10, 0x95, 0x7c, 0x05, 0x2a, 0x51, 0xd7, 0x18, 0xf2, 0x73, 0x52, 0xc2, 0xcf, + 0x55, 0x63, 0x2e, 0xee, 0xfd, 0xd8, 0xf9, 0x20, 0x5b, 0xc7, 0xb1, 0xd3, 0xc1, 0xdd, 0x88, 0xb3, + 0xbb, 0x9a, 0x52, 0xd3, 0xfe, 0x86, 0xfc, 0xdc, 0x0a, 0xdf, 0x0f, 0x1e, 0xb8, 0x84, 0x9e, 0x0f, + 0x5a, 0x3e, 0x0f, 0xe5, 0xbd, 0xac, 0x6f, 0xeb, 0x0a, 0xe2, 0xe6, 0xd2, 0x4d, 0x58, 0x79, 0x60, + 0x0c, 0xb0, 0x7b, 0xe4, 0x7a, 0x78, 0xd8, 0xa2, 0x4e, 0xe9, 0xc0, 0xc0, 0x0e, 0x3a, 0x0b, 0x40, + 0x0f, 0x78, 0xb6, 0x65, 0xf8, 0x5f, 0x09, 0x85, 0x20, 0xf2, 0x7f, 0x48, 0xb0, 0x1c, 0x10, 0xee, + 0xd1, 0x83, 0xed, 0x1b, 0x50, 0x22, 0xe3, 0x75, 0x3d, 0x6d, 0x68, 0x8b, 0x6a, 0x9f, 0x0f, 0x40, + 0x77, 0x60, 0xfe, 0xc0, 0x15, 0x09, 0xb5, 0xd4, 0xf2, 0x42, 0x9a, 0x20, 0x4a, 0xe1, 0xc0, 0x6d, + 0xe9, 0xe8, 0x03, 0x80, 0x91, 0x8b, 0x75, 0x5e, 0xe1, 0xcb, 0x67, 0x85, 0x17, 0x7b, 0xe1, 0xbb, + 0x1d, 0x84, 0x80, 0x5d, 0x7a, 0xba, 0x0b, 0x65, 0xc3, 0xb4, 0x74, 0x4c, 0xab, 0xbb, 0x3a, 0xcf, + 0xb9, 0x4d, 0x20, 0x07, 0x46, 0xb1, 0xe7, 0x62, 0x5d, 0xc6, 0x7c, 0x2f, 0x14, 0xfa, 0xe5, 0x86, + 0xd2, 0x86, 0x63, 0xcc, 0x69, 0x1d, 0xf8, 0x82, 0x0b, 0x8b, 0x5d, 0x1b, 0x37, 0x3a, 0xaa, 0x2d, + 0xa5, 0x66, 0xf0, 0x58, 0x48, 0x90, 0xca, 0xb7, 0xe1, 0x44, 0xe4, 0xfc, 0x38, 0xc3, 0x81, 0x4e, + 0xee, 0xc4, 0xd2, 0x48, 0x81, 0x39, 0xf3, 0x24, 0x8d, 0xb0, 0xe6, 0x49, 0x49, 0x1a, 0x97, 0x25, + 0x69, 0x5c, 0xf9, 0x73, 0x38, 0x15, 0xc9, 0x77, 0x45, 0x24, 0xba, 0x1b, 0x0b, 0xf5, 0x2e, 0x4e, + 0xe2, 0x1a, 0x8b, 0xf9, 0xfe, 0x4b, 0x82, 0x95, 0x34, 0x84, 0x97, 0xcc, 0xc7, 0xfe, 0x28, 0xe3, + 0x6a, 0xee, 0xad, 0xe9, 0xc4, 0xfa, 0xad, 0xe4, 0xb2, 0x77, 0xa1, 0x91, 0xa6, 0xcf, 0xe4, 0x2c, + 0xe5, 0x67, 0x99, 0xa5, 0x9f, 0xe7, 0x43, 0x75, 0x89, 0xa6, 0xe7, 0x39, 0xc6, 0xfe, 0x88, 0x98, + 0xfc, 0x6b, 0xcf, 0xf5, 0xb5, 0xfc, 0xac, 0x15, 0x53, 0xed, 0x8d, 0x31, 0xe4, 0x81, 0x1c, 0xa9, + 0x99, 0xab, 0x4f, 0xd3, 0x0e, 0xfd, 0x37, 0xa7, 0xe3, 0xf7, 0x9d, 0x4d, 0x0f, 0xff, 0x3c, 0x07, + 0xd5, 0xe8, 0x14, 0xa1, 0x6d, 0x00, 0xcd, 0x97, 0x9c, 0x2f, 0x94, 0x0b, 0x53, 0x0d, 0x53, 0x09, + 0x11, 0xa2, 0x77, 0x20, 0xdf, 0xb3, 0x47, 0x7c, 0xd6, 0x52, 0x4a, 0xe5, 0x9b, 0xf6, 0x88, 0x79, + 0x14, 0x82, 0x46, 0x0e, 0x61, 0xec, 0xe6, 0x43, 0xb6, 0x97, 0x7c, 0x42, 0xdf, 0x33, 0x1a, 0x8e, + 0x8c, 0x1e, 0x41, 0xf5, 0xb9, 0x63, 0x78, 0xda, 0xfe, 0x00, 0xab, 0x03, 0xed, 0x08, 0x3b, 0xdc, + 0x4b, 0x4e, 0xe1, 0xc8, 0x2a, 0x82, 0xf0, 0x31, 0xa1, 0x93, 0x7f, 0x0f, 0x8a, 0x42, 0xa2, 0x09, + 0x3b, 0xc2, 0x2e, 0xac, 0x8e, 0x08, 0x9a, 0x4a, 0x2f, 0xa3, 0x9a, 0x9a, 0x69, 0xa9, 0x2e, 0x26, + 0xdb, 0xb8, 0xf8, 0x12, 0x68, 0x82, 0x8b, 0x5e, 0xa1, 0xd4, 0x9b, 0x96, 0x83, 0xdb, 0x9a, 0x69, + 0x75, 0x19, 0xa9, 0xfc, 0x0c, 0xca, 0xa1, 0x01, 0x4e, 0x10, 0xa1, 0x05, 0xc7, 0xc4, 0x45, 0x05, + 0x17, 0x7b, 0x7c, 0x7b, 0x99, 0xaa, 0xf3, 0x65, 0x4e, 0xd7, 0xc5, 0x1e, 0xbb, 0x5c, 0x72, 0x17, + 0x4e, 0x29, 0xd8, 0xb2, 0xb1, 0xe9, 0xcf, 0xe7, 0x63, 0xab, 0x3f, 0x83, 0x07, 0x7f, 0x03, 0x1a, + 0x69, 0xf4, 0xcc, 0x3f, 0x5c, 0xbd, 0x08, 0x45, 0xf1, 0x2f, 0x0a, 0x68, 0x11, 0xf2, 0xbb, 0x9b, + 0x9d, 0xda, 0x1c, 0x79, 0xd8, 0xdb, 0xea, 0xd4, 0x24, 0x54, 0x84, 0x42, 0x77, 0x73, 0xb7, 0x53, + 0xcb, 0x5d, 0x1d, 0x42, 0x2d, 0xfe, 0x17, 0x02, 0x68, 0x15, 0x8e, 0x77, 0x94, 0x9d, 0x4e, 0xf3, + 0x61, 0x73, 0xb7, 0xb5, 0xd3, 0x56, 0x3b, 0x4a, 0xeb, 0xe3, 0xe6, 0xee, 0x76, 0x6d, 0x0e, 0xad, + 0xc1, 0x99, 0xf0, 0x8b, 0x47, 0x3b, 0xdd, 0x5d, 0x75, 0x77, 0x47, 0xdd, 0xdc, 0x69, 0xef, 0x36, + 0x5b, 0xed, 0x6d, 0xa5, 0x26, 0xa1, 0x33, 0x70, 0x2a, 0x8c, 0x72, 0xbf, 0xb5, 0xd5, 0x52, 0xb6, + 0x37, 0xc9, 0x73, 0xf3, 0x71, 0x2d, 0x77, 0xf5, 0x43, 0xa8, 0x44, 0xbe, 0xf8, 0x27, 0x22, 0x75, + 0x76, 0xb6, 0x6a, 0x73, 0xa8, 0x02, 0xa5, 0x30, 0x9f, 0x22, 0x14, 0xda, 0x3b, 0x5b, 0xdb, 0xb5, + 0x1c, 0x02, 0x58, 0xd8, 0x6d, 0x2a, 0x0f, 0xb7, 0x77, 0x6b, 0xf9, 0xab, 0xb7, 0x61, 0x39, 0x76, + 0xbb, 0x1f, 0x1d, 0x83, 0x4a, 0xb7, 0xd9, 0xde, 0xba, 0xbf, 0xf3, 0xa9, 0xaa, 0x6c, 0x37, 0xb7, + 0x3e, 0xab, 0xcd, 0xa1, 0x15, 0xa8, 0x09, 0x50, 0x7b, 0x67, 0x97, 0x41, 0xa5, 0xab, 0x4f, 0x63, + 0xeb, 0x0d, 0xa3, 0x13, 0x70, 0xcc, 0xef, 0x52, 0xdd, 0x54, 0xb6, 0x9b, 0xbb, 0xdb, 0x44, 0x92, + 0x08, 0x58, 0xd9, 0x6b, 0xb7, 0x5b, 0xed, 0x87, 0x35, 0x89, 0x70, 0x0d, 0xc0, 0xdb, 0x9f, 0xb6, + 0x08, 0x72, 0x2e, 0x8a, 0xbc, 0xd7, 0xfe, 0x41, 0x7b, 0xe7, 0x93, 0x76, 0x2d, 0xbf, 0xf1, 0xcb, + 0x63, 0xfe, 0x57, 0xd8, 0x5d, 0xec, 0xd0, 0xfb, 0x3f, 0x1d, 0x58, 0x14, 0xff, 0xd0, 0x91, 0xe2, + 0xad, 0xa3, 0xff, 0x2b, 0xd2, 0x58, 0x1b, 0x83, 0xc1, 0x63, 0xef, 0x39, 0xb4, 0x4f, 0x63, 0xe1, + 0xd0, 0xd7, 0x16, 0x17, 0x53, 0x23, 0xcf, 0xc4, 0x07, 0x1e, 0x8d, 0x4b, 0x13, 0xf1, 0xfc, 0x3e, + 0x30, 0x09, 0x77, 0xc3, 0x1f, 0x34, 0xa2, 0x4b, 0x69, 0x71, 0x6a, 0xca, 0x17, 0x93, 0x8d, 0xcb, + 0x93, 0x11, 0xfd, 0x6e, 0x9e, 0x42, 0x2d, 0xfe, 0x71, 0x23, 0x4a, 0x49, 0x32, 0x67, 0x7c, 0x41, + 0xd9, 0xb8, 0x3a, 0x0d, 0x6a, 0xb8, 0xb3, 0xc4, 0xd7, 0x7a, 0x57, 0xa6, 0xf9, 0xaa, 0x29, 0xb3, + 0xb3, 0xac, 0x0f, 0xa0, 0x98, 0x02, 0xa3, 0x1f, 0x48, 0xa0, 0xd4, 0x4f, 0xe3, 0x52, 0xbe, 0xc3, + 0x49, 0x53, 0x60, 0xfa, 0xb7, 0x16, 0xf2, 0x1c, 0x3a, 0x84, 0xe5, 0xd8, 0x45, 0x0e, 0x94, 0x42, + 0x9e, 0x7e, 0x63, 0xa5, 0x71, 0x65, 0x0a, 0xcc, 0xa8, 0x45, 0x84, 0x2f, 0x6e, 0xa4, 0x5b, 0x44, + 0xca, 0xb5, 0x90, 0x74, 0x8b, 0x48, 0xbd, 0x03, 0x42, 0x8d, 0x3b, 0x72, 0x61, 0x23, 0xcd, 0xb8, + 0xd3, 0xae, 0x89, 0x34, 0x2e, 0x4d, 0xc4, 0x0b, 0x2b, 0x2d, 0x76, 0x7d, 0x23, 0x4d, 0x69, 0xe9, + 0xd7, 0x43, 0x1a, 0x57, 0xa6, 0xc0, 0x8c, 0x5b, 0x41, 0x50, 0x0c, 0xce, 0xb2, 0x82, 0xc4, 0xd5, + 0x85, 0x2c, 0x2b, 0x48, 0xd6, 0x95, 0xb9, 0x15, 0xc4, 0x8a, 0xb8, 0x97, 0xa7, 0x28, 0x3a, 0x65, + 0x5b, 0x41, 0x7a, 0x79, 0x4a, 0x9e, 0x43, 0x3f, 0x93, 0xa0, 0x9e, 0x55, 0xe3, 0x40, 0x37, 0x66, + 0x2e, 0xc8, 0x34, 0x36, 0x66, 0x21, 0xf1, 0xa5, 0xf8, 0x12, 0x50, 0x72, 0x0f, 0x44, 0x6f, 0xa7, + 0xcd, 0x4c, 0xc6, 0x4e, 0xdb, 0x78, 0x67, 0x3a, 0x64, 0xbf, 0xcb, 0x2e, 0x14, 0x45, 0x55, 0x05, + 0xa5, 0x78, 0xe9, 0x58, 0x4d, 0xa7, 0x21, 0x8f, 0x43, 0xf1, 0x99, 0x3e, 0x84, 0x02, 0x81, 0xa2, + 0x33, 0xe9, 0xd8, 0x82, 0xd9, 0xd9, 0xac, 0xd7, 0x3e, 0xa3, 0x27, 0xb0, 0xc0, 0xca, 0x08, 0x28, + 0x25, 0x0b, 0x11, 0x29, 0x76, 0x34, 0xce, 0x65, 0x23, 0xf8, 0xec, 0xbe, 0x60, 0x7f, 0xde, 0xc4, + 0x2b, 0x04, 0xe8, 0xad, 0xf4, 0xff, 0x68, 0x88, 0x16, 0x24, 0x1a, 0x17, 0x26, 0x60, 0x85, 0x17, + 0x45, 0x2c, 0x02, 0xbe, 0x34, 0xf1, 0x18, 0x93, 0xbd, 0x28, 0xd2, 0x0f, 0x4a, 0xcc, 0x48, 0x92, + 0x07, 0xa9, 0x34, 0x23, 0xc9, 0x3c, 0xbe, 0xa6, 0x19, 0x49, 0xf6, 0xd9, 0x4c, 0x9e, 0x43, 0x1e, + 0x1c, 0x4f, 0x49, 0x9b, 0xa1, 0x77, 0xb2, 0x8c, 0x3c, 0x2d, 0x87, 0xd7, 0xb8, 0x36, 0x25, 0x76, + 0x78, 0xf2, 0xf9, 0xa2, 0x7f, 0x33, 0x3b, 0x97, 0x94, 0x39, 0xf9, 0xf1, 0x25, 0xbe, 0xf1, 0x2f, + 0x79, 0x58, 0x62, 0x29, 0x51, 0x1e, 0xc1, 0x7c, 0x06, 0x10, 0x54, 0x23, 0xd0, 0xf9, 0x74, 0x9d, + 0x44, 0x4a, 0x3c, 0x8d, 0xb7, 0xc6, 0x23, 0x85, 0x0d, 0x2d, 0x94, 0xd9, 0x4f, 0x33, 0xb4, 0x64, + 0x01, 0x23, 0xcd, 0xd0, 0x52, 0xca, 0x03, 0xf2, 0x1c, 0xfa, 0x18, 0x4a, 0x7e, 0x0a, 0x19, 0xa5, + 0xa5, 0xa0, 0x63, 0x39, 0xf2, 0xc6, 0xf9, 0xb1, 0x38, 0x61, 0xa9, 0x43, 0xf9, 0xe1, 0x34, 0xa9, + 0x93, 0x79, 0xe8, 0x34, 0xa9, 0xd3, 0x92, 0xcc, 0x81, 0x4e, 0x58, 0x16, 0x29, 0x53, 0x27, 0x91, + 0x24, 0x5e, 0xa6, 0x4e, 0xa2, 0xa9, 0x28, 0x79, 0xee, 0xfe, 0xc5, 0x5f, 0x7d, 0x75, 0x56, 0xfa, + 0xa7, 0xaf, 0xce, 0xce, 0xfd, 0xf4, 0xeb, 0xb3, 0xd2, 0xaf, 0xbe, 0x3e, 0x2b, 0xfd, 0xc3, 0xd7, + 0x67, 0xa5, 0x7f, 0xfd, 0xfa, 0xac, 0xf4, 0x07, 0xff, 0x76, 0x76, 0xee, 0x87, 0x45, 0x41, 0xbd, + 0xbf, 0x40, 0xff, 0x82, 0xed, 0xdd, 0xff, 0x0d, 0x00, 0x00, 0xff, 0xff, 0xb9, 0x86, 0xf5, 0x30, + 0x48, 0x4f, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -9204,6 +9345,18 @@ func (m *PodSandboxConfig) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if m.Windows != nil { + { + size, err := m.Windows.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintApi(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x4a + } if m.Linux != nil { { size, err := m.Linux.MarshalToSizedBuffer(dAtA[:i]) @@ -10494,21 +10647,21 @@ func (m *LinuxContainerSecurityContext) MarshalToSizedBuffer(dAtA []byte) (int, dAtA[i] = 0x4a } if len(m.SupplementalGroups) > 0 { - dAtA27 := make([]byte, len(m.SupplementalGroups)*10) - var j26 int + dAtA28 := make([]byte, len(m.SupplementalGroups)*10) + var j27 int for _, num1 := range m.SupplementalGroups { num := uint64(num1) for num >= 1<<7 { - dAtA27[j26] = uint8(uint64(num)&0x7f | 0x80) + dAtA28[j27] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 - j26++ + j27++ } - dAtA27[j26] = uint8(num) - j26++ + dAtA28[j27] = uint8(num) + j27++ } - i -= j26 - copy(dAtA[i:], dAtA27[:j26]) - i = encodeVarintApi(dAtA, i, uint64(j26)) + i -= j27 + copy(dAtA[i:], dAtA28[:j27]) + i = encodeVarintApi(dAtA, i, uint64(j27)) i-- dAtA[i] = 0x42 } @@ -10637,6 +10790,88 @@ func (m *LinuxContainerConfig) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *WindowsSandboxSecurityContext) 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 *WindowsSandboxSecurityContext) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *WindowsSandboxSecurityContext) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.HostProcess { + i-- + if m.HostProcess { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x18 + } + if len(m.CredentialSpec) > 0 { + i -= len(m.CredentialSpec) + copy(dAtA[i:], m.CredentialSpec) + i = encodeVarintApi(dAtA, i, uint64(len(m.CredentialSpec))) + i-- + dAtA[i] = 0x12 + } + if len(m.RunAsUsername) > 0 { + i -= len(m.RunAsUsername) + copy(dAtA[i:], m.RunAsUsername) + i = encodeVarintApi(dAtA, i, uint64(len(m.RunAsUsername))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *WindowsPodSandboxConfig) 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 *WindowsPodSandboxConfig) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *WindowsPodSandboxConfig) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.SecurityContext != nil { + { + size, err := m.SecurityContext.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintApi(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + func (m *WindowsContainerSecurityContext) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -10657,6 +10892,16 @@ func (m *WindowsContainerSecurityContext) MarshalToSizedBuffer(dAtA []byte) (int _ = i var l int _ = l + if m.HostProcess { + i-- + if m.HostProcess { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x18 + } if len(m.CredentialSpec) > 0 { i -= len(m.CredentialSpec) copy(dAtA[i:], m.CredentialSpec) @@ -12255,21 +12500,21 @@ func (m *PortForwardRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { var l int _ = l if len(m.Port) > 0 { - dAtA52 := make([]byte, len(m.Port)*10) - var j51 int + dAtA54 := make([]byte, len(m.Port)*10) + var j53 int for _, num1 := range m.Port { num := uint64(num1) for num >= 1<<7 { - dAtA52[j51] = uint8(uint64(num)&0x7f | 0x80) + dAtA54[j53] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 - j51++ + j53++ } - dAtA52[j51] = uint8(num) - j51++ + dAtA54[j53] = uint8(num) + j53++ } - i -= j51 - copy(dAtA[i:], dAtA52[:j51]) - i = encodeVarintApi(dAtA, i, uint64(j51)) + i -= j53 + copy(dAtA[i:], dAtA54[:j53]) + i = encodeVarintApi(dAtA, i, uint64(j53)) i-- dAtA[i] = 0x12 } @@ -14096,6 +14341,10 @@ func (m *PodSandboxConfig) Size() (n int) { l = m.Linux.Size() n += 1 + l + sovApi(uint64(l)) } + if m.Windows != nil { + l = m.Windows.Size() + n += 1 + l + sovApi(uint64(l)) + } return n } @@ -14659,6 +14908,39 @@ func (m *LinuxContainerConfig) Size() (n int) { return n } +func (m *WindowsSandboxSecurityContext) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.RunAsUsername) + if l > 0 { + n += 1 + l + sovApi(uint64(l)) + } + l = len(m.CredentialSpec) + if l > 0 { + n += 1 + l + sovApi(uint64(l)) + } + if m.HostProcess { + n += 2 + } + return n +} + +func (m *WindowsPodSandboxConfig) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.SecurityContext != nil { + l = m.SecurityContext.Size() + n += 1 + l + sovApi(uint64(l)) + } + return n +} + func (m *WindowsContainerSecurityContext) Size() (n int) { if m == nil { return 0 @@ -14673,6 +14955,9 @@ func (m *WindowsContainerSecurityContext) Size() (n int) { if l > 0 { n += 1 + l + sovApi(uint64(l)) } + if m.HostProcess { + n += 2 + } return n } @@ -16153,6 +16438,7 @@ func (this *PodSandboxConfig) String() string { `Labels:` + mapStringForLabels + `,`, `Annotations:` + mapStringForAnnotations + `,`, `Linux:` + strings.Replace(this.Linux.String(), "LinuxPodSandboxConfig", "LinuxPodSandboxConfig", 1) + `,`, + `Windows:` + strings.Replace(this.Windows.String(), "WindowsPodSandboxConfig", "WindowsPodSandboxConfig", 1) + `,`, `}`, }, "") return s @@ -16550,6 +16836,28 @@ func (this *LinuxContainerConfig) String() string { }, "") return s } +func (this *WindowsSandboxSecurityContext) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&WindowsSandboxSecurityContext{`, + `RunAsUsername:` + fmt.Sprintf("%v", this.RunAsUsername) + `,`, + `CredentialSpec:` + fmt.Sprintf("%v", this.CredentialSpec) + `,`, + `HostProcess:` + fmt.Sprintf("%v", this.HostProcess) + `,`, + `}`, + }, "") + return s +} +func (this *WindowsPodSandboxConfig) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&WindowsPodSandboxConfig{`, + `SecurityContext:` + strings.Replace(this.SecurityContext.String(), "WindowsSandboxSecurityContext", "WindowsSandboxSecurityContext", 1) + `,`, + `}`, + }, "") + return s +} func (this *WindowsContainerSecurityContext) String() string { if this == nil { return "nil" @@ -16557,6 +16865,7 @@ func (this *WindowsContainerSecurityContext) String() string { s := strings.Join([]string{`&WindowsContainerSecurityContext{`, `RunAsUsername:` + fmt.Sprintf("%v", this.RunAsUsername) + `,`, `CredentialSpec:` + fmt.Sprintf("%v", this.CredentialSpec) + `,`, + `HostProcess:` + fmt.Sprintf("%v", this.HostProcess) + `,`, `}`, }, "") return s @@ -19847,6 +20156,42 @@ func (m *PodSandboxConfig) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 9: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Windows", 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 + } + if m.Windows == nil { + m.Windows = &WindowsPodSandboxConfig{} + } + if err := m.Windows.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipApi(dAtA[iNdEx:]) @@ -24136,6 +24481,226 @@ func (m *LinuxContainerConfig) Unmarshal(dAtA []byte) error { } return nil } +func (m *WindowsSandboxSecurityContext) 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: WindowsSandboxSecurityContext: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: WindowsSandboxSecurityContext: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field RunAsUsername", 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.RunAsUsername = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field CredentialSpec", 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.CredentialSpec = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 3: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field HostProcess", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.HostProcess = bool(v != 0) + 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 *WindowsPodSandboxConfig) 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: WindowsPodSandboxConfig: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: WindowsPodSandboxConfig: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field SecurityContext", 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 + } + if m.SecurityContext == nil { + m.SecurityContext = &WindowsSandboxSecurityContext{} + } + if err := m.SecurityContext.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + 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 *WindowsContainerSecurityContext) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -24229,6 +24794,26 @@ func (m *WindowsContainerSecurityContext) Unmarshal(dAtA []byte) error { } m.CredentialSpec = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex + case 3: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field HostProcess", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.HostProcess = bool(v != 0) default: iNdEx = preIndex skippy, err := skipApi(dAtA[iNdEx:]) diff --git a/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1alpha2/api.proto b/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1alpha2/api.proto index 6e6812fe5d6..ea4069981d5 100644 --- a/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1alpha2/api.proto +++ b/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1alpha2/api.proto @@ -392,6 +392,8 @@ message PodSandboxConfig { map annotations = 7; // Optional configurations specific to Linux hosts. LinuxPodSandboxConfig linux = 8; + // Optional configurations specific to Windows hosts. + WindowsPodSandboxConfig windows = 9; } message RunPodSandboxRequest { @@ -693,6 +695,29 @@ message LinuxContainerConfig { LinuxContainerSecurityContext security_context = 2; } +// WindowsSandboxSecurityContext holds platform-specific configurations that will be +// applied to a sandbox. +// These settings will only apply to the sandbox container. +message WindowsSandboxSecurityContext { + // User name to run the container process as. If specified, the user MUST + // exist in the container image and be resolved there by the runtime; + // otherwise, the runtime MUST return error. + string run_as_username = 1; + + // The contents of the GMSA credential spec to use to run this container. + string credential_spec = 2; + + // Indicates whether the container be asked to run as a HostProcess container. + bool host_process = 3; +} + +// WindowsPodSandboxConfig holds platform-specific configurations for Windows +// host platforms and Windows-based containers. +message WindowsPodSandboxConfig { + // WindowsSandboxSecurityContext holds sandbox security attributes. + WindowsSandboxSecurityContext security_context = 1; +} + // WindowsContainerSecurityContext holds windows security configuration that will be applied to a container. message WindowsContainerSecurityContext { // User name to run the container process as. If specified, the user MUST @@ -702,6 +727,9 @@ message WindowsContainerSecurityContext { // The contents of the GMSA credential spec to use to run this container. string credential_spec = 2; + + // Indicates whether a container is to be run as a HostProcess container. + bool host_process = 3; } // WindowsContainerConfig contains platform-specific configuration for