diff --git a/.changelog/19839.txt b/.changelog/19839.txt new file mode 100644 index 00000000000..981a140904f --- /dev/null +++ b/.changelog/19839.txt @@ -0,0 +1,3 @@ +```release-note:improvement +client/volumes: Add a mount volume level option for selinux tags on volumes +``` diff --git a/api/tasks.go b/api/tasks.go index 0ca26cc645c..d589d2889d8 100644 --- a/api/tasks.go +++ b/api/tasks.go @@ -426,15 +426,21 @@ type VolumeMount struct { Destination *string `hcl:"destination,optional"` ReadOnly *bool `mapstructure:"read_only" hcl:"read_only,optional"` PropagationMode *string `mapstructure:"propagation_mode" hcl:"propagation_mode,optional"` + SELinuxLabel *string `mapstructure:"selinux_label" hcl:"selinux_label,optional"` } func (vm *VolumeMount) Canonicalize() { if vm.PropagationMode == nil { vm.PropagationMode = pointerOf(VolumeMountPropagationPrivate) } + if vm.ReadOnly == nil { vm.ReadOnly = pointerOf(false) } + + if vm.SELinuxLabel == nil { + vm.SELinuxLabel = pointerOf("") + } } // TaskGroup is the unit of scheduling. diff --git a/client/allocrunner/taskrunner/volume_hook.go b/client/allocrunner/taskrunner/volume_hook.go index a6da6bdb064..61aeec569c6 100644 --- a/client/allocrunner/taskrunner/volume_hook.go +++ b/client/allocrunner/taskrunner/volume_hook.go @@ -95,6 +95,7 @@ func (h *volumeHook) hostVolumeMountConfigurations(taskMounts []*structs.VolumeM TaskPath: m.Destination, Readonly: hostVolume.ReadOnly || req.ReadOnly || m.ReadOnly, PropagationMode: m.PropagationMode, + SELinuxLabel: m.SELinuxLabel, } mounts = append(mounts, mcfg) } @@ -188,6 +189,7 @@ func (h *volumeHook) prepareCSIVolumes(req *interfaces.TaskPrestartRequest, volu TaskPath: m.Destination, Readonly: request.ReadOnly || m.ReadOnly, PropagationMode: m.PropagationMode, + SELinuxLabel: m.SELinuxLabel, } mounts = append(mounts, mcfg) } diff --git a/command/agent/job_endpoint.go b/command/agent/job_endpoint.go index e5179b95687..e236f32b117 100644 --- a/command/agent/job_endpoint.go +++ b/command/agent/job_endpoint.go @@ -1314,6 +1314,7 @@ func ApiTaskToStructsTask(job *structs.Job, group *structs.TaskGroup, Destination: *mount.Destination, ReadOnly: *mount.ReadOnly, PropagationMode: *mount.PropagationMode, + SELinuxLabel: *mount.SELinuxLabel, }) } } diff --git a/nomad/structs/structs.go b/nomad/structs/structs.go index 44d18789516..b64961fcb6f 100644 --- a/nomad/structs/structs.go +++ b/nomad/structs/structs.go @@ -7928,15 +7928,12 @@ func (t *Task) Validate(jobType string, tg *TaskGroup) error { // Validation for volumes for idx, vm := range t.VolumeMounts { - if !MountPropagationModeIsValid(vm.PropagationMode) { - mErr.Errors = append(mErr.Errors, fmt.Errorf("Volume Mount (%d) has an invalid propagation mode: \"%s\"", idx, vm.PropagationMode)) + if _, ok := tg.Volumes[vm.Volume]; !ok { + mErr.Errors = append(mErr.Errors, fmt.Errorf("Volume Mount (%d) references undefined volume %s", idx, vm.Volume)) } - // Validate the task does not reference undefined volume mounts - if vm.Volume == "" { - mErr.Errors = append(mErr.Errors, fmt.Errorf("Volume Mount (%d) references an empty volume", idx)) - } else if _, ok := tg.Volumes[vm.Volume]; !ok { - mErr.Errors = append(mErr.Errors, fmt.Errorf("Volume Mount (%d) references undefined volume %s", idx, vm.Volume)) + if err := vm.Validate(); err != nil { + mErr.Errors = append(mErr.Errors, fmt.Errorf("Volume Mount (%d) is invalid: \"%w\"", idx, err)) } } diff --git a/nomad/structs/structs_test.go b/nomad/structs/structs_test.go index 05ff3081de4..4c8f77eda79 100644 --- a/nomad/structs/structs_test.go +++ b/nomad/structs/structs_test.go @@ -1625,7 +1625,7 @@ func TestTaskGroup_Validate(t *testing.T) { }, }, expErr: []string{ - `Volume Mount (0) references an empty volume`, + `Volume Mount (0) references undefined volume`, `Volume Mount (0) references undefined volume foob`, }, jobType: JobTypeService, @@ -2043,6 +2043,24 @@ func TestTask_Validate(t *testing.T) { t.Fatalf("err: %s", err) } + tg.Volumes = map[string]*VolumeRequest{ + "foo": { + Name: "foo", + }, + } + + task.VolumeMounts = []*VolumeMount{ + { + Volume: "blah", + }, + } + + err = task.Validate(JobTypeBatch, tg) + requireErrors(t, err, + "Volume Mount (0) references undefined volume blah", + ) + task.VolumeMounts = nil + task.Constraints = append(task.Constraints, &Constraint{ Operand: ConstraintDistinctHosts, diff --git a/nomad/structs/volume_test.go b/nomad/structs/volume_test.go index fc26702ee9f..02e0715d1a3 100644 --- a/nomad/structs/volume_test.go +++ b/nomad/structs/volume_test.go @@ -4,6 +4,7 @@ package structs import ( + "errors" "testing" "github.com/hashicorp/nomad/ci" @@ -168,3 +169,63 @@ func TestVolumeMount_Equal(t *testing.T) { Apply: func(vm *VolumeMount) { vm.PropagationMode = "mode2" }, }}) } + +func TestVolumeMount_Validate(t *testing.T) { + ci.Parallel(t) + + testCases := []struct { + name string + expectedErr error + volMount *VolumeMount + }{ + { + name: "valid volume mount", + volMount: &VolumeMount{ + Volume: "vol", + }, + expectedErr: nil, + }, + { + name: "empty volume reference", + volMount: &VolumeMount{ + Volume: "", + }, + expectedErr: errVolMountEmptyVol, + }, + { + name: "invalid propagation mode", + volMount: &VolumeMount{ + Volume: "vol", + PropagationMode: "very invalid propagation mode", + }, + expectedErr: errVolMountInvalidPropagationMode, + }, + { + name: "invalid selinux label", + volMount: &VolumeMount{ + Volume: "vol", + PropagationMode: VolumeMountPropagationPrivate, + SELinuxLabel: "very invalid selinux label", + }, + expectedErr: errVolMountInvalidSELinuxLabel, + }, + { + name: "full valid volume mont", + volMount: &VolumeMount{ + Volume: "vol", + PropagationMode: VolumeMountPropagationPrivate, + SELinuxLabel: SELinuxPrivateVolume, + }, + expectedErr: nil, + }, + } + + for _, tc := range testCases { + t.Run(tc.name, func(t *testing.T) { + err := tc.volMount.Validate() + if !errors.Is(err, tc.expectedErr) { + t.Fatalf("expected error %v, got %v", tc.expectedErr, err) + } + }) + } +} diff --git a/nomad/structs/volumes.go b/nomad/structs/volumes.go index 08e8ae658f9..1b7c5a80429 100644 --- a/nomad/structs/volumes.go +++ b/nomad/structs/volumes.go @@ -11,22 +11,20 @@ import ( const ( VolumeTypeHost = "host" -) -const ( VolumeMountPropagationPrivate = "private" VolumeMountPropagationHostToTask = "host-to-task" VolumeMountPropagationBidirectional = "bidirectional" + + SELinuxSharedVolume = "z" + SELinuxPrivateVolume = "Z" ) -func MountPropagationModeIsValid(propagationMode string) bool { - switch propagationMode { - case "", VolumeMountPropagationPrivate, VolumeMountPropagationHostToTask, VolumeMountPropagationBidirectional: - return true - default: - return false - } -} +var ( + errVolMountInvalidPropagationMode = fmt.Errorf("volume mount has an invalid propagation mode") + errVolMountInvalidSELinuxLabel = fmt.Errorf("volume mount has an invalid SELinux label") + errVolMountEmptyVol = fmt.Errorf("volume mount references an empty volume") +) // ClientHostVolumeConfig is used to configure access to host paths on a Nomad Client type ClientHostVolumeConfig struct { @@ -250,6 +248,7 @@ type VolumeMount struct { Destination string ReadOnly bool PropagationMode string + SELinuxLabel string } func (v *VolumeMount) Equal(o *VolumeMount) bool { @@ -265,7 +264,10 @@ func (v *VolumeMount) Equal(o *VolumeMount) bool { return false case v.PropagationMode != o.PropagationMode: return false + case v.SELinuxLabel != o.SELinuxLabel: + return false } + return true } @@ -279,6 +281,43 @@ func (v *VolumeMount) Copy() *VolumeMount { return nv } +func (v *VolumeMount) Validate() error { + var mErr *multierror.Error + + // Validate the task does not reference undefined volume mounts + if v.Volume == "" { + mErr = multierror.Append(mErr, errVolMountEmptyVol) + } + + if !v.MountPropagationModeIsValid() { + mErr = multierror.Append(mErr, fmt.Errorf("%w: %q", errVolMountInvalidPropagationMode, v.PropagationMode)) + } + + if !v.SELinuxLabelIsValid() { + mErr = multierror.Append(mErr, fmt.Errorf("%w: \"%s\"", errVolMountInvalidSELinuxLabel, v.SELinuxLabel)) + } + + return mErr.ErrorOrNil() +} + +func (v *VolumeMount) MountPropagationModeIsValid() bool { + switch v.PropagationMode { + case "", VolumeMountPropagationPrivate, VolumeMountPropagationHostToTask, VolumeMountPropagationBidirectional: + return true + default: + return false + } +} + +func (v *VolumeMount) SELinuxLabelIsValid() bool { + switch v.SELinuxLabel { + case "", SELinuxSharedVolume, SELinuxPrivateVolume: + return true + default: + return false + } +} + func CopySliceVolumeMount(s []*VolumeMount) []*VolumeMount { l := len(s) if l == 0 { diff --git a/plugins/drivers/driver.go b/plugins/drivers/driver.go index 6fcd78fb992..51f75ceb226 100644 --- a/plugins/drivers/driver.go +++ b/plugins/drivers/driver.go @@ -444,13 +444,15 @@ type MountConfig struct { HostPath string Readonly bool PropagationMode string + SELinuxLabel string } func (m *MountConfig) IsEqual(o *MountConfig) bool { return m.TaskPath == o.TaskPath && m.HostPath == o.HostPath && m.Readonly == o.Readonly && - m.PropagationMode == o.PropagationMode + m.PropagationMode == o.PropagationMode && + m.SELinuxLabel == o.SELinuxLabel } func (m *MountConfig) Copy() *MountConfig { diff --git a/plugins/drivers/proto/driver.pb.go b/plugins/drivers/proto/driver.pb.go index 6cee0af890d..dd6e6872009 100644 --- a/plugins/drivers/proto/driver.pb.go +++ b/plugins/drivers/proto/driver.pb.go @@ -2842,6 +2842,7 @@ type Mount struct { // Propagation mode for the mount. Not exactly the same as the unix mount // propagation flags. See callsite usage for details. PropagationMode string `protobuf:"bytes,4,opt,name=propagation_mode,json=propagationMode,proto3" json:"propagation_mode,omitempty"` + SelinuxLabel string `protobuf:"bytes,5,opt,name=selinux_label,json=selinuxLabel,proto3" json:"selinux_label,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -2900,6 +2901,13 @@ func (m *Mount) GetPropagationMode() string { return "" } +func (m *Mount) GetSelinuxLabel() string { + if m != nil { + return m.SelinuxLabel + } + return "" +} + type Device struct { // TaskPath is the file path within the task to mount the device to TaskPath string `protobuf:"bytes,1,opt,name=task_path,json=taskPath,proto3" json:"task_path,omitempty"` @@ -3747,251 +3755,252 @@ func init() { } var fileDescriptor_4a8f45747846a74d = []byte{ - // 3895 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x5a, 0xcd, 0x6f, 0x1b, 0x49, - 0x76, 0x57, 0xf3, 0x4b, 0xe4, 0xa3, 0x44, 0xb5, 0xca, 0x92, 0x4d, 0x73, 0x36, 0x19, 0x6f, 0x07, - 0x13, 0x28, 0xbb, 0x33, 0xf4, 0xac, 0x36, 0x19, 0x8f, 0x67, 0x3d, 0xeb, 0xe1, 0x50, 0xb4, 0x45, - 0x5b, 0xa2, 0x94, 0x22, 0x05, 0xaf, 0xe3, 0x64, 0x3a, 0xad, 0xee, 0x32, 0xd5, 0x16, 0xfb, 0x63, - 0xba, 0x9a, 0xb2, 0xb4, 0x41, 0x90, 0x60, 0x03, 0x04, 0x13, 0x20, 0x41, 0x72, 0x99, 0xec, 0x25, - 0xa7, 0x05, 0x72, 0x0a, 0x72, 0x0f, 0x36, 0xd8, 0x53, 0x0e, 0xf9, 0x27, 0x72, 0xc9, 0x2d, 0xd7, - 0xfc, 0x05, 0x09, 0xea, 0xa3, 0x9b, 0xdd, 0x24, 0x3d, 0x6e, 0x52, 0x3e, 0xb1, 0xdf, 0xab, 0xaa, - 0x5f, 0x3d, 0xbe, 0xf7, 0xea, 0xd5, 0xab, 0xaa, 0x07, 0x9a, 0x3f, 0x1a, 0x0f, 0x6d, 0x97, 0xde, - 0xb5, 0x02, 0xfb, 0x82, 0x04, 0xf4, 0xae, 0x1f, 0x78, 0xa1, 0x27, 0xa9, 0x26, 0x27, 0xd0, 0x07, - 0x67, 0x06, 0x3d, 0xb3, 0x4d, 0x2f, 0xf0, 0x9b, 0xae, 0xe7, 0x18, 0x56, 0x53, 0x8e, 0x69, 0xca, - 0x31, 0xa2, 0x5b, 0xe3, 0xb7, 0x87, 0x9e, 0x37, 0x1c, 0x11, 0x81, 0x70, 0x3a, 0x7e, 0x79, 0xd7, - 0x1a, 0x07, 0x46, 0x68, 0x7b, 0xae, 0x6c, 0x7f, 0x7f, 0xba, 0x3d, 0xb4, 0x1d, 0x42, 0x43, 0xc3, - 0xf1, 0x65, 0x87, 0x0f, 0x22, 0x59, 0xe8, 0x99, 0x11, 0x10, 0xeb, 0xee, 0x99, 0x39, 0xa2, 0x3e, - 0x31, 0xd9, 0xaf, 0xce, 0x3e, 0x64, 0xb7, 0x0f, 0xa7, 0xba, 0xd1, 0x30, 0x18, 0x9b, 0x61, 0x24, - 0xb9, 0x11, 0x86, 0x81, 0x7d, 0x3a, 0x0e, 0x89, 0xe8, 0xad, 0xdd, 0x86, 0x5b, 0x03, 0x83, 0x9e, - 0xb7, 0x3d, 0xf7, 0xa5, 0x3d, 0xec, 0x9b, 0x67, 0xc4, 0x31, 0x30, 0xf9, 0x7a, 0x4c, 0x68, 0xa8, - 0xfd, 0x31, 0xd4, 0x67, 0x9b, 0xa8, 0xef, 0xb9, 0x94, 0xa0, 0x2f, 0xa0, 0xc0, 0xa6, 0xac, 0x2b, - 0x77, 0x94, 0x9d, 0xea, 0xee, 0x87, 0xcd, 0x37, 0xa9, 0x40, 0xc8, 0xd0, 0x94, 0xa2, 0x36, 0xfb, - 0x3e, 0x31, 0x31, 0x1f, 0xa9, 0x6d, 0xc3, 0x8d, 0xb6, 0xe1, 0x1b, 0xa7, 0xf6, 0xc8, 0x0e, 0x6d, - 0x42, 0xa3, 0x49, 0xc7, 0xb0, 0x95, 0x66, 0xcb, 0x09, 0xff, 0x04, 0xd6, 0xcc, 0x04, 0x5f, 0x4e, - 0x7c, 0xbf, 0x99, 0x49, 0xf7, 0xcd, 0x3d, 0x4e, 0xa5, 0x80, 0x53, 0x70, 0xda, 0x16, 0xa0, 0x47, - 0xb6, 0x3b, 0x24, 0x81, 0x1f, 0xd8, 0x6e, 0x18, 0x09, 0xf3, 0x9b, 0x3c, 0xdc, 0x48, 0xb1, 0xa5, - 0x30, 0xaf, 0x00, 0x62, 0x3d, 0x32, 0x51, 0xf2, 0x3b, 0xd5, 0xdd, 0x27, 0x19, 0x45, 0x99, 0x83, - 0xd7, 0x6c, 0xc5, 0x60, 0x1d, 0x37, 0x0c, 0xae, 0x70, 0x02, 0x1d, 0x7d, 0x05, 0xa5, 0x33, 0x62, - 0x8c, 0xc2, 0xb3, 0x7a, 0xee, 0x8e, 0xb2, 0x53, 0xdb, 0x7d, 0x74, 0x8d, 0x79, 0xf6, 0x39, 0x50, - 0x3f, 0x34, 0x42, 0x82, 0x25, 0x2a, 0xfa, 0x08, 0x90, 0xf8, 0xd2, 0x2d, 0x42, 0xcd, 0xc0, 0xf6, - 0x99, 0x4b, 0xd6, 0xf3, 0x77, 0x94, 0x9d, 0x0a, 0xde, 0x14, 0x2d, 0x7b, 0x93, 0x86, 0x86, 0x0f, - 0x1b, 0x53, 0xd2, 0x22, 0x15, 0xf2, 0xe7, 0xe4, 0x8a, 0x5b, 0xa4, 0x82, 0xd9, 0x27, 0x7a, 0x0c, - 0xc5, 0x0b, 0x63, 0x34, 0x26, 0x5c, 0xe4, 0xea, 0xee, 0x8f, 0xde, 0xe6, 0x1e, 0xd2, 0x45, 0x27, - 0x7a, 0xc0, 0x62, 0xfc, 0x67, 0xb9, 0x4f, 0x15, 0xed, 0x3e, 0x54, 0x13, 0x72, 0xa3, 0x1a, 0xc0, - 0x49, 0x6f, 0xaf, 0x33, 0xe8, 0xb4, 0x07, 0x9d, 0x3d, 0x75, 0x05, 0xad, 0x43, 0xe5, 0xa4, 0xb7, - 0xdf, 0x69, 0x1d, 0x0c, 0xf6, 0x9f, 0xab, 0x0a, 0xaa, 0xc2, 0x6a, 0x44, 0xe4, 0xb4, 0x4b, 0x40, - 0x98, 0x98, 0xde, 0x05, 0x09, 0x98, 0x23, 0x4b, 0xab, 0xa2, 0x5b, 0xb0, 0x1a, 0x1a, 0xf4, 0x5c, - 0xb7, 0x2d, 0x29, 0x73, 0x89, 0x91, 0x5d, 0x0b, 0x75, 0xa1, 0x74, 0x66, 0xb8, 0xd6, 0xe8, 0xed, - 0x72, 0xa7, 0x55, 0xcd, 0xc0, 0xf7, 0xf9, 0x40, 0x2c, 0x01, 0x98, 0x77, 0xa7, 0x66, 0x16, 0x06, - 0xd0, 0x9e, 0x83, 0xda, 0x0f, 0x8d, 0x20, 0x4c, 0x8a, 0xd3, 0x81, 0x02, 0x9b, 0x5f, 0x7a, 0xf4, - 0x22, 0x73, 0x8a, 0x95, 0x89, 0xf9, 0x70, 0xed, 0x7f, 0x73, 0xb0, 0x99, 0xc0, 0x96, 0x9e, 0xfa, - 0x0c, 0x4a, 0x01, 0xa1, 0xe3, 0x51, 0xc8, 0xe1, 0x6b, 0xbb, 0x0f, 0x33, 0xc2, 0xcf, 0x20, 0x35, - 0x31, 0x87, 0xc1, 0x12, 0x0e, 0xed, 0x80, 0x2a, 0x46, 0xe8, 0x24, 0x08, 0xbc, 0x40, 0x77, 0xe8, - 0x90, 0x6b, 0xad, 0x82, 0x6b, 0x82, 0xdf, 0x61, 0xec, 0x43, 0x3a, 0x4c, 0x68, 0x35, 0x7f, 0x4d, - 0xad, 0x22, 0x03, 0x54, 0x97, 0x84, 0xaf, 0xbd, 0xe0, 0x5c, 0x67, 0xaa, 0x0d, 0x6c, 0x8b, 0xd4, - 0x0b, 0x1c, 0xf4, 0x93, 0x8c, 0xa0, 0x3d, 0x31, 0xfc, 0x48, 0x8e, 0xc6, 0x1b, 0x6e, 0x9a, 0xa1, - 0xfd, 0x10, 0x4a, 0xe2, 0x9f, 0x32, 0x4f, 0xea, 0x9f, 0xb4, 0xdb, 0x9d, 0x7e, 0x5f, 0x5d, 0x41, - 0x15, 0x28, 0xe2, 0xce, 0x00, 0x33, 0x0f, 0xab, 0x40, 0xf1, 0x51, 0x6b, 0xd0, 0x3a, 0x50, 0x73, - 0xda, 0x0f, 0x60, 0xe3, 0x99, 0x61, 0x87, 0x59, 0x9c, 0x4b, 0xf3, 0x40, 0x9d, 0xf4, 0x95, 0xd6, - 0xe9, 0xa6, 0xac, 0x93, 0x5d, 0x35, 0x9d, 0x4b, 0x3b, 0x9c, 0xb2, 0x87, 0x0a, 0x79, 0x12, 0x04, - 0xd2, 0x04, 0xec, 0x53, 0x7b, 0x0d, 0x1b, 0xfd, 0xd0, 0xf3, 0x33, 0x79, 0xfe, 0x8f, 0x61, 0x95, - 0xed, 0x36, 0xde, 0x38, 0x94, 0xae, 0x7f, 0xbb, 0x29, 0x76, 0xa3, 0x66, 0xb4, 0x1b, 0x35, 0xf7, - 0xe4, 0x6e, 0x85, 0xa3, 0x9e, 0xe8, 0x26, 0x94, 0xa8, 0x3d, 0x74, 0x8d, 0x91, 0x8c, 0x16, 0x92, - 0xd2, 0x10, 0x73, 0xf2, 0x68, 0x62, 0xe9, 0xf8, 0x6d, 0x40, 0x7b, 0x84, 0x86, 0x81, 0x77, 0x95, - 0x49, 0x9e, 0x2d, 0x28, 0xbe, 0xf4, 0x02, 0x53, 0x2c, 0xc4, 0x32, 0x16, 0x04, 0x5b, 0x54, 0x29, - 0x10, 0x89, 0xfd, 0x11, 0xa0, 0xae, 0xcb, 0xf6, 0x94, 0x6c, 0x86, 0xf8, 0x87, 0x1c, 0xdc, 0x48, - 0xf5, 0x97, 0xc6, 0x58, 0x7e, 0x1d, 0xb2, 0xc0, 0x34, 0xa6, 0x62, 0x1d, 0xa2, 0x23, 0x28, 0x89, - 0x1e, 0x52, 0x93, 0xf7, 0x16, 0x00, 0x12, 0xdb, 0x94, 0x84, 0x93, 0x30, 0x73, 0x9d, 0x3e, 0xff, - 0x6e, 0x9d, 0xfe, 0x35, 0xa8, 0xd1, 0xff, 0xa0, 0x6f, 0xb5, 0xcd, 0x13, 0xb8, 0x61, 0x7a, 0xa3, - 0x11, 0x31, 0x99, 0x37, 0xe8, 0xb6, 0x1b, 0x92, 0xe0, 0xc2, 0x18, 0xbd, 0xdd, 0x6f, 0xd0, 0x64, - 0x54, 0x57, 0x0e, 0xd2, 0x5e, 0xc0, 0x66, 0x62, 0x62, 0x69, 0x88, 0x47, 0x50, 0xa4, 0x8c, 0x21, - 0x2d, 0xf1, 0xf1, 0x82, 0x96, 0xa0, 0x58, 0x0c, 0xd7, 0x6e, 0x08, 0xf0, 0xce, 0x05, 0x71, 0xe3, - 0xbf, 0xa5, 0xed, 0xc1, 0x66, 0x9f, 0xbb, 0x69, 0x26, 0x3f, 0x9c, 0xb8, 0x78, 0x2e, 0xe5, 0xe2, - 0x5b, 0x80, 0x92, 0x28, 0xd2, 0x11, 0xaf, 0x60, 0xa3, 0x73, 0x49, 0xcc, 0x4c, 0xc8, 0x75, 0x58, - 0x35, 0x3d, 0xc7, 0x31, 0x5c, 0xab, 0x9e, 0xbb, 0x93, 0xdf, 0xa9, 0xe0, 0x88, 0x4c, 0xae, 0xc5, - 0x7c, 0xd6, 0xb5, 0xa8, 0xfd, 0x9d, 0x02, 0xea, 0x64, 0x6e, 0xa9, 0x48, 0x26, 0x7d, 0x68, 0x31, - 0x20, 0x36, 0xf7, 0x1a, 0x96, 0x94, 0xe4, 0x47, 0xe1, 0x42, 0xf0, 0x49, 0x10, 0x24, 0xc2, 0x51, - 0xfe, 0x9a, 0xe1, 0x48, 0xdb, 0x87, 0xef, 0x45, 0xe2, 0xf4, 0xc3, 0x80, 0x18, 0x8e, 0xed, 0x0e, - 0xbb, 0x47, 0x47, 0x3e, 0x11, 0x82, 0x23, 0x04, 0x05, 0xcb, 0x08, 0x0d, 0x29, 0x18, 0xff, 0x66, - 0x8b, 0xde, 0x1c, 0x79, 0x34, 0x5e, 0xf4, 0x9c, 0xd0, 0xfe, 0x33, 0x0f, 0xf5, 0x19, 0xa8, 0x48, - 0xbd, 0x2f, 0xa0, 0x48, 0x49, 0x38, 0xf6, 0xa5, 0xab, 0x74, 0x32, 0x0b, 0x3c, 0x1f, 0xaf, 0xd9, - 0x67, 0x60, 0x58, 0x60, 0xa2, 0x21, 0x94, 0xc3, 0xf0, 0x4a, 0xa7, 0xf6, 0xcf, 0xa3, 0x84, 0xe0, - 0xe0, 0xba, 0xf8, 0x03, 0x12, 0x38, 0xb6, 0x6b, 0x8c, 0xfa, 0xf6, 0xcf, 0x09, 0x5e, 0x0d, 0xc3, - 0x2b, 0xf6, 0x81, 0x9e, 0x33, 0x87, 0xb7, 0x6c, 0x57, 0xaa, 0xbd, 0xbd, 0xec, 0x2c, 0x09, 0x05, - 0x63, 0x81, 0xd8, 0x38, 0x80, 0x22, 0xff, 0x4f, 0xcb, 0x38, 0xa2, 0x0a, 0xf9, 0x30, 0xbc, 0xe2, - 0x42, 0x95, 0x31, 0xfb, 0x6c, 0x3c, 0x80, 0xb5, 0xe4, 0x3f, 0x60, 0x8e, 0x74, 0x46, 0xec, 0xe1, - 0x99, 0x70, 0xb0, 0x22, 0x96, 0x14, 0xb3, 0xe4, 0x6b, 0xdb, 0x92, 0x29, 0x6b, 0x11, 0x0b, 0x42, - 0xfb, 0xb7, 0x1c, 0xdc, 0x9e, 0xa3, 0x19, 0xe9, 0xac, 0x2f, 0x52, 0xce, 0xfa, 0x8e, 0xb4, 0x10, - 0x79, 0xfc, 0x8b, 0x94, 0xc7, 0xbf, 0x43, 0x70, 0xb6, 0x6c, 0x6e, 0x42, 0x89, 0x5c, 0xda, 0x21, - 0xb1, 0xa4, 0xaa, 0x24, 0x95, 0x58, 0x4e, 0x85, 0xeb, 0x2e, 0xa7, 0x43, 0xd8, 0x6a, 0x07, 0xc4, - 0x08, 0x89, 0x0c, 0xe5, 0x91, 0xff, 0xdf, 0x86, 0xb2, 0x31, 0x1a, 0x79, 0xe6, 0xc4, 0xac, 0xab, - 0x9c, 0xee, 0x5a, 0xa8, 0x01, 0xe5, 0x33, 0x8f, 0x86, 0xae, 0xe1, 0x10, 0x19, 0xbc, 0x62, 0x5a, - 0xfb, 0x56, 0x81, 0xed, 0x29, 0x3c, 0x69, 0x85, 0x53, 0xa8, 0xd9, 0xd4, 0x1b, 0xf1, 0x3f, 0xa8, - 0x27, 0x4e, 0x78, 0x3f, 0x59, 0x6c, 0xab, 0xe9, 0x46, 0x18, 0xfc, 0xc0, 0xb7, 0x6e, 0x27, 0x49, - 0xee, 0x71, 0x7c, 0x72, 0x4b, 0xae, 0xf4, 0x88, 0xd4, 0xfe, 0x51, 0x81, 0x6d, 0xb9, 0xc3, 0x67, - 0xff, 0xa3, 0xb3, 0x22, 0xe7, 0xde, 0xb5, 0xc8, 0x5a, 0x1d, 0x6e, 0x4e, 0xcb, 0x25, 0x63, 0xfe, - 0xbf, 0x16, 0x01, 0xcd, 0x9e, 0x2e, 0xd1, 0xf7, 0x61, 0x8d, 0x12, 0xd7, 0xd2, 0xc5, 0x7e, 0x21, - 0xb6, 0xb2, 0x32, 0xae, 0x32, 0x9e, 0xd8, 0x38, 0x28, 0x0b, 0x81, 0xe4, 0x52, 0x4a, 0x5b, 0xc6, - 0xfc, 0x1b, 0x9d, 0xc1, 0xda, 0x4b, 0xaa, 0xc7, 0x73, 0x73, 0x87, 0xaa, 0x65, 0x0e, 0x6b, 0xb3, - 0x72, 0x34, 0x1f, 0xf5, 0xe3, 0xff, 0x85, 0xab, 0x2f, 0x69, 0x4c, 0xa0, 0x6f, 0x14, 0xb8, 0x15, - 0xa5, 0x15, 0x13, 0xf5, 0x39, 0x9e, 0x45, 0x68, 0xbd, 0x70, 0x27, 0xbf, 0x53, 0xdb, 0x3d, 0xbe, - 0x86, 0xfe, 0x66, 0x98, 0x87, 0x9e, 0x45, 0xf0, 0xb6, 0x3b, 0x87, 0x4b, 0x51, 0x13, 0x6e, 0x38, - 0x63, 0x1a, 0xea, 0xc2, 0x0b, 0x74, 0xd9, 0xa9, 0x5e, 0xe4, 0x7a, 0xd9, 0x64, 0x4d, 0x29, 0x5f, - 0x45, 0xe7, 0xb0, 0xee, 0x78, 0x63, 0x37, 0xd4, 0x4d, 0x7e, 0xfe, 0xa1, 0xf5, 0xd2, 0x42, 0x07, - 0xe3, 0x39, 0x5a, 0x3a, 0x64, 0x70, 0xe2, 0x34, 0x45, 0xf1, 0x9a, 0x93, 0xa0, 0x98, 0x21, 0x03, - 0xe2, 0x78, 0x21, 0xd1, 0x59, 0xbc, 0xa4, 0xf5, 0x55, 0x61, 0x48, 0xc1, 0x63, 0xa1, 0x81, 0xa2, - 0xdf, 0x87, 0x9b, 0x96, 0x4d, 0x8d, 0xd3, 0x11, 0xd1, 0x47, 0xde, 0x50, 0x9f, 0xa4, 0x39, 0xf5, - 0x32, 0xef, 0xbc, 0x25, 0x5b, 0x0f, 0xbc, 0x61, 0x3b, 0x6e, 0xd3, 0x9a, 0x50, 0x4d, 0x18, 0x07, - 0x95, 0xa1, 0xd0, 0x3b, 0xea, 0x75, 0xd4, 0x15, 0x04, 0x50, 0x6a, 0xef, 0xe3, 0xa3, 0xa3, 0x81, - 0x38, 0x6b, 0x74, 0x0f, 0x5b, 0x8f, 0x3b, 0x6a, 0x4e, 0xeb, 0xc0, 0x5a, 0x52, 0x4c, 0x84, 0xa0, - 0x76, 0xd2, 0x7b, 0xda, 0x3b, 0x7a, 0xd6, 0xd3, 0x0f, 0x8f, 0x4e, 0x7a, 0x03, 0x76, 0x4a, 0xa9, - 0x01, 0xb4, 0x7a, 0xcf, 0x27, 0xf4, 0x3a, 0x54, 0x7a, 0x47, 0x11, 0xa9, 0x34, 0x72, 0xaa, 0xa2, - 0xfd, 0x47, 0x1e, 0xb6, 0xe6, 0x59, 0x0c, 0x59, 0x50, 0x60, 0xd6, 0x97, 0xe7, 0xc4, 0x77, 0x6f, - 0x7c, 0x8e, 0xce, 0x9c, 0xde, 0x37, 0xe4, 0xc6, 0x50, 0xc1, 0xfc, 0x1b, 0xe9, 0x50, 0x1a, 0x19, - 0xa7, 0x64, 0x44, 0xeb, 0x79, 0x7e, 0x93, 0xf2, 0xf8, 0x3a, 0x73, 0x1f, 0x70, 0x24, 0x71, 0x8d, - 0x22, 0x61, 0xd1, 0x00, 0xaa, 0x2c, 0xf4, 0x51, 0xa1, 0x3a, 0x19, 0x8d, 0x77, 0x33, 0xce, 0xb2, - 0x3f, 0x19, 0x89, 0x93, 0x30, 0x8d, 0xfb, 0x50, 0x4d, 0x4c, 0x36, 0xe7, 0x16, 0x64, 0x2b, 0x79, - 0x0b, 0x52, 0x49, 0x5e, 0x69, 0x3c, 0x9c, 0xb5, 0x01, 0xd3, 0x11, 0x73, 0x82, 0xfd, 0xa3, 0xfe, - 0x40, 0x9c, 0x37, 0x1f, 0xe3, 0xa3, 0x93, 0x63, 0x55, 0x61, 0xcc, 0x41, 0xab, 0xff, 0x54, 0xcd, - 0xc5, 0x3e, 0x92, 0xd7, 0xda, 0x50, 0x4d, 0xc8, 0x95, 0x8a, 0xf5, 0x4a, 0x3a, 0xd6, 0xb3, 0x68, - 0x6b, 0x58, 0x56, 0x40, 0x28, 0x95, 0x72, 0x44, 0xa4, 0xf6, 0x02, 0x2a, 0x7b, 0xbd, 0xbe, 0x84, - 0xa8, 0xc3, 0x2a, 0x25, 0x01, 0xfb, 0xdf, 0xfc, 0x3e, 0xab, 0x82, 0x23, 0x92, 0x81, 0x53, 0x62, - 0x04, 0xe6, 0x19, 0xa1, 0x32, 0x43, 0x88, 0x69, 0x36, 0xca, 0xe3, 0xf7, 0x42, 0xc2, 0x76, 0x15, - 0x1c, 0x91, 0xda, 0xff, 0x95, 0x01, 0x26, 0x77, 0x14, 0xa8, 0x06, 0xb9, 0x38, 0x72, 0xe7, 0x6c, - 0x8b, 0xf9, 0x41, 0x62, 0x67, 0xe2, 0xdf, 0x68, 0x17, 0xb6, 0x1d, 0x3a, 0xf4, 0x0d, 0xf3, 0x5c, - 0x97, 0x57, 0x0b, 0x62, 0x81, 0xf3, 0x28, 0xb8, 0x86, 0x6f, 0xc8, 0x46, 0xb9, 0x7e, 0x05, 0xee, - 0x01, 0xe4, 0x89, 0x7b, 0xc1, 0x23, 0x56, 0x75, 0xf7, 0xb3, 0x85, 0xef, 0x4e, 0x9a, 0x1d, 0xf7, - 0x42, 0xf8, 0x0a, 0x83, 0x41, 0x3a, 0x80, 0x45, 0x2e, 0x6c, 0x93, 0xe8, 0x0c, 0xb4, 0xc8, 0x41, - 0xbf, 0x58, 0x1c, 0x74, 0x8f, 0x63, 0xc4, 0xd0, 0x15, 0x2b, 0xa2, 0x51, 0x0f, 0x2a, 0x01, 0xa1, - 0xde, 0x38, 0x30, 0x89, 0x08, 0x5b, 0xd9, 0x8f, 0x37, 0x38, 0x1a, 0x87, 0x27, 0x10, 0x68, 0x0f, - 0x4a, 0x3c, 0x5a, 0xb1, 0xb8, 0x94, 0xff, 0xce, 0x8b, 0xd8, 0x34, 0x18, 0x8f, 0x24, 0x58, 0x8e, - 0x45, 0x8f, 0x61, 0x55, 0x88, 0x48, 0xeb, 0x65, 0x0e, 0xf3, 0x51, 0xd6, 0x50, 0xca, 0x47, 0xe1, - 0x68, 0x34, 0xb3, 0xea, 0x98, 0x92, 0xa0, 0x5e, 0x11, 0x56, 0x65, 0xdf, 0xe8, 0x3d, 0xa8, 0x88, - 0x9d, 0xdb, 0xb2, 0x83, 0x3a, 0x08, 0xe7, 0xe4, 0x8c, 0x3d, 0x3b, 0x40, 0xef, 0x43, 0x55, 0x64, - 0x68, 0x3a, 0x8f, 0x0a, 0x55, 0xde, 0x0c, 0x82, 0x75, 0xcc, 0x62, 0x83, 0xe8, 0x40, 0x82, 0x40, - 0x74, 0x58, 0x8b, 0x3b, 0x90, 0x20, 0xe0, 0x1d, 0x7e, 0x17, 0x36, 0x78, 0x5e, 0x3b, 0x0c, 0xbc, - 0xb1, 0xaf, 0x73, 0x9f, 0x5a, 0xe7, 0x9d, 0xd6, 0x19, 0xfb, 0x31, 0xe3, 0xf6, 0x98, 0x73, 0xdd, - 0x86, 0xf2, 0x2b, 0xef, 0x54, 0x74, 0xa8, 0x89, 0x75, 0xf0, 0xca, 0x3b, 0x8d, 0x9a, 0xe2, 0xdc, - 0x62, 0x23, 0x9d, 0x5b, 0x7c, 0x0d, 0x37, 0x67, 0x37, 0x49, 0x9e, 0x63, 0xa8, 0xd7, 0xcf, 0x31, - 0xb6, 0xdc, 0x79, 0x71, 0xf8, 0x4b, 0xc8, 0x5b, 0x2e, 0xad, 0x6f, 0x2e, 0xe4, 0x1c, 0xf1, 0x3a, - 0xc6, 0x6c, 0x30, 0xda, 0x86, 0x12, 0xfb, 0xb3, 0xb6, 0x55, 0x47, 0x22, 0xf4, 0xbc, 0xf2, 0x4e, - 0xbb, 0x16, 0xfa, 0x1e, 0x54, 0xd8, 0xff, 0xa7, 0xbe, 0x61, 0x92, 0xfa, 0x0d, 0xde, 0x32, 0x61, - 0x30, 0x43, 0xb9, 0x9e, 0x45, 0x84, 0x8a, 0xb6, 0x84, 0xa1, 0x18, 0x83, 0xeb, 0xe8, 0x16, 0xac, - 0xf2, 0x46, 0xdb, 0xaa, 0x6f, 0x8b, 0xe3, 0x03, 0x23, 0xbb, 0x16, 0xd2, 0x60, 0xdd, 0x37, 0x02, - 0xe2, 0x86, 0xba, 0x9c, 0xf1, 0x26, 0x6f, 0xae, 0x0a, 0xe6, 0x13, 0x36, 0x6f, 0xe3, 0x13, 0x28, - 0x47, 0x8b, 0x61, 0x91, 0x30, 0xd9, 0x78, 0x00, 0xb5, 0xf4, 0x52, 0x5a, 0x28, 0xc8, 0xfe, 0x73, - 0x0e, 0x2a, 0xf1, 0xa2, 0x41, 0x2e, 0xdc, 0xe0, 0x46, 0x65, 0x79, 0xa6, 0x3e, 0x59, 0x83, 0x22, - 0xbb, 0xfd, 0x3c, 0xa3, 0x9a, 0x5b, 0x11, 0x82, 0x3c, 0x66, 0xcb, 0x05, 0x89, 0x62, 0xe4, 0xc9, - 0x7c, 0x5f, 0xc1, 0xc6, 0xc8, 0x76, 0xc7, 0x97, 0x89, 0xb9, 0x44, 0x5a, 0xfa, 0x07, 0x19, 0xe7, - 0x3a, 0x60, 0xa3, 0x27, 0x73, 0xd4, 0x46, 0x29, 0x1a, 0xed, 0x43, 0xd1, 0xf7, 0x82, 0x30, 0xda, - 0x33, 0xb3, 0xee, 0x66, 0xc7, 0x5e, 0x10, 0x1e, 0x1a, 0xbe, 0xcf, 0x4e, 0x5e, 0x02, 0x40, 0xfb, - 0x36, 0x07, 0x37, 0xe7, 0xff, 0x31, 0xd4, 0x83, 0xbc, 0xe9, 0x8f, 0xa5, 0x92, 0x1e, 0x2c, 0xaa, - 0xa4, 0xb6, 0x3f, 0x9e, 0xc8, 0xcf, 0x80, 0xd0, 0x33, 0x28, 0x39, 0xc4, 0xf1, 0x82, 0x2b, 0xa9, - 0x8b, 0x87, 0x8b, 0x42, 0x1e, 0xf2, 0xd1, 0x13, 0x54, 0x09, 0x87, 0x30, 0x94, 0xe5, 0x62, 0xa2, - 0x32, 0x6c, 0x2f, 0x78, 0x37, 0x16, 0x41, 0xe2, 0x18, 0x47, 0xfb, 0x04, 0xb6, 0xe7, 0xfe, 0x15, - 0xf4, 0x5b, 0x00, 0xa6, 0x3f, 0xd6, 0xf9, 0xdb, 0x85, 0xf0, 0xa0, 0x3c, 0xae, 0x98, 0xfe, 0xb8, - 0xcf, 0x19, 0xda, 0x0b, 0xa8, 0xbf, 0x49, 0x5e, 0xb6, 0xc6, 0x84, 0xc4, 0xba, 0x73, 0xca, 0x75, - 0x90, 0xc7, 0x65, 0xc1, 0x38, 0x3c, 0x65, 0x4b, 0x29, 0x6a, 0x34, 0x2e, 0x59, 0x87, 0x3c, 0xef, - 0x50, 0x95, 0x1d, 0x8c, 0xcb, 0xc3, 0x53, 0xed, 0x97, 0x39, 0xd8, 0x98, 0x12, 0x99, 0x9d, 0x3f, - 0x45, 0x00, 0x8e, 0x4e, 0xf6, 0x82, 0x62, 0xd1, 0xd8, 0xb4, 0xad, 0xe8, 0x4e, 0x98, 0x7f, 0xf3, - 0x7d, 0xd8, 0x97, 0xf7, 0xb5, 0x39, 0xdb, 0x67, 0xcb, 0xc7, 0x39, 0xb5, 0x43, 0xca, 0x93, 0xa2, - 0x22, 0x16, 0x04, 0x7a, 0x0e, 0xb5, 0x80, 0xf0, 0xfd, 0xdf, 0xd2, 0x85, 0x97, 0x15, 0x17, 0xf2, - 0x32, 0x29, 0x21, 0x73, 0x36, 0xbc, 0x1e, 0x21, 0x31, 0x8a, 0xa2, 0x67, 0xb0, 0x6e, 0x5d, 0xb9, - 0x86, 0x63, 0x9b, 0x12, 0xb9, 0xb4, 0x34, 0xf2, 0x9a, 0x04, 0xe2, 0xc0, 0xda, 0x7d, 0xa8, 0x26, - 0x1a, 0xd9, 0x1f, 0xe3, 0xd9, 0x9f, 0xd4, 0x89, 0x20, 0xd2, 0xd1, 0xa2, 0x28, 0xa3, 0x85, 0x76, - 0x0a, 0xd5, 0xc4, 0xba, 0x58, 0x64, 0x28, 0xd3, 0x67, 0xe8, 0x71, 0x7d, 0x16, 0x71, 0x2e, 0xf4, - 0x58, 0x9c, 0x64, 0x99, 0x97, 0x6e, 0xfb, 0x5c, 0xa3, 0x15, 0x5c, 0x62, 0x64, 0xd7, 0xd7, 0x7e, - 0x9d, 0x83, 0x5a, 0x7a, 0x49, 0x47, 0x7e, 0xe4, 0x93, 0xc0, 0xf6, 0xac, 0x84, 0x1f, 0x1d, 0x73, - 0x06, 0xf3, 0x15, 0xd6, 0xfc, 0xf5, 0xd8, 0x0b, 0x8d, 0xc8, 0x57, 0x4c, 0x7f, 0xfc, 0x87, 0x8c, - 0x9e, 0xf2, 0xc1, 0xfc, 0x94, 0x0f, 0xa2, 0x0f, 0x01, 0x49, 0x57, 0x1a, 0xd9, 0x8e, 0x1d, 0xea, - 0xa7, 0x57, 0x21, 0x11, 0x36, 0xce, 0x63, 0x55, 0xb4, 0x1c, 0xb0, 0x86, 0x2f, 0x19, 0x9f, 0x39, - 0x9e, 0xe7, 0x39, 0x3a, 0x35, 0xbd, 0x80, 0xe8, 0x86, 0xf5, 0x8a, 0x1f, 0xbd, 0xf2, 0xb8, 0xea, - 0x79, 0x4e, 0x9f, 0xf1, 0x5a, 0xd6, 0x2b, 0xb6, 0x11, 0x9b, 0xfe, 0x98, 0x92, 0x50, 0x67, 0x3f, - 0x3c, 0x77, 0xa9, 0x60, 0x10, 0xac, 0xb6, 0x3f, 0xa6, 0xe8, 0x77, 0x60, 0x3d, 0xea, 0xc0, 0xf7, - 0x62, 0x99, 0x04, 0xac, 0xc9, 0x2e, 0x9c, 0x87, 0x34, 0x58, 0x3b, 0x26, 0x81, 0x49, 0xdc, 0x70, - 0x60, 0x9b, 0xe7, 0x94, 0x1f, 0x90, 0x14, 0x9c, 0xe2, 0x3d, 0x29, 0x94, 0x57, 0xd5, 0x32, 0x8e, - 0x66, 0x73, 0x88, 0x43, 0xb5, 0x6f, 0x14, 0x28, 0xf2, 0x94, 0x85, 0x29, 0x85, 0x6f, 0xf7, 0x3c, - 0x1b, 0x90, 0xa9, 0x2e, 0x63, 0xf0, 0x5c, 0xe0, 0x3d, 0xa8, 0x70, 0xe5, 0x27, 0x4e, 0x18, 0x3c, - 0x0f, 0xe6, 0x8d, 0x0d, 0x28, 0x07, 0xc4, 0xb0, 0x3c, 0x77, 0x14, 0x5d, 0x69, 0xc5, 0x34, 0xfa, - 0x3d, 0x50, 0xfd, 0xc0, 0xf3, 0x8d, 0xe1, 0xe4, 0x14, 0x2c, 0xcd, 0xb7, 0x91, 0xe0, 0xb3, 0x14, - 0x5d, 0xfb, 0x1a, 0x4a, 0x62, 0x4f, 0xba, 0x86, 0x28, 0x1f, 0x01, 0x12, 0x3a, 0x62, 0xb6, 0x77, - 0x6c, 0x4a, 0x65, 0x02, 0xcd, 0x9f, 0x5c, 0x45, 0xcb, 0xf1, 0xa4, 0x41, 0xfb, 0x2f, 0x45, 0xa4, - 0xd2, 0xe2, 0x31, 0x8c, 0xe5, 0xdc, 0x6c, 0x41, 0xb0, 0xf3, 0xa5, 0xb8, 0x75, 0x8b, 0x48, 0xd4, - 0x85, 0x92, 0xcc, 0x98, 0x73, 0xcb, 0xbe, 0x25, 0x4a, 0x80, 0xe8, 0x0e, 0x9e, 0xc8, 0x1b, 0x88, - 0x45, 0xef, 0xe0, 0x89, 0xb8, 0x83, 0x27, 0xec, 0xf8, 0x2c, 0x73, 0x79, 0x01, 0x57, 0xe0, 0xa9, - 0x7c, 0xd5, 0x8a, 0x1f, 0x3a, 0x88, 0xf6, 0x3f, 0x4a, 0x1c, 0xd2, 0xa2, 0x07, 0x09, 0xf4, 0x15, - 0x94, 0x59, 0x74, 0xd0, 0x1d, 0xc3, 0x97, 0xcf, 0xeb, 0xed, 0xe5, 0xde, 0x3a, 0xa2, 0x0d, 0x4f, - 0x64, 0xe2, 0xab, 0xbe, 0xa0, 0x58, 0x68, 0x64, 0xa7, 0xa0, 0x28, 0x34, 0xb2, 0x6f, 0xf4, 0x01, - 0xd4, 0x8c, 0x71, 0xe8, 0xe9, 0x86, 0x75, 0x41, 0x82, 0xd0, 0xa6, 0x44, 0xba, 0xc9, 0x3a, 0xe3, - 0xb6, 0x22, 0x66, 0xe3, 0x33, 0x58, 0x4b, 0x62, 0xbe, 0x2d, 0x25, 0x29, 0x26, 0x53, 0x92, 0x3f, - 0x05, 0x98, 0x5c, 0xee, 0x31, 0x1f, 0x21, 0x97, 0x76, 0xa8, 0x9b, 0xd1, 0xb1, 0xbb, 0x88, 0xcb, - 0x8c, 0xd1, 0x66, 0x47, 0xc1, 0xf4, 0xcb, 0x43, 0x31, 0x7a, 0x79, 0x60, 0x0b, 0x9f, 0xad, 0xd5, - 0x73, 0x7b, 0x34, 0x8a, 0x2f, 0x1c, 0x2b, 0x9e, 0xe7, 0x3c, 0xe5, 0x0c, 0xed, 0x37, 0x39, 0xe1, - 0x2b, 0xe2, 0x0d, 0x29, 0xd3, 0xb1, 0xeb, 0x5d, 0x99, 0xfa, 0x3e, 0x00, 0x0d, 0x8d, 0x80, 0xe5, - 0x57, 0x46, 0x74, 0xe5, 0xd9, 0x98, 0x79, 0xba, 0x18, 0x44, 0x45, 0x2d, 0xb8, 0x22, 0x7b, 0xb7, - 0x42, 0xf4, 0x39, 0xac, 0x99, 0x9e, 0xe3, 0x8f, 0x88, 0x1c, 0x5c, 0x7c, 0xeb, 0xe0, 0x6a, 0xdc, - 0xbf, 0x15, 0x26, 0x2e, 0x5a, 0x4b, 0xd7, 0xbd, 0x68, 0xfd, 0xb5, 0x22, 0x9e, 0xc2, 0x92, 0x2f, - 0x71, 0x68, 0x38, 0xa7, 0xdc, 0xe3, 0xf1, 0x92, 0xcf, 0x7a, 0xdf, 0x55, 0xeb, 0xd1, 0xf8, 0x3c, - 0x4b, 0x71, 0xc5, 0x9b, 0x33, 0xde, 0x7f, 0xcf, 0x43, 0x25, 0x7e, 0x05, 0x9b, 0xb1, 0xfd, 0xa7, - 0x50, 0x89, 0x2b, 0x8a, 0x64, 0x80, 0xf8, 0x4e, 0xf3, 0xc4, 0x9d, 0xd1, 0x4b, 0x40, 0xc6, 0x70, - 0x18, 0x67, 0xb2, 0xfa, 0x98, 0x1a, 0xc3, 0xe8, 0x0d, 0xf2, 0xd3, 0x05, 0xf4, 0x10, 0x6d, 0x7d, - 0x27, 0x6c, 0x3c, 0x56, 0x8d, 0xe1, 0x30, 0xc5, 0x41, 0x7f, 0x06, 0xdb, 0xe9, 0x39, 0xf4, 0xd3, - 0x2b, 0xdd, 0xb7, 0x2d, 0x79, 0xbc, 0xdf, 0x5f, 0xf4, 0x21, 0xb0, 0x99, 0x82, 0xff, 0xf2, 0xea, - 0xd8, 0xb6, 0x84, 0xce, 0x51, 0x30, 0xd3, 0xd0, 0xf8, 0x0b, 0xb8, 0xf5, 0x86, 0xee, 0x73, 0x6c, - 0xd0, 0x4b, 0x17, 0xb8, 0x2c, 0xaf, 0x84, 0x84, 0xf5, 0x7e, 0xa5, 0x88, 0xf7, 0xca, 0xb4, 0x4e, - 0x5a, 0xc9, 0x14, 0xfc, 0x6e, 0xc6, 0x79, 0xda, 0xc7, 0x27, 0x02, 0x9e, 0x67, 0xdd, 0x4f, 0xa6, - 0xb2, 0xee, 0xac, 0xb9, 0x96, 0x48, 0x5e, 0x05, 0x90, 0x44, 0xd0, 0xfe, 0x25, 0x0f, 0xe5, 0x08, - 0x9d, 0x1f, 0xce, 0xaf, 0x68, 0x48, 0x1c, 0x3d, 0xbe, 0x39, 0x54, 0x30, 0x08, 0x16, 0xbf, 0xcf, - 0x7a, 0x0f, 0x2a, 0x63, 0x4a, 0x02, 0xd1, 0x9c, 0xe3, 0xcd, 0x65, 0xc6, 0xe0, 0x8d, 0xef, 0x43, - 0x35, 0xf4, 0x42, 0x63, 0xa4, 0x87, 0x3c, 0x15, 0xc8, 0x8b, 0xd1, 0x9c, 0xc5, 0x13, 0x01, 0xf4, - 0x43, 0xd8, 0x0c, 0xcf, 0x02, 0x2f, 0x0c, 0x47, 0x2c, 0x0d, 0xe5, 0x49, 0x91, 0xc8, 0x61, 0x0a, - 0x58, 0x8d, 0x1b, 0x44, 0xb2, 0x44, 0x59, 0xf4, 0x9e, 0x74, 0x66, 0xae, 0xcb, 0x83, 0x48, 0x01, - 0xaf, 0xc7, 0x5c, 0xe6, 0xda, 0x6c, 0xf3, 0xf4, 0x45, 0xb2, 0xc1, 0x63, 0x85, 0x82, 0x23, 0x12, - 0xe9, 0xb0, 0xe1, 0x10, 0x83, 0x8e, 0x03, 0x62, 0xe9, 0x2f, 0x6d, 0x32, 0xb2, 0xc4, 0x9d, 0x4a, - 0x2d, 0xf3, 0x49, 0x22, 0x52, 0x4b, 0xf3, 0x11, 0x1f, 0x8d, 0x6b, 0x11, 0x9c, 0xa0, 0x59, 0xe6, - 0x20, 0xbe, 0xd0, 0x06, 0x54, 0xfb, 0xcf, 0xfb, 0x83, 0xce, 0xa1, 0x7e, 0x78, 0xb4, 0xd7, 0x91, - 0x35, 0x4c, 0xfd, 0x0e, 0x16, 0xa4, 0xc2, 0xda, 0x07, 0x47, 0x83, 0xd6, 0x81, 0x3e, 0xe8, 0xb6, - 0x9f, 0xf6, 0xd5, 0x1c, 0xda, 0x86, 0xcd, 0xc1, 0x3e, 0x3e, 0x1a, 0x0c, 0x0e, 0x3a, 0x7b, 0xfa, - 0x71, 0x07, 0x77, 0x8f, 0xf6, 0xfa, 0x6a, 0x1e, 0x21, 0xa8, 0x4d, 0xd8, 0x83, 0xee, 0x61, 0x47, - 0x2d, 0xa0, 0x2a, 0xac, 0x1e, 0x77, 0x70, 0xbb, 0xd3, 0x1b, 0xa8, 0x45, 0xed, 0x97, 0x79, 0xa8, - 0x26, 0xac, 0xc8, 0x1c, 0x39, 0xa0, 0xe2, 0xc8, 0x52, 0xc0, 0xec, 0x93, 0xbf, 0xb9, 0x1a, 0xe6, - 0x99, 0xb0, 0x4e, 0x01, 0x0b, 0x82, 0x1f, 0x53, 0x8c, 0xcb, 0xc4, 0x3a, 0x2f, 0xe0, 0xb2, 0x63, - 0x5c, 0x0a, 0x90, 0xef, 0xc3, 0xda, 0x39, 0x09, 0x5c, 0x32, 0x92, 0xed, 0xc2, 0x22, 0x55, 0xc1, - 0x13, 0x5d, 0x76, 0x40, 0x95, 0x5d, 0x26, 0x30, 0xc2, 0x1c, 0x35, 0xc1, 0x3f, 0x8c, 0xc0, 0xb6, - 0xa0, 0x28, 0x9a, 0x57, 0xc5, 0xfc, 0x9c, 0x60, 0xdb, 0x14, 0x7d, 0x6d, 0xf8, 0x3c, 0x3d, 0x2c, - 0x60, 0xfe, 0x8d, 0x4e, 0x67, 0xed, 0x53, 0xe2, 0xf6, 0xb9, 0xbf, 0xb8, 0x3b, 0xbf, 0xc9, 0x44, - 0x67, 0xb1, 0x89, 0x56, 0x21, 0x8f, 0xa3, 0xc2, 0x9f, 0x76, 0xab, 0xbd, 0xcf, 0xcc, 0xb2, 0x0e, - 0x95, 0xc3, 0xd6, 0xcf, 0xf4, 0x93, 0x3e, 0xbf, 0x90, 0x47, 0x2a, 0xac, 0x3d, 0xed, 0xe0, 0x5e, - 0xe7, 0x40, 0x72, 0xf2, 0x68, 0x0b, 0x54, 0xc9, 0x99, 0xf4, 0x2b, 0x30, 0x04, 0xf1, 0x59, 0x44, - 0x65, 0x28, 0xf4, 0x9f, 0xb5, 0x8e, 0xd5, 0x92, 0xf6, 0xdf, 0x39, 0xd8, 0x10, 0xdb, 0x42, 0x5c, - 0xa2, 0xf0, 0xe6, 0x27, 0xda, 0xe4, 0x05, 0x55, 0x2e, 0x7d, 0x41, 0x15, 0x25, 0xa1, 0x7c, 0x57, - 0xcf, 0x4f, 0x92, 0x50, 0x7e, 0x69, 0x93, 0x8a, 0xf8, 0x85, 0x45, 0x22, 0x7e, 0x1d, 0x56, 0x1d, - 0x42, 0x63, 0xbb, 0x55, 0x70, 0x44, 0x22, 0x1b, 0xaa, 0x86, 0xeb, 0x7a, 0xa1, 0x21, 0x6e, 0x7d, - 0x4b, 0x0b, 0x6d, 0x86, 0x53, 0xff, 0xb8, 0xd9, 0x9a, 0x20, 0x89, 0xc0, 0x9c, 0xc4, 0x6e, 0xfc, - 0x14, 0xd4, 0xe9, 0x0e, 0x8b, 0x6c, 0x87, 0x3f, 0xf8, 0xd1, 0x64, 0x37, 0x24, 0x6c, 0x5d, 0xc8, - 0xe7, 0x12, 0x75, 0x85, 0x11, 0xf8, 0xa4, 0xd7, 0xeb, 0xf6, 0x1e, 0xab, 0x0a, 0x02, 0x28, 0x75, - 0x7e, 0xd6, 0x1d, 0x74, 0xf6, 0xd4, 0xdc, 0xee, 0xaf, 0x36, 0xa1, 0x24, 0x84, 0x44, 0xdf, 0xca, - 0x4c, 0x20, 0x59, 0xfe, 0x8a, 0x7e, 0xba, 0x70, 0x46, 0x9d, 0x2a, 0xa9, 0x6d, 0x3c, 0x5c, 0x7a, - 0xbc, 0x7c, 0x6e, 0x5c, 0x41, 0x7f, 0xa3, 0xc0, 0x5a, 0xea, 0xa9, 0x31, 0xeb, 0xad, 0xf7, 0x9c, - 0x6a, 0xdb, 0xc6, 0x4f, 0x96, 0x1a, 0x1b, 0xcb, 0xf2, 0x8d, 0x02, 0xd5, 0x44, 0x9d, 0x29, 0xba, - 0xbf, 0x4c, 0x6d, 0xaa, 0x90, 0xe4, 0xb3, 0xe5, 0xcb, 0x5a, 0xb5, 0x95, 0x8f, 0x15, 0xf4, 0xd7, - 0x0a, 0x54, 0x13, 0x15, 0x97, 0x99, 0x45, 0x99, 0xad, 0x0f, 0xcd, 0x2c, 0xca, 0xbc, 0x02, 0xcf, - 0x15, 0xf4, 0x97, 0x0a, 0x54, 0xe2, 0xea, 0x49, 0x74, 0x6f, 0xf1, 0x7a, 0x4b, 0x21, 0xc4, 0xa7, - 0xcb, 0x16, 0x6a, 0x6a, 0x2b, 0xe8, 0xcf, 0xa1, 0x1c, 0x95, 0x1a, 0xa2, 0xac, 0xbb, 0xd7, 0x54, - 0x1d, 0x63, 0xe3, 0xde, 0xc2, 0xe3, 0x92, 0xd3, 0x47, 0xf5, 0x7f, 0x99, 0xa7, 0x9f, 0xaa, 0x54, - 0x6c, 0xdc, 0x5b, 0x78, 0x5c, 0x3c, 0x3d, 0xf3, 0x84, 0x44, 0x99, 0x60, 0x66, 0x4f, 0x98, 0xad, - 0x4f, 0xcc, 0xec, 0x09, 0xf3, 0xaa, 0x12, 0x85, 0x20, 0x89, 0x42, 0xc3, 0xcc, 0x82, 0xcc, 0x16, - 0x33, 0x66, 0x16, 0x64, 0x4e, 0x5d, 0xa3, 0xb6, 0x82, 0x7e, 0xa1, 0x24, 0xcf, 0x05, 0xf7, 0x16, - 0xae, 0xa7, 0x5b, 0xd0, 0x25, 0x67, 0x2a, 0xfa, 0xf8, 0x02, 0xfd, 0x85, 0xbc, 0xc5, 0x10, 0xe5, - 0x78, 0x68, 0x11, 0xb0, 0x54, 0x05, 0x5f, 0xe3, 0x93, 0xe5, 0x36, 0x1b, 0x2e, 0xc4, 0x5f, 0x29, - 0x00, 0x93, 0xc2, 0xbd, 0xcc, 0x42, 0xcc, 0x54, 0x0c, 0x36, 0xee, 0x2f, 0x31, 0x32, 0xb9, 0x40, - 0xa2, 0xc2, 0xa2, 0xcc, 0x0b, 0x64, 0xaa, 0xb0, 0x30, 0xf3, 0x02, 0x99, 0x2e, 0x0a, 0xd4, 0x56, - 0xd0, 0x3f, 0x29, 0xb0, 0x39, 0x53, 0xd8, 0x84, 0x1e, 0x5e, 0xb3, 0xb6, 0xad, 0xf1, 0xc5, 0xf2, - 0x00, 0x91, 0x68, 0x3b, 0xca, 0xc7, 0x0a, 0xfa, 0x5b, 0x05, 0xd6, 0xd3, 0x05, 0x1f, 0x99, 0x77, - 0xa9, 0x39, 0x25, 0x52, 0x8d, 0x07, 0xcb, 0x0d, 0x8e, 0xb5, 0xf5, 0xf7, 0x0a, 0xd4, 0xd2, 0xb5, - 0x3f, 0xe8, 0xc1, 0x62, 0x61, 0x61, 0x4a, 0xa0, 0xcf, 0x97, 0x1c, 0x1d, 0x49, 0xf4, 0xe5, 0xea, - 0x1f, 0x15, 0x45, 0xf6, 0x56, 0xe2, 0x3f, 0x3f, 0xfe, 0xff, 0x00, 0x00, 0x00, 0xff, 0xff, 0x73, - 0x96, 0x70, 0x25, 0xa5, 0x34, 0x00, 0x00, + // 3910 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x5a, 0xcd, 0x73, 0x1b, 0xc9, + 0x75, 0xe7, 0xe0, 0x8b, 0xc0, 0x03, 0x09, 0x0e, 0x5b, 0xa4, 0x04, 0x61, 0x9d, 0xac, 0x3c, 0xae, + 0x4d, 0x31, 0xf6, 0x2e, 0xb4, 0xa6, 0x93, 0xd5, 0x6a, 0xad, 0xb5, 0x16, 0x0b, 0x42, 0x22, 0x24, + 0x12, 0x64, 0x1a, 0x60, 0xc9, 0x8a, 0x92, 0x9d, 0x0c, 0x67, 0x5a, 0xe0, 0x88, 0x98, 0x8f, 0x9d, + 0x1e, 0x50, 0xa4, 0x53, 0xa9, 0xa4, 0x9c, 0xaa, 0x94, 0x53, 0x95, 0x54, 0x72, 0xd9, 0xf8, 0x92, + 0x93, 0xab, 0x72, 0x4a, 0xf9, 0x9e, 0x72, 0xca, 0xa7, 0x1c, 0xf2, 0x4f, 0xe4, 0x92, 0x5b, 0xae, + 0xf9, 0x0b, 0x92, 0xea, 0x8f, 0x19, 0xcc, 0x00, 0xd0, 0x6a, 0x00, 0xea, 0x84, 0x79, 0xaf, 0xbb, + 0x7f, 0xfd, 0xf0, 0xde, 0xeb, 0xd7, 0xaf, 0xbb, 0x1f, 0x68, 0xfe, 0x68, 0x3c, 0xb4, 0x5d, 0x7a, + 0xd7, 0x0a, 0xec, 0x0b, 0x12, 0xd0, 0xbb, 0x7e, 0xe0, 0x85, 0x9e, 0xa4, 0x9a, 0x9c, 0x40, 0x1f, + 0x9c, 0x19, 0xf4, 0xcc, 0x36, 0xbd, 0xc0, 0x6f, 0xba, 0x9e, 0x63, 0x58, 0x4d, 0x39, 0xa6, 0x29, + 0xc7, 0x88, 0x6e, 0x8d, 0xdf, 0x1d, 0x7a, 0xde, 0x70, 0x44, 0x04, 0xc2, 0xe9, 0xf8, 0xe5, 0x5d, + 0x6b, 0x1c, 0x18, 0xa1, 0xed, 0xb9, 0xb2, 0xfd, 0xfd, 0xe9, 0xf6, 0xd0, 0x76, 0x08, 0x0d, 0x0d, + 0xc7, 0x97, 0x1d, 0x3e, 0x88, 0x64, 0xa1, 0x67, 0x46, 0x40, 0xac, 0xbb, 0x67, 0xe6, 0x88, 0xfa, + 0xc4, 0x64, 0xbf, 0x3a, 0xfb, 0x90, 0xdd, 0x3e, 0x9c, 0xea, 0x46, 0xc3, 0x60, 0x6c, 0x86, 0x91, + 0xe4, 0x46, 0x18, 0x06, 0xf6, 0xe9, 0x38, 0x24, 0xa2, 0xb7, 0x76, 0x1b, 0x6e, 0x0d, 0x0c, 0x7a, + 0xde, 0xf6, 0xdc, 0x97, 0xf6, 0xb0, 0x6f, 0x9e, 0x11, 0xc7, 0xc0, 0xe4, 0xeb, 0x31, 0xa1, 0xa1, + 0xf6, 0x27, 0x50, 0x9f, 0x6d, 0xa2, 0xbe, 0xe7, 0x52, 0x82, 0xbe, 0x80, 0x02, 0x9b, 0xb2, 0xae, + 0xdc, 0x51, 0x76, 0xaa, 0xbb, 0x1f, 0x36, 0xdf, 0xa4, 0x02, 0x21, 0x43, 0x53, 0x8a, 0xda, 0xec, + 0xfb, 0xc4, 0xc4, 0x7c, 0xa4, 0xb6, 0x0d, 0x37, 0xda, 0x86, 0x6f, 0x9c, 0xda, 0x23, 0x3b, 0xb4, + 0x09, 0x8d, 0x26, 0x1d, 0xc3, 0x56, 0x9a, 0x2d, 0x27, 0xfc, 0x53, 0x58, 0x33, 0x13, 0x7c, 0x39, + 0xf1, 0xfd, 0x66, 0x26, 0xdd, 0x37, 0xf7, 0x38, 0x95, 0x02, 0x4e, 0xc1, 0x69, 0x5b, 0x80, 0x1e, + 0xd9, 0xee, 0x90, 0x04, 0x7e, 0x60, 0xbb, 0x61, 0x24, 0xcc, 0x6f, 0xf3, 0x70, 0x23, 0xc5, 0x96, + 0xc2, 0xbc, 0x02, 0x88, 0xf5, 0xc8, 0x44, 0xc9, 0xef, 0x54, 0x77, 0x9f, 0x64, 0x14, 0x65, 0x0e, + 0x5e, 0xb3, 0x15, 0x83, 0x75, 0xdc, 0x30, 0xb8, 0xc2, 0x09, 0x74, 0xf4, 0x15, 0x94, 0xce, 0x88, + 0x31, 0x0a, 0xcf, 0xea, 0xb9, 0x3b, 0xca, 0x4e, 0x6d, 0xf7, 0xd1, 0x35, 0xe6, 0xd9, 0xe7, 0x40, + 0xfd, 0xd0, 0x08, 0x09, 0x96, 0xa8, 0xe8, 0x23, 0x40, 0xe2, 0x4b, 0xb7, 0x08, 0x35, 0x03, 0xdb, + 0x67, 0x2e, 0x59, 0xcf, 0xdf, 0x51, 0x76, 0x2a, 0x78, 0x53, 0xb4, 0xec, 0x4d, 0x1a, 0x1a, 0x3e, + 0x6c, 0x4c, 0x49, 0x8b, 0x54, 0xc8, 0x9f, 0x93, 0x2b, 0x6e, 0x91, 0x0a, 0x66, 0x9f, 0xe8, 0x31, + 0x14, 0x2f, 0x8c, 0xd1, 0x98, 0x70, 0x91, 0xab, 0xbb, 0x3f, 0x7c, 0x9b, 0x7b, 0x48, 0x17, 0x9d, + 0xe8, 0x01, 0x8b, 0xf1, 0x9f, 0xe5, 0x3e, 0x55, 0xb4, 0xfb, 0x50, 0x4d, 0xc8, 0x8d, 0x6a, 0x00, + 0x27, 0xbd, 0xbd, 0xce, 0xa0, 0xd3, 0x1e, 0x74, 0xf6, 0xd4, 0x15, 0xb4, 0x0e, 0x95, 0x93, 0xde, + 0x7e, 0xa7, 0x75, 0x30, 0xd8, 0x7f, 0xae, 0x2a, 0xa8, 0x0a, 0xab, 0x11, 0x91, 0xd3, 0x2e, 0x01, + 0x61, 0x62, 0x7a, 0x17, 0x24, 0x60, 0x8e, 0x2c, 0xad, 0x8a, 0x6e, 0xc1, 0x6a, 0x68, 0xd0, 0x73, + 0xdd, 0xb6, 0xa4, 0xcc, 0x25, 0x46, 0x76, 0x2d, 0xd4, 0x85, 0xd2, 0x99, 0xe1, 0x5a, 0xa3, 0xb7, + 0xcb, 0x9d, 0x56, 0x35, 0x03, 0xdf, 0xe7, 0x03, 0xb1, 0x04, 0x60, 0xde, 0x9d, 0x9a, 0x59, 0x18, + 0x40, 0x7b, 0x0e, 0x6a, 0x3f, 0x34, 0x82, 0x30, 0x29, 0x4e, 0x07, 0x0a, 0x6c, 0x7e, 0xe9, 0xd1, + 0x8b, 0xcc, 0x29, 0x56, 0x26, 0xe6, 0xc3, 0xb5, 0xff, 0xcd, 0xc1, 0x66, 0x02, 0x5b, 0x7a, 0xea, + 0x33, 0x28, 0x05, 0x84, 0x8e, 0x47, 0x21, 0x87, 0xaf, 0xed, 0x3e, 0xcc, 0x08, 0x3f, 0x83, 0xd4, + 0xc4, 0x1c, 0x06, 0x4b, 0x38, 0xb4, 0x03, 0xaa, 0x18, 0xa1, 0x93, 0x20, 0xf0, 0x02, 0xdd, 0xa1, + 0x43, 0xae, 0xb5, 0x0a, 0xae, 0x09, 0x7e, 0x87, 0xb1, 0x0f, 0xe9, 0x30, 0xa1, 0xd5, 0xfc, 0x35, + 0xb5, 0x8a, 0x0c, 0x50, 0x5d, 0x12, 0xbe, 0xf6, 0x82, 0x73, 0x9d, 0xa9, 0x36, 0xb0, 0x2d, 0x52, + 0x2f, 0x70, 0xd0, 0x4f, 0x32, 0x82, 0xf6, 0xc4, 0xf0, 0x23, 0x39, 0x1a, 0x6f, 0xb8, 0x69, 0x86, + 0xf6, 0x03, 0x28, 0x89, 0x7f, 0xca, 0x3c, 0xa9, 0x7f, 0xd2, 0x6e, 0x77, 0xfa, 0x7d, 0x75, 0x05, + 0x55, 0xa0, 0x88, 0x3b, 0x03, 0xcc, 0x3c, 0xac, 0x02, 0xc5, 0x47, 0xad, 0x41, 0xeb, 0x40, 0xcd, + 0x69, 0xdf, 0x87, 0x8d, 0x67, 0x86, 0x1d, 0x66, 0x71, 0x2e, 0xcd, 0x03, 0x75, 0xd2, 0x57, 0x5a, + 0xa7, 0x9b, 0xb2, 0x4e, 0x76, 0xd5, 0x74, 0x2e, 0xed, 0x70, 0xca, 0x1e, 0x2a, 0xe4, 0x49, 0x10, + 0x48, 0x13, 0xb0, 0x4f, 0xed, 0x35, 0x6c, 0xf4, 0x43, 0xcf, 0xcf, 0xe4, 0xf9, 0x3f, 0x82, 0x55, + 0xb6, 0xdb, 0x78, 0xe3, 0x50, 0xba, 0xfe, 0xed, 0xa6, 0xd8, 0x8d, 0x9a, 0xd1, 0x6e, 0xd4, 0xdc, + 0x93, 0xbb, 0x15, 0x8e, 0x7a, 0xa2, 0x9b, 0x50, 0xa2, 0xf6, 0xd0, 0x35, 0x46, 0x32, 0x5a, 0x48, + 0x4a, 0x43, 0xcc, 0xc9, 0xa3, 0x89, 0xa5, 0xe3, 0xb7, 0x01, 0xed, 0x11, 0x1a, 0x06, 0xde, 0x55, + 0x26, 0x79, 0xb6, 0xa0, 0xf8, 0xd2, 0x0b, 0x4c, 0xb1, 0x10, 0xcb, 0x58, 0x10, 0x6c, 0x51, 0xa5, + 0x40, 0x24, 0xf6, 0x47, 0x80, 0xba, 0x2e, 0xdb, 0x53, 0xb2, 0x19, 0xe2, 0x1f, 0x73, 0x70, 0x23, + 0xd5, 0x5f, 0x1a, 0x63, 0xf9, 0x75, 0xc8, 0x02, 0xd3, 0x98, 0x8a, 0x75, 0x88, 0x8e, 0xa0, 0x24, + 0x7a, 0x48, 0x4d, 0xde, 0x5b, 0x00, 0x48, 0x6c, 0x53, 0x12, 0x4e, 0xc2, 0xcc, 0x75, 0xfa, 0xfc, + 0xbb, 0x75, 0xfa, 0xd7, 0xa0, 0x46, 0xff, 0x83, 0xbe, 0xd5, 0x36, 0x4f, 0xe0, 0x86, 0xe9, 0x8d, + 0x46, 0xc4, 0x64, 0xde, 0xa0, 0xdb, 0x6e, 0x48, 0x82, 0x0b, 0x63, 0xf4, 0x76, 0xbf, 0x41, 0x93, + 0x51, 0x5d, 0x39, 0x48, 0x7b, 0x01, 0x9b, 0x89, 0x89, 0xa5, 0x21, 0x1e, 0x41, 0x91, 0x32, 0x86, + 0xb4, 0xc4, 0xc7, 0x0b, 0x5a, 0x82, 0x62, 0x31, 0x5c, 0xbb, 0x21, 0xc0, 0x3b, 0x17, 0xc4, 0x8d, + 0xff, 0x96, 0xb6, 0x07, 0x9b, 0x7d, 0xee, 0xa6, 0x99, 0xfc, 0x70, 0xe2, 0xe2, 0xb9, 0x94, 0x8b, + 0x6f, 0x01, 0x4a, 0xa2, 0x48, 0x47, 0xbc, 0x82, 0x8d, 0xce, 0x25, 0x31, 0x33, 0x21, 0xd7, 0x61, + 0xd5, 0xf4, 0x1c, 0xc7, 0x70, 0xad, 0x7a, 0xee, 0x4e, 0x7e, 0xa7, 0x82, 0x23, 0x32, 0xb9, 0x16, + 0xf3, 0x59, 0xd7, 0xa2, 0xf6, 0xf7, 0x0a, 0xa8, 0x93, 0xb9, 0xa5, 0x22, 0x99, 0xf4, 0xa1, 0xc5, + 0x80, 0xd8, 0xdc, 0x6b, 0x58, 0x52, 0x92, 0x1f, 0x85, 0x0b, 0xc1, 0x27, 0x41, 0x90, 0x08, 0x47, + 0xf9, 0x6b, 0x86, 0x23, 0x6d, 0x1f, 0xbe, 0x13, 0x89, 0xd3, 0x0f, 0x03, 0x62, 0x38, 0xb6, 0x3b, + 0xec, 0x1e, 0x1d, 0xf9, 0x44, 0x08, 0x8e, 0x10, 0x14, 0x2c, 0x23, 0x34, 0xa4, 0x60, 0xfc, 0x9b, + 0x2d, 0x7a, 0x73, 0xe4, 0xd1, 0x78, 0xd1, 0x73, 0x42, 0xfb, 0xcf, 0x3c, 0xd4, 0x67, 0xa0, 0x22, + 0xf5, 0xbe, 0x80, 0x22, 0x25, 0xe1, 0xd8, 0x97, 0xae, 0xd2, 0xc9, 0x2c, 0xf0, 0x7c, 0xbc, 0x66, + 0x9f, 0x81, 0x61, 0x81, 0x89, 0x86, 0x50, 0x0e, 0xc3, 0x2b, 0x9d, 0xda, 0x3f, 0x8b, 0x12, 0x82, + 0x83, 0xeb, 0xe2, 0x0f, 0x48, 0xe0, 0xd8, 0xae, 0x31, 0xea, 0xdb, 0x3f, 0x23, 0x78, 0x35, 0x0c, + 0xaf, 0xd8, 0x07, 0x7a, 0xce, 0x1c, 0xde, 0xb2, 0x5d, 0xa9, 0xf6, 0xf6, 0xb2, 0xb3, 0x24, 0x14, + 0x8c, 0x05, 0x62, 0xe3, 0x00, 0x8a, 0xfc, 0x3f, 0x2d, 0xe3, 0x88, 0x2a, 0xe4, 0xc3, 0xf0, 0x8a, + 0x0b, 0x55, 0xc6, 0xec, 0xb3, 0xf1, 0x00, 0xd6, 0x92, 0xff, 0x80, 0x39, 0xd2, 0x19, 0xb1, 0x87, + 0x67, 0xc2, 0xc1, 0x8a, 0x58, 0x52, 0xcc, 0x92, 0xaf, 0x6d, 0x4b, 0xa6, 0xac, 0x45, 0x2c, 0x08, + 0xed, 0xdf, 0x72, 0x70, 0x7b, 0x8e, 0x66, 0xa4, 0xb3, 0xbe, 0x48, 0x39, 0xeb, 0x3b, 0xd2, 0x42, + 0xe4, 0xf1, 0x2f, 0x52, 0x1e, 0xff, 0x0e, 0xc1, 0xd9, 0xb2, 0xb9, 0x09, 0x25, 0x72, 0x69, 0x87, + 0xc4, 0x92, 0xaa, 0x92, 0x54, 0x62, 0x39, 0x15, 0xae, 0xbb, 0x9c, 0x0e, 0x61, 0xab, 0x1d, 0x10, + 0x23, 0x24, 0x32, 0x94, 0x47, 0xfe, 0x7f, 0x1b, 0xca, 0xc6, 0x68, 0xe4, 0x99, 0x13, 0xb3, 0xae, + 0x72, 0xba, 0x6b, 0xa1, 0x06, 0x94, 0xcf, 0x3c, 0x1a, 0xba, 0x86, 0x43, 0x64, 0xf0, 0x8a, 0x69, + 0xed, 0x1b, 0x05, 0xb6, 0xa7, 0xf0, 0xa4, 0x15, 0x4e, 0xa1, 0x66, 0x53, 0x6f, 0xc4, 0xff, 0xa0, + 0x9e, 0x38, 0xe1, 0xfd, 0x78, 0xb1, 0xad, 0xa6, 0x1b, 0x61, 0xf0, 0x03, 0xdf, 0xba, 0x9d, 0x24, + 0xb9, 0xc7, 0xf1, 0xc9, 0x2d, 0xb9, 0xd2, 0x23, 0x52, 0xfb, 0x27, 0x05, 0xb6, 0xe5, 0x0e, 0x9f, + 0xfd, 0x8f, 0xce, 0x8a, 0x9c, 0x7b, 0xd7, 0x22, 0x6b, 0x75, 0xb8, 0x39, 0x2d, 0x97, 0x8c, 0xf9, + 0xbf, 0x2e, 0x02, 0x9a, 0x3d, 0x5d, 0xa2, 0xef, 0xc2, 0x1a, 0x25, 0xae, 0xa5, 0x8b, 0xfd, 0x42, + 0x6c, 0x65, 0x65, 0x5c, 0x65, 0x3c, 0xb1, 0x71, 0x50, 0x16, 0x02, 0xc9, 0xa5, 0x94, 0xb6, 0x8c, + 0xf9, 0x37, 0x3a, 0x83, 0xb5, 0x97, 0x54, 0x8f, 0xe7, 0xe6, 0x0e, 0x55, 0xcb, 0x1c, 0xd6, 0x66, + 0xe5, 0x68, 0x3e, 0xea, 0xc7, 0xff, 0x0b, 0x57, 0x5f, 0xd2, 0x98, 0x40, 0xbf, 0x50, 0xe0, 0x56, + 0x94, 0x56, 0x4c, 0xd4, 0xe7, 0x78, 0x16, 0xa1, 0xf5, 0xc2, 0x9d, 0xfc, 0x4e, 0x6d, 0xf7, 0xf8, + 0x1a, 0xfa, 0x9b, 0x61, 0x1e, 0x7a, 0x16, 0xc1, 0xdb, 0xee, 0x1c, 0x2e, 0x45, 0x4d, 0xb8, 0xe1, + 0x8c, 0x69, 0xa8, 0x0b, 0x2f, 0xd0, 0x65, 0xa7, 0x7a, 0x91, 0xeb, 0x65, 0x93, 0x35, 0xa5, 0x7c, + 0x15, 0x9d, 0xc3, 0xba, 0xe3, 0x8d, 0xdd, 0x50, 0x37, 0xf9, 0xf9, 0x87, 0xd6, 0x4b, 0x0b, 0x1d, + 0x8c, 0xe7, 0x68, 0xe9, 0x90, 0xc1, 0x89, 0xd3, 0x14, 0xc5, 0x6b, 0x4e, 0x82, 0x62, 0x86, 0x0c, + 0x88, 0xe3, 0x85, 0x44, 0x67, 0xf1, 0x92, 0xd6, 0x57, 0x85, 0x21, 0x05, 0x8f, 0x85, 0x06, 0x8a, + 0xfe, 0x00, 0x6e, 0x5a, 0x36, 0x35, 0x4e, 0x47, 0x44, 0x1f, 0x79, 0x43, 0x7d, 0x92, 0xe6, 0xd4, + 0xcb, 0xbc, 0xf3, 0x96, 0x6c, 0x3d, 0xf0, 0x86, 0xed, 0xb8, 0x4d, 0x6b, 0x42, 0x35, 0x61, 0x1c, + 0x54, 0x86, 0x42, 0xef, 0xa8, 0xd7, 0x51, 0x57, 0x10, 0x40, 0xa9, 0xbd, 0x8f, 0x8f, 0x8e, 0x06, + 0xe2, 0xac, 0xd1, 0x3d, 0x6c, 0x3d, 0xee, 0xa8, 0x39, 0xad, 0x03, 0x6b, 0x49, 0x31, 0x11, 0x82, + 0xda, 0x49, 0xef, 0x69, 0xef, 0xe8, 0x59, 0x4f, 0x3f, 0x3c, 0x3a, 0xe9, 0x0d, 0xd8, 0x29, 0xa5, + 0x06, 0xd0, 0xea, 0x3d, 0x9f, 0xd0, 0xeb, 0x50, 0xe9, 0x1d, 0x45, 0xa4, 0xd2, 0xc8, 0xa9, 0x8a, + 0xf6, 0x1f, 0x79, 0xd8, 0x9a, 0x67, 0x31, 0x64, 0x41, 0x81, 0x59, 0x5f, 0x9e, 0x13, 0xdf, 0xbd, + 0xf1, 0x39, 0x3a, 0x73, 0x7a, 0xdf, 0x90, 0x1b, 0x43, 0x05, 0xf3, 0x6f, 0xa4, 0x43, 0x69, 0x64, + 0x9c, 0x92, 0x11, 0xad, 0xe7, 0xf9, 0x4d, 0xca, 0xe3, 0xeb, 0xcc, 0x7d, 0xc0, 0x91, 0xc4, 0x35, + 0x8a, 0x84, 0x45, 0x03, 0xa8, 0xb2, 0xd0, 0x47, 0x85, 0xea, 0x64, 0x34, 0xde, 0xcd, 0x38, 0xcb, + 0xfe, 0x64, 0x24, 0x4e, 0xc2, 0x34, 0xee, 0x43, 0x35, 0x31, 0xd9, 0x9c, 0x5b, 0x90, 0xad, 0xe4, + 0x2d, 0x48, 0x25, 0x79, 0xa5, 0xf1, 0x70, 0xd6, 0x06, 0x4c, 0x47, 0xcc, 0x09, 0xf6, 0x8f, 0xfa, + 0x03, 0x71, 0xde, 0x7c, 0x8c, 0x8f, 0x4e, 0x8e, 0x55, 0x85, 0x31, 0x07, 0xad, 0xfe, 0x53, 0x35, + 0x17, 0xfb, 0x48, 0x5e, 0x6b, 0x43, 0x35, 0x21, 0x57, 0x2a, 0xd6, 0x2b, 0xe9, 0x58, 0xcf, 0xa2, + 0xad, 0x61, 0x59, 0x01, 0xa1, 0x54, 0xca, 0x11, 0x91, 0xda, 0x0b, 0xa8, 0xec, 0xf5, 0xfa, 0x12, + 0xa2, 0x0e, 0xab, 0x94, 0x04, 0xec, 0x7f, 0xf3, 0xfb, 0xac, 0x0a, 0x8e, 0x48, 0x06, 0x4e, 0x89, + 0x11, 0x98, 0x67, 0x84, 0xca, 0x0c, 0x21, 0xa6, 0xd9, 0x28, 0x8f, 0xdf, 0x0b, 0x09, 0xdb, 0x55, + 0x70, 0x44, 0x6a, 0xff, 0x57, 0x06, 0x98, 0xdc, 0x51, 0xa0, 0x1a, 0xe4, 0xe2, 0xc8, 0x9d, 0xb3, + 0x2d, 0xe6, 0x07, 0x89, 0x9d, 0x89, 0x7f, 0xa3, 0x5d, 0xd8, 0x76, 0xe8, 0xd0, 0x37, 0xcc, 0x73, + 0x5d, 0x5e, 0x2d, 0x88, 0x05, 0xce, 0xa3, 0xe0, 0x1a, 0xbe, 0x21, 0x1b, 0xe5, 0xfa, 0x15, 0xb8, + 0x07, 0x90, 0x27, 0xee, 0x05, 0x8f, 0x58, 0xd5, 0xdd, 0xcf, 0x16, 0xbe, 0x3b, 0x69, 0x76, 0xdc, + 0x0b, 0xe1, 0x2b, 0x0c, 0x06, 0xe9, 0x00, 0x16, 0xb9, 0xb0, 0x4d, 0xa2, 0x33, 0xd0, 0x22, 0x07, + 0xfd, 0x62, 0x71, 0xd0, 0x3d, 0x8e, 0x11, 0x43, 0x57, 0xac, 0x88, 0x46, 0x3d, 0xa8, 0x04, 0x84, + 0x7a, 0xe3, 0xc0, 0x24, 0x22, 0x6c, 0x65, 0x3f, 0xde, 0xe0, 0x68, 0x1c, 0x9e, 0x40, 0xa0, 0x3d, + 0x28, 0xf1, 0x68, 0xc5, 0xe2, 0x52, 0xfe, 0x5b, 0x2f, 0x62, 0xd3, 0x60, 0x3c, 0x92, 0x60, 0x39, + 0x16, 0x3d, 0x86, 0x55, 0x21, 0x22, 0xad, 0x97, 0x39, 0xcc, 0x47, 0x59, 0x43, 0x29, 0x1f, 0x85, + 0xa3, 0xd1, 0xcc, 0xaa, 0x63, 0x4a, 0x82, 0x7a, 0x45, 0x58, 0x95, 0x7d, 0xa3, 0xf7, 0xa0, 0x22, + 0x76, 0x6e, 0xcb, 0x0e, 0xea, 0x20, 0x9c, 0x93, 0x33, 0xf6, 0xec, 0x00, 0xbd, 0x0f, 0x55, 0x91, + 0xa1, 0xe9, 0x3c, 0x2a, 0x54, 0x79, 0x33, 0x08, 0xd6, 0x31, 0x8b, 0x0d, 0xa2, 0x03, 0x09, 0x02, + 0xd1, 0x61, 0x2d, 0xee, 0x40, 0x82, 0x80, 0x77, 0xf8, 0x3d, 0xd8, 0xe0, 0x79, 0xed, 0x30, 0xf0, + 0xc6, 0xbe, 0xce, 0x7d, 0x6a, 0x9d, 0x77, 0x5a, 0x67, 0xec, 0xc7, 0x8c, 0xdb, 0x63, 0xce, 0x75, + 0x1b, 0xca, 0xaf, 0xbc, 0x53, 0xd1, 0xa1, 0x26, 0xd6, 0xc1, 0x2b, 0xef, 0x34, 0x6a, 0x8a, 0x73, + 0x8b, 0x8d, 0x74, 0x6e, 0xf1, 0x35, 0xdc, 0x9c, 0xdd, 0x24, 0x79, 0x8e, 0xa1, 0x5e, 0x3f, 0xc7, + 0xd8, 0x72, 0xe7, 0xc5, 0xe1, 0x2f, 0x21, 0x6f, 0xb9, 0xb4, 0xbe, 0xb9, 0x90, 0x73, 0xc4, 0xeb, + 0x18, 0xb3, 0xc1, 0x68, 0x1b, 0x4a, 0xec, 0xcf, 0xda, 0x56, 0x1d, 0x89, 0xd0, 0xf3, 0xca, 0x3b, + 0xed, 0x5a, 0xe8, 0x3b, 0x50, 0x61, 0xff, 0x9f, 0xfa, 0x86, 0x49, 0xea, 0x37, 0x78, 0xcb, 0x84, + 0xc1, 0x0c, 0xe5, 0x7a, 0x16, 0x11, 0x2a, 0xda, 0x12, 0x86, 0x62, 0x0c, 0xae, 0xa3, 0x5b, 0xb0, + 0xca, 0x1b, 0x6d, 0xab, 0xbe, 0x2d, 0x8e, 0x0f, 0x8c, 0xec, 0x5a, 0x48, 0x83, 0x75, 0xdf, 0x08, + 0x88, 0x1b, 0xea, 0x72, 0xc6, 0x9b, 0xbc, 0xb9, 0x2a, 0x98, 0x4f, 0xd8, 0xbc, 0x8d, 0x4f, 0xa0, + 0x1c, 0x2d, 0x86, 0x45, 0xc2, 0x64, 0xe3, 0x01, 0xd4, 0xd2, 0x4b, 0x69, 0xa1, 0x20, 0xfb, 0x2f, + 0x39, 0xa8, 0xc4, 0x8b, 0x06, 0xb9, 0x70, 0x83, 0x1b, 0x95, 0xe5, 0x99, 0xfa, 0x64, 0x0d, 0x8a, + 0xec, 0xf6, 0xf3, 0x8c, 0x6a, 0x6e, 0x45, 0x08, 0xf2, 0x98, 0x2d, 0x17, 0x24, 0x8a, 0x91, 0x27, + 0xf3, 0x7d, 0x05, 0x1b, 0x23, 0xdb, 0x1d, 0x5f, 0x26, 0xe6, 0x12, 0x69, 0xe9, 0x1f, 0x66, 0x9c, + 0xeb, 0x80, 0x8d, 0x9e, 0xcc, 0x51, 0x1b, 0xa5, 0x68, 0xb4, 0x0f, 0x45, 0xdf, 0x0b, 0xc2, 0x68, + 0xcf, 0xcc, 0xba, 0x9b, 0x1d, 0x7b, 0x41, 0x78, 0x68, 0xf8, 0x3e, 0x3b, 0x79, 0x09, 0x00, 0xed, + 0x9b, 0x1c, 0xdc, 0x9c, 0xff, 0xc7, 0x50, 0x0f, 0xf2, 0xa6, 0x3f, 0x96, 0x4a, 0x7a, 0xb0, 0xa8, + 0x92, 0xda, 0xfe, 0x78, 0x22, 0x3f, 0x03, 0x42, 0xcf, 0xa0, 0xe4, 0x10, 0xc7, 0x0b, 0xae, 0xa4, + 0x2e, 0x1e, 0x2e, 0x0a, 0x79, 0xc8, 0x47, 0x4f, 0x50, 0x25, 0x1c, 0xc2, 0x50, 0x96, 0x8b, 0x89, + 0xca, 0xb0, 0xbd, 0xe0, 0xdd, 0x58, 0x04, 0x89, 0x63, 0x1c, 0xed, 0x13, 0xd8, 0x9e, 0xfb, 0x57, + 0xd0, 0xef, 0x00, 0x98, 0xfe, 0x58, 0xe7, 0x6f, 0x17, 0xc2, 0x83, 0xf2, 0xb8, 0x62, 0xfa, 0xe3, + 0x3e, 0x67, 0x68, 0x2f, 0xa0, 0xfe, 0x26, 0x79, 0xd9, 0x1a, 0x13, 0x12, 0xeb, 0xce, 0x29, 0xd7, + 0x41, 0x1e, 0x97, 0x05, 0xe3, 0xf0, 0x94, 0x2d, 0xa5, 0xa8, 0xd1, 0xb8, 0x64, 0x1d, 0xf2, 0xbc, + 0x43, 0x55, 0x76, 0x30, 0x2e, 0x0f, 0x4f, 0xb5, 0x5f, 0xe6, 0x60, 0x63, 0x4a, 0x64, 0x76, 0xfe, + 0x14, 0x01, 0x38, 0x3a, 0xd9, 0x0b, 0x8a, 0x45, 0x63, 0xd3, 0xb6, 0xa2, 0x3b, 0x61, 0xfe, 0xcd, + 0xf7, 0x61, 0x5f, 0xde, 0xd7, 0xe6, 0x6c, 0x9f, 0x2d, 0x1f, 0xe7, 0xd4, 0x0e, 0x29, 0x4f, 0x8a, + 0x8a, 0x58, 0x10, 0xe8, 0x39, 0xd4, 0x02, 0xc2, 0xf7, 0x7f, 0x4b, 0x17, 0x5e, 0x56, 0x5c, 0xc8, + 0xcb, 0xa4, 0x84, 0xcc, 0xd9, 0xf0, 0x7a, 0x84, 0xc4, 0x28, 0x8a, 0x9e, 0xc1, 0xba, 0x75, 0xe5, + 0x1a, 0x8e, 0x6d, 0x4a, 0xe4, 0xd2, 0xd2, 0xc8, 0x6b, 0x12, 0x88, 0x03, 0x6b, 0xf7, 0xa1, 0x9a, + 0x68, 0x64, 0x7f, 0x8c, 0x67, 0x7f, 0x52, 0x27, 0x82, 0x48, 0x47, 0x8b, 0xa2, 0x8c, 0x16, 0xda, + 0x29, 0x54, 0x13, 0xeb, 0x62, 0x91, 0xa1, 0x4c, 0x9f, 0xa1, 0xc7, 0xf5, 0x59, 0xc4, 0xb9, 0xd0, + 0x63, 0x71, 0x92, 0x65, 0x5e, 0xba, 0xed, 0x73, 0x8d, 0x56, 0x70, 0x89, 0x91, 0x5d, 0x5f, 0xfb, + 0x4d, 0x0e, 0x6a, 0xe9, 0x25, 0x1d, 0xf9, 0x91, 0x4f, 0x02, 0xdb, 0xb3, 0x12, 0x7e, 0x74, 0xcc, + 0x19, 0xcc, 0x57, 0x58, 0xf3, 0xd7, 0x63, 0x2f, 0x34, 0x22, 0x5f, 0x31, 0xfd, 0xf1, 0x1f, 0x31, + 0x7a, 0xca, 0x07, 0xf3, 0x53, 0x3e, 0x88, 0x3e, 0x04, 0x24, 0x5d, 0x69, 0x64, 0x3b, 0x76, 0xa8, + 0x9f, 0x5e, 0x85, 0x44, 0xd8, 0x38, 0x8f, 0x55, 0xd1, 0x72, 0xc0, 0x1a, 0xbe, 0x64, 0x7c, 0xe6, + 0x78, 0x9e, 0xe7, 0xe8, 0xd4, 0xf4, 0x02, 0xa2, 0x1b, 0xd6, 0x2b, 0x7e, 0xf4, 0xca, 0xe3, 0xaa, + 0xe7, 0x39, 0x7d, 0xc6, 0x6b, 0x59, 0xaf, 0xd8, 0x46, 0x6c, 0xfa, 0x63, 0x4a, 0x42, 0x9d, 0xfd, + 0xf0, 0xdc, 0xa5, 0x82, 0x41, 0xb0, 0xda, 0xfe, 0x98, 0xa2, 0xef, 0xc1, 0x7a, 0xd4, 0x81, 0xef, + 0xc5, 0x32, 0x09, 0x58, 0x93, 0x5d, 0x38, 0x0f, 0x69, 0xb0, 0x76, 0x4c, 0x02, 0x93, 0xb8, 0xe1, + 0xc0, 0x36, 0xcf, 0x29, 0x3f, 0x20, 0x29, 0x38, 0xc5, 0x7b, 0x52, 0x28, 0xaf, 0xaa, 0x65, 0x1c, + 0xcd, 0xe6, 0x10, 0x87, 0x6a, 0xbf, 0x56, 0xa0, 0xc8, 0x53, 0x16, 0xa6, 0x14, 0xbe, 0xdd, 0xf3, + 0x6c, 0x40, 0xa6, 0xba, 0x8c, 0xc1, 0x73, 0x81, 0xf7, 0xa0, 0xc2, 0x95, 0x9f, 0x38, 0x61, 0xf0, + 0x3c, 0x98, 0x37, 0x36, 0xa0, 0x1c, 0x10, 0xc3, 0xf2, 0xdc, 0x51, 0x74, 0xa5, 0x15, 0xd3, 0xe8, + 0xf7, 0x41, 0xf5, 0x03, 0xcf, 0x37, 0x86, 0x93, 0x53, 0xb0, 0x34, 0xdf, 0x46, 0x82, 0xcf, 0x53, + 0xf4, 0xef, 0xc1, 0x3a, 0x25, 0x22, 0xb2, 0x0b, 0x27, 0x29, 0x8a, 0xbf, 0x29, 0x99, 0xfc, 0x44, + 0xa0, 0x7d, 0x0d, 0x25, 0xb1, 0x71, 0x5d, 0x43, 0xde, 0x8f, 0x00, 0x09, 0x45, 0x32, 0x07, 0x71, + 0x6c, 0x4a, 0x65, 0x96, 0xcd, 0xdf, 0x65, 0x45, 0xcb, 0xf1, 0xa4, 0x41, 0xfb, 0x2f, 0x45, 0xe4, + 0xdb, 0xe2, 0xc5, 0x8c, 0x25, 0xe6, 0x6c, 0xd5, 0xb0, 0x43, 0xa8, 0xb8, 0x9a, 0x8b, 0x48, 0xd4, + 0x85, 0x92, 0x4c, 0xab, 0x73, 0xcb, 0x3e, 0x38, 0x4a, 0x80, 0xe8, 0xa2, 0x9e, 0xc8, 0x6b, 0x8a, + 0x45, 0x2f, 0xea, 0x89, 0xb8, 0xa8, 0x27, 0xec, 0x8c, 0x2d, 0x13, 0x7e, 0x01, 0x57, 0xe0, 0xf9, + 0x7e, 0xd5, 0x8a, 0x5f, 0x43, 0x88, 0xf6, 0x3f, 0x4a, 0x1c, 0xf7, 0xa2, 0x57, 0x0b, 0xf4, 0x15, + 0x94, 0x59, 0x08, 0xd1, 0x1d, 0xc3, 0x97, 0x6f, 0xf0, 0xed, 0xe5, 0x1e, 0x44, 0xa2, 0x5d, 0x51, + 0xa4, 0xeb, 0xab, 0xbe, 0xa0, 0x58, 0xfc, 0x64, 0x47, 0xa5, 0x28, 0x7e, 0xb2, 0x6f, 0xf4, 0x01, + 0xd4, 0x8c, 0x71, 0xe8, 0xe9, 0x86, 0x75, 0x41, 0x82, 0xd0, 0xa6, 0x44, 0xfa, 0xd2, 0x3a, 0xe3, + 0xb6, 0x22, 0x66, 0xe3, 0x33, 0x58, 0x4b, 0x62, 0xbe, 0x2d, 0x6f, 0x29, 0x26, 0xf3, 0x96, 0x3f, + 0x03, 0x98, 0xdc, 0x00, 0x32, 0x1f, 0x21, 0x97, 0x76, 0xa8, 0x9b, 0xd1, 0xd9, 0xbc, 0x88, 0xcb, + 0x8c, 0xd1, 0x66, 0xce, 0x98, 0x7e, 0x9e, 0x28, 0x46, 0xcf, 0x13, 0x2c, 0x3a, 0xb0, 0x05, 0x7d, + 0x6e, 0x8f, 0x46, 0xf1, 0xad, 0x64, 0xc5, 0xf3, 0x9c, 0xa7, 0x9c, 0xa1, 0xfd, 0x36, 0x27, 0x7c, + 0x45, 0x3c, 0x34, 0x65, 0x3a, 0x9b, 0xbd, 0x2b, 0x53, 0xdf, 0x07, 0xa0, 0xa1, 0x11, 0xb0, 0x24, + 0xcc, 0x88, 0xee, 0x45, 0x1b, 0x33, 0xef, 0x1b, 0x83, 0xa8, 0xf2, 0x05, 0x57, 0x64, 0xef, 0x56, + 0x88, 0x3e, 0x87, 0x35, 0xd3, 0x73, 0xfc, 0x11, 0x91, 0x83, 0x8b, 0x6f, 0x1d, 0x5c, 0x8d, 0xfb, + 0xb7, 0xc2, 0xc4, 0x6d, 0x6c, 0xe9, 0xba, 0xb7, 0xb1, 0xbf, 0x51, 0xc4, 0x7b, 0x59, 0xf2, 0xb9, + 0x0e, 0x0d, 0xe7, 0xd4, 0x84, 0x3c, 0x5e, 0xf2, 0xed, 0xef, 0xdb, 0x0a, 0x42, 0x1a, 0x9f, 0x67, + 0xa9, 0xc0, 0x78, 0x73, 0x5a, 0xfc, 0xef, 0x79, 0xa8, 0xc4, 0x4f, 0x65, 0x33, 0xb6, 0xff, 0x14, + 0x2a, 0x71, 0xd9, 0x91, 0x0c, 0x10, 0xdf, 0x6a, 0x9e, 0xb8, 0x33, 0x7a, 0x09, 0xc8, 0x18, 0x0e, + 0xe3, 0x74, 0x57, 0x1f, 0x53, 0x63, 0x18, 0x3d, 0x54, 0x7e, 0xba, 0x80, 0x1e, 0xa2, 0xfd, 0xf1, + 0x84, 0x8d, 0xc7, 0xaa, 0x31, 0x1c, 0xa6, 0x38, 0xe8, 0xcf, 0x61, 0x3b, 0x3d, 0x87, 0x7e, 0x7a, + 0xa5, 0xfb, 0xb6, 0x25, 0xef, 0x00, 0xf6, 0x17, 0x7d, 0x2d, 0x6c, 0xa6, 0xe0, 0xbf, 0xbc, 0x3a, + 0xb6, 0x2d, 0xa1, 0x73, 0x14, 0xcc, 0x34, 0x34, 0xfe, 0x12, 0x6e, 0xbd, 0xa1, 0xfb, 0x1c, 0x1b, + 0xf4, 0xd2, 0x55, 0x30, 0xcb, 0x2b, 0x21, 0x61, 0xbd, 0x5f, 0x29, 0xe2, 0x51, 0x33, 0xad, 0x93, + 0x56, 0x32, 0x4f, 0xbf, 0x9b, 0x71, 0x9e, 0xf6, 0xf1, 0x89, 0x80, 0xe7, 0xa9, 0xf9, 0x93, 0xa9, + 0xd4, 0x3c, 0x6b, 0x42, 0x26, 0x32, 0x5c, 0x01, 0x24, 0x11, 0xb4, 0x7f, 0xcd, 0x43, 0x39, 0x42, + 0xe7, 0x27, 0xf8, 0x2b, 0x1a, 0x12, 0x47, 0x8f, 0xaf, 0x17, 0x15, 0x0c, 0x82, 0xc5, 0x77, 0xd4, + 0xf7, 0xa0, 0x32, 0xa6, 0x24, 0x10, 0xcd, 0x39, 0xde, 0x5c, 0x66, 0x0c, 0xde, 0xf8, 0x3e, 0x54, + 0x43, 0x2f, 0x34, 0x46, 0x7a, 0xc8, 0xf3, 0x85, 0xbc, 0x18, 0xcd, 0x59, 0x3c, 0x5b, 0x40, 0x3f, + 0x80, 0xcd, 0xf0, 0x2c, 0xf0, 0xc2, 0x70, 0xc4, 0x72, 0x55, 0x9e, 0x39, 0x89, 0x44, 0xa7, 0x80, + 0xd5, 0xb8, 0x41, 0x64, 0x54, 0x94, 0x45, 0xef, 0x49, 0x67, 0xe6, 0xba, 0x3c, 0x88, 0x14, 0xf0, + 0x7a, 0xcc, 0x65, 0xae, 0xcd, 0x36, 0x4f, 0x5f, 0x64, 0x24, 0x3c, 0x56, 0x28, 0x38, 0x22, 0x91, + 0x0e, 0x1b, 0x0e, 0x31, 0xe8, 0x38, 0x20, 0x96, 0xfe, 0xd2, 0x26, 0x23, 0x4b, 0x5c, 0xbc, 0xd4, + 0x32, 0x1f, 0x37, 0x22, 0xb5, 0x34, 0x1f, 0xf1, 0xd1, 0xb8, 0x16, 0xc1, 0x09, 0x9a, 0x65, 0x0e, + 0xe2, 0x0b, 0x6d, 0x40, 0xb5, 0xff, 0xbc, 0x3f, 0xe8, 0x1c, 0xea, 0x87, 0x47, 0x7b, 0x1d, 0x59, + 0xe8, 0xd4, 0xef, 0x60, 0x41, 0x2a, 0xac, 0x7d, 0x70, 0x34, 0x68, 0x1d, 0xe8, 0x83, 0x6e, 0xfb, + 0x69, 0x5f, 0xcd, 0xa1, 0x6d, 0xd8, 0x1c, 0xec, 0xe3, 0xa3, 0xc1, 0xe0, 0xa0, 0xb3, 0xa7, 0x1f, + 0x77, 0x70, 0xf7, 0x68, 0xaf, 0xaf, 0xe6, 0x11, 0x82, 0xda, 0x84, 0x3d, 0xe8, 0x1e, 0x76, 0xd4, + 0x02, 0xaa, 0xc2, 0xea, 0x71, 0x07, 0xb7, 0x3b, 0xbd, 0x81, 0x5a, 0xd4, 0x7e, 0x99, 0x87, 0x6a, + 0xc2, 0x8a, 0xcc, 0x91, 0x03, 0x2a, 0xce, 0x35, 0x05, 0xcc, 0x3e, 0xf9, 0xc3, 0xac, 0x61, 0x9e, + 0x09, 0xeb, 0x14, 0xb0, 0x20, 0xf8, 0x59, 0xc6, 0xb8, 0x4c, 0xac, 0xf3, 0x02, 0x2e, 0x3b, 0xc6, + 0xa5, 0x00, 0xf9, 0x2e, 0xac, 0x9d, 0x93, 0xc0, 0x25, 0x23, 0xd9, 0x2e, 0x2c, 0x52, 0x15, 0x3c, + 0xd1, 0x65, 0x07, 0x54, 0xd9, 0x65, 0x02, 0x23, 0xcc, 0x51, 0x13, 0xfc, 0xc3, 0x08, 0x6c, 0x0b, + 0x8a, 0xa2, 0x79, 0x55, 0xcc, 0xcf, 0x09, 0xb6, 0x4d, 0xd1, 0xd7, 0x86, 0xcf, 0x73, 0xc8, 0x02, + 0xe6, 0xdf, 0xe8, 0x74, 0xd6, 0x3e, 0x25, 0x6e, 0x9f, 0xfb, 0x8b, 0xbb, 0xf3, 0x9b, 0x4c, 0x74, + 0x16, 0x9b, 0x68, 0x15, 0xf2, 0x38, 0xaa, 0x0e, 0x6a, 0xb7, 0xda, 0xfb, 0xcc, 0x2c, 0xeb, 0x50, + 0x39, 0x6c, 0xfd, 0x54, 0x3f, 0xe9, 0xf3, 0x5b, 0x7b, 0xa4, 0xc2, 0xda, 0xd3, 0x0e, 0xee, 0x75, + 0x0e, 0x24, 0x27, 0x8f, 0xb6, 0x40, 0x95, 0x9c, 0x49, 0xbf, 0x02, 0x43, 0x10, 0x9f, 0x45, 0x54, + 0x86, 0x42, 0xff, 0x59, 0xeb, 0x58, 0x2d, 0x69, 0xff, 0x9d, 0x83, 0x0d, 0xb1, 0x2d, 0xc4, 0x75, + 0x0c, 0x6f, 0x7e, 0xc7, 0x4d, 0xde, 0x62, 0xe5, 0xd2, 0xb7, 0x58, 0x51, 0x12, 0xca, 0x77, 0xf5, + 0xfc, 0x24, 0x09, 0xe5, 0x37, 0x3b, 0xa9, 0x88, 0x5f, 0x58, 0x24, 0xe2, 0xd7, 0x61, 0xd5, 0x21, + 0x34, 0xb6, 0x5b, 0x05, 0x47, 0x24, 0xb2, 0xa1, 0x6a, 0xb8, 0xae, 0x17, 0x1a, 0xe2, 0x6a, 0xb8, + 0xb4, 0xd0, 0x66, 0x38, 0xf5, 0x8f, 0x9b, 0xad, 0x09, 0x92, 0x08, 0xcc, 0x49, 0xec, 0xc6, 0x4f, + 0x40, 0x9d, 0xee, 0xb0, 0xc8, 0x76, 0xf8, 0xfd, 0x1f, 0x4e, 0x76, 0x43, 0xc2, 0xd6, 0x85, 0x7c, + 0x53, 0x51, 0x57, 0x18, 0x81, 0x4f, 0x7a, 0xbd, 0x6e, 0xef, 0xb1, 0xaa, 0x20, 0x80, 0x52, 0xe7, + 0xa7, 0xdd, 0x41, 0x67, 0x4f, 0xcd, 0xed, 0xfe, 0x6a, 0x13, 0x4a, 0x42, 0x48, 0xf4, 0x8d, 0xcc, + 0x04, 0x92, 0x35, 0xb2, 0xe8, 0x27, 0x0b, 0x67, 0xd4, 0xa9, 0xba, 0xdb, 0xc6, 0xc3, 0xa5, 0xc7, + 0xcb, 0x37, 0xc9, 0x15, 0xf4, 0xb7, 0x0a, 0xac, 0xa5, 0xde, 0x23, 0xb3, 0x5e, 0x8d, 0xcf, 0x29, + 0xc9, 0x6d, 0xfc, 0x78, 0xa9, 0xb1, 0xb1, 0x2c, 0xbf, 0x50, 0xa0, 0x9a, 0x28, 0x46, 0x45, 0xf7, + 0x97, 0x29, 0x60, 0x15, 0x92, 0x7c, 0xb6, 0x7c, 0xed, 0xab, 0xb6, 0xf2, 0xb1, 0x82, 0xfe, 0x46, + 0x81, 0x6a, 0xa2, 0x2c, 0x33, 0xb3, 0x28, 0xb3, 0x45, 0xa4, 0x99, 0x45, 0x99, 0x57, 0x05, 0xba, + 0x82, 0xfe, 0x4a, 0x81, 0x4a, 0x5c, 0x62, 0x89, 0xee, 0x2d, 0x5e, 0x94, 0x29, 0x84, 0xf8, 0x74, + 0xd9, 0x6a, 0x4e, 0x6d, 0x05, 0xfd, 0x05, 0x94, 0xa3, 0x7a, 0x44, 0x94, 0x75, 0xf7, 0x9a, 0x2a, + 0x76, 0x6c, 0xdc, 0x5b, 0x78, 0x5c, 0x72, 0xfa, 0xa8, 0x48, 0x30, 0xf3, 0xf4, 0x53, 0xe5, 0x8c, + 0x8d, 0x7b, 0x0b, 0x8f, 0x8b, 0xa7, 0x67, 0x9e, 0x90, 0xa8, 0x25, 0xcc, 0xec, 0x09, 0xb3, 0x45, + 0x8c, 0x99, 0x3d, 0x61, 0x5e, 0xe9, 0xa2, 0x10, 0x24, 0x51, 0x8d, 0x98, 0x59, 0x90, 0xd9, 0x8a, + 0xc7, 0xcc, 0x82, 0xcc, 0x29, 0x7e, 0xd4, 0x56, 0xd0, 0xcf, 0x95, 0xe4, 0xb9, 0xe0, 0xde, 0xc2, + 0x45, 0x77, 0x0b, 0xba, 0xe4, 0x4c, 0xd9, 0x1f, 0x5f, 0xa0, 0x3f, 0x97, 0xb7, 0x18, 0xa2, 0x66, + 0x0f, 0x2d, 0x02, 0x96, 0x2a, 0xf3, 0x6b, 0x7c, 0xb2, 0xdc, 0x66, 0xc3, 0x85, 0xf8, 0x6b, 0x05, + 0x60, 0x52, 0xdd, 0x97, 0x59, 0x88, 0x99, 0xb2, 0xc2, 0xc6, 0xfd, 0x25, 0x46, 0x26, 0x17, 0x48, + 0x54, 0x7d, 0x94, 0x79, 0x81, 0x4c, 0x55, 0x1f, 0x66, 0x5e, 0x20, 0xd3, 0x95, 0x83, 0xda, 0x0a, + 0xfa, 0x67, 0x05, 0x36, 0x67, 0xaa, 0x9f, 0xd0, 0xc3, 0x6b, 0x16, 0xc0, 0x35, 0xbe, 0x58, 0x1e, + 0x20, 0x12, 0x6d, 0x47, 0xf9, 0x58, 0x41, 0x7f, 0xa7, 0xc0, 0x7a, 0xba, 0x2a, 0x24, 0xf3, 0x2e, + 0x35, 0xa7, 0x8e, 0xaa, 0xf1, 0x60, 0xb9, 0xc1, 0xb1, 0xb6, 0xfe, 0x41, 0x81, 0x5a, 0xba, 0x40, + 0x08, 0x3d, 0x58, 0x2c, 0x2c, 0x4c, 0x09, 0xf4, 0xf9, 0x92, 0xa3, 0x23, 0x89, 0xbe, 0x5c, 0xfd, + 0xe3, 0xa2, 0xc8, 0xde, 0x4a, 0xfc, 0xe7, 0x47, 0xff, 0x1f, 0x00, 0x00, 0xff, 0xff, 0x08, 0xce, + 0xb6, 0x69, 0xca, 0x34, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/plugins/drivers/proto/driver.proto b/plugins/drivers/proto/driver.proto index 98e845c3ed9..280933665df 100644 --- a/plugins/drivers/proto/driver.proto +++ b/plugins/drivers/proto/driver.proto @@ -590,6 +590,8 @@ message Mount { // Propagation mode for the mount. Not exactly the same as the unix mount // propagation flags. See callsite usage for details. string propagation_mode = 4; + + string selinux_label = 5; } message Device { diff --git a/plugins/drivers/utils.go b/plugins/drivers/utils.go index 39b1f0843ab..55749382265 100644 --- a/plugins/drivers/utils.go +++ b/plugins/drivers/utils.go @@ -294,6 +294,7 @@ func MountFromProto(mount *proto.Mount) *MountConfig { HostPath: mount.HostPath, Readonly: mount.Readonly, PropagationMode: mount.PropagationMode, + SELinuxLabel: mount.SelinuxLabel, } } @@ -345,6 +346,7 @@ func MountToProto(mount *MountConfig) *proto.Mount { HostPath: mount.HostPath, Readonly: mount.Readonly, PropagationMode: mount.PropagationMode, + SelinuxLabel: mount.SELinuxLabel, } } diff --git a/website/content/docs/job-specification/volume_mount.mdx b/website/content/docs/job-specification/volume_mount.mdx index 545379bd62b..01929d2277e 100644 --- a/website/content/docs/job-specification/volume_mount.mdx +++ b/website/content/docs/job-specification/volume_mount.mdx @@ -64,6 +64,14 @@ updates to remove a volume that it depends on. and cause problems in the host operating system if a task creates a mount but does not clean it up properly before exiting. +- `selinux_label``(string: "")` - Specifies the SELinux label for the mount. + This is only supported on Linux hosts and when supported by the task driver. Refer to the task driver documentation for more information. Possible + values are: + + - `Z` - Specifies that the volume content is private and unshared between + containers. + - `z` - Specifies that the volume content is shared among containers. + For examples of how to use [HCL2] interpolation for fine-grained control of volumes, see [Volume Interpolation].