diff --git a/go.mod b/go.mod index 7f78f76b1da8..aa179387814f 100644 --- a/go.mod +++ b/go.mod @@ -74,7 +74,7 @@ require ( k8s.io/apimachinery v0.29.1 k8s.io/client-go v0.29.1 k8s.io/component-base v0.29.1 - k8s.io/cri-api v0.29.1 + k8s.io/cri-api v0.30.0-alpha.2.0.20240216190946-4e003cc3b0a4 k8s.io/klog/v2 v2.110.1 k8s.io/kubelet v0.29.1 k8s.io/utils v0.0.0-20230726121419-3b25d923346b diff --git a/go.sum b/go.sum index 1a8fe456ebf0..07500c6cbca7 100644 --- a/go.sum +++ b/go.sum @@ -557,8 +557,8 @@ k8s.io/client-go v0.29.1 h1:19B/+2NGEwnFLzt0uB5kNJnfTsbV8w6TgQRz9l7ti7A= k8s.io/client-go v0.29.1/go.mod h1:TDG/psL9hdet0TI9mGyHJSgRkW3H9JZk2dNEUS7bRks= k8s.io/component-base v0.29.1 h1:MUimqJPCRnnHsskTTjKD+IC1EHBbRCVyi37IoFBrkYw= k8s.io/component-base v0.29.1/go.mod h1:fP9GFjxYrLERq1GcWWZAE3bqbNcDKDytn2srWuHTtKc= -k8s.io/cri-api v0.29.1 h1:pQwYDahnAX9K8KtdV8PD1eeNexMJojEj1t/5kAMX61E= -k8s.io/cri-api v0.29.1/go.mod h1:9fQTFm+wi4FLyqrkVUoMJiUB3mE74XrVvHz8uFY/sSw= +k8s.io/cri-api v0.30.0-alpha.2.0.20240216190946-4e003cc3b0a4 h1:MkxF8QPcofA/nw9k03EQcMkCdP2RcyDZeF1Zda9m/3w= +k8s.io/cri-api v0.30.0-alpha.2.0.20240216190946-4e003cc3b0a4/go.mod h1:9fQTFm+wi4FLyqrkVUoMJiUB3mE74XrVvHz8uFY/sSw= k8s.io/klog/v2 v2.110.1 h1:U/Af64HJf7FcwMcXyKm2RPM22WZzyR7OSpYj5tg3cL0= k8s.io/klog/v2 v2.110.1/go.mod h1:YGtd1984u+GgbuZ7e08/yBuAfKLSO0+uR1Fhi6ExXjo= k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00 h1:aVUu9fTY98ivBPKR9Y5w/AuzbMm96cd3YHRTU83I780= diff --git a/internal/cri/opts/spec_linux_opts.go b/internal/cri/opts/spec_linux_opts.go index 806a35d1b64e..3972c73522d1 100644 --- a/internal/cri/opts/spec_linux_opts.go +++ b/internal/cri/opts/spec_linux_opts.go @@ -30,6 +30,7 @@ import ( runtimespec "github.com/opencontainers/runtime-spec/specs-go" "github.com/opencontainers/selinux/go-selinux/label" runtime "k8s.io/cri-api/pkg/apis/runtime/v1" + crierrors "k8s.io/cri-api/pkg/errors" "github.com/containerd/containerd/v2/core/containers" "github.com/containerd/containerd/v2/core/mount" @@ -39,7 +40,7 @@ import ( ) // WithMounts sorts and adds runtime and CRI mounts to the spec -func WithMounts(osi osinterface.OS, config *runtime.ContainerConfig, extra []*runtime.Mount, mountLabel string) oci.SpecOpts { +func WithMounts(osi osinterface.OS, config *runtime.ContainerConfig, extra []*runtime.Mount, mountLabel string, handler *runtime.RuntimeHandler) oci.SpecOpts { return func(ctx context.Context, client oci.Client, _ *containers.Container, s *runtimespec.Spec) (err error) { // mergeMounts merge CRI mounts with extra mounts. If a mount destination // is mounted by both a CRI mount and an extra mount, the CRI mount will @@ -151,8 +152,24 @@ func WithMounts(osi osinterface.OS, config *runtime.ContainerConfig, extra []*ru // NOTE(random-liu): we don't change all mounts to `ro` when root filesystem // is readonly. This is different from docker's behavior, but make more sense. if mount.GetReadonly() { - options = append(options, "ro") + if mount.GetRecursiveReadOnly() { + if handler == nil || !handler.Features.RecursiveReadOnlyMounts { + return fmt.Errorf("%w: runtime handler does not support recursive read-only mounts (hostPath=%q)", + crierrors.ErrRROUnsupported, mount.HostPath) + } + if mount.Propagation != runtime.MountPropagation_PROPAGATION_PRIVATE { + return fmt.Errorf("recursive read-only mount needs private propagation, got %q (hostPath=%q)", + mount.Propagation.String(), mount.HostPath) + } + options = append(options, "rro") + } else { + options = append(options, "ro") + } } else { + if mount.GetRecursiveReadOnly() { + return fmt.Errorf("recursive read-only mount conflicts with RW mount (hostPath=%q)", + mount.HostPath) + } options = append(options, "rw") } diff --git a/internal/cri/server/container_create.go b/internal/cri/server/container_create.go index 6f3893ae3a4c..abc8f618e864 100644 --- a/internal/cri/server/container_create.go +++ b/internal/cri/server/container_create.go @@ -167,6 +167,14 @@ func (c *criService) CreateContainer(ctx context.Context, r *runtime.CreateConta if err != nil { return nil, fmt.Errorf("failed to get sandbox runtime: %w", err) } + var runtimeHandler *runtime.RuntimeHandler + for _, f := range c.runtimeHandlers { + f := f + if f.Name == sandbox.Metadata.RuntimeHandler { + runtimeHandler = f + break + } + } log.G(ctx).Debugf("Use OCI runtime %+v for sandbox %q and container %q", ociRuntime, sandboxID, id) spec, err := c.buildContainerSpec( @@ -182,6 +190,7 @@ func (c *criService) CreateContainer(ctx context.Context, r *runtime.CreateConta &image.ImageSpec.Config, volumeMounts, ociRuntime, + runtimeHandler, ) if err != nil { return nil, fmt.Errorf("failed to generate container %q spec: %w", id, err) @@ -530,6 +539,7 @@ func (c *criService) buildContainerSpec( imageConfig *imagespec.ImageConfig, extraMounts []*runtime.Mount, ociRuntime criconfig.Runtime, + runtimeHandler *runtime.RuntimeHandler, ) (_ *runtimespec.Spec, retErr error) { var ( specOpts []oci.SpecOpts @@ -559,6 +569,7 @@ func (c *criService) buildContainerSpec( imageConfig, append(linuxMounts, extraMounts...), ociRuntime, + runtimeHandler, ) case isWindows: specOpts, err = c.buildWindowsSpec( @@ -573,6 +584,7 @@ func (c *criService) buildContainerSpec( imageConfig, extraMounts, ociRuntime, + runtimeHandler, ) case isDarwin: specOpts, err = c.buildDarwinSpec( @@ -585,6 +597,7 @@ func (c *criService) buildContainerSpec( imageConfig, extraMounts, ociRuntime, + runtimeHandler, ) default: return nil, fmt.Errorf("unsupported spec platform: %s", platform.OS) @@ -609,6 +622,7 @@ func (c *criService) buildLinuxSpec( imageConfig *imagespec.ImageConfig, extraMounts []*runtime.Mount, ociRuntime criconfig.Runtime, + runtimeHandler *runtime.RuntimeHandler, ) (_ []oci.SpecOpts, retErr error) { specOpts := []oci.SpecOpts{ oci.WithoutRunMount, @@ -683,7 +697,7 @@ func (c *criService) buildLinuxSpec( } }() - specOpts = append(specOpts, customopts.WithMounts(c.os, config, extraMounts, mountLabel)) + specOpts = append(specOpts, customopts.WithMounts(c.os, config, extraMounts, mountLabel, runtimeHandler)) if !c.config.DisableProcMount { // Change the default masked/readonly paths to empty slices @@ -841,6 +855,7 @@ func (c *criService) buildWindowsSpec( imageConfig *imagespec.ImageConfig, extraMounts []*runtime.Mount, ociRuntime criconfig.Runtime, + runtimeHandler *runtime.RuntimeHandler, ) (_ []oci.SpecOpts, retErr error) { var specOpts []oci.SpecOpts specOpts = append(specOpts, customopts.WithProcessCommandLineOrArgsForWindows(config, imageConfig)) @@ -935,6 +950,7 @@ func (c *criService) buildDarwinSpec( imageConfig *imagespec.ImageConfig, extraMounts []*runtime.Mount, ociRuntime criconfig.Runtime, + runtimeHandler *runtime.RuntimeHandler, ) (_ []oci.SpecOpts, retErr error) { specOpts := []oci.SpecOpts{ customopts.WithProcessArgs(config, imageConfig), diff --git a/internal/cri/server/container_create_linux_test.go b/internal/cri/server/container_create_linux_test.go index afeee218617e..90bfd5cd216e 100644 --- a/internal/cri/server/container_create_linux_test.go +++ b/internal/cri/server/container_create_linux_test.go @@ -255,7 +255,7 @@ func TestContainerCapabilities(t *testing.T) { c.allCaps = allCaps containerConfig.Linux.SecurityContext.Capabilities = test.capability - spec, err := c.buildContainerSpec(currentPlatform, testID, testSandboxID, testPid, "", testContainerName, testImageName, containerConfig, sandboxConfig, imageConfig, nil, ociRuntime) + spec, err := c.buildContainerSpec(currentPlatform, testID, testSandboxID, testPid, "", testContainerName, testImageName, containerConfig, sandboxConfig, imageConfig, nil, ociRuntime, nil) require.NoError(t, err) if selinux.GetEnabled() { @@ -290,7 +290,7 @@ func TestContainerSpecTty(t *testing.T) { c := newTestCRIService() for _, tty := range []bool{true, false} { containerConfig.Tty = tty - spec, err := c.buildContainerSpec(currentPlatform, testID, testSandboxID, testPid, "", testContainerName, testImageName, containerConfig, sandboxConfig, imageConfig, nil, ociRuntime) + spec, err := c.buildContainerSpec(currentPlatform, testID, testSandboxID, testPid, "", testContainerName, testImageName, containerConfig, sandboxConfig, imageConfig, nil, ociRuntime, nil) require.NoError(t, err) specCheck(t, testID, testSandboxID, testPid, spec) assert.Equal(t, tty, spec.Process.Terminal) @@ -317,7 +317,7 @@ func TestContainerSpecDefaultPath(t *testing.T) { imageConfig.Env = append(imageConfig.Env, pathenv) expected = pathenv } - spec, err := c.buildContainerSpec(currentPlatform, testID, testSandboxID, testPid, "", testContainerName, testImageName, containerConfig, sandboxConfig, imageConfig, nil, ociRuntime) + spec, err := c.buildContainerSpec(currentPlatform, testID, testSandboxID, testPid, "", testContainerName, testImageName, containerConfig, sandboxConfig, imageConfig, nil, ociRuntime, nil) require.NoError(t, err) specCheck(t, testID, testSandboxID, testPid, spec) assert.Contains(t, spec.Process.Env, expected) @@ -334,7 +334,7 @@ func TestContainerSpecReadonlyRootfs(t *testing.T) { c := newTestCRIService() for _, readonly := range []bool{true, false} { containerConfig.Linux.SecurityContext.ReadonlyRootfs = readonly - spec, err := c.buildContainerSpec(currentPlatform, testID, testSandboxID, testPid, "", testContainerName, testImageName, containerConfig, sandboxConfig, imageConfig, nil, ociRuntime) + spec, err := c.buildContainerSpec(currentPlatform, testID, testSandboxID, testPid, "", testContainerName, testImageName, containerConfig, sandboxConfig, imageConfig, nil, ociRuntime, nil) require.NoError(t, err) specCheck(t, testID, testSandboxID, testPid, spec) assert.Equal(t, readonly, spec.Root.Readonly) @@ -368,7 +368,7 @@ func TestContainerSpecWithExtraMounts(t *testing.T) { Readonly: false, }, } - spec, err := c.buildContainerSpec(currentPlatform, testID, testSandboxID, testPid, "", testContainerName, testImageName, containerConfig, sandboxConfig, imageConfig, extraMounts, ociRuntime) + spec, err := c.buildContainerSpec(currentPlatform, testID, testSandboxID, testPid, "", testContainerName, testImageName, containerConfig, sandboxConfig, imageConfig, extraMounts, ociRuntime, nil) require.NoError(t, err) specCheck(t, testID, testSandboxID, testPid, spec) var mounts, sysMounts []runtimespec.Mount @@ -435,7 +435,7 @@ func TestContainerAndSandboxPrivileged(t *testing.T) { sandboxConfig.Linux.SecurityContext = &runtime.LinuxSandboxSecurityContext{ Privileged: test.sandboxPrivileged, } - _, err := c.buildContainerSpec(currentPlatform, testID, testSandboxID, testPid, "", testContainerName, testImageName, containerConfig, sandboxConfig, imageConfig, nil, ociRuntime) + _, err := c.buildContainerSpec(currentPlatform, testID, testSandboxID, testPid, "", testContainerName, testImageName, containerConfig, sandboxConfig, imageConfig, nil, ociRuntime, nil) if test.expectError { assert.Error(t, err) } else { @@ -476,7 +476,7 @@ func TestPrivilegedBindMount(t *testing.T) { containerConfig.Linux.SecurityContext.Privileged = test.privileged sandboxConfig.Linux.SecurityContext.Privileged = test.privileged - spec, err := c.buildContainerSpec(currentPlatform, t.Name(), testSandboxID, testPid, "", testContainerName, testImageName, containerConfig, sandboxConfig, imageConfig, nil, ociRuntime) + spec, err := c.buildContainerSpec(currentPlatform, t.Name(), testSandboxID, testPid, "", testContainerName, testImageName, containerConfig, sandboxConfig, imageConfig, nil, ociRuntime, nil) assert.NoError(t, err) if test.expectedSysFSRO { @@ -597,7 +597,7 @@ func TestMountPropagation(t *testing.T) { var spec runtimespec.Spec spec.Linux = &runtimespec.Linux{} - err := opts.WithMounts(c.os, config, []*runtime.Mount{test.criMount}, "")(context.Background(), nil, nil, &spec) + err := opts.WithMounts(c.os, config, []*runtime.Mount{test.criMount}, "", nil)(context.Background(), nil, nil, &spec) if test.expectErr { require.Error(t, err) } else { @@ -648,7 +648,7 @@ func TestPidNamespace(t *testing.T) { test := test t.Run(test.desc, func(t *testing.T) { containerConfig.Linux.SecurityContext.NamespaceOptions = &runtime.NamespaceOption{Pid: test.pidNS} - spec, err := c.buildContainerSpec(currentPlatform, testID, testSandboxID, testPid, "", testContainerName, testImageName, containerConfig, sandboxConfig, imageConfig, nil, ociRuntime) + spec, err := c.buildContainerSpec(currentPlatform, testID, testSandboxID, testPid, "", testContainerName, testImageName, containerConfig, sandboxConfig, imageConfig, nil, ociRuntime, nil) require.NoError(t, err) assert.Contains(t, spec.Linux.Namespaces, test.expected) }) @@ -823,7 +823,7 @@ func TestUserNamespace(t *testing.T) { sandboxUserns = test.sandboxUserNS } sandboxConfig.Linux.SecurityContext.NamespaceOptions = &runtime.NamespaceOption{UsernsOptions: sandboxUserns} - spec, err := c.buildContainerSpec(currentPlatform, testID, testSandboxID, testPid, "", testContainerName, testImageName, containerConfig, sandboxConfig, imageConfig, nil, ociRuntime) + spec, err := c.buildContainerSpec(currentPlatform, testID, testSandboxID, testPid, "", testContainerName, testImageName, containerConfig, sandboxConfig, imageConfig, nil, ociRuntime, nil) if test.err { require.Error(t, err) @@ -853,7 +853,7 @@ func TestNoDefaultRunMount(t *testing.T) { ociRuntime := config.Runtime{} c := newTestCRIService() - spec, err := c.buildContainerSpec(currentPlatform, testID, testSandboxID, testPid, "", testContainerName, testImageName, containerConfig, sandboxConfig, imageConfig, nil, ociRuntime) + spec, err := c.buildContainerSpec(currentPlatform, testID, testSandboxID, testPid, "", testContainerName, testImageName, containerConfig, sandboxConfig, imageConfig, nil, ociRuntime, nil) assert.NoError(t, err) for _, mount := range spec.Mounts { assert.NotEqual(t, "/run", mount.Destination) @@ -1282,7 +1282,7 @@ func TestMaskedAndReadonlyPaths(t *testing.T) { sandboxConfig.Linux.SecurityContext = &runtime.LinuxSandboxSecurityContext{ Privileged: test.privileged, } - spec, err := c.buildContainerSpec(currentPlatform, testID, testSandboxID, testPid, "", testContainerName, testImageName, containerConfig, sandboxConfig, imageConfig, nil, ociRuntime) + spec, err := c.buildContainerSpec(currentPlatform, testID, testSandboxID, testPid, "", testContainerName, testImageName, containerConfig, sandboxConfig, imageConfig, nil, ociRuntime, nil) require.NoError(t, err) if !test.privileged { // specCheck presumes an unprivileged container specCheck(t, testID, testSandboxID, testPid, spec) @@ -1335,7 +1335,7 @@ func TestHostname(t *testing.T) { sandboxConfig.Linux.SecurityContext = &runtime.LinuxSandboxSecurityContext{ NamespaceOptions: &runtime.NamespaceOption{Network: test.networkNs}, } - spec, err := c.buildContainerSpec(currentPlatform, testID, testSandboxID, testPid, "", testContainerName, testImageName, containerConfig, sandboxConfig, imageConfig, nil, ociRuntime) + spec, err := c.buildContainerSpec(currentPlatform, testID, testSandboxID, testPid, "", testContainerName, testImageName, containerConfig, sandboxConfig, imageConfig, nil, ociRuntime, nil) require.NoError(t, err) specCheck(t, testID, testSandboxID, testPid, spec) assert.Contains(t, spec.Process.Env, test.expectedEnv) @@ -1348,7 +1348,7 @@ func TestDisableCgroup(t *testing.T) { ociRuntime := config.Runtime{} c := newTestCRIService() c.config.DisableCgroup = true - spec, err := c.buildContainerSpec(currentPlatform, "test-id", "sandbox-id", 1234, "", "container-name", testImageName, containerConfig, sandboxConfig, imageConfig, nil, ociRuntime) + spec, err := c.buildContainerSpec(currentPlatform, "test-id", "sandbox-id", 1234, "", "container-name", testImageName, containerConfig, sandboxConfig, imageConfig, nil, ociRuntime, nil) require.NoError(t, err) t.Log("resource limit should not be set") @@ -1503,7 +1503,7 @@ additional-group-for-root:x:22222:root containerConfig.Linux.SecurityContext = test.securityContext imageConfig.User = test.imageConfigUser - spec, err := c.buildContainerSpec(currentPlatform, testID, testSandboxID, testPid, "", testContainerName, testImageName, containerConfig, sandboxConfig, imageConfig, nil, ociRuntime) + spec, err := c.buildContainerSpec(currentPlatform, testID, testSandboxID, testPid, "", testContainerName, testImageName, containerConfig, sandboxConfig, imageConfig, nil, ociRuntime, nil) require.NoError(t, err) spec.Root.Path = tempRootDir // simulating /etc/{passwd, group} @@ -1579,7 +1579,7 @@ func TestNonRootUserAndDevices(t *testing.T) { }, } - spec, err := c.buildContainerSpec(currentPlatform, t.Name(), testSandboxID, testPid, "", testContainerName, testImageName, containerConfig, sandboxConfig, imageConfig, nil, config.Runtime{}) + spec, err := c.buildContainerSpec(currentPlatform, t.Name(), testSandboxID, testPid, "", testContainerName, testImageName, containerConfig, sandboxConfig, imageConfig, nil, config.Runtime{}, nil) assert.NoError(t, err) assert.Equal(t, test.expectedDeviceUID, *spec.Linux.Devices[0].UID) @@ -1653,7 +1653,7 @@ func TestPrivilegedDevices(t *testing.T) { PrivilegedWithoutHostDevices: test.privilegedWithoutHostDevices, PrivilegedWithoutHostDevicesAllDevicesAllowed: test.privilegedWithoutHostDevicesAllDevicesAllowed, } - spec, err := c.buildContainerSpec(currentPlatform, t.Name(), testSandboxID, testPid, "", testContainerName, testImageName, containerConfig, sandboxConfig, imageConfig, nil, ociRuntime) + spec, err := c.buildContainerSpec(currentPlatform, t.Name(), testSandboxID, testPid, "", testContainerName, testImageName, containerConfig, sandboxConfig, imageConfig, nil, ociRuntime, nil) assert.NoError(t, err) hostDevicesRaw, err := oci.HostDevices() @@ -1708,7 +1708,7 @@ func TestBaseOCISpec(t *testing.T) { testPid := uint32(1234) containerConfig, sandboxConfig, imageConfig, specCheck := getCreateContainerTestData() - spec, err := c.buildContainerSpec(currentPlatform, testID, testSandboxID, testPid, "", testContainerName, testImageName, containerConfig, sandboxConfig, imageConfig, nil, ociRuntime) + spec, err := c.buildContainerSpec(currentPlatform, testID, testSandboxID, testPid, "", testContainerName, testImageName, containerConfig, sandboxConfig, imageConfig, nil, ociRuntime, nil) assert.NoError(t, err) specCheck(t, testID, testSandboxID, testPid, spec) @@ -2040,7 +2040,7 @@ containerEdits: }, } { t.Run(test.description, func(t *testing.T) { - spec, err := c.buildContainerSpec(currentPlatform, testID, testSandboxID, testPid, "", testContainerName, testImageName, containerConfig, sandboxConfig, imageConfig, nil, ociRuntime) + spec, err := c.buildContainerSpec(currentPlatform, testID, testSandboxID, testPid, "", testContainerName, testImageName, containerConfig, sandboxConfig, imageConfig, nil, ociRuntime, nil) require.NoError(t, err) specCheck(t, testID, testSandboxID, testPid, spec) diff --git a/internal/cri/server/container_create_test.go b/internal/cri/server/container_create_test.go index 8ae357905fa0..5887f13a089c 100644 --- a/internal/cri/server/container_create_test.go +++ b/internal/cri/server/container_create_test.go @@ -70,7 +70,7 @@ func TestGeneralContainerSpec(t *testing.T) { c := newTestCRIService() testSandboxID := "sandbox-id" testContainerName := "container-name" - spec, err := c.buildContainerSpec(currentPlatform, testID, testSandboxID, testPid, "", testContainerName, testImageName, containerConfig, sandboxConfig, imageConfig, nil, ociRuntime) + spec, err := c.buildContainerSpec(currentPlatform, testID, testSandboxID, testPid, "", testContainerName, testImageName, containerConfig, sandboxConfig, imageConfig, nil, ociRuntime, nil) require.NoError(t, err) specCheck(t, testID, testSandboxID, testPid, spec) } @@ -147,7 +147,7 @@ func TestPodAnnotationPassthroughContainerSpec(t *testing.T) { PodAnnotations: test.podAnnotations, } spec, err := c.buildContainerSpec(currentPlatform, testID, testSandboxID, testPid, "", testContainerName, testImageName, - containerConfig, sandboxConfig, imageConfig, nil, ociRuntime) + containerConfig, sandboxConfig, imageConfig, nil, ociRuntime, nil) assert.NoError(t, err) assert.NotNil(t, spec) specCheck(t, testID, testSandboxID, testPid, spec) @@ -512,7 +512,7 @@ func TestContainerAnnotationPassthroughContainerSpec(t *testing.T) { ContainerAnnotations: test.containerAnnotations, } spec, err := c.buildContainerSpec(currentPlatform, testID, testSandboxID, testPid, "", testContainerName, testImageName, - containerConfig, sandboxConfig, imageConfig, nil, ociRuntime) + containerConfig, sandboxConfig, imageConfig, nil, ociRuntime, nil) assert.NoError(t, err) assert.NotNil(t, spec) specCheck(t, testID, testSandboxID, testPid, spec) diff --git a/internal/cri/server/container_create_windows_test.go b/internal/cri/server/container_create_windows_test.go index 6a33c44eadc8..8ec2fe8c909a 100644 --- a/internal/cri/server/container_create_windows_test.go +++ b/internal/cri/server/container_create_windows_test.go @@ -157,7 +157,7 @@ func TestContainerWindowsNetworkNamespace(t *testing.T) { c := newTestCRIService() containerConfig, sandboxConfig, imageConfig, specCheck := getCreateContainerTestData() - spec, err := c.buildContainerSpec(currentPlatform, testID, testSandboxID, testPid, nsPath, testContainerName, testImageName, containerConfig, sandboxConfig, imageConfig, nil, config.Runtime{}) + spec, err := c.buildContainerSpec(currentPlatform, testID, testSandboxID, testPid, nsPath, testContainerName, testImageName, containerConfig, sandboxConfig, imageConfig, nil, config.Runtime{}, nil) assert.NoError(t, err) assert.NotNil(t, spec) specCheck(t, testID, testSandboxID, testPid, spec) @@ -179,7 +179,7 @@ func TestMountCleanPath(t *testing.T) { ContainerPath: "c:/test/container-path", HostPath: "c:/test/host-path", }) - spec, err := c.buildContainerSpec(currentPlatform, testID, testSandboxID, testPid, nsPath, testContainerName, testImageName, containerConfig, sandboxConfig, imageConfig, nil, config.Runtime{}) + spec, err := c.buildContainerSpec(currentPlatform, testID, testSandboxID, testPid, nsPath, testContainerName, testImageName, containerConfig, sandboxConfig, imageConfig, nil, config.Runtime{}, nil) assert.NoError(t, err) assert.NotNil(t, spec) specCheck(t, testID, testSandboxID, testPid, spec) @@ -199,7 +199,7 @@ func TestMountNamedPipe(t *testing.T) { ContainerPath: `\\.\pipe\foo`, HostPath: `\\.\pipe\foo`, }) - spec, err := c.buildContainerSpec(currentPlatform, testID, testSandboxID, testPid, nsPath, testContainerName, testImageName, containerConfig, sandboxConfig, imageConfig, nil, config.Runtime{}) + spec, err := c.buildContainerSpec(currentPlatform, testID, testSandboxID, testPid, nsPath, testContainerName, testImageName, containerConfig, sandboxConfig, imageConfig, nil, config.Runtime{}, nil) assert.NoError(t, err) assert.NotNil(t, spec) specCheck(t, testID, testSandboxID, testPid, spec) @@ -251,7 +251,7 @@ func TestHostProcessRequirements(t *testing.T) { sandboxConfig.Windows.SecurityContext = &runtime.WindowsSandboxSecurityContext{ HostProcess: test.sandboxHostProcess, } - _, err := c.buildContainerSpec(currentPlatform, testID, testSandboxID, testPid, "", testContainerName, testImageName, containerConfig, sandboxConfig, imageConfig, nil, ociRuntime) + _, err := c.buildContainerSpec(currentPlatform, testID, testSandboxID, testPid, "", testContainerName, testImageName, containerConfig, sandboxConfig, imageConfig, nil, ociRuntime, nil) if test.expectError { assert.Error(t, err) } else { @@ -348,7 +348,7 @@ func TestEntrypointAndCmdForArgsEscaped(t *testing.T) { Args: test.args, Windows: &runtime.WindowsContainerConfig{}, } - runtimeSpec, err := c.buildContainerSpec(currentPlatform, testID, testSandboxID, testPid, nsPath, testContainerName, testImageName, containerConfig, sandboxConfig, imageConfig, nil, config.Runtime{}) + runtimeSpec, err := c.buildContainerSpec(currentPlatform, testID, testSandboxID, testPid, nsPath, testContainerName, testImageName, containerConfig, sandboxConfig, imageConfig, nil, config.Runtime{}, nil) assert.NoError(t, err) assert.NotNil(t, runtimeSpec) diff --git a/internal/cri/server/service.go b/internal/cri/server/service.go index a5ef72017136..8e82d226f00b 100644 --- a/internal/cri/server/service.go +++ b/internal/cri/server/service.go @@ -21,18 +21,25 @@ import ( "fmt" "io" "net/http" + "slices" "sync" "sync/atomic" "time" "github.com/containerd/go-cni" "github.com/containerd/log" + "github.com/containerd/typeurl/v2" + "github.com/opencontainers/runtime-spec/specs-go/features" runtime "k8s.io/cri-api/pkg/apis/runtime/v1" "k8s.io/kubelet/pkg/cri/streaming" + introspectionapi "github.com/containerd/containerd/v2/api/services/introspection/v1" + apitypes "github.com/containerd/containerd/v2/api/types" containerd "github.com/containerd/containerd/v2/client" + _ "github.com/containerd/containerd/v2/core/runtime" // for typeurl init "github.com/containerd/containerd/v2/core/sandbox" + "github.com/containerd/containerd/v2/internal/cri/config" criconfig "github.com/containerd/containerd/v2/internal/cri/config" "github.com/containerd/containerd/v2/internal/cri/nri" "github.com/containerd/containerd/v2/internal/cri/server/podsandbox" @@ -46,8 +53,13 @@ import ( "github.com/containerd/containerd/v2/internal/registrar" "github.com/containerd/containerd/v2/pkg/oci" osinterface "github.com/containerd/containerd/v2/pkg/os" + "github.com/containerd/containerd/v2/plugins" + "github.com/containerd/containerd/v2/plugins/services/introspection" + "github.com/containerd/containerd/v2/protobuf" ) +var kernelSupportsRRO bool + // defaultNetworkPlugin is used for the default CNI configuration const defaultNetworkPlugin = "default" @@ -135,6 +147,8 @@ type criService struct { nri *nri.API // sandboxService is the sandbox related service for CRI sandboxService sandboxService + // runtimeHandlers contains runtime handler info + runtimeHandlers []*runtime.RuntimeHandler } type CRIServiceOptions struct { @@ -157,6 +171,7 @@ type CRIServiceOptions struct { // NewCRIService returns a new instance of CRIService func NewCRIService(options *CRIServiceOptions) (CRIService, runtime.RuntimeServiceServer, error) { + ctx := context.Background() var err error labels := label.NewStore() config := options.RuntimeService.Config() @@ -222,6 +237,11 @@ func NewCRIService(options *CRIServiceOptions) (CRIService, runtime.RuntimeServi c.nri = options.NRI + c.runtimeHandlers, err = c.introspectRuntimeHandlers(ctx) + if err != nil { + return nil, nil, fmt.Errorf("failed to introspect runtime handlers: %w", err) + } + return c, c, nil } @@ -340,3 +360,81 @@ func (c *criService) Close() error { func (c *criService) IsInitialized() bool { return c.initialized.Load() } + +func (c *criService) introspectRuntimeHandlers(ctx context.Context) ([]*runtime.RuntimeHandler, error) { + var res []*runtime.RuntimeHandler + intro := c.client.IntrospectionService() + for name, r := range c.config.Runtimes { + h := runtime.RuntimeHandler{ + Name: name, + } + rawFeatures, err := introspectRuntimeFeatures(ctx, intro, r) + if err != nil { + log.G(ctx).WithError(err).Debugf("failed to introspect features of runtime %q", name) + } else { + h.Features = &runtime.RuntimeHandlerFeatures{} + if slices.Contains(rawFeatures.MountOptions, "rro") { + if kernelSupportsRRO { + log.G(ctx).Debugf("runtime %q supports recursive read-only mounts", name) + h.Features.RecursiveReadOnlyMounts = true + } else { + log.G(ctx).Debugf("runtime %q supports recursive read-only mounts, but the kernel does not", name) + } + } + } + res = append(res, &h) + if name == c.config.DefaultRuntimeName { + defH := h + defH.Name = "" // denotes default + res = append(res, &defH) + } + } + return res, nil +} + +func introspectRuntimeFeatures(ctx context.Context, intro introspection.Service, r config.Runtime) (*features.Features, error) { + if r.Type != plugins.RuntimeRuncV2 { + return nil, fmt.Errorf("introspecting OCI runtime features needs the runtime type to be %q, got %q", + plugins.RuntimeRuncV2, r.Type) + // For other runtimes, protobuf.MarshalAnyToProto will cause nil panic during typeurl dereference + } + infoReq := &introspectionapi.PluginInfoRequest{ + Type: string(plugins.RuntimePluginV2), // "io.containerd.runtime.v2" + ID: "task", + } + rr := &apitypes.RuntimeRequest{ + RuntimePath: r.Type, // "io.containerd.runc.v2" + } + if r.Path != "" { + rr.RuntimePath = r.Path // "/usr/local/bin/crun" + } + options, err := config.GenerateRuntimeOptions(r) + if err != nil { + return nil, err + } + rr.Options, err = protobuf.MarshalAnyToProto(options) + if err != nil { + return nil, fmt.Errorf("failed to marshal %T: %w", options, err) + } + infoReq.Options, err = protobuf.MarshalAnyToProto(rr) + if err != nil { + return nil, fmt.Errorf("failed to marshal %T: %w", rr, err) + } + infoResp, err := intro.PluginInfo(ctx, infoReq) + if err != nil { + return nil, fmt.Errorf("failed to call PluginInfo: %w", err) + } + var info apitypes.RuntimeInfo + if err := typeurl.UnmarshalTo(infoResp.Extra, &info); err != nil { + return nil, fmt.Errorf("failed to get runtime info from plugin info: %w", err) + } + featuresX, err := typeurl.UnmarshalAny(info.Features) + if err != nil { + return nil, fmt.Errorf("failed to unmarshal Features (%T): %w", info.Features, err) + } + features, ok := featuresX.(*features.Features) + if !ok { + return nil, fmt.Errorf("unknown features type %T", featuresX) + } + return features, nil +} diff --git a/internal/cri/server/service_linux.go b/internal/cri/server/service_linux.go index fc5a0639b318..7547a5b525d6 100644 --- a/internal/cri/server/service_linux.go +++ b/internal/cri/server/service_linux.go @@ -23,11 +23,20 @@ import ( "tags.cncf.io/container-device-interface/pkg/cdi" "github.com/containerd/containerd/v2/pkg/cap" + "github.com/containerd/containerd/v2/pkg/kernelversion" "github.com/containerd/containerd/v2/pkg/userns" "github.com/containerd/go-cni" "github.com/containerd/log" ) +func init() { + var err error + kernelSupportsRRO, err = kernelversion.GreaterEqualThan(kernelversion.KernelVersion{Kernel: 5, Major: 12}) + if err != nil { + panic(fmt.Errorf("failed to check kernel version: %w", err)) + } +} + // networkAttachCount is the minimum number of networks the PodSandbox // attaches to const networkAttachCount = 2 diff --git a/internal/cri/server/status.go b/internal/cri/server/status.go index 51eeabb6c692..61e1d2c1ca9e 100644 --- a/internal/cri/server/status.go +++ b/internal/cri/server/status.go @@ -58,6 +58,7 @@ func (c *criService) Status(ctx context.Context, r *runtime.StatusRequest) (*run runtimeCondition, networkCondition, }}, + RuntimeHandlers: c.runtimeHandlers, } if r.Verbose { configByt, err := json.Marshal(c.config) diff --git a/script/test/utils.sh b/script/test/utils.sh index 619d434b9b36..aa7477299383 100755 --- a/script/test/utils.sh +++ b/script/test/utils.sh @@ -348,4 +348,8 @@ readiness_check() { echo "$attempt_num attempt \"$command\"! Trying again in $attempt_num seconds..." sleep $(( attempt_num++ )) done + set -x + cat "${report_dir}/containerd.log" + cat "${config_file}" + set +x } diff --git a/vendor/k8s.io/cri-api/pkg/apis/runtime/v1/api.pb.go b/vendor/k8s.io/cri-api/pkg/apis/runtime/v1/api.pb.go index 36e4eebacdf2..65914046f8f1 100644 --- a/vendor/k8s.io/cri-api/pkg/apis/runtime/v1/api.pb.go +++ b/vendor/k8s.io/cri-api/pkg/apis/runtime/v1/api.pb.go @@ -606,9 +606,18 @@ type Mount struct { // UidMappings specifies the runtime UID mappings for the mount. UidMappings []*IDMapping `protobuf:"bytes,6,rep,name=uidMappings,proto3" json:"uidMappings,omitempty"` // GidMappings specifies the runtime GID mappings for the mount. - GidMappings []*IDMapping `protobuf:"bytes,7,rep,name=gidMappings,proto3" json:"gidMappings,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_sizecache int32 `json:"-"` + GidMappings []*IDMapping `protobuf:"bytes,7,rep,name=gidMappings,proto3" json:"gidMappings,omitempty"` + // If set to true, the mount is made recursive read-only. + // In this CRI API, recursive_read_only is a plain true/false boolean, although its equivalent + // in the Kubernetes core API is a quaternary that can be nil, "Enabled", "IfPossible", or "Disabled". + // kubelet translates that quaternary value in the core API into a boolean in this CRI API. + // Remarks: + // - nil is just treated as false + // - when set to true, readonly must be explicitly set to true, and propagation must be PRIVATE (0). + // - (readonly == false && recursive_read_only == false) does not make the mount read-only. + RecursiveReadOnly bool `protobuf:"varint,8,opt,name=recursive_read_only,json=recursiveReadOnly,proto3" json:"recursive_read_only,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *Mount) Reset() { *m = Mount{} } @@ -692,6 +701,13 @@ func (m *Mount) GetGidMappings() []*IDMapping { return nil } +func (m *Mount) GetRecursiveReadOnly() bool { + if m != nil { + return m.RecursiveReadOnly + } + return false +} + // IDMapping describes host to container ID mappings for a pod sandbox. type IDMapping struct { // HostId is the id on the host. @@ -7698,6 +7714,111 @@ func (m *StatusRequest) GetVerbose() bool { return false } +type RuntimeHandlerFeatures struct { + // recursive_read_only_mounts is set to true if the runtime handler supports + // recursive read-only mounts. + // For runc-compatible runtimes, availability of this feature can be detected by checking whether + // the Linux kernel version is >= 5.12, and, `runc features | jq .mountOptions` contains "rro". + RecursiveReadOnlyMounts bool `protobuf:"varint,1,opt,name=recursive_read_only_mounts,json=recursiveReadOnlyMounts,proto3" json:"recursive_read_only_mounts,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *RuntimeHandlerFeatures) Reset() { *m = RuntimeHandlerFeatures{} } +func (*RuntimeHandlerFeatures) ProtoMessage() {} +func (*RuntimeHandlerFeatures) Descriptor() ([]byte, []int) { + return fileDescriptor_00212fb1f9d3bf1c, []int{110} +} +func (m *RuntimeHandlerFeatures) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *RuntimeHandlerFeatures) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_RuntimeHandlerFeatures.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 *RuntimeHandlerFeatures) XXX_Merge(src proto.Message) { + xxx_messageInfo_RuntimeHandlerFeatures.Merge(m, src) +} +func (m *RuntimeHandlerFeatures) XXX_Size() int { + return m.Size() +} +func (m *RuntimeHandlerFeatures) XXX_DiscardUnknown() { + xxx_messageInfo_RuntimeHandlerFeatures.DiscardUnknown(m) +} + +var xxx_messageInfo_RuntimeHandlerFeatures proto.InternalMessageInfo + +func (m *RuntimeHandlerFeatures) GetRecursiveReadOnlyMounts() bool { + if m != nil { + return m.RecursiveReadOnlyMounts + } + return false +} + +type RuntimeHandler struct { + // Name must be unique in StatusResponse. + // An empty string denotes the default handler. + Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` + // Supported features. + Features *RuntimeHandlerFeatures `protobuf:"bytes,2,opt,name=features,proto3" json:"features,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *RuntimeHandler) Reset() { *m = RuntimeHandler{} } +func (*RuntimeHandler) ProtoMessage() {} +func (*RuntimeHandler) Descriptor() ([]byte, []int) { + return fileDescriptor_00212fb1f9d3bf1c, []int{111} +} +func (m *RuntimeHandler) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *RuntimeHandler) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_RuntimeHandler.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 *RuntimeHandler) XXX_Merge(src proto.Message) { + xxx_messageInfo_RuntimeHandler.Merge(m, src) +} +func (m *RuntimeHandler) XXX_Size() int { + return m.Size() +} +func (m *RuntimeHandler) XXX_DiscardUnknown() { + xxx_messageInfo_RuntimeHandler.DiscardUnknown(m) +} + +var xxx_messageInfo_RuntimeHandler proto.InternalMessageInfo + +func (m *RuntimeHandler) GetName() string { + if m != nil { + return m.Name + } + return "" +} + +func (m *RuntimeHandler) GetFeatures() *RuntimeHandlerFeatures { + if m != nil { + return m.Features + } + return nil +} + type StatusResponse struct { // Status of the Runtime. Status *RuntimeStatus `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"` @@ -7705,7 +7826,9 @@ type StatusResponse struct { // value should be in json format. The information could include anything useful for // debug, e.g. plugins used by the container runtime. // It should only be returned non-empty when Verbose is true. - Info map[string]string `protobuf:"bytes,2,rep,name=info,proto3" json:"info,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + Info map[string]string `protobuf:"bytes,2,rep,name=info,proto3" json:"info,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + // Runtime handlers. + RuntimeHandlers []*RuntimeHandler `protobuf:"bytes,3,rep,name=runtime_handlers,json=runtimeHandlers,proto3" json:"runtime_handlers,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_sizecache int32 `json:"-"` } @@ -7713,7 +7836,7 @@ type StatusResponse struct { func (m *StatusResponse) Reset() { *m = StatusResponse{} } func (*StatusResponse) ProtoMessage() {} func (*StatusResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{110} + return fileDescriptor_00212fb1f9d3bf1c, []int{112} } func (m *StatusResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7756,6 +7879,13 @@ func (m *StatusResponse) GetInfo() map[string]string { return nil } +func (m *StatusResponse) GetRuntimeHandlers() []*RuntimeHandler { + if m != nil { + return m.RuntimeHandlers + } + return nil +} + type ImageFsInfoRequest struct { XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_sizecache int32 `json:"-"` @@ -7764,7 +7894,7 @@ type ImageFsInfoRequest struct { func (m *ImageFsInfoRequest) Reset() { *m = ImageFsInfoRequest{} } func (*ImageFsInfoRequest) ProtoMessage() {} func (*ImageFsInfoRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{111} + return fileDescriptor_00212fb1f9d3bf1c, []int{113} } func (m *ImageFsInfoRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7804,7 +7934,7 @@ type UInt64Value struct { func (m *UInt64Value) Reset() { *m = UInt64Value{} } func (*UInt64Value) ProtoMessage() {} func (*UInt64Value) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{112} + return fileDescriptor_00212fb1f9d3bf1c, []int{114} } func (m *UInt64Value) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7851,7 +7981,7 @@ type FilesystemIdentifier struct { func (m *FilesystemIdentifier) Reset() { *m = FilesystemIdentifier{} } func (*FilesystemIdentifier) ProtoMessage() {} func (*FilesystemIdentifier) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{113} + return fileDescriptor_00212fb1f9d3bf1c, []int{115} } func (m *FilesystemIdentifier) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7908,7 +8038,7 @@ type FilesystemUsage struct { func (m *FilesystemUsage) Reset() { *m = FilesystemUsage{} } func (*FilesystemUsage) ProtoMessage() {} func (*FilesystemUsage) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{114} + return fileDescriptor_00212fb1f9d3bf1c, []int{116} } func (m *FilesystemUsage) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7982,7 +8112,7 @@ type WindowsFilesystemUsage struct { func (m *WindowsFilesystemUsage) Reset() { *m = WindowsFilesystemUsage{} } func (*WindowsFilesystemUsage) ProtoMessage() {} func (*WindowsFilesystemUsage) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{115} + return fileDescriptor_00212fb1f9d3bf1c, []int{117} } func (m *WindowsFilesystemUsage) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8047,7 +8177,7 @@ type ImageFsInfoResponse struct { func (m *ImageFsInfoResponse) Reset() { *m = ImageFsInfoResponse{} } func (*ImageFsInfoResponse) ProtoMessage() {} func (*ImageFsInfoResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{116} + return fileDescriptor_00212fb1f9d3bf1c, []int{118} } func (m *ImageFsInfoResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8100,7 +8230,7 @@ type ContainerStatsRequest struct { func (m *ContainerStatsRequest) Reset() { *m = ContainerStatsRequest{} } func (*ContainerStatsRequest) ProtoMessage() {} func (*ContainerStatsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{117} + return fileDescriptor_00212fb1f9d3bf1c, []int{119} } func (m *ContainerStatsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8146,7 +8276,7 @@ type ContainerStatsResponse struct { func (m *ContainerStatsResponse) Reset() { *m = ContainerStatsResponse{} } func (*ContainerStatsResponse) ProtoMessage() {} func (*ContainerStatsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{118} + return fileDescriptor_00212fb1f9d3bf1c, []int{120} } func (m *ContainerStatsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8192,7 +8322,7 @@ type ListContainerStatsRequest struct { func (m *ListContainerStatsRequest) Reset() { *m = ListContainerStatsRequest{} } func (*ListContainerStatsRequest) ProtoMessage() {} func (*ListContainerStatsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{119} + return fileDescriptor_00212fb1f9d3bf1c, []int{121} } func (m *ListContainerStatsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8246,7 +8376,7 @@ type ContainerStatsFilter struct { func (m *ContainerStatsFilter) Reset() { *m = ContainerStatsFilter{} } func (*ContainerStatsFilter) ProtoMessage() {} func (*ContainerStatsFilter) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{120} + return fileDescriptor_00212fb1f9d3bf1c, []int{122} } func (m *ContainerStatsFilter) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8306,7 +8436,7 @@ type ListContainerStatsResponse struct { func (m *ListContainerStatsResponse) Reset() { *m = ListContainerStatsResponse{} } func (*ListContainerStatsResponse) ProtoMessage() {} func (*ListContainerStatsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{121} + return fileDescriptor_00212fb1f9d3bf1c, []int{123} } func (m *ListContainerStatsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8362,7 +8492,7 @@ type ContainerAttributes struct { func (m *ContainerAttributes) Reset() { *m = ContainerAttributes{} } func (*ContainerAttributes) ProtoMessage() {} func (*ContainerAttributes) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{122} + return fileDescriptor_00212fb1f9d3bf1c, []int{124} } func (m *ContainerAttributes) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8438,7 +8568,7 @@ type ContainerStats struct { func (m *ContainerStats) Reset() { *m = ContainerStats{} } func (*ContainerStats) ProtoMessage() {} func (*ContainerStats) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{123} + return fileDescriptor_00212fb1f9d3bf1c, []int{125} } func (m *ContainerStats) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8519,7 +8649,7 @@ type WindowsContainerStats struct { func (m *WindowsContainerStats) Reset() { *m = WindowsContainerStats{} } func (*WindowsContainerStats) ProtoMessage() {} func (*WindowsContainerStats) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{124} + return fileDescriptor_00212fb1f9d3bf1c, []int{126} } func (m *WindowsContainerStats) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8592,7 +8722,7 @@ type CpuUsage struct { func (m *CpuUsage) Reset() { *m = CpuUsage{} } func (*CpuUsage) ProtoMessage() {} func (*CpuUsage) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{125} + return fileDescriptor_00212fb1f9d3bf1c, []int{127} } func (m *CpuUsage) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8658,7 +8788,7 @@ type WindowsCpuUsage struct { func (m *WindowsCpuUsage) Reset() { *m = WindowsCpuUsage{} } func (*WindowsCpuUsage) ProtoMessage() {} func (*WindowsCpuUsage) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{126} + return fileDescriptor_00212fb1f9d3bf1c, []int{128} } func (m *WindowsCpuUsage) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8731,7 +8861,7 @@ type MemoryUsage struct { func (m *MemoryUsage) Reset() { *m = MemoryUsage{} } func (*MemoryUsage) ProtoMessage() {} func (*MemoryUsage) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{127} + return fileDescriptor_00212fb1f9d3bf1c, []int{129} } func (m *MemoryUsage) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8823,7 +8953,7 @@ type SwapUsage struct { func (m *SwapUsage) Reset() { *m = SwapUsage{} } func (*SwapUsage) ProtoMessage() {} func (*SwapUsage) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{128} + return fileDescriptor_00212fb1f9d3bf1c, []int{130} } func (m *SwapUsage) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8892,7 +9022,7 @@ type WindowsMemoryUsage struct { func (m *WindowsMemoryUsage) Reset() { *m = WindowsMemoryUsage{} } func (*WindowsMemoryUsage) ProtoMessage() {} func (*WindowsMemoryUsage) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{129} + return fileDescriptor_00212fb1f9d3bf1c, []int{131} } func (m *WindowsMemoryUsage) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8966,7 +9096,7 @@ type ReopenContainerLogRequest struct { func (m *ReopenContainerLogRequest) Reset() { *m = ReopenContainerLogRequest{} } func (*ReopenContainerLogRequest) ProtoMessage() {} func (*ReopenContainerLogRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{130} + return fileDescriptor_00212fb1f9d3bf1c, []int{132} } func (m *ReopenContainerLogRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9010,7 +9140,7 @@ type ReopenContainerLogResponse struct { func (m *ReopenContainerLogResponse) Reset() { *m = ReopenContainerLogResponse{} } func (*ReopenContainerLogResponse) ProtoMessage() {} func (*ReopenContainerLogResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{131} + return fileDescriptor_00212fb1f9d3bf1c, []int{133} } func (m *ReopenContainerLogResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9055,7 +9185,7 @@ type CheckpointContainerRequest struct { func (m *CheckpointContainerRequest) Reset() { *m = CheckpointContainerRequest{} } func (*CheckpointContainerRequest) ProtoMessage() {} func (*CheckpointContainerRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{132} + return fileDescriptor_00212fb1f9d3bf1c, []int{134} } func (m *CheckpointContainerRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9113,7 +9243,7 @@ type CheckpointContainerResponse struct { func (m *CheckpointContainerResponse) Reset() { *m = CheckpointContainerResponse{} } func (*CheckpointContainerResponse) ProtoMessage() {} func (*CheckpointContainerResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{133} + return fileDescriptor_00212fb1f9d3bf1c, []int{135} } func (m *CheckpointContainerResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9150,7 +9280,7 @@ type GetEventsRequest struct { func (m *GetEventsRequest) Reset() { *m = GetEventsRequest{} } func (*GetEventsRequest) ProtoMessage() {} func (*GetEventsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{134} + return fileDescriptor_00212fb1f9d3bf1c, []int{136} } func (m *GetEventsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9197,7 +9327,7 @@ type ContainerEventResponse struct { func (m *ContainerEventResponse) Reset() { *m = ContainerEventResponse{} } func (*ContainerEventResponse) ProtoMessage() {} func (*ContainerEventResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{135} + return fileDescriptor_00212fb1f9d3bf1c, []int{137} } func (m *ContainerEventResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9269,7 +9399,7 @@ type ListMetricDescriptorsRequest struct { func (m *ListMetricDescriptorsRequest) Reset() { *m = ListMetricDescriptorsRequest{} } func (*ListMetricDescriptorsRequest) ProtoMessage() {} func (*ListMetricDescriptorsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{136} + return fileDescriptor_00212fb1f9d3bf1c, []int{138} } func (m *ListMetricDescriptorsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9307,7 +9437,7 @@ type ListMetricDescriptorsResponse struct { func (m *ListMetricDescriptorsResponse) Reset() { *m = ListMetricDescriptorsResponse{} } func (*ListMetricDescriptorsResponse) ProtoMessage() {} func (*ListMetricDescriptorsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{137} + return fileDescriptor_00212fb1f9d3bf1c, []int{139} } func (m *ListMetricDescriptorsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9360,7 +9490,7 @@ type MetricDescriptor struct { func (m *MetricDescriptor) Reset() { *m = MetricDescriptor{} } func (*MetricDescriptor) ProtoMessage() {} func (*MetricDescriptor) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{138} + return fileDescriptor_00212fb1f9d3bf1c, []int{140} } func (m *MetricDescriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9418,7 +9548,7 @@ type ListPodSandboxMetricsRequest struct { func (m *ListPodSandboxMetricsRequest) Reset() { *m = ListPodSandboxMetricsRequest{} } func (*ListPodSandboxMetricsRequest) ProtoMessage() {} func (*ListPodSandboxMetricsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{139} + return fileDescriptor_00212fb1f9d3bf1c, []int{141} } func (m *ListPodSandboxMetricsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9456,7 +9586,7 @@ type ListPodSandboxMetricsResponse struct { func (m *ListPodSandboxMetricsResponse) Reset() { *m = ListPodSandboxMetricsResponse{} } func (*ListPodSandboxMetricsResponse) ProtoMessage() {} func (*ListPodSandboxMetricsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{140} + return fileDescriptor_00212fb1f9d3bf1c, []int{142} } func (m *ListPodSandboxMetricsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9503,7 +9633,7 @@ type PodSandboxMetrics struct { func (m *PodSandboxMetrics) Reset() { *m = PodSandboxMetrics{} } func (*PodSandboxMetrics) ProtoMessage() {} func (*PodSandboxMetrics) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{141} + return fileDescriptor_00212fb1f9d3bf1c, []int{143} } func (m *PodSandboxMetrics) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9563,7 +9693,7 @@ type ContainerMetrics struct { func (m *ContainerMetrics) Reset() { *m = ContainerMetrics{} } func (*ContainerMetrics) ProtoMessage() {} func (*ContainerMetrics) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{142} + return fileDescriptor_00212fb1f9d3bf1c, []int{144} } func (m *ContainerMetrics) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9626,7 +9756,7 @@ type Metric struct { func (m *Metric) Reset() { *m = Metric{} } func (*Metric) ProtoMessage() {} func (*Metric) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{143} + return fileDescriptor_00212fb1f9d3bf1c, []int{145} } func (m *Metric) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9698,7 +9828,7 @@ type RuntimeConfigRequest struct { func (m *RuntimeConfigRequest) Reset() { *m = RuntimeConfigRequest{} } func (*RuntimeConfigRequest) ProtoMessage() {} func (*RuntimeConfigRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{144} + return fileDescriptor_00212fb1f9d3bf1c, []int{146} } func (m *RuntimeConfigRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9739,7 +9869,7 @@ type RuntimeConfigResponse struct { func (m *RuntimeConfigResponse) Reset() { *m = RuntimeConfigResponse{} } func (*RuntimeConfigResponse) ProtoMessage() {} func (*RuntimeConfigResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{145} + return fileDescriptor_00212fb1f9d3bf1c, []int{147} } func (m *RuntimeConfigResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9791,7 +9921,7 @@ type LinuxRuntimeConfiguration struct { func (m *LinuxRuntimeConfiguration) Reset() { *m = LinuxRuntimeConfiguration{} } func (*LinuxRuntimeConfiguration) ProtoMessage() {} func (*LinuxRuntimeConfiguration) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{146} + return fileDescriptor_00212fb1f9d3bf1c, []int{148} } func (m *LinuxRuntimeConfiguration) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9971,6 +10101,8 @@ func init() { proto.RegisterType((*RuntimeCondition)(nil), "runtime.v1.RuntimeCondition") proto.RegisterType((*RuntimeStatus)(nil), "runtime.v1.RuntimeStatus") proto.RegisterType((*StatusRequest)(nil), "runtime.v1.StatusRequest") + proto.RegisterType((*RuntimeHandlerFeatures)(nil), "runtime.v1.RuntimeHandlerFeatures") + proto.RegisterType((*RuntimeHandler)(nil), "runtime.v1.RuntimeHandler") proto.RegisterType((*StatusResponse)(nil), "runtime.v1.StatusResponse") proto.RegisterMapType((map[string]string)(nil), "runtime.v1.StatusResponse.InfoEntry") proto.RegisterType((*ImageFsInfoRequest)(nil), "runtime.v1.ImageFsInfoRequest") @@ -10017,434 +10149,441 @@ func init() { func init() { proto.RegisterFile("api.proto", fileDescriptor_00212fb1f9d3bf1c) } var fileDescriptor_00212fb1f9d3bf1c = []byte{ - // 6821 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x7d, 0x4d, 0x6c, 0x1c, 0xc9, - 0x75, 0x30, 0x7b, 0x66, 0x48, 0xce, 0xbc, 0xe1, 0x90, 0xc3, 0x12, 0x45, 0x52, 0xa3, 0xff, 0xde, - 0x3f, 0x49, 0xbb, 0xfa, 0x59, 0xed, 0x9f, 0x24, 0xef, 0x8f, 0x46, 0x24, 0x57, 0x3b, 0x6b, 0x89, - 0x1c, 0xf7, 0x90, 0x6b, 0xef, 0xfa, 0x83, 0xfb, 0x6b, 0x4d, 0x17, 0xc9, 0x5e, 0xcd, 0x74, 0xb7, - 0xbb, 0x7b, 0x24, 0xd1, 0xa7, 0x9c, 0x82, 0xc4, 0x27, 0x03, 0x89, 0x63, 0xc4, 0x08, 0x12, 0xe4, - 0x10, 0x24, 0xb7, 0xfc, 0x00, 0x49, 0x1c, 0xe4, 0x0f, 0x30, 0x12, 0xc3, 0x09, 0x10, 0x20, 0x87, - 0x04, 0xf0, 0x21, 0x40, 0xec, 0x4d, 0x80, 0x00, 0x39, 0xfb, 0x90, 0x53, 0x1c, 0xd4, 0x5f, 0x77, - 0x57, 0xff, 0xcd, 0x90, 0xbb, 0xde, 0x5d, 0x9f, 0x38, 0xfd, 0xea, 0xbd, 0x57, 0xaf, 0x5e, 0xbd, - 0x7a, 0xf5, 0xaa, 0xea, 0x55, 0x11, 0x6a, 0x86, 0x6b, 0x5d, 0x71, 0x3d, 0x27, 0x70, 0x10, 0x78, - 0x23, 0x3b, 0xb0, 0x86, 0xf8, 0xca, 0xa3, 0x17, 0x5b, 0x97, 0xf7, 0xac, 0x60, 0x7f, 0xf4, 0xe0, - 0x4a, 0xdf, 0x19, 0x5e, 0xdd, 0x73, 0xf6, 0x9c, 0xab, 0x14, 0xe5, 0xc1, 0x68, 0x97, 0x7e, 0xd1, - 0x0f, 0xfa, 0x8b, 0x91, 0xaa, 0x97, 0x60, 0xfe, 0x3d, 0xec, 0xf9, 0x96, 0x63, 0x6b, 0xf8, 0xeb, - 0x23, 0xec, 0x07, 0x68, 0x15, 0x66, 0x1f, 0x31, 0xc8, 0xaa, 0x72, 0x4e, 0xb9, 0x50, 0xd3, 0xc4, - 0xa7, 0xfa, 0xfb, 0x0a, 0x2c, 0x84, 0xc8, 0xbe, 0xeb, 0xd8, 0x3e, 0xce, 0xc7, 0x46, 0xe7, 0x61, - 0x8e, 0x8b, 0xa5, 0xdb, 0xc6, 0x10, 0xaf, 0x96, 0x68, 0x71, 0x9d, 0xc3, 0x36, 0x8d, 0x21, 0x46, - 0xcf, 0xc1, 0x82, 0x40, 0x11, 0x4c, 0xca, 0x14, 0x6b, 0x9e, 0x83, 0x79, 0x6d, 0xe8, 0x0a, 0x1c, - 0x13, 0x88, 0x86, 0x6b, 0x85, 0xc8, 0x15, 0x8a, 0xbc, 0xc8, 0x8b, 0xda, 0xae, 0xc5, 0xf1, 0xd5, - 0xaf, 0x42, 0x6d, 0x7d, 0xb3, 0xb7, 0xe6, 0xd8, 0xbb, 0xd6, 0x1e, 0x11, 0xd1, 0xc7, 0x1e, 0xa1, - 0x59, 0x55, 0xce, 0x95, 0x89, 0x88, 0xfc, 0x13, 0xb5, 0xa0, 0xea, 0x63, 0xc3, 0xeb, 0xef, 0x63, - 0x7f, 0xb5, 0x44, 0x8b, 0xc2, 0x6f, 0x42, 0xe5, 0xb8, 0x81, 0xe5, 0xd8, 0xfe, 0x6a, 0x99, 0x51, - 0xf1, 0x4f, 0xf5, 0xb7, 0x14, 0xa8, 0x77, 0x1d, 0x2f, 0xb8, 0x6f, 0xb8, 0xae, 0x65, 0xef, 0xa1, - 0x6b, 0x50, 0xa5, 0xba, 0xec, 0x3b, 0x03, 0xaa, 0x83, 0xf9, 0xeb, 0x4b, 0x57, 0xa2, 0x0e, 0xb9, - 0xd2, 0xe5, 0x65, 0x5a, 0x88, 0x85, 0x9e, 0x81, 0xf9, 0xbe, 0x63, 0x07, 0x86, 0x65, 0x63, 0x4f, - 0x77, 0x1d, 0x2f, 0xa0, 0xca, 0x99, 0xd6, 0x1a, 0x21, 0x94, 0xf0, 0x47, 0x27, 0xa1, 0xb6, 0xef, - 0xf8, 0x01, 0xc3, 0x28, 0x53, 0x8c, 0x2a, 0x01, 0xd0, 0xc2, 0x15, 0x98, 0xa5, 0x85, 0x96, 0xcb, - 0xd5, 0x30, 0x43, 0x3e, 0x3b, 0xae, 0xfa, 0xfd, 0x12, 0x4c, 0xdf, 0x77, 0x46, 0x76, 0x90, 0xa8, - 0xc6, 0x08, 0xf6, 0x79, 0x17, 0xc5, 0xaa, 0x31, 0x82, 0xfd, 0xa8, 0x1a, 0x82, 0xc1, 0x7a, 0x89, - 0x55, 0x43, 0x0a, 0x5b, 0x50, 0xf5, 0xb0, 0x61, 0x3a, 0xf6, 0xe0, 0x80, 0x8a, 0x50, 0xd5, 0xc2, - 0x6f, 0xd2, 0x7d, 0x3e, 0x1e, 0x58, 0xf6, 0xe8, 0x89, 0xee, 0xe1, 0x81, 0xf1, 0x00, 0x0f, 0xa8, - 0x28, 0x55, 0x6d, 0x9e, 0x83, 0x35, 0x06, 0x45, 0x6f, 0x42, 0xdd, 0xf5, 0x1c, 0xd7, 0xd8, 0x33, - 0x88, 0x06, 0x57, 0xa7, 0xa9, 0x92, 0x4e, 0xc5, 0x95, 0x44, 0x05, 0xee, 0x46, 0x38, 0x5a, 0x9c, - 0x00, 0xbd, 0x06, 0xf5, 0x91, 0x65, 0x72, 0x7d, 0xfb, 0xab, 0x33, 0xe7, 0xca, 0x17, 0xea, 0xd7, - 0x8f, 0xc7, 0xe9, 0x3b, 0xeb, 0xbc, 0x54, 0x8b, 0x63, 0x12, 0xc2, 0xbd, 0x18, 0xe1, 0x6c, 0x21, - 0x61, 0x0c, 0x53, 0xd5, 0xa1, 0x16, 0x96, 0x44, 0xaa, 0x36, 0xa9, 0x02, 0x1b, 0x5c, 0xd5, 0x26, - 0x31, 0xf1, 0x48, 0xc1, 0x96, 0x49, 0x95, 0xd7, 0xd0, 0xea, 0x21, 0xac, 0x63, 0xa2, 0x65, 0x98, - 0x19, 0x60, 0x7b, 0x2f, 0xd8, 0xa7, 0xda, 0x6b, 0x68, 0xfc, 0x4b, 0xfd, 0x75, 0x05, 0x1a, 0x3b, - 0x3e, 0xf6, 0xc8, 0x38, 0xf0, 0x5d, 0xa3, 0x8f, 0xd1, 0x65, 0xa8, 0x0c, 0x1d, 0x13, 0x73, 0x13, - 0x3a, 0x11, 0x17, 0x32, 0x44, 0xba, 0xef, 0x98, 0x58, 0xa3, 0x68, 0xe8, 0x22, 0x54, 0x46, 0x96, - 0xc9, 0xec, 0x36, 0xb7, 0x4d, 0x14, 0x85, 0xa0, 0xee, 0x11, 0xd4, 0x72, 0x21, 0x2a, 0x41, 0x51, - 0x7f, 0xa6, 0xc0, 0x42, 0x58, 0xdb, 0x16, 0x35, 0x78, 0xf4, 0x12, 0xcc, 0xda, 0x38, 0x78, 0xec, - 0x78, 0x0f, 0xc7, 0xcb, 0x26, 0x30, 0xd1, 0xf3, 0x50, 0x76, 0xb9, 0x46, 0x0a, 0x09, 0x08, 0x16, - 0x41, 0xb6, 0xdc, 0x3e, 0xd5, 0x50, 0x31, 0xb2, 0xe5, 0xf6, 0x89, 0xb9, 0x06, 0x86, 0xb7, 0x87, - 0x69, 0x7f, 0x30, 0xd3, 0xaf, 0x32, 0x40, 0xc7, 0x44, 0xb7, 0x61, 0x7e, 0xe4, 0x63, 0xcf, 0xf6, - 0x75, 0x31, 0x78, 0x89, 0xb1, 0xd5, 0x65, 0xa6, 0x92, 0xde, 0xb5, 0x06, 0x23, 0xd8, 0xe2, 0xa3, - 0x5b, 0x05, 0xe8, 0xd8, 0xc1, 0xab, 0x2f, 0xbf, 0x67, 0x0c, 0x46, 0x18, 0x2d, 0xc1, 0xf4, 0x23, - 0xf2, 0x83, 0xb6, 0xbc, 0xac, 0xb1, 0x0f, 0xf5, 0xaf, 0x2b, 0x70, 0xf2, 0x1e, 0x31, 0xf0, 0x9e, - 0x61, 0x9b, 0x0f, 0x9c, 0x27, 0x3d, 0xdc, 0x1f, 0x79, 0x56, 0x70, 0xb0, 0xe6, 0xd8, 0x01, 0x7e, - 0x12, 0xa0, 0x77, 0x60, 0xd1, 0x16, 0xfc, 0x43, 0x41, 0x14, 0x2a, 0xc8, 0xc9, 0xcc, 0xd6, 0xb1, - 0xca, 0xb5, 0xa6, 0x2d, 0x03, 0x7c, 0x74, 0x27, 0x1a, 0x62, 0x82, 0x4f, 0x29, 0xdd, 0xa0, 0xde, - 0x06, 0x95, 0x86, 0x73, 0x11, 0xa3, 0x4f, 0xf0, 0x78, 0x15, 0x88, 0xd3, 0xd5, 0x0d, 0x5f, 0x27, - 0x2d, 0xa5, 0x5a, 0xae, 0x5f, 0x5f, 0x96, 0xac, 0x20, 0x6c, 0xb0, 0x56, 0xf3, 0x46, 0x76, 0xdb, - 0x27, 0x1a, 0x42, 0x37, 0xa8, 0x03, 0x27, 0x74, 0x7b, 0x9e, 0x33, 0x72, 0x57, 0xab, 0x85, 0x84, - 0x40, 0x09, 0xef, 0x12, 0x4c, 0xea, 0xd7, 0xb9, 0x93, 0xd0, 0x3d, 0xc7, 0x09, 0x76, 0x7d, 0xe1, - 0x18, 0x04, 0x58, 0xa3, 0x50, 0x74, 0x15, 0x8e, 0xf9, 0x23, 0xd7, 0x1d, 0xe0, 0x21, 0xb6, 0x03, - 0x63, 0xc0, 0x2a, 0x22, 0x7d, 0x56, 0xbe, 0x50, 0xd6, 0x50, 0xbc, 0x88, 0x32, 0xf6, 0xd1, 0x19, - 0x00, 0xd7, 0xb3, 0x1e, 0x59, 0x03, 0xbc, 0x87, 0xcd, 0xd5, 0x19, 0xca, 0x34, 0x06, 0x41, 0xaf, - 0x10, 0x5f, 0xdf, 0xef, 0x3b, 0x43, 0x77, 0xb5, 0x96, 0xd6, 0xb7, 0xe8, 0xa7, 0xae, 0xe7, 0xec, - 0x5a, 0x03, 0xac, 0x09, 0x5c, 0xf4, 0x1a, 0x54, 0x0d, 0xd7, 0x35, 0xbc, 0xa1, 0xe3, 0xad, 0xc2, - 0x78, 0xba, 0x10, 0x19, 0xbd, 0x0c, 0x4b, 0x9c, 0x87, 0xee, 0xb2, 0x42, 0xe6, 0x46, 0x67, 0x89, - 0x5d, 0xde, 0x29, 0xad, 0x2a, 0x1a, 0xe2, 0xe5, 0x9c, 0x96, 0x38, 0x55, 0xf5, 0xef, 0x14, 0x58, - 0x48, 0xf0, 0x44, 0xef, 0xc2, 0x9c, 0xe0, 0x10, 0x1c, 0xb8, 0xc2, 0x0d, 0x3c, 0x57, 0x20, 0xc6, - 0x15, 0xfe, 0x77, 0xfb, 0xc0, 0xc5, 0xd4, 0x5f, 0x8a, 0x0f, 0xf4, 0x14, 0x34, 0x06, 0x4e, 0xdf, - 0x18, 0x50, 0xaf, 0xe5, 0xe1, 0x5d, 0xee, 0xd5, 0xe7, 0x42, 0xa0, 0x86, 0x77, 0xd5, 0xdb, 0x50, - 0x8f, 0x31, 0x40, 0x08, 0xe6, 0x35, 0x56, 0xd5, 0x3a, 0xde, 0x35, 0x46, 0x83, 0xa0, 0x39, 0x85, - 0xe6, 0x01, 0x76, 0xec, 0x3e, 0x99, 0x45, 0x6d, 0x6c, 0x36, 0x15, 0xd4, 0x80, 0xda, 0x3d, 0xc1, - 0xa2, 0x59, 0x52, 0xbf, 0x5b, 0x86, 0xe3, 0xd4, 0xf0, 0xba, 0x8e, 0xc9, 0x47, 0x02, 0x9f, 0x72, - 0x9f, 0x82, 0x46, 0x9f, 0xf6, 0xa5, 0xee, 0x1a, 0x1e, 0xb6, 0x03, 0x3e, 0xf1, 0xcc, 0x31, 0x60, - 0x97, 0xc2, 0x90, 0x06, 0x4d, 0x9f, 0xb7, 0x48, 0xef, 0xb3, 0x91, 0xc3, 0x8d, 0x5b, 0x6a, 0x75, - 0xc1, 0x40, 0xd3, 0x16, 0xfc, 0xd4, 0xc8, 0x9b, 0xf5, 0x0f, 0xfc, 0x7e, 0x30, 0x10, 0xde, 0xee, - 0x4a, 0x8a, 0x55, 0x52, 0xd8, 0x2b, 0x3d, 0x46, 0xb0, 0x61, 0x07, 0xde, 0x81, 0x26, 0xc8, 0xd1, - 0x5b, 0x50, 0x75, 0x1e, 0x61, 0x6f, 0x1f, 0x1b, 0xcc, 0xcb, 0xd4, 0xaf, 0x3f, 0x95, 0x62, 0xb5, - 0x26, 0x1c, 0xbd, 0x86, 0x7d, 0x67, 0xe4, 0xf5, 0xb1, 0xaf, 0x85, 0x44, 0xa8, 0x0d, 0x35, 0x4f, - 0x80, 0xb9, 0x17, 0x9a, 0x88, 0x43, 0x44, 0xd5, 0xba, 0x05, 0x73, 0x71, 0xe1, 0x50, 0x13, 0xca, - 0x0f, 0xf1, 0x01, 0x57, 0x26, 0xf9, 0x19, 0xf9, 0x27, 0xd6, 0xc3, 0xec, 0xe3, 0x56, 0xe9, 0x86, - 0xa2, 0x7a, 0x80, 0xa2, 0x96, 0xde, 0xc7, 0x81, 0x61, 0x1a, 0x81, 0x81, 0x10, 0x54, 0x68, 0x30, - 0xc6, 0x58, 0xd0, 0xdf, 0x84, 0xeb, 0x88, 0xbb, 0xea, 0x9a, 0x46, 0x7e, 0xa2, 0x53, 0x50, 0x0b, - 0x3d, 0x11, 0x8f, 0xc8, 0x22, 0x00, 0x89, 0x8c, 0x8c, 0x20, 0xc0, 0x43, 0x37, 0xa0, 0x8a, 0x69, - 0x68, 0xe2, 0x53, 0xfd, 0xd5, 0x69, 0x68, 0xa6, 0x6c, 0xe1, 0x16, 0x54, 0x87, 0xbc, 0x7a, 0xee, - 0x03, 0xcf, 0x48, 0xe1, 0x51, 0x4a, 0x48, 0x2d, 0xc4, 0x27, 0xd1, 0x07, 0xb1, 0xb5, 0x58, 0xfc, - 0x18, 0x7e, 0x33, 0x23, 0xdf, 0xd3, 0x4d, 0xcb, 0xc3, 0xfd, 0xc0, 0xf1, 0x0e, 0xb8, 0xa0, 0x73, - 0x03, 0x67, 0x6f, 0x5d, 0xc0, 0xd0, 0xcb, 0x00, 0xa6, 0xed, 0xeb, 0xd4, 0x86, 0xf7, 0x78, 0x3f, - 0x4a, 0x13, 0x60, 0x18, 0x26, 0x6a, 0x35, 0xd3, 0xf6, 0xb9, 0xc8, 0xaf, 0x43, 0x83, 0xc4, 0x5c, - 0xfa, 0x50, 0x04, 0x0e, 0xd3, 0xd4, 0x96, 0x56, 0x64, 0xb9, 0xc3, 0x08, 0x50, 0x9b, 0x73, 0xa3, - 0x0f, 0x1f, 0xdd, 0x86, 0x19, 0x1a, 0xf6, 0x88, 0x40, 0xe5, 0x42, 0x76, 0x73, 0xb9, 0xf5, 0xdd, - 0xa3, 0xa8, 0xcc, 0xf8, 0x38, 0x1d, 0xda, 0x82, 0xba, 0x61, 0xdb, 0x4e, 0x60, 0x30, 0x8f, 0xcf, - 0xc2, 0x96, 0xcb, 0x85, 0x6c, 0xda, 0x11, 0x3e, 0xe3, 0x15, 0xe7, 0x80, 0x5e, 0x83, 0x69, 0x3a, - 0x25, 0x70, 0x1f, 0x7e, 0x7e, 0xec, 0xa0, 0xd0, 0x18, 0x3e, 0x7a, 0x03, 0x66, 0x1f, 0x5b, 0xb6, - 0xe9, 0x3c, 0xf6, 0xb9, 0x3f, 0x95, 0x4c, 0xf8, 0xcb, 0xac, 0x28, 0x45, 0x2c, 0x68, 0x5a, 0x37, - 0xa1, 0x1e, 0x6b, 0xdf, 0x61, 0xec, 0xb7, 0xf5, 0x26, 0x34, 0x93, 0x6d, 0x3a, 0x94, 0xfd, 0x8f, - 0x60, 0x49, 0x1b, 0xd9, 0x91, 0x68, 0x62, 0x79, 0xf3, 0x32, 0xcc, 0x70, 0x6b, 0x60, 0xc6, 0x78, - 0xaa, 0x48, 0xad, 0x1a, 0xc7, 0x8d, 0xaf, 0x54, 0xf6, 0x0d, 0xdb, 0x1c, 0x60, 0x8f, 0xd7, 0x28, - 0x56, 0x2a, 0xef, 0x30, 0xa8, 0xfa, 0x06, 0x1c, 0x4f, 0x54, 0xcb, 0x17, 0x4a, 0x4f, 0xc3, 0xbc, - 0xeb, 0x98, 0xba, 0xcf, 0xc0, 0x22, 0x96, 0xac, 0x11, 0xdb, 0x11, 0xb8, 0x1d, 0x93, 0x90, 0xf7, - 0x02, 0xc7, 0x4d, 0x8b, 0x3d, 0x19, 0xf9, 0x2a, 0x2c, 0x27, 0xc9, 0x59, 0xf5, 0xea, 0x5b, 0xb0, - 0xa2, 0xe1, 0xa1, 0xf3, 0x08, 0x1f, 0x95, 0x75, 0x0b, 0x56, 0xd3, 0x0c, 0x38, 0xf3, 0xf7, 0x61, - 0x25, 0x82, 0xf6, 0x02, 0x23, 0x18, 0xf9, 0x87, 0x62, 0xce, 0x57, 0x91, 0x0f, 0x1c, 0x9f, 0x75, - 0x64, 0x55, 0x13, 0x9f, 0xea, 0x0a, 0x4c, 0x77, 0x1d, 0xb3, 0xd3, 0x45, 0xf3, 0x50, 0xb2, 0x5c, - 0x4e, 0x5c, 0xb2, 0x5c, 0xb5, 0x1f, 0xaf, 0x73, 0x93, 0x45, 0x9d, 0xac, 0xea, 0x24, 0x2a, 0xba, - 0x01, 0xf3, 0x86, 0x69, 0x5a, 0xc4, 0x90, 0x8c, 0x81, 0x6e, 0xb9, 0x22, 0x68, 0x5e, 0x4c, 0x74, - 0x7d, 0xa7, 0xab, 0x35, 0x22, 0xc4, 0x8e, 0xeb, 0xab, 0x77, 0xa0, 0x16, 0x05, 0xe8, 0xaf, 0x44, - 0x2b, 0xc2, 0xd2, 0xf8, 0x58, 0x2e, 0x5c, 0x2e, 0x6e, 0xa6, 0x26, 0x49, 0x2e, 0xe6, 0x2b, 0x00, - 0xa1, 0x53, 0x15, 0xe1, 0xe1, 0xf1, 0x4c, 0x96, 0x5a, 0x0c, 0x51, 0xfd, 0xf7, 0x4a, 0xdc, 0xc9, - 0xc6, 0x9a, 0x6c, 0x86, 0x4d, 0x36, 0x25, 0xa7, 0x5b, 0x3a, 0xa4, 0xd3, 0x7d, 0x11, 0xa6, 0xfd, - 0xc0, 0x08, 0x30, 0x8f, 0xc7, 0x4f, 0x66, 0x13, 0x92, 0x8a, 0xb1, 0xc6, 0x30, 0xd1, 0x69, 0x80, - 0xbe, 0x87, 0x8d, 0x00, 0x9b, 0xba, 0xc1, 0x66, 0x85, 0xb2, 0x56, 0xe3, 0x90, 0x76, 0x40, 0xbc, - 0x88, 0x58, 0x41, 0x64, 0x4c, 0x84, 0x39, 0xdd, 0x18, 0xad, 0x25, 0x42, 0xef, 0x35, 0x33, 0xd6, - 0x7b, 0x71, 0x52, 0xee, 0xbd, 0x22, 0x4f, 0x3c, 0x5b, 0xe4, 0x89, 0x19, 0xd1, 0x24, 0x9e, 0xb8, - 0x5a, 0xe4, 0x89, 0x39, 0x9b, 0x62, 0x4f, 0x9c, 0xe1, 0x48, 0x6a, 0x59, 0x8e, 0xe4, 0xb3, 0x74, - 0x9d, 0x7f, 0x51, 0x82, 0xd5, 0xf4, 0x78, 0xe6, 0x7e, 0xec, 0x65, 0x98, 0xf1, 0x29, 0xa4, 0xd8, - 0x7f, 0x72, 0x2a, 0x8e, 0x8b, 0xee, 0x40, 0xc5, 0xb2, 0x77, 0x1d, 0x3e, 0xf0, 0xae, 0x14, 0xd2, - 0xf0, 0x9a, 0xae, 0x74, 0xec, 0x5d, 0x87, 0x69, 0x90, 0xd2, 0xa2, 0x7b, 0x70, 0x2c, 0x5c, 0x59, - 0xfb, 0x3a, 0x63, 0x8c, 0x45, 0x9c, 0x27, 0x59, 0x69, 0x18, 0x55, 0x71, 0x8e, 0x28, 0xa2, 0xeb, - 0x71, 0x32, 0x12, 0xe3, 0x10, 0x74, 0x3f, 0x30, 0x86, 0xae, 0xb0, 0xd8, 0x10, 0xd0, 0x7a, 0x0d, - 0x6a, 0x61, 0xf5, 0x87, 0xd2, 0x5d, 0x07, 0x96, 0x12, 0x63, 0x84, 0x2d, 0x24, 0xc3, 0x41, 0xa5, - 0x4c, 0x3a, 0xa8, 0xd4, 0x9f, 0x2a, 0xf1, 0x81, 0xfe, 0xb6, 0x35, 0x08, 0xb0, 0x97, 0x1a, 0xe8, - 0xaf, 0x0a, 0xbe, 0x6c, 0x94, 0x9f, 0x2b, 0xe0, 0xcb, 0xd6, 0x69, 0x7c, 0xc4, 0xbe, 0x07, 0xf3, - 0xd4, 0xc4, 0x75, 0x1f, 0x0f, 0x68, 0xac, 0xc4, 0xf5, 0x78, 0x35, 0x9b, 0x01, 0xab, 0x9d, 0x0d, - 0x91, 0x1e, 0xa7, 0x60, 0x7d, 0xd3, 0x18, 0xc4, 0x61, 0xad, 0xdb, 0x80, 0xd2, 0x48, 0x87, 0xd2, - 0xe0, 0x7d, 0xe2, 0x2f, 0xfd, 0x20, 0x73, 0xe6, 0xde, 0xa5, 0x62, 0x14, 0x5b, 0x1e, 0x13, 0x55, - 0xe3, 0xb8, 0xea, 0xbf, 0x96, 0x01, 0xa2, 0xc2, 0xcf, 0xb9, 0xa3, 0xbc, 0x15, 0x3a, 0x2c, 0x16, - 0x71, 0xaa, 0xd9, 0x2c, 0x33, 0x5d, 0x55, 0x47, 0x76, 0x55, 0x2c, 0xf6, 0x7c, 0x2e, 0x87, 0xc1, - 0xa1, 0x9d, 0xd4, 0xec, 0xe7, 0xcd, 0x49, 0xbd, 0x0d, 0xcb, 0x49, 0x33, 0xe1, 0x1e, 0xea, 0x05, - 0x98, 0xb6, 0x02, 0x3c, 0x64, 0xbb, 0xbd, 0x89, 0x0d, 0x8b, 0x18, 0x3a, 0x43, 0x52, 0xdf, 0x84, - 0x65, 0xb9, 0xaf, 0x0e, 0x17, 0xba, 0xa8, 0xf7, 0x92, 0xb1, 0x4f, 0xe4, 0x2a, 0xb9, 0x7d, 0x64, - 0x6e, 0xfd, 0x24, 0x69, 0x18, 0xa6, 0xfa, 0x03, 0x05, 0x8e, 0x27, 0x8a, 0x72, 0x06, 0xfe, 0x57, - 0x53, 0x03, 0x98, 0xf9, 0xd6, 0x97, 0x0b, 0x6a, 0xf9, 0x14, 0x47, 0xf1, 0x97, 0xa1, 0x25, 0x77, - 0x8f, 0xa4, 0xda, 0x9b, 0x89, 0xa1, 0x7c, 0x7e, 0xac, 0xd0, 0xe1, 0x78, 0xee, 0xc2, 0xc9, 0x4c, - 0xc6, 0x69, 0x9d, 0x97, 0x27, 0xd4, 0xf9, 0xff, 0x94, 0xe2, 0x3e, 0xbb, 0x1d, 0x04, 0x9e, 0xf5, - 0x60, 0x14, 0xe0, 0x4f, 0x36, 0xa8, 0x5a, 0x0f, 0x47, 0x36, 0xf3, 0xb3, 0x2f, 0x64, 0x53, 0x46, - 0xb5, 0x67, 0x8e, 0xf1, 0x9e, 0x3c, 0xc6, 0x2b, 0x94, 0xd5, 0x8b, 0x63, 0x59, 0x15, 0x8e, 0xf6, - 0xcf, 0x72, 0x10, 0xff, 0x83, 0x02, 0x0b, 0x89, 0x5e, 0x41, 0xb7, 0x01, 0x8c, 0x50, 0x74, 0x6e, - 0x1f, 0xe7, 0xc6, 0x35, 0x51, 0x8b, 0xd1, 0x90, 0x39, 0x91, 0xc5, 0x8b, 0x19, 0x73, 0x62, 0x46, - 0xbc, 0x18, 0x86, 0x8b, 0xaf, 0x47, 0x8b, 0x5d, 0xb6, 0x49, 0xaa, 0x16, 0x2e, 0x76, 0x19, 0xad, - 0x20, 0x51, 0x7f, 0xad, 0x04, 0x4b, 0x59, 0xdc, 0xd1, 0xb3, 0x50, 0xee, 0xbb, 0x23, 0xde, 0x12, - 0xe9, 0x68, 0x68, 0xcd, 0x1d, 0xed, 0xf8, 0xc6, 0x1e, 0xd6, 0x08, 0x02, 0xba, 0x0a, 0x33, 0x43, - 0x3c, 0x74, 0xbc, 0x03, 0x2e, 0xb7, 0xb4, 0xdd, 0x70, 0x9f, 0x96, 0x30, 0x6c, 0x8e, 0x86, 0xae, - 0x47, 0x61, 0x35, 0x93, 0x77, 0x55, 0x5a, 0x3d, 0xb0, 0x22, 0x46, 0x12, 0xc6, 0xd2, 0xd7, 0x61, - 0xd6, 0xf5, 0x9c, 0x3e, 0xf6, 0x7d, 0xbe, 0x1b, 0xb2, 0x9a, 0x38, 0xab, 0x22, 0x45, 0x9c, 0x86, - 0x23, 0xa2, 0x5b, 0x00, 0x51, 0x00, 0xc5, 0x67, 0xa6, 0x56, 0x6e, 0xbc, 0xe5, 0x6b, 0x31, 0x6c, - 0xf5, 0x7b, 0x25, 0x58, 0xce, 0xd6, 0x1c, 0xba, 0x1c, 0xd7, 0xcb, 0xc9, 0x0c, 0x55, 0xcb, 0xea, - 0x79, 0x35, 0xa1, 0x9e, 0x33, 0x19, 0x14, 0x59, 0x5a, 0xba, 0x99, 0xd4, 0xd2, 0xd9, 0x0c, 0xc2, - 0x6c, 0x65, 0xdd, 0x4c, 0x2a, 0x2b, 0x8b, 0x34, 0x5b, 0x67, 0xed, 0x0c, 0x9d, 0x9d, 0xcf, 0x6a, - 0x63, 0xbe, 0xea, 0xfe, 0x56, 0x81, 0xb9, 0xb8, 0x5c, 0x72, 0xc8, 0xaa, 0x24, 0x42, 0x56, 0xb4, - 0x09, 0x8b, 0x26, 0xdb, 0xb9, 0xd5, 0x2d, 0x3b, 0xc0, 0xde, 0xae, 0xd1, 0x17, 0x51, 0xe1, 0xf9, - 0x0c, 0xbb, 0xe8, 0x08, 0x1c, 0x26, 0x78, 0x93, 0xd3, 0x86, 0x60, 0xd2, 0x82, 0x90, 0x8f, 0xf0, - 0x5a, 0x13, 0x30, 0x8a, 0x11, 0xa9, 0xff, 0xa2, 0xc0, 0xb1, 0x0c, 0x05, 0x8f, 0x69, 0xc8, 0x4e, - 0x7e, 0x43, 0x2e, 0xe4, 0x77, 0xdd, 0xd8, 0xf6, 0xbc, 0x93, 0xd1, 0x9e, 0xc9, 0xf9, 0xc5, 0x9b, - 0xf5, 0x33, 0x05, 0x8e, 0x67, 0x62, 0x65, 0x6e, 0xaf, 0x5e, 0x87, 0xaa, 0xf7, 0x44, 0x7f, 0x70, - 0x10, 0x60, 0x3f, 0x6b, 0x60, 0xef, 0xc4, 0xce, 0x50, 0x66, 0xbd, 0x27, 0x77, 0x08, 0x1e, 0x7a, - 0x19, 0x6a, 0xde, 0x13, 0x1d, 0x7b, 0x9e, 0xe3, 0x09, 0x5f, 0x94, 0x4b, 0x54, 0xf5, 0x9e, 0x6c, - 0x50, 0x44, 0x52, 0x53, 0x20, 0x6a, 0xaa, 0x8c, 0xa9, 0x29, 0x88, 0x6a, 0x0a, 0xc2, 0x9a, 0xa6, - 0xc7, 0xd4, 0x14, 0xf0, 0x9a, 0xd4, 0x3f, 0x28, 0xc1, 0xa9, 0x22, 0x75, 0x7d, 0x62, 0x8a, 0xd8, - 0x00, 0xe4, 0x3d, 0xd1, 0x5d, 0xa3, 0xff, 0x10, 0x07, 0xbe, 0x6e, 0x7a, 0x8e, 0xeb, 0x62, 0x73, - 0x9c, 0x46, 0x9a, 0xde, 0x93, 0x2e, 0xa3, 0x58, 0x67, 0x04, 0x47, 0xd2, 0xcc, 0x06, 0xa0, 0x20, - 0x5d, 0xf5, 0x18, 0x15, 0x35, 0x83, 0x44, 0xd5, 0xea, 0x87, 0x30, 0x17, 0xf7, 0x10, 0x63, 0x6c, - 0xff, 0x75, 0x68, 0x70, 0x0f, 0xa2, 0xf7, 0x9d, 0x91, 0x1d, 0x8c, 0x53, 0xd4, 0x1c, 0xc7, 0x5e, - 0x23, 0xc8, 0xea, 0xd7, 0xc3, 0xe1, 0xf6, 0xa9, 0x55, 0xf9, 0xcb, 0x25, 0xa8, 0x75, 0x86, 0xc6, - 0x1e, 0xee, 0xb9, 0xb8, 0x4f, 0x66, 0x7a, 0x8b, 0x7c, 0xf0, 0x7e, 0x67, 0x1f, 0xe8, 0x1d, 0x39, - 0x6a, 0x61, 0x71, 0xea, 0xb3, 0xd2, 0x39, 0xa2, 0xe0, 0x30, 0x66, 0x61, 0x72, 0x0d, 0x96, 0x46, - 0x3e, 0xf6, 0x74, 0xdf, 0xc5, 0x7d, 0x6b, 0xd7, 0xc2, 0xa6, 0xce, 0xaa, 0x43, 0xb4, 0x3a, 0x44, - 0xca, 0x7a, 0xa2, 0x88, 0xf2, 0xcc, 0x5a, 0xca, 0x1c, 0xcb, 0x5c, 0xca, 0x7c, 0xdc, 0x50, 0xe6, - 0x3a, 0x54, 0xbf, 0x88, 0x0f, 0xd8, 0x62, 0x7f, 0x42, 0x3a, 0xf5, 0xdb, 0x15, 0x58, 0xc9, 0x39, - 0x06, 0xa2, 0x2b, 0x45, 0x77, 0xa4, 0xbb, 0xd8, 0xb3, 0x1c, 0x53, 0xf4, 0x5a, 0xdf, 0x1d, 0x75, - 0x29, 0x00, 0x9d, 0x04, 0xf2, 0xa1, 0x7f, 0x7d, 0xe4, 0xf0, 0x60, 0xb4, 0xac, 0x55, 0xfb, 0xee, - 0xe8, 0x4b, 0xe4, 0x5b, 0xd0, 0xfa, 0xfb, 0x86, 0x87, 0x99, 0xff, 0x60, 0xb4, 0x3d, 0x0a, 0x40, - 0x2f, 0xc2, 0x71, 0x36, 0x37, 0xea, 0x03, 0x6b, 0x68, 0x11, 0x2f, 0x1b, 0x1b, 0x1a, 0x65, 0x0d, - 0xb1, 0xc2, 0x7b, 0xa4, 0xac, 0x63, 0xb3, 0xc1, 0xa0, 0x42, 0xc3, 0x71, 0x86, 0xba, 0xdf, 0x77, - 0x3c, 0xac, 0x1b, 0xe6, 0x87, 0x74, 0x1c, 0x94, 0xb5, 0xba, 0xe3, 0x0c, 0x7b, 0x04, 0xd6, 0x36, - 0x3f, 0x44, 0x67, 0xa1, 0xde, 0x77, 0x47, 0x3e, 0x0e, 0x74, 0xf2, 0x87, 0x6e, 0xd6, 0xd5, 0x34, - 0x60, 0xa0, 0x35, 0x77, 0xe4, 0xc7, 0x10, 0x86, 0x64, 0x79, 0x36, 0x1b, 0x47, 0xb8, 0x8f, 0x87, - 0xf4, 0xb4, 0x7b, 0x7f, 0xb4, 0x87, 0x5d, 0x63, 0x0f, 0x33, 0xd1, 0xc4, 0x8e, 0x9b, 0x74, 0xda, - 0xfd, 0x0e, 0x47, 0xa1, 0x02, 0x6a, 0xf3, 0xfb, 0xf1, 0x4f, 0x1f, 0xbd, 0x0b, 0xb3, 0x23, 0x9b, - 0x1a, 0xc0, 0x6a, 0x8d, 0xd2, 0x5e, 0x9b, 0xe0, 0xd0, 0xed, 0xca, 0x0e, 0x23, 0xe1, 0x67, 0x80, - 0x9c, 0x01, 0xba, 0x05, 0x2d, 0xae, 0x28, 0xff, 0xb1, 0xe1, 0x26, 0xb5, 0x05, 0x54, 0x05, 0xcb, - 0x0c, 0xa3, 0xf7, 0xd8, 0x70, 0xe3, 0x1a, 0x6b, 0xdd, 0x82, 0xb9, 0x38, 0xd3, 0x43, 0xd9, 0xd2, - 0x1d, 0x68, 0x48, 0x8d, 0x24, 0xbd, 0x4d, 0x95, 0xe2, 0x5b, 0xdf, 0x10, 0x63, 0xab, 0x4a, 0x00, - 0x3d, 0xeb, 0x1b, 0x34, 0x47, 0x81, 0x4a, 0x46, 0xf9, 0x54, 0x34, 0xf6, 0xa1, 0x1a, 0xd0, 0x90, - 0xd2, 0x02, 0x88, 0x4b, 0xa6, 0xe7, 0xff, 0xdc, 0x25, 0x93, 0xdf, 0x04, 0xe6, 0x39, 0x03, 0x21, - 0x01, 0xfd, 0x4d, 0x60, 0xf4, 0x00, 0x9a, 0x1d, 0xa7, 0xd1, 0xdf, 0xb4, 0x0a, 0xfc, 0x88, 0xe7, - 0xf7, 0xd4, 0x34, 0xf6, 0xa1, 0xfe, 0xb6, 0x02, 0xb0, 0x66, 0xb8, 0xc6, 0x03, 0x6b, 0x60, 0x05, - 0x07, 0xe8, 0x22, 0x34, 0x0d, 0xd3, 0xd4, 0xfb, 0x02, 0x62, 0x61, 0x91, 0x70, 0xb5, 0x60, 0x98, - 0xe6, 0x5a, 0x0c, 0x8c, 0x9e, 0x87, 0x45, 0xe2, 0x50, 0x65, 0x5c, 0x96, 0x81, 0xd5, 0x24, 0x05, - 0x12, 0xf2, 0x0d, 0x58, 0x25, 0x7c, 0x8d, 0xe1, 0x03, 0x0b, 0xdb, 0x81, 0x4c, 0xc3, 0x52, 0xb3, - 0x96, 0x0d, 0xd3, 0x6c, 0xb3, 0xe2, 0x38, 0xa5, 0xfa, 0x37, 0x33, 0x70, 0x5a, 0xee, 0xf1, 0x64, - 0xa6, 0xc6, 0x2d, 0x98, 0x4b, 0xc8, 0x9b, 0xca, 0x71, 0x88, 0x5a, 0xa8, 0x49, 0xb8, 0x89, 0x5c, - 0x84, 0x52, 0x2a, 0x17, 0x21, 0x33, 0x0b, 0xa4, 0xfc, 0x09, 0x65, 0x81, 0x54, 0x3e, 0x66, 0x16, - 0xc8, 0xf4, 0x51, 0xb3, 0x40, 0xe6, 0x26, 0xce, 0x02, 0x79, 0x96, 0xba, 0x5e, 0x51, 0x23, 0x0d, - 0x07, 0x98, 0x4f, 0x68, 0x84, 0xdc, 0x6d, 0x91, 0x05, 0x98, 0xc8, 0x16, 0x99, 0x3d, 0x4c, 0xb6, - 0x48, 0x35, 0x37, 0x5b, 0xe4, 0x1c, 0xcc, 0xd9, 0x8e, 0x6e, 0xe3, 0xc7, 0x3a, 0xe9, 0x16, 0x7f, - 0xb5, 0xce, 0xfa, 0xc8, 0x76, 0x36, 0xf1, 0xe3, 0x2e, 0x81, 0xa0, 0xf3, 0x30, 0x37, 0x34, 0xfc, - 0x87, 0xd8, 0xa4, 0x69, 0x1b, 0xfe, 0x6a, 0x83, 0xda, 0x53, 0x9d, 0xc1, 0xba, 0x04, 0x84, 0x9e, - 0x81, 0x50, 0x0e, 0x8e, 0x34, 0x4f, 0x91, 0x1a, 0x02, 0xca, 0xd0, 0x62, 0x99, 0x27, 0x0b, 0x47, - 0xcc, 0x3c, 0x69, 0x1e, 0x26, 0xf3, 0xe4, 0x32, 0x34, 0xc5, 0x6f, 0x91, 0x7a, 0xc2, 0x4e, 0x12, - 0x68, 0xd6, 0xc9, 0x82, 0x28, 0x13, 0xe9, 0x25, 0x79, 0x89, 0x2a, 0x50, 0x98, 0xa8, 0xf2, 0x87, - 0x0a, 0x5f, 0xd3, 0x86, 0x03, 0x88, 0x9f, 0x90, 0x4b, 0xc9, 0x0d, 0xca, 0x51, 0x92, 0x1b, 0xd0, - 0x76, 0x6e, 0xfa, 0xc7, 0xc5, 0x7c, 0x4e, 0xe3, 0x12, 0x40, 0xd4, 0xfb, 0xe1, 0x72, 0xf3, 0x93, - 0x48, 0x63, 0x53, 0xff, 0x53, 0x81, 0xd3, 0x9c, 0x5f, 0x4e, 0xae, 0x57, 0x86, 0x95, 0x2b, 0x39, - 0x56, 0xde, 0xf7, 0xb0, 0x89, 0xed, 0xc0, 0x32, 0x06, 0x34, 0x80, 0x11, 0x27, 0xc8, 0x11, 0x98, - 0xc6, 0x50, 0xe7, 0x61, 0x8e, 0xa5, 0x63, 0xf2, 0x95, 0x27, 0xcb, 0xba, 0xac, 0xd3, 0x8c, 0x4c, - 0xbe, 0xb8, 0xdc, 0xca, 0xf2, 0x2c, 0x95, 0xdc, 0x2d, 0x8b, 0xb1, 0x0e, 0x46, 0x75, 0x60, 0x25, - 0xe7, 0x2c, 0x3f, 0xb3, 0x9b, 0x94, 0x74, 0x37, 0x15, 0x2a, 0x29, 0xdd, 0x4d, 0xdf, 0x56, 0xe0, - 0x6c, 0x6a, 0x05, 0xfc, 0xd9, 0x6b, 0x56, 0xfd, 0x53, 0x25, 0xb4, 0x9f, 0xa4, 0xc9, 0xaf, 0xa5, - 0x4d, 0xfe, 0x99, 0xa2, 0x05, 0x7d, 0xa6, 0xd1, 0xbf, 0x97, 0x6b, 0xf4, 0xcf, 0x17, 0x6e, 0x0e, - 0x8c, 0xd3, 0xe7, 0xbf, 0x29, 0x70, 0x22, 0x57, 0x80, 0x44, 0x3c, 0xa8, 0x24, 0xe3, 0x41, 0x1e, - 0x4b, 0x46, 0xd1, 0x3f, 0x8b, 0x25, 0x69, 0x80, 0xcf, 0x83, 0x36, 0x7d, 0x68, 0x3c, 0xb1, 0x86, - 0xa3, 0x21, 0x0f, 0x26, 0x09, 0xbb, 0xfb, 0x0c, 0x72, 0x94, 0x68, 0xf2, 0x2a, 0x2c, 0x31, 0x47, - 0x4f, 0x03, 0x9a, 0x88, 0x82, 0x05, 0x95, 0x8b, 0xac, 0x8c, 0xc4, 0x36, 0x9c, 0x40, 0x6d, 0xc3, - 0x62, 0xd8, 0xac, 0xc2, 0x5c, 0xa6, 0x58, 0x6e, 0x52, 0x49, 0xce, 0x4d, 0xb2, 0x61, 0x66, 0x1d, - 0x3f, 0xb2, 0xfa, 0xf8, 0x13, 0x49, 0x8b, 0x3e, 0x07, 0x75, 0x17, 0x7b, 0x43, 0xcb, 0xf7, 0xc3, - 0x59, 0xbd, 0xa6, 0xc5, 0x41, 0xea, 0x59, 0xa8, 0xad, 0xad, 0x77, 0x78, 0x95, 0x19, 0xa2, 0xaa, - 0xff, 0x35, 0x03, 0x0b, 0x49, 0x1b, 0xbb, 0x99, 0xca, 0x95, 0x3a, 0x9d, 0xb9, 0xcf, 0x96, 0xb1, - 0xc1, 0xfc, 0xbc, 0x58, 0x7a, 0x95, 0xd2, 0x89, 0x04, 0xe1, 0xf2, 0x4a, 0xac, 0xc8, 0x56, 0x61, - 0xb6, 0xef, 0x0c, 0x87, 0x86, 0x6d, 0x8a, 0xe4, 0x76, 0xfe, 0x49, 0x24, 0x35, 0xbc, 0x3d, 0xb6, - 0xb5, 0x5c, 0xd3, 0xe8, 0x6f, 0x62, 0x02, 0xc4, 0x19, 0x5a, 0x36, 0xcd, 0xb6, 0xa2, 0xbd, 0x54, - 0xd3, 0x80, 0x83, 0xd6, 0x2d, 0x0f, 0x5d, 0x80, 0x0a, 0xb6, 0x1f, 0x89, 0x33, 0x27, 0x69, 0x8b, - 0x53, 0xac, 0x89, 0x34, 0x8a, 0x81, 0x2e, 0xc2, 0xcc, 0x90, 0x98, 0x95, 0x38, 0x91, 0x5f, 0x4c, - 0x25, 0x81, 0x6b, 0x1c, 0x01, 0xbd, 0x00, 0xb3, 0x26, 0xd5, 0x9e, 0x58, 0x04, 0x20, 0x29, 0x6f, - 0x8b, 0x16, 0x69, 0x02, 0x05, 0xbd, 0x15, 0xee, 0xaf, 0xd7, 0xd2, 0x07, 0x5f, 0x09, 0x35, 0x67, - 0x6e, 0xad, 0x6f, 0xca, 0x8b, 0x54, 0x48, 0xef, 0xd2, 0x27, 0xb9, 0x14, 0x2f, 0x55, 0x4f, 0x40, - 0x75, 0xe0, 0xec, 0x31, 0xeb, 0xa9, 0xb3, 0x9b, 0x11, 0x03, 0x67, 0x8f, 0x1a, 0xcf, 0x12, 0x4c, - 0xfb, 0x81, 0x69, 0xd9, 0x34, 0x96, 0xaa, 0x6a, 0xec, 0x83, 0x0c, 0x52, 0xfa, 0x43, 0x77, 0xec, - 0x3e, 0x5e, 0x6d, 0xd0, 0xa2, 0x1a, 0x85, 0x6c, 0xd9, 0x7d, 0xba, 0xa6, 0x0c, 0x82, 0x83, 0xd5, - 0x79, 0x0a, 0x27, 0x3f, 0xa3, 0x6d, 0xee, 0x85, 0x9c, 0x6d, 0xee, 0x84, 0xc0, 0x19, 0xdb, 0xdc, - 0xcd, 0xdc, 0x39, 0x23, 0x49, 0x2b, 0x48, 0x48, 0x1c, 0xb9, 0xb6, 0xde, 0xd1, 0x45, 0xd7, 0x2c, - 0xa6, 0x73, 0xca, 0x43, 0xb3, 0xd7, 0x20, 0xfc, 0xf9, 0x99, 0x9e, 0x32, 0x7c, 0x4f, 0x81, 0xe5, - 0x35, 0x7a, 0xc6, 0x1a, 0xf3, 0x8d, 0x87, 0x49, 0x4f, 0x7a, 0x29, 0xcc, 0x19, 0xcb, 0x48, 0xfc, - 0x49, 0x6a, 0x4a, 0xa4, 0x8c, 0xad, 0xc1, 0xbc, 0x60, 0xcb, 0x89, 0xcb, 0x13, 0x24, 0x9c, 0x35, - 0xfc, 0xf8, 0xa7, 0xfa, 0x3a, 0xac, 0xa4, 0x24, 0xe7, 0x27, 0x5d, 0xc9, 0xcb, 0x07, 0x4c, 0xf0, - 0xf8, 0xe5, 0x03, 0xf5, 0x16, 0x1c, 0xef, 0x05, 0x86, 0x17, 0xa4, 0x9a, 0x3d, 0x01, 0x2d, 0x4d, - 0x25, 0x93, 0x69, 0x79, 0xb6, 0x57, 0x0f, 0x96, 0x7a, 0x81, 0xe3, 0x1e, 0x81, 0x29, 0xf1, 0x3b, - 0xa4, 0xe5, 0xce, 0x48, 0xcc, 0x33, 0xe2, 0x53, 0x5d, 0x61, 0x89, 0x6f, 0xe9, 0xda, 0xbe, 0x00, - 0xcb, 0x2c, 0xef, 0xec, 0x28, 0x8d, 0x38, 0x21, 0xb2, 0xde, 0xd2, 0x7c, 0xef, 0xc2, 0x31, 0x69, - 0xef, 0x9d, 0xe7, 0x69, 0x5c, 0x93, 0xf3, 0x34, 0xf2, 0x8f, 0x39, 0xc2, 0x34, 0x8d, 0xef, 0x94, - 0x62, 0x7e, 0x3c, 0xe7, 0xb0, 0xf6, 0x15, 0x39, 0x4b, 0xe3, 0x6c, 0x3e, 0x57, 0x29, 0x49, 0x23, - 0x6d, 0x9d, 0xe5, 0x0c, 0xeb, 0xdc, 0x49, 0x9d, 0x04, 0x57, 0xd2, 0x59, 0x36, 0x09, 0x09, 0x3f, - 0x95, 0x33, 0xe0, 0x7b, 0x2c, 0x93, 0x23, 0xac, 0x3a, 0x3c, 0xfe, 0x7d, 0x29, 0x71, 0xfc, 0x7b, - 0xb2, 0x40, 0xd2, 0xf0, 0xe0, 0xf7, 0x3b, 0x15, 0xa8, 0x85, 0x65, 0x29, 0x0d, 0xa7, 0x55, 0x55, - 0xca, 0x50, 0x55, 0x7c, 0x7e, 0x2d, 0x1f, 0x71, 0x7e, 0xad, 0x4c, 0x30, 0xbf, 0x9e, 0x84, 0x1a, - 0xfd, 0x41, 0x93, 0xef, 0xd9, 0x7c, 0x59, 0xa5, 0x00, 0x0d, 0xef, 0x46, 0x26, 0x36, 0x33, 0xa1, - 0x89, 0x25, 0xb2, 0x46, 0x66, 0x93, 0x59, 0x23, 0x37, 0xc3, 0xb9, 0xaf, 0x9a, 0x3e, 0xa5, 0x09, - 0x39, 0x66, 0xce, 0x7a, 0x89, 0xad, 0xd9, 0x5a, 0x7a, 0x6b, 0x36, 0xa2, 0xff, 0xdc, 0x9e, 0x22, - 0x6f, 0xb1, 0x54, 0x90, 0xb8, 0x9d, 0x71, 0x1f, 0xf9, 0x8a, 0x74, 0x0a, 0xa7, 0x64, 0xcc, 0x55, - 0xa1, 0x5f, 0x88, 0x9f, 0xbc, 0xed, 0xc0, 0x72, 0x32, 0x85, 0xec, 0x50, 0x3e, 0x2e, 0x27, 0x97, - 0xf5, 0x37, 0xe2, 0x11, 0x5f, 0x4e, 0xe2, 0xe6, 0xcd, 0x54, 0x8e, 0xc1, 0xc4, 0x16, 0x7a, 0x4d, - 0x4e, 0x47, 0x3a, 0xb4, 0x5d, 0xa5, 0xb2, 0x91, 0x68, 0x44, 0x62, 0x78, 0xbc, 0x98, 0x05, 0xe7, - 0x35, 0x0e, 0x69, 0xd3, 0x95, 0xc1, 0xae, 0x65, 0x5b, 0xfe, 0x3e, 0x2b, 0x9f, 0x61, 0x2b, 0x03, - 0x01, 0x6a, 0xd3, 0x5d, 0x4b, 0xfc, 0xc4, 0x0a, 0xf4, 0xbe, 0x63, 0x62, 0x6a, 0xb5, 0xd3, 0x5a, - 0x95, 0x00, 0xd6, 0x1c, 0x13, 0x47, 0xe3, 0xa9, 0x7a, 0xd8, 0xf1, 0x54, 0x4b, 0x8c, 0xa7, 0x65, - 0x98, 0xf1, 0xb0, 0xe1, 0x3b, 0x36, 0xdb, 0xcc, 0xd0, 0xf8, 0x17, 0xe9, 0x88, 0x21, 0xf6, 0x7d, - 0x52, 0x07, 0x0f, 0xc0, 0xf8, 0x67, 0x2c, 0x58, 0x9c, 0x2b, 0x08, 0x16, 0x0b, 0xd2, 0x42, 0x13, - 0xc1, 0x62, 0xa3, 0x20, 0x58, 0x9c, 0x28, 0x2b, 0x34, 0x0a, 0x8b, 0xe7, 0xc7, 0x85, 0xc5, 0xf1, - 0xb8, 0x72, 0x41, 0x8e, 0x2b, 0x5f, 0x8f, 0xaf, 0x50, 0x9b, 0xe9, 0x43, 0xf2, 0xe2, 0xcb, 0x26, - 0x9f, 0xe1, 0x00, 0xfe, 0x47, 0x05, 0x56, 0x52, 0x03, 0x8e, 0x0f, 0xe1, 0x97, 0x12, 0xf9, 0xa6, - 0x85, 0x89, 0x9e, 0x22, 0xdd, 0xb4, 0x2d, 0xa5, 0x9b, 0x5e, 0x2e, 0x22, 0xc9, 0xc9, 0x36, 0x3d, - 0x7a, 0x06, 0xe8, 0xb7, 0x14, 0x40, 0x19, 0x6b, 0xf0, 0x9b, 0x22, 0x5a, 0x3f, 0xc4, 0x6e, 0x19, - 0x0f, 0xd8, 0xdf, 0x8a, 0x02, 0xf6, 0xd2, 0x61, 0xf6, 0x1d, 0xc2, 0xd4, 0x94, 0x1f, 0x97, 0xe0, - 0xec, 0x8e, 0x6b, 0x26, 0xc2, 0x48, 0x8e, 0x35, 0xb9, 0x67, 0xbb, 0x29, 0xe7, 0xd5, 0x1c, 0xb1, - 0x09, 0xe5, 0xa3, 0x34, 0x01, 0x7d, 0x2d, 0x2b, 0xf3, 0xe9, 0x75, 0xe9, 0x8c, 0xb2, 0xb8, 0x81, - 0x63, 0xa6, 0xaf, 0x8f, 0x6b, 0xc2, 0x2a, 0x9c, 0xcb, 0x17, 0x80, 0x87, 0x9c, 0xff, 0x1f, 0x16, - 0x36, 0x9e, 0xe0, 0x7e, 0xef, 0xc0, 0xee, 0x1f, 0x42, 0xeb, 0x4d, 0x28, 0xf7, 0x87, 0x26, 0x3f, - 0x1d, 0x21, 0x3f, 0xe3, 0x51, 0x74, 0x59, 0x8e, 0xa2, 0x75, 0x68, 0x46, 0x35, 0xf0, 0x01, 0xb4, - 0x4c, 0x06, 0x90, 0x49, 0x90, 0x09, 0xf3, 0x39, 0x8d, 0x7f, 0x71, 0x38, 0xf6, 0xd8, 0x4d, 0x16, - 0x06, 0xc7, 0x9e, 0x27, 0x7b, 0xed, 0xb2, 0xec, 0xb5, 0xd5, 0xef, 0x2a, 0x50, 0x27, 0x35, 0x7c, - 0x2c, 0xf9, 0xf9, 0x52, 0xb6, 0x1c, 0x2d, 0x65, 0xc3, 0x15, 0x71, 0x25, 0xbe, 0x22, 0x8e, 0x24, - 0x9f, 0xa6, 0xe0, 0xb4, 0xe4, 0x33, 0x21, 0x1c, 0x7b, 0x9e, 0x7a, 0x0e, 0xe6, 0x98, 0x6c, 0xbc, - 0xe5, 0x4d, 0x28, 0x8f, 0xbc, 0x81, 0xe8, 0xbf, 0x91, 0x37, 0x50, 0xbf, 0xa9, 0x40, 0xa3, 0x1d, - 0x04, 0x46, 0x7f, 0xff, 0x10, 0x0d, 0x08, 0x85, 0x2b, 0xc5, 0x85, 0x4b, 0x37, 0x22, 0x12, 0xb7, - 0x92, 0x23, 0xee, 0xb4, 0x24, 0xae, 0x0a, 0xf3, 0x42, 0x96, 0x5c, 0x81, 0x37, 0x01, 0x75, 0x1d, - 0x2f, 0x78, 0xdb, 0xf1, 0x1e, 0x1b, 0x9e, 0x79, 0xb8, 0x55, 0x2b, 0x82, 0x0a, 0x7f, 0x5b, 0xa0, - 0x7c, 0x61, 0x5a, 0xa3, 0xbf, 0xd5, 0xe7, 0xe0, 0x98, 0xc4, 0x2f, 0xb7, 0xe2, 0x5b, 0x50, 0xa7, - 0xb3, 0x30, 0x5f, 0xd0, 0x3c, 0x1f, 0x3f, 0xd8, 0x1f, 0x33, 0x5b, 0xab, 0xeb, 0xb0, 0x48, 0xe2, - 0x31, 0x0a, 0x0f, 0xfd, 0xcb, 0xd5, 0x44, 0xcc, 0xbf, 0x92, 0x62, 0x91, 0x88, 0xf7, 0x7f, 0xaa, - 0xc0, 0x34, 0x3b, 0xc3, 0x4f, 0xc6, 0x48, 0x27, 0xc9, 0x3c, 0xe7, 0x3a, 0x7a, 0x60, 0xec, 0x85, - 0xef, 0x36, 0x10, 0xc0, 0xb6, 0xb1, 0x47, 0x4f, 0x74, 0x68, 0xa1, 0x69, 0xed, 0x61, 0x3f, 0x10, - 0x27, 0x84, 0x75, 0x02, 0x5b, 0x67, 0x20, 0xa2, 0x18, 0x7a, 0x90, 0x5a, 0xa1, 0xe7, 0xa5, 0xf4, - 0x37, 0xba, 0xc0, 0x2e, 0x41, 0x16, 0x1f, 0x8b, 0xd1, 0xcb, 0x91, 0x2d, 0xa8, 0x26, 0xce, 0xb3, - 0xc2, 0x6f, 0x74, 0x11, 0x2a, 0x74, 0xff, 0x79, 0xb6, 0x48, 0x4b, 0x14, 0x85, 0x58, 0x85, 0x6b, - 0xd9, 0x36, 0x36, 0x69, 0x00, 0x54, 0xd5, 0xf8, 0x97, 0xfa, 0x16, 0xa0, 0xb8, 0xf2, 0x78, 0x07, - 0x5d, 0x84, 0x19, 0xaa, 0x5b, 0x11, 0xc4, 0x2e, 0xa6, 0x58, 0x6b, 0x1c, 0x41, 0xfd, 0x2a, 0x20, - 0x56, 0x97, 0x14, 0xb8, 0x1e, 0xa6, 0x03, 0x0b, 0x42, 0xd8, 0x3f, 0x53, 0xe0, 0x98, 0xc4, 0x9d, - 0xcb, 0xf7, 0x9c, 0xcc, 0x3e, 0x43, 0x3c, 0xce, 0xfa, 0x0d, 0x69, 0x66, 0xbe, 0x98, 0x16, 0xe3, - 0xe7, 0x34, 0x2b, 0xff, 0x93, 0x02, 0xd0, 0x1e, 0x05, 0xfb, 0x7c, 0xa3, 0x35, 0xde, 0x89, 0x4a, - 0xa2, 0x13, 0x5b, 0x50, 0x75, 0x0d, 0xdf, 0x7f, 0xec, 0x78, 0x62, 0x11, 0x19, 0x7e, 0xd3, 0xed, - 0xd1, 0x11, 0x7f, 0xcc, 0xa1, 0xa6, 0xd1, 0xdf, 0xe8, 0x19, 0x98, 0x67, 0x0f, 0x8a, 0xe8, 0x86, - 0x69, 0x7a, 0x22, 0x59, 0xb0, 0xa6, 0x35, 0x18, 0xb4, 0xcd, 0x80, 0x04, 0xcd, 0xa2, 0xa7, 0x11, - 0xc1, 0x81, 0x1e, 0x38, 0x0f, 0xb1, 0xcd, 0x17, 0x86, 0x0d, 0x01, 0xdd, 0x26, 0x40, 0x76, 0xdc, - 0xb8, 0x67, 0xf9, 0x81, 0x27, 0xd0, 0xc4, 0xa1, 0x29, 0x87, 0x52, 0x34, 0xf5, 0x8f, 0x14, 0x68, - 0x76, 0x47, 0x83, 0x01, 0x53, 0xee, 0x51, 0x3a, 0xf9, 0x12, 0x6f, 0x4a, 0x29, 0x6d, 0xf2, 0x91, - 0xa2, 0x78, 0x13, 0x3f, 0x91, 0xbd, 0xac, 0x6b, 0xb0, 0x18, 0x93, 0x98, 0x1b, 0x8e, 0x14, 0xd9, - 0x2b, 0x72, 0x64, 0xaf, 0xb6, 0x01, 0xb1, 0xed, 0x9b, 0x23, 0xb7, 0x52, 0x3d, 0x0e, 0xc7, 0x24, - 0x16, 0x7c, 0x2a, 0xbe, 0x04, 0x0d, 0x9e, 0xb8, 0xc6, 0x0d, 0xe2, 0x04, 0x54, 0x89, 0x4b, 0xed, - 0x5b, 0xa6, 0xc8, 0x90, 0x98, 0x75, 0x1d, 0x73, 0xcd, 0x32, 0x3d, 0xf5, 0x4b, 0xd0, 0xe0, 0x37, - 0xe3, 0x39, 0xee, 0x6d, 0x98, 0xe7, 0xe7, 0x83, 0xba, 0x74, 0x95, 0xf4, 0x44, 0x46, 0x76, 0xa4, - 0x50, 0x85, 0x1d, 0xff, 0x54, 0xbf, 0x06, 0x2d, 0x16, 0x2d, 0x48, 0x8c, 0x45, 0x03, 0x6f, 0x83, - 0x48, 0x4e, 0x2a, 0xe0, 0x2f, 0x53, 0x36, 0xbc, 0xf8, 0xa7, 0x7a, 0x1a, 0x4e, 0x66, 0xf2, 0xe7, - 0xad, 0x77, 0xa1, 0x19, 0x15, 0xb0, 0xfb, 0x8e, 0x61, 0xda, 0x87, 0x12, 0x4b, 0xfb, 0x58, 0x0e, - 0x63, 0xef, 0x92, 0x98, 0xb9, 0x68, 0x78, 0x1d, 0xad, 0xb8, 0xca, 0x79, 0x2b, 0xae, 0x8a, 0xb4, - 0xe2, 0x52, 0xef, 0x87, 0x3a, 0xe4, 0xeb, 0xde, 0xd7, 0xe9, 0xca, 0x9c, 0xd5, 0x2d, 0x9c, 0xda, - 0xa9, 0xec, 0xf6, 0x31, 0x24, 0x2d, 0x86, 0xaf, 0x5e, 0x84, 0x86, 0xec, 0xde, 0x62, 0x1e, 0x4b, - 0x49, 0x79, 0xac, 0xf9, 0x84, 0xb3, 0x7a, 0x31, 0xb1, 0xa4, 0xc8, 0xd2, 0x6b, 0x62, 0x41, 0x71, - 0x43, 0x72, 0x5b, 0x4f, 0x4b, 0x47, 0xf4, 0x3f, 0x27, 0x8f, 0xb5, 0xc4, 0xfd, 0xf8, 0xdb, 0x3e, - 0xa1, 0xe7, 0x0d, 0x55, 0x9f, 0x82, 0xfa, 0x4e, 0xde, 0xfb, 0x24, 0x15, 0x91, 0x57, 0xf6, 0x2a, - 0x2c, 0xbd, 0x6d, 0x0d, 0xb0, 0x7f, 0xe0, 0x07, 0x78, 0xd8, 0xa1, 0xee, 0x65, 0xd7, 0xc2, 0x1e, - 0x3a, 0x03, 0x40, 0x57, 0x91, 0xae, 0x63, 0x85, 0x6f, 0x32, 0xc4, 0x20, 0xea, 0x8f, 0x14, 0x58, - 0x88, 0x08, 0x27, 0x49, 0x1e, 0x7c, 0x05, 0xa6, 0x77, 0x7d, 0xb1, 0xdb, 0x96, 0x38, 0x83, 0xc8, - 0x12, 0x41, 0xab, 0xec, 0xfa, 0x1d, 0x13, 0xbd, 0x0a, 0x30, 0xf2, 0xb1, 0xc9, 0x8f, 0xfd, 0xc6, - 0xa4, 0x73, 0xd6, 0x08, 0x2a, 0x3b, 0x38, 0xbc, 0x01, 0x75, 0xcb, 0x76, 0x4c, 0x4c, 0x8f, 0x84, - 0xcd, 0x71, 0xa9, 0x9c, 0xc0, 0x70, 0x77, 0x7c, 0x6c, 0xaa, 0xbf, 0x17, 0x1d, 0xec, 0x7e, 0x9e, - 0x5b, 0xa8, 0xfe, 0xb1, 0x98, 0x60, 0x45, 0xb7, 0x73, 0x9b, 0x7d, 0x07, 0x16, 0x99, 0x9f, 0xdc, - 0x0d, 0xeb, 0xcc, 0xbc, 0xe3, 0x92, 0x68, 0x9c, 0xd6, 0xb4, 0x78, 0x68, 0x25, 0x88, 0x50, 0x17, - 0x8e, 0x47, 0x11, 0x6f, 0x9c, 0x5b, 0x69, 0x3c, 0xb7, 0xa5, 0x7e, 0x6c, 0x73, 0x56, 0x10, 0xaa, - 0xb7, 0xe0, 0x78, 0x22, 0x8d, 0x7d, 0xf2, 0x1d, 0xfa, 0x77, 0x13, 0x5b, 0x6d, 0xd1, 0x28, 0xbd, - 0x26, 0xdf, 0x9e, 0x2a, 0xba, 0x70, 0xc0, 0x2f, 0xf2, 0xec, 0xc0, 0x09, 0x69, 0x1f, 0x50, 0x92, - 0xe5, 0x46, 0x22, 0xfe, 0x3c, 0x97, 0xcf, 0x2f, 0x11, 0x88, 0xfe, 0xb7, 0x02, 0x4b, 0x59, 0x08, - 0x47, 0xdc, 0x83, 0xfe, 0x20, 0xe7, 0xe6, 0xe5, 0x4b, 0xe3, 0x04, 0xfa, 0x54, 0xf6, 0xec, 0x37, - 0xd9, 0xbd, 0xad, 0xf1, 0x7d, 0x52, 0x9e, 0xac, 0x4f, 0x7e, 0x5a, 0x8a, 0x9d, 0xb3, 0x14, 0xdc, - 0xad, 0xfa, 0x18, 0xfb, 0x9e, 0x6b, 0x89, 0xab, 0x55, 0xcf, 0x67, 0x12, 0x8e, 0xb9, 0x59, 0xa5, - 0x65, 0xed, 0x2f, 0x5c, 0x1b, 0xc7, 0xe9, 0x73, 0xbb, 0x25, 0xfe, 0x9b, 0x25, 0x98, 0x97, 0x3b, - 0x04, 0xbd, 0x95, 0x71, 0xaf, 0xea, 0xec, 0x98, 0x06, 0x4a, 0xd7, 0xaa, 0xf8, 0x3d, 0xa6, 0xd2, - 0xe4, 0xf7, 0x98, 0xca, 0x93, 0xdd, 0x63, 0xba, 0x03, 0xf3, 0x8f, 0x3d, 0x2b, 0x30, 0x1e, 0x0c, - 0xb0, 0x3e, 0x30, 0x0e, 0xb0, 0xc7, 0x1d, 0x7b, 0xa1, 0x2b, 0x6a, 0x08, 0x92, 0x7b, 0x84, 0x82, - 0xae, 0xbc, 0x1e, 0x1b, 0x2e, 0x5f, 0xc0, 0x49, 0x31, 0x61, 0xef, 0xb1, 0xe1, 0x32, 0x1a, 0x8a, - 0xa2, 0x7e, 0xb3, 0x04, 0xc7, 0x33, 0x6f, 0xdf, 0x7c, 0x7c, 0x15, 0x5d, 0x8e, 0xab, 0xe8, 0x30, - 0x57, 0x9a, 0xca, 0x87, 0xba, 0xd2, 0xd4, 0xc9, 0x51, 0x58, 0xd6, 0x41, 0x7e, 0xb1, 0xde, 0xd4, - 0xbf, 0x54, 0xa0, 0x2a, 0x84, 0x1a, 0x7b, 0xc1, 0x68, 0x65, 0x44, 0xd0, 0x74, 0x9a, 0x04, 0x6e, - 0x1b, 0xb6, 0xa3, 0xfb, 0x98, 0x04, 0x65, 0x63, 0xaf, 0x73, 0x2c, 0x51, 0xba, 0x35, 0xc7, 0xc3, - 0x9b, 0x86, 0xed, 0xf4, 0x18, 0x11, 0x6a, 0x43, 0x93, 0xf1, 0xa3, 0xac, 0x08, 0xd3, 0xb1, 0x13, - 0xe5, 0x3c, 0x25, 0x20, 0x4c, 0x08, 0x33, 0x5f, 0xfd, 0xbe, 0x02, 0x0b, 0x09, 0xcd, 0xfe, 0xe2, - 0x35, 0xe2, 0x77, 0xcb, 0x50, 0x8f, 0xf5, 0xf2, 0x98, 0x06, 0xac, 0xc1, 0xa2, 0x48, 0xc6, 0xf1, - 0x71, 0x30, 0xd9, 0x75, 0x9a, 0x05, 0x4e, 0xd1, 0xc3, 0x01, 0x8b, 0xa3, 0x6e, 0xc3, 0x82, 0xf1, - 0xc8, 0xb0, 0x06, 0xd4, 0x82, 0x26, 0x0a, 0x51, 0xe6, 0x43, 0xfc, 0x30, 0x12, 0x63, 0xed, 0x9e, - 0xe8, 0x52, 0x0d, 0x50, 0xdc, 0xe8, 0x6e, 0x93, 0xef, 0xc7, 0x32, 0xbe, 0x0a, 0xef, 0x36, 0xf9, - 0x7e, 0x58, 0x1f, 0xcd, 0x80, 0xa7, 0x97, 0xba, 0x7c, 0xfe, 0x12, 0x48, 0x7e, 0x7d, 0x04, 0xf7, - 0x6d, 0x8a, 0x4a, 0x14, 0x36, 0x34, 0x3e, 0x74, 0x3c, 0x3d, 0x4e, 0x3f, 0x3b, 0x46, 0x61, 0x94, - 0xa2, 0x1b, 0x32, 0x51, 0xff, 0x5c, 0x81, 0x5a, 0xe8, 0x47, 0xc6, 0xf4, 0x50, 0x07, 0x96, 0xe8, - 0x75, 0x81, 0xa4, 0x86, 0xc7, 0x74, 0x12, 0x22, 0x44, 0x6d, 0x59, 0xcb, 0x6d, 0x68, 0x52, 0x56, - 0x71, 0x55, 0x8f, 0xeb, 0x28, 0x5f, 0x88, 0xc9, 0x02, 0xca, 0xbf, 0x2a, 0x01, 0x4a, 0xbb, 0x92, - 0x5f, 0x18, 0x23, 0x8b, 0x77, 0x5a, 0x65, 0xf2, 0x4e, 0xbf, 0x0b, 0xc7, 0xfa, 0xce, 0x70, 0x68, - 0xd1, 0xab, 0x26, 0x8e, 0x77, 0x30, 0x99, 0xb9, 0x2d, 0x32, 0x1a, 0xa6, 0x27, 0xa6, 0xbe, 0x37, - 0xe1, 0x84, 0x86, 0x1d, 0x17, 0xdb, 0xa1, 0xeb, 0xbf, 0xe7, 0xec, 0x1d, 0x22, 0xbe, 0x3d, 0x05, - 0xad, 0x2c, 0x7a, 0xbe, 0x10, 0x1f, 0x41, 0x6b, 0x6d, 0x1f, 0xf7, 0x1f, 0xd2, 0xe5, 0xd7, 0x51, - 0x12, 0x6a, 0x5a, 0x50, 0x1d, 0x38, 0x7d, 0xf6, 0xac, 0x2a, 0xdf, 0xab, 0x12, 0xdf, 0x05, 0xc7, - 0x04, 0xa7, 0xe1, 0x64, 0x66, 0xb5, 0x5c, 0x2a, 0x04, 0xcd, 0xbb, 0x38, 0xd8, 0x78, 0x84, 0xed, - 0x30, 0x7c, 0x56, 0x7f, 0x50, 0x8a, 0x05, 0xea, 0xb4, 0xe8, 0x10, 0x89, 0x48, 0xa8, 0x0b, 0xd1, - 0xca, 0x41, 0xc7, 0x84, 0x9a, 0x3d, 0x72, 0xc8, 0x9e, 0x07, 0xcd, 0x3e, 0xa4, 0xa4, 0x95, 0xd0, - 0xb7, 0x0d, 0xa3, 0xe7, 0x5b, 0x42, 0x58, 0xe2, 0xe8, 0xba, 0x9c, 0x3c, 0xba, 0x7e, 0x17, 0x50, - 0x3c, 0x14, 0xe7, 0xcb, 0xfd, 0xca, 0x04, 0x2f, 0xd6, 0x34, 0xdd, 0xe4, 0xdb, 0x4a, 0x39, 0xef, - 0xce, 0x4c, 0x1f, 0xe9, 0xdd, 0x19, 0xf5, 0x0c, 0x9c, 0x22, 0x01, 0xf6, 0x7d, 0x1c, 0x78, 0x56, - 0x7f, 0x1d, 0xfb, 0x7d, 0xcf, 0x72, 0x03, 0x27, 0xcc, 0x8d, 0x51, 0x75, 0x38, 0x9d, 0x53, 0xce, - 0xd5, 0xfd, 0x26, 0xd4, 0xcd, 0x08, 0x9c, 0xb5, 0x75, 0x92, 0xa4, 0xd5, 0xe2, 0x04, 0xea, 0xfb, - 0xd0, 0x4c, 0x22, 0x64, 0xa6, 0xd2, 0x22, 0xa8, 0xec, 0xe3, 0x81, 0x2b, 0xee, 0x06, 0x91, 0xdf, - 0x44, 0xeb, 0x6c, 0xed, 0xf2, 0x10, 0x1f, 0x88, 0xad, 0xf5, 0x1a, 0x85, 0x7c, 0x11, 0x1f, 0x84, - 0x6d, 0x93, 0x1e, 0x42, 0xf0, 0xac, 0x7e, 0xb2, 0x6d, 0x19, 0xe5, 0x51, 0xdb, 0x48, 0xb7, 0x0d, - 0x19, 0x98, 0xb7, 0xed, 0x74, 0xee, 0x23, 0x0b, 0x94, 0x16, 0x5c, 0xc7, 0xe4, 0xbf, 0xd5, 0x3f, - 0x51, 0x60, 0x31, 0x85, 0x31, 0xe1, 0x71, 0xc9, 0x0b, 0x30, 0x2b, 0xea, 0x2d, 0xa5, 0xf3, 0x4d, - 0x19, 0x2f, 0x4d, 0xa0, 0xa0, 0x0e, 0x2c, 0x46, 0x16, 0x2d, 0xe8, 0xca, 0xe9, 0xbe, 0x88, 0x2f, - 0x5c, 0xa8, 0xb8, 0xcd, 0x7e, 0x02, 0xa2, 0xf6, 0xa1, 0x99, 0xc4, 0x9a, 0x64, 0x4c, 0x1d, 0x4a, - 0x5e, 0xf5, 0xef, 0x15, 0x98, 0x61, 0xb0, 0xcc, 0xce, 0x96, 0xa6, 0x83, 0x52, 0x72, 0x3a, 0x78, - 0x0d, 0xea, 0x8c, 0x8f, 0x1e, 0xde, 0x0c, 0x9b, 0x97, 0x77, 0x8c, 0x19, 0x6b, 0x3a, 0x5a, 0x61, - 0x18, 0xfe, 0x26, 0xcd, 0x60, 0xf6, 0x42, 0x57, 0x26, 0x22, 0xab, 0xb8, 0x4e, 0x61, 0xd4, 0xe5, - 0x92, 0x90, 0x99, 0xaf, 0x61, 0xc6, 0xf8, 0x66, 0xbe, 0xb5, 0xb5, 0x4c, 0x9f, 0xf5, 0x4b, 0xed, - 0x99, 0xaa, 0xdb, 0xf4, 0xdd, 0xbd, 0xf4, 0x5e, 0x27, 0xfa, 0x82, 0x7c, 0xee, 0xfe, 0x4c, 0xea, - 0xd0, 0x5a, 0x22, 0x1b, 0x79, 0xec, 0xf9, 0x69, 0x46, 0xa3, 0x7e, 0x00, 0x27, 0x72, 0x71, 0xd0, - 0x1b, 0xe1, 0x23, 0xa7, 0xa6, 0x67, 0x3d, 0xe2, 0x1b, 0x0b, 0xf3, 0xf2, 0x83, 0x0a, 0x6b, 0x14, - 0x61, 0x9d, 0x96, 0x8b, 0xe7, 0x4f, 0xd9, 0xd7, 0xa5, 0x67, 0xa1, 0x2a, 0x9e, 0x06, 0x47, 0xb3, - 0x50, 0xde, 0x5e, 0xeb, 0x36, 0xa7, 0xc8, 0x8f, 0x9d, 0xf5, 0x6e, 0x53, 0x41, 0x55, 0xa8, 0xf4, - 0xd6, 0xb6, 0xbb, 0xcd, 0xd2, 0xa5, 0x21, 0x34, 0x93, 0xaf, 0x63, 0xa3, 0x15, 0x38, 0xd6, 0xd5, - 0xb6, 0xba, 0xed, 0xbb, 0xed, 0xed, 0xce, 0xd6, 0xa6, 0xde, 0xd5, 0x3a, 0xef, 0xb5, 0xb7, 0x37, - 0x9a, 0x53, 0xe8, 0x3c, 0x9c, 0x8e, 0x17, 0xbc, 0xb3, 0xd5, 0xdb, 0xd6, 0xb7, 0xb7, 0xf4, 0xb5, - 0xad, 0xcd, 0xed, 0x76, 0x67, 0x73, 0x43, 0x6b, 0x2a, 0xe8, 0x34, 0x9c, 0x88, 0xa3, 0xdc, 0xe9, - 0xac, 0x77, 0xb4, 0x8d, 0x35, 0xf2, 0xbb, 0x7d, 0xaf, 0x59, 0xba, 0xf4, 0x06, 0x34, 0xa4, 0xbb, - 0x30, 0x44, 0xa4, 0xee, 0xd6, 0x7a, 0x73, 0x0a, 0x35, 0xa0, 0x16, 0xe7, 0x53, 0x85, 0xca, 0xe6, - 0xd6, 0xfa, 0x46, 0xb3, 0x84, 0x00, 0x66, 0xb6, 0xdb, 0xda, 0xdd, 0x8d, 0xed, 0x66, 0xf9, 0xd2, - 0xad, 0xe4, 0x83, 0x1e, 0x18, 0x2d, 0x42, 0xa3, 0xd7, 0xde, 0x5c, 0xbf, 0xb3, 0xf5, 0x15, 0x5d, - 0xdb, 0x68, 0xaf, 0xbf, 0xdf, 0x9c, 0x42, 0x4b, 0xd0, 0x14, 0xa0, 0xcd, 0xad, 0x6d, 0x06, 0x55, - 0x2e, 0x3d, 0x4c, 0xac, 0x59, 0x31, 0x3a, 0x0e, 0x8b, 0x61, 0x95, 0xfa, 0x9a, 0xb6, 0xd1, 0xde, - 0xde, 0x20, 0x92, 0x48, 0x60, 0x6d, 0x67, 0x73, 0xb3, 0xb3, 0x79, 0xb7, 0xa9, 0x10, 0xae, 0x11, - 0x78, 0xe3, 0x2b, 0x1d, 0x82, 0x5c, 0x92, 0x91, 0x77, 0x36, 0xbf, 0xb8, 0xb9, 0xf5, 0xe5, 0xcd, - 0x66, 0xf9, 0xd2, 0xaf, 0xc4, 0xd3, 0x34, 0xa2, 0x79, 0xe5, 0x24, 0xac, 0xa4, 0x6a, 0xd4, 0x37, - 0xde, 0xdb, 0xd8, 0xdc, 0x6e, 0x4e, 0xc9, 0x85, 0xbd, 0xed, 0xb6, 0x16, 0x15, 0x2a, 0xc9, 0xc2, - 0xad, 0x6e, 0x37, 0x2c, 0x2c, 0xc9, 0x85, 0xeb, 0x1b, 0xf7, 0x36, 0x22, 0xca, 0xf2, 0xa5, 0xa7, - 0x01, 0xa2, 0xf1, 0x83, 0xea, 0x30, 0xbb, 0xb6, 0xb5, 0xb3, 0xb9, 0xbd, 0xa1, 0x35, 0xa7, 0x50, - 0x0d, 0xa6, 0xef, 0xb6, 0x77, 0xee, 0x6e, 0x34, 0x95, 0x4b, 0x17, 0x61, 0x2e, 0x6e, 0x4d, 0x04, - 0xaf, 0xf7, 0x7e, 0x6f, 0x7b, 0xe3, 0x3e, 0xd1, 0xc8, 0x1c, 0x54, 0xd7, 0xee, 0x6a, 0x5b, 0x3b, - 0xdd, 0xb7, 0x7b, 0x4d, 0xe5, 0xfa, 0xff, 0x2e, 0x85, 0x8f, 0xf9, 0xf6, 0xb0, 0x47, 0x6f, 0x20, - 0xac, 0xc3, 0xac, 0x78, 0x4c, 0x5f, 0xda, 0xb5, 0x91, 0x1f, 0xff, 0x6f, 0x9d, 0xcc, 0x2c, 0xe3, - 0x71, 0xc1, 0x14, 0x7a, 0x8f, 0x6e, 0xe3, 0xc7, 0x9e, 0xd3, 0x3a, 0x97, 0xd8, 0x3a, 0x4f, 0xbd, - 0xda, 0xd5, 0x3a, 0x5f, 0x80, 0x11, 0xf2, 0x7d, 0x1f, 0xe6, 0xe5, 0x77, 0x2b, 0xd1, 0x79, 0x79, - 0x8b, 0x3d, 0xe3, 0x49, 0xcc, 0x96, 0x5a, 0x84, 0x12, 0xb2, 0xd6, 0xa1, 0x99, 0x7c, 0xb7, 0x12, - 0x49, 0x99, 0x2b, 0x39, 0xcf, 0x62, 0xb6, 0x9e, 0x2e, 0x46, 0x8a, 0x57, 0x90, 0x7a, 0x8e, 0xf1, - 0xa9, 0xe2, 0x07, 0xee, 0x32, 0x2a, 0xc8, 0x7b, 0x05, 0x8f, 0x29, 0x47, 0x9e, 0x35, 0x51, 0xe2, - 0x05, 0xc4, 0x8c, 0xc7, 0xd2, 0x64, 0xe5, 0x64, 0x3f, 0x94, 0xa5, 0x4e, 0xa1, 0xff, 0x07, 0x0b, - 0x89, 0xf4, 0x72, 0x24, 0x11, 0x66, 0x67, 0xcd, 0xb7, 0x9e, 0x2a, 0xc4, 0x91, 0x7b, 0x35, 0x9e, - 0x42, 0x9e, 0xec, 0xd5, 0x8c, 0xd4, 0xf4, 0x64, 0xaf, 0x66, 0x66, 0xa0, 0x53, 0x43, 0x94, 0xd2, - 0xc5, 0x65, 0x43, 0xcc, 0x4a, 0x4f, 0x6f, 0x9d, 0x2f, 0xc0, 0x88, 0x2b, 0x24, 0x91, 0x30, 0x2e, - 0x2b, 0x24, 0x3b, 0x15, 0xbd, 0xf5, 0x54, 0x21, 0x4e, 0xb2, 0x27, 0xa3, 0x44, 0xd5, 0x74, 0x4f, - 0xa6, 0x92, 0xa5, 0xd3, 0x3d, 0x99, 0xce, 0x73, 0xe5, 0x3d, 0x99, 0x48, 0x2d, 0x55, 0x0b, 0xd3, - 0xde, 0xb2, 0x7a, 0x32, 0x3b, 0x35, 0x4e, 0x9d, 0x42, 0x8f, 0x61, 0x35, 0x2f, 0xbb, 0x09, 0x3d, - 0x7f, 0x88, 0x24, 0xac, 0xd6, 0x0b, 0x93, 0x21, 0x87, 0x15, 0x63, 0x40, 0xe9, 0xe5, 0x13, 0x7a, - 0x46, 0x56, 0x77, 0xce, 0xf2, 0xac, 0xf5, 0xec, 0x38, 0xb4, 0xb0, 0x9a, 0xbb, 0x50, 0x15, 0x79, - 0x53, 0x48, 0x72, 0x81, 0x89, 0x7c, 0xad, 0xd6, 0xa9, 0xec, 0xc2, 0x90, 0xd1, 0x17, 0xa0, 0x42, - 0xa0, 0x68, 0x25, 0x89, 0x27, 0x18, 0xac, 0xa6, 0x0b, 0x42, 0xe2, 0x36, 0xcc, 0xb0, 0x84, 0x20, - 0x24, 0x9d, 0x48, 0x4a, 0x09, 0x4b, 0xad, 0x56, 0x56, 0x51, 0xc8, 0xa2, 0xcb, 0xfe, 0x35, 0x09, - 0xcf, 0xef, 0x41, 0x67, 0x92, 0x2f, 0x56, 0xcb, 0x89, 0x44, 0xad, 0xb3, 0xb9, 0xe5, 0x71, 0x9b, - 0x4d, 0xec, 0x92, 0x9e, 0x2f, 0xd8, 0xf5, 0xcf, 0xb2, 0xd9, 0xec, 0xb3, 0x04, 0xd6, 0xb9, 0xe9, - 0xb3, 0x06, 0xf4, 0x4c, 0xae, 0xbd, 0x4b, 0x55, 0x3c, 0x3b, 0x0e, 0x2d, 0x3e, 0x34, 0x92, 0x4f, - 0x4f, 0xa9, 0x45, 0xcf, 0xc2, 0x65, 0x0d, 0x8d, 0x9c, 0xe7, 0xe6, 0xd4, 0x29, 0xb4, 0x0f, 0xc7, - 0x32, 0xde, 0xa3, 0x43, 0xcf, 0xe6, 0xfb, 0x5f, 0xa9, 0x96, 0xe7, 0xc6, 0xe2, 0xc5, 0x6b, 0xca, - 0x38, 0xd4, 0x97, 0x6b, 0xca, 0xcf, 0x2a, 0x90, 0x6b, 0x2a, 0xca, 0x0e, 0xa0, 0x86, 0xc8, 0x7d, - 0xc8, 0x89, 0xac, 0x93, 0xee, 0x0c, 0x43, 0x4c, 0x79, 0x8c, 0x7d, 0x38, 0x96, 0xb1, 0xc5, 0x20, - 0x0b, 0x9b, 0xbf, 0xf5, 0x21, 0x0b, 0x5b, 0xb4, 0x57, 0x31, 0x85, 0x3e, 0x00, 0x74, 0x17, 0x07, - 0x72, 0x28, 0xe7, 0x23, 0x69, 0xa0, 0x26, 0x77, 0x33, 0x72, 0xec, 0x53, 0xda, 0xd6, 0x50, 0xa7, - 0xae, 0x29, 0xc8, 0x66, 0x37, 0x58, 0x52, 0x8b, 0x71, 0x74, 0x21, 0xd9, 0x6d, 0x79, 0xeb, 0xf9, - 0xd6, 0xc5, 0x09, 0x30, 0xc3, 0xb6, 0xd8, 0xc9, 0xb7, 0x4f, 0xc5, 0x7a, 0xf0, 0x42, 0xbe, 0x99, - 0xc8, 0x6b, 0xec, 0x74, 0x7d, 0xb9, 0xab, 0xed, 0x30, 0x9e, 0x8b, 0x19, 0xd3, 0xb9, 0xfc, 0x14, - 0x93, 0x9c, 0x78, 0x2e, 0xcb, 0x80, 0xae, 0xff, 0x4e, 0x19, 0xe6, 0x58, 0x2a, 0x0e, 0x0f, 0x3f, - 0xef, 0x03, 0x44, 0x59, 0x6d, 0xe8, 0x74, 0x52, 0x46, 0x29, 0x55, 0xb0, 0x75, 0x26, 0xaf, 0x38, - 0xee, 0xe6, 0x62, 0xd9, 0x62, 0xb2, 0x9b, 0x4b, 0x27, 0xbf, 0xc9, 0x6e, 0x2e, 0x23, 0xcd, 0x4c, - 0x9d, 0x42, 0xef, 0x42, 0x2d, 0x4c, 0x4e, 0x92, 0x8d, 0x27, 0x99, 0x65, 0xd5, 0x3a, 0x9d, 0x53, - 0x1a, 0x97, 0x2e, 0x96, 0x73, 0x24, 0x4b, 0x97, 0xce, 0x67, 0x92, 0xa5, 0xcb, 0x4a, 0x56, 0x8a, - 0xda, 0xcb, 0x92, 0x02, 0x32, 0xda, 0x2b, 0x25, 0x89, 0x64, 0xb4, 0x57, 0xce, 0x26, 0x50, 0xa7, - 0xee, 0xdc, 0xfe, 0xe1, 0x4f, 0xce, 0x28, 0x3f, 0xfa, 0xc9, 0x99, 0xa9, 0x5f, 0xfa, 0xe8, 0x8c, - 0xf2, 0xc3, 0x8f, 0xce, 0x28, 0xff, 0xfc, 0xd1, 0x19, 0xe5, 0xc7, 0x1f, 0x9d, 0x51, 0xbe, 0xf5, - 0x1f, 0x67, 0xa6, 0x3e, 0x50, 0x1f, 0xde, 0xf0, 0xaf, 0x58, 0xce, 0xd5, 0xbe, 0x67, 0x5d, 0x36, - 0x5c, 0xeb, 0xaa, 0xfb, 0x70, 0xef, 0xaa, 0xe1, 0x5a, 0xfe, 0x55, 0xce, 0xf7, 0xea, 0xa3, 0x17, - 0x1f, 0xcc, 0xd0, 0x7f, 0x67, 0xf5, 0xd2, 0xff, 0x05, 0x00, 0x00, 0xff, 0xff, 0x24, 0xa8, 0x67, - 0x4b, 0x88, 0x6c, 0x00, 0x00, + // 6929 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x7d, 0x5b, 0x6c, 0x1c, 0xc9, + 0x75, 0x36, 0x7b, 0x66, 0x48, 0xce, 0x9c, 0xe1, 0x90, 0xc3, 0x12, 0x45, 0x52, 0xa3, 0x7b, 0xef, + 0x4d, 0xd2, 0xae, 0x2e, 0xab, 0xbd, 0x49, 0xda, 0x9b, 0x46, 0x24, 0xa5, 0x9d, 0xb5, 0x44, 0x8e, + 0x7b, 0x48, 0xd9, 0xbb, 0xfe, 0xe1, 0xfe, 0x5b, 0xd3, 0xc5, 0x61, 0xaf, 0x66, 0xba, 0xdb, 0xdd, + 0x3d, 0x94, 0xe8, 0xa7, 0xff, 0xe9, 0xc7, 0xff, 0xfb, 0xc9, 0x40, 0xe2, 0x18, 0x31, 0x82, 0x04, + 0x79, 0x08, 0x92, 0xb7, 0x5c, 0x80, 0x24, 0x0e, 0x72, 0x03, 0x82, 0xc4, 0x70, 0x02, 0x04, 0xc8, + 0x43, 0x02, 0xf8, 0x21, 0x40, 0xec, 0x4d, 0x80, 0x00, 0x79, 0x0c, 0xfc, 0x90, 0x97, 0xc4, 0x41, + 0xdd, 0xba, 0xbb, 0xfa, 0x32, 0x33, 0xe4, 0x6e, 0x76, 0xd7, 0x4f, 0x9c, 0xae, 0x3a, 0xe7, 0x54, + 0xd5, 0xa9, 0x53, 0xa7, 0x4e, 0x55, 0x7d, 0x55, 0x84, 0x8a, 0xe1, 0x5a, 0x57, 0x5c, 0xcf, 0x09, + 0x1c, 0x04, 0xde, 0xd0, 0x0e, 0xac, 0x01, 0xbe, 0xb2, 0xff, 0x72, 0xe3, 0x72, 0xcf, 0x0a, 0xf6, + 0x86, 0x8f, 0xae, 0x74, 0x9d, 0xc1, 0xd5, 0x9e, 0xd3, 0x73, 0xae, 0x52, 0x92, 0x47, 0xc3, 0x5d, + 0xfa, 0x45, 0x3f, 0xe8, 0x2f, 0xc6, 0xaa, 0x5e, 0x82, 0xf9, 0x87, 0xd8, 0xf3, 0x2d, 0xc7, 0xd6, + 0xf0, 0x37, 0x86, 0xd8, 0x0f, 0xd0, 0x2a, 0xcc, 0xee, 0xb3, 0x94, 0x55, 0xe5, 0x9c, 0x72, 0xa1, + 0xa2, 0x89, 0x4f, 0xf5, 0x37, 0x15, 0x58, 0x08, 0x89, 0x7d, 0xd7, 0xb1, 0x7d, 0x9c, 0x4f, 0x8d, + 0xce, 0xc3, 0x1c, 0xaf, 0x96, 0x6e, 0x1b, 0x03, 0xbc, 0x5a, 0xa0, 0xd9, 0x55, 0x9e, 0xb6, 0x69, + 0x0c, 0x30, 0x7a, 0x01, 0x16, 0x04, 0x89, 0x10, 0x52, 0xa4, 0x54, 0xf3, 0x3c, 0x99, 0x97, 0x86, + 0xae, 0xc0, 0x31, 0x41, 0x68, 0xb8, 0x56, 0x48, 0x5c, 0xa2, 0xc4, 0x8b, 0x3c, 0xab, 0xe9, 0x5a, + 0x9c, 0x5e, 0xfd, 0x1a, 0x54, 0xd6, 0x37, 0x3b, 0x6b, 0x8e, 0xbd, 0x6b, 0xf5, 0x48, 0x15, 0x7d, + 0xec, 0x11, 0x9e, 0x55, 0xe5, 0x5c, 0x91, 0x54, 0x91, 0x7f, 0xa2, 0x06, 0x94, 0x7d, 0x6c, 0x78, + 0xdd, 0x3d, 0xec, 0xaf, 0x16, 0x68, 0x56, 0xf8, 0x4d, 0xb8, 0x1c, 0x37, 0xb0, 0x1c, 0xdb, 0x5f, + 0x2d, 0x32, 0x2e, 0xfe, 0xa9, 0xfe, 0x8a, 0x02, 0xd5, 0xb6, 0xe3, 0x05, 0x0f, 0x0c, 0xd7, 0xb5, + 0xec, 0x1e, 0xba, 0x06, 0x65, 0xaa, 0xcb, 0xae, 0xd3, 0xa7, 0x3a, 0x98, 0xbf, 0xbe, 0x74, 0x25, + 0xea, 0x90, 0x2b, 0x6d, 0x9e, 0xa7, 0x85, 0x54, 0xe8, 0x39, 0x98, 0xef, 0x3a, 0x76, 0x60, 0x58, + 0x36, 0xf6, 0x74, 0xd7, 0xf1, 0x02, 0xaa, 0x9c, 0x69, 0xad, 0x16, 0xa6, 0x12, 0xf9, 0xe8, 0x24, + 0x54, 0xf6, 0x1c, 0x3f, 0x60, 0x14, 0x45, 0x4a, 0x51, 0x26, 0x09, 0x34, 0x73, 0x05, 0x66, 0x69, + 0xa6, 0xe5, 0x72, 0x35, 0xcc, 0x90, 0xcf, 0x96, 0xab, 0xfe, 0x7b, 0x01, 0xa6, 0x1f, 0x38, 0x43, + 0x3b, 0x48, 0x14, 0x63, 0x04, 0x7b, 0xbc, 0x8b, 0x62, 0xc5, 0x18, 0xc1, 0x5e, 0x54, 0x0c, 0xa1, + 0x60, 0xbd, 0xc4, 0x8a, 0x21, 0x99, 0x0d, 0x28, 0x7b, 0xd8, 0x30, 0x1d, 0xbb, 0x7f, 0x40, 0xab, + 0x50, 0xd6, 0xc2, 0x6f, 0xd2, 0x7d, 0x3e, 0xee, 0x5b, 0xf6, 0xf0, 0xa9, 0xee, 0xe1, 0xbe, 0xf1, + 0x08, 0xf7, 0x69, 0x55, 0xca, 0xda, 0x3c, 0x4f, 0xd6, 0x58, 0x2a, 0x7a, 0x07, 0xaa, 0xae, 0xe7, + 0xb8, 0x46, 0xcf, 0x20, 0x1a, 0x5c, 0x9d, 0xa6, 0x4a, 0x3a, 0x15, 0x57, 0x12, 0xad, 0x70, 0x3b, + 0xa2, 0xd1, 0xe2, 0x0c, 0xe8, 0x0d, 0xa8, 0x0e, 0x2d, 0x93, 0xeb, 0xdb, 0x5f, 0x9d, 0x39, 0x57, + 0xbc, 0x50, 0xbd, 0x7e, 0x3c, 0xce, 0xdf, 0x5a, 0xe7, 0xb9, 0x5a, 0x9c, 0x92, 0x30, 0xf6, 0x62, + 0x8c, 0xb3, 0x23, 0x19, 0x63, 0x94, 0xd4, 0xe0, 0x70, 0x77, 0xe8, 0xf9, 0xd6, 0x3e, 0xd6, 0x49, + 0x83, 0x75, 0xaa, 0x81, 0x32, 0x6d, 0xde, 0x62, 0x98, 0xa5, 0x61, 0xc3, 0xdc, 0xb2, 0xfb, 0x07, + 0xaa, 0x0e, 0x95, 0x50, 0x52, 0xd4, 0x35, 0x26, 0x55, 0x78, 0x8d, 0x77, 0x8d, 0x49, 0x86, 0x44, + 0xd4, 0x21, 0x96, 0x49, 0x95, 0x5d, 0xd3, 0xaa, 0x61, 0x5a, 0xcb, 0x44, 0xcb, 0x30, 0xd3, 0xc7, + 0x76, 0x2f, 0xd8, 0xa3, 0xda, 0xae, 0x69, 0xfc, 0x4b, 0xfd, 0x45, 0x05, 0x6a, 0x3b, 0x3e, 0xf6, + 0xc8, 0xb8, 0xf1, 0x5d, 0xa3, 0x8b, 0xd1, 0x65, 0x28, 0x0d, 0x1c, 0x13, 0x73, 0x93, 0x3b, 0x11, + 0x6f, 0x54, 0x48, 0xf4, 0xc0, 0x31, 0xb1, 0x46, 0xc9, 0xd0, 0x45, 0x28, 0x0d, 0x2d, 0x93, 0xd9, + 0x79, 0xae, 0x0e, 0x28, 0x09, 0x21, 0xed, 0x11, 0xd2, 0xe2, 0x48, 0x52, 0x42, 0xa2, 0xfe, 0x4c, + 0x81, 0x85, 0xb0, 0xb4, 0x2d, 0x3a, 0x40, 0xd0, 0x2b, 0x30, 0x6b, 0xe3, 0xe0, 0x89, 0xe3, 0x3d, + 0x1e, 0x5f, 0x37, 0x41, 0x89, 0x5e, 0x84, 0xa2, 0xcb, 0x35, 0x32, 0x92, 0x81, 0x50, 0x11, 0x62, + 0xcb, 0xed, 0x52, 0x0d, 0x8d, 0x26, 0xb6, 0xdc, 0x2e, 0x31, 0xef, 0xc0, 0xf0, 0x7a, 0x98, 0xf6, + 0x07, 0x1b, 0x2a, 0x65, 0x96, 0xd0, 0x32, 0xd1, 0x6d, 0x98, 0x1f, 0xfa, 0xd8, 0xb3, 0x7d, 0x5d, + 0x0c, 0x76, 0x62, 0x9c, 0x55, 0x59, 0xa8, 0xa4, 0x77, 0xad, 0xc6, 0x18, 0xb6, 0xb8, 0x37, 0x50, + 0x01, 0x5a, 0x76, 0xf0, 0xfa, 0xab, 0x0f, 0x8d, 0xfe, 0x10, 0xa3, 0x25, 0x98, 0xde, 0x27, 0x3f, + 0x68, 0xcb, 0x8b, 0x1a, 0xfb, 0x50, 0xff, 0xb4, 0x04, 0x27, 0xef, 0x93, 0x01, 0xd1, 0x31, 0x6c, + 0xf3, 0x91, 0xf3, 0xb4, 0x43, 0xec, 0xc7, 0x0a, 0x0e, 0xd6, 0x1c, 0x3b, 0xc0, 0x4f, 0x03, 0xf4, + 0x1e, 0x2c, 0xda, 0x42, 0x7e, 0x58, 0x11, 0x85, 0x56, 0xe4, 0x64, 0x66, 0xeb, 0x58, 0xe1, 0x5a, + 0xdd, 0x96, 0x13, 0x7c, 0x74, 0x27, 0x1a, 0x92, 0x42, 0x4e, 0x21, 0xdd, 0xa0, 0xce, 0x06, 0xad, + 0x0d, 0x97, 0x22, 0x46, 0xab, 0x90, 0xf1, 0x3a, 0x10, 0x27, 0xad, 0x1b, 0xbe, 0x4e, 0x5a, 0x4a, + 0xb5, 0x5c, 0xbd, 0xbe, 0x2c, 0x59, 0x41, 0xd8, 0x60, 0xad, 0xe2, 0x0d, 0xed, 0xa6, 0x4f, 0x34, + 0x84, 0x6e, 0x50, 0x87, 0x4f, 0xf8, 0x7a, 0x9e, 0x33, 0x74, 0xe9, 0x60, 0xc9, 0x67, 0x04, 0xca, + 0x78, 0x8f, 0x50, 0xd2, 0x79, 0x80, 0x3b, 0x15, 0xdd, 0x73, 0x9c, 0x60, 0xd7, 0x17, 0x8e, 0x44, + 0x24, 0x6b, 0x34, 0x15, 0x5d, 0x85, 0x63, 0xfe, 0xd0, 0x75, 0xfb, 0x78, 0x80, 0xed, 0xc0, 0xe8, + 0xb3, 0x82, 0x48, 0x9f, 0x15, 0x2f, 0x14, 0x35, 0x14, 0xcf, 0xa2, 0x82, 0x7d, 0x74, 0x06, 0xc0, + 0xf5, 0xac, 0x7d, 0xab, 0x8f, 0x7b, 0xd8, 0x5c, 0x9d, 0xa1, 0x42, 0x63, 0x29, 0xe8, 0x35, 0x32, + 0x37, 0x74, 0xbb, 0xce, 0xc0, 0x5d, 0xad, 0xa4, 0xf5, 0x2d, 0xfa, 0xa9, 0xed, 0x39, 0xbb, 0x56, + 0x1f, 0x6b, 0x82, 0x16, 0xbd, 0x01, 0x65, 0xc3, 0x75, 0x0d, 0x6f, 0xe0, 0x78, 0xab, 0x30, 0x9e, + 0x2f, 0x24, 0x46, 0xaf, 0xc2, 0x12, 0x97, 0xa1, 0xbb, 0x2c, 0x93, 0xb9, 0xdd, 0x59, 0x62, 0x97, + 0x77, 0x0a, 0xab, 0x8a, 0x86, 0x78, 0x3e, 0xe7, 0x25, 0x4e, 0x58, 0xfd, 0x4b, 0x05, 0x16, 0x12, + 0x32, 0xd1, 0xfb, 0x30, 0x27, 0x24, 0x04, 0x07, 0xae, 0x70, 0x03, 0x2f, 0x8c, 0xa8, 0xc6, 0x15, + 0xfe, 0x77, 0xfb, 0xc0, 0xc5, 0xd4, 0xbf, 0x8a, 0x0f, 0xf4, 0x0c, 0xd4, 0xfa, 0x4e, 0xd7, 0xe8, + 0x53, 0xaf, 0xe5, 0xe1, 0x5d, 0x3e, 0x0b, 0xcc, 0x85, 0x89, 0x1a, 0xde, 0x55, 0x6f, 0x43, 0x35, + 0x26, 0x00, 0x21, 0x98, 0xd7, 0x58, 0x51, 0xeb, 0x78, 0xd7, 0x18, 0xf6, 0x83, 0xfa, 0x14, 0x9a, + 0x07, 0xd8, 0xb1, 0xbb, 0x64, 0xd6, 0xb5, 0xb1, 0x59, 0x57, 0x50, 0x0d, 0x2a, 0xf7, 0x85, 0x88, + 0x7a, 0x41, 0xfd, 0x5e, 0x11, 0x8e, 0x53, 0xc3, 0x6b, 0x3b, 0x26, 0x1f, 0x09, 0x7c, 0x8a, 0x7e, + 0x06, 0x6a, 0x5d, 0xda, 0x97, 0xba, 0x6b, 0x78, 0xd8, 0x0e, 0xf8, 0x44, 0x35, 0xc7, 0x12, 0xdb, + 0x34, 0x0d, 0x69, 0x50, 0xf7, 0x79, 0x8b, 0xf4, 0x2e, 0x1b, 0x39, 0xdc, 0xb8, 0xa5, 0x56, 0x8f, + 0x18, 0x68, 0xda, 0x82, 0x9f, 0x1a, 0x79, 0xb3, 0xfe, 0x81, 0xdf, 0x0d, 0xfa, 0xc2, 0xdb, 0x5d, + 0x49, 0x89, 0x4a, 0x56, 0xf6, 0x4a, 0x87, 0x31, 0x6c, 0xd8, 0x81, 0x77, 0xa0, 0x09, 0x76, 0xf4, + 0x2e, 0x94, 0x9d, 0x7d, 0xec, 0xed, 0x61, 0x83, 0x79, 0x99, 0xea, 0xf5, 0x67, 0x52, 0xa2, 0xd6, + 0x84, 0xa3, 0xd7, 0xb0, 0xef, 0x0c, 0xbd, 0x2e, 0xf6, 0xb5, 0x90, 0x09, 0x35, 0xa1, 0xe2, 0x89, + 0x64, 0xee, 0x85, 0x26, 0x92, 0x10, 0x71, 0x35, 0x6e, 0xc1, 0x5c, 0xbc, 0x72, 0xa8, 0x0e, 0xc5, + 0xc7, 0xf8, 0x80, 0x2b, 0x93, 0xfc, 0x8c, 0xfc, 0x13, 0xeb, 0x61, 0xf6, 0x71, 0xab, 0x70, 0x43, + 0x51, 0x3d, 0x40, 0x51, 0x4b, 0x1f, 0xe0, 0xc0, 0x30, 0x8d, 0xc0, 0x40, 0x08, 0x4a, 0x34, 0x78, + 0x63, 0x22, 0xe8, 0x6f, 0x22, 0x75, 0xc8, 0x5d, 0x75, 0x45, 0x23, 0x3f, 0xd1, 0x29, 0xa8, 0x84, + 0x9e, 0x88, 0x47, 0x70, 0x51, 0x02, 0x89, 0xa4, 0x8c, 0x20, 0xc0, 0x03, 0x37, 0xa0, 0x8a, 0xa9, + 0x69, 0xe2, 0x53, 0xfd, 0xff, 0xd3, 0x50, 0x4f, 0xd9, 0xc2, 0x2d, 0x28, 0x0f, 0x78, 0xf1, 0xdc, + 0x07, 0x9e, 0x91, 0xc2, 0xa9, 0x54, 0x25, 0xb5, 0x90, 0x9e, 0x44, 0x2b, 0xc4, 0xd6, 0x62, 0xf1, + 0x66, 0xf8, 0xcd, 0x8c, 0xbc, 0xa7, 0x9b, 0x96, 0x87, 0xbb, 0x81, 0xe3, 0x1d, 0xf0, 0x8a, 0xce, + 0xf5, 0x9d, 0xde, 0xba, 0x48, 0x43, 0xaf, 0x02, 0x98, 0xb6, 0xaf, 0x53, 0x1b, 0xee, 0xf1, 0x7e, + 0x94, 0x26, 0xc0, 0x30, 0xac, 0xd4, 0x2a, 0xa6, 0xed, 0xf3, 0x2a, 0xbf, 0x05, 0x35, 0x12, 0xa3, + 0xe9, 0x03, 0x11, 0x68, 0x4c, 0x53, 0x5b, 0x5a, 0x91, 0xeb, 0x1d, 0x46, 0x8c, 0xda, 0x9c, 0x1b, + 0x7d, 0xf8, 0xe8, 0x36, 0xcc, 0xd0, 0x30, 0x49, 0x04, 0x36, 0x17, 0xb2, 0x9b, 0xcb, 0xad, 0xef, + 0x3e, 0x25, 0x65, 0xc6, 0xc7, 0xf9, 0xd0, 0x16, 0x54, 0x0d, 0xdb, 0x76, 0x02, 0x83, 0x79, 0x7c, + 0x16, 0xe6, 0x5c, 0x1e, 0x29, 0xa6, 0x19, 0xd1, 0x33, 0x59, 0x71, 0x09, 0xe8, 0x0d, 0x98, 0xa6, + 0x53, 0x02, 0xf7, 0xe1, 0xe7, 0xc7, 0x0e, 0x0a, 0x8d, 0xd1, 0xa3, 0xb7, 0x61, 0xf6, 0x89, 0x65, + 0x9b, 0xce, 0x13, 0x9f, 0xfb, 0x53, 0xc9, 0x84, 0xbf, 0xc2, 0xb2, 0x52, 0xcc, 0x82, 0xa7, 0x71, + 0x13, 0xaa, 0xb1, 0xf6, 0x1d, 0xc6, 0x7e, 0x1b, 0xef, 0x40, 0x3d, 0xd9, 0xa6, 0x43, 0xd9, 0xff, + 0x10, 0x96, 0xb4, 0xa1, 0x1d, 0x55, 0x4d, 0x2c, 0x87, 0x5e, 0x85, 0x19, 0x6e, 0x0d, 0xcc, 0x18, + 0x4f, 0x8d, 0x52, 0xab, 0xc6, 0x69, 0xe3, 0x2b, 0x9b, 0x3d, 0xc3, 0x36, 0xfb, 0xd8, 0xe3, 0x25, + 0x8a, 0x95, 0xcd, 0x7b, 0x2c, 0x55, 0x7d, 0x1b, 0x8e, 0x27, 0x8a, 0xe5, 0x0b, 0xab, 0x67, 0x61, + 0xde, 0x75, 0x4c, 0xdd, 0x67, 0xc9, 0x22, 0x96, 0xac, 0x10, 0xdb, 0x11, 0xb4, 0x2d, 0x93, 0xb0, + 0x77, 0x02, 0xc7, 0x4d, 0x57, 0x7b, 0x32, 0xf6, 0x55, 0x58, 0x4e, 0xb2, 0xb3, 0xe2, 0xd5, 0x77, + 0x61, 0x45, 0xc3, 0x03, 0x67, 0x1f, 0x1f, 0x55, 0x74, 0x03, 0x56, 0xd3, 0x02, 0xb8, 0xf0, 0x0f, + 0x60, 0x25, 0x4a, 0xed, 0x04, 0x46, 0x30, 0xf4, 0x0f, 0x25, 0x9c, 0xaf, 0x3a, 0x1f, 0x39, 0x3e, + 0xeb, 0xc8, 0xb2, 0x26, 0x3e, 0xd5, 0x15, 0x98, 0x6e, 0x3b, 0x66, 0xab, 0x8d, 0xe6, 0xa1, 0x60, + 0xb9, 0x9c, 0xb9, 0x60, 0xb9, 0x6a, 0x37, 0x5e, 0xe6, 0x26, 0x8b, 0x3a, 0x59, 0xd1, 0x49, 0x52, + 0x74, 0x03, 0xe6, 0x0d, 0xd3, 0xb4, 0x88, 0x21, 0x19, 0x7d, 0xdd, 0x72, 0x45, 0xd0, 0xbc, 0x98, + 0xe8, 0xfa, 0x56, 0x5b, 0xab, 0x45, 0x84, 0x2d, 0xd7, 0x57, 0xef, 0x40, 0x25, 0x0a, 0xd0, 0x5f, + 0x8b, 0x56, 0x90, 0x85, 0xf1, 0xb1, 0x5c, 0xb8, 0xbc, 0xdc, 0x4c, 0x4d, 0x92, 0xbc, 0x9a, 0xaf, + 0x01, 0x84, 0x4e, 0x55, 0x84, 0x87, 0xc7, 0x33, 0x45, 0x6a, 0x31, 0x42, 0xf5, 0x9f, 0x4a, 0x71, + 0x27, 0x1b, 0x6b, 0xb2, 0x19, 0x36, 0xd9, 0x94, 0x9c, 0x6e, 0xe1, 0x90, 0x4e, 0xf7, 0x65, 0x98, + 0xf6, 0x03, 0x23, 0xc0, 0x3c, 0x1e, 0x3f, 0x99, 0xcd, 0x48, 0x0a, 0xc6, 0x1a, 0xa3, 0x44, 0xa7, + 0x01, 0xba, 0x1e, 0x36, 0x02, 0x6c, 0xea, 0x06, 0x9b, 0x15, 0x8a, 0x5a, 0x85, 0xa7, 0x34, 0x03, + 0xe2, 0x45, 0xc4, 0x0a, 0x22, 0x63, 0x22, 0xcc, 0xe9, 0xc6, 0x68, 0x2d, 0x11, 0x7a, 0xaf, 0x99, + 0xb1, 0xde, 0x8b, 0xb3, 0x72, 0xef, 0x15, 0x79, 0xe2, 0xd9, 0x51, 0x9e, 0x98, 0x31, 0x4d, 0xe2, + 0x89, 0xcb, 0xa3, 0x3c, 0x31, 0x17, 0x33, 0xda, 0x13, 0x67, 0x38, 0x92, 0x4a, 0x96, 0x23, 0xf9, + 0x3c, 0x5d, 0xe7, 0x1f, 0x15, 0x60, 0x35, 0x3d, 0x9e, 0xb9, 0x1f, 0x7b, 0x15, 0x66, 0x7c, 0x9a, + 0x32, 0xda, 0x7f, 0x72, 0x2e, 0x4e, 0x8b, 0xee, 0x40, 0xc9, 0xb2, 0x77, 0x1d, 0x3e, 0xf0, 0xae, + 0x8c, 0xe4, 0xe1, 0x25, 0x5d, 0x69, 0xd9, 0xbb, 0x0e, 0xd3, 0x20, 0xe5, 0x45, 0xf7, 0xe1, 0x58, + 0xb8, 0xb2, 0xf6, 0x75, 0x26, 0x18, 0x8b, 0x38, 0x4f, 0xb2, 0xd2, 0x30, 0xaa, 0xe2, 0x12, 0x51, + 0xc4, 0xd7, 0xe1, 0x6c, 0x24, 0xc6, 0x21, 0xe4, 0x7e, 0x60, 0x0c, 0x5c, 0x61, 0xb1, 0x61, 0x42, + 0xe3, 0x0d, 0xa8, 0x84, 0xc5, 0x1f, 0x4a, 0x77, 0x2d, 0x58, 0x4a, 0x8c, 0x11, 0xb6, 0x90, 0x0c, + 0x07, 0x95, 0x32, 0xe9, 0xa0, 0x52, 0x7f, 0xaa, 0xc4, 0x07, 0xfa, 0x5d, 0xab, 0x1f, 0x60, 0x2f, + 0x35, 0xd0, 0x5f, 0x17, 0x72, 0xd9, 0x28, 0x3f, 0x37, 0x42, 0x2e, 0x5b, 0xa7, 0xf1, 0x11, 0xfb, + 0x10, 0xe6, 0xa9, 0x89, 0xeb, 0x3e, 0xee, 0xd3, 0x58, 0x89, 0xeb, 0xf1, 0x6a, 0xb6, 0x00, 0x56, + 0x3a, 0x1b, 0x22, 0x1d, 0xce, 0xc1, 0xfa, 0xa6, 0xd6, 0x8f, 0xa7, 0x35, 0x6e, 0x03, 0x4a, 0x13, + 0x1d, 0x4a, 0x83, 0x0f, 0x88, 0xbf, 0xf4, 0x83, 0xcc, 0x99, 0x7b, 0x97, 0x56, 0x63, 0xb4, 0xe5, + 0xb1, 0xaa, 0x6a, 0x9c, 0x56, 0xfd, 0x87, 0x22, 0x40, 0x94, 0xf9, 0x05, 0x77, 0x94, 0xb7, 0x42, + 0x87, 0xc5, 0x22, 0x4e, 0x35, 0x5b, 0x64, 0xa6, 0xab, 0x6a, 0xc9, 0xae, 0x8a, 0xc5, 0x9e, 0x2f, + 0xe4, 0x08, 0x38, 0xb4, 0x93, 0x9a, 0xfd, 0xa2, 0x39, 0xa9, 0xbb, 0xb0, 0x9c, 0x34, 0x13, 0xee, + 0xa1, 0x5e, 0x82, 0x69, 0x2b, 0xc0, 0x03, 0xb6, 0x3b, 0x9c, 0xd8, 0xb0, 0x88, 0x91, 0x33, 0x22, + 0xf5, 0x1d, 0x58, 0x96, 0xfb, 0xea, 0x70, 0xa1, 0x8b, 0x7a, 0x3f, 0x19, 0xfb, 0x44, 0xae, 0x92, + 0xdb, 0x47, 0xe6, 0xd6, 0x4f, 0x92, 0x87, 0x51, 0xaa, 0x3f, 0x50, 0xe0, 0x78, 0x22, 0x2b, 0x67, + 0xe0, 0x7f, 0x2d, 0x35, 0x80, 0x99, 0x6f, 0x7d, 0x75, 0x44, 0x29, 0x9f, 0xe1, 0x28, 0xfe, 0x0a, + 0x34, 0xe4, 0xee, 0x91, 0x54, 0x7b, 0x33, 0x31, 0x94, 0xcf, 0x8f, 0xad, 0x74, 0x38, 0x9e, 0xdb, + 0x70, 0x32, 0x53, 0x70, 0x5a, 0xe7, 0xc5, 0x09, 0x75, 0xfe, 0x1f, 0x85, 0xb8, 0xcf, 0x6e, 0x06, + 0x81, 0x67, 0x3d, 0x1a, 0x06, 0xf8, 0xd3, 0x0d, 0xaa, 0xd6, 0xc3, 0x91, 0xcd, 0xfc, 0xec, 0x4b, + 0xd9, 0x9c, 0x51, 0xe9, 0x99, 0x63, 0xbc, 0x23, 0x8f, 0xf1, 0x12, 0x15, 0xf5, 0xf2, 0x58, 0x51, + 0x23, 0x47, 0xfb, 0xe7, 0x39, 0x88, 0xff, 0x5a, 0x81, 0x85, 0x44, 0xaf, 0xa0, 0xdb, 0x00, 0x46, + 0x58, 0x75, 0x6e, 0x1f, 0xe7, 0xc6, 0x35, 0x51, 0x8b, 0xf1, 0x90, 0x39, 0x91, 0xc5, 0x8b, 0x19, + 0x73, 0x62, 0x46, 0xbc, 0x18, 0x86, 0x8b, 0x6f, 0x45, 0x8b, 0x5d, 0xb6, 0x49, 0xaa, 0x8e, 0x5c, + 0xec, 0x32, 0x5e, 0xc1, 0xa2, 0xfe, 0x42, 0x01, 0x96, 0xb2, 0xa4, 0xa3, 0xe7, 0xa1, 0xd8, 0x75, + 0x87, 0xbc, 0x25, 0xd2, 0x51, 0xd2, 0x9a, 0x3b, 0xdc, 0xf1, 0x8d, 0x1e, 0xd6, 0x08, 0x01, 0xba, + 0x0a, 0x33, 0x03, 0x3c, 0x70, 0xbc, 0x03, 0x5e, 0x6f, 0x69, 0xbb, 0xe1, 0x01, 0xcd, 0x61, 0xd4, + 0x9c, 0x0c, 0x5d, 0x8f, 0xc2, 0x6a, 0x56, 0xdf, 0x55, 0x69, 0xf5, 0xc0, 0xb2, 0x18, 0x4b, 0x18, + 0x4b, 0x5f, 0x87, 0x59, 0xd7, 0x73, 0xba, 0xd8, 0xf7, 0xf9, 0x6e, 0xc8, 0x6a, 0xe2, 0x6c, 0x8b, + 0x64, 0x71, 0x1e, 0x4e, 0x88, 0x6e, 0x01, 0x44, 0x01, 0x14, 0x9f, 0x99, 0x1a, 0xb9, 0xf1, 0x96, + 0xaf, 0xc5, 0xa8, 0xd5, 0xef, 0x17, 0x60, 0x39, 0x5b, 0x73, 0xe8, 0x72, 0x5c, 0x2f, 0x27, 0x33, + 0x54, 0x2d, 0xab, 0xe7, 0xf5, 0x84, 0x7a, 0xce, 0x64, 0x70, 0x64, 0x69, 0xe9, 0x66, 0x52, 0x4b, + 0x67, 0x33, 0x18, 0xb3, 0x95, 0x75, 0x33, 0xa9, 0xac, 0x2c, 0xd6, 0x6c, 0x9d, 0x35, 0x33, 0x74, + 0x76, 0x3e, 0xab, 0x8d, 0xf9, 0xaa, 0xfb, 0x73, 0x05, 0xe6, 0xe2, 0xf5, 0x92, 0x43, 0x56, 0x25, + 0x11, 0xb2, 0xa2, 0x4d, 0x58, 0x34, 0xd9, 0xce, 0xad, 0x6e, 0xd9, 0x01, 0xf6, 0x76, 0x8d, 0xae, + 0x88, 0x0a, 0xcf, 0x67, 0xd8, 0x45, 0x4b, 0xd0, 0xb0, 0x8a, 0xd7, 0x39, 0x6f, 0x98, 0x4c, 0x5a, + 0x10, 0xca, 0x11, 0x5e, 0x6b, 0x02, 0x41, 0x31, 0x26, 0xf5, 0xef, 0x15, 0x38, 0x96, 0xa1, 0xe0, + 0x31, 0x0d, 0xd9, 0xc9, 0x6f, 0xc8, 0x85, 0xfc, 0xae, 0x1b, 0xdb, 0x9e, 0xf7, 0x32, 0xda, 0x33, + 0xb9, 0xbc, 0x78, 0xb3, 0x7e, 0xa6, 0xc0, 0xf1, 0x4c, 0xaa, 0xcc, 0xed, 0xd5, 0xeb, 0x50, 0xf6, + 0x9e, 0xea, 0x8f, 0x0e, 0x02, 0xec, 0x67, 0x0d, 0xec, 0x9d, 0xd8, 0x19, 0xca, 0xac, 0xf7, 0xf4, + 0x0e, 0xa1, 0x43, 0xaf, 0x42, 0xc5, 0x7b, 0xaa, 0x63, 0xcf, 0x73, 0x3c, 0xe1, 0x8b, 0x72, 0x99, + 0xca, 0xde, 0xd3, 0x0d, 0x4a, 0x48, 0x4a, 0x0a, 0x44, 0x49, 0xa5, 0x31, 0x25, 0x05, 0x51, 0x49, + 0x41, 0x58, 0xd2, 0xf4, 0x98, 0x92, 0x02, 0x5e, 0x92, 0xfa, 0x5b, 0x05, 0x38, 0x35, 0x4a, 0x5d, + 0x9f, 0x9a, 0x22, 0x36, 0x00, 0x79, 0x4f, 0x75, 0xd7, 0xe8, 0x3e, 0xc6, 0x81, 0xaf, 0x9b, 0x9e, + 0xe3, 0xba, 0xd8, 0x1c, 0xa7, 0x91, 0xba, 0xf7, 0xb4, 0xcd, 0x38, 0xd6, 0x19, 0xc3, 0x91, 0x34, + 0xb3, 0x01, 0x28, 0x48, 0x17, 0x3d, 0x46, 0x45, 0xf5, 0x20, 0x51, 0xb4, 0xfa, 0x11, 0xcc, 0xc5, + 0x3d, 0xc4, 0x18, 0xdb, 0x7f, 0x0b, 0x6a, 0xdc, 0x83, 0xe8, 0x5d, 0x67, 0x68, 0x07, 0xe3, 0x14, + 0x35, 0xc7, 0xa9, 0xd7, 0x08, 0xb1, 0xfa, 0x8d, 0x70, 0xb8, 0x7d, 0x66, 0x45, 0xfe, 0xdf, 0x02, + 0x54, 0x5a, 0x03, 0xa3, 0x87, 0x3b, 0x2e, 0xee, 0x92, 0x99, 0xde, 0x22, 0x1f, 0xbc, 0xdf, 0xd9, + 0x07, 0x7a, 0x4f, 0x8e, 0x5a, 0x58, 0x9c, 0xfa, 0xbc, 0x74, 0x8e, 0x28, 0x24, 0x8c, 0x59, 0x98, + 0x5c, 0x83, 0xa5, 0xa1, 0x8f, 0x3d, 0xdd, 0x77, 0x71, 0xd7, 0xda, 0xb5, 0xb0, 0xa9, 0xb3, 0xe2, + 0x10, 0x2d, 0x0e, 0x91, 0xbc, 0x8e, 0xc8, 0xa2, 0x32, 0xb3, 0x96, 0x32, 0xc7, 0x32, 0x97, 0x32, + 0x9f, 0x34, 0x94, 0xb9, 0x0e, 0xe5, 0x2f, 0xe1, 0x03, 0xb6, 0xd8, 0x9f, 0x90, 0x4f, 0xfd, 0x4e, + 0x09, 0x56, 0x72, 0x8e, 0x81, 0xe8, 0x4a, 0xd1, 0x1d, 0xea, 0x2e, 0xf6, 0x2c, 0xc7, 0x14, 0xbd, + 0xd6, 0x75, 0x87, 0x6d, 0x9a, 0x80, 0x4e, 0x02, 0xf9, 0xd0, 0xbf, 0x31, 0x74, 0x78, 0x30, 0x5a, + 0xd4, 0xca, 0x5d, 0x77, 0xf8, 0x65, 0xf2, 0x2d, 0x78, 0xfd, 0x3d, 0xc3, 0xc3, 0xcc, 0x7f, 0x30, + 0xde, 0x0e, 0x4d, 0x40, 0x2f, 0xc3, 0x71, 0x36, 0x37, 0xea, 0x7d, 0x6b, 0x60, 0x11, 0x2f, 0x1b, + 0x1b, 0x1a, 0x45, 0x0d, 0xb1, 0xcc, 0xfb, 0x24, 0xaf, 0x65, 0xb3, 0xc1, 0xa0, 0x42, 0xcd, 0x71, + 0x06, 0xba, 0xdf, 0x75, 0x3c, 0xac, 0x1b, 0xe6, 0x47, 0x74, 0x1c, 0x14, 0xb5, 0xaa, 0xe3, 0x0c, + 0x3a, 0x24, 0xad, 0x69, 0x7e, 0x84, 0xce, 0x42, 0xb5, 0xeb, 0x0e, 0x7d, 0x1c, 0xe8, 0xe4, 0x0f, + 0xdd, 0xac, 0xab, 0x68, 0xc0, 0x92, 0xd6, 0xdc, 0xa1, 0x1f, 0x23, 0x18, 0x90, 0xe5, 0xd9, 0x6c, + 0x9c, 0xe0, 0x01, 0x1e, 0xd0, 0xd3, 0xee, 0xbd, 0x61, 0x0f, 0xbb, 0x46, 0x0f, 0xb3, 0xaa, 0x89, + 0x1d, 0x37, 0xe9, 0xb4, 0xfb, 0x3d, 0x4e, 0x42, 0x2b, 0xa8, 0xcd, 0xef, 0xc5, 0x3f, 0x7d, 0xf4, + 0x3e, 0xcc, 0x0e, 0x6d, 0x6a, 0x00, 0xab, 0x15, 0xca, 0x7b, 0x6d, 0x82, 0x43, 0xb7, 0x2b, 0x3b, + 0x8c, 0x85, 0x9f, 0x01, 0x72, 0x01, 0xe8, 0x16, 0x34, 0xb8, 0xa2, 0xfc, 0x27, 0x86, 0x9b, 0xd4, + 0x16, 0x50, 0x15, 0x2c, 0x33, 0x8a, 0xce, 0x13, 0xc3, 0x8d, 0x6b, 0xac, 0x71, 0x0b, 0xe6, 0xe2, + 0x42, 0x0f, 0x65, 0x4b, 0x77, 0xa0, 0x26, 0x35, 0x92, 0xf4, 0x36, 0x55, 0x8a, 0x6f, 0x7d, 0x53, + 0x8c, 0xad, 0x32, 0x49, 0xe8, 0x58, 0xdf, 0xa4, 0x18, 0x05, 0x5a, 0x33, 0x2a, 0xa7, 0xa4, 0xb1, + 0x0f, 0xd5, 0x80, 0x9a, 0x04, 0x0b, 0x20, 0x2e, 0x99, 0x9e, 0xff, 0x73, 0x97, 0x4c, 0x7e, 0x93, + 0x34, 0xcf, 0xe9, 0x8b, 0x1a, 0xd0, 0xdf, 0x24, 0x8d, 0x1e, 0x40, 0xb3, 0xe3, 0x34, 0xfa, 0x9b, + 0x16, 0x81, 0xf7, 0x39, 0x1e, 0xa8, 0xa2, 0xb1, 0x0f, 0xf5, 0x57, 0x15, 0x80, 0x35, 0xc3, 0x35, + 0x1e, 0x59, 0x7d, 0x2b, 0x38, 0x40, 0x17, 0xa1, 0x6e, 0x98, 0xa6, 0xde, 0x15, 0x29, 0x16, 0x16, + 0x00, 0xad, 0x05, 0xc3, 0x34, 0xd7, 0x62, 0xc9, 0xe8, 0x45, 0x58, 0x24, 0x0e, 0x55, 0xa6, 0x65, + 0x88, 0xad, 0x3a, 0xc9, 0x90, 0x88, 0x6f, 0xc0, 0x2a, 0x91, 0x6b, 0x0c, 0x1e, 0x59, 0xd8, 0x0e, + 0x64, 0x1e, 0x06, 0xe5, 0x5a, 0x36, 0x4c, 0xb3, 0xc9, 0xb2, 0xe3, 0x9c, 0xea, 0x9f, 0xcd, 0xc0, + 0x69, 0xb9, 0xc7, 0x93, 0x48, 0x8d, 0x5b, 0x30, 0x97, 0xa8, 0x6f, 0x0a, 0xe3, 0x10, 0xb5, 0x50, + 0x93, 0x68, 0x13, 0x58, 0x84, 0x42, 0x0a, 0x8b, 0x90, 0x89, 0x02, 0x29, 0x7e, 0x4a, 0x28, 0x90, + 0xd2, 0x27, 0x44, 0x81, 0x4c, 0x1f, 0x15, 0x05, 0x32, 0x37, 0x31, 0x0a, 0xe4, 0x79, 0xea, 0x7a, + 0x45, 0x89, 0x34, 0x1c, 0x60, 0x3e, 0xa1, 0x16, 0x4a, 0xb7, 0x05, 0x6a, 0x30, 0x81, 0x16, 0x99, + 0x3d, 0x0c, 0x5a, 0xa4, 0x9c, 0x8b, 0x16, 0x39, 0x07, 0x73, 0xb6, 0xa3, 0xdb, 0xf8, 0x89, 0x4e, + 0xba, 0xc5, 0x5f, 0xad, 0xb2, 0x3e, 0xb2, 0x9d, 0x4d, 0xfc, 0xa4, 0x4d, 0x52, 0xd0, 0x79, 0x98, + 0x1b, 0x18, 0xfe, 0x63, 0x6c, 0x52, 0xd8, 0x86, 0xbf, 0x5a, 0xa3, 0xf6, 0x54, 0x65, 0x69, 0x6d, + 0x92, 0x84, 0x9e, 0x83, 0xb0, 0x1e, 0x9c, 0x68, 0x9e, 0x12, 0xd5, 0x44, 0x2a, 0x23, 0x8b, 0x21, + 0x4f, 0x16, 0x8e, 0x88, 0x3c, 0xa9, 0x1f, 0x06, 0x79, 0x72, 0x19, 0xea, 0xe2, 0xb7, 0x80, 0x9e, + 0xb0, 0x93, 0x04, 0x8a, 0x3a, 0x59, 0x10, 0x79, 0x02, 0x5e, 0x92, 0x07, 0x54, 0x81, 0x91, 0x40, + 0x95, 0xdf, 0x56, 0xf8, 0x9a, 0x36, 0x1c, 0x40, 0xfc, 0x84, 0x5c, 0x02, 0x37, 0x28, 0x47, 0x01, + 0x37, 0xa0, 0xed, 0x5c, 0xf8, 0xc7, 0xc5, 0x7c, 0x49, 0xe3, 0x00, 0x20, 0xea, 0x83, 0x70, 0xb9, + 0xf9, 0x69, 0xc0, 0xd8, 0xd4, 0x7f, 0x51, 0xe0, 0x34, 0x97, 0x97, 0x83, 0xf5, 0xca, 0xb0, 0x72, + 0x25, 0xc7, 0xca, 0xbb, 0x1e, 0x36, 0xb1, 0x1d, 0x58, 0x46, 0x9f, 0x06, 0x30, 0xe2, 0x04, 0x39, + 0x4a, 0xa6, 0x31, 0xd4, 0x79, 0x98, 0x63, 0xf0, 0x4d, 0xbe, 0xf2, 0x64, 0x28, 0xcd, 0x2a, 0x45, + 0x70, 0xf2, 0xc5, 0xe5, 0x56, 0x96, 0x67, 0x29, 0xe5, 0x6e, 0x59, 0x8c, 0x75, 0x30, 0xaa, 0x03, + 0x2b, 0x39, 0x67, 0xf9, 0x99, 0xdd, 0xa4, 0xa4, 0xbb, 0x69, 0xa4, 0x92, 0xd2, 0xdd, 0xf4, 0x1d, + 0x05, 0xce, 0xa6, 0x56, 0xc0, 0x9f, 0xbf, 0x66, 0xd5, 0xdf, 0x57, 0x42, 0xfb, 0x49, 0x9a, 0xfc, + 0x5a, 0xda, 0xe4, 0x9f, 0x1b, 0xb5, 0xa0, 0xcf, 0x34, 0xfa, 0x87, 0xb9, 0x46, 0xff, 0xe2, 0xc8, + 0xcd, 0x81, 0x71, 0xfa, 0xfc, 0x47, 0x05, 0x4e, 0xe4, 0x56, 0x20, 0x11, 0x0f, 0x2a, 0xc9, 0x78, + 0x90, 0xc7, 0x92, 0x51, 0xf4, 0xcf, 0x62, 0x49, 0x1a, 0xe0, 0xf3, 0xa0, 0x4d, 0x1f, 0x18, 0x4f, + 0xad, 0xc1, 0x70, 0xc0, 0x83, 0x49, 0x22, 0xee, 0x01, 0x4b, 0x39, 0x4a, 0x34, 0x79, 0x15, 0x96, + 0x98, 0xa3, 0xa7, 0x01, 0x4d, 0xc4, 0xc1, 0x82, 0xca, 0x45, 0x96, 0x47, 0x62, 0x1b, 0xce, 0xa0, + 0x36, 0x61, 0x31, 0x6c, 0xd6, 0x48, 0x2c, 0x53, 0x0c, 0x9b, 0x54, 0x90, 0xb1, 0x49, 0x36, 0xcc, + 0xac, 0xe3, 0x7d, 0xab, 0x8b, 0x3f, 0x15, 0x18, 0xf5, 0x39, 0xa8, 0xba, 0xd8, 0x1b, 0x58, 0xbe, + 0x1f, 0xce, 0xea, 0x15, 0x2d, 0x9e, 0xa4, 0x9e, 0x85, 0xca, 0xda, 0x7a, 0x8b, 0x17, 0x99, 0x51, + 0x55, 0xf5, 0x5f, 0x67, 0x60, 0x21, 0x69, 0x63, 0x37, 0x53, 0x58, 0xa9, 0xd3, 0x99, 0xfb, 0x6c, + 0x19, 0x1b, 0xcc, 0x2f, 0x8a, 0xa5, 0x57, 0x21, 0x0d, 0x24, 0x08, 0x97, 0x57, 0x62, 0x45, 0xb6, + 0x0a, 0xb3, 0x5d, 0x67, 0x30, 0x30, 0x6c, 0x53, 0x80, 0xe1, 0xf9, 0x27, 0xa9, 0xa9, 0xe1, 0xf5, + 0xd8, 0xd6, 0x72, 0x45, 0xa3, 0xbf, 0x89, 0x09, 0x10, 0x67, 0x68, 0xd9, 0x14, 0x6d, 0x45, 0x7b, + 0xa9, 0xa2, 0x01, 0x4f, 0x5a, 0xb7, 0x3c, 0x74, 0x01, 0x4a, 0xd8, 0xde, 0x17, 0x67, 0x4e, 0xd2, + 0x16, 0xa7, 0x58, 0x13, 0x69, 0x94, 0x02, 0x5d, 0x84, 0x99, 0x01, 0x31, 0x2b, 0x71, 0x22, 0xbf, + 0x98, 0x02, 0x8d, 0x6b, 0x9c, 0x00, 0xbd, 0x04, 0xb3, 0x26, 0xd5, 0x9e, 0x58, 0x04, 0x20, 0x09, + 0xb7, 0x45, 0xb3, 0x34, 0x41, 0x82, 0xde, 0x0d, 0xf7, 0xd7, 0x2b, 0xe9, 0x83, 0xaf, 0x84, 0x9a, + 0x33, 0xb7, 0xd6, 0x37, 0xe5, 0x45, 0x2a, 0xa4, 0x77, 0xe9, 0x93, 0x52, 0x46, 0x2f, 0x55, 0x4f, + 0x40, 0xb9, 0xef, 0xf4, 0x98, 0xf5, 0x54, 0xd9, 0x4d, 0x8a, 0xbe, 0xd3, 0xa3, 0xc6, 0xb3, 0x04, + 0xd3, 0x7e, 0x60, 0x5a, 0x36, 0x8d, 0xa5, 0xca, 0x1a, 0xfb, 0x20, 0x83, 0x94, 0xfe, 0xd0, 0x1d, + 0xbb, 0x8b, 0x57, 0x6b, 0x34, 0xab, 0x42, 0x53, 0xb6, 0xec, 0x2e, 0x5d, 0x53, 0x06, 0xc1, 0xc1, + 0xea, 0x3c, 0x4d, 0x27, 0x3f, 0xa3, 0x6d, 0xee, 0x85, 0x9c, 0x6d, 0xee, 0x44, 0x85, 0x33, 0xb6, + 0xb9, 0xeb, 0xb9, 0x73, 0x46, 0x92, 0x57, 0xb0, 0x90, 0x38, 0x72, 0x6d, 0xbd, 0xa5, 0x8b, 0xae, + 0x59, 0x4c, 0x63, 0xca, 0x43, 0xb3, 0xd7, 0x20, 0xfc, 0xf9, 0xb9, 0x9e, 0x32, 0x7c, 0x5f, 0x81, + 0xe5, 0x35, 0x7a, 0xc6, 0x1a, 0xf3, 0x8d, 0x87, 0x81, 0x27, 0xbd, 0x12, 0x62, 0xc6, 0x32, 0x80, + 0x3f, 0x49, 0x4d, 0x09, 0xc8, 0xd8, 0x1a, 0xcc, 0x0b, 0xb1, 0x9c, 0xb9, 0x38, 0x01, 0xe0, 0xac, + 0xe6, 0xc7, 0x3f, 0xd5, 0xb7, 0x60, 0x25, 0x55, 0x73, 0x7e, 0xd2, 0x95, 0xbc, 0x7c, 0xc0, 0x2a, + 0x1e, 0xbf, 0x7c, 0xa0, 0xde, 0x82, 0xe3, 0x9d, 0xc0, 0xf0, 0x82, 0x54, 0xb3, 0x27, 0xe0, 0xa5, + 0x50, 0x32, 0x99, 0x97, 0xa3, 0xbd, 0x3a, 0xb0, 0xd4, 0x09, 0x1c, 0xf7, 0x08, 0x42, 0x89, 0xdf, + 0x21, 0x2d, 0x77, 0x86, 0x62, 0x9e, 0x11, 0x9f, 0xea, 0x0a, 0x03, 0xbe, 0xa5, 0x4b, 0x7b, 0x13, + 0x96, 0x19, 0xee, 0xec, 0x28, 0x8d, 0x38, 0x21, 0x50, 0x6f, 0x69, 0xb9, 0xf7, 0xe0, 0x98, 0xb4, + 0xf7, 0xce, 0x71, 0x1a, 0xd7, 0x64, 0x9c, 0x46, 0xfe, 0x31, 0x47, 0x08, 0xd3, 0xf8, 0x6e, 0x21, + 0xe6, 0xc7, 0x73, 0x0e, 0x6b, 0x5f, 0x93, 0x51, 0x1a, 0x67, 0xf3, 0xa5, 0x4a, 0x20, 0x8d, 0xb4, + 0x75, 0x16, 0x33, 0xac, 0x73, 0x27, 0x75, 0x12, 0x5c, 0x4a, 0xa3, 0x6c, 0x12, 0x35, 0xfc, 0x4c, + 0xce, 0x80, 0xef, 0x33, 0x24, 0x47, 0x58, 0x74, 0x78, 0xfc, 0xfb, 0x4a, 0xe2, 0xf8, 0xf7, 0xe4, + 0x88, 0x9a, 0x86, 0x07, 0xbf, 0xdf, 0x2d, 0x41, 0x25, 0xcc, 0x4b, 0x69, 0x38, 0xad, 0xaa, 0x42, + 0x86, 0xaa, 0xe2, 0xf3, 0x6b, 0xf1, 0x88, 0xf3, 0x6b, 0x69, 0x82, 0xf9, 0xf5, 0x24, 0x54, 0xe8, + 0x0f, 0x0a, 0xbe, 0x67, 0xf3, 0x65, 0x99, 0x26, 0x68, 0x78, 0x37, 0x32, 0xb1, 0x99, 0x09, 0x4d, + 0x2c, 0x81, 0x1a, 0x99, 0x4d, 0xa2, 0x46, 0x6e, 0x86, 0x73, 0x5f, 0x39, 0x7d, 0x4a, 0x13, 0x4a, + 0xcc, 0x9c, 0xf5, 0x12, 0x5b, 0xb3, 0x95, 0xf4, 0xd6, 0x6c, 0xc4, 0xff, 0x85, 0x3d, 0x45, 0xde, + 0x62, 0x50, 0x90, 0xb8, 0x9d, 0x71, 0x1f, 0xf9, 0x9a, 0x74, 0x0a, 0xa7, 0x64, 0xcc, 0x55, 0xa1, + 0x5f, 0x88, 0x9f, 0xbc, 0xed, 0xc0, 0x72, 0x12, 0x42, 0x76, 0x28, 0x1f, 0x97, 0x83, 0x65, 0xfd, + 0xa5, 0x78, 0xc4, 0x97, 0x03, 0xdc, 0xbc, 0x99, 0xc2, 0x18, 0x4c, 0x6c, 0xa1, 0xd7, 0x64, 0x38, + 0xd2, 0xa1, 0xed, 0x2a, 0x85, 0x46, 0xa2, 0x11, 0x89, 0xe1, 0xf1, 0x6c, 0x16, 0x9c, 0x57, 0x78, + 0x4a, 0x93, 0xae, 0x0c, 0x76, 0x2d, 0xdb, 0xf2, 0xf7, 0x58, 0xfe, 0x0c, 0x5b, 0x19, 0x88, 0xa4, + 0x26, 0xdd, 0xb5, 0xc4, 0x4f, 0xad, 0x40, 0xef, 0x3a, 0x26, 0xa6, 0x56, 0x3b, 0xad, 0x95, 0x49, + 0xc2, 0x9a, 0x63, 0xe2, 0x68, 0x3c, 0x95, 0x0f, 0x3b, 0x9e, 0x2a, 0x89, 0xf1, 0xb4, 0x0c, 0x33, + 0x1e, 0x36, 0x7c, 0xc7, 0x66, 0x9b, 0x19, 0x1a, 0xff, 0x22, 0x1d, 0x31, 0xc0, 0xbe, 0x4f, 0xca, + 0xe0, 0x01, 0x18, 0xff, 0x8c, 0x05, 0x8b, 0x73, 0x23, 0x82, 0xc5, 0x11, 0xb0, 0xd0, 0x44, 0xb0, + 0x58, 0x1b, 0x11, 0x2c, 0x4e, 0x84, 0x0a, 0x8d, 0xc2, 0xe2, 0xf9, 0x71, 0x61, 0x71, 0x3c, 0xae, + 0x5c, 0x90, 0xe3, 0xca, 0xb7, 0xe2, 0x2b, 0xd4, 0x7a, 0xfa, 0x90, 0x7c, 0xf4, 0x65, 0x93, 0xcf, + 0x71, 0x00, 0xff, 0x8d, 0x02, 0x2b, 0xa9, 0x01, 0xc7, 0x87, 0xf0, 0x2b, 0x09, 0xbc, 0xe9, 0x48, + 0xa0, 0xa7, 0x80, 0x9b, 0x36, 0x25, 0xb8, 0xe9, 0xe5, 0x51, 0x2c, 0x39, 0x68, 0xd3, 0xa3, 0x23, + 0x40, 0xbf, 0xad, 0x00, 0xca, 0x58, 0x83, 0xdf, 0x14, 0xd1, 0xfa, 0x21, 0x76, 0xcb, 0x78, 0xc0, + 0xfe, 0x6e, 0x14, 0xb0, 0x17, 0x0e, 0xb3, 0xef, 0x10, 0x42, 0x53, 0x7e, 0x5c, 0x80, 0xb3, 0x3b, + 0xae, 0x99, 0x08, 0x23, 0x39, 0xd5, 0xe4, 0x9e, 0xed, 0xa6, 0x8c, 0xab, 0x39, 0x62, 0x13, 0x8a, + 0x47, 0x69, 0x02, 0xfa, 0x7a, 0x16, 0xf2, 0xe9, 0x2d, 0xe9, 0x8c, 0x72, 0x74, 0x03, 0xc7, 0x4c, + 0x5f, 0x9f, 0xd4, 0x84, 0x55, 0x38, 0x97, 0x5f, 0x01, 0x1e, 0x72, 0xfe, 0x6f, 0x58, 0xd8, 0x78, + 0x8a, 0xbb, 0x9d, 0x03, 0xbb, 0x7b, 0x08, 0xad, 0xd7, 0xa1, 0xd8, 0x1d, 0x98, 0xfc, 0x74, 0x84, + 0xfc, 0x8c, 0x47, 0xd1, 0x45, 0x39, 0x8a, 0xd6, 0xa1, 0x1e, 0x95, 0xc0, 0x07, 0xd0, 0x32, 0x19, + 0x40, 0x26, 0x21, 0x26, 0xc2, 0xe7, 0x34, 0xfe, 0xc5, 0xd3, 0xb1, 0xc7, 0x6e, 0xb2, 0xb0, 0x74, + 0xec, 0x79, 0xb2, 0xd7, 0x2e, 0xca, 0x5e, 0x5b, 0xfd, 0x9e, 0x02, 0x55, 0x52, 0xc2, 0x27, 0xaa, + 0x3f, 0x5f, 0xca, 0x16, 0xa3, 0xa5, 0x6c, 0xb8, 0x22, 0x2e, 0xc5, 0x57, 0xc4, 0x51, 0xcd, 0xa7, + 0x69, 0x72, 0xba, 0xe6, 0x33, 0x61, 0x3a, 0xf6, 0x3c, 0xf5, 0x1c, 0xcc, 0xb1, 0xba, 0xf1, 0x96, + 0xd7, 0xa1, 0x38, 0xf4, 0xfa, 0xa2, 0xff, 0x86, 0x5e, 0x5f, 0xfd, 0x96, 0x02, 0xb5, 0x66, 0x10, + 0x18, 0xdd, 0xbd, 0x43, 0x34, 0x20, 0xac, 0x5c, 0x21, 0x5e, 0xb9, 0x74, 0x23, 0xa2, 0xea, 0x96, + 0x72, 0xaa, 0x3b, 0x2d, 0x55, 0x57, 0x85, 0x79, 0x51, 0x97, 0xdc, 0x0a, 0x6f, 0x02, 0x6a, 0x3b, + 0x5e, 0x70, 0xd7, 0xf1, 0x9e, 0x18, 0x9e, 0x79, 0xb8, 0x55, 0x2b, 0x82, 0x12, 0x7f, 0x8b, 0xa0, + 0x78, 0x61, 0x5a, 0xa3, 0xbf, 0xd5, 0x17, 0xe0, 0x98, 0x24, 0x2f, 0xb7, 0xe0, 0x5b, 0x50, 0xa5, + 0xb3, 0x30, 0x5f, 0xd0, 0xbc, 0x18, 0x3f, 0xd8, 0x1f, 0x33, 0x5b, 0xab, 0xeb, 0xb0, 0x48, 0xe2, + 0x31, 0x9a, 0x1e, 0xfa, 0x97, 0xab, 0x89, 0x98, 0x7f, 0x25, 0x25, 0x22, 0x11, 0xef, 0xff, 0x54, + 0x81, 0x69, 0x76, 0x86, 0x9f, 0x8c, 0x91, 0x4e, 0x92, 0x79, 0xce, 0x75, 0xf4, 0xc0, 0xe8, 0x85, + 0xef, 0x3c, 0x90, 0x84, 0x6d, 0xa3, 0x47, 0x4f, 0x74, 0x68, 0xa6, 0x69, 0xf5, 0xb0, 0x1f, 0x88, + 0x13, 0xc2, 0x2a, 0x49, 0x5b, 0x67, 0x49, 0x44, 0x31, 0xf4, 0x20, 0xb5, 0x44, 0xcf, 0x4b, 0xe9, + 0x6f, 0x74, 0x81, 0x5d, 0x82, 0x1c, 0x7d, 0x2c, 0x46, 0x2f, 0x47, 0x36, 0xa0, 0x9c, 0x38, 0xcf, + 0x0a, 0xbf, 0xd1, 0x45, 0x28, 0xd1, 0xfd, 0xe7, 0xd9, 0x51, 0x5a, 0xa2, 0x24, 0xc4, 0x2a, 0x5c, + 0xcb, 0xb6, 0xb1, 0xc9, 0x1f, 0x21, 0xe0, 0x5f, 0xea, 0xbb, 0x80, 0xe2, 0xca, 0xe3, 0x1d, 0x74, + 0x11, 0x66, 0xa8, 0x6e, 0x45, 0x10, 0xbb, 0x98, 0x12, 0xad, 0x71, 0x02, 0xf5, 0x6b, 0x80, 0x58, + 0x59, 0x52, 0xe0, 0x7a, 0x98, 0x0e, 0x1c, 0x11, 0xc2, 0xfe, 0x81, 0x02, 0xc7, 0x24, 0xe9, 0xbc, + 0x7e, 0x2f, 0xc8, 0xe2, 0x33, 0xaa, 0xc7, 0x45, 0xbf, 0x2d, 0xcd, 0xcc, 0x17, 0xd3, 0xd5, 0xf8, + 0x1f, 0x9a, 0x95, 0xff, 0x56, 0x01, 0x68, 0x0e, 0x83, 0x3d, 0xbe, 0xd1, 0x1a, 0xef, 0x44, 0x25, + 0xd1, 0x89, 0x0d, 0x28, 0xbb, 0x86, 0xef, 0x3f, 0x71, 0x3c, 0xb1, 0x88, 0x0c, 0xbf, 0xe9, 0xf6, + 0xe8, 0x90, 0x3f, 0xe6, 0x50, 0xd1, 0xe8, 0x6f, 0xf4, 0x1c, 0xcc, 0xb3, 0x07, 0x48, 0x74, 0xc3, + 0x34, 0x3d, 0x01, 0x16, 0xac, 0x68, 0x35, 0x96, 0xda, 0x64, 0x89, 0x84, 0xcc, 0xa2, 0xa7, 0x11, + 0xc1, 0x81, 0x1e, 0x38, 0x8f, 0xb1, 0xcd, 0x17, 0x86, 0x35, 0x91, 0xba, 0x4d, 0x12, 0xd9, 0x71, + 0x63, 0xcf, 0xf2, 0x03, 0x4f, 0x90, 0x89, 0x43, 0x53, 0x9e, 0x4a, 0xc9, 0xd4, 0xdf, 0x51, 0xa0, + 0xde, 0x1e, 0xf6, 0xfb, 0x4c, 0xb9, 0x47, 0xe9, 0xe4, 0x4b, 0xbc, 0x29, 0x85, 0xb4, 0xc9, 0x47, + 0x8a, 0xe2, 0x4d, 0xfc, 0x54, 0xf6, 0xb2, 0xae, 0xc1, 0x62, 0xac, 0xc6, 0xdc, 0x70, 0xa4, 0xc8, + 0x5e, 0x91, 0x23, 0x7b, 0xb5, 0x09, 0x88, 0x6d, 0xdf, 0x1c, 0xb9, 0x95, 0xea, 0x71, 0x38, 0x26, + 0x89, 0xe0, 0x53, 0xf1, 0x25, 0xa8, 0x71, 0xe0, 0x1a, 0x37, 0x88, 0x13, 0x50, 0x26, 0x2e, 0xb5, + 0x6b, 0x99, 0x02, 0x21, 0x31, 0xeb, 0x3a, 0xe6, 0x9a, 0x65, 0x7a, 0xea, 0x97, 0xa1, 0xc6, 0x6f, + 0xc6, 0x73, 0xda, 0xdb, 0x30, 0xcf, 0xcf, 0x07, 0x75, 0xe9, 0x2a, 0xe9, 0x89, 0x0c, 0x74, 0xa4, + 0x50, 0x85, 0x1d, 0xff, 0x54, 0xbf, 0x0e, 0x0d, 0x16, 0x2d, 0x48, 0x82, 0x45, 0x03, 0x6f, 0x83, + 0x00, 0x27, 0x8d, 0x90, 0x2f, 0x73, 0xd6, 0xbc, 0xf8, 0xa7, 0x7a, 0x1a, 0x4e, 0x66, 0xca, 0xe7, + 0xad, 0x77, 0xa1, 0x1e, 0x65, 0xb0, 0xfb, 0x8e, 0x21, 0xec, 0x43, 0x89, 0xc1, 0x3e, 0x96, 0xc3, + 0xd8, 0xbb, 0x20, 0x66, 0x2e, 0x1a, 0x5e, 0x47, 0x2b, 0xae, 0x62, 0xde, 0x8a, 0xab, 0x24, 0xad, + 0xb8, 0xd4, 0x07, 0xa1, 0x0e, 0xf9, 0xba, 0xf7, 0x2d, 0xba, 0x32, 0x67, 0x65, 0x0b, 0xa7, 0x76, + 0x2a, 0xbb, 0x7d, 0x8c, 0x48, 0x8b, 0xd1, 0xab, 0x17, 0xa1, 0x26, 0xbb, 0xb7, 0x98, 0xc7, 0x52, + 0x64, 0x8f, 0xb5, 0x03, 0xcb, 0x9a, 0x84, 0xf4, 0xba, 0x8b, 0x8d, 0x60, 0xe8, 0x61, 0x1f, 0xbd, + 0x09, 0x8d, 0x8c, 0x37, 0x61, 0x74, 0xbe, 0x10, 0x63, 0x62, 0x56, 0x52, 0x4f, 0xc3, 0xd0, 0xd5, + 0x98, 0xaf, 0x9a, 0xe1, 0x73, 0x09, 0x5c, 0x6c, 0xe6, 0x71, 0xd4, 0x3b, 0x50, 0xde, 0xe5, 0xc5, + 0xf1, 0x71, 0xa6, 0x66, 0xb4, 0x31, 0x51, 0x31, 0x2d, 0xe4, 0x51, 0xff, 0x53, 0x81, 0xf9, 0x84, + 0xa7, 0x7d, 0x39, 0xb1, 0x1e, 0xca, 0x32, 0x8a, 0xc4, 0x6a, 0xe8, 0x86, 0xe4, 0x73, 0x9f, 0x95, + 0xf0, 0x05, 0xa3, 0xaf, 0xdc, 0x6d, 0x40, 0x3d, 0x81, 0x9e, 0x13, 0xc8, 0xd9, 0x46, 0x7e, 0x3b, + 0xb4, 0x05, 0x19, 0x5a, 0xe7, 0x1f, 0xdd, 0x6b, 0x2f, 0xf1, 0xb9, 0xec, 0xae, 0x4f, 0xf8, 0x79, + 0x67, 0xab, 0xcf, 0x40, 0x75, 0x27, 0xef, 0x8d, 0x96, 0x92, 0xc0, 0xd6, 0xbd, 0x0e, 0x4b, 0x77, + 0xad, 0x3e, 0xf6, 0x0f, 0xfc, 0x00, 0x0f, 0x5a, 0xd4, 0xc5, 0xee, 0x5a, 0xd8, 0x43, 0x67, 0x00, + 0x68, 0x0f, 0xbb, 0x8e, 0x15, 0xbe, 0x4b, 0x11, 0x4b, 0x51, 0x7f, 0xa4, 0xc0, 0x42, 0xc4, 0x38, + 0x09, 0x80, 0xf2, 0x35, 0x98, 0xde, 0xf5, 0xc5, 0x8e, 0x63, 0xe2, 0x1c, 0x26, 0xab, 0x0a, 0x5a, + 0x69, 0xd7, 0x6f, 0x99, 0xe8, 0x75, 0x80, 0xa1, 0x8f, 0x4d, 0x7e, 0xf4, 0x39, 0x06, 0xd2, 0x5a, + 0x21, 0xa4, 0xec, 0xf0, 0xf4, 0x06, 0x54, 0x2d, 0xdb, 0x31, 0x31, 0x3d, 0x16, 0x37, 0xc7, 0xc1, + 0x59, 0x81, 0xd1, 0xee, 0xf8, 0xd8, 0x54, 0x7f, 0x23, 0x3a, 0xdc, 0xfe, 0x22, 0xb7, 0x50, 0xfd, + 0x5d, 0x11, 0x64, 0x88, 0x6e, 0xe7, 0xa6, 0xff, 0x1e, 0x2c, 0xb2, 0xb9, 0x62, 0x37, 0x2c, 0x33, + 0xf3, 0x9e, 0x4f, 0xa2, 0x71, 0x5a, 0xdd, 0xe2, 0xe1, 0xa5, 0x60, 0x42, 0x6d, 0x38, 0x1e, 0x45, + 0xfd, 0x71, 0x69, 0x85, 0xf1, 0xd2, 0x96, 0xba, 0xb1, 0x0d, 0x6a, 0xc1, 0xa8, 0xde, 0x82, 0xe3, + 0x09, 0x28, 0xff, 0xe4, 0xa7, 0x14, 0xef, 0x27, 0xb6, 0x1b, 0xa3, 0xc1, 0x7e, 0x4d, 0xbe, 0x41, + 0x36, 0xea, 0xd2, 0x05, 0xbf, 0xcc, 0xb4, 0x03, 0x27, 0xa4, 0xbd, 0x50, 0xa9, 0x2e, 0x37, 0x12, + 0x31, 0xf8, 0xb9, 0x7c, 0x79, 0x89, 0x60, 0xfc, 0xdf, 0x14, 0x58, 0xca, 0x22, 0x38, 0xe2, 0x3e, + 0xfc, 0x87, 0x39, 0xb7, 0x4f, 0x5f, 0x19, 0x57, 0xa1, 0xcf, 0xe4, 0xdc, 0x62, 0x93, 0xdd, 0x5d, + 0x1b, 0xdf, 0x27, 0xc5, 0xc9, 0xfa, 0xe4, 0xa7, 0x85, 0xd8, 0x59, 0xd3, 0x88, 0xfb, 0x65, 0x9f, + 0x60, 0xef, 0x77, 0x2d, 0x71, 0xbd, 0xec, 0xc5, 0x4c, 0xc6, 0x31, 0xb7, 0xcb, 0xb4, 0xac, 0x3d, + 0x96, 0x6b, 0xe3, 0x24, 0x7d, 0x61, 0x8f, 0x05, 0x7e, 0xb9, 0x00, 0xf3, 0x72, 0x87, 0xa0, 0x77, + 0x33, 0xee, 0x96, 0x9d, 0x1d, 0xd3, 0x40, 0xe9, 0x6a, 0x19, 0xbf, 0xcb, 0x55, 0x98, 0xfc, 0x2e, + 0x57, 0x71, 0xb2, 0xbb, 0x5c, 0x77, 0x60, 0xfe, 0x89, 0x67, 0x05, 0xc6, 0xa3, 0x3e, 0xd6, 0xfb, + 0xc6, 0x01, 0xf6, 0xb8, 0x63, 0x1f, 0xe9, 0x8a, 0x6a, 0x82, 0xe5, 0x3e, 0xe1, 0xa0, 0xab, 0xcf, + 0x27, 0x86, 0xcb, 0x17, 0xb1, 0x52, 0x5c, 0xdc, 0x79, 0x62, 0xb8, 0x8c, 0x87, 0x92, 0xa8, 0xdf, + 0x2a, 0xc0, 0xf1, 0xcc, 0x1b, 0x48, 0x9f, 0x5c, 0x45, 0x97, 0xe3, 0x2a, 0x3a, 0xcc, 0xb5, 0xae, + 0xe2, 0xa1, 0xae, 0x75, 0xb5, 0x72, 0x14, 0x96, 0x05, 0x66, 0x18, 0xad, 0x37, 0xf5, 0x8f, 0x15, + 0x28, 0x8b, 0x4a, 0x8d, 0xbd, 0x64, 0xb5, 0x32, 0x24, 0x64, 0x3a, 0x05, 0xc2, 0xdb, 0x86, 0xed, + 0xe8, 0x3e, 0x26, 0x81, 0xe9, 0xd8, 0x2b, 0x2d, 0x4b, 0x94, 0x6f, 0xcd, 0xf1, 0xf0, 0xa6, 0x61, + 0x3b, 0x1d, 0xc6, 0x84, 0x9a, 0x50, 0x67, 0xf2, 0xa8, 0x28, 0x22, 0x74, 0xec, 0x44, 0x39, 0x4f, + 0x19, 0x88, 0x10, 0x22, 0xcc, 0x57, 0xff, 0x42, 0x81, 0x85, 0x84, 0x66, 0x7f, 0xfe, 0x1a, 0xf1, + 0xeb, 0x45, 0xa8, 0xc6, 0x7a, 0x79, 0x4c, 0x03, 0xd6, 0x60, 0x51, 0x00, 0x92, 0x7c, 0x1c, 0x4c, + 0x76, 0xa5, 0x68, 0x81, 0x73, 0x74, 0x70, 0xc0, 0xe2, 0xa8, 0xdb, 0xb0, 0x60, 0xec, 0x1b, 0x56, + 0x9f, 0x5a, 0xd0, 0x44, 0x21, 0xca, 0x7c, 0x48, 0x1f, 0x46, 0x62, 0xac, 0xdd, 0x13, 0x5d, 0x2c, + 0x02, 0x4a, 0x1b, 0xdd, 0xef, 0xf2, 0xfd, 0x18, 0xea, 0x6d, 0xe4, 0xfd, 0x2e, 0xdf, 0x0f, 0xcb, + 0xa3, 0xb7, 0x00, 0xe8, 0xc5, 0x36, 0x9f, 0xbf, 0x86, 0x92, 0x5f, 0x1e, 0xa1, 0xbd, 0x4b, 0x49, + 0x89, 0xc2, 0x06, 0xc6, 0x47, 0x8e, 0xa7, 0xc7, 0xf9, 0x67, 0xc7, 0x28, 0x8c, 0x72, 0xb4, 0x43, + 0x21, 0xea, 0x1f, 0x2a, 0x50, 0x09, 0xfd, 0xc8, 0x98, 0x1e, 0x6a, 0xc1, 0x12, 0xbd, 0x32, 0x91, + 0xd4, 0xf0, 0x98, 0x4e, 0x42, 0x84, 0xa9, 0x29, 0x6b, 0xb9, 0x09, 0x75, 0x2a, 0x2a, 0xae, 0xea, + 0x71, 0x1d, 0xe5, 0x8b, 0x6a, 0xb2, 0x80, 0xf2, 0x4f, 0x0a, 0x80, 0xd2, 0xae, 0xe4, 0xe7, 0xc6, + 0xc8, 0xe2, 0x9d, 0x56, 0x9a, 0xbc, 0xd3, 0xef, 0xc1, 0xb1, 0xae, 0x33, 0x18, 0x58, 0xf4, 0xba, + 0x8d, 0xe3, 0x1d, 0x4c, 0x66, 0x6e, 0x8b, 0x8c, 0x87, 0xe9, 0x89, 0xa9, 0xef, 0x1d, 0x38, 0xa1, + 0x61, 0xc7, 0xc5, 0x76, 0xe8, 0xfa, 0xef, 0x3b, 0xbd, 0x43, 0xc4, 0xb7, 0xa7, 0xa0, 0x91, 0xc5, + 0xcf, 0x37, 0x23, 0x86, 0xd0, 0x58, 0xdb, 0xc3, 0xdd, 0xc7, 0x74, 0xf9, 0x75, 0x14, 0x50, 0x51, + 0x03, 0xca, 0x7d, 0xa7, 0xcb, 0x9e, 0xa2, 0xe5, 0xfb, 0x75, 0xe2, 0x7b, 0xc4, 0x51, 0xc9, 0x69, + 0x38, 0x99, 0x59, 0x2c, 0xaf, 0x15, 0x82, 0xfa, 0x3d, 0x1c, 0x6c, 0xec, 0x63, 0x3b, 0x0c, 0x9f, + 0xd5, 0x1f, 0x14, 0x62, 0x81, 0x3a, 0xcd, 0x3a, 0x04, 0x18, 0x0b, 0xb5, 0x21, 0x5a, 0x39, 0xe8, + 0x98, 0x70, 0xb3, 0x87, 0x1e, 0xd9, 0x13, 0xa9, 0xd9, 0x07, 0xb5, 0xb4, 0x10, 0xfa, 0xbe, 0x63, + 0xf4, 0x84, 0x4d, 0x98, 0x96, 0x38, 0xbe, 0x2f, 0x26, 0x8f, 0xef, 0xdf, 0x07, 0x14, 0x0f, 0xc5, + 0xf9, 0xae, 0x41, 0x69, 0x82, 0x57, 0x7b, 0xea, 0x6e, 0xf2, 0x7d, 0xa9, 0x9c, 0xb7, 0x77, 0xa6, + 0x8f, 0xf4, 0xf6, 0x8e, 0x7a, 0x06, 0x4e, 0x91, 0x00, 0xfb, 0x01, 0x0e, 0x3c, 0xab, 0xbb, 0x8e, + 0xfd, 0xae, 0x67, 0xb9, 0x81, 0x13, 0xe2, 0x83, 0x54, 0x1d, 0x4e, 0xe7, 0xe4, 0x73, 0x75, 0xbf, + 0x03, 0x55, 0x33, 0x4a, 0xce, 0xda, 0x3e, 0x4a, 0xf2, 0x6a, 0x71, 0x06, 0xf5, 0x03, 0xa8, 0x27, + 0x09, 0x32, 0xf7, 0x6f, 0x10, 0x94, 0xf6, 0x70, 0xdf, 0x15, 0xf7, 0xa3, 0xc8, 0x6f, 0xa2, 0x75, + 0xb6, 0x76, 0x79, 0x8c, 0x0f, 0xc4, 0xf1, 0x42, 0x85, 0xa6, 0x7c, 0x09, 0x1f, 0x84, 0x6d, 0x93, + 0x1e, 0x83, 0xf0, 0xac, 0x6e, 0xb2, 0x6d, 0x19, 0xf9, 0x51, 0xdb, 0x48, 0xb7, 0x0d, 0x58, 0x32, + 0x6f, 0xdb, 0xe9, 0xdc, 0x87, 0x26, 0x28, 0x2f, 0xb8, 0x8e, 0xc9, 0x7f, 0xab, 0xbf, 0xa7, 0xc0, + 0x62, 0x8a, 0x62, 0xc2, 0x23, 0xa3, 0x97, 0x60, 0x56, 0x94, 0x5b, 0x48, 0x63, 0x6e, 0x99, 0x2c, + 0x4d, 0x90, 0xa0, 0x16, 0x2c, 0x46, 0x16, 0x2d, 0xf8, 0x8a, 0xe9, 0xbe, 0x88, 0x2f, 0x5c, 0x68, + 0x75, 0xeb, 0xdd, 0x44, 0x8a, 0xda, 0x85, 0x7a, 0x92, 0x6a, 0x92, 0x31, 0x75, 0xa8, 0xfa, 0xaa, + 0x7f, 0xa5, 0xc0, 0x0c, 0x4b, 0xcb, 0xec, 0x6c, 0x69, 0x3a, 0x28, 0x24, 0xa7, 0x83, 0x37, 0xa0, + 0xca, 0xe4, 0xe8, 0xe1, 0xed, 0xb8, 0x79, 0x79, 0xd7, 0x9c, 0x89, 0xa6, 0xa3, 0x15, 0x06, 0xe1, + 0x6f, 0xd2, 0x0c, 0x66, 0x2f, 0x74, 0x65, 0x22, 0x90, 0xd5, 0x55, 0x9a, 0x46, 0x5d, 0x2e, 0x09, + 0x99, 0xf9, 0x1a, 0x66, 0x8c, 0x6f, 0xe6, 0x5b, 0x5b, 0xcb, 0xf4, 0x69, 0xc3, 0xd4, 0xbe, 0xb1, + 0xba, 0x4d, 0xdf, 0x1e, 0x4c, 0xef, 0xf7, 0xa2, 0x37, 0x65, 0xec, 0xc1, 0x73, 0xa9, 0x83, 0x7b, + 0x89, 0x6d, 0xe8, 0xb1, 0x27, 0xbb, 0x19, 0x8f, 0xfa, 0x21, 0x9c, 0xc8, 0xa5, 0x41, 0x6f, 0x87, + 0x0f, 0xbd, 0x9a, 0x9e, 0xb5, 0xcf, 0x37, 0x16, 0xe6, 0xe5, 0x47, 0x25, 0xd6, 0x28, 0xc1, 0x3a, + 0xcd, 0x17, 0x4f, 0xc0, 0xb2, 0xaf, 0x4b, 0xcf, 0x43, 0x59, 0x3c, 0xa7, 0x8e, 0x66, 0xa1, 0xb8, + 0xbd, 0xd6, 0xae, 0x4f, 0x91, 0x1f, 0x3b, 0xeb, 0xed, 0xba, 0x82, 0xca, 0x50, 0xea, 0xac, 0x6d, + 0xb7, 0xeb, 0x85, 0x4b, 0x03, 0xa8, 0x27, 0x5f, 0x14, 0x47, 0x2b, 0x70, 0xac, 0xad, 0x6d, 0xb5, + 0x9b, 0xf7, 0x9a, 0xdb, 0xad, 0xad, 0x4d, 0xbd, 0xad, 0xb5, 0x1e, 0x36, 0xb7, 0x37, 0xea, 0x53, + 0xe8, 0x3c, 0x9c, 0x8e, 0x67, 0xbc, 0xb7, 0xd5, 0xd9, 0xd6, 0xb7, 0xb7, 0xf4, 0xb5, 0xad, 0xcd, + 0xed, 0x66, 0x6b, 0x73, 0x43, 0xab, 0x2b, 0xe8, 0x34, 0x9c, 0x88, 0x93, 0xdc, 0x69, 0xad, 0xb7, + 0xb4, 0x8d, 0x35, 0xf2, 0xbb, 0x79, 0xbf, 0x5e, 0xb8, 0xf4, 0x36, 0xd4, 0xa4, 0xfb, 0x40, 0xa4, + 0x4a, 0xed, 0xad, 0xf5, 0xfa, 0x14, 0xaa, 0x41, 0x25, 0x2e, 0xa7, 0x0c, 0xa5, 0xcd, 0xad, 0xf5, + 0x8d, 0x7a, 0x01, 0x01, 0xcc, 0x6c, 0x37, 0xb5, 0x7b, 0x1b, 0xdb, 0xf5, 0xe2, 0xa5, 0x5b, 0xc9, + 0x47, 0x4d, 0x30, 0x5a, 0x84, 0x5a, 0xa7, 0xb9, 0xb9, 0x7e, 0x67, 0xeb, 0xab, 0xba, 0xb6, 0xd1, + 0x5c, 0xff, 0xa0, 0x3e, 0x85, 0x96, 0xa0, 0x2e, 0x92, 0x36, 0xb7, 0xb6, 0x59, 0xaa, 0x72, 0xe9, + 0x71, 0x62, 0xcd, 0x8a, 0xd1, 0x71, 0x58, 0x0c, 0x8b, 0xd4, 0xd7, 0xb4, 0x8d, 0xe6, 0xf6, 0x06, + 0xa9, 0x89, 0x94, 0xac, 0xed, 0x6c, 0x6e, 0xb6, 0x36, 0xef, 0xd5, 0x15, 0x22, 0x35, 0x4a, 0xde, + 0xf8, 0x6a, 0x8b, 0x10, 0x17, 0x64, 0xe2, 0x9d, 0xcd, 0x2f, 0x6d, 0x6e, 0x7d, 0x65, 0xb3, 0x5e, + 0xbc, 0xf4, 0xff, 0xe2, 0x50, 0x95, 0x68, 0x5e, 0x39, 0x09, 0x2b, 0xa9, 0x12, 0xf5, 0x8d, 0x87, + 0x1b, 0x9b, 0xdb, 0xf5, 0x29, 0x39, 0xb3, 0xb3, 0xdd, 0xd4, 0xa2, 0x4c, 0x25, 0x99, 0xb9, 0xd5, + 0x6e, 0x87, 0x99, 0x05, 0x39, 0x73, 0x7d, 0xe3, 0xfe, 0x46, 0xc4, 0x59, 0xbc, 0xf4, 0x2c, 0x40, + 0x34, 0x7e, 0x50, 0x15, 0x66, 0xd7, 0xb6, 0x76, 0x36, 0xb7, 0x37, 0xb4, 0xfa, 0x14, 0xaa, 0xc0, + 0xf4, 0xbd, 0xe6, 0xce, 0xbd, 0x8d, 0xba, 0x72, 0xe9, 0x22, 0xcc, 0xc5, 0xad, 0x89, 0xd0, 0x75, + 0x3e, 0xe8, 0x6c, 0x6f, 0x3c, 0x20, 0x1a, 0x99, 0x83, 0xf2, 0xda, 0x3d, 0x6d, 0x6b, 0xa7, 0x7d, + 0xb7, 0x53, 0x57, 0xae, 0xff, 0xd7, 0x52, 0xb8, 0x43, 0xdf, 0xc1, 0x1e, 0xbd, 0x85, 0xb1, 0x0e, + 0xb3, 0xe2, 0x1f, 0x10, 0x48, 0xbb, 0x36, 0xf2, 0x3f, 0x4c, 0x68, 0x9c, 0xcc, 0xcc, 0xe3, 0x71, + 0xc1, 0x14, 0x7a, 0x48, 0x8f, 0x32, 0x62, 0x4f, 0x8a, 0x9d, 0x4b, 0x6c, 0x85, 0xa7, 0x5e, 0x2e, + 0x6b, 0x9c, 0x1f, 0x41, 0x11, 0xca, 0xfd, 0x00, 0xe6, 0xe5, 0xb7, 0x3b, 0xd1, 0x79, 0x79, 0xa7, + 0x3e, 0xe3, 0x59, 0xd0, 0x86, 0x3a, 0x8a, 0x24, 0x14, 0xad, 0x43, 0x3d, 0xf9, 0x76, 0x27, 0x92, + 0xd0, 0x3b, 0x39, 0x4f, 0x83, 0x36, 0x9e, 0x1d, 0x4d, 0x14, 0x2f, 0x20, 0xf5, 0x24, 0xe5, 0x33, + 0xa3, 0x1f, 0xf9, 0xcb, 0x28, 0x20, 0xef, 0x25, 0x40, 0xa6, 0x1c, 0x79, 0xd6, 0x44, 0x89, 0x57, + 0x20, 0x33, 0x1e, 0x8c, 0x93, 0x95, 0x93, 0xfd, 0x58, 0x98, 0x3a, 0x85, 0xfe, 0x17, 0x2c, 0x24, + 0x20, 0xf6, 0x48, 0x62, 0xcc, 0xbe, 0x39, 0xd0, 0x78, 0x66, 0x24, 0x8d, 0xdc, 0xab, 0x71, 0x18, + 0x7d, 0xb2, 0x57, 0x33, 0xe0, 0xf9, 0xc9, 0x5e, 0xcd, 0x44, 0xe1, 0x53, 0x43, 0x94, 0x20, 0xf3, + 0xb2, 0x21, 0x66, 0x41, 0xf4, 0x1b, 0xe7, 0x47, 0x50, 0xc4, 0x15, 0x92, 0x00, 0xcd, 0xcb, 0x0a, + 0xc9, 0x86, 0xe3, 0x37, 0x9e, 0x19, 0x49, 0x93, 0xec, 0xc9, 0x08, 0xac, 0x9b, 0xee, 0xc9, 0x14, + 0x60, 0x3c, 0xdd, 0x93, 0x69, 0xac, 0x2f, 0xef, 0xc9, 0x04, 0xbc, 0x56, 0x1d, 0x09, 0xfd, 0xcb, + 0xea, 0xc9, 0x6c, 0x78, 0xa0, 0x3a, 0x85, 0x9e, 0xc0, 0x6a, 0x1e, 0xc2, 0x0b, 0xbd, 0x78, 0x08, + 0x20, 0x5a, 0xe3, 0xa5, 0xc9, 0x88, 0xc3, 0x82, 0x31, 0xa0, 0xf4, 0xf2, 0x09, 0x3d, 0x27, 0xab, + 0x3b, 0x67, 0x79, 0xd6, 0x78, 0x7e, 0x1c, 0x59, 0x58, 0xcc, 0x3d, 0x28, 0x0b, 0xec, 0x18, 0x92, + 0x5c, 0x60, 0x02, 0xb3, 0xd6, 0x38, 0x95, 0x9d, 0x19, 0x0a, 0x7a, 0x13, 0x4a, 0x24, 0x15, 0xad, + 0x24, 0xe9, 0x84, 0x80, 0xd5, 0x74, 0x46, 0xc8, 0xdc, 0x84, 0x19, 0x06, 0x8a, 0x42, 0xd2, 0xc1, + 0xa6, 0x04, 0xda, 0x6a, 0x34, 0xb2, 0xb2, 0x42, 0x11, 0x6d, 0xf6, 0xef, 0x5c, 0x38, 0xc6, 0x09, + 0x9d, 0x49, 0xbe, 0xda, 0x2d, 0x83, 0xa9, 0x1a, 0x67, 0x73, 0xf3, 0xe3, 0x36, 0x9b, 0xd8, 0x25, + 0x3d, 0x3f, 0x62, 0xd7, 0x3f, 0xcb, 0x66, 0xb3, 0xcf, 0x12, 0x58, 0xe7, 0xa6, 0xcf, 0x1a, 0xd0, + 0x73, 0xb9, 0xf6, 0x2e, 0x15, 0xf1, 0xfc, 0x38, 0xb2, 0xf8, 0xd0, 0x48, 0x3e, 0xbf, 0xa5, 0x8e, + 0x7a, 0x1a, 0x2f, 0x6b, 0x68, 0xe4, 0x3c, 0xb9, 0xa7, 0x4e, 0xa1, 0x3d, 0x38, 0x96, 0xf1, 0x26, + 0x1f, 0x7a, 0x3e, 0xdf, 0xff, 0x4a, 0xa5, 0xbc, 0x30, 0x96, 0x2e, 0x5e, 0x52, 0x06, 0xb0, 0x41, + 0x2e, 0x29, 0x1f, 0x59, 0x21, 0x97, 0x34, 0x0a, 0x21, 0x41, 0x0d, 0x91, 0xfb, 0x90, 0x13, 0x59, + 0x07, 0xe6, 0x19, 0x86, 0x98, 0xf2, 0x18, 0x7b, 0x70, 0x2c, 0x63, 0x8b, 0x41, 0xae, 0x6c, 0xfe, + 0xd6, 0x87, 0x5c, 0xd9, 0x51, 0x7b, 0x15, 0x53, 0xe8, 0x43, 0x40, 0xf7, 0x70, 0x20, 0x87, 0x72, + 0x3e, 0x92, 0x06, 0x6a, 0x72, 0x37, 0x23, 0xc7, 0x3e, 0xa5, 0x6d, 0x0d, 0x75, 0xea, 0x9a, 0x82, + 0x6c, 0x76, 0x8b, 0x27, 0xb5, 0x18, 0x47, 0x17, 0x92, 0xdd, 0x96, 0xb7, 0x9e, 0x6f, 0x5c, 0x9c, + 0x80, 0x32, 0x6c, 0x8b, 0x9d, 0x7c, 0xff, 0x55, 0xac, 0x07, 0x2f, 0xe4, 0x9b, 0x89, 0xbc, 0xc6, + 0x4e, 0x97, 0x97, 0xbb, 0xda, 0x0e, 0xe3, 0xb9, 0x98, 0x31, 0x9d, 0xcb, 0x87, 0xd9, 0xe4, 0xc4, + 0x73, 0x59, 0x06, 0x74, 0xfd, 0xd7, 0x8a, 0x30, 0xc7, 0xe0, 0x48, 0x3c, 0xfc, 0x7c, 0x00, 0x10, + 0x21, 0xfb, 0xd0, 0xe9, 0x64, 0x1d, 0x25, 0xb8, 0x64, 0xe3, 0x4c, 0x5e, 0x76, 0xdc, 0xcd, 0xc5, + 0x10, 0x73, 0xb2, 0x9b, 0x4b, 0x03, 0x00, 0x65, 0x37, 0x97, 0x01, 0xb5, 0x53, 0xa7, 0xd0, 0xfb, + 0x50, 0x09, 0x01, 0x5a, 0xb2, 0xf1, 0x24, 0x91, 0x66, 0x8d, 0xd3, 0x39, 0xb9, 0xf1, 0xda, 0xc5, + 0x70, 0x57, 0x72, 0xed, 0xd2, 0x98, 0x2e, 0xb9, 0x76, 0x59, 0x80, 0xad, 0xa8, 0xbd, 0x0c, 0x14, + 0x90, 0xd1, 0x5e, 0x09, 0x24, 0x92, 0xd1, 0x5e, 0x19, 0x4d, 0xa0, 0x4e, 0xdd, 0xb9, 0xfd, 0xc3, + 0x9f, 0x9c, 0x51, 0x7e, 0xf4, 0x93, 0x33, 0x53, 0xff, 0xe7, 0xe3, 0x33, 0xca, 0x0f, 0x3f, 0x3e, + 0xa3, 0xfc, 0xdd, 0xc7, 0x67, 0x94, 0x1f, 0x7f, 0x7c, 0x46, 0xf9, 0xf6, 0x3f, 0x9f, 0x99, 0xfa, + 0x50, 0x7d, 0x7c, 0xc3, 0xbf, 0x62, 0x39, 0x57, 0xbb, 0x9e, 0x75, 0xd9, 0x70, 0xad, 0xab, 0xee, + 0xe3, 0xde, 0x55, 0xc3, 0xb5, 0xfc, 0xab, 0x5c, 0xee, 0xd5, 0xfd, 0x97, 0x1f, 0xcd, 0xd0, 0x7f, + 0x01, 0xf6, 0xca, 0x7f, 0x07, 0x00, 0x00, 0xff, 0xff, 0x7c, 0x3a, 0x94, 0x9a, 0xbc, 0x6d, 0x00, + 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -12127,6 +12266,16 @@ func (m *Mount) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if m.RecursiveReadOnly { + i-- + if m.RecursiveReadOnly { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x40 + } if len(m.GidMappings) > 0 { for iNdEx := len(m.GidMappings) - 1; iNdEx >= 0; iNdEx-- { { @@ -17739,6 +17888,81 @@ func (m *StatusRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *RuntimeHandlerFeatures) 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 *RuntimeHandlerFeatures) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *RuntimeHandlerFeatures) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.RecursiveReadOnlyMounts { + i-- + if m.RecursiveReadOnlyMounts { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + +func (m *RuntimeHandler) 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 *RuntimeHandler) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *RuntimeHandler) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.Features != nil { + { + size, err := m.Features.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintApi(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + } + if len(m.Name) > 0 { + i -= len(m.Name) + copy(dAtA[i:], m.Name) + i = encodeVarintApi(dAtA, i, uint64(len(m.Name))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + func (m *StatusResponse) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -17759,6 +17983,20 @@ func (m *StatusResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if len(m.RuntimeHandlers) > 0 { + for iNdEx := len(m.RuntimeHandlers) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.RuntimeHandlers[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintApi(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1a + } + } if len(m.Info) > 0 { for k := range m.Info { v := m.Info[k] @@ -19555,6 +19793,9 @@ func (m *Mount) Size() (n int) { n += 1 + l + sovApi(uint64(l)) } } + if m.RecursiveReadOnly { + n += 2 + } return n } @@ -21848,6 +22089,35 @@ func (m *StatusRequest) Size() (n int) { return n } +func (m *RuntimeHandlerFeatures) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.RecursiveReadOnlyMounts { + n += 2 + } + return n +} + +func (m *RuntimeHandler) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Name) + if l > 0 { + n += 1 + l + sovApi(uint64(l)) + } + if m.Features != nil { + l = m.Features.Size() + n += 1 + l + sovApi(uint64(l)) + } + return n +} + func (m *StatusResponse) Size() (n int) { if m == nil { return 0 @@ -21866,6 +22136,12 @@ func (m *StatusResponse) Size() (n int) { n += mapEntrySize + 1 + sovApi(uint64(mapEntrySize)) } } + if len(m.RuntimeHandlers) > 0 { + for _, e := range m.RuntimeHandlers { + l = e.Size() + n += 1 + l + sovApi(uint64(l)) + } + } return n } @@ -22601,6 +22877,7 @@ func (this *Mount) String() string { `Propagation:` + fmt.Sprintf("%v", this.Propagation) + `,`, `UidMappings:` + repeatedStringForUidMappings + `,`, `GidMappings:` + repeatedStringForGidMappings + `,`, + `RecursiveReadOnly:` + fmt.Sprintf("%v", this.RecursiveReadOnly) + `,`, `}`, }, "") return s @@ -24202,10 +24479,36 @@ func (this *StatusRequest) String() string { }, "") return s } +func (this *RuntimeHandlerFeatures) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&RuntimeHandlerFeatures{`, + `RecursiveReadOnlyMounts:` + fmt.Sprintf("%v", this.RecursiveReadOnlyMounts) + `,`, + `}`, + }, "") + return s +} +func (this *RuntimeHandler) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&RuntimeHandler{`, + `Name:` + fmt.Sprintf("%v", this.Name) + `,`, + `Features:` + strings.Replace(this.Features.String(), "RuntimeHandlerFeatures", "RuntimeHandlerFeatures", 1) + `,`, + `}`, + }, "") + return s +} func (this *StatusResponse) String() string { if this == nil { return "nil" } + repeatedStringForRuntimeHandlers := "[]*RuntimeHandler{" + for _, f := range this.RuntimeHandlers { + repeatedStringForRuntimeHandlers += strings.Replace(f.String(), "RuntimeHandler", "RuntimeHandler", 1) + "," + } + repeatedStringForRuntimeHandlers += "}" keysForInfo := make([]string, 0, len(this.Info)) for k := range this.Info { keysForInfo = append(keysForInfo, k) @@ -24219,6 +24522,7 @@ func (this *StatusResponse) String() string { s := strings.Join([]string{`&StatusResponse{`, `Status:` + strings.Replace(this.Status.String(), "RuntimeStatus", "RuntimeStatus", 1) + `,`, `Info:` + mapStringForInfo + `,`, + `RuntimeHandlers:` + repeatedStringForRuntimeHandlers + `,`, `}`, }, "") return s @@ -25473,6 +25777,26 @@ func (m *Mount) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 8: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field RecursiveReadOnly", 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.RecursiveReadOnly = bool(v != 0) default: iNdEx = preIndex skippy, err := skipApi(dAtA[iNdEx:]) @@ -42670,6 +42994,194 @@ func (m *StatusRequest) Unmarshal(dAtA []byte) error { } return nil } +func (m *RuntimeHandlerFeatures) 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: RuntimeHandlerFeatures: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: RuntimeHandlerFeatures: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field RecursiveReadOnlyMounts", 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.RecursiveReadOnlyMounts = 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 *RuntimeHandler) 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: RuntimeHandler: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: RuntimeHandler: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Name", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Name = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Features", 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.Features == nil { + m.Features = &RuntimeHandlerFeatures{} + } + if err := m.Features.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 *StatusResponse) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -42862,6 +43374,40 @@ func (m *StatusResponse) Unmarshal(dAtA []byte) error { } m.Info[mapkey] = mapvalue iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field RuntimeHandlers", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.RuntimeHandlers = append(m.RuntimeHandlers, &RuntimeHandler{}) + if err := m.RuntimeHandlers[len(m.RuntimeHandlers)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipApi(dAtA[iNdEx:]) diff --git a/vendor/k8s.io/cri-api/pkg/apis/runtime/v1/api.proto b/vendor/k8s.io/cri-api/pkg/apis/runtime/v1/api.proto index bb15dc2478b9..bd73967df55d 100644 --- a/vendor/k8s.io/cri-api/pkg/apis/runtime/v1/api.proto +++ b/vendor/k8s.io/cri-api/pkg/apis/runtime/v1/api.proto @@ -235,6 +235,15 @@ message Mount { repeated IDMapping uidMappings = 6; // GidMappings specifies the runtime GID mappings for the mount. repeated IDMapping gidMappings = 7; + // If set to true, the mount is made recursive read-only. + // In this CRI API, recursive_read_only is a plain true/false boolean, although its equivalent + // in the Kubernetes core API is a quaternary that can be nil, "Enabled", "IfPossible", or "Disabled". + // kubelet translates that quaternary value in the core API into a boolean in this CRI API. + // Remarks: + // - nil is just treated as false + // - when set to true, readonly must be explicitly set to true, and propagation must be PRIVATE (0). + // - (readonly == false && recursive_read_only == false) does not make the mount read-only. + bool recursive_read_only = 8; } // IDMapping describes host to container ID mappings for a pod sandbox. @@ -1528,6 +1537,22 @@ message StatusRequest { bool verbose = 1; } +message RuntimeHandlerFeatures { + // recursive_read_only_mounts is set to true if the runtime handler supports + // recursive read-only mounts. + // For runc-compatible runtimes, availability of this feature can be detected by checking whether + // the Linux kernel version is >= 5.12, and, `runc features | jq .mountOptions` contains "rro". + bool recursive_read_only_mounts = 1; +} + +message RuntimeHandler { + // Name must be unique in StatusResponse. + // An empty string denotes the default handler. + string name = 1; + // Supported features. + RuntimeHandlerFeatures features = 2; +} + message StatusResponse { // Status of the Runtime. RuntimeStatus status = 1; @@ -1536,6 +1561,8 @@ message StatusResponse { // debug, e.g. plugins used by the container runtime. // It should only be returned non-empty when Verbose is true. map info = 2; + // Runtime handlers. + repeated RuntimeHandler runtime_handlers = 3; } message ImageFsInfoRequest {} diff --git a/vendor/k8s.io/cri-api/pkg/errors/doc.go b/vendor/k8s.io/cri-api/pkg/errors/doc.go new file mode 100644 index 000000000000..f3413ee98046 --- /dev/null +++ b/vendor/k8s.io/cri-api/pkg/errors/doc.go @@ -0,0 +1,19 @@ +/* +Copyright 2020 The Kubernetes Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +// Package errors provides helper functions for use by the kubelet +// to deal with CRI errors. +package errors // import "k8s.io/cri-api/pkg/errors" diff --git a/vendor/k8s.io/cri-api/pkg/errors/errors.go b/vendor/k8s.io/cri-api/pkg/errors/errors.go new file mode 100644 index 000000000000..c8e4a18dec51 --- /dev/null +++ b/vendor/k8s.io/cri-api/pkg/errors/errors.go @@ -0,0 +1,51 @@ +/* +Copyright 2020 The Kubernetes Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +package errors + +import ( + "errors" + + "google.golang.org/grpc/codes" + "google.golang.org/grpc/status" +) + +var ( + // ErrRegistryUnavailable - Get http error on the PullImage RPC call. + ErrRegistryUnavailable = errors.New("RegistryUnavailable") + + // ErrSignatureValidationFailed - Unable to validate the image signature on the PullImage RPC call. + ErrSignatureValidationFailed = errors.New("SignatureValidationFailed") + + // ErrRROUnsupported - Unable to enforce recursive readonly mounts + ErrRROUnsupported = errors.New("RROUnsupported") +) + +// IsNotFound returns a boolean indicating whether the error +// is grpc not found error. +// See https://github.com/grpc/grpc/blob/master/doc/statuscodes.md +// for a list of grpc status codes. +func IsNotFound(err error) bool { + s, ok := status.FromError(err) + if !ok { + return ok + } + if s.Code() == codes.NotFound { + return true + } + + return false +} diff --git a/vendor/modules.txt b/vendor/modules.txt index 2b5b9249b53a..1e6a840c27b9 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -746,9 +746,10 @@ k8s.io/client-go/util/workqueue # k8s.io/component-base v0.29.1 ## explicit; go 1.21 k8s.io/component-base/logs/logreduction -# k8s.io/cri-api v0.29.1 +# k8s.io/cri-api v0.30.0-alpha.2.0.20240216190946-4e003cc3b0a4 ## explicit; go 1.21 k8s.io/cri-api/pkg/apis/runtime/v1 +k8s.io/cri-api/pkg/errors # k8s.io/klog/v2 v2.110.1 ## explicit; go 1.13 k8s.io/klog/v2