diff --git a/pkg/controller/volume/attachdetach/attach_detach_controller.go b/pkg/controller/volume/attachdetach/attach_detach_controller.go index 5f61f227019..63ea1b97000 100644 --- a/pkg/controller/volume/attachdetach/attach_detach_controller.go +++ b/pkg/controller/volume/attachdetach/attach_detach_controller.go @@ -816,10 +816,6 @@ func (adc *attachDetachController) GetPodVolumeDir(podUID types.UID, pluginName, return "" } -func (adc *attachDetachController) GetHostIDsForPod(pod *v1.Pod, containerUID, containerGID *int64) (hostUID, hostGID *int64, err error) { - return nil, nil, nil -} - func (adc *attachDetachController) GetPodPluginDir(podUID types.UID, pluginName string) string { return "" } diff --git a/pkg/controller/volume/expand/expand_controller.go b/pkg/controller/volume/expand/expand_controller.go index 7d7e62d2c12..3c0bd7bd94b 100644 --- a/pkg/controller/volume/expand/expand_controller.go +++ b/pkg/controller/volume/expand/expand_controller.go @@ -393,10 +393,6 @@ func (expc *expandController) GetPodsDir() string { return "" } -func (expc *expandController) GetHostIDsForPod(pod *v1.Pod, containerUID, containerGID *int64) (hostUID, hostGID *int64, err error) { - return nil, nil, nil -} - func (expc *expandController) GetPodVolumeDir(podUID types.UID, pluginName string, volumeName string) string { return "" } diff --git a/pkg/controller/volume/persistentvolume/volume_host.go b/pkg/controller/volume/persistentvolume/volume_host.go index 49b6d3e3df4..79794e41cdf 100644 --- a/pkg/controller/volume/persistentvolume/volume_host.go +++ b/pkg/controller/volume/persistentvolume/volume_host.go @@ -55,10 +55,6 @@ func (ctrl *PersistentVolumeController) GetPodVolumeDir(podUID types.UID, plugin return "" } -func (ctrl *PersistentVolumeController) GetHostIDsForPod(pod *v1.Pod, containerUID, containerGID *int64) (hostUID, hostGID *int64, err error) { - return nil, nil, nil -} - func (ctrl *PersistentVolumeController) GetPodPluginDir(podUID types.UID, pluginName string) string { return "" } diff --git a/pkg/kubelet/kubelet.go b/pkg/kubelet/kubelet.go index 302c70df015..88908246ae3 100644 --- a/pkg/kubelet/kubelet.go +++ b/pkg/kubelet/kubelet.go @@ -110,6 +110,7 @@ import ( "k8s.io/kubernetes/pkg/kubelet/sysctl" "k8s.io/kubernetes/pkg/kubelet/token" kubetypes "k8s.io/kubernetes/pkg/kubelet/types" + "k8s.io/kubernetes/pkg/kubelet/userns" "k8s.io/kubernetes/pkg/kubelet/util" "k8s.io/kubernetes/pkg/kubelet/util/manager" "k8s.io/kubernetes/pkg/kubelet/util/queue" @@ -908,7 +909,7 @@ func NewMainKubelet(kubeCfg *kubeletconfiginternal.KubeletConfiguration, StateDirectory: rootDirectory, }) klet.shutdownManager = shutdownManager - klet.usernsManager, err = MakeUserNsManager(klet) + klet.usernsManager, err = userns.MakeUserNsManager(klet) if err != nil { return nil, err } @@ -1256,7 +1257,7 @@ type Kubelet struct { shutdownManager nodeshutdown.Manager // Manage user namespaces - usernsManager *usernsManager + usernsManager *userns.UsernsManager // Mutex to serialize new pod admission and existing pod resizing podResizeMutex sync.Mutex diff --git a/pkg/kubelet/kubelet_getters.go b/pkg/kubelet/kubelet_getters.go index eed312ceb15..daee529f109 100644 --- a/pkg/kubelet/kubelet_getters.go +++ b/pkg/kubelet/kubelet_getters.go @@ -104,6 +104,11 @@ func (kl *Kubelet) GetPodDir(podUID types.UID) string { return kl.getPodDir(podUID) } +// ListPodsFromDisk gets a list of pods that have data directories. +func (kl *Kubelet) ListPodsFromDisk() ([]types.UID, error) { + return kl.listPodsFromDisk() +} + // getPodDir returns the full path to the per-pod directory for the pod with // the given UID. func (kl *Kubelet) getPodDir(podUID types.UID) string { diff --git a/pkg/kubelet/kubelet_pods.go b/pkg/kubelet/kubelet_pods.go index 1f0080d6b19..3a77baa2464 100644 --- a/pkg/kubelet/kubelet_pods.go +++ b/pkg/kubelet/kubelet_pods.go @@ -426,10 +426,6 @@ func (kl *Kubelet) GetOrCreateUserNamespaceMappings(pod *v1.Pod) (*runtimeapi.Us return kl.usernsManager.GetOrCreateUserNamespaceMappings(pod) } -func (kl *Kubelet) getHostIDsForPod(pod *v1.Pod, containerUID, containerGID *int64) (hostUID, hostGID *int64, err error) { - return kl.usernsManager.getHostIDsForPod(pod, containerUID, containerGID) -} - // GeneratePodHostNameAndDomain creates a hostname and domain name for a pod, // given that pod's spec and annotations or returns an error. func (kl *Kubelet) GeneratePodHostNameAndDomain(pod *v1.Pod) (string, string, error) { diff --git a/pkg/kubelet/kuberuntime/kuberuntime_container_linux.go b/pkg/kubelet/kuberuntime/kuberuntime_container_linux.go index 3cb9c968fb1..4c753b466f3 100644 --- a/pkg/kubelet/kuberuntime/kuberuntime_container_linux.go +++ b/pkg/kubelet/kuberuntime/kuberuntime_container_linux.go @@ -54,6 +54,15 @@ func (m *kubeGenericRuntimeManager) applyPlatformSpecificContainerConfig(config return err } config.Linux = cl + + if utilfeature.DefaultFeatureGate.Enabled(kubefeatures.UserNamespacesStatelessPodsSupport) { + if cl.SecurityContext.NamespaceOptions.UsernsOptions != nil { + for _, mount := range config.Mounts { + mount.UidMappings = cl.SecurityContext.NamespaceOptions.UsernsOptions.Uids + mount.GidMappings = cl.SecurityContext.NamespaceOptions.UsernsOptions.Gids + } + } + } return nil } diff --git a/pkg/kubelet/userns_manager.go b/pkg/kubelet/userns/userns_manager.go similarity index 78% rename from pkg/kubelet/userns_manager.go rename to pkg/kubelet/userns/userns_manager.go index 6b03a976824..7d23f215adc 100644 --- a/pkg/kubelet/userns_manager.go +++ b/pkg/kubelet/userns/userns_manager.go @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package kubelet +package userns import ( "encoding/json" @@ -49,11 +49,11 @@ const maxPods = 1024 const mapReInitializeThreshold = 1000 type userNsPodsManager interface { - getPodDir(podUID types.UID) string - listPodsFromDisk() ([]types.UID, error) + GetPodDir(podUID types.UID) string + ListPodsFromDisk() ([]types.UID, error) } -type usernsManager struct { +type UsernsManager struct { used *allocator.AllocationBitmap usedBy map[types.UID]uint32 // Map pod.UID to range used removed int @@ -86,8 +86,8 @@ const mappingsFile = "userns" // writeMappingsToFile writes the specified user namespace configuration to the pod // directory. -func (m *usernsManager) writeMappingsToFile(pod types.UID, userNs userNamespace) error { - dir := m.kl.getPodDir(pod) +func (m *UsernsManager) writeMappingsToFile(pod types.UID, userNs userNamespace) error { + dir := m.kl.GetPodDir(pod) data, err := json.Marshal(userNs) if err != nil { @@ -119,8 +119,8 @@ func (m *usernsManager) writeMappingsToFile(pod types.UID, userNs userNamespace) } // readMappingsFromFile reads the user namespace configuration from the pod directory. -func (m *usernsManager) readMappingsFromFile(pod types.UID) ([]byte, error) { - dir := m.kl.getPodDir(pod) +func (m *UsernsManager) readMappingsFromFile(pod types.UID) ([]byte, error) { + dir := m.kl.GetPodDir(pod) fstore, err := utilstore.NewFileStore(dir, &utilfs.DefaultFs{}) if err != nil { return nil, err @@ -128,8 +128,8 @@ func (m *usernsManager) readMappingsFromFile(pod types.UID) ([]byte, error) { return fstore.Read(mappingsFile) } -func MakeUserNsManager(kl userNsPodsManager) (*usernsManager, error) { - m := usernsManager{ +func MakeUserNsManager(kl userNsPodsManager) (*UsernsManager, error) { + m := UsernsManager{ // Create a bitArray for all the UID space (2^32). // As a by product of that, no index param to bitArray can be out of bounds (index is uint32). used: allocator.NewAllocationMap((math.MaxUint32+1)/userNsLength, "user namespaces"), @@ -141,17 +141,12 @@ func MakeUserNsManager(kl userNsPodsManager) (*usernsManager, error) { return nil, err } - // Second block will be used for phase II. Don't assign that range for now. - if _, err := m.used.Allocate(1); err != nil { - return nil, err - } - // do not bother reading the list of pods if user namespaces are not enabled. if !utilfeature.DefaultFeatureGate.Enabled(features.UserNamespacesStatelessPodsSupport) { return &m, nil } - found, err := kl.listPodsFromDisk() + found, err := kl.ListPodsFromDisk() if err != nil { if os.IsNotExist(err) { return &m, nil @@ -171,7 +166,7 @@ func MakeUserNsManager(kl userNsPodsManager) (*usernsManager, error) { // recordPodMappings registers the range used for the user namespace if the // usernsConfFile exists in the pod directory. -func (m *usernsManager) recordPodMappings(pod types.UID) error { +func (m *UsernsManager) recordPodMappings(pod types.UID) error { content, err := m.readMappingsFromFile(pod) if err != nil && err != utilstore.ErrKeyNotFound { return err @@ -187,7 +182,7 @@ func (m *usernsManager) recordPodMappings(pod types.UID) error { } // isSet checks if the specified index is already set. -func (m *usernsManager) isSet(v uint32) bool { +func (m *UsernsManager) isSet(v uint32) bool { index := int(v / userNsLength) return m.used.Has(index) } @@ -195,7 +190,7 @@ func (m *usernsManager) isSet(v uint32) bool { // allocateOne finds a free user namespace and allocate it to the specified pod. // The first return value is the first ID in the user namespace, the second returns // the length for the user namespace range. -func (m *usernsManager) allocateOne(pod types.UID) (firstID uint32, length uint32, err error) { +func (m *UsernsManager) allocateOne(pod types.UID) (firstID uint32, length uint32, err error) { if m.numAllocated >= maxPods { return 0, 0, fmt.Errorf("limit on count of pods with user namespaces exceeded (limit is %v, current pods with userns: %v)", maxPods, m.numAllocated) } @@ -222,7 +217,7 @@ func (m *usernsManager) allocateOne(pod types.UID) (firstID uint32, length uint3 } // record stores the user namespace [from; from+length] to the specified pod. -func (m *usernsManager) record(pod types.UID, from, length uint32) (err error) { +func (m *UsernsManager) record(pod types.UID, from, length uint32) (err error) { if length != userNsLength { return fmt.Errorf("wrong user namespace length %v", length) } @@ -262,7 +257,7 @@ func (m *usernsManager) record(pod types.UID, from, length uint32) (err error) { } // Release releases the user namespace allocated to the specified pod. -func (m *usernsManager) Release(podUID types.UID) { +func (m *UsernsManager) Release(podUID types.UID) { if !utilfeature.DefaultFeatureGate.Enabled(features.UserNamespacesStatelessPodsSupport) { return } @@ -273,7 +268,7 @@ func (m *usernsManager) Release(podUID types.UID) { m.releaseWithLock(podUID) } -func (m *usernsManager) releaseWithLock(pod types.UID) { +func (m *UsernsManager) releaseWithLock(pod types.UID) { v, ok := m.usedBy[pod] if !ok { klog.V(5).InfoS("pod user namespace allocation not present", "podUID", pod) @@ -285,7 +280,7 @@ func (m *usernsManager) releaseWithLock(pod types.UID) { m.numAllocated-- m.removed++ - _ = os.Remove(filepath.Join(m.kl.getPodDir(pod), mappingsFile)) + _ = os.Remove(filepath.Join(m.kl.GetPodDir(pod), mappingsFile)) if m.removed%mapReInitializeThreshold == 0 { n := make(map[types.UID]uint32) @@ -298,7 +293,7 @@ func (m *usernsManager) releaseWithLock(pod types.UID) { m.used.Release(int(v / userNsLength)) } -func (m *usernsManager) parseUserNsFileAndRecord(pod types.UID, content []byte) (userNs userNamespace, err error) { +func (m *UsernsManager) parseUserNsFileAndRecord(pod types.UID, content []byte) (userNs userNamespace, err error) { if err = json.Unmarshal([]byte(content), &userNs); err != nil { err = fmt.Errorf("can't parse file: %w", err) return @@ -338,7 +333,7 @@ func (m *usernsManager) parseUserNsFileAndRecord(pod types.UID, content []byte) return } -func (m *usernsManager) createUserNs(pod *v1.Pod) (userNs userNamespace, err error) { +func (m *UsernsManager) createUserNs(pod *v1.Pod) (userNs userNamespace, err error) { firstID, length, err := m.allocateOne(pod.UID) if err != nil { return @@ -371,7 +366,7 @@ func (m *usernsManager) createUserNs(pod *v1.Pod) (userNs userNamespace, err err } // GetOrCreateUserNamespaceMappings returns the configuration for the sandbox user namespace -func (m *usernsManager) GetOrCreateUserNamespaceMappings(pod *v1.Pod) (*runtimeapi.UserNamespace, error) { +func (m *UsernsManager) GetOrCreateUserNamespaceMappings(pod *v1.Pod) (*runtimeapi.UserNamespace, error) { if !utilfeature.DefaultFeatureGate.Enabled(features.UserNamespacesStatelessPodsSupport) { return nil, nil } @@ -431,7 +426,7 @@ func (m *usernsManager) GetOrCreateUserNamespaceMappings(pod *v1.Pod) (*runtimea // CleanupOrphanedPodUsernsAllocations reconciliates the state of user namespace // allocations with the pods actually running. It frees any user namespace // allocation for orphaned pods. -func (m *usernsManager) CleanupOrphanedPodUsernsAllocations(pods []*v1.Pod, runningPods []*kubecontainer.Pod) error { +func (m *UsernsManager) CleanupOrphanedPodUsernsAllocations(pods []*v1.Pod, runningPods []*kubecontainer.Pod) error { if !utilfeature.DefaultFeatureGate.Enabled(features.UserNamespacesStatelessPodsSupport) { return nil } @@ -448,7 +443,7 @@ func (m *usernsManager) CleanupOrphanedPodUsernsAllocations(pods []*v1.Pod, runn } allFound := sets.NewString() - found, err := m.kl.listPodsFromDisk() + found, err := m.kl.ListPodsFromDisk() if err != nil { return err } @@ -479,68 +474,3 @@ func (m *usernsManager) CleanupOrphanedPodUsernsAllocations(pods []*v1.Pod, runn return nil } - -// getHostIDsForPod if the pod uses user namespaces, takes the uid and gid -// inside the container and returns the host UID and GID those are mapped to on -// the host. If containerUID/containerGID is nil, then it returns the host -// UID/GID for ID 0 inside the container. -// If the pod is not using user namespaces, as there is no mapping needed, the -// same containerUID and containerGID params are returned. -func (m *usernsManager) getHostIDsForPod(pod *v1.Pod, containerUID, containerGID *int64) (hostUID, hostGID *int64, err error) { - if !utilfeature.DefaultFeatureGate.Enabled(features.UserNamespacesStatelessPodsSupport) { - return containerUID, containerGID, nil - } - - if pod == nil || pod.Spec.HostUsers == nil || *pod.Spec.HostUsers == true { - return containerUID, containerGID, nil - } - - mapping, err := m.GetOrCreateUserNamespaceMappings(pod) - if err != nil { - err = fmt.Errorf("Error getting pod user namespace mapping: %w", err) - return - } - - uid, err := hostIDFromMapping(mapping.Uids, containerUID) - if err != nil { - err = fmt.Errorf("Error getting host UID: %w", err) - return - } - - gid, err := hostIDFromMapping(mapping.Gids, containerGID) - if err != nil { - err = fmt.Errorf("Error getting host GID: %w", err) - return - } - - return &uid, &gid, nil -} - -func hostIDFromMapping(mapping []*runtimeapi.IDMapping, containerId *int64) (int64, error) { - if len(mapping) == 0 { - return 0, fmt.Errorf("can't use empty user namespace mapping") - } - - // If none is requested, root inside the container is used - id := int64(0) - if containerId != nil { - id = *containerId - } - - for _, m := range mapping { - if m == nil { - continue - } - - firstId := int64(m.ContainerId) - lastId := firstId + int64(m.Length) - 1 - - // The id we are looking for is in the range - if id >= firstId && id <= lastId { - // Return the host id for this container id - return int64(m.HostId) + id - firstId, nil - } - } - - return 0, fmt.Errorf("ID: %v not present in pod user namespace", id) -} diff --git a/pkg/kubelet/userns_manager_test.go b/pkg/kubelet/userns/userns_manager_test.go similarity index 65% rename from pkg/kubelet/userns_manager_test.go rename to pkg/kubelet/userns/userns_manager_test.go index d61d6d733ff..5555296f58d 100644 --- a/pkg/kubelet/userns_manager_test.go +++ b/pkg/kubelet/userns/userns_manager_test.go @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package kubelet +package userns import ( "fmt" @@ -25,18 +25,17 @@ import ( "k8s.io/apimachinery/pkg/types" utilfeature "k8s.io/apiserver/pkg/util/feature" featuregatetesting "k8s.io/component-base/featuregate/testing" - runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1" pkgfeatures "k8s.io/kubernetes/pkg/features" ) type testUserNsPodsManager struct { } -func (m *testUserNsPodsManager) getPodDir(podUID types.UID) string { +func (m *testUserNsPodsManager) GetPodDir(podUID types.UID) string { return "/tmp/non-existant-dir.This-is-not-used-in-tests" } -func (m *testUserNsPodsManager) listPodsFromDisk() ([]types.UID, error) { +func (m *testUserNsPodsManager) ListPodsFromDisk() ([]types.UID, error) { return nil, nil } @@ -47,8 +46,7 @@ func TestUserNsManagerAllocate(t *testing.T) { m, err := MakeUserNsManager(testUserNsPodsManager) require.NoError(t, err) - assert.Equal(t, true, m.isSet(0), "m.isSet(0) should be true") - assert.Equal(t, true, m.isSet(1), "m.isSet(1) should be true") + assert.Equal(t, true, m.isSet(0*65536), "m.isSet(0) should be true") allocated, length, err := m.allocateOne("one") assert.NoError(t, err) @@ -173,133 +171,3 @@ func TestUserNsManagerParseUserNsFile(t *testing.T) { }) } } - -func TestUserNsManagerHostIDFromMapping(t *testing.T) { - // mapping []*runtimeapi.IDMapping, containerId *int64 - - cases := []struct { - name string - success bool - containerId int64 // -1 means a nil ptr will be used. - expHostId int64 - m []*runtimeapi.IDMapping - }{ - { - name: "one basic mapping", - success: true, - containerId: -1, - expHostId: 0, - m: []*runtimeapi.IDMapping{ - { - HostId: 0, - ContainerId: 0, - Length: userNsLength, - }, - }, - }, - { - name: "one unprivileged mapping", - success: true, - containerId: -1, - expHostId: userNsLength * 2, - m: []*runtimeapi.IDMapping{ - { - HostId: userNsLength * 2, - ContainerId: 0, - Length: userNsLength, - }, - }, - }, - { - name: "one unprivileged mapping random id", - success: true, - containerId: 3, - expHostId: userNsLength*2 + 3, - m: []*runtimeapi.IDMapping{ - { - HostId: userNsLength * 2, - ContainerId: 0, - Length: userNsLength, - }, - }, - }, - { - name: "two unprivileged mapping", - success: true, - containerId: 0, - expHostId: userNsLength*2 + 0, - m: []*runtimeapi.IDMapping{ - { - HostId: userNsLength * 2, - ContainerId: 0, - Length: 1, - }, - { - HostId: userNsLength*2 + 10, - ContainerId: 1, - Length: 1, - }, - }, - }, - { - name: "two unprivileged mapping - random id", - success: true, - containerId: 1, - expHostId: userNsLength*2 + 10, - m: []*runtimeapi.IDMapping{ - { - HostId: userNsLength * 2, - ContainerId: 0, - Length: 1, - }, - { - HostId: userNsLength*2 + 10, - ContainerId: 1, - Length: 1, - }, - }, - }, - { - name: "two unprivileged mapping - not mapped user", - success: false, - containerId: 3, - m: []*runtimeapi.IDMapping{ - { - HostId: userNsLength * 2, - ContainerId: 0, - Length: 1, - }, - { - HostId: userNsLength*2 + 1, - ContainerId: 1, - Length: 1, - }, - }, - }, - { - name: "no mappings", - success: false, - }, - } - - for _, tc := range cases { - t.Run(tc.name, func(t *testing.T) { - var containerId *int64 - if tc.containerId != -1 { - containerId = &tc.containerId - } - - id, err := hostIDFromMapping(tc.m, containerId) - if (tc.success && err != nil) || (!tc.success && err == nil) { - t.Fatalf("%v: expected success: %v - got error: %v", tc.name, tc.success, err) - } - if !tc.success && err != nil { - return - } - - if id != tc.expHostId { - t.Errorf("expected: %v - got: %v", tc.expHostId, id) - } - }) - } -} diff --git a/pkg/kubelet/volume_host.go b/pkg/kubelet/volume_host.go index 1a79460680a..ec321b4066e 100644 --- a/pkg/kubelet/volume_host.go +++ b/pkg/kubelet/volume_host.go @@ -128,16 +128,6 @@ func (kvh *kubeletVolumeHost) GetPodsDir() string { return kvh.kubelet.getPodsDir() } -// GetHostIDsForPod if the pod uses user namespaces, takes the uid and gid -// inside the container and returns the host UID and GID those are mapped to on -// the host. If containerUID/containerGID is nil, then it returns the host -// UID/GID for ID 0 inside the container. -// If the pod is not using user namespaces, as there is no mapping needed, the -// same containerUID and containerGID params are returned. -func (kvh *kubeletVolumeHost) GetHostIDsForPod(pod *v1.Pod, containerUID, containerGID *int64) (hostUID, hostGID *int64, err error) { - return kvh.kubelet.getHostIDsForPod(pod, containerUID, containerGID) -} - func (kvh *kubeletVolumeHost) GetPodVolumeDir(podUID types.UID, pluginName string, volumeName string) string { dir := kvh.kubelet.getPodVolumeDir(podUID, pluginName, volumeName) if runtime.GOOS == "windows" { diff --git a/pkg/volume/plugins.go b/pkg/volume/plugins.go index 8f1e3da32cf..e56d410a505 100644 --- a/pkg/volume/plugins.go +++ b/pkg/volume/plugins.go @@ -334,13 +334,6 @@ type KubeletVolumeHost interface { WaitForCacheSync() error // Returns hostutil.HostUtils GetHostUtil() hostutil.HostUtils - // GetHostIDsForPod if the pod uses user namespaces, takes the uid and - // gid inside the container and returns the host UID and GID those are - // mapped to on the host. If containerUID/containerGID is nil, then it - // returns the host UID/GID for ID 0 inside the container. - // If the pod is not using user namespaces, as there is no mapping needed, the - // same containerUID and containerGID params are returned. - GetHostIDsForPod(pod *v1.Pod, containerUID, containerGID *int64) (hostUID, hostGID *int64, err error) } // AttachDetachVolumeHost is a AttachDetach Controller specific interface that plugins can use diff --git a/pkg/volume/testing/volume_host.go b/pkg/volume/testing/volume_host.go index 457ab3ce995..78c4a70566a 100644 --- a/pkg/volume/testing/volume_host.go +++ b/pkg/volume/testing/volume_host.go @@ -123,10 +123,6 @@ func (f *fakeVolumeHost) GetPodsDir() string { return filepath.Join(f.rootDir, "pods") } -func (f *fakeVolumeHost) GetHostIDsForPod(pod *v1.Pod, containerUID, containerGID *int64) (hostUID, hostGID *int64, err error) { - return containerUID, containerGID, nil -} - func (f *fakeVolumeHost) GetPodVolumeDir(podUID types.UID, pluginName, volumeName string) string { return filepath.Join(f.rootDir, "pods", string(podUID), "volumes", pluginName, volumeName) } diff --git a/pkg/volume/util/operationexecutor/operation_generator.go b/pkg/volume/util/operationexecutor/operation_generator.go index d47d422f888..af6633ed590 100644 --- a/pkg/volume/util/operationexecutor/operation_generator.go +++ b/pkg/volume/util/operationexecutor/operation_generator.go @@ -682,35 +682,10 @@ func (og *operationGenerator) GenerateMountVolumeFunc( resizeOptions.DeviceStagePath = deviceStagePath } - // No mapping is needed for hostUID/hostGID if userns is not used. - // Therefore, just assign the container users to host UID/GID. - hostUID := util.FsUserFrom(volumeToMount.Pod) - hostGID := fsGroup - if utilfeature.DefaultFeatureGate.Enabled(features.UserNamespacesStatelessPodsSupport) { - // Without userns hostUID/GID was the user inside the container too. - containerUID, containerGID := hostUID, hostGID - - kvh, ok := og.GetVolumePluginMgr().Host.(volume.KubeletVolumeHost) - if !ok { - msg := fmt.Errorf("volume host does not implement KubeletVolumeHost interface") - eventErr, detailedErr := volumeToMount.GenerateError("MountVolume type assertion error", msg) - return volumetypes.NewOperationContext(eventErr, detailedErr, migrated) - } - - // This pod _might_ use userns. GetHostIDsForPod() will give us the right - // UID/GID to use for this pod (no matter if the pod uses userns or not). - hostUID, hostGID, err = kvh.GetHostIDsForPod(volumeToMount.Pod, containerUID, containerGID) - if err != nil { - msg := fmt.Sprintf("MountVolume.GetHostIDsForPod failed to find host ID in user namespace (UID: %v GID: %v)", containerUID, containerGID) - eventErr, detailedErr := volumeToMount.GenerateError(msg, err) - return volumetypes.NewOperationContext(eventErr, detailedErr, migrated) - } - } - // Execute mount mountErr := volumeMounter.SetUp(volume.MounterArgs{ - FsUser: hostUID, - FsGroup: hostGID, + FsUser: util.FsUserFrom(volumeToMount.Pod), + FsGroup: fsGroup, DesiredSize: volumeToMount.DesiredSizeLimit, FSGroupChangePolicy: fsGroupChangePolicy, SELinuxLabel: volumeToMount.SELinuxLabel, diff --git a/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.pb.go b/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.pb.go index ac44d81a37c..56bc7dbae7f 100644 --- a/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.pb.go +++ b/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.pb.go @@ -577,9 +577,13 @@ type Mount struct { // If set, the mount needs SELinux relabeling. SelinuxRelabel bool `protobuf:"varint,4,opt,name=selinux_relabel,json=selinuxRelabel,proto3" json:"selinux_relabel,omitempty"` // Requested propagation mode. - Propagation MountPropagation `protobuf:"varint,5,opt,name=propagation,proto3,enum=runtime.v1.MountPropagation" json:"propagation,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_sizecache int32 `json:"-"` + Propagation MountPropagation `protobuf:"varint,5,opt,name=propagation,proto3,enum=runtime.v1.MountPropagation" json:"propagation,omitempty"` + // 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:"-"` } func (m *Mount) Reset() { *m = Mount{} } @@ -649,6 +653,20 @@ func (m *Mount) GetPropagation() MountPropagation { return MountPropagation_PROPAGATION_PRIVATE } +func (m *Mount) GetUidMappings() []*IDMapping { + if m != nil { + return m.UidMappings + } + return nil +} + +func (m *Mount) GetGidMappings() []*IDMapping { + if m != nil { + return m.GidMappings + } + return nil +} + // IDMapping describes host to container ID mappings for a pod sandbox. type IDMapping struct { // HostId is the id on the host. @@ -9717,418 +9735,420 @@ func init() { func init() { proto.RegisterFile("api.proto", fileDescriptor_00212fb1f9d3bf1c) } var fileDescriptor_00212fb1f9d3bf1c = []byte{ - // 6569 bytes of a gzipped FileDescriptorProto + // 6593 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x7d, 0x4d, 0x6c, 0x1c, 0xc9, 0x75, 0x30, 0x7b, 0x66, 0x48, 0xce, 0xbc, 0xe1, 0x90, 0xc3, 0x12, 0x45, 0x52, 0x43, 0x89, 0x92, 0x7a, 0xff, 0xf4, 0xb3, 0xfa, 0x59, 0xad, 0x76, 0x57, 0x92, 0xb5, 0xbb, 0x1a, 0x91, 0x5c, 0x69, - 0xd6, 0x12, 0x39, 0x6e, 0x92, 0xb2, 0xd7, 0xfe, 0xe0, 0xfe, 0x5a, 0xd3, 0x45, 0xb2, 0x57, 0x33, - 0xdd, 0xed, 0xee, 0x1e, 0x49, 0xf4, 0x29, 0xc7, 0xc4, 0x27, 0x03, 0x89, 0x63, 0xc0, 0x08, 0x12, - 0xe4, 0x90, 0x1f, 0x20, 0x87, 0x04, 0x01, 0x12, 0x38, 0x08, 0x92, 0x00, 0x41, 0x62, 0x38, 0x01, - 0x02, 0xf8, 0x90, 0x00, 0x3e, 0x04, 0x88, 0xbd, 0x09, 0x10, 0x20, 0x87, 0x5c, 0xe2, 0x43, 0x6e, - 0x0e, 0xea, 0xaf, 0xbb, 0xab, 0x7f, 0xe6, 0x87, 0xbb, 0xde, 0x5d, 0x9f, 0x38, 0xfd, 0xea, 0xbd, - 0x57, 0xaf, 0x5e, 0xbd, 0x7a, 0xf5, 0xaa, 0xea, 0x55, 0x11, 0x2a, 0x86, 0x6b, 0x5d, 0x76, 0x3d, - 0x27, 0x70, 0x10, 0x78, 0x7d, 0x3b, 0xb0, 0x7a, 0xf8, 0xf2, 0xd3, 0xd7, 0x1a, 0x97, 0xf6, 0xad, - 0xe0, 0xa0, 0xff, 0xf8, 0x72, 0xc7, 0xe9, 0x5d, 0xd9, 0x77, 0xf6, 0x9d, 0x2b, 0x14, 0xe5, 0x71, - 0x7f, 0x8f, 0x7e, 0xd1, 0x0f, 0xfa, 0x8b, 0x91, 0xaa, 0x17, 0x60, 0xf6, 0x11, 0xf6, 0x7c, 0xcb, - 0xb1, 0x35, 0xfc, 0x8d, 0x3e, 0xf6, 0x03, 0xb4, 0x0c, 0xd3, 0x4f, 0x19, 0x64, 0x59, 0x39, 0xa3, - 0x9c, 0xab, 0x68, 0xe2, 0x53, 0xfd, 0x03, 0x05, 0xe6, 0x42, 0x64, 0xdf, 0x75, 0x6c, 0x1f, 0xe7, - 0x63, 0xa3, 0xb3, 0x30, 0xc3, 0xc5, 0xd2, 0x6d, 0xa3, 0x87, 0x97, 0x0b, 0xb4, 0xb8, 0xca, 0x61, - 0x9b, 0x46, 0x0f, 0xa3, 0x57, 0x60, 0x4e, 0xa0, 0x08, 0x26, 0x45, 0x8a, 0x35, 0xcb, 0xc1, 0xbc, - 0x36, 0x74, 0x19, 0x8e, 0x09, 0x44, 0xc3, 0xb5, 0x42, 0xe4, 0x12, 0x45, 0x9e, 0xe7, 0x45, 0x4d, - 0xd7, 0xe2, 0xf8, 0xea, 0xd7, 0xa0, 0xb2, 0xbe, 0xb9, 0xbd, 0xe6, 0xd8, 0x7b, 0xd6, 0x3e, 0x11, + 0xd6, 0x12, 0x39, 0x6e, 0x92, 0xb2, 0xd7, 0xfe, 0xe0, 0xfe, 0x5a, 0xd3, 0xc5, 0x61, 0xaf, 0x66, + 0xba, 0xdb, 0xdd, 0x3d, 0x92, 0xe8, 0x53, 0x8e, 0x89, 0x4f, 0x06, 0x12, 0xc7, 0x80, 0x11, 0x24, + 0xc8, 0x21, 0x3f, 0x40, 0x0e, 0x09, 0x02, 0x24, 0x70, 0x10, 0x24, 0x01, 0x8c, 0xc4, 0x70, 0x02, + 0x04, 0xc8, 0x21, 0x01, 0x7c, 0x08, 0x10, 0x7b, 0x13, 0x20, 0x40, 0x0e, 0xb9, 0xc4, 0x87, 0xdc, + 0x1c, 0xd4, 0x5f, 0x77, 0x57, 0xff, 0xcc, 0x0c, 0xb9, 0xeb, 0xdd, 0xf5, 0x89, 0xd3, 0xaf, 0xde, + 0x7b, 0xf5, 0xea, 0xd5, 0xab, 0x57, 0xaf, 0xaa, 0x5e, 0x15, 0xa1, 0x62, 0xb8, 0xd6, 0x65, 0xd7, + 0x73, 0x02, 0x07, 0x81, 0x37, 0xb0, 0x03, 0xab, 0x8f, 0x2f, 0x3f, 0x7d, 0xad, 0x71, 0xa9, 0x6b, + 0x05, 0xfb, 0x83, 0xc7, 0x97, 0x3b, 0x4e, 0xff, 0x4a, 0xd7, 0xe9, 0x3a, 0x57, 0x28, 0xca, 0xe3, + 0xc1, 0x1e, 0xfd, 0xa2, 0x1f, 0xf4, 0x17, 0x23, 0x55, 0x2f, 0xc0, 0xec, 0x23, 0xec, 0xf9, 0x96, + 0x63, 0x6b, 0xf8, 0x1b, 0x03, 0xec, 0x07, 0x68, 0x19, 0xa6, 0x9f, 0x32, 0xc8, 0xb2, 0x72, 0x46, + 0x39, 0x57, 0xd1, 0xc4, 0xa7, 0xfa, 0x07, 0x0a, 0xcc, 0x85, 0xc8, 0xbe, 0xeb, 0xd8, 0x3e, 0xce, + 0xc7, 0x46, 0x67, 0x61, 0x86, 0x8b, 0xa5, 0xdb, 0x46, 0x1f, 0x2f, 0x17, 0x68, 0x71, 0x95, 0xc3, + 0x36, 0x8d, 0x3e, 0x46, 0xaf, 0xc0, 0x9c, 0x40, 0x11, 0x4c, 0x8a, 0x14, 0x6b, 0x96, 0x83, 0x79, + 0x6d, 0xe8, 0x32, 0x1c, 0x13, 0x88, 0x86, 0x6b, 0x85, 0xc8, 0x25, 0x8a, 0x3c, 0xcf, 0x8b, 0x9a, + 0xae, 0xc5, 0xf1, 0xd5, 0xaf, 0x41, 0x65, 0x7d, 0x73, 0x7b, 0xcd, 0xb1, 0xf7, 0xac, 0x2e, 0x11, 0xd1, 0xc7, 0x1e, 0xa1, 0x59, 0x56, 0xce, 0x14, 0x89, 0x88, 0xfc, 0x13, 0x35, 0xa0, 0xec, 0x63, - 0xc3, 0xeb, 0x1c, 0x60, 0x7f, 0xb9, 0x40, 0x8b, 0xc2, 0x6f, 0x42, 0xe5, 0xb8, 0x81, 0xe5, 0xd8, + 0xc3, 0xeb, 0xec, 0x63, 0x7f, 0xb9, 0x40, 0x8b, 0xc2, 0x6f, 0x42, 0xe5, 0xb8, 0x81, 0xe5, 0xd8, 0xfe, 0x72, 0x91, 0x51, 0xf1, 0x4f, 0xf5, 0xb7, 0x14, 0xa8, 0xb6, 0x1d, 0x2f, 0x78, 0x68, 0xb8, - 0xae, 0x65, 0xef, 0xa3, 0xab, 0x50, 0xa6, 0xba, 0xec, 0x38, 0x5d, 0xaa, 0x83, 0xd9, 0x6b, 0x0b, - 0x97, 0xa3, 0x0e, 0xb9, 0xdc, 0xe6, 0x65, 0x5a, 0x88, 0x85, 0x5e, 0x82, 0xd9, 0x8e, 0x63, 0x07, - 0x86, 0x65, 0x63, 0x4f, 0x77, 0x1d, 0x2f, 0xa0, 0xca, 0x99, 0xd4, 0x6a, 0x21, 0x94, 0xf0, 0x47, - 0x2b, 0x50, 0x39, 0x70, 0xfc, 0x80, 0x61, 0x14, 0x29, 0x46, 0x99, 0x00, 0x68, 0xe1, 0x12, 0x4c, - 0xd3, 0x42, 0xcb, 0xe5, 0x6a, 0x98, 0x22, 0x9f, 0x2d, 0x57, 0xfd, 0x91, 0x02, 0x93, 0x0f, 0x9d, - 0xbe, 0x1d, 0x24, 0xaa, 0x31, 0x82, 0x03, 0xde, 0x45, 0xb1, 0x6a, 0x8c, 0xe0, 0x20, 0xaa, 0x86, - 0x60, 0xb0, 0x5e, 0x62, 0xd5, 0x90, 0xc2, 0x06, 0x94, 0x3d, 0x6c, 0x98, 0x8e, 0xdd, 0x3d, 0xa4, - 0x22, 0x94, 0xb5, 0xf0, 0x9b, 0x74, 0x9f, 0x8f, 0xbb, 0x96, 0xdd, 0x7f, 0xae, 0x7b, 0xb8, 0x6b, - 0x3c, 0xc6, 0x5d, 0x2a, 0x4a, 0x59, 0x9b, 0xe5, 0x60, 0x8d, 0x41, 0xd1, 0x3b, 0x50, 0x75, 0x3d, - 0xc7, 0x35, 0xf6, 0x0d, 0xa2, 0xc1, 0xe5, 0x49, 0xaa, 0xa4, 0x93, 0x71, 0x25, 0x51, 0x81, 0xdb, - 0x11, 0x8e, 0x16, 0x27, 0x50, 0x75, 0xa8, 0xb4, 0xd6, 0x85, 0xba, 0xc3, 0x86, 0x9b, 0xb4, 0x39, - 0x35, 0xde, 0x70, 0x93, 0x18, 0x5c, 0xd4, 0x5c, 0xcb, 0xa4, 0x4d, 0xa9, 0x69, 0xd5, 0x10, 0xd6, - 0x32, 0xd1, 0x22, 0x4c, 0x75, 0xb1, 0xbd, 0x1f, 0x1c, 0xd0, 0xb6, 0xd4, 0x34, 0xfe, 0xa5, 0xfe, - 0x86, 0x02, 0xb5, 0x5d, 0x1f, 0x7b, 0xc4, 0x2a, 0x7d, 0xd7, 0xe8, 0x60, 0x74, 0x09, 0x4a, 0x3d, - 0xc7, 0xc4, 0xbc, 0x43, 0x4f, 0xc4, 0x65, 0x0d, 0x91, 0x1e, 0x3a, 0x26, 0xd6, 0x28, 0x1a, 0x3a, - 0x0f, 0xa5, 0xbe, 0x65, 0x32, 0x2b, 0xaa, 0x5e, 0x3b, 0x1e, 0x47, 0x0f, 0x25, 0xd7, 0x28, 0x0a, - 0x41, 0xdd, 0x27, 0xa8, 0xc5, 0x81, 0xa8, 0x04, 0x45, 0xfd, 0xb9, 0x02, 0x73, 0x61, 0x6d, 0x5b, - 0xd4, 0xfc, 0xd0, 0xeb, 0x30, 0x6d, 0xe3, 0xe0, 0x99, 0xe3, 0x3d, 0x19, 0x2e, 0x9b, 0xc0, 0x44, - 0x17, 0xa1, 0xe8, 0x72, 0x8d, 0x0c, 0x24, 0x20, 0x58, 0x04, 0xd9, 0x72, 0x3b, 0x54, 0x43, 0x83, - 0x91, 0x2d, 0xb7, 0x43, 0x8c, 0x27, 0x30, 0xbc, 0x7d, 0x4c, 0xfb, 0x83, 0x19, 0x62, 0x99, 0x01, - 0x5a, 0x26, 0xba, 0x03, 0xb3, 0x7d, 0x1f, 0x7b, 0xb6, 0xaf, 0x8b, 0xa1, 0x44, 0xba, 0xbe, 0x2a, - 0x33, 0x95, 0xf4, 0xae, 0xd5, 0x18, 0xc1, 0x16, 0x1f, 0x6b, 0x2a, 0x40, 0xcb, 0x0e, 0xde, 0xbc, - 0xfe, 0xc8, 0xe8, 0xf6, 0x31, 0x5a, 0x80, 0xc9, 0xa7, 0xe4, 0x07, 0x6d, 0x79, 0x51, 0x63, 0x1f, - 0xea, 0x5f, 0x95, 0x60, 0xe5, 0x01, 0x31, 0xb7, 0x6d, 0xc3, 0x36, 0x1f, 0x3b, 0xcf, 0xb7, 0x71, - 0xa7, 0xef, 0x59, 0xc1, 0xe1, 0x9a, 0x63, 0x07, 0xf8, 0x79, 0x80, 0xee, 0xc3, 0xbc, 0x2d, 0xf8, - 0x87, 0x82, 0x28, 0x54, 0x90, 0x95, 0xcc, 0xd6, 0xb1, 0xca, 0xb5, 0xba, 0x2d, 0x03, 0x7c, 0x74, - 0x37, 0x32, 0x78, 0xc1, 0xa7, 0x90, 0x6e, 0xd0, 0xf6, 0x06, 0x95, 0x86, 0x73, 0x11, 0x63, 0x41, - 0xf0, 0x78, 0x13, 0x88, 0x0b, 0xd4, 0x0d, 0x5f, 0x27, 0x2d, 0xa5, 0x5a, 0xae, 0x5e, 0x5b, 0x94, - 0xac, 0x20, 0x6c, 0xb0, 0x56, 0xf1, 0xfa, 0x76, 0xd3, 0x27, 0x1a, 0x42, 0x37, 0xa8, 0x3b, 0x25, - 0x74, 0xfb, 0x9e, 0xd3, 0x77, 0x97, 0xcb, 0x03, 0x09, 0x81, 0x12, 0xde, 0x23, 0x98, 0xd4, 0xcb, - 0xf2, 0x21, 0xab, 0x7b, 0x8e, 0x13, 0xec, 0xf9, 0x62, 0x98, 0x0a, 0xb0, 0x46, 0xa1, 0xe8, 0x0a, - 0x1c, 0xf3, 0xfb, 0xae, 0xdb, 0xc5, 0x3d, 0x6c, 0x07, 0x46, 0x97, 0x55, 0x44, 0xfa, 0xac, 0x78, - 0xae, 0xa8, 0xa1, 0x78, 0x11, 0x65, 0xec, 0xa3, 0x55, 0x00, 0xd7, 0xb3, 0x9e, 0x5a, 0x5d, 0xbc, - 0x8f, 0xcd, 0xe5, 0x29, 0xca, 0x34, 0x06, 0x41, 0x6f, 0x10, 0xcf, 0xdb, 0xe9, 0x38, 0x3d, 0x77, - 0xb9, 0x92, 0xd6, 0xb7, 0xe8, 0xa7, 0xb6, 0xe7, 0xec, 0x59, 0x5d, 0xac, 0x09, 0x5c, 0xf4, 0x16, - 0x94, 0x0d, 0xd7, 0x35, 0xbc, 0x9e, 0xe3, 0x2d, 0xc3, 0x70, 0xba, 0x10, 0x19, 0x5d, 0x87, 0x05, - 0xce, 0x43, 0x77, 0x59, 0x21, 0x73, 0x6a, 0xd3, 0xc4, 0x2e, 0xef, 0x16, 0x96, 0x15, 0x0d, 0xf1, - 0x72, 0x4e, 0x4b, 0x5c, 0x9c, 0xfa, 0x77, 0x0a, 0xcc, 0x25, 0x78, 0xa2, 0xf7, 0x61, 0x46, 0x70, - 0x08, 0x0e, 0x5d, 0xe1, 0x06, 0x5e, 0x19, 0x20, 0xc6, 0x65, 0xfe, 0x77, 0xe7, 0xd0, 0xc5, 0xd4, - 0x7b, 0x89, 0x0f, 0xf4, 0x02, 0xd4, 0xba, 0x4e, 0xc7, 0xe8, 0x52, 0xaf, 0xe5, 0xe1, 0x3d, 0xee, - 0x63, 0x67, 0x42, 0xa0, 0x86, 0xf7, 0xd4, 0x3b, 0x50, 0x8d, 0x31, 0x40, 0x08, 0x66, 0x35, 0x56, - 0xd5, 0x3a, 0xde, 0x33, 0xfa, 0xdd, 0xa0, 0x3e, 0x81, 0x66, 0x01, 0x76, 0xed, 0x0e, 0x99, 0xd3, - 0x6c, 0x6c, 0xd6, 0x15, 0x54, 0x83, 0xca, 0x03, 0xc1, 0xa2, 0x5e, 0x50, 0xbf, 0x57, 0x84, 0xe3, - 0xd4, 0xf0, 0xda, 0x8e, 0xc9, 0x47, 0x02, 0x9f, 0x00, 0x5f, 0x80, 0x5a, 0x87, 0xf6, 0xa5, 0xee, - 0x1a, 0x1e, 0xb6, 0x03, 0x3e, 0x0d, 0xcc, 0x30, 0x60, 0x9b, 0xc2, 0x90, 0x06, 0x75, 0x9f, 0xb7, - 0x48, 0xef, 0xb0, 0x91, 0xc3, 0x8d, 0x5b, 0x6a, 0xf5, 0x80, 0x81, 0xa6, 0xcd, 0xf9, 0xa9, 0x91, - 0x37, 0xed, 0x1f, 0xfa, 0x9d, 0xa0, 0x2b, 0xbc, 0xdd, 0xe5, 0x14, 0xab, 0xa4, 0xb0, 0x97, 0xb7, - 0x19, 0xc1, 0x86, 0x1d, 0x78, 0x87, 0x9a, 0x20, 0x47, 0xef, 0x42, 0xd9, 0x79, 0x8a, 0xbd, 0x03, - 0x6c, 0x30, 0x2f, 0x53, 0xbd, 0xf6, 0x42, 0x8a, 0xd5, 0x9a, 0x70, 0xf4, 0x1a, 0xf6, 0x9d, 0xbe, - 0xd7, 0xc1, 0xbe, 0x16, 0x12, 0xa1, 0x26, 0x54, 0x3c, 0x01, 0xe6, 0x5e, 0x68, 0x24, 0x0e, 0x11, - 0x55, 0xe3, 0x16, 0xcc, 0xc4, 0x85, 0x43, 0x75, 0x28, 0x3e, 0xc1, 0x87, 0x5c, 0x99, 0xe4, 0x67, - 0xe4, 0x9f, 0x58, 0x0f, 0xb3, 0x8f, 0x5b, 0x85, 0x1b, 0x8a, 0xea, 0x01, 0x8a, 0x5a, 0xfa, 0x10, - 0x07, 0x86, 0x69, 0x04, 0x06, 0x42, 0x50, 0xa2, 0xa1, 0x11, 0x63, 0x41, 0x7f, 0x13, 0xae, 0x7d, - 0xee, 0xaa, 0x2b, 0x1a, 0xf9, 0x89, 0x4e, 0x42, 0x25, 0xf4, 0x44, 0x3c, 0x3e, 0x8a, 0x00, 0x24, - 0x4e, 0x31, 0x82, 0x00, 0xf7, 0xdc, 0x80, 0x2a, 0xa6, 0xa6, 0x89, 0x4f, 0xf5, 0xd7, 0x26, 0xa1, - 0x9e, 0xb2, 0x85, 0x5b, 0x50, 0xee, 0xf1, 0xea, 0xb9, 0x0f, 0x5c, 0x95, 0x82, 0x95, 0x94, 0x90, - 0x5a, 0x88, 0x4f, 0x62, 0x01, 0x62, 0x6b, 0xb1, 0x68, 0x2e, 0xfc, 0x66, 0x46, 0xbe, 0xaf, 0x9b, - 0x96, 0x87, 0x3b, 0x81, 0xe3, 0x1d, 0x72, 0x41, 0x67, 0xba, 0xce, 0xfe, 0xba, 0x80, 0xa1, 0xeb, - 0x00, 0xa6, 0xed, 0xeb, 0xd4, 0x86, 0xf7, 0x79, 0x3f, 0x4a, 0x13, 0x60, 0x18, 0xb4, 0x69, 0x15, - 0xd3, 0xf6, 0xb9, 0xc8, 0xb7, 0xa1, 0x46, 0x22, 0x20, 0xbd, 0xc7, 0xe6, 0x46, 0xe6, 0x90, 0xaa, - 0xd7, 0x96, 0x64, 0xb9, 0xc3, 0x78, 0x4c, 0x9b, 0x71, 0xa3, 0x0f, 0x1f, 0xdd, 0x81, 0x29, 0x1a, - 0x84, 0xf8, 0xcb, 0x53, 0x94, 0xec, 0x5c, 0x76, 0x73, 0xb9, 0xf5, 0x3d, 0xa0, 0xa8, 0xcc, 0xf8, - 0x38, 0x1d, 0xda, 0x82, 0xaa, 0x61, 0xdb, 0x4e, 0x60, 0x30, 0x8f, 0x3f, 0x4d, 0xd9, 0x5c, 0x1a, - 0xc8, 0xa6, 0x19, 0xe1, 0x33, 0x5e, 0x71, 0x0e, 0xe8, 0x2d, 0x98, 0xa4, 0x53, 0x02, 0xf7, 0xe1, - 0x67, 0x87, 0x0e, 0x0a, 0x8d, 0xe1, 0xa3, 0xb7, 0x61, 0xfa, 0x99, 0x65, 0x9b, 0xce, 0x33, 0x9f, - 0xfb, 0x53, 0xc9, 0x84, 0xbf, 0xcc, 0x8a, 0x52, 0xc4, 0x82, 0xa6, 0x71, 0x13, 0xaa, 0xb1, 0xf6, - 0x8d, 0x63, 0xbf, 0x8d, 0x77, 0xa0, 0x9e, 0x6c, 0xd3, 0x58, 0xf6, 0xdf, 0x87, 0x05, 0xad, 0x6f, - 0x47, 0xa2, 0x89, 0xc5, 0xc6, 0x75, 0x98, 0xe2, 0xd6, 0xc0, 0x8c, 0xf1, 0xe4, 0x20, 0xb5, 0x6a, - 0x1c, 0x37, 0xbe, 0x6e, 0x38, 0x30, 0x6c, 0xb3, 0x8b, 0x3d, 0x5e, 0xa3, 0x58, 0x37, 0xdc, 0x67, - 0x50, 0xf5, 0x6d, 0x38, 0x9e, 0xa8, 0x96, 0x2f, 0x5b, 0x5e, 0x84, 0x59, 0xd7, 0x31, 0x75, 0x9f, - 0x81, 0x45, 0x2c, 0x59, 0x21, 0xb6, 0x23, 0x70, 0x5b, 0x26, 0x21, 0xdf, 0x0e, 0x1c, 0x37, 0x2d, - 0xf6, 0x68, 0xe4, 0xcb, 0xb0, 0x98, 0x24, 0x67, 0xd5, 0xab, 0xef, 0xc2, 0x92, 0x86, 0x7b, 0xce, - 0x53, 0x7c, 0x54, 0xd6, 0x0d, 0x58, 0x4e, 0x33, 0xe0, 0xcc, 0x3f, 0x80, 0xa5, 0x08, 0xba, 0x1d, - 0x18, 0x41, 0xdf, 0x1f, 0x8b, 0x39, 0x5f, 0xd3, 0x3d, 0x76, 0x7c, 0xd6, 0x91, 0x65, 0x4d, 0x7c, - 0xaa, 0x4b, 0x30, 0xd9, 0x76, 0xcc, 0x56, 0x1b, 0xcd, 0x42, 0xc1, 0x72, 0x39, 0x71, 0xc1, 0x72, - 0xd5, 0x4e, 0xbc, 0xce, 0x4d, 0x16, 0x75, 0xb2, 0xaa, 0x93, 0xa8, 0xe8, 0x06, 0xcc, 0x1a, 0xa6, - 0x69, 0x11, 0x43, 0x32, 0xba, 0xba, 0xe5, 0x8a, 0xa0, 0x79, 0x3e, 0xd1, 0xf5, 0xad, 0xb6, 0x56, - 0x8b, 0x10, 0x5b, 0xae, 0xaf, 0xde, 0x85, 0x4a, 0x14, 0xa0, 0xbf, 0x11, 0xad, 0xcf, 0x0a, 0xc3, - 0x63, 0xb9, 0x70, 0xf1, 0xb6, 0x99, 0x9a, 0x24, 0xb9, 0x98, 0x6f, 0x00, 0x84, 0x4e, 0x55, 0x84, - 0x87, 0xc7, 0x33, 0x59, 0x6a, 0x31, 0x44, 0xf5, 0xdf, 0x4a, 0x71, 0x27, 0x1b, 0x6b, 0xb2, 0x19, - 0x36, 0xd9, 0x94, 0x9c, 0x6e, 0x61, 0x4c, 0xa7, 0xfb, 0x1a, 0x4c, 0xfa, 0x81, 0x11, 0x60, 0x1e, - 0x8f, 0xaf, 0x64, 0x13, 0x92, 0x8a, 0xb1, 0xc6, 0x30, 0xd1, 0x29, 0x80, 0x8e, 0x87, 0x8d, 0x00, - 0x9b, 0xba, 0xc1, 0x66, 0x85, 0xa2, 0x56, 0xe1, 0x90, 0x66, 0x40, 0xbc, 0x88, 0x58, 0x41, 0x64, - 0x4c, 0x84, 0x39, 0xdd, 0x18, 0xad, 0x25, 0x42, 0xef, 0x35, 0x35, 0xd4, 0x7b, 0x71, 0x52, 0xee, - 0xbd, 0x22, 0x4f, 0x3c, 0x3d, 0xc8, 0x13, 0x33, 0xa2, 0x51, 0x3c, 0x71, 0x79, 0x90, 0x27, 0xe6, - 0x6c, 0x06, 0x7b, 0xe2, 0x0c, 0x47, 0x52, 0xc9, 0x72, 0x24, 0x9f, 0xa5, 0xeb, 0xfc, 0x8b, 0x02, - 0x2c, 0xa7, 0xc7, 0x33, 0xf7, 0x63, 0xd7, 0x61, 0xca, 0xa7, 0x90, 0xc1, 0xfe, 0x93, 0x53, 0x71, - 0x5c, 0x74, 0x17, 0x4a, 0x96, 0xbd, 0xe7, 0xf0, 0x81, 0x77, 0x79, 0x20, 0x0d, 0xaf, 0xe9, 0x72, - 0xcb, 0xde, 0x73, 0x98, 0x06, 0x29, 0x2d, 0x7a, 0x00, 0xc7, 0xc2, 0x95, 0xb5, 0xaf, 0x33, 0xc6, - 0x58, 0xc4, 0x79, 0x92, 0x95, 0x86, 0x51, 0x15, 0xe7, 0x88, 0x22, 0xba, 0x6d, 0x4e, 0x46, 0x62, - 0x1c, 0x82, 0xee, 0x07, 0x46, 0xcf, 0x15, 0x16, 0x1b, 0x02, 0x1a, 0x6f, 0x41, 0x25, 0xac, 0x7e, - 0x2c, 0xdd, 0xb5, 0x60, 0x21, 0x31, 0x46, 0xd8, 0x42, 0x32, 0x1c, 0x54, 0xca, 0xa8, 0x83, 0x4a, - 0xfd, 0x99, 0x12, 0x1f, 0xe8, 0xef, 0x59, 0xdd, 0x00, 0x7b, 0xa9, 0x81, 0xfe, 0xa6, 0xe0, 0xcb, - 0x46, 0xf9, 0x99, 0x01, 0x7c, 0xd9, 0x3a, 0x8d, 0x8f, 0xd8, 0x47, 0x30, 0x4b, 0x4d, 0x5c, 0xf7, - 0x71, 0x97, 0xc6, 0x4a, 0x5c, 0x8f, 0x57, 0xb2, 0x19, 0xb0, 0xda, 0xd9, 0x10, 0xd9, 0xe6, 0x14, - 0xac, 0x6f, 0x6a, 0xdd, 0x38, 0xac, 0x71, 0x07, 0x50, 0x1a, 0x69, 0x2c, 0x0d, 0x3e, 0x24, 0xfe, - 0xd2, 0x0f, 0x32, 0x67, 0xee, 0x3d, 0x2a, 0xc6, 0x60, 0xcb, 0x63, 0xa2, 0x6a, 0x1c, 0x57, 0xfd, - 0x97, 0x22, 0x40, 0x54, 0xf8, 0x39, 0x77, 0x94, 0xb7, 0x42, 0x87, 0xc5, 0x22, 0x4e, 0x35, 0x9b, - 0x65, 0xa6, 0xab, 0x6a, 0xc9, 0xae, 0x8a, 0xc5, 0x9e, 0xaf, 0xe4, 0x30, 0x18, 0xdb, 0x49, 0x4d, - 0x7f, 0xde, 0x9c, 0xd4, 0x7b, 0xb0, 0x98, 0x34, 0x13, 0xee, 0xa1, 0x5e, 0x85, 0x49, 0x2b, 0xc0, - 0x3d, 0xb6, 0xf7, 0x9a, 0xd8, 0xb0, 0x88, 0xa1, 0x33, 0x24, 0xf5, 0x1d, 0x58, 0x94, 0xfb, 0x6a, - 0xbc, 0xd0, 0x45, 0x7d, 0x90, 0x8c, 0x7d, 0x22, 0x57, 0xc9, 0xed, 0x23, 0x73, 0xeb, 0x27, 0x49, - 0xc3, 0x30, 0xd5, 0x1f, 0x28, 0x70, 0x3c, 0x51, 0x94, 0x33, 0xf0, 0xbf, 0x96, 0x1a, 0xc0, 0xcc, - 0xb7, 0x5e, 0x1f, 0x50, 0xcb, 0xa7, 0x38, 0x8a, 0xbf, 0x0c, 0x0d, 0xb9, 0x7b, 0x24, 0xd5, 0xde, - 0x4c, 0x0c, 0xe5, 0xb3, 0x43, 0x85, 0x0e, 0xc7, 0x73, 0x1b, 0x56, 0x32, 0x19, 0xa7, 0x75, 0x5e, - 0x1c, 0x51, 0xe7, 0xff, 0x5b, 0x88, 0xfb, 0xec, 0x66, 0x10, 0x78, 0xd6, 0xe3, 0x7e, 0x80, 0x3f, - 0xd9, 0xa0, 0x6a, 0x3d, 0x1c, 0xd9, 0xcc, 0xcf, 0xbe, 0x9a, 0x4d, 0x19, 0xd5, 0x9e, 0x39, 0xc6, - 0xb7, 0xe5, 0x31, 0x5e, 0xa2, 0xac, 0x5e, 0x1b, 0xca, 0x6a, 0xe0, 0x68, 0xff, 0x2c, 0x07, 0xf1, - 0x3f, 0x28, 0x30, 0x97, 0xe8, 0x15, 0x74, 0x07, 0xc0, 0x08, 0x45, 0xe7, 0xf6, 0x71, 0x66, 0x58, - 0x13, 0xb5, 0x18, 0x0d, 0x99, 0x13, 0x59, 0xbc, 0x98, 0x31, 0x27, 0x66, 0xc4, 0x8b, 0x61, 0xb8, - 0x78, 0x3b, 0x5a, 0xec, 0xb2, 0x4d, 0x52, 0x75, 0xe0, 0x62, 0x97, 0xd1, 0x0a, 0x12, 0xf5, 0xd7, - 0x0b, 0xb0, 0x90, 0xc5, 0x1d, 0xbd, 0x0c, 0xc5, 0x8e, 0xdb, 0xe7, 0x2d, 0x91, 0x0e, 0x6a, 0xd6, - 0xdc, 0xfe, 0xae, 0x6f, 0xec, 0x63, 0x8d, 0x20, 0xa0, 0x2b, 0x30, 0xd5, 0xc3, 0x3d, 0xc7, 0x3b, - 0xe4, 0x72, 0x4b, 0xdb, 0x0d, 0x0f, 0x69, 0x09, 0xc3, 0xe6, 0x68, 0xe8, 0x5a, 0x14, 0x56, 0x33, - 0x79, 0x97, 0xa5, 0xd5, 0x03, 0x2b, 0x62, 0x24, 0x61, 0x2c, 0x7d, 0x0d, 0xa6, 0x5d, 0xcf, 0xe9, - 0x60, 0xdf, 0xe7, 0xbb, 0x21, 0xcb, 0x89, 0x93, 0x23, 0x52, 0xc4, 0x69, 0x38, 0x22, 0xba, 0x05, - 0x10, 0x05, 0x50, 0x7c, 0x66, 0x6a, 0xe4, 0xc6, 0x5b, 0xbe, 0x16, 0xc3, 0x56, 0xbf, 0x5f, 0x80, - 0xc5, 0x6c, 0xcd, 0xa1, 0x4b, 0x71, 0xbd, 0xac, 0x64, 0xa8, 0x5a, 0x56, 0xcf, 0x9b, 0x09, 0xf5, - 0xac, 0x66, 0x50, 0x64, 0x69, 0xe9, 0x66, 0x52, 0x4b, 0xa7, 0x33, 0x08, 0xb3, 0x95, 0x75, 0x33, - 0xa9, 0xac, 0x2c, 0xd2, 0x6c, 0x9d, 0x35, 0x33, 0x74, 0x76, 0x36, 0xab, 0x8d, 0xf9, 0xaa, 0xfb, - 0x1b, 0x05, 0x66, 0xe2, 0x72, 0xc9, 0x21, 0xab, 0x92, 0x08, 0x59, 0xd1, 0x26, 0xcc, 0x9b, 0x6c, - 0xe7, 0x56, 0xb7, 0xec, 0x00, 0x7b, 0x7b, 0x46, 0x47, 0x44, 0x85, 0x67, 0x33, 0xec, 0xa2, 0x25, - 0x70, 0x98, 0xe0, 0x75, 0x4e, 0x1b, 0x82, 0x49, 0x0b, 0x42, 0x3e, 0xc2, 0x6b, 0x8d, 0xc0, 0x28, - 0x46, 0xa4, 0xfe, 0xb3, 0x02, 0xc7, 0x32, 0x14, 0x3c, 0xa4, 0x21, 0xbb, 0xf9, 0x0d, 0x39, 0x97, - 0xdf, 0x75, 0x43, 0xdb, 0x73, 0x3f, 0xa3, 0x3d, 0xa3, 0xf3, 0x8b, 0x37, 0xeb, 0xe7, 0x0a, 0x1c, - 0xcf, 0xc4, 0xca, 0xdc, 0x5e, 0xbd, 0x06, 0x65, 0xef, 0xb9, 0xfe, 0xf8, 0x30, 0xc0, 0x7e, 0xd6, - 0xc0, 0xde, 0x8d, 0x9d, 0xa1, 0x4c, 0x7b, 0xcf, 0xef, 0x12, 0x3c, 0x74, 0x1d, 0x2a, 0xde, 0x73, - 0x1d, 0x7b, 0x9e, 0xe3, 0x09, 0x5f, 0x94, 0x4b, 0x54, 0xf6, 0x9e, 0x6f, 0x50, 0x44, 0x52, 0x53, - 0x20, 0x6a, 0x2a, 0x0d, 0xa9, 0x29, 0x88, 0x6a, 0x0a, 0xc2, 0x9a, 0x26, 0x87, 0xd4, 0x14, 0xf0, - 0x9a, 0xd4, 0x3f, 0x2c, 0xc0, 0xc9, 0x41, 0xea, 0xfa, 0xc4, 0x14, 0xb1, 0x01, 0xc8, 0x7b, 0xae, - 0xbb, 0x46, 0xe7, 0x09, 0x0e, 0x7c, 0xdd, 0xf4, 0x1c, 0xd7, 0xc5, 0xe6, 0x30, 0x8d, 0xd4, 0xbd, - 0xe7, 0x6d, 0x46, 0xb1, 0xce, 0x08, 0x8e, 0xa4, 0x99, 0x0d, 0x40, 0x41, 0xba, 0xea, 0x21, 0x2a, - 0xaa, 0x07, 0x89, 0xaa, 0xd5, 0x0f, 0x61, 0x26, 0xee, 0x21, 0x86, 0xd8, 0xfe, 0x6d, 0xa8, 0x71, - 0x0f, 0xa2, 0x77, 0x9c, 0xbe, 0x1d, 0x0c, 0x53, 0xd4, 0x0c, 0xc7, 0x5e, 0x23, 0xc8, 0xea, 0x37, - 0xc2, 0xe1, 0xf6, 0xa9, 0x55, 0xf9, 0x47, 0x0a, 0x54, 0x5a, 0x3d, 0x63, 0x1f, 0x6f, 0xbb, 0xb8, - 0x43, 0x66, 0x7a, 0x8b, 0x7c, 0xf0, 0x7e, 0x67, 0x1f, 0xe8, 0xbe, 0x1c, 0xb5, 0xb0, 0x38, 0xf5, - 0x65, 0xe9, 0x1c, 0x51, 0x70, 0x18, 0x12, 0xaa, 0x7c, 0xdc, 0x78, 0xe3, 0x1a, 0x94, 0xbf, 0x88, - 0x0f, 0xd9, 0x8a, 0x7c, 0x44, 0x3a, 0xf5, 0x3b, 0x25, 0x58, 0xca, 0x39, 0xab, 0xa1, 0xcb, 0x39, - 0xb7, 0xaf, 0xbb, 0xd8, 0xb3, 0x1c, 0x53, 0xa8, 0xb6, 0xe3, 0xf6, 0xdb, 0x14, 0x80, 0x56, 0x80, - 0x7c, 0xe8, 0xdf, 0xe8, 0x3b, 0x3c, 0x62, 0x2c, 0x6a, 0xe5, 0x8e, 0xdb, 0xff, 0x12, 0xf9, 0x16, - 0xb4, 0xfe, 0x81, 0xe1, 0x61, 0x36, 0xc8, 0x19, 0xed, 0x36, 0x05, 0xa0, 0xd7, 0xe0, 0x38, 0x9b, - 0xc0, 0xf4, 0xae, 0xd5, 0xb3, 0x88, 0x2b, 0x8c, 0xd9, 0x6f, 0x51, 0x43, 0xac, 0xf0, 0x01, 0x29, - 0x6b, 0xd9, 0xcc, 0x62, 0x55, 0xa8, 0x39, 0x4e, 0x4f, 0xf7, 0x3b, 0x8e, 0x87, 0x75, 0xc3, 0xfc, - 0x90, 0x1a, 0x6b, 0x51, 0xab, 0x3a, 0x4e, 0x6f, 0x9b, 0xc0, 0x9a, 0xe6, 0x87, 0xe8, 0x34, 0x54, - 0x3b, 0x6e, 0xdf, 0xc7, 0x81, 0x4e, 0xfe, 0xd0, 0x1d, 0xb5, 0x8a, 0x06, 0x0c, 0xb4, 0xe6, 0xf6, - 0xfd, 0x18, 0x42, 0x8f, 0xac, 0xa1, 0xa6, 0xe3, 0x08, 0x0f, 0x71, 0x8f, 0x1e, 0x49, 0x1f, 0xf4, - 0xf7, 0xb1, 0x6b, 0xec, 0x63, 0x26, 0x9a, 0xd8, 0x16, 0x93, 0x8e, 0xa4, 0xef, 0x73, 0x14, 0x2a, - 0xa0, 0x36, 0x7b, 0x10, 0xff, 0xf4, 0xd1, 0xfb, 0x30, 0xdd, 0xb7, 0xad, 0x3d, 0x0b, 0x9b, 0xcb, - 0x15, 0x4a, 0x7b, 0x75, 0x84, 0x93, 0xb1, 0xcb, 0xbb, 0x8c, 0x84, 0x1f, 0xd4, 0x71, 0x06, 0xe8, - 0x16, 0x34, 0xb8, 0xa2, 0xfc, 0x67, 0x86, 0x9b, 0xd4, 0x16, 0x50, 0x15, 0x2c, 0x32, 0x8c, 0xed, - 0x67, 0x86, 0x1b, 0xd7, 0x58, 0xe3, 0x16, 0xcc, 0xc4, 0x99, 0x8e, 0x65, 0x4b, 0x77, 0xa1, 0x26, - 0x35, 0x92, 0xf4, 0x36, 0x55, 0x8a, 0x6f, 0x7d, 0x53, 0x0c, 0x80, 0x32, 0x01, 0x6c, 0x5b, 0xdf, - 0xa4, 0x89, 0x04, 0x54, 0x32, 0xca, 0xa7, 0xa4, 0xb1, 0x0f, 0xd5, 0x80, 0x9a, 0x74, 0x76, 0x4f, - 0xfc, 0x26, 0x3d, 0xa4, 0xe7, 0x7e, 0x93, 0xfc, 0x26, 0x30, 0xcf, 0xe9, 0x0a, 0x09, 0xe8, 0x6f, - 0x02, 0xa3, 0xa7, 0xc4, 0xec, 0xcc, 0x8b, 0xfe, 0xa6, 0x55, 0xe0, 0xa7, 0x3c, 0x25, 0xa6, 0xa2, - 0xb1, 0x0f, 0xf5, 0xb7, 0x15, 0x80, 0x35, 0xc3, 0x35, 0x1e, 0x5b, 0x5d, 0x2b, 0x38, 0x44, 0xe7, - 0xa1, 0x6e, 0x98, 0xa6, 0xde, 0x11, 0x10, 0x0b, 0x8b, 0x1c, 0xa5, 0x39, 0xc3, 0x34, 0xd7, 0x62, - 0x60, 0x74, 0x11, 0xe6, 0x89, 0xd7, 0x93, 0x71, 0x59, 0xd2, 0x52, 0x9d, 0x14, 0x48, 0xc8, 0x37, - 0x60, 0x99, 0xf0, 0x35, 0x7a, 0x8f, 0x2d, 0x6c, 0x07, 0x32, 0x0d, 0xcb, 0x66, 0x5a, 0x34, 0x4c, - 0xb3, 0xc9, 0x8a, 0xe3, 0x94, 0xea, 0x5f, 0x4f, 0xc1, 0x29, 0xb9, 0xc7, 0x93, 0xe9, 0x14, 0xb7, - 0x60, 0x26, 0x21, 0x6f, 0x2a, 0x11, 0x21, 0x6a, 0xa1, 0x26, 0xe1, 0x26, 0x12, 0x06, 0x0a, 0xa9, - 0x84, 0x81, 0xcc, 0x54, 0x8d, 0xe2, 0x27, 0x94, 0xaa, 0x51, 0xfa, 0x98, 0xa9, 0x1a, 0x93, 0x47, - 0x4d, 0xd5, 0x98, 0x19, 0x39, 0x55, 0xe3, 0x65, 0xba, 0xd5, 0x23, 0x6a, 0xa4, 0x73, 0x36, 0xf3, - 0x09, 0xb5, 0x90, 0xbb, 0x2d, 0x12, 0xe7, 0x12, 0x29, 0x1d, 0xd3, 0xe3, 0xa4, 0x74, 0x94, 0x73, - 0x53, 0x3a, 0xce, 0xc0, 0x8c, 0xed, 0xe8, 0x36, 0x7e, 0xa6, 0x93, 0x6e, 0xf1, 0x97, 0xab, 0xac, - 0x8f, 0x6c, 0x67, 0x13, 0x3f, 0x6b, 0x13, 0x08, 0x3a, 0x0b, 0x33, 0x3d, 0xc3, 0x7f, 0x82, 0x4d, - 0x9a, 0x5b, 0xe1, 0x2f, 0xd7, 0xa8, 0x3d, 0x55, 0x19, 0xac, 0x4d, 0x40, 0xe8, 0x25, 0x08, 0xe5, - 0xe0, 0x48, 0xb3, 0x14, 0xa9, 0x26, 0xa0, 0x0c, 0x2d, 0x96, 0x1e, 0x32, 0x77, 0xc4, 0xf4, 0x90, - 0xfa, 0x38, 0xe9, 0x21, 0x97, 0xa0, 0x2e, 0x7e, 0x8b, 0xfc, 0x10, 0xb6, 0xdd, 0x4f, 0x53, 0x43, - 0xe6, 0x44, 0x99, 0xc8, 0x01, 0xc9, 0xcb, 0x26, 0x81, 0x81, 0xd9, 0x24, 0x7f, 0xac, 0xf0, 0x85, - 0x67, 0x38, 0x80, 0xf8, 0x31, 0xb6, 0x94, 0x81, 0xa0, 0x1c, 0x25, 0x03, 0x01, 0xed, 0xe4, 0xe6, - 0x68, 0x9c, 0xcf, 0xe7, 0x34, 0x2c, 0x4b, 0x43, 0x7d, 0x18, 0xae, 0x09, 0x3f, 0x89, 0x5c, 0x33, - 0xf5, 0x3f, 0x14, 0x38, 0xc5, 0xf9, 0xe5, 0x24, 0x64, 0x65, 0x58, 0xb9, 0x92, 0x63, 0xe5, 0x1d, - 0x0f, 0x9b, 0xd8, 0x0e, 0x2c, 0xa3, 0xab, 0xfb, 0x2e, 0xee, 0x88, 0x63, 0xde, 0x08, 0x4c, 0x03, - 0x9d, 0xb3, 0x30, 0xc3, 0x32, 0x18, 0xf9, 0xf2, 0x90, 0x25, 0x2a, 0x56, 0x69, 0x12, 0x23, 0x5f, - 0x01, 0x6e, 0x65, 0x79, 0x96, 0x52, 0xee, 0xbe, 0xc2, 0x50, 0x07, 0xa3, 0x3a, 0xb0, 0x94, 0x73, - 0xe0, 0x9e, 0xd9, 0x4d, 0x4a, 0xba, 0x9b, 0x06, 0x2a, 0x29, 0xdd, 0x4d, 0xdf, 0x51, 0xe0, 0x74, - 0x6a, 0x99, 0xfa, 0xd9, 0x6b, 0x56, 0xfd, 0x33, 0x25, 0xb4, 0x9f, 0xa4, 0xc9, 0xaf, 0xa5, 0x4d, - 0xfe, 0xa5, 0x41, 0xab, 0xee, 0x4c, 0xa3, 0x7f, 0x94, 0x6b, 0xf4, 0x17, 0x07, 0xae, 0xe0, 0x87, - 0xe9, 0xf3, 0x5f, 0x15, 0x38, 0x91, 0x2b, 0x40, 0x22, 0x1e, 0x54, 0x92, 0xf1, 0x20, 0x8f, 0x25, - 0xa3, 0x10, 0x9d, 0xc5, 0x92, 0x34, 0x0a, 0xe7, 0x41, 0x9b, 0xde, 0x33, 0x9e, 0x5b, 0xbd, 0x7e, - 0x8f, 0x07, 0x93, 0x84, 0xdd, 0x43, 0x06, 0x39, 0x4a, 0x34, 0x79, 0x05, 0x16, 0x98, 0xa3, 0xa7, - 0x01, 0x4d, 0x44, 0xc1, 0x82, 0xca, 0x79, 0x56, 0x46, 0x62, 0x1b, 0x4e, 0xa0, 0x36, 0x61, 0x3e, - 0x6c, 0xd6, 0xc0, 0x84, 0xa3, 0x58, 0x02, 0x51, 0x41, 0x4e, 0x20, 0xb2, 0x61, 0x6a, 0x1d, 0x3f, - 0xb5, 0x3a, 0xf8, 0x13, 0xc9, 0x24, 0x3e, 0x03, 0x55, 0x17, 0x7b, 0x3d, 0xcb, 0xf7, 0xc3, 0x59, - 0xbd, 0xa2, 0xc5, 0x41, 0xea, 0x69, 0xa8, 0xac, 0xad, 0xb7, 0x78, 0x95, 0x19, 0xa2, 0xaa, 0xff, - 0x39, 0x05, 0x73, 0x49, 0x1b, 0xbb, 0x99, 0x4a, 0x68, 0x3a, 0x95, 0xb9, 0x19, 0x96, 0xb1, 0x0b, - 0x7c, 0x51, 0xac, 0x8f, 0x0a, 0xe9, 0xd3, 0xfe, 0x70, 0x0d, 0x24, 0x96, 0x4d, 0xcb, 0x30, 0xdd, - 0x71, 0x7a, 0x3d, 0xc3, 0x36, 0x45, 0x3e, 0x38, 0xff, 0x24, 0x92, 0x1a, 0xde, 0x3e, 0xdb, 0xff, - 0xad, 0x68, 0xf4, 0x37, 0x31, 0x01, 0xe2, 0x0c, 0x2d, 0x9b, 0xa6, 0x44, 0xd1, 0x5e, 0xaa, 0x68, - 0xc0, 0x41, 0xeb, 0x96, 0x87, 0xce, 0x41, 0x09, 0xdb, 0x4f, 0xc5, 0xc1, 0x90, 0xb4, 0x0f, 0x29, - 0xd6, 0x44, 0x1a, 0xc5, 0x40, 0xe7, 0x61, 0xaa, 0x47, 0xcc, 0x4a, 0x1c, 0x9b, 0xcf, 0xa7, 0xf2, - 0xa6, 0x35, 0x8e, 0x80, 0x5e, 0x85, 0x69, 0x93, 0x6a, 0x4f, 0x2c, 0x02, 0x90, 0x94, 0x5c, 0x45, - 0x8b, 0x34, 0x81, 0x82, 0xde, 0x0d, 0x37, 0xc1, 0x2b, 0xe9, 0xd3, 0xa9, 0x84, 0x9a, 0x33, 0xf7, - 0xbf, 0x37, 0xe5, 0x95, 0x24, 0xa4, 0xb7, 0xd2, 0x93, 0x5c, 0x06, 0x1f, 0x74, 0x9d, 0x80, 0x72, - 0xd7, 0xd9, 0x67, 0xd6, 0x53, 0x65, 0x97, 0x09, 0xba, 0xce, 0x3e, 0x35, 0x9e, 0x05, 0x98, 0xf4, - 0x03, 0xd3, 0xb2, 0x69, 0x2c, 0x55, 0xd6, 0xd8, 0x07, 0x19, 0xa4, 0xf4, 0x87, 0xee, 0xd8, 0x1d, - 0xbc, 0x5c, 0xa3, 0x45, 0x15, 0x0a, 0xd9, 0xb2, 0x3b, 0x74, 0x4d, 0x19, 0x04, 0x87, 0xcb, 0xb3, - 0x14, 0x4e, 0x7e, 0x46, 0x7b, 0xd1, 0x73, 0x39, 0x7b, 0xd1, 0x09, 0x81, 0x33, 0xf6, 0xa2, 0xeb, - 0xb9, 0x73, 0x46, 0x92, 0x56, 0x90, 0x90, 0x38, 0x72, 0x6d, 0xbd, 0xa5, 0x8b, 0xae, 0x99, 0x4f, - 0x27, 0x7e, 0x87, 0x66, 0xaf, 0x41, 0xf8, 0xf3, 0x33, 0x3d, 0x0a, 0xf8, 0xbe, 0x02, 0x8b, 0x6b, - 0xf4, 0x20, 0x34, 0xe6, 0x1b, 0xc7, 0xc9, 0x21, 0x7a, 0x3d, 0x4c, 0xec, 0xca, 0xc8, 0xce, 0x49, - 0x6a, 0x4a, 0xe4, 0x75, 0xad, 0xc1, 0xac, 0x60, 0xcb, 0x89, 0x8b, 0x23, 0x64, 0x85, 0xd5, 0xfc, - 0xf8, 0xa7, 0x7a, 0x1b, 0x96, 0x52, 0x92, 0xf3, 0xe3, 0xa8, 0xe4, 0x0d, 0x01, 0x26, 0x78, 0xfc, - 0x86, 0x80, 0x7a, 0x0b, 0x8e, 0x6f, 0x07, 0x86, 0x17, 0xa4, 0x9a, 0x3d, 0x02, 0x2d, 0xcd, 0xf7, - 0x92, 0x69, 0x79, 0x4a, 0xd6, 0x36, 0x2c, 0x6c, 0x07, 0x8e, 0x7b, 0x04, 0xa6, 0xc4, 0xef, 0x90, - 0x96, 0x3b, 0x7d, 0x31, 0xcf, 0x88, 0x4f, 0x75, 0x89, 0x65, 0xa7, 0xa5, 0x6b, 0xfb, 0x02, 0x2c, - 0xb2, 0xe4, 0xb0, 0xa3, 0x34, 0xe2, 0x84, 0x48, 0x4d, 0x4b, 0xf3, 0xbd, 0x07, 0xc7, 0xa4, 0x0d, - 0x72, 0x9e, 0x4c, 0x71, 0x55, 0x4e, 0xa6, 0xc8, 0x3f, 0x8b, 0x08, 0x73, 0x29, 0xbe, 0x5b, 0x88, - 0xf9, 0xf1, 0x9c, 0x13, 0xd5, 0x37, 0xe4, 0x54, 0x8a, 0xd3, 0xf9, 0x5c, 0xa5, 0x4c, 0x8a, 0xb4, - 0x75, 0x16, 0x33, 0xac, 0x73, 0x37, 0x75, 0x5c, 0x5b, 0x4a, 0xa7, 0xc2, 0x24, 0x24, 0xfc, 0x54, - 0x0e, 0x6a, 0x1f, 0xb0, 0x74, 0x8b, 0xb0, 0xea, 0xf0, 0x8c, 0xf6, 0xf5, 0xc4, 0x19, 0xed, 0xca, - 0x00, 0x49, 0xc3, 0xd3, 0xd9, 0xef, 0x96, 0xa0, 0x12, 0x96, 0xa5, 0x34, 0x9c, 0x56, 0x55, 0x21, - 0x43, 0x55, 0xf1, 0xf9, 0xb5, 0x78, 0xc4, 0xf9, 0xb5, 0x34, 0xc2, 0xfc, 0xba, 0x02, 0x15, 0xfa, - 0x83, 0x66, 0xc8, 0xb3, 0xf9, 0xb2, 0x4c, 0x01, 0x1a, 0xde, 0x8b, 0x4c, 0x6c, 0x6a, 0x44, 0x13, - 0x4b, 0xa4, 0x76, 0x4c, 0x27, 0x53, 0x3b, 0x6e, 0x86, 0x73, 0x5f, 0x39, 0x7d, 0x94, 0x12, 0x72, - 0xcc, 0x9c, 0xf5, 0x12, 0xfb, 0xa7, 0x95, 0xf4, 0xfe, 0x69, 0x44, 0xff, 0xb9, 0x3d, 0xea, 0xdd, - 0x62, 0xf9, 0x1a, 0x71, 0x3b, 0xe3, 0x3e, 0xf2, 0x0d, 0xe9, 0xa8, 0x4c, 0xc9, 0x98, 0xab, 0x42, - 0xbf, 0x10, 0x3f, 0x1e, 0xdb, 0x85, 0xc5, 0x64, 0x9e, 0xd7, 0x58, 0x3e, 0x2e, 0x27, 0xe1, 0xf4, - 0x37, 0xe3, 0x11, 0x5f, 0x4e, 0x76, 0xe5, 0xcd, 0x54, 0x22, 0xc0, 0xc8, 0x16, 0x7a, 0x55, 0xce, - 0x19, 0x1a, 0xdb, 0xae, 0x52, 0x29, 0x43, 0x34, 0x22, 0x31, 0x3c, 0x5e, 0xcc, 0x82, 0xf3, 0x0a, - 0x87, 0x34, 0xe9, 0xca, 0x60, 0xcf, 0xb2, 0x2d, 0xff, 0x80, 0x95, 0x4f, 0xb1, 0x95, 0x81, 0x00, - 0x35, 0xe9, 0xae, 0x25, 0x7e, 0x6e, 0x05, 0x7a, 0xc7, 0x31, 0x31, 0xb5, 0xda, 0x49, 0xad, 0x4c, - 0x00, 0x6b, 0x8e, 0x89, 0xa3, 0xf1, 0x54, 0x1e, 0x77, 0x3c, 0x55, 0x12, 0xe3, 0x69, 0x11, 0xa6, - 0x3c, 0x6c, 0xf8, 0x8e, 0xcd, 0x36, 0x33, 0x34, 0xfe, 0x45, 0x3a, 0xa2, 0x87, 0x7d, 0x9f, 0xd4, - 0xc1, 0x03, 0x30, 0xfe, 0x19, 0x0b, 0x16, 0x67, 0x06, 0x04, 0x8b, 0x03, 0x72, 0x37, 0x13, 0xc1, - 0x62, 0x6d, 0x40, 0xb0, 0x38, 0x52, 0xea, 0x66, 0x14, 0x16, 0xcf, 0x0e, 0x0b, 0x8b, 0xe3, 0x71, - 0xe5, 0x9c, 0x1c, 0x57, 0xde, 0x8e, 0xaf, 0x50, 0xeb, 0xe9, 0x93, 0xec, 0xc1, 0x37, 0x42, 0x3e, - 0xc3, 0x01, 0xfc, 0x8f, 0x0a, 0x2c, 0xa5, 0x06, 0x1c, 0x1f, 0xc2, 0xaf, 0x27, 0x92, 0x42, 0x07, - 0x66, 0x63, 0x8a, 0x9c, 0xd0, 0xa6, 0x94, 0x13, 0x7a, 0x69, 0x10, 0x49, 0x4e, 0x4a, 0xe8, 0xd1, - 0xd3, 0x34, 0xbf, 0xad, 0x00, 0xca, 0x58, 0x83, 0xdf, 0x14, 0xd1, 0xfa, 0x18, 0xbb, 0x65, 0x3c, - 0x60, 0x7f, 0x37, 0x0a, 0xd8, 0x0b, 0xe3, 0xec, 0x3b, 0x84, 0xf9, 0x23, 0x3f, 0x29, 0xc0, 0xe9, - 0x5d, 0xd7, 0x4c, 0x84, 0x91, 0x1c, 0x6b, 0x74, 0xcf, 0x76, 0x53, 0x4e, 0x7e, 0x39, 0x62, 0x13, - 0x8a, 0x47, 0x69, 0x02, 0xfa, 0x7a, 0x56, 0x7a, 0xd2, 0x6d, 0xe9, 0x20, 0x71, 0x70, 0x03, 0x7f, - 0xc1, 0xc7, 0x7f, 0x2a, 0x9c, 0xc9, 0x17, 0x80, 0x87, 0x9c, 0xff, 0x1f, 0xe6, 0x36, 0x9e, 0xe3, - 0xce, 0xf6, 0xa1, 0xdd, 0x19, 0x43, 0xeb, 0x75, 0x28, 0x76, 0x7a, 0x26, 0x3f, 0x1d, 0x21, 0x3f, - 0xe3, 0x51, 0x74, 0x51, 0x8e, 0xa2, 0x75, 0xa8, 0x47, 0x35, 0xf0, 0x01, 0xb4, 0x48, 0x06, 0x90, - 0x49, 0x90, 0x09, 0xf3, 0x19, 0x8d, 0x7f, 0x71, 0x38, 0xf6, 0xd8, 0x75, 0x13, 0x06, 0xc7, 0x9e, - 0x27, 0x7b, 0xed, 0xa2, 0xec, 0xb5, 0xd5, 0xef, 0x29, 0x50, 0x25, 0x35, 0x7c, 0x2c, 0xf9, 0xf9, - 0x52, 0xb6, 0x18, 0x2d, 0x65, 0xc3, 0x15, 0x71, 0x29, 0xbe, 0x22, 0x8e, 0x24, 0x9f, 0xa4, 0xe0, - 0xb4, 0xe4, 0x53, 0x21, 0x1c, 0x7b, 0x9e, 0x7a, 0x06, 0x66, 0x98, 0x6c, 0xbc, 0xe5, 0x75, 0x28, - 0xf6, 0xbd, 0xae, 0xe8, 0xbf, 0xbe, 0xd7, 0x55, 0xbf, 0xa5, 0x40, 0xad, 0x19, 0x04, 0x46, 0xe7, - 0x60, 0x8c, 0x06, 0x84, 0xc2, 0x15, 0xe2, 0xc2, 0xa5, 0x1b, 0x11, 0x89, 0x5b, 0xca, 0x11, 0x77, - 0x52, 0x12, 0x57, 0x85, 0x59, 0x21, 0x4b, 0xae, 0xc0, 0x9b, 0x80, 0xda, 0x8e, 0x17, 0xbc, 0xe7, - 0x78, 0xcf, 0x0c, 0xcf, 0x1c, 0x6f, 0xd5, 0x8a, 0xa0, 0xc4, 0xaf, 0xe3, 0x17, 0xcf, 0x4d, 0x6a, - 0xf4, 0xb7, 0xfa, 0x0a, 0x1c, 0x93, 0xf8, 0xe5, 0x56, 0x7c, 0x0b, 0xaa, 0x74, 0x16, 0xe6, 0x0b, - 0x9a, 0x8b, 0xf1, 0xd3, 0xf7, 0x21, 0xb3, 0xb5, 0xba, 0x0e, 0xf3, 0x24, 0x1e, 0xa3, 0xf0, 0xd0, - 0xbf, 0x5c, 0x49, 0xc4, 0xfc, 0x4b, 0x29, 0x16, 0x89, 0x78, 0xff, 0x67, 0x0a, 0x4c, 0x52, 0x78, - 0x2a, 0x46, 0x5a, 0x21, 0xf3, 0x9c, 0xeb, 0xe8, 0x81, 0xb1, 0x1f, 0x3e, 0x75, 0x40, 0x00, 0x3b, - 0xc6, 0x3e, 0x3d, 0xd1, 0xa1, 0x85, 0xa6, 0xb5, 0x8f, 0xfd, 0x40, 0x9c, 0x10, 0x56, 0x09, 0x6c, - 0x9d, 0x81, 0x88, 0x62, 0xe8, 0x41, 0x6a, 0x89, 0x9e, 0x97, 0xd2, 0xdf, 0xe8, 0x1c, 0xbb, 0xa9, - 0x38, 0xf8, 0x58, 0x8c, 0xde, 0x60, 0x6c, 0x40, 0x39, 0x71, 0x9e, 0x15, 0x7e, 0xa3, 0xf3, 0x50, - 0xa2, 0xfb, 0xcf, 0xd3, 0x83, 0xb4, 0x44, 0x51, 0x88, 0x55, 0xb8, 0x96, 0x6d, 0x63, 0x93, 0x06, - 0x40, 0x65, 0x8d, 0x7f, 0xa9, 0xef, 0x02, 0x8a, 0x2b, 0x8f, 0x77, 0xd0, 0x79, 0x98, 0xa2, 0xba, - 0x15, 0x41, 0xec, 0x7c, 0x8a, 0xb5, 0xc6, 0x11, 0xd4, 0xaf, 0x01, 0x62, 0x75, 0x49, 0x81, 0xeb, - 0x38, 0x1d, 0x38, 0x20, 0x84, 0xfd, 0x73, 0x05, 0x8e, 0x49, 0xdc, 0xb9, 0x7c, 0xaf, 0xc8, 0xec, - 0x33, 0xc4, 0xe3, 0xac, 0xdf, 0x96, 0x66, 0xe6, 0xf3, 0x69, 0x31, 0x7e, 0x41, 0xb3, 0xf2, 0x3f, - 0x29, 0x00, 0xcd, 0x7e, 0x70, 0xc0, 0x37, 0x5a, 0xe3, 0x9d, 0xa8, 0x24, 0x3a, 0xb1, 0x01, 0x65, - 0xd7, 0xf0, 0xfd, 0x67, 0x8e, 0x27, 0x16, 0x91, 0xe1, 0x37, 0xdd, 0x1e, 0xed, 0xf3, 0x17, 0x17, - 0x2a, 0x1a, 0xfd, 0x8d, 0x5e, 0x82, 0x59, 0xf6, 0x06, 0x87, 0x6e, 0x98, 0xa6, 0x27, 0x32, 0xfa, - 0x2a, 0x5a, 0x8d, 0x41, 0x9b, 0x0c, 0x48, 0xd0, 0x2c, 0x7a, 0x1a, 0x11, 0x1c, 0xea, 0x81, 0xf3, - 0x04, 0xdb, 0x7c, 0x61, 0x58, 0x13, 0xd0, 0x1d, 0x02, 0x64, 0xc7, 0x8d, 0xfb, 0x96, 0x1f, 0x78, - 0x02, 0x4d, 0x1c, 0x9a, 0x72, 0x28, 0x45, 0x53, 0xff, 0x44, 0x81, 0x7a, 0xbb, 0xdf, 0xed, 0x32, - 0xe5, 0x1e, 0xa5, 0x93, 0x2f, 0xf0, 0xa6, 0x14, 0xd2, 0x26, 0x1f, 0x29, 0x8a, 0x37, 0xf1, 0x13, - 0xd9, 0xcb, 0xba, 0x0a, 0xf3, 0x31, 0x89, 0xb9, 0xe1, 0x48, 0x91, 0xbd, 0x22, 0x47, 0xf6, 0x6a, - 0x13, 0x10, 0xdb, 0xbe, 0x39, 0x72, 0x2b, 0xd5, 0xe3, 0x70, 0x4c, 0x62, 0xc1, 0xa7, 0xe2, 0x0b, - 0x50, 0xe3, 0xd9, 0x65, 0xdc, 0x20, 0x4e, 0x40, 0x99, 0xb8, 0xd4, 0x8e, 0x65, 0x8a, 0x0c, 0x89, - 0x69, 0xd7, 0x31, 0xd7, 0x2c, 0xd3, 0x53, 0xbf, 0x04, 0x35, 0x7e, 0x7d, 0x9d, 0xe3, 0xde, 0x81, - 0x59, 0x7e, 0x3e, 0xa8, 0x4b, 0xf7, 0x3d, 0x4f, 0x64, 0xa4, 0x30, 0x0a, 0x55, 0xd8, 0xf1, 0x4f, - 0xf5, 0xeb, 0xd0, 0x60, 0xd1, 0x82, 0xc4, 0x58, 0x34, 0xf0, 0x0e, 0x88, 0xcb, 0x10, 0x03, 0xf8, - 0xcb, 0x94, 0x35, 0x2f, 0xfe, 0xa9, 0x9e, 0x82, 0x95, 0x4c, 0xfe, 0xbc, 0xf5, 0x2e, 0xd4, 0xa3, - 0x02, 0x76, 0x29, 0x31, 0x4c, 0xfb, 0x50, 0x62, 0x69, 0x1f, 0x8b, 0x61, 0xec, 0x5d, 0x10, 0x33, - 0x17, 0x0d, 0xaf, 0xa3, 0x15, 0x57, 0x31, 0x6f, 0xc5, 0x55, 0x92, 0x56, 0x5c, 0xea, 0xc3, 0x50, - 0x87, 0x7c, 0xdd, 0x7b, 0x9b, 0xae, 0xcc, 0x59, 0xdd, 0xc2, 0xa9, 0x9d, 0xcc, 0x6e, 0x1f, 0x43, - 0xd2, 0x62, 0xf8, 0xea, 0x79, 0xa8, 0xc9, 0xee, 0x2d, 0xe6, 0xb1, 0x94, 0x94, 0xc7, 0x9a, 0x4d, - 0x38, 0xab, 0xd7, 0x12, 0x4b, 0x8a, 0x2c, 0xbd, 0x26, 0x16, 0x14, 0x37, 0x24, 0xb7, 0xf5, 0xa2, - 0x74, 0x44, 0xff, 0x0b, 0xf2, 0x58, 0x0b, 0xdc, 0x8f, 0xbf, 0xe7, 0x13, 0x7a, 0xde, 0x50, 0xf5, - 0x05, 0xa8, 0xee, 0xe6, 0x3d, 0x22, 0x52, 0x12, 0x79, 0x65, 0x6f, 0xc2, 0xc2, 0x7b, 0x56, 0x17, - 0xfb, 0x87, 0x7e, 0x80, 0x7b, 0x2d, 0xea, 0x5e, 0xf6, 0x2c, 0xec, 0xa1, 0x55, 0x00, 0xba, 0x8a, - 0x74, 0x1d, 0x2b, 0x7c, 0x38, 0x21, 0x06, 0x51, 0x7f, 0xac, 0xc0, 0x5c, 0x44, 0x38, 0x4a, 0x86, - 0xdf, 0x1b, 0x30, 0xb9, 0xe7, 0x8b, 0xdd, 0xb6, 0xc4, 0x19, 0x44, 0x96, 0x08, 0x5a, 0x69, 0xcf, - 0x6f, 0x99, 0xe8, 0x4d, 0x80, 0xbe, 0x8f, 0x4d, 0x7e, 0xec, 0x37, 0x24, 0xe7, 0xb2, 0x42, 0x50, - 0xd9, 0xc1, 0xe1, 0x0d, 0xa8, 0x5a, 0xb6, 0x63, 0x62, 0x7a, 0x24, 0x6c, 0x0e, 0xcb, 0xb7, 0x04, - 0x86, 0xbb, 0xeb, 0x63, 0x53, 0xfd, 0xbd, 0xe8, 0x60, 0xf7, 0xf3, 0xdc, 0x42, 0x55, 0xe7, 0xf3, - 0xab, 0xe8, 0x75, 0x6e, 0xb2, 0xf7, 0x61, 0x9e, 0xb9, 0xc9, 0xbd, 0xb0, 0xca, 0xcc, 0x7b, 0x28, - 0x89, 0xb6, 0x69, 0x75, 0x8b, 0x47, 0x56, 0x82, 0x48, 0xbd, 0x05, 0xc7, 0x13, 0x89, 0xe1, 0xa3, - 0x6f, 0xa7, 0xbf, 0x9f, 0xd8, 0x17, 0x8b, 0x86, 0xd4, 0x55, 0xf9, 0x3e, 0xd2, 0xa0, 0x14, 0x7e, - 0x7e, 0x35, 0x66, 0x17, 0x4e, 0x48, 0x9b, 0x76, 0x92, 0x2c, 0x37, 0x12, 0xc1, 0xe2, 0x99, 0x7c, - 0x7e, 0x89, 0xa8, 0xf1, 0xbf, 0x14, 0x58, 0xc8, 0x42, 0x38, 0xe2, 0x86, 0xf1, 0x57, 0x73, 0xee, - 0x32, 0xbe, 0x3e, 0x4c, 0xa0, 0x4f, 0x65, 0x83, 0x7d, 0x93, 0xdd, 0x84, 0x1a, 0xde, 0x27, 0xc5, - 0xd1, 0xfa, 0xe4, 0x67, 0x85, 0xd8, 0xa1, 0xc8, 0x80, 0xdb, 0x4a, 0x1f, 0x63, 0x93, 0x72, 0x2d, - 0x71, 0x59, 0xe9, 0x62, 0x26, 0xe1, 0x90, 0xbb, 0x4a, 0x5a, 0xd6, 0x66, 0xc0, 0xd5, 0x61, 0x9c, - 0x3e, 0xb7, 0xfb, 0xd7, 0xff, 0xad, 0xc0, 0xac, 0xdc, 0x21, 0xe8, 0xdd, 0x8c, 0x9b, 0x4a, 0xa7, - 0x87, 0x34, 0x50, 0xba, 0xa8, 0xc4, 0x6f, 0x06, 0x15, 0x46, 0xbf, 0x19, 0x54, 0x1c, 0xed, 0x66, - 0xd0, 0x5d, 0x98, 0x7d, 0xe6, 0x59, 0x81, 0xf1, 0xb8, 0x8b, 0xf5, 0xae, 0x71, 0x88, 0x3d, 0xee, - 0x85, 0x07, 0xba, 0xa1, 0x9a, 0x20, 0x79, 0x40, 0x28, 0xd4, 0x6f, 0x15, 0xe0, 0x78, 0xe6, 0x25, - 0x95, 0x8f, 0xdf, 0xee, 0x4b, 0xf1, 0x76, 0x8f, 0x73, 0xf3, 0xa7, 0x38, 0xd6, 0xcd, 0x9f, 0x56, - 0x8e, 0x16, 0xb2, 0x8e, 0xd2, 0x87, 0x28, 0xe3, 0x2f, 0x15, 0x28, 0x0b, 0xa1, 0x86, 0xde, 0xc3, - 0x59, 0xea, 0x13, 0x34, 0x9d, 0xa6, 0x61, 0xdb, 0x86, 0xed, 0xe8, 0x3e, 0x26, 0x61, 0xd1, 0xd0, - 0x5b, 0x0f, 0x0b, 0x94, 0x6e, 0xcd, 0xf1, 0xf0, 0xa6, 0x61, 0x3b, 0xdb, 0x8c, 0x08, 0x35, 0xa1, - 0xce, 0xf8, 0x51, 0x56, 0x84, 0xe9, 0xd0, 0xa9, 0x6a, 0x96, 0x12, 0x10, 0x26, 0x84, 0x99, 0xaf, - 0xfe, 0xad, 0x02, 0x73, 0x09, 0xcd, 0xfe, 0xf2, 0x35, 0xe2, 0x77, 0x8b, 0x50, 0x8d, 0xf5, 0xf2, - 0x90, 0x06, 0xac, 0xc1, 0xbc, 0x48, 0x87, 0xf1, 0x71, 0x30, 0xda, 0xad, 0x93, 0x39, 0x4e, 0xb1, - 0x8d, 0x03, 0x16, 0xc9, 0xdc, 0x81, 0x39, 0xe3, 0xa9, 0x61, 0x75, 0xa9, 0x05, 0x8d, 0x14, 0x24, - 0xcc, 0x86, 0xf8, 0x61, 0x2c, 0xc4, 0xda, 0x3d, 0xd2, 0xdd, 0x13, 0xa0, 0xb8, 0xd1, 0x15, 0x20, - 0xdf, 0x8f, 0xe5, 0x5c, 0x0d, 0xbc, 0x02, 0xe4, 0xfb, 0x61, 0x7d, 0x34, 0x07, 0x9d, 0xde, 0x7d, - 0xf2, 0xf9, 0x83, 0x19, 0xf9, 0xf5, 0x11, 0xdc, 0xf7, 0x28, 0x2a, 0x51, 0x58, 0xcf, 0xf8, 0xd0, - 0xf1, 0xf4, 0x38, 0xfd, 0xf4, 0x10, 0x85, 0x51, 0x8a, 0x76, 0xc8, 0x44, 0xfd, 0x1f, 0x05, 0x50, - 0x7a, 0x40, 0xfe, 0xd2, 0x74, 0x55, 0xbc, 0xe9, 0xa5, 0x91, 0x55, 0xa7, 0xbe, 0x03, 0x27, 0x34, - 0xec, 0xb8, 0xd8, 0x0e, 0xfd, 0xde, 0x03, 0x67, 0x7f, 0x8c, 0x88, 0xed, 0x24, 0x34, 0xb2, 0xe8, - 0xf9, 0x3a, 0xb0, 0x0f, 0x8d, 0xb5, 0x03, 0xdc, 0x79, 0x42, 0xa3, 0xff, 0xa3, 0xe4, 0x73, 0x34, - 0xa0, 0xdc, 0x75, 0x3a, 0xec, 0x21, 0x4c, 0xbe, 0x55, 0x22, 0xbe, 0x07, 0xec, 0x52, 0x9f, 0x82, - 0x95, 0xcc, 0x6a, 0xb9, 0x54, 0x08, 0xea, 0xf7, 0x70, 0xb0, 0xf1, 0x14, 0xdb, 0x61, 0x40, 0xa8, - 0xfe, 0xa0, 0x10, 0x0b, 0x3d, 0x69, 0xd1, 0x18, 0x79, 0x30, 0xa8, 0x0d, 0x0b, 0x11, 0x0a, 0x26, - 0xd4, 0xec, 0x21, 0x3c, 0xf6, 0x84, 0x64, 0xf6, 0x19, 0x19, 0xad, 0x84, 0xbe, 0x7f, 0x17, 0x3d, - 0xf1, 0x11, 0xc2, 0x12, 0x27, 0xa7, 0xc5, 0xe4, 0xc9, 0xe9, 0xfb, 0x80, 0xe2, 0xc1, 0x25, 0x5f, - 0x6d, 0x96, 0x46, 0x78, 0xd5, 0xa4, 0xee, 0x26, 0xdf, 0xdf, 0xc9, 0x79, 0x9b, 0x64, 0xf2, 0x48, - 0x6f, 0x93, 0xa8, 0xab, 0x70, 0x92, 0x84, 0x8c, 0x0f, 0x71, 0xe0, 0x59, 0x9d, 0x75, 0xec, 0x77, - 0x3c, 0xcb, 0x0d, 0x9c, 0x30, 0x35, 0x43, 0xd5, 0xe1, 0x54, 0x4e, 0x39, 0x57, 0xf7, 0x3b, 0x50, - 0x35, 0x23, 0x70, 0xd6, 0xca, 0x3d, 0x49, 0xab, 0xc5, 0x09, 0xd4, 0x0f, 0xa0, 0x9e, 0x44, 0xc8, - 0xcc, 0xe4, 0x44, 0x50, 0x3a, 0xc0, 0x5d, 0x57, 0x5c, 0x4d, 0x21, 0xbf, 0x89, 0xd6, 0x59, 0x34, - 0xfe, 0x04, 0x1f, 0x8a, 0x9d, 0xdd, 0x0a, 0x85, 0x7c, 0x11, 0x1f, 0x86, 0x6d, 0x93, 0x2e, 0xcb, - 0x7b, 0x56, 0x27, 0xd9, 0xb6, 0x8c, 0xf2, 0xa8, 0x6d, 0xa4, 0xdb, 0x7a, 0x0c, 0xcc, 0xdb, 0x76, - 0x2a, 0xf7, 0x22, 0x3e, 0xa5, 0x05, 0xd7, 0x31, 0xf9, 0x6f, 0xf5, 0x4f, 0x15, 0x98, 0x4f, 0x61, - 0x8c, 0xb8, 0x5b, 0xff, 0x2a, 0x4c, 0x8b, 0x7a, 0x0b, 0xe9, 0x74, 0x47, 0xc6, 0x4b, 0x13, 0x28, - 0xa8, 0x05, 0xf3, 0x91, 0x45, 0x0b, 0xba, 0x62, 0xba, 0x2f, 0xe2, 0xa1, 0x38, 0x15, 0xb7, 0xde, - 0x49, 0x40, 0xd4, 0x0e, 0xd4, 0x93, 0x58, 0xa3, 0x8c, 0xa9, 0xb1, 0xe4, 0x55, 0xff, 0x5e, 0x81, - 0x29, 0x06, 0xcb, 0xec, 0x6c, 0xc9, 0x8b, 0x17, 0x92, 0x5e, 0xfc, 0x2d, 0xa8, 0x32, 0x3e, 0x7a, - 0x78, 0x31, 0x69, 0x56, 0xde, 0xb0, 0x64, 0xac, 0xe9, 0x68, 0x85, 0x5e, 0xf8, 0x9b, 0x34, 0x83, - 0xd9, 0x0b, 0x8d, 0xb5, 0x45, 0x52, 0x6b, 0x95, 0xc2, 0xa8, 0xaf, 0x25, 0xf1, 0x22, 0x8f, 0xca, - 0x87, 0xcc, 0x83, 0x0c, 0xeb, 0xc2, 0xcb, 0x50, 0x16, 0x4f, 0x20, 0xa3, 0x69, 0x28, 0xee, 0xac, - 0xb5, 0xeb, 0x13, 0xe4, 0xc7, 0xee, 0x7a, 0xbb, 0xae, 0xa0, 0x32, 0x94, 0xb6, 0xd7, 0x76, 0xda, - 0xf5, 0xc2, 0x85, 0x1e, 0xd4, 0x93, 0xaf, 0x00, 0xa3, 0x25, 0x38, 0xd6, 0xd6, 0xb6, 0xda, 0xcd, - 0x7b, 0xcd, 0x9d, 0xd6, 0xd6, 0xa6, 0xde, 0xd6, 0x5a, 0x8f, 0x9a, 0x3b, 0x1b, 0xf5, 0x09, 0x74, - 0x16, 0x4e, 0xc5, 0x0b, 0xee, 0x6f, 0x6d, 0xef, 0xe8, 0x3b, 0x5b, 0xfa, 0xda, 0xd6, 0xe6, 0x4e, - 0xb3, 0xb5, 0xb9, 0xa1, 0xd5, 0x15, 0x74, 0x0a, 0x4e, 0xc4, 0x51, 0xee, 0xb6, 0xd6, 0x5b, 0xda, - 0xc6, 0x1a, 0xf9, 0xdd, 0x7c, 0x50, 0x2f, 0x5c, 0x78, 0x1b, 0x6a, 0xd2, 0x05, 0x06, 0x22, 0x52, - 0x7b, 0x6b, 0xbd, 0x3e, 0x81, 0x6a, 0x50, 0x89, 0xf3, 0x29, 0x43, 0x69, 0x73, 0x6b, 0x7d, 0xa3, - 0x5e, 0x40, 0x00, 0x53, 0x3b, 0x4d, 0xed, 0xde, 0xc6, 0x4e, 0xbd, 0x78, 0xe1, 0x56, 0xf2, 0xa9, - 0x04, 0x8c, 0xe6, 0xa1, 0xb6, 0xdd, 0xdc, 0x5c, 0xbf, 0xbb, 0xf5, 0x15, 0x5d, 0xdb, 0x68, 0xae, - 0x7f, 0x50, 0x9f, 0x40, 0x0b, 0x50, 0x17, 0xa0, 0xcd, 0xad, 0x1d, 0x06, 0x55, 0x2e, 0x3c, 0x49, - 0xac, 0x5d, 0x30, 0x3a, 0x0e, 0xf3, 0x61, 0x95, 0xfa, 0x9a, 0xb6, 0xd1, 0xdc, 0xd9, 0x20, 0x92, - 0x48, 0x60, 0x6d, 0x77, 0x73, 0xb3, 0xb5, 0x79, 0xaf, 0xae, 0x10, 0xae, 0x11, 0x78, 0xe3, 0x2b, - 0x2d, 0x82, 0x5c, 0x90, 0x91, 0x77, 0x37, 0xbf, 0xb8, 0xb9, 0xf5, 0xe5, 0xcd, 0x7a, 0xf1, 0xc2, - 0xaf, 0xc6, 0xcf, 0xd6, 0x23, 0x6f, 0xbc, 0x02, 0x4b, 0xa9, 0x1a, 0xf5, 0x8d, 0x47, 0x1b, 0x9b, - 0x3b, 0xf5, 0x09, 0xb9, 0x70, 0x7b, 0xa7, 0xa9, 0x45, 0x85, 0x4a, 0xb2, 0x70, 0xab, 0xdd, 0x0e, - 0x0b, 0x0b, 0x72, 0xe1, 0xfa, 0xc6, 0x83, 0x8d, 0x88, 0xb2, 0x78, 0xe1, 0x45, 0x80, 0xc8, 0xea, - 0x50, 0x15, 0xa6, 0xd7, 0xb6, 0x76, 0x37, 0x77, 0x36, 0xb4, 0xfa, 0x04, 0xaa, 0xc0, 0xe4, 0xbd, - 0xe6, 0xee, 0xbd, 0x8d, 0xba, 0x72, 0xed, 0xf7, 0x17, 0xc2, 0xb7, 0x4f, 0xb7, 0xb1, 0x47, 0x73, - 0xc1, 0xd7, 0x61, 0x5a, 0xbc, 0x04, 0x2e, 0x2d, 0xc9, 0xe5, 0x97, 0xcb, 0x1b, 0x2b, 0x99, 0x65, - 0x7c, 0x8a, 0x9c, 0x40, 0x8f, 0xe8, 0x86, 0x6a, 0xec, 0xf5, 0xa1, 0x33, 0x89, 0x4d, 0xcc, 0xd4, - 0x23, 0x47, 0x8d, 0xb3, 0x03, 0x30, 0x42, 0xbe, 0x1f, 0xc0, 0xac, 0xfc, 0xcc, 0x1f, 0x3a, 0x2b, - 0x6f, 0x76, 0x66, 0xbc, 0x20, 0xd8, 0x50, 0x07, 0xa1, 0x84, 0xac, 0x75, 0xa8, 0x27, 0x9f, 0xf9, - 0x43, 0x52, 0x0e, 0x41, 0xce, 0x2b, 0x82, 0x8d, 0x17, 0x07, 0x23, 0xc5, 0x2b, 0x48, 0xbd, 0x5e, - 0xf7, 0xc2, 0xe0, 0xf7, 0xc0, 0x32, 0x2a, 0xc8, 0x7b, 0x34, 0x8c, 0x29, 0x47, 0x9e, 0x40, 0x50, - 0xe2, 0xc1, 0xb8, 0x8c, 0xb7, 0xa5, 0x64, 0xe5, 0x64, 0xbf, 0x2b, 0xa4, 0x4e, 0xa0, 0xff, 0x07, - 0x73, 0x89, 0x44, 0x5f, 0x24, 0x11, 0x66, 0xe7, 0x2f, 0x37, 0x5e, 0x18, 0x88, 0x23, 0xf7, 0x6a, - 0x3c, 0x99, 0x37, 0xd9, 0xab, 0x19, 0x49, 0xc2, 0xc9, 0x5e, 0xcd, 0xcc, 0x05, 0xa6, 0x86, 0x28, - 0x25, 0xee, 0xca, 0x86, 0x98, 0x95, 0x28, 0xdc, 0x38, 0x3b, 0x00, 0x23, 0xae, 0x90, 0x44, 0xea, - 0xae, 0xac, 0x90, 0xec, 0xa4, 0xe0, 0xc6, 0x0b, 0x03, 0x71, 0x92, 0x3d, 0x19, 0xa5, 0x0c, 0xa6, - 0x7b, 0x32, 0x95, 0xb6, 0x9a, 0xee, 0xc9, 0x74, 0xc6, 0x21, 0xef, 0xc9, 0x44, 0x92, 0x9f, 0x3a, - 0x30, 0x01, 0x29, 0xab, 0x27, 0xb3, 0x93, 0x94, 0xd4, 0x09, 0xf4, 0x0c, 0x96, 0xf3, 0xf2, 0x4c, - 0xd0, 0xc5, 0x31, 0xd2, 0x61, 0x1a, 0xaf, 0x8e, 0x86, 0x1c, 0x56, 0x8c, 0x01, 0xa5, 0x57, 0x12, - 0xe8, 0x25, 0x59, 0xdd, 0x39, 0x2b, 0x95, 0xc6, 0xcb, 0xc3, 0xd0, 0xc2, 0x6a, 0xee, 0x41, 0x59, - 0x64, 0xb0, 0x20, 0xc9, 0x05, 0x26, 0x32, 0x67, 0x1a, 0x27, 0xb3, 0x0b, 0x43, 0x46, 0x5f, 0x80, - 0x12, 0x81, 0xa2, 0xa5, 0x24, 0x9e, 0x60, 0xb0, 0x9c, 0x2e, 0x08, 0x89, 0x9b, 0x30, 0xc5, 0x52, - 0x33, 0x90, 0x74, 0x36, 0x24, 0xa5, 0x8e, 0x34, 0x1a, 0x59, 0x45, 0x21, 0x8b, 0x36, 0xfb, 0xbf, - 0x0a, 0x3c, 0xd3, 0x02, 0xad, 0x26, 0x1f, 0xf8, 0x95, 0x53, 0x3a, 0x1a, 0xa7, 0x73, 0xcb, 0xe3, - 0x36, 0x9b, 0xd8, 0x2d, 0x3b, 0x3b, 0x60, 0x4b, 0x37, 0xcb, 0x66, 0xb3, 0x37, 0x8a, 0x59, 0xe7, - 0xa6, 0x37, 0x92, 0xe5, 0xce, 0xcd, 0xdd, 0xac, 0x97, 0x3b, 0x37, 0x7f, 0x3f, 0x9a, 0x0d, 0x8d, - 0xe4, 0x4b, 0x3d, 0xea, 0xa0, 0x57, 0xb4, 0xb2, 0x86, 0x46, 0xce, 0xeb, 0x5c, 0xea, 0x04, 0x3a, - 0x80, 0x63, 0x19, 0xcf, 0x77, 0xa1, 0x97, 0xf3, 0xfd, 0xaf, 0x54, 0xcb, 0x2b, 0x43, 0xf1, 0xe2, - 0x35, 0x65, 0x1c, 0xaf, 0xca, 0x35, 0xe5, 0x9f, 0xef, 0xca, 0x35, 0x0d, 0x3a, 0xa7, 0xa5, 0x86, - 0xc8, 0x7d, 0xc8, 0x89, 0xac, 0x33, 0xc7, 0x0c, 0x43, 0x4c, 0x79, 0x8c, 0x03, 0x38, 0x96, 0xb1, - 0xda, 0x96, 0x85, 0xcd, 0xdf, 0x05, 0x90, 0x85, 0x1d, 0xb4, 0x6c, 0x9f, 0x40, 0x5f, 0x05, 0x74, - 0x0f, 0x07, 0x72, 0x7c, 0xe6, 0x23, 0x69, 0xa0, 0x26, 0x17, 0xf6, 0x39, 0xf6, 0x29, 0xad, 0xf0, - 0xd5, 0x89, 0xab, 0x0a, 0xb2, 0xd9, 0x5d, 0x82, 0xd4, 0xba, 0x14, 0x9d, 0x4b, 0x76, 0x5b, 0xde, - 0xd2, 0xb6, 0x71, 0x7e, 0x04, 0xcc, 0xb0, 0x2d, 0x76, 0xf2, 0xa9, 0x48, 0xb1, 0x34, 0x3a, 0x97, - 0x6f, 0x26, 0xf2, 0x72, 0x33, 0x5d, 0x5f, 0xee, 0xc2, 0x53, 0x9d, 0xb8, 0xf6, 0x3b, 0x45, 0x98, - 0x61, 0xc9, 0x0b, 0x3c, 0x4c, 0x7c, 0x08, 0x10, 0xe5, 0x01, 0xa1, 0x53, 0x49, 0x5e, 0x52, 0x72, - 0x55, 0x63, 0x35, 0xaf, 0x38, 0xee, 0x8e, 0x62, 0xf9, 0x35, 0xb2, 0x3b, 0x4a, 0xa7, 0x0b, 0xc9, - 0xee, 0x28, 0x23, 0x31, 0x47, 0x9d, 0x40, 0xef, 0x43, 0x25, 0x4c, 0xe7, 0x90, 0x3b, 0x39, 0x99, - 0x97, 0xd2, 0x38, 0x95, 0x53, 0x1a, 0x97, 0x2e, 0x96, 0xa5, 0x21, 0x4b, 0x97, 0xce, 0x00, 0x91, - 0xa5, 0xcb, 0x4a, 0xef, 0x88, 0xda, 0xcb, 0xce, 0x51, 0x33, 0xda, 0x2b, 0x1d, 0xab, 0x67, 0xb4, - 0x57, 0x3e, 0x80, 0x55, 0x27, 0xee, 0xde, 0xf9, 0xe1, 0x4f, 0x57, 0x95, 0x1f, 0xff, 0x74, 0x75, - 0xe2, 0x57, 0x3e, 0x5a, 0x55, 0x7e, 0xf8, 0xd1, 0xaa, 0xf2, 0xa3, 0x8f, 0x56, 0x95, 0x9f, 0x7c, - 0xb4, 0xaa, 0x7c, 0xfb, 0xdf, 0x57, 0x27, 0xbe, 0xaa, 0x3e, 0xb9, 0xe1, 0x5f, 0xb6, 0x9c, 0x2b, - 0x1d, 0xcf, 0xba, 0x64, 0xb8, 0xd6, 0x15, 0xf7, 0xc9, 0xfe, 0x15, 0xc3, 0xb5, 0xfc, 0x2b, 0x9c, - 0xef, 0x95, 0xa7, 0xaf, 0x3d, 0x9e, 0xa2, 0xff, 0x33, 0xe7, 0xf5, 0xff, 0x0b, 0x00, 0x00, 0xff, - 0xff, 0x10, 0x22, 0xf5, 0xd0, 0xed, 0x68, 0x00, 0x00, + 0xae, 0x65, 0x77, 0xd1, 0x55, 0x28, 0x53, 0x5d, 0x76, 0x9c, 0x1e, 0xd5, 0xc1, 0xec, 0xb5, 0x85, + 0xcb, 0x51, 0x87, 0x5c, 0x6e, 0xf3, 0x32, 0x2d, 0xc4, 0x42, 0x2f, 0xc1, 0x6c, 0xc7, 0xb1, 0x03, + 0xc3, 0xb2, 0xb1, 0xa7, 0xbb, 0x8e, 0x17, 0x50, 0xe5, 0x4c, 0x6a, 0xb5, 0x10, 0x4a, 0xf8, 0xa3, + 0x15, 0xa8, 0xec, 0x3b, 0x7e, 0xc0, 0x30, 0x8a, 0x14, 0xa3, 0x4c, 0x00, 0xb4, 0x70, 0x09, 0xa6, + 0x69, 0xa1, 0xe5, 0x72, 0x35, 0x4c, 0x91, 0xcf, 0x96, 0xab, 0xfe, 0xa0, 0x00, 0x93, 0x0f, 0x9d, + 0x81, 0x1d, 0x24, 0xaa, 0x31, 0x82, 0x7d, 0xde, 0x45, 0xb1, 0x6a, 0x8c, 0x60, 0x3f, 0xaa, 0x86, + 0x60, 0xb0, 0x5e, 0x62, 0xd5, 0x90, 0xc2, 0x06, 0x94, 0x3d, 0x6c, 0x98, 0x8e, 0xdd, 0x3b, 0xa0, + 0x22, 0x94, 0xb5, 0xf0, 0x9b, 0x74, 0x9f, 0x8f, 0x7b, 0x96, 0x3d, 0x78, 0xae, 0x7b, 0xb8, 0x67, + 0x3c, 0xc6, 0x3d, 0x2a, 0x4a, 0x59, 0x9b, 0xe5, 0x60, 0x8d, 0x41, 0xd1, 0x3b, 0x50, 0x75, 0x3d, + 0xc7, 0x35, 0xba, 0x06, 0xd1, 0xe0, 0xf2, 0x24, 0x55, 0xd2, 0xc9, 0xb8, 0x92, 0xa8, 0xc0, 0xed, + 0x08, 0x47, 0x8b, 0x13, 0xa0, 0xb7, 0xa0, 0x3a, 0xb0, 0x4c, 0xae, 0x6f, 0x7f, 0x79, 0xea, 0x4c, + 0xf1, 0x5c, 0xf5, 0xda, 0xf1, 0x38, 0x7d, 0x6b, 0x9d, 0x97, 0x6a, 0x71, 0x4c, 0x42, 0xd8, 0x8d, + 0x11, 0x4e, 0x0f, 0x25, 0x8c, 0x61, 0xaa, 0x3a, 0x54, 0xc2, 0x92, 0x48, 0xd5, 0x26, 0x55, 0x60, + 0x8d, 0xab, 0xda, 0x24, 0x26, 0x1e, 0x29, 0xd8, 0x32, 0xa9, 0xf2, 0x6a, 0x5a, 0x35, 0x84, 0xb5, + 0x4c, 0xb4, 0x08, 0x53, 0x3d, 0x6c, 0x77, 0x83, 0x7d, 0xaa, 0xbd, 0x9a, 0xc6, 0xbf, 0xd4, 0xdf, + 0x50, 0xa0, 0xb6, 0xeb, 0x63, 0x8f, 0x8c, 0x03, 0xdf, 0x35, 0x3a, 0x18, 0x5d, 0x82, 0x52, 0xdf, + 0x31, 0x31, 0x37, 0xa1, 0x13, 0x71, 0x21, 0x43, 0xa4, 0x87, 0x8e, 0x89, 0x35, 0x8a, 0x86, 0xce, + 0x43, 0x69, 0x60, 0x99, 0xcc, 0x6e, 0x73, 0xdb, 0x44, 0x51, 0x08, 0x6a, 0x97, 0xa0, 0x16, 0x87, + 0xa2, 0x12, 0x14, 0xf5, 0xe7, 0x0a, 0xcc, 0x85, 0xb5, 0x6d, 0x51, 0x83, 0x47, 0xaf, 0xc3, 0xb4, + 0x8d, 0x83, 0x67, 0x8e, 0xf7, 0x64, 0xb4, 0x6c, 0x02, 0x13, 0x5d, 0x84, 0xa2, 0xcb, 0x35, 0x32, + 0x94, 0x80, 0x60, 0x11, 0x64, 0xcb, 0xed, 0x50, 0x0d, 0x0d, 0x47, 0xb6, 0xdc, 0x0e, 0x31, 0xd7, + 0xc0, 0xf0, 0xba, 0x98, 0xf6, 0x07, 0x33, 0xfd, 0x32, 0x03, 0xb4, 0x4c, 0x74, 0x07, 0x66, 0x07, + 0x3e, 0xf6, 0x6c, 0x5f, 0x17, 0x83, 0x97, 0x18, 0x5b, 0x55, 0x66, 0x2a, 0xe9, 0x5d, 0xab, 0x31, + 0x82, 0x2d, 0x3e, 0xba, 0x55, 0x80, 0x96, 0x1d, 0xbc, 0x79, 0xfd, 0x91, 0xd1, 0x1b, 0x60, 0xb4, + 0x00, 0x93, 0x4f, 0xc9, 0x0f, 0xda, 0xf2, 0xa2, 0xc6, 0x3e, 0xd4, 0xbf, 0x2a, 0xc1, 0xca, 0x03, + 0x62, 0xe0, 0xdb, 0x86, 0x6d, 0x3e, 0x76, 0x9e, 0x6f, 0xe3, 0xce, 0xc0, 0xb3, 0x82, 0x83, 0x35, + 0xc7, 0x0e, 0xf0, 0xf3, 0x00, 0xdd, 0x87, 0x79, 0x5b, 0xf0, 0x0f, 0x05, 0x51, 0xa8, 0x20, 0x2b, + 0x99, 0xad, 0x63, 0x95, 0x6b, 0x75, 0x5b, 0x06, 0xf8, 0xe8, 0x6e, 0x34, 0xc4, 0x04, 0x9f, 0x42, + 0xba, 0x41, 0xdb, 0x1b, 0x54, 0x1a, 0xce, 0x45, 0x8c, 0x3e, 0xc1, 0xe3, 0x4d, 0x20, 0x4e, 0x57, + 0x37, 0x7c, 0x9d, 0xb4, 0x94, 0x6a, 0xb9, 0x7a, 0x6d, 0x51, 0xb2, 0x82, 0xb0, 0xc1, 0x5a, 0xc5, + 0x1b, 0xd8, 0x4d, 0x9f, 0x68, 0x08, 0xdd, 0xa0, 0x0e, 0x9c, 0xd0, 0x75, 0x3d, 0x67, 0xe0, 0x2e, + 0x97, 0x87, 0x12, 0x02, 0x25, 0xbc, 0x47, 0x30, 0xa9, 0x5f, 0xe7, 0x4e, 0x42, 0xf7, 0x1c, 0x27, + 0xd8, 0xf3, 0x85, 0x63, 0x10, 0x60, 0x8d, 0x42, 0xd1, 0x15, 0x38, 0xe6, 0x0f, 0x5c, 0xb7, 0x87, + 0xfb, 0xd8, 0x0e, 0x8c, 0x1e, 0xab, 0x88, 0xf4, 0x59, 0xf1, 0x5c, 0x51, 0x43, 0xf1, 0x22, 0xca, + 0xd8, 0x47, 0xab, 0x00, 0xae, 0x67, 0x3d, 0xb5, 0x7a, 0xb8, 0x8b, 0xcd, 0xe5, 0x29, 0xca, 0x34, + 0x06, 0x41, 0x6f, 0x10, 0x5f, 0xdf, 0xe9, 0x38, 0x7d, 0x77, 0xb9, 0x92, 0xd6, 0xb7, 0xe8, 0xa7, + 0xb6, 0xe7, 0xec, 0x59, 0x3d, 0xac, 0x09, 0x5c, 0xf4, 0x16, 0x94, 0x0d, 0xd7, 0x35, 0xbc, 0xbe, + 0xe3, 0x2d, 0xc3, 0x68, 0xba, 0x10, 0x19, 0x5d, 0x87, 0x05, 0xce, 0x43, 0x77, 0x59, 0x21, 0x73, + 0xa3, 0xd3, 0xc4, 0x2e, 0xef, 0x16, 0x96, 0x15, 0x0d, 0xf1, 0x72, 0x4e, 0x4b, 0x9c, 0xaa, 0xfa, + 0xb7, 0x0a, 0xcc, 0x25, 0x78, 0xa2, 0xf7, 0x61, 0x46, 0x70, 0x08, 0x0e, 0x5c, 0xe1, 0x06, 0x5e, + 0x19, 0x22, 0xc6, 0x65, 0xfe, 0x77, 0xe7, 0xc0, 0xc5, 0xd4, 0x5f, 0x8a, 0x0f, 0xf4, 0x02, 0xd4, + 0x7a, 0x4e, 0xc7, 0xe8, 0x51, 0xaf, 0xe5, 0xe1, 0x3d, 0xee, 0xd5, 0x67, 0x42, 0xa0, 0x86, 0xf7, + 0xd4, 0x3b, 0x50, 0x8d, 0x31, 0x40, 0x08, 0x66, 0x35, 0x56, 0xd5, 0x3a, 0xde, 0x33, 0x06, 0xbd, + 0xa0, 0x3e, 0x81, 0x66, 0x01, 0x76, 0xed, 0x0e, 0x99, 0x45, 0x6d, 0x6c, 0xd6, 0x15, 0x54, 0x83, + 0xca, 0x03, 0xc1, 0xa2, 0x5e, 0x50, 0xbf, 0x57, 0x84, 0xe3, 0xd4, 0xf0, 0xda, 0x8e, 0xc9, 0x47, + 0x02, 0x9f, 0x72, 0x5f, 0x80, 0x5a, 0x87, 0xf6, 0xa5, 0xee, 0x1a, 0x1e, 0xb6, 0x03, 0x3e, 0xf1, + 0xcc, 0x30, 0x60, 0x9b, 0xc2, 0x90, 0x06, 0x75, 0x9f, 0xb7, 0x48, 0xef, 0xb0, 0x91, 0xc3, 0x8d, + 0x5b, 0x6a, 0xf5, 0x90, 0x81, 0xa6, 0xcd, 0xf9, 0xa9, 0x91, 0x37, 0xed, 0x1f, 0xf8, 0x9d, 0xa0, + 0x27, 0xbc, 0xdd, 0xe5, 0x14, 0xab, 0xa4, 0xb0, 0x97, 0xb7, 0x19, 0xc1, 0x86, 0x1d, 0x78, 0x07, + 0x9a, 0x20, 0x47, 0xef, 0x42, 0xd9, 0x79, 0x8a, 0xbd, 0x7d, 0x6c, 0x30, 0x2f, 0x53, 0xbd, 0xf6, + 0x42, 0x8a, 0xd5, 0x9a, 0x70, 0xf4, 0x1a, 0xf6, 0x9d, 0x81, 0xd7, 0xc1, 0xbe, 0x16, 0x12, 0xa1, + 0x26, 0x54, 0x3c, 0x01, 0xe6, 0x5e, 0x68, 0x2c, 0x0e, 0x11, 0x55, 0xe3, 0x16, 0xcc, 0xc4, 0x85, + 0x43, 0x75, 0x28, 0x3e, 0xc1, 0x07, 0x5c, 0x99, 0xe4, 0x67, 0xe4, 0x9f, 0x58, 0x0f, 0xb3, 0x8f, + 0x5b, 0x85, 0x1b, 0x8a, 0xea, 0x01, 0x8a, 0x5a, 0xfa, 0x10, 0x07, 0x86, 0x69, 0x04, 0x06, 0x42, + 0x50, 0xa2, 0xc1, 0x18, 0x63, 0x41, 0x7f, 0x13, 0xae, 0x03, 0xee, 0xaa, 0x2b, 0x1a, 0xf9, 0x89, + 0x4e, 0x42, 0x25, 0xf4, 0x44, 0x3c, 0x22, 0x8b, 0x00, 0x24, 0x32, 0x32, 0x82, 0x00, 0xf7, 0xdd, + 0x80, 0x2a, 0xa6, 0xa6, 0x89, 0x4f, 0xf5, 0xd7, 0x26, 0xa1, 0x9e, 0xb2, 0x85, 0x5b, 0x50, 0xee, + 0xf3, 0xea, 0xb9, 0x0f, 0x5c, 0x95, 0xc2, 0xa3, 0x94, 0x90, 0x5a, 0x88, 0x4f, 0xa2, 0x0f, 0x62, + 0x6b, 0xb1, 0xf8, 0x31, 0xfc, 0x66, 0x46, 0xde, 0xd5, 0x4d, 0xcb, 0xc3, 0x9d, 0xc0, 0xf1, 0x0e, + 0xb8, 0xa0, 0x33, 0x3d, 0xa7, 0xbb, 0x2e, 0x60, 0xe8, 0x3a, 0x80, 0x69, 0xfb, 0x3a, 0xb5, 0xe1, + 0x2e, 0xef, 0x47, 0x69, 0x02, 0x0c, 0xc3, 0x44, 0xad, 0x62, 0xda, 0x3e, 0x17, 0xf9, 0x36, 0xd4, + 0x48, 0xcc, 0xa5, 0xf7, 0x45, 0xe0, 0x30, 0x49, 0x6d, 0x69, 0x49, 0x96, 0x3b, 0x8c, 0x00, 0xb5, + 0x19, 0x37, 0xfa, 0xf0, 0xd1, 0x1d, 0x98, 0xa2, 0x61, 0x8f, 0x08, 0x54, 0xce, 0x65, 0x37, 0x97, + 0x5b, 0xdf, 0x03, 0x8a, 0xca, 0x8c, 0x8f, 0xd3, 0xa1, 0x2d, 0xa8, 0x1a, 0xb6, 0xed, 0x04, 0x06, + 0xf3, 0xf8, 0x2c, 0x6c, 0xb9, 0x34, 0x94, 0x4d, 0x33, 0xc2, 0x67, 0xbc, 0xe2, 0x1c, 0xd0, 0x5b, + 0x30, 0x49, 0xa7, 0x04, 0xee, 0xc3, 0xcf, 0x8e, 0x1c, 0x14, 0x1a, 0xc3, 0x47, 0x6f, 0xc3, 0xf4, + 0x33, 0xcb, 0x36, 0x9d, 0x67, 0x3e, 0xf7, 0xa7, 0x92, 0x09, 0x7f, 0x99, 0x15, 0xa5, 0x88, 0x05, + 0x4d, 0xe3, 0x26, 0x54, 0x63, 0xed, 0x3b, 0x8c, 0xfd, 0x36, 0xde, 0x81, 0x7a, 0xb2, 0x4d, 0x87, + 0xb2, 0xff, 0x01, 0x2c, 0x68, 0x03, 0x3b, 0x12, 0x4d, 0x2c, 0x6f, 0xae, 0xc3, 0x14, 0xb7, 0x06, + 0x66, 0x8c, 0x27, 0x87, 0xa9, 0x55, 0xe3, 0xb8, 0xf1, 0x95, 0xca, 0xbe, 0x61, 0x9b, 0x3d, 0xec, + 0xf1, 0x1a, 0xc5, 0x4a, 0xe5, 0x3e, 0x83, 0xaa, 0x6f, 0xc3, 0xf1, 0x44, 0xb5, 0x7c, 0xa1, 0xf4, + 0x22, 0xcc, 0xba, 0x8e, 0xa9, 0xfb, 0x0c, 0x2c, 0x62, 0xc9, 0x0a, 0xb1, 0x1d, 0x81, 0xdb, 0x32, + 0x09, 0xf9, 0x76, 0xe0, 0xb8, 0x69, 0xb1, 0xc7, 0x23, 0x5f, 0x86, 0xc5, 0x24, 0x39, 0xab, 0x5e, + 0x7d, 0x17, 0x96, 0x34, 0xdc, 0x77, 0x9e, 0xe2, 0xa3, 0xb2, 0x6e, 0xc0, 0x72, 0x9a, 0x01, 0x67, + 0xfe, 0x01, 0x2c, 0x45, 0xd0, 0xed, 0xc0, 0x08, 0x06, 0xfe, 0xa1, 0x98, 0xf3, 0x55, 0xe4, 0x63, + 0xc7, 0x67, 0x1d, 0x59, 0xd6, 0xc4, 0xa7, 0xba, 0x04, 0x93, 0x6d, 0xc7, 0x6c, 0xb5, 0xd1, 0x2c, + 0x14, 0x2c, 0x97, 0x13, 0x17, 0x2c, 0x57, 0xed, 0xc4, 0xeb, 0xdc, 0x64, 0x51, 0x27, 0xab, 0x3a, + 0x89, 0x8a, 0x6e, 0xc0, 0xac, 0x61, 0x9a, 0x16, 0x31, 0x24, 0xa3, 0xa7, 0x5b, 0xae, 0x08, 0x9a, + 0xe7, 0x13, 0x5d, 0xdf, 0x6a, 0x6b, 0xb5, 0x08, 0xb1, 0xe5, 0xfa, 0xea, 0x5d, 0xa8, 0x44, 0x01, + 0xfa, 0x1b, 0xd1, 0x8a, 0xb0, 0x30, 0x3a, 0x96, 0x0b, 0x97, 0x8b, 0x9b, 0xa9, 0x49, 0x92, 0x8b, + 0xf9, 0x06, 0x40, 0xe8, 0x54, 0x45, 0x78, 0x78, 0x3c, 0x93, 0xa5, 0x16, 0x43, 0x54, 0xff, 0xad, + 0x14, 0x77, 0xb2, 0xb1, 0x26, 0x9b, 0x61, 0x93, 0x4d, 0xc9, 0xe9, 0x16, 0x0e, 0xe9, 0x74, 0x5f, + 0x83, 0x49, 0x3f, 0x30, 0x02, 0xcc, 0xe3, 0xf1, 0x95, 0x6c, 0x42, 0x52, 0x31, 0xd6, 0x18, 0x26, + 0x3a, 0x05, 0xd0, 0xf1, 0xb0, 0x11, 0x60, 0x53, 0x37, 0xd8, 0xac, 0x50, 0xd4, 0x2a, 0x1c, 0xd2, + 0x0c, 0x88, 0x17, 0x11, 0x2b, 0x88, 0x8c, 0x89, 0x30, 0xa7, 0x1b, 0xa3, 0xb5, 0x44, 0xe8, 0xbd, + 0xa6, 0x46, 0x7a, 0x2f, 0x4e, 0xca, 0xbd, 0x57, 0xe4, 0x89, 0xa7, 0x87, 0x79, 0x62, 0x46, 0x34, + 0x8e, 0x27, 0x2e, 0x0f, 0xf3, 0xc4, 0x9c, 0xcd, 0x70, 0x4f, 0x9c, 0xe1, 0x48, 0x2a, 0x59, 0x8e, + 0xe4, 0xb3, 0x74, 0x9d, 0x7f, 0x51, 0x80, 0xe5, 0xf4, 0x78, 0xe6, 0x7e, 0xec, 0x3a, 0x4c, 0xf9, + 0x14, 0x32, 0xdc, 0x7f, 0x72, 0x2a, 0x8e, 0x8b, 0xee, 0x42, 0xc9, 0xb2, 0xf7, 0x1c, 0x3e, 0xf0, + 0x2e, 0x0f, 0xa5, 0xe1, 0x35, 0x5d, 0x6e, 0xd9, 0x7b, 0x0e, 0xd3, 0x20, 0xa5, 0x45, 0x0f, 0xe0, + 0x58, 0xb8, 0xb2, 0xf6, 0x75, 0xc6, 0x18, 0x8b, 0x38, 0x4f, 0xb2, 0xd2, 0x30, 0xaa, 0xe2, 0x1c, + 0x51, 0x44, 0xb7, 0xcd, 0xc9, 0x48, 0x8c, 0x43, 0xd0, 0xfd, 0xc0, 0xe8, 0xbb, 0xc2, 0x62, 0x43, + 0x40, 0xe3, 0x2d, 0xa8, 0x84, 0xd5, 0x1f, 0x4a, 0x77, 0x2d, 0x58, 0x48, 0x8c, 0x11, 0xb6, 0x90, + 0x0c, 0x07, 0x95, 0x32, 0xee, 0xa0, 0x52, 0x7f, 0xa6, 0xc4, 0x07, 0xfa, 0x7b, 0x56, 0x2f, 0xc0, + 0x5e, 0x6a, 0xa0, 0xbf, 0x29, 0xf8, 0xb2, 0x51, 0x7e, 0x66, 0x08, 0x5f, 0xb6, 0x4e, 0xe3, 0x23, + 0xf6, 0x11, 0xcc, 0x52, 0x13, 0xd7, 0x7d, 0xdc, 0xa3, 0xb1, 0x12, 0xd7, 0xe3, 0x95, 0x6c, 0x06, + 0xac, 0x76, 0x36, 0x44, 0xb6, 0x39, 0x05, 0xeb, 0x9b, 0x5a, 0x2f, 0x0e, 0x6b, 0xdc, 0x01, 0x94, + 0x46, 0x3a, 0x94, 0x06, 0x1f, 0x12, 0x7f, 0xe9, 0x07, 0x99, 0x33, 0xf7, 0x1e, 0x15, 0x63, 0xb8, + 0xe5, 0x31, 0x51, 0x35, 0x8e, 0xab, 0xfe, 0x4b, 0x11, 0x20, 0x2a, 0xfc, 0x9c, 0x3b, 0xca, 0x5b, + 0xa1, 0xc3, 0x62, 0x11, 0xa7, 0x9a, 0xcd, 0x32, 0xd3, 0x55, 0xb5, 0x64, 0x57, 0xc5, 0x62, 0xcf, + 0x57, 0x72, 0x18, 0x1c, 0xda, 0x49, 0x4d, 0x7f, 0xde, 0x9c, 0xd4, 0x7b, 0xb0, 0x98, 0x34, 0x13, + 0xee, 0xa1, 0x5e, 0x85, 0x49, 0x2b, 0xc0, 0x7d, 0xb6, 0xdb, 0x9b, 0xd8, 0xb0, 0x88, 0xa1, 0x33, + 0x24, 0xf5, 0x1d, 0x58, 0x94, 0xfb, 0xea, 0x70, 0xa1, 0x8b, 0xfa, 0x20, 0x19, 0xfb, 0x44, 0xae, + 0x92, 0xdb, 0x47, 0xe6, 0xd6, 0x4f, 0x92, 0x86, 0x61, 0xaa, 0x3f, 0x54, 0xe0, 0x78, 0xa2, 0x28, + 0x67, 0xe0, 0x7f, 0x2d, 0x35, 0x80, 0x99, 0x6f, 0xbd, 0x3e, 0xa4, 0x96, 0x4f, 0x71, 0x14, 0x7f, + 0x19, 0x1a, 0x72, 0xf7, 0x48, 0xaa, 0xbd, 0x99, 0x18, 0xca, 0x67, 0x47, 0x0a, 0x1d, 0x8e, 0xe7, + 0x36, 0xac, 0x64, 0x32, 0x4e, 0xeb, 0xbc, 0x38, 0xa6, 0xce, 0xff, 0xb7, 0x10, 0xf7, 0xd9, 0xcd, + 0x20, 0xf0, 0xac, 0xc7, 0x83, 0x00, 0x7f, 0xb2, 0x41, 0xd5, 0x7a, 0x38, 0xb2, 0x99, 0x9f, 0x7d, + 0x35, 0x9b, 0x32, 0xaa, 0x3d, 0x73, 0x8c, 0x6f, 0xcb, 0x63, 0xbc, 0x44, 0x59, 0xbd, 0x36, 0x92, + 0xd5, 0xd0, 0xd1, 0xfe, 0x59, 0x0e, 0xe2, 0xbf, 0x57, 0x60, 0x2e, 0xd1, 0x2b, 0xe8, 0x0e, 0x80, + 0x11, 0x8a, 0xce, 0xed, 0xe3, 0xcc, 0xa8, 0x26, 0x6a, 0x31, 0x1a, 0x32, 0x27, 0xb2, 0x78, 0x31, + 0x63, 0x4e, 0xcc, 0x88, 0x17, 0xc3, 0x70, 0xf1, 0x76, 0xb4, 0xd8, 0x65, 0x9b, 0xa4, 0xea, 0xd0, + 0xc5, 0x2e, 0xa3, 0x15, 0x24, 0xea, 0xaf, 0x17, 0x60, 0x21, 0x8b, 0x3b, 0x7a, 0x19, 0x8a, 0x1d, + 0x77, 0xc0, 0x5b, 0x22, 0x1d, 0x0d, 0xad, 0xb9, 0x83, 0x5d, 0xdf, 0xe8, 0x62, 0x8d, 0x20, 0xa0, + 0x2b, 0x30, 0xd5, 0xc7, 0x7d, 0xc7, 0x3b, 0xe0, 0x72, 0x4b, 0xdb, 0x0d, 0x0f, 0x69, 0x09, 0xc3, + 0xe6, 0x68, 0xe8, 0x5a, 0x14, 0x56, 0x33, 0x79, 0x97, 0xa5, 0xd5, 0x03, 0x2b, 0x62, 0x24, 0x61, + 0x2c, 0x7d, 0x0d, 0xa6, 0x5d, 0xcf, 0xe9, 0x60, 0xdf, 0xe7, 0xbb, 0x21, 0xcb, 0x89, 0xb3, 0x2a, + 0x52, 0xc4, 0x69, 0x38, 0x22, 0xba, 0x05, 0x10, 0x05, 0x50, 0x7c, 0x66, 0x6a, 0xe4, 0xc6, 0x5b, + 0xbe, 0x16, 0xc3, 0x56, 0xbf, 0x5f, 0x80, 0xc5, 0x6c, 0xcd, 0xa1, 0x4b, 0x71, 0xbd, 0xac, 0x64, + 0xa8, 0x5a, 0x56, 0xcf, 0x9b, 0x09, 0xf5, 0xac, 0x66, 0x50, 0x64, 0x69, 0xe9, 0x66, 0x52, 0x4b, + 0xa7, 0x33, 0x08, 0xb3, 0x95, 0x75, 0x33, 0xa9, 0xac, 0x2c, 0xd2, 0x6c, 0x9d, 0x35, 0x33, 0x74, + 0x76, 0x36, 0xab, 0x8d, 0xf9, 0xaa, 0xfb, 0x1b, 0x05, 0x66, 0xe2, 0x72, 0xc9, 0x21, 0xab, 0x92, + 0x08, 0x59, 0xd1, 0x26, 0xcc, 0x9b, 0x6c, 0xe7, 0x56, 0xb7, 0xec, 0x00, 0x7b, 0x7b, 0x46, 0x47, + 0x44, 0x85, 0x67, 0x33, 0xec, 0xa2, 0x25, 0x70, 0x98, 0xe0, 0x75, 0x4e, 0x1b, 0x82, 0x49, 0x0b, + 0x42, 0x3e, 0xc2, 0x6b, 0x8d, 0xc1, 0x28, 0x46, 0xa4, 0xfe, 0xb3, 0x02, 0xc7, 0x32, 0x14, 0x3c, + 0xa2, 0x21, 0xbb, 0xf9, 0x0d, 0x39, 0x97, 0xdf, 0x75, 0x23, 0xdb, 0x73, 0x3f, 0xa3, 0x3d, 0xe3, + 0xf3, 0x8b, 0x37, 0xeb, 0xe7, 0x0a, 0x1c, 0xcf, 0xc4, 0xca, 0xdc, 0x5e, 0xbd, 0x06, 0x65, 0xef, + 0xb9, 0xfe, 0xf8, 0x20, 0xc0, 0x7e, 0xd6, 0xc0, 0xde, 0x8d, 0x9d, 0xa1, 0x4c, 0x7b, 0xcf, 0xef, + 0x12, 0x3c, 0x74, 0x1d, 0x2a, 0xde, 0x73, 0x1d, 0x7b, 0x9e, 0xe3, 0x09, 0x5f, 0x94, 0x4b, 0x54, + 0xf6, 0x9e, 0x6f, 0x50, 0x44, 0x52, 0x53, 0x20, 0x6a, 0x2a, 0x8d, 0xa8, 0x29, 0x88, 0x6a, 0x0a, + 0xc2, 0x9a, 0x26, 0x47, 0xd4, 0x14, 0xf0, 0x9a, 0xd4, 0x3f, 0x2c, 0xc0, 0xc9, 0x61, 0xea, 0xfa, + 0xc4, 0x14, 0xb1, 0x01, 0xc8, 0x7b, 0xae, 0xbb, 0x46, 0xe7, 0x09, 0x0e, 0x7c, 0xdd, 0xf4, 0x1c, + 0xd7, 0xc5, 0xe6, 0x28, 0x8d, 0xd4, 0xbd, 0xe7, 0x6d, 0x46, 0xb1, 0xce, 0x08, 0x8e, 0xa4, 0x99, + 0x0d, 0x40, 0x41, 0xba, 0xea, 0x11, 0x2a, 0xaa, 0x07, 0x89, 0xaa, 0xd5, 0x0f, 0x61, 0x26, 0xee, + 0x21, 0x46, 0xd8, 0xfe, 0x6d, 0xa8, 0x71, 0x0f, 0xa2, 0x77, 0x9c, 0x81, 0x1d, 0x8c, 0x52, 0xd4, + 0x0c, 0xc7, 0x5e, 0x23, 0xc8, 0xea, 0x37, 0xc2, 0xe1, 0xf6, 0xa9, 0x55, 0xf9, 0x47, 0x0a, 0x54, + 0x5a, 0x7d, 0xa3, 0x8b, 0xb7, 0x5d, 0xdc, 0x21, 0x33, 0xbd, 0x45, 0x3e, 0x78, 0xbf, 0xb3, 0x0f, + 0x74, 0x5f, 0x8e, 0x5a, 0x58, 0x9c, 0xfa, 0xb2, 0x74, 0x8e, 0x28, 0x38, 0x8c, 0x08, 0x55, 0x3e, + 0x6e, 0xbc, 0x71, 0x0d, 0xca, 0x5f, 0xc4, 0x07, 0x6c, 0x45, 0x3e, 0x26, 0x9d, 0xfa, 0x9d, 0x12, + 0x2c, 0xe5, 0x9c, 0xd5, 0xd0, 0xe5, 0x9c, 0x3b, 0xd0, 0x5d, 0xec, 0x59, 0x8e, 0x29, 0x54, 0xdb, + 0x71, 0x07, 0x6d, 0x0a, 0x40, 0x2b, 0x40, 0x3e, 0xf4, 0x6f, 0x0c, 0x1c, 0x1e, 0x31, 0x16, 0xb5, + 0x72, 0xc7, 0x1d, 0x7c, 0x89, 0x7c, 0x0b, 0x5a, 0x7f, 0xdf, 0xf0, 0x30, 0x1b, 0xe4, 0x8c, 0x76, + 0x9b, 0x02, 0xd0, 0x6b, 0x70, 0x9c, 0x4d, 0x60, 0x7a, 0xcf, 0xea, 0x5b, 0xc4, 0x15, 0xc6, 0xec, + 0xb7, 0xa8, 0x21, 0x56, 0xf8, 0x80, 0x94, 0xb5, 0x6c, 0x66, 0xb1, 0x2a, 0xd4, 0x1c, 0xa7, 0xaf, + 0xfb, 0x1d, 0xc7, 0xc3, 0xba, 0x61, 0x7e, 0x48, 0x8d, 0xb5, 0xa8, 0x55, 0x1d, 0xa7, 0xbf, 0x4d, + 0x60, 0x4d, 0xf3, 0x43, 0x74, 0x1a, 0xaa, 0x1d, 0x77, 0xe0, 0xe3, 0x40, 0x27, 0x7f, 0xe8, 0x8e, + 0x5a, 0x45, 0x03, 0x06, 0x5a, 0x73, 0x07, 0x7e, 0x0c, 0xa1, 0x4f, 0xd6, 0x50, 0xd3, 0x71, 0x84, + 0x87, 0xb8, 0x4f, 0x8f, 0xa4, 0xf7, 0x07, 0x5d, 0xec, 0x1a, 0x5d, 0xcc, 0x44, 0x13, 0xdb, 0x62, + 0xd2, 0x91, 0xf4, 0x7d, 0x8e, 0x42, 0x05, 0xd4, 0x66, 0xf7, 0xe3, 0x9f, 0x3e, 0x7a, 0x1f, 0xa6, + 0x07, 0xb6, 0xb5, 0x67, 0x61, 0x73, 0xb9, 0x42, 0x69, 0xaf, 0x8e, 0x71, 0x32, 0x76, 0x79, 0x97, + 0x91, 0xf0, 0x83, 0x3a, 0xce, 0x00, 0xdd, 0x82, 0x06, 0x57, 0x94, 0xff, 0xcc, 0x70, 0x93, 0xda, + 0x02, 0xaa, 0x82, 0x45, 0x86, 0xb1, 0xfd, 0xcc, 0x70, 0xe3, 0x1a, 0x6b, 0xdc, 0x82, 0x99, 0x38, + 0xd3, 0x43, 0xd9, 0xd2, 0x5d, 0xa8, 0x49, 0x8d, 0x24, 0xbd, 0x4d, 0x95, 0xe2, 0x5b, 0xdf, 0x14, + 0x03, 0xa0, 0x4c, 0x00, 0xdb, 0xd6, 0x37, 0x69, 0x22, 0x01, 0x95, 0x8c, 0xf2, 0x29, 0x69, 0xec, + 0x43, 0x35, 0xa0, 0x26, 0x9d, 0xdd, 0x13, 0xbf, 0x49, 0x0f, 0xe9, 0xb9, 0xdf, 0x24, 0xbf, 0x09, + 0xcc, 0x73, 0x7a, 0x42, 0x02, 0xfa, 0x9b, 0xc0, 0xe8, 0x29, 0x31, 0x3b, 0xf3, 0xa2, 0xbf, 0x69, + 0x15, 0xf8, 0x29, 0x4f, 0xc2, 0xa9, 0x68, 0xec, 0x43, 0xfd, 0x6d, 0x05, 0x60, 0xcd, 0x70, 0x8d, + 0xc7, 0x56, 0xcf, 0x0a, 0x0e, 0xd0, 0x79, 0xa8, 0x1b, 0xa6, 0xa9, 0x77, 0x04, 0xc4, 0xc2, 0x22, + 0x2b, 0x6a, 0xce, 0x30, 0xcd, 0xb5, 0x18, 0x18, 0x5d, 0x84, 0x79, 0xe2, 0xf5, 0x64, 0x5c, 0x96, + 0x26, 0x55, 0x27, 0x05, 0x12, 0xf2, 0x0d, 0x58, 0x26, 0x7c, 0x8d, 0xfe, 0x63, 0x0b, 0xdb, 0x81, + 0x4c, 0xc3, 0xf2, 0xa7, 0x16, 0x0d, 0xd3, 0x6c, 0xb2, 0xe2, 0x38, 0xa5, 0xfa, 0xd7, 0x53, 0x70, + 0x4a, 0xee, 0xf1, 0x64, 0x3a, 0xc5, 0x2d, 0x98, 0x49, 0xc8, 0x9b, 0x4a, 0x44, 0x88, 0x5a, 0xa8, + 0x49, 0xb8, 0x89, 0x84, 0x81, 0x42, 0x2a, 0x61, 0x20, 0x33, 0x55, 0xa3, 0xf8, 0x09, 0xa5, 0x6a, + 0x94, 0x3e, 0x66, 0xaa, 0xc6, 0xe4, 0x51, 0x53, 0x35, 0x66, 0xc6, 0x4e, 0xd5, 0x78, 0x99, 0x6e, + 0xf5, 0x88, 0x1a, 0xe9, 0x9c, 0xcd, 0x7c, 0x42, 0x2d, 0xe4, 0x6e, 0x8b, 0x54, 0xbd, 0x44, 0x4a, + 0xc7, 0xf4, 0x61, 0x52, 0x3a, 0xca, 0xb9, 0x29, 0x1d, 0x67, 0x60, 0xc6, 0x76, 0x74, 0x1b, 0x3f, + 0xd3, 0x49, 0xb7, 0xf8, 0xcb, 0x55, 0xd6, 0x47, 0xb6, 0xb3, 0x89, 0x9f, 0xb5, 0x09, 0x04, 0x9d, + 0x85, 0x99, 0xbe, 0xe1, 0x3f, 0xc1, 0x26, 0xcd, 0xad, 0xf0, 0x97, 0x6b, 0xd4, 0x9e, 0xaa, 0x0c, + 0xd6, 0x26, 0x20, 0xf4, 0x12, 0x84, 0x72, 0x70, 0xa4, 0x59, 0x8a, 0x54, 0x13, 0x50, 0x86, 0x16, + 0x4b, 0x0f, 0x99, 0x3b, 0x62, 0x7a, 0x48, 0xfd, 0x30, 0xe9, 0x21, 0x97, 0xa0, 0x2e, 0x7e, 0x8b, + 0xfc, 0x10, 0xb6, 0xdd, 0x4f, 0x53, 0x43, 0xe6, 0x44, 0x99, 0xc8, 0x01, 0xc9, 0xcb, 0x26, 0x81, + 0xa1, 0xd9, 0x24, 0x7f, 0xac, 0xf0, 0x85, 0x67, 0x38, 0x80, 0xf8, 0x31, 0xb6, 0x94, 0x81, 0xa0, + 0x1c, 0x25, 0x03, 0x01, 0xed, 0xe4, 0xe6, 0x68, 0x9c, 0xcf, 0xe7, 0x34, 0x2a, 0x4b, 0x43, 0x7d, + 0x18, 0xae, 0x09, 0x3f, 0x89, 0x5c, 0x33, 0xf5, 0x3f, 0x14, 0x38, 0xc5, 0xf9, 0xe5, 0x24, 0x64, + 0x65, 0x58, 0xb9, 0x92, 0x63, 0xe5, 0x1d, 0x0f, 0x9b, 0xd8, 0x0e, 0x2c, 0xa3, 0xa7, 0xfb, 0x2e, + 0xee, 0x88, 0x63, 0xde, 0x08, 0x4c, 0x03, 0x9d, 0xb3, 0x30, 0xc3, 0x72, 0x26, 0xf9, 0xf2, 0x90, + 0xa5, 0x46, 0x56, 0x69, 0xda, 0x24, 0x5f, 0x01, 0x6e, 0x65, 0x79, 0x96, 0x52, 0xee, 0xbe, 0xc2, + 0x48, 0x07, 0xa3, 0x3a, 0xb0, 0x94, 0x73, 0xe0, 0x9e, 0xd9, 0x4d, 0x4a, 0xba, 0x9b, 0x86, 0x2a, + 0x29, 0xdd, 0x4d, 0xdf, 0x51, 0xe0, 0x74, 0x6a, 0x99, 0xfa, 0xd9, 0x6b, 0x56, 0xfd, 0x33, 0x25, + 0xb4, 0x9f, 0xa4, 0xc9, 0xaf, 0xa5, 0x4d, 0xfe, 0xa5, 0x61, 0xab, 0xee, 0x4c, 0xa3, 0x7f, 0x94, + 0x6b, 0xf4, 0x17, 0x87, 0xae, 0xe0, 0x47, 0xe9, 0xf3, 0x5f, 0x15, 0x38, 0x91, 0x2b, 0x40, 0x22, + 0x1e, 0x54, 0x92, 0xf1, 0x20, 0x8f, 0x25, 0xa3, 0x10, 0x9d, 0xc5, 0x92, 0x34, 0x0a, 0xe7, 0x41, + 0x9b, 0xde, 0x37, 0x9e, 0x5b, 0xfd, 0x41, 0x9f, 0x07, 0x93, 0x84, 0xdd, 0x43, 0x06, 0x39, 0x4a, + 0x34, 0x79, 0x05, 0x16, 0x98, 0xa3, 0xa7, 0x01, 0x4d, 0x44, 0xc1, 0x82, 0xca, 0x79, 0x56, 0x46, + 0x62, 0x1b, 0x4e, 0xa0, 0x36, 0x61, 0x3e, 0x6c, 0xd6, 0xd0, 0x84, 0xa3, 0x58, 0x02, 0x51, 0x41, + 0x4e, 0x20, 0xb2, 0x61, 0x6a, 0x1d, 0x3f, 0xb5, 0x3a, 0xf8, 0x13, 0xc9, 0x5d, 0x3e, 0x03, 0x55, + 0x17, 0x7b, 0x7d, 0xcb, 0xf7, 0xc3, 0x59, 0xbd, 0xa2, 0xc5, 0x41, 0xea, 0x69, 0xa8, 0xac, 0xad, + 0xb7, 0x78, 0x95, 0x19, 0xa2, 0xaa, 0xff, 0x39, 0x05, 0x73, 0x49, 0x1b, 0xbb, 0x99, 0x4a, 0x68, + 0x3a, 0x95, 0xb9, 0x19, 0x96, 0xb1, 0x0b, 0x7c, 0x51, 0xac, 0x8f, 0x0a, 0xe9, 0xd3, 0xfe, 0x70, + 0x0d, 0x24, 0x96, 0x4d, 0xcb, 0x30, 0xdd, 0x71, 0xfa, 0x7d, 0xc3, 0x36, 0x45, 0x06, 0x3a, 0xff, + 0x24, 0x92, 0x1a, 0x5e, 0x97, 0xed, 0xff, 0x56, 0x34, 0xfa, 0x9b, 0x98, 0x00, 0x71, 0x86, 0x96, + 0x4d, 0x53, 0xa2, 0x68, 0x2f, 0x55, 0x34, 0xe0, 0xa0, 0x75, 0xcb, 0x43, 0xe7, 0xa0, 0x84, 0xed, + 0xa7, 0xe2, 0x60, 0x48, 0xda, 0x87, 0x14, 0x6b, 0x22, 0x8d, 0x62, 0xa0, 0xf3, 0x30, 0xd5, 0x27, + 0x66, 0x25, 0x8e, 0xcd, 0xe7, 0x53, 0x99, 0xda, 0x1a, 0x47, 0x40, 0xaf, 0xc2, 0xb4, 0x49, 0xb5, + 0x27, 0x16, 0x01, 0x48, 0x4a, 0xae, 0xa2, 0x45, 0x9a, 0x40, 0x41, 0xef, 0x86, 0x9b, 0xe0, 0x95, + 0xf4, 0xe9, 0x54, 0x42, 0xcd, 0x99, 0xfb, 0xdf, 0x9b, 0xf2, 0x4a, 0x12, 0xd2, 0x5b, 0xe9, 0x49, + 0x2e, 0xc3, 0x0f, 0xba, 0x4e, 0x40, 0xb9, 0xe7, 0x74, 0x99, 0xf5, 0x54, 0xd9, 0xf5, 0x85, 0x9e, + 0xd3, 0xa5, 0xc6, 0xb3, 0x00, 0x93, 0x7e, 0x60, 0x5a, 0x36, 0x8d, 0xa5, 0xca, 0x1a, 0xfb, 0x20, + 0x83, 0x94, 0xfe, 0xd0, 0x1d, 0xbb, 0x83, 0x97, 0x6b, 0xb4, 0xa8, 0x42, 0x21, 0x5b, 0x76, 0x87, + 0xae, 0x29, 0x83, 0xe0, 0x60, 0x79, 0x96, 0xc2, 0xc9, 0xcf, 0x68, 0x2f, 0x7a, 0x2e, 0x67, 0x2f, + 0x3a, 0x21, 0x70, 0xc6, 0x5e, 0x74, 0x3d, 0x77, 0xce, 0x48, 0xd2, 0x0a, 0x12, 0x12, 0x47, 0xae, + 0xad, 0xb7, 0x74, 0xd1, 0x35, 0xf3, 0xe9, 0xc4, 0xef, 0xd0, 0xec, 0x35, 0x08, 0x7f, 0x7e, 0xa6, + 0x47, 0x01, 0xdf, 0x57, 0x60, 0x71, 0x8d, 0x1e, 0x84, 0xc6, 0x7c, 0xe3, 0x61, 0x72, 0x88, 0x5e, + 0x0f, 0x13, 0xbb, 0x32, 0xb2, 0x73, 0x92, 0x9a, 0x12, 0x79, 0x5d, 0x6b, 0x30, 0x2b, 0xd8, 0x72, + 0xe2, 0xe2, 0x18, 0x59, 0x61, 0x35, 0x3f, 0xfe, 0xa9, 0xde, 0x86, 0xa5, 0x94, 0xe4, 0xfc, 0x38, + 0x2a, 0x79, 0x43, 0x80, 0x09, 0x1e, 0xbf, 0x21, 0xa0, 0xde, 0x82, 0xe3, 0xdb, 0x81, 0xe1, 0x05, + 0xa9, 0x66, 0x8f, 0x41, 0x4b, 0xf3, 0xbd, 0x64, 0x5a, 0x9e, 0x92, 0xb5, 0x0d, 0x0b, 0xdb, 0x81, + 0xe3, 0x1e, 0x81, 0x29, 0xf1, 0x3b, 0xa4, 0xe5, 0xce, 0x40, 0xcc, 0x33, 0xe2, 0x53, 0x5d, 0x62, + 0xd9, 0x69, 0xe9, 0xda, 0xbe, 0x00, 0x8b, 0x2c, 0x39, 0xec, 0x28, 0x8d, 0x38, 0x21, 0x52, 0xd3, + 0xd2, 0x7c, 0xef, 0xc1, 0x31, 0x69, 0x83, 0x9c, 0x27, 0x53, 0x5c, 0x95, 0x93, 0x29, 0xf2, 0xcf, + 0x22, 0xc2, 0x5c, 0x8a, 0xef, 0x16, 0x62, 0x7e, 0x3c, 0xe7, 0x44, 0xf5, 0x0d, 0x39, 0x95, 0xe2, + 0x74, 0x3e, 0x57, 0x29, 0x93, 0x22, 0x6d, 0x9d, 0xc5, 0x0c, 0xeb, 0xdc, 0x4d, 0x1d, 0xd7, 0x96, + 0xd2, 0xa9, 0x30, 0x09, 0x09, 0x3f, 0x95, 0x83, 0xda, 0x07, 0x2c, 0xdd, 0x22, 0xac, 0x3a, 0x3c, + 0xa3, 0x7d, 0x3d, 0x71, 0x46, 0xbb, 0x32, 0x44, 0xd2, 0xf0, 0x74, 0xf6, 0xbb, 0x25, 0xa8, 0x84, + 0x65, 0x29, 0x0d, 0xa7, 0x55, 0x55, 0xc8, 0x50, 0x55, 0x7c, 0x7e, 0x2d, 0x1e, 0x71, 0x7e, 0x2d, + 0x8d, 0x31, 0xbf, 0xae, 0x40, 0x85, 0xfe, 0xa0, 0x19, 0xf2, 0x6c, 0xbe, 0x2c, 0x53, 0x80, 0x86, + 0xf7, 0x22, 0x13, 0x9b, 0x1a, 0xd3, 0xc4, 0x12, 0xa9, 0x1d, 0xd3, 0xc9, 0xd4, 0x8e, 0x9b, 0xe1, + 0xdc, 0x57, 0x4e, 0x1f, 0xa5, 0x84, 0x1c, 0x33, 0x67, 0xbd, 0xc4, 0xfe, 0x69, 0x25, 0xbd, 0x7f, + 0x1a, 0xd1, 0x7f, 0x6e, 0x8f, 0x7a, 0xb7, 0x58, 0xbe, 0x46, 0xdc, 0xce, 0xb8, 0x8f, 0x7c, 0x43, + 0x3a, 0x2a, 0x53, 0x32, 0xe6, 0xaa, 0xd0, 0x2f, 0xc4, 0x8f, 0xc7, 0x76, 0x61, 0x31, 0x99, 0xe7, + 0x75, 0x28, 0x1f, 0x97, 0x93, 0x70, 0xfa, 0x9b, 0xf1, 0x88, 0x2f, 0x27, 0xbb, 0xf2, 0x66, 0x2a, + 0x11, 0x60, 0x6c, 0x0b, 0xbd, 0x2a, 0xe7, 0x0c, 0x1d, 0xda, 0xae, 0x52, 0x29, 0x43, 0x34, 0x22, + 0x31, 0x3c, 0x5e, 0xcc, 0x82, 0xf3, 0x0a, 0x87, 0x34, 0xe9, 0xca, 0x60, 0xcf, 0xb2, 0x2d, 0x7f, + 0x9f, 0x95, 0x4f, 0xb1, 0x95, 0x81, 0x00, 0x35, 0xe9, 0xae, 0x25, 0x7e, 0x6e, 0x05, 0x7a, 0xc7, + 0x31, 0x31, 0xb5, 0xda, 0x49, 0xad, 0x4c, 0x00, 0x6b, 0x8e, 0x89, 0xa3, 0xf1, 0x54, 0x3e, 0xec, + 0x78, 0xaa, 0x24, 0xc6, 0xd3, 0x22, 0x4c, 0x79, 0xd8, 0xf0, 0x1d, 0x9b, 0x6d, 0x66, 0x68, 0xfc, + 0x8b, 0x74, 0x44, 0x1f, 0xfb, 0x3e, 0xa9, 0x83, 0x07, 0x60, 0xfc, 0x33, 0x16, 0x2c, 0xce, 0x0c, + 0x09, 0x16, 0x87, 0xe4, 0x6e, 0x26, 0x82, 0xc5, 0xda, 0x90, 0x60, 0x71, 0xac, 0xd4, 0xcd, 0x28, + 0x2c, 0x9e, 0x1d, 0x15, 0x16, 0xc7, 0xe3, 0xca, 0x39, 0x39, 0xae, 0xbc, 0x1d, 0x5f, 0xa1, 0xd6, + 0xd3, 0x27, 0xd9, 0xc3, 0x6f, 0x84, 0x7c, 0x86, 0x03, 0xf8, 0x1f, 0x14, 0x58, 0x4a, 0x0d, 0x38, + 0x3e, 0x84, 0x5f, 0x4f, 0x24, 0x85, 0x0e, 0xcd, 0xc6, 0x14, 0x39, 0xa1, 0x4d, 0x29, 0x27, 0xf4, + 0xd2, 0x30, 0x92, 0x9c, 0x94, 0xd0, 0xa3, 0xa7, 0x69, 0x7e, 0x5b, 0x01, 0x94, 0xb1, 0x06, 0xbf, + 0x29, 0xa2, 0xf5, 0x43, 0xec, 0x96, 0xf1, 0x80, 0xfd, 0xdd, 0x28, 0x60, 0x2f, 0x1c, 0x66, 0xdf, + 0x21, 0xcc, 0x1f, 0xf9, 0x49, 0x01, 0x4e, 0xef, 0xba, 0x66, 0x22, 0x8c, 0xe4, 0x58, 0xe3, 0x7b, + 0xb6, 0x9b, 0x72, 0xf2, 0xcb, 0x11, 0x9b, 0x50, 0x3c, 0x4a, 0x13, 0xd0, 0xd7, 0xb3, 0xd2, 0x93, + 0x6e, 0x4b, 0x07, 0x89, 0xc3, 0x1b, 0xf8, 0x0b, 0x3e, 0xfe, 0x53, 0xe1, 0x4c, 0xbe, 0x00, 0x3c, + 0xe4, 0xfc, 0xff, 0x30, 0xb7, 0xf1, 0x1c, 0x77, 0xb6, 0x0f, 0xec, 0xce, 0x21, 0xb4, 0x5e, 0x87, + 0x62, 0xa7, 0x6f, 0xf2, 0xd3, 0x11, 0xf2, 0x33, 0x1e, 0x45, 0x17, 0xe5, 0x28, 0x5a, 0x87, 0x7a, + 0x54, 0x03, 0x1f, 0x40, 0x8b, 0x64, 0x00, 0x99, 0x04, 0x99, 0x30, 0x9f, 0xd1, 0xf8, 0x17, 0x87, + 0x63, 0x8f, 0x5d, 0x37, 0x61, 0x70, 0xec, 0x79, 0xb2, 0xd7, 0x2e, 0xca, 0x5e, 0x5b, 0xfd, 0x9e, + 0x02, 0x55, 0x52, 0xc3, 0xc7, 0x92, 0x9f, 0x2f, 0x65, 0x8b, 0xd1, 0x52, 0x36, 0x5c, 0x11, 0x97, + 0xe2, 0x2b, 0xe2, 0x48, 0xf2, 0x49, 0x0a, 0x4e, 0x4b, 0x3e, 0x15, 0xc2, 0xb1, 0xe7, 0xa9, 0x67, + 0x60, 0x86, 0xc9, 0xc6, 0x5b, 0x5e, 0x87, 0xe2, 0xc0, 0xeb, 0x89, 0xfe, 0x1b, 0x78, 0x3d, 0xf5, + 0x5b, 0x0a, 0xd4, 0x9a, 0x41, 0x60, 0x74, 0xf6, 0x0f, 0xd1, 0x80, 0x50, 0xb8, 0x42, 0x5c, 0xb8, + 0x74, 0x23, 0x22, 0x71, 0x4b, 0x39, 0xe2, 0x4e, 0x4a, 0xe2, 0xaa, 0x30, 0x2b, 0x64, 0xc9, 0x15, + 0x78, 0x13, 0x50, 0xdb, 0xf1, 0x82, 0xf7, 0x1c, 0xef, 0x99, 0xe1, 0x99, 0x87, 0x5b, 0xb5, 0x22, + 0x28, 0xf1, 0x07, 0x00, 0x8a, 0xe7, 0x26, 0x35, 0xfa, 0x5b, 0x7d, 0x05, 0x8e, 0x49, 0xfc, 0x72, + 0x2b, 0xbe, 0x05, 0x55, 0x3a, 0x0b, 0xf3, 0x05, 0xcd, 0xc5, 0xf8, 0xe9, 0xfb, 0x88, 0xd9, 0x5a, + 0x5d, 0x87, 0x79, 0x12, 0x8f, 0x51, 0x78, 0xe8, 0x5f, 0xae, 0x24, 0x62, 0xfe, 0xa5, 0x14, 0x8b, + 0x44, 0xbc, 0xff, 0x33, 0x05, 0x26, 0x29, 0x3c, 0x15, 0x23, 0xad, 0x90, 0x79, 0xce, 0x75, 0xf4, + 0xc0, 0xe8, 0x86, 0x8f, 0x2b, 0x10, 0xc0, 0x8e, 0xd1, 0xa5, 0x27, 0x3a, 0xb4, 0xd0, 0xb4, 0xba, + 0xd8, 0x0f, 0xc4, 0x09, 0x61, 0x95, 0xc0, 0xd6, 0x19, 0x88, 0x28, 0x86, 0x1e, 0xa4, 0x96, 0xe8, + 0x79, 0x29, 0xfd, 0x8d, 0xce, 0xb1, 0x9b, 0x8a, 0xc3, 0x8f, 0xc5, 0xe8, 0x0d, 0xc6, 0x06, 0x94, + 0x13, 0xe7, 0x59, 0xe1, 0x37, 0x3a, 0x0f, 0x25, 0xba, 0xff, 0x3c, 0x3d, 0x4c, 0x4b, 0x14, 0x85, + 0x58, 0x85, 0x6b, 0xd9, 0x36, 0x36, 0x69, 0x00, 0x54, 0xd6, 0xf8, 0x97, 0xfa, 0x2e, 0xa0, 0xb8, + 0xf2, 0x78, 0x07, 0x9d, 0x87, 0x29, 0xaa, 0x5b, 0x11, 0xc4, 0xce, 0xa7, 0x58, 0x6b, 0x1c, 0x41, + 0xfd, 0x1a, 0x20, 0x56, 0x97, 0x14, 0xb8, 0x1e, 0xa6, 0x03, 0x87, 0x84, 0xb0, 0x7f, 0xae, 0xc0, + 0x31, 0x89, 0x3b, 0x97, 0xef, 0x15, 0x99, 0x7d, 0x86, 0x78, 0x9c, 0xf5, 0xdb, 0xd2, 0xcc, 0x7c, + 0x3e, 0x2d, 0xc6, 0x2f, 0x68, 0x56, 0xfe, 0x47, 0x05, 0xa0, 0x39, 0x08, 0xf6, 0xf9, 0x46, 0x6b, + 0xbc, 0x13, 0x95, 0x44, 0x27, 0x36, 0xa0, 0xec, 0x1a, 0xbe, 0xff, 0xcc, 0xf1, 0xc4, 0x22, 0x32, + 0xfc, 0xa6, 0xdb, 0xa3, 0x03, 0xfe, 0xe2, 0x42, 0x45, 0xa3, 0xbf, 0xd1, 0x4b, 0x30, 0xcb, 0x5e, + 0xfd, 0xd0, 0x0d, 0xd3, 0xf4, 0x44, 0x46, 0x5f, 0x45, 0xab, 0x31, 0x68, 0x93, 0x01, 0x09, 0x9a, + 0x45, 0x4f, 0x23, 0x82, 0x03, 0x3d, 0x70, 0x9e, 0x60, 0x9b, 0x2f, 0x0c, 0x6b, 0x02, 0xba, 0x43, + 0x80, 0xec, 0xb8, 0xb1, 0x6b, 0xf9, 0x81, 0x27, 0xd0, 0xc4, 0xa1, 0x29, 0x87, 0x52, 0x34, 0xf5, + 0x4f, 0x14, 0xa8, 0xb7, 0x07, 0xbd, 0x1e, 0x53, 0xee, 0x51, 0x3a, 0xf9, 0x02, 0x6f, 0x4a, 0x21, + 0x6d, 0xf2, 0x91, 0xa2, 0x78, 0x13, 0x3f, 0x91, 0xbd, 0xac, 0xab, 0x30, 0x1f, 0x93, 0x98, 0x1b, + 0x8e, 0x14, 0xd9, 0x2b, 0x72, 0x64, 0xaf, 0x36, 0x01, 0xb1, 0xed, 0x9b, 0x23, 0xb7, 0x52, 0x3d, + 0x0e, 0xc7, 0x24, 0x16, 0x7c, 0x2a, 0xbe, 0x00, 0x35, 0x9e, 0x5d, 0xc6, 0x0d, 0xe2, 0x04, 0x94, + 0x89, 0x4b, 0xed, 0x58, 0xa6, 0xc8, 0x90, 0x98, 0x76, 0x1d, 0x73, 0xcd, 0x32, 0x3d, 0xf5, 0x4b, + 0x50, 0xe3, 0xd7, 0xd7, 0x39, 0xee, 0x1d, 0x98, 0xe5, 0xe7, 0x83, 0xba, 0x74, 0xdf, 0xf3, 0x44, + 0x46, 0x0a, 0xa3, 0x50, 0x85, 0x1d, 0xff, 0x54, 0xbf, 0x0e, 0x0d, 0x16, 0x2d, 0x48, 0x8c, 0x45, + 0x03, 0xef, 0x80, 0xb8, 0x0c, 0x31, 0x84, 0xbf, 0x4c, 0x59, 0xf3, 0xe2, 0x9f, 0xea, 0x29, 0x58, + 0xc9, 0xe4, 0xcf, 0x5b, 0xef, 0x42, 0x3d, 0x2a, 0x60, 0x97, 0x12, 0xc3, 0xb4, 0x0f, 0x25, 0x96, + 0xf6, 0xb1, 0x18, 0xc6, 0xde, 0x05, 0x31, 0x73, 0xd1, 0xf0, 0x3a, 0x5a, 0x71, 0x15, 0xf3, 0x56, + 0x5c, 0x25, 0x69, 0xc5, 0xa5, 0x3e, 0x0c, 0x75, 0xc8, 0xd7, 0xbd, 0xb7, 0xe9, 0xca, 0x9c, 0xd5, + 0x2d, 0x9c, 0xda, 0xc9, 0xec, 0xf6, 0x31, 0x24, 0x2d, 0x86, 0xaf, 0x9e, 0x87, 0x9a, 0xec, 0xde, + 0x62, 0x1e, 0x4b, 0x49, 0x79, 0xac, 0xd9, 0x84, 0xb3, 0x7a, 0x2d, 0xb1, 0xa4, 0xc8, 0xd2, 0x6b, + 0x62, 0x41, 0x71, 0x43, 0x72, 0x5b, 0x2f, 0x4a, 0x47, 0xf4, 0xbf, 0x20, 0x8f, 0xb5, 0xc0, 0xfd, + 0xf8, 0x7b, 0x3e, 0xa1, 0xe7, 0x0d, 0x55, 0x5f, 0x80, 0xea, 0x6e, 0xde, 0x23, 0x22, 0x25, 0x91, + 0x57, 0xf6, 0x26, 0x2c, 0xbc, 0x67, 0xf5, 0xb0, 0x7f, 0xe0, 0x07, 0xb8, 0xdf, 0xa2, 0xee, 0x65, + 0xcf, 0xc2, 0x1e, 0x5a, 0x05, 0xa0, 0xab, 0x48, 0xd7, 0xb1, 0xc2, 0x87, 0x13, 0x62, 0x10, 0xf5, + 0xc7, 0x0a, 0xcc, 0x45, 0x84, 0xe3, 0x64, 0xf8, 0xbd, 0x01, 0x93, 0x7b, 0xbe, 0xd8, 0x6d, 0x4b, + 0x9c, 0x41, 0x64, 0x89, 0xa0, 0x95, 0xf6, 0xfc, 0x96, 0x89, 0xde, 0x04, 0x18, 0xf8, 0xd8, 0xe4, + 0xc7, 0x7e, 0x23, 0x72, 0x2e, 0x2b, 0x04, 0x95, 0x1d, 0x1c, 0xde, 0x80, 0xaa, 0x65, 0x3b, 0x26, + 0xa6, 0x47, 0xc2, 0xe6, 0xa8, 0x7c, 0x4b, 0x60, 0xb8, 0xbb, 0x3e, 0x36, 0xd5, 0xdf, 0x8b, 0x0e, + 0x76, 0x3f, 0xcf, 0x2d, 0x54, 0x75, 0x3e, 0xbf, 0x8a, 0x5e, 0xe7, 0x26, 0x7b, 0x1f, 0xe6, 0x99, + 0x9b, 0xdc, 0x0b, 0xab, 0xcc, 0xbc, 0x87, 0x92, 0x68, 0x9b, 0x56, 0xb7, 0x78, 0x64, 0x25, 0x88, + 0xd4, 0x5b, 0x70, 0x3c, 0x91, 0x18, 0x3e, 0xfe, 0x76, 0xfa, 0xfb, 0x89, 0x7d, 0xb1, 0x68, 0x48, + 0x5d, 0x95, 0xef, 0x23, 0x0d, 0x4b, 0xe1, 0xe7, 0x57, 0x63, 0x76, 0xe1, 0x84, 0xb4, 0x69, 0x27, + 0xc9, 0x72, 0x23, 0x11, 0x2c, 0x9e, 0xc9, 0xe7, 0x97, 0x88, 0x1a, 0xff, 0x4b, 0x81, 0x85, 0x2c, + 0x84, 0x23, 0x6e, 0x18, 0x7f, 0x35, 0xe7, 0x2e, 0xe3, 0xeb, 0xa3, 0x04, 0xfa, 0x54, 0x36, 0xd8, + 0x37, 0xd9, 0x4d, 0xa8, 0xd1, 0x7d, 0x52, 0x1c, 0xaf, 0x4f, 0x7e, 0x56, 0x88, 0x1d, 0x8a, 0x0c, + 0xb9, 0xad, 0xf4, 0x31, 0x36, 0x29, 0xd7, 0x12, 0x97, 0x95, 0x2e, 0x66, 0x12, 0x8e, 0xb8, 0xab, + 0xa4, 0x65, 0x6d, 0x06, 0x5c, 0x1d, 0xc5, 0xe9, 0x73, 0xbb, 0x7f, 0xfd, 0xdf, 0x0a, 0xcc, 0xca, + 0x1d, 0x82, 0xde, 0xcd, 0xb8, 0xa9, 0x74, 0x7a, 0x44, 0x03, 0xa5, 0x8b, 0x4a, 0xfc, 0x66, 0x50, + 0x61, 0xfc, 0x9b, 0x41, 0xc5, 0xf1, 0x6e, 0x06, 0xdd, 0x85, 0xd9, 0x67, 0x9e, 0x15, 0x18, 0x8f, + 0x7b, 0x58, 0xef, 0x19, 0x07, 0xd8, 0xe3, 0x5e, 0x78, 0xa8, 0x1b, 0xaa, 0x09, 0x92, 0x07, 0x84, + 0x42, 0xfd, 0x56, 0x01, 0x8e, 0x67, 0x5e, 0x52, 0xf9, 0xf8, 0xed, 0xbe, 0x14, 0x6f, 0xf7, 0x61, + 0x6e, 0xfe, 0x14, 0x0f, 0x75, 0xf3, 0xa7, 0x95, 0xa3, 0x85, 0xac, 0xa3, 0xf4, 0x11, 0xca, 0xf8, + 0x4b, 0x05, 0xca, 0x42, 0xa8, 0x91, 0xf7, 0x70, 0x96, 0x06, 0x04, 0x4d, 0xa7, 0x69, 0xd8, 0xb6, + 0x61, 0x3b, 0xba, 0x8f, 0x49, 0x58, 0x34, 0xf2, 0xd6, 0xc3, 0x02, 0xa5, 0x5b, 0x73, 0x3c, 0xbc, + 0x69, 0xd8, 0xce, 0x36, 0x23, 0x42, 0x4d, 0xa8, 0x33, 0x7e, 0x94, 0x15, 0x61, 0x3a, 0x72, 0xaa, + 0x9a, 0xa5, 0x04, 0x84, 0x09, 0x61, 0xe6, 0xab, 0x3f, 0x50, 0x60, 0x2e, 0xa1, 0xd9, 0x5f, 0xbe, + 0x46, 0xfc, 0x6e, 0x11, 0xaa, 0xb1, 0x5e, 0x1e, 0xd1, 0x80, 0x35, 0x98, 0x17, 0xe9, 0x30, 0x3e, + 0x0e, 0xc6, 0xbb, 0x75, 0x32, 0xc7, 0x29, 0xb6, 0x71, 0xc0, 0x22, 0x99, 0x3b, 0x30, 0x67, 0x3c, + 0x35, 0xac, 0x1e, 0xb5, 0xa0, 0xb1, 0x82, 0x84, 0xd9, 0x10, 0x3f, 0x8c, 0x85, 0x58, 0xbb, 0xc7, + 0xba, 0x7b, 0x02, 0x14, 0x37, 0xba, 0x02, 0xe4, 0xfb, 0xb1, 0x9c, 0xab, 0xa1, 0x57, 0x80, 0x7c, + 0x3f, 0xac, 0x8f, 0xe6, 0xa0, 0xd3, 0xbb, 0x4f, 0x3e, 0x7f, 0x30, 0x23, 0xbf, 0x3e, 0x82, 0xfb, + 0x1e, 0x45, 0x25, 0x0a, 0xeb, 0x1b, 0x1f, 0x3a, 0x9e, 0x1e, 0xa7, 0x9f, 0x1e, 0xa1, 0x30, 0x4a, + 0xd1, 0x0e, 0x99, 0xa8, 0xff, 0xa3, 0x00, 0x4a, 0x0f, 0xc8, 0x5f, 0x9a, 0xae, 0x8a, 0x37, 0xbd, + 0x34, 0xb6, 0xea, 0xd4, 0x77, 0xe0, 0x84, 0x86, 0x1d, 0x17, 0xdb, 0xa1, 0xdf, 0x7b, 0xe0, 0x74, + 0x0f, 0x11, 0xb1, 0x9d, 0x84, 0x46, 0x16, 0x3d, 0x5f, 0x07, 0x0e, 0xa0, 0xb1, 0xb6, 0x8f, 0x3b, + 0x4f, 0x68, 0xf4, 0x7f, 0x94, 0x7c, 0x8e, 0x06, 0x94, 0x7b, 0x4e, 0x87, 0x3d, 0xbd, 0xc9, 0xb7, + 0x4a, 0xc4, 0xf7, 0x90, 0x5d, 0xea, 0x53, 0xb0, 0x92, 0x59, 0x2d, 0x97, 0x0a, 0x41, 0xfd, 0x1e, + 0x0e, 0x36, 0x9e, 0x62, 0x3b, 0x0c, 0x08, 0xd5, 0x1f, 0x16, 0x62, 0xa1, 0x27, 0x2d, 0x3a, 0x44, + 0x1e, 0x0c, 0x6a, 0xc3, 0x42, 0x84, 0x82, 0x09, 0x35, 0x7b, 0x08, 0x8f, 0x3d, 0x21, 0x99, 0x7d, + 0x46, 0x46, 0x2b, 0xa1, 0xef, 0xdf, 0x45, 0x4f, 0x7c, 0x84, 0xb0, 0xc4, 0xc9, 0x69, 0x31, 0x79, + 0x72, 0xfa, 0x3e, 0xa0, 0x78, 0x70, 0xc9, 0x57, 0x9b, 0xa5, 0x31, 0x5e, 0x35, 0xa9, 0xbb, 0xc9, + 0xf7, 0x77, 0x72, 0xde, 0x26, 0x99, 0x3c, 0xd2, 0xdb, 0x24, 0xea, 0x2a, 0x9c, 0x24, 0x21, 0xe3, + 0x43, 0x1c, 0x78, 0x56, 0x67, 0x1d, 0xfb, 0x1d, 0xcf, 0x72, 0x03, 0x27, 0x4c, 0xcd, 0x50, 0x75, + 0x38, 0x95, 0x53, 0xce, 0xd5, 0xfd, 0x0e, 0x54, 0xcd, 0x08, 0x9c, 0xb5, 0x72, 0x4f, 0xd2, 0x6a, + 0x71, 0x02, 0xf5, 0x03, 0xa8, 0x27, 0x11, 0x32, 0x33, 0x39, 0x11, 0x94, 0xf6, 0x71, 0xcf, 0x15, + 0x57, 0x53, 0xc8, 0x6f, 0xa2, 0x75, 0x16, 0x8d, 0x3f, 0xc1, 0x07, 0x62, 0x67, 0xb7, 0x42, 0x21, + 0x5f, 0xc4, 0x07, 0x61, 0xdb, 0xa4, 0xcb, 0xf2, 0x9e, 0xd5, 0x49, 0xb6, 0x2d, 0xa3, 0x3c, 0x6a, + 0x1b, 0xe9, 0xb6, 0x3e, 0x03, 0xf3, 0xb6, 0x9d, 0xca, 0xbd, 0x88, 0x4f, 0x69, 0xc1, 0x75, 0x4c, + 0xfe, 0x5b, 0xfd, 0x53, 0x05, 0xe6, 0x53, 0x18, 0x63, 0xee, 0xd6, 0xbf, 0x0a, 0xd3, 0xa2, 0xde, + 0x42, 0x3a, 0xdd, 0x91, 0xf1, 0xd2, 0x04, 0x0a, 0x6a, 0xc1, 0x7c, 0x64, 0xd1, 0x82, 0xae, 0x98, + 0xee, 0x8b, 0x78, 0x28, 0x4e, 0xc5, 0xad, 0x77, 0x12, 0x10, 0xb5, 0x03, 0xf5, 0x24, 0xd6, 0x38, + 0x63, 0xea, 0x50, 0xf2, 0xaa, 0x7f, 0xa7, 0xc0, 0x14, 0x83, 0x65, 0x76, 0xb6, 0xe4, 0xc5, 0x0b, + 0x49, 0x2f, 0xfe, 0x16, 0x54, 0x19, 0x1f, 0x3d, 0xbc, 0x98, 0x34, 0x2b, 0x6f, 0x58, 0x32, 0xd6, + 0x74, 0xb4, 0x42, 0x3f, 0xfc, 0x4d, 0x9a, 0xc1, 0xec, 0x85, 0xc6, 0xda, 0x22, 0xa9, 0xb5, 0x4a, + 0x61, 0xd4, 0xd7, 0x92, 0x78, 0x91, 0x47, 0xe5, 0x23, 0xe6, 0x41, 0x86, 0x75, 0xe1, 0x65, 0x28, + 0x8b, 0x47, 0x97, 0xd1, 0x34, 0x14, 0x77, 0xd6, 0xda, 0xf5, 0x09, 0xf2, 0x63, 0x77, 0xbd, 0x5d, + 0x57, 0x50, 0x19, 0x4a, 0xdb, 0x6b, 0x3b, 0xed, 0x7a, 0xe1, 0x42, 0x1f, 0xea, 0xc9, 0x77, 0x87, + 0xd1, 0x12, 0x1c, 0x6b, 0x6b, 0x5b, 0xed, 0xe6, 0xbd, 0xe6, 0x4e, 0x6b, 0x6b, 0x53, 0x6f, 0x6b, + 0xad, 0x47, 0xcd, 0x9d, 0x8d, 0xfa, 0x04, 0x3a, 0x0b, 0xa7, 0xe2, 0x05, 0xf7, 0xb7, 0xb6, 0x77, + 0xf4, 0x9d, 0x2d, 0x7d, 0x6d, 0x6b, 0x73, 0xa7, 0xd9, 0xda, 0xdc, 0xd0, 0xea, 0x0a, 0x3a, 0x05, + 0x27, 0xe2, 0x28, 0x77, 0x5b, 0xeb, 0x2d, 0x6d, 0x63, 0x8d, 0xfc, 0x6e, 0x3e, 0xa8, 0x17, 0x2e, + 0xbc, 0x0d, 0x35, 0xe9, 0x02, 0x03, 0x11, 0xa9, 0xbd, 0xb5, 0x5e, 0x9f, 0x40, 0x35, 0xa8, 0xc4, + 0xf9, 0x94, 0xa1, 0xb4, 0xb9, 0xb5, 0xbe, 0x51, 0x2f, 0x20, 0x80, 0xa9, 0x9d, 0xa6, 0x76, 0x6f, + 0x63, 0xa7, 0x5e, 0xbc, 0x70, 0x2b, 0xf9, 0x54, 0x02, 0x46, 0xf3, 0x50, 0xdb, 0x6e, 0x6e, 0xae, + 0xdf, 0xdd, 0xfa, 0x8a, 0xae, 0x6d, 0x34, 0xd7, 0x3f, 0xa8, 0x4f, 0xa0, 0x05, 0xa8, 0x0b, 0xd0, + 0xe6, 0xd6, 0x0e, 0x83, 0x2a, 0x17, 0x9e, 0x24, 0xd6, 0x2e, 0x18, 0x1d, 0x87, 0xf9, 0xb0, 0x4a, + 0x7d, 0x4d, 0xdb, 0x68, 0xee, 0x6c, 0x10, 0x49, 0x24, 0xb0, 0xb6, 0xbb, 0xb9, 0xd9, 0xda, 0xbc, + 0x57, 0x57, 0x08, 0xd7, 0x08, 0xbc, 0xf1, 0x95, 0x16, 0x41, 0x2e, 0xc8, 0xc8, 0xbb, 0x9b, 0x5f, + 0xdc, 0xdc, 0xfa, 0xf2, 0x66, 0xbd, 0x78, 0xe1, 0x57, 0xe3, 0x67, 0xeb, 0x91, 0x37, 0x5e, 0x81, + 0xa5, 0x54, 0x8d, 0xfa, 0xc6, 0xa3, 0x8d, 0xcd, 0x9d, 0xfa, 0x84, 0x5c, 0xb8, 0xbd, 0xd3, 0xd4, + 0xa2, 0x42, 0x25, 0x59, 0xb8, 0xd5, 0x6e, 0x87, 0x85, 0x05, 0xb9, 0x70, 0x7d, 0xe3, 0xc1, 0x46, + 0x44, 0x59, 0xbc, 0xf0, 0x22, 0x40, 0x64, 0x75, 0xa8, 0x0a, 0xd3, 0x6b, 0x5b, 0xbb, 0x9b, 0x3b, + 0x1b, 0x5a, 0x7d, 0x02, 0x55, 0x60, 0xf2, 0x5e, 0x73, 0xf7, 0xde, 0x46, 0x5d, 0xb9, 0xf6, 0xfb, + 0x0b, 0xe1, 0xdb, 0xa7, 0xdb, 0xd8, 0xa3, 0xb9, 0xe0, 0xeb, 0x30, 0x2d, 0xde, 0x1e, 0x97, 0x96, + 0xe4, 0xf2, 0x5b, 0xe9, 0x8d, 0x95, 0xcc, 0x32, 0x3e, 0x45, 0x4e, 0xa0, 0x47, 0x74, 0x43, 0x35, + 0xf6, 0xfa, 0xd0, 0x99, 0xc4, 0x26, 0x66, 0xea, 0x91, 0xa3, 0xc6, 0xd9, 0x21, 0x18, 0x21, 0xdf, + 0x0f, 0x60, 0x56, 0x7e, 0xe6, 0x0f, 0x9d, 0x95, 0x37, 0x3b, 0x33, 0x5e, 0x10, 0x6c, 0xa8, 0xc3, + 0x50, 0x42, 0xd6, 0x3a, 0xd4, 0x93, 0xcf, 0xfc, 0x21, 0x29, 0x87, 0x20, 0xe7, 0x15, 0xc1, 0xc6, + 0x8b, 0xc3, 0x91, 0xe2, 0x15, 0xa4, 0x5e, 0xaf, 0x7b, 0x61, 0xf8, 0x7b, 0x60, 0x19, 0x15, 0xe4, + 0x3d, 0x1a, 0xc6, 0x94, 0x23, 0x4f, 0x20, 0x28, 0xf1, 0x60, 0x5c, 0xc6, 0xdb, 0x52, 0xb2, 0x72, + 0xb2, 0xdf, 0x15, 0x52, 0x27, 0xd0, 0xff, 0x83, 0xb9, 0x44, 0xa2, 0x2f, 0x92, 0x08, 0xb3, 0xf3, + 0x97, 0x1b, 0x2f, 0x0c, 0xc5, 0x91, 0x7b, 0x35, 0x9e, 0xcc, 0x9b, 0xec, 0xd5, 0x8c, 0x24, 0xe1, + 0x64, 0xaf, 0x66, 0xe6, 0x02, 0x53, 0x43, 0x94, 0x12, 0x77, 0x65, 0x43, 0xcc, 0x4a, 0x14, 0x6e, + 0x9c, 0x1d, 0x82, 0x11, 0x57, 0x48, 0x22, 0x75, 0x57, 0x56, 0x48, 0x76, 0x52, 0x70, 0xe3, 0x85, + 0xa1, 0x38, 0xc9, 0x9e, 0x8c, 0x52, 0x06, 0xd3, 0x3d, 0x99, 0x4a, 0x5b, 0x4d, 0xf7, 0x64, 0x3a, + 0xe3, 0x90, 0xf7, 0x64, 0x22, 0xc9, 0x4f, 0x1d, 0x9a, 0x80, 0x94, 0xd5, 0x93, 0xd9, 0x49, 0x4a, + 0xea, 0x04, 0x7a, 0x06, 0xcb, 0x79, 0x79, 0x26, 0xe8, 0xe2, 0x21, 0xd2, 0x61, 0x1a, 0xaf, 0x8e, + 0x87, 0x1c, 0x56, 0x8c, 0x01, 0xa5, 0x57, 0x12, 0xe8, 0x25, 0x59, 0xdd, 0x39, 0x2b, 0x95, 0xc6, + 0xcb, 0xa3, 0xd0, 0xc2, 0x6a, 0xee, 0x41, 0x59, 0x64, 0xb0, 0x20, 0xc9, 0x05, 0x26, 0x32, 0x67, + 0x1a, 0x27, 0xb3, 0x0b, 0x43, 0x46, 0x5f, 0x80, 0x12, 0x81, 0xa2, 0xa5, 0x24, 0x9e, 0x60, 0xb0, + 0x9c, 0x2e, 0x08, 0x89, 0x9b, 0x30, 0xc5, 0x52, 0x33, 0x90, 0x74, 0x36, 0x24, 0xa5, 0x8e, 0x34, + 0x1a, 0x59, 0x45, 0x21, 0x8b, 0x36, 0xfb, 0x4f, 0x0e, 0x3c, 0xd3, 0x02, 0xad, 0x26, 0x1f, 0xf8, + 0x95, 0x53, 0x3a, 0x1a, 0xa7, 0x73, 0xcb, 0xe3, 0x36, 0x9b, 0xd8, 0x2d, 0x3b, 0x3b, 0x64, 0x4b, + 0x37, 0xcb, 0x66, 0xb3, 0x37, 0x8a, 0x59, 0xe7, 0xa6, 0x37, 0x92, 0xe5, 0xce, 0xcd, 0xdd, 0xac, + 0x97, 0x3b, 0x37, 0x7f, 0x3f, 0x9a, 0x0d, 0x8d, 0xe4, 0x4b, 0x3d, 0xea, 0xb0, 0x57, 0xb4, 0xb2, + 0x86, 0x46, 0xce, 0xeb, 0x5c, 0xea, 0x04, 0xda, 0x87, 0x63, 0x19, 0xcf, 0x77, 0xa1, 0x97, 0xf3, + 0xfd, 0xaf, 0x54, 0xcb, 0x2b, 0x23, 0xf1, 0xe2, 0x35, 0x65, 0x1c, 0xaf, 0xca, 0x35, 0xe5, 0x9f, + 0xef, 0xca, 0x35, 0x0d, 0x3b, 0xa7, 0xa5, 0x86, 0xc8, 0x7d, 0xc8, 0x89, 0xac, 0x33, 0xc7, 0x0c, + 0x43, 0x4c, 0x79, 0x8c, 0x7d, 0x38, 0x96, 0xb1, 0xda, 0x96, 0x85, 0xcd, 0xdf, 0x05, 0x90, 0x85, + 0x1d, 0xb6, 0x6c, 0x9f, 0x40, 0x5f, 0x05, 0x74, 0x0f, 0x07, 0x72, 0x7c, 0xe6, 0x23, 0x69, 0xa0, + 0x26, 0x17, 0xf6, 0x39, 0xf6, 0x29, 0xad, 0xf0, 0xd5, 0x89, 0xab, 0x0a, 0xb2, 0xd9, 0x5d, 0x82, + 0xd4, 0xba, 0x14, 0x9d, 0x4b, 0x76, 0x5b, 0xde, 0xd2, 0xb6, 0x71, 0x7e, 0x0c, 0xcc, 0xb0, 0x2d, + 0x76, 0xf2, 0xa9, 0x48, 0xb1, 0x34, 0x3a, 0x97, 0x6f, 0x26, 0xf2, 0x72, 0x33, 0x5d, 0x5f, 0xee, + 0xc2, 0x53, 0x9d, 0xb8, 0xf6, 0x3b, 0x45, 0x98, 0x61, 0xc9, 0x0b, 0x3c, 0x4c, 0x7c, 0x08, 0x10, + 0xe5, 0x01, 0xa1, 0x53, 0x49, 0x5e, 0x52, 0x72, 0x55, 0x63, 0x35, 0xaf, 0x38, 0xee, 0x8e, 0x62, + 0xf9, 0x35, 0xb2, 0x3b, 0x4a, 0xa7, 0x0b, 0xc9, 0xee, 0x28, 0x23, 0x31, 0x47, 0x9d, 0x40, 0xef, + 0x43, 0x25, 0x4c, 0xe7, 0x90, 0x3b, 0x39, 0x99, 0x97, 0xd2, 0x38, 0x95, 0x53, 0x1a, 0x97, 0x2e, + 0x96, 0xa5, 0x21, 0x4b, 0x97, 0xce, 0x00, 0x91, 0xa5, 0xcb, 0x4a, 0xef, 0x88, 0xda, 0xcb, 0xce, + 0x51, 0x33, 0xda, 0x2b, 0x1d, 0xab, 0x67, 0xb4, 0x57, 0x3e, 0x80, 0x55, 0x27, 0xee, 0xde, 0xf9, + 0xd1, 0x4f, 0x57, 0x95, 0x1f, 0xff, 0x74, 0x75, 0xe2, 0x57, 0x3e, 0x5a, 0x55, 0x7e, 0xf4, 0xd1, + 0xaa, 0xf2, 0x4f, 0x1f, 0xad, 0x2a, 0x3f, 0xf9, 0x68, 0x55, 0xf9, 0xf6, 0xbf, 0xaf, 0x4e, 0x7c, + 0x55, 0x7d, 0x72, 0xc3, 0xbf, 0x6c, 0x39, 0x57, 0x3a, 0x9e, 0x75, 0xc9, 0x70, 0xad, 0x2b, 0xee, + 0x93, 0xee, 0x15, 0xc3, 0xb5, 0xfc, 0x2b, 0x9c, 0xef, 0x95, 0xa7, 0xaf, 0x3d, 0x9e, 0xa2, 0xff, + 0xa5, 0xe7, 0xf5, 0xff, 0x0b, 0x00, 0x00, 0xff, 0xff, 0xdc, 0x7a, 0xda, 0x2e, 0x5f, 0x69, 0x00, + 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -11761,6 +11781,34 @@ func (m *Mount) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if len(m.GidMappings) > 0 { + for iNdEx := len(m.GidMappings) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.GidMappings[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintApi(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x3a + } + } + if len(m.UidMappings) > 0 { + for iNdEx := len(m.UidMappings) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.UidMappings[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintApi(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x32 + } + } if m.Propagation != 0 { i = encodeVarintApi(dAtA, i, uint64(m.Propagation)) i-- @@ -18955,6 +19003,18 @@ func (m *Mount) Size() (n int) { if m.Propagation != 0 { n += 1 + sovApi(uint64(m.Propagation)) } + if len(m.UidMappings) > 0 { + for _, e := range m.UidMappings { + l = e.Size() + n += 1 + l + sovApi(uint64(l)) + } + } + if len(m.GidMappings) > 0 { + for _, e := range m.GidMappings { + l = e.Size() + n += 1 + l + sovApi(uint64(l)) + } + } return n } @@ -21907,12 +21967,24 @@ func (this *Mount) String() string { if this == nil { return "nil" } + repeatedStringForUidMappings := "[]*IDMapping{" + for _, f := range this.UidMappings { + repeatedStringForUidMappings += strings.Replace(f.String(), "IDMapping", "IDMapping", 1) + "," + } + repeatedStringForUidMappings += "}" + repeatedStringForGidMappings := "[]*IDMapping{" + for _, f := range this.GidMappings { + repeatedStringForGidMappings += strings.Replace(f.String(), "IDMapping", "IDMapping", 1) + "," + } + repeatedStringForGidMappings += "}" s := strings.Join([]string{`&Mount{`, `ContainerPath:` + fmt.Sprintf("%v", this.ContainerPath) + `,`, `HostPath:` + fmt.Sprintf("%v", this.HostPath) + `,`, `Readonly:` + fmt.Sprintf("%v", this.Readonly) + `,`, `SelinuxRelabel:` + fmt.Sprintf("%v", this.SelinuxRelabel) + `,`, `Propagation:` + fmt.Sprintf("%v", this.Propagation) + `,`, + `UidMappings:` + repeatedStringForUidMappings + `,`, + `GidMappings:` + repeatedStringForGidMappings + `,`, `}`, }, "") return s @@ -24666,6 +24738,74 @@ func (m *Mount) Unmarshal(dAtA []byte) error { break } } + case 6: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field UidMappings", 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.UidMappings = append(m.UidMappings, &IDMapping{}) + if err := m.UidMappings[len(m.UidMappings)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 7: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field GidMappings", 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.GidMappings = append(m.GidMappings, &IDMapping{}) + if err := m.GidMappings[len(m.GidMappings)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipApi(dAtA[iNdEx:]) diff --git a/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.proto b/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.proto index 4293af2d118..3e20c42c609 100644 --- a/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.proto +++ b/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.proto @@ -222,6 +222,10 @@ message Mount { bool selinux_relabel = 4; // Requested propagation mode. MountPropagation propagation = 5; + // UidMappings specifies the runtime UID mappings for the mount. + repeated IDMapping uidMappings = 6; + // GidMappings specifies the runtime GID mappings for the mount. + repeated IDMapping gidMappings = 7; } // IDMapping describes host to container ID mappings for a pod sandbox.