diff --git a/api/openapi-spec/swagger.json b/api/openapi-spec/swagger.json index 6b19ecb0585..9c8017283bb 100644 --- a/api/openapi-spec/swagger.json +++ b/api/openapi-spec/swagger.json @@ -9924,6 +9924,20 @@ }, "type": "array" }, + "topologySpreadConstraints": { + "description": "TopologySpreadConstraints describes how a group of pods ought to spread across topology domains. Scheduler will schedule pods in a way which abides by the constraints. This field is alpha-level and is only honored by clusters that enables the EvenPodsSpread feature. All topologySpreadConstraints are ANDed.", + "items": { + "$ref": "#/definitions/io.k8s.api.core.v1.TopologySpreadConstraint" + }, + "type": "array", + "x-kubernetes-list-map-keys": [ + "topologyKey", + "whenUnsatisfiable" + ], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "topologyKey", + "x-kubernetes-patch-strategy": "merge" + }, "volumes": { "description": "List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes", "items": { @@ -11494,6 +11508,34 @@ }, "type": "object" }, + "io.k8s.api.core.v1.TopologySpreadConstraint": { + "description": "TopologySpreadConstraint specifies how to spread matching pods among the given topology.", + "properties": { + "labelSelector": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector", + "description": "LabelSelector is used to find matching pods. Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain." + }, + "maxSkew": { + "description": "MaxSkew describes the degree to which pods may be unevenly distributed. It's the maximum permitted difference between the number of matching pods in any two topology domains of a given topology type. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 1/1/0: | zone1 | zone2 | zone3 | | P | P | | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 1/1/1; scheduling it onto zone1(zone2) would make the ActualSkew(2-0) on zone1(zone2) violate MaxSkew(1). - if MaxSkew is 2, incoming pod can be scheduled onto any zone. It's a required field. Default value is 1 and 0 is not allowed.", + "format": "int32", + "type": "integer" + }, + "topologyKey": { + "description": "TopologyKey is the key of node labels. Nodes that have a label with this key and identical values are considered to be in the same topology. We consider each as a \"bucket\", and try to put balanced number of pods into each bucket. It's a required field.", + "type": "string" + }, + "whenUnsatisfiable": { + "description": "WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy the spread constraint. - DoNotSchedule (default) tells the scheduler not to schedule it - ScheduleAnyway tells the scheduler to still schedule it It's considered as \"Unsatisfiable\" if and only if placing incoming pod on any topology violates \"MaxSkew\". For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P | P | P | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler won't make it *more* imbalanced. It's a required field.", + "type": "string" + } + }, + "required": [ + "maxSkew", + "topologyKey", + "whenUnsatisfiable" + ], + "type": "object" + }, "io.k8s.api.core.v1.TypedLocalObjectReference": { "description": "TypedLocalObjectReference contains enough information to let you locate the typed referenced object inside the same namespace.", "properties": { diff --git a/pkg/api/pod/util.go b/pkg/api/pod/util.go index 35417fec68e..70c10d4f775 100644 --- a/pkg/api/pod/util.go +++ b/pkg/api/pod/util.go @@ -401,6 +401,11 @@ func dropDisabledFields( // does not specify any values for these fields. podSpec.PreemptionPolicy = nil } + + if !utilfeature.DefaultFeatureGate.Enabled(features.EvenPodsSpread) && !topologySpreadConstraintsInUse(oldPodSpec) { + // Set TopologySpreadConstraints to nil only if feature is disabled and it is not used + podSpec.TopologySpreadConstraints = nil + } } // dropDisabledRunAsGroupField removes disabled fields from PodSpec related @@ -562,7 +567,14 @@ func overheadInUse(podSpec *api.PodSpec) bool { return true } return false +} +// topologySpreadConstraintsInUse returns true if the pod spec is non-nil and has a TopologySpreadConstraints slice +func topologySpreadConstraintsInUse(podSpec *api.PodSpec) bool { + if podSpec == nil { + return false + } + return len(podSpec.TopologySpreadConstraints) > 0 } // procMountInUse returns true if the pod spec is non-nil and has a SecurityContext's ProcMount field set to a non-default value diff --git a/pkg/apis/core/types.go b/pkg/apis/core/types.go index 70e4e710842..634642c5162 100644 --- a/pkg/apis/core/types.go +++ b/pkg/apis/core/types.go @@ -2715,6 +2715,13 @@ type PodSpec struct { // If not specified, the default is true. // +optional EnableServiceLinks *bool + // TopologySpreadConstraints describes how a group of pods ought to spread across topology + // domains. Scheduler will schedule pods in a way which abides by the constraints. + // This field is alpha-level and is only honored by clusters that enables the EvenPodsSpread + // feature. + // All topologySpreadConstraints are ANDed. + // +optional + TopologySpreadConstraints []TopologySpreadConstraint } // HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the @@ -4834,3 +4841,64 @@ const ( // DefaultHardPodAffinityWeight defines the weight of the implicit PreferredDuringScheduling affinity rule. DefaultHardPodAffinitySymmetricWeight int32 = 1 ) + +type UnsatisfiableConstraintAction string + +const ( + // DoNotSchedule instructs the scheduler not to schedule the pod + // when constraints are not satisfied. + DoNotSchedule UnsatisfiableConstraintAction = "DoNotSchedule" + // ScheduleAnyway instructs the scheduler to schedule the pod + // even if constraints are not satisfied. + ScheduleAnyway UnsatisfiableConstraintAction = "ScheduleAnyway" +) + +// TopologySpreadConstraint specifies how to spread matching pods among the given topology. +type TopologySpreadConstraint struct { + // MaxSkew describes the degree to which pods may be unevenly distributed. + // It's the maximum permitted difference between the number of matching pods in + // any two topology domains of a given topology type. + // For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same + // labelSelector spread as 1/1/0: + // +-------+-------+-------+ + // | zone1 | zone2 | zone3 | + // +-------+-------+-------+ + // | P | P | | + // +-------+-------+-------+ + // - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 1/1/1; + // scheduling it onto zone1(zone2) would make the ActualSkew(2-0) on zone1(zone2) + // violate MaxSkew(1). + // - if MaxSkew is 2, incoming pod can be scheduled onto any zone. + // It's a required field. Default value is 1 and 0 is not allowed. + MaxSkew int32 + // TopologyKey is the key of node labels. Nodes that have a label with this key + // and identical values are considered to be in the same topology. + // We consider each as a "bucket", and try to put balanced number + // of pods into each bucket. + // It's a required field. + TopologyKey string + // WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy + // the spread constraint. + // - DoNotSchedule (default) tells the scheduler not to schedule it + // - ScheduleAnyway tells the scheduler to still schedule it + // It's considered as "Unsatisfiable" if and only if placing incoming pod on any + // topology violates "MaxSkew". + // For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same + // labelSelector spread as 3/1/1: + // +-------+-------+-------+ + // | zone1 | zone2 | zone3 | + // +-------+-------+-------+ + // | P P P | P | P | + // +-------+-------+-------+ + // If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled + // to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies + // MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler + // won't make it *more* imbalanced. + // It's a required field. + WhenUnsatisfiable UnsatisfiableConstraintAction + // LabelSelector is used to find matching pods. + // Pods that match this label selector are counted to determine the number of pods + // in their corresponding topology domain. + // +optional + LabelSelector *metav1.LabelSelector +} diff --git a/pkg/apis/core/v1/zz_generated.conversion.go b/pkg/apis/core/v1/zz_generated.conversion.go index b827b466deb..258f23dbc6b 100644 --- a/pkg/apis/core/v1/zz_generated.conversion.go +++ b/pkg/apis/core/v1/zz_generated.conversion.go @@ -1930,6 +1930,16 @@ func RegisterConversions(s *runtime.Scheme) error { }); err != nil { return err } + if err := s.AddGeneratedConversionFunc((*v1.TopologySpreadConstraint)(nil), (*core.TopologySpreadConstraint)(nil), func(a, b interface{}, scope conversion.Scope) error { + return Convert_v1_TopologySpreadConstraint_To_core_TopologySpreadConstraint(a.(*v1.TopologySpreadConstraint), b.(*core.TopologySpreadConstraint), scope) + }); err != nil { + return err + } + if err := s.AddGeneratedConversionFunc((*core.TopologySpreadConstraint)(nil), (*v1.TopologySpreadConstraint)(nil), func(a, b interface{}, scope conversion.Scope) error { + return Convert_core_TopologySpreadConstraint_To_v1_TopologySpreadConstraint(a.(*core.TopologySpreadConstraint), b.(*v1.TopologySpreadConstraint), scope) + }); err != nil { + return err + } if err := s.AddGeneratedConversionFunc((*v1.TypedLocalObjectReference)(nil), (*core.TypedLocalObjectReference)(nil), func(a, b interface{}, scope conversion.Scope) error { return Convert_v1_TypedLocalObjectReference_To_core_TypedLocalObjectReference(a.(*v1.TypedLocalObjectReference), b.(*core.TypedLocalObjectReference), scope) }); err != nil { @@ -5661,6 +5671,7 @@ func autoConvert_v1_PodSpec_To_core_PodSpec(in *v1.PodSpec, out *core.PodSpec, s out.EnableServiceLinks = (*bool)(unsafe.Pointer(in.EnableServiceLinks)) out.PreemptionPolicy = (*core.PreemptionPolicy)(unsafe.Pointer(in.PreemptionPolicy)) out.Overhead = *(*core.ResourceList)(unsafe.Pointer(&in.Overhead)) + out.TopologySpreadConstraints = *(*[]core.TopologySpreadConstraint)(unsafe.Pointer(&in.TopologySpreadConstraints)) return nil } @@ -5710,6 +5721,7 @@ func autoConvert_core_PodSpec_To_v1_PodSpec(in *core.PodSpec, out *v1.PodSpec, s out.RuntimeClassName = (*string)(unsafe.Pointer(in.RuntimeClassName)) out.Overhead = *(*v1.ResourceList)(unsafe.Pointer(&in.Overhead)) out.EnableServiceLinks = (*bool)(unsafe.Pointer(in.EnableServiceLinks)) + out.TopologySpreadConstraints = *(*[]v1.TopologySpreadConstraint)(unsafe.Pointer(&in.TopologySpreadConstraints)) return nil } @@ -7348,6 +7360,32 @@ func Convert_core_TopologySelectorTerm_To_v1_TopologySelectorTerm(in *core.Topol return autoConvert_core_TopologySelectorTerm_To_v1_TopologySelectorTerm(in, out, s) } +func autoConvert_v1_TopologySpreadConstraint_To_core_TopologySpreadConstraint(in *v1.TopologySpreadConstraint, out *core.TopologySpreadConstraint, s conversion.Scope) error { + out.MaxSkew = in.MaxSkew + out.TopologyKey = in.TopologyKey + out.WhenUnsatisfiable = core.UnsatisfiableConstraintAction(in.WhenUnsatisfiable) + out.LabelSelector = (*metav1.LabelSelector)(unsafe.Pointer(in.LabelSelector)) + return nil +} + +// Convert_v1_TopologySpreadConstraint_To_core_TopologySpreadConstraint is an autogenerated conversion function. +func Convert_v1_TopologySpreadConstraint_To_core_TopologySpreadConstraint(in *v1.TopologySpreadConstraint, out *core.TopologySpreadConstraint, s conversion.Scope) error { + return autoConvert_v1_TopologySpreadConstraint_To_core_TopologySpreadConstraint(in, out, s) +} + +func autoConvert_core_TopologySpreadConstraint_To_v1_TopologySpreadConstraint(in *core.TopologySpreadConstraint, out *v1.TopologySpreadConstraint, s conversion.Scope) error { + out.MaxSkew = in.MaxSkew + out.TopologyKey = in.TopologyKey + out.WhenUnsatisfiable = v1.UnsatisfiableConstraintAction(in.WhenUnsatisfiable) + out.LabelSelector = (*metav1.LabelSelector)(unsafe.Pointer(in.LabelSelector)) + return nil +} + +// Convert_core_TopologySpreadConstraint_To_v1_TopologySpreadConstraint is an autogenerated conversion function. +func Convert_core_TopologySpreadConstraint_To_v1_TopologySpreadConstraint(in *core.TopologySpreadConstraint, out *v1.TopologySpreadConstraint, s conversion.Scope) error { + return autoConvert_core_TopologySpreadConstraint_To_v1_TopologySpreadConstraint(in, out, s) +} + func autoConvert_v1_TypedLocalObjectReference_To_core_TypedLocalObjectReference(in *v1.TypedLocalObjectReference, out *core.TypedLocalObjectReference, s conversion.Scope) error { out.APIGroup = (*string)(unsafe.Pointer(in.APIGroup)) out.Kind = in.Kind diff --git a/pkg/apis/core/validation/validation.go b/pkg/apis/core/validation/validation.go index afc92112093..e0e5cda3a8f 100644 --- a/pkg/apis/core/validation/validation.go +++ b/pkg/apis/core/validation/validation.go @@ -3091,6 +3091,7 @@ func ValidatePodSpec(spec *core.PodSpec, fldPath *field.Path) field.ErrorList { allErrs = append(allErrs, validateAffinity(spec.Affinity, fldPath.Child("affinity"))...) allErrs = append(allErrs, validatePodDNSConfig(spec.DNSConfig, &spec.DNSPolicy, fldPath.Child("dnsConfig"))...) allErrs = append(allErrs, validateReadinessGates(spec.ReadinessGates, fldPath.Child("readinessGates"))...) + allErrs = append(allErrs, validateTopologySpreadConstraints(spec.TopologySpreadConstraints, fldPath.Child("topologySpreadConstraints"))...) if len(spec.ServiceAccountName) > 0 { for _, msg := range ValidateServiceAccountName(spec.ServiceAccountName, false) { allErrs = append(allErrs, field.Invalid(fldPath.Child("serviceAccountName"), spec.ServiceAccountName, msg)) @@ -5561,3 +5562,78 @@ func ValidateProcMountType(fldPath *field.Path, procMountType core.ProcMountType return field.NotSupported(fldPath, procMountType, []string{string(core.DefaultProcMount), string(core.UnmaskedProcMount)}) } } + +var ( + supportedScheduleActions = sets.NewString(string(core.DoNotSchedule), string(core.ScheduleAnyway)) +) + +type spreadConstraintPair struct { + topologyKey string + whenUnsatisfiable core.UnsatisfiableConstraintAction +} + +// validateTopologySpreadConstraints validates given TopologySpreadConstraints. +func validateTopologySpreadConstraints(constraints []core.TopologySpreadConstraint, fldPath *field.Path) field.ErrorList { + allErrs := field.ErrorList{} + + var existingConstraintPairs []spreadConstraintPair + for i, constraint := range constraints { + subFldPath := fldPath.Index(i) + if err := ValidateMaxSkew(subFldPath.Child("maxSkew"), constraint.MaxSkew); err != nil { + allErrs = append(allErrs, err) + } + if err := ValidateTopologyKey(subFldPath.Child("topologyKey"), constraint.TopologyKey); err != nil { + allErrs = append(allErrs, err) + } + if err := ValidateWhenUnsatisfiable(subFldPath.Child("whenUnsatisfiable"), constraint.WhenUnsatisfiable); err != nil { + allErrs = append(allErrs, err) + } + // tuple {topologyKey, whenUnsatisfiable} denotes one kind of spread constraint + pair := spreadConstraintPair{ + topologyKey: constraint.TopologyKey, + whenUnsatisfiable: constraint.WhenUnsatisfiable, + } + if err := ValidateSpreadConstraintPair(subFldPath.Child("{topologyKey, whenUnsatisfiable}"), pair, existingConstraintPairs); err != nil { + allErrs = append(allErrs, err) + } else { + existingConstraintPairs = append(existingConstraintPairs, pair) + } + } + + return allErrs +} + +// ValidateMaxSkew tests that the argument is a valid MaxSkew. +func ValidateMaxSkew(fldPath *field.Path, maxSkew int32) *field.Error { + if maxSkew <= 0 { + return field.Invalid(fldPath, maxSkew, isNotPositiveErrorMsg) + } + return nil +} + +// ValidateTopologyKey tests that the argument is a valid TopologyKey. +func ValidateTopologyKey(fldPath *field.Path, topologyKey string) *field.Error { + if len(topologyKey) == 0 { + return field.Required(fldPath, "can not be empty") + } + return nil +} + +// ValidateWhenUnsatisfiable tests that the argument is a valid UnsatisfiableConstraintAction. +func ValidateWhenUnsatisfiable(fldPath *field.Path, action core.UnsatisfiableConstraintAction) *field.Error { + if !supportedScheduleActions.Has(string(action)) { + return field.NotSupported(fldPath, action, supportedScheduleActions.List()) + } + return nil +} + +// ValidateSpreadConstraintPair tests that if `pair` exists in `existingConstraintPairs`. +func ValidateSpreadConstraintPair(fldPath *field.Path, pair spreadConstraintPair, existingConstraintPairs []spreadConstraintPair) *field.Error { + for _, existingPair := range existingConstraintPairs { + if pair.topologyKey == existingPair.topologyKey && + pair.whenUnsatisfiable == existingPair.whenUnsatisfiable { + return field.Duplicate(fldPath, pair) + } + } + return nil +} diff --git a/pkg/apis/core/validation/validation_test.go b/pkg/apis/core/validation/validation_test.go index b544631af59..2e226a68d18 100644 --- a/pkg/apis/core/validation/validation_test.go +++ b/pkg/apis/core/validation/validation_test.go @@ -13663,7 +13663,6 @@ func testDataSourceInSpec(name string, kind string, apiGroup string) *core.Persi } func TestAlphaVolumePVCDataSource(t *testing.T) { - testCases := []struct { testName string claimSpec core.PersistentVolumeClaimSpec @@ -13704,7 +13703,104 @@ func TestAlphaVolumePVCDataSource(t *testing.T) { if errs := ValidatePersistentVolumeClaimSpec(&tc.claimSpec, field.NewPath("spec")); len(errs) != 0 { t.Errorf("expected success: %v", errs) } + } + } +} +func TestValidateTopologySpreadConstraints(t *testing.T) { + defer featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.EvenPodsSpread, true)() + testCases := []struct { + name string + constraints []core.TopologySpreadConstraint + errtype field.ErrorType + errfield string + }{ + { + name: "all required fields ok", + constraints: []core.TopologySpreadConstraint{ + {MaxSkew: 1, TopologyKey: "k8s.io/zone", WhenUnsatisfiable: core.DoNotSchedule}, + }, + }, + { + name: "missing MaxSkew", + constraints: []core.TopologySpreadConstraint{ + {TopologyKey: "k8s.io/zone", WhenUnsatisfiable: core.DoNotSchedule}, + }, + errtype: field.ErrorTypeInvalid, + errfield: "maxSkew", + }, + { + name: "invalid MaxSkew", + constraints: []core.TopologySpreadConstraint{ + {MaxSkew: 0, TopologyKey: "k8s.io/zone", WhenUnsatisfiable: core.DoNotSchedule}, + }, + errtype: field.ErrorTypeInvalid, + errfield: "maxSkew", + }, + { + name: "missing TopologyKey", + constraints: []core.TopologySpreadConstraint{ + {MaxSkew: 1, WhenUnsatisfiable: core.DoNotSchedule}, + }, + errtype: field.ErrorTypeRequired, + errfield: "topologyKey", + }, + { + name: "missing scheduling mode", + constraints: []core.TopologySpreadConstraint{ + {MaxSkew: 1, TopologyKey: "k8s.io/zone"}, + }, + errtype: field.ErrorTypeNotSupported, + errfield: "whenUnsatisfiable", + }, + { + name: "unsupported scheduling mode", + constraints: []core.TopologySpreadConstraint{ + {MaxSkew: 1, TopologyKey: "k8s.io/zone", WhenUnsatisfiable: core.UnsatisfiableConstraintAction("N/A")}, + }, + errtype: field.ErrorTypeNotSupported, + errfield: "whenUnsatisfiable", + }, + { + name: "multiple constraints ok with all required fields", + constraints: []core.TopologySpreadConstraint{ + {MaxSkew: 1, TopologyKey: "k8s.io/zone", WhenUnsatisfiable: core.DoNotSchedule}, + {MaxSkew: 2, TopologyKey: "k8s.io/node", WhenUnsatisfiable: core.ScheduleAnyway}, + }, + }, + { + name: "multiple constraints missing TopologyKey on partial ones", + constraints: []core.TopologySpreadConstraint{ + {MaxSkew: 1, TopologyKey: "k8s.io/zone", WhenUnsatisfiable: core.DoNotSchedule}, + {MaxSkew: 2, WhenUnsatisfiable: core.ScheduleAnyway}, + }, + errtype: field.ErrorTypeRequired, + errfield: "topologyKey", + }, + { + name: "duplicate constraints", + constraints: []core.TopologySpreadConstraint{ + {MaxSkew: 1, TopologyKey: "k8s.io/zone", WhenUnsatisfiable: core.DoNotSchedule}, + {MaxSkew: 2, TopologyKey: "k8s.io/zone", WhenUnsatisfiable: core.DoNotSchedule}, + }, + errtype: field.ErrorTypeDuplicate, + errfield: "{topologyKey, whenUnsatisfiable}", + }, + } + + for i, tc := range testCases { + errs := validateTopologySpreadConstraints(tc.constraints, field.NewPath("field")) + + if len(errs) > 0 && tc.errtype == "" { + t.Errorf("[%d: %q] unexpected error(s): %v", i, tc.name, errs) + } else if len(errs) == 0 && tc.errtype != "" { + t.Errorf("[%d: %q] expected error type %v", i, tc.name, tc.errtype) + } else if len(errs) >= 1 { + if errs[0].Type != tc.errtype { + t.Errorf("[%d: %q] expected error type %v, got %v", i, tc.name, tc.errtype, errs[0].Type) + } else if !strings.HasSuffix(errs[0].Field, "."+tc.errfield) { + t.Errorf("[%d: %q] expected error on field %q, got %q", i, tc.name, tc.errfield, errs[0].Field) + } } } } diff --git a/pkg/apis/core/zz_generated.deepcopy.go b/pkg/apis/core/zz_generated.deepcopy.go index 82d18758f14..66782f374bb 100644 --- a/pkg/apis/core/zz_generated.deepcopy.go +++ b/pkg/apis/core/zz_generated.deepcopy.go @@ -3663,6 +3663,13 @@ func (in *PodSpec) DeepCopyInto(out *PodSpec) { *out = new(bool) **out = **in } + if in.TopologySpreadConstraints != nil { + in, out := &in.TopologySpreadConstraints, &out.TopologySpreadConstraints + *out = make([]TopologySpreadConstraint, len(*in)) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } + } return } @@ -5189,6 +5196,27 @@ func (in *TopologySelectorTerm) DeepCopy() *TopologySelectorTerm { return out } +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *TopologySpreadConstraint) DeepCopyInto(out *TopologySpreadConstraint) { + *out = *in + if in.LabelSelector != nil { + in, out := &in.LabelSelector, &out.LabelSelector + *out = new(v1.LabelSelector) + (*in).DeepCopyInto(*out) + } + return +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TopologySpreadConstraint. +func (in *TopologySpreadConstraint) DeepCopy() *TopologySpreadConstraint { + if in == nil { + return nil + } + out := new(TopologySpreadConstraint) + in.DeepCopyInto(out) + return out +} + // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *TypedLocalObjectReference) DeepCopyInto(out *TypedLocalObjectReference) { *out = *in diff --git a/pkg/features/kube_features.go b/pkg/features/kube_features.go index 92178d129f1..0af37afec0c 100644 --- a/pkg/features/kube_features.go +++ b/pkg/features/kube_features.go @@ -471,6 +471,12 @@ const ( // // Enables ipv6 dual stack IPv6DualStack featuregate.Feature = "IPv6DualStack" + + // owner: @Huang-Wei + // alpha: v1.16 + // + // Schedule pods evenly across available topology domains. + EvenPodsSpread featuregate.Feature = "EvenPodsSpread" ) func init() { @@ -549,6 +555,7 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS VolumePVCDataSource: {Default: false, PreRelease: featuregate.Alpha}, PodOverhead: {Default: false, PreRelease: featuregate.Alpha}, IPv6DualStack: {Default: false, PreRelease: featuregate.Alpha}, + EvenPodsSpread: {Default: false, PreRelease: featuregate.Alpha}, // inherited features from generic apiserver, relisted here to get a conflict if it is changed // unintentionally on either side: diff --git a/staging/src/k8s.io/api/core/v1/generated.pb.go b/staging/src/k8s.io/api/core/v1/generated.pb.go index f1bb5c02332..26a4912d422 100644 --- a/staging/src/k8s.io/api/core/v1/generated.pb.go +++ b/staging/src/k8s.io/api/core/v1/generated.pb.go @@ -213,6 +213,7 @@ limitations under the License. Toleration TopologySelectorLabelRequirement TopologySelectorTerm + TopologySpreadConstraint TypedLocalObjectReference Volume VolumeDevice @@ -1074,52 +1075,58 @@ func (m *TopologySelectorTerm) Reset() { *m = TopologySelecto func (*TopologySelectorTerm) ProtoMessage() {} func (*TopologySelectorTerm) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{188} } +func (m *TopologySpreadConstraint) Reset() { *m = TopologySpreadConstraint{} } +func (*TopologySpreadConstraint) ProtoMessage() {} +func (*TopologySpreadConstraint) Descriptor() ([]byte, []int) { + return fileDescriptorGenerated, []int{189} +} + func (m *TypedLocalObjectReference) Reset() { *m = TypedLocalObjectReference{} } func (*TypedLocalObjectReference) ProtoMessage() {} func (*TypedLocalObjectReference) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{189} + return fileDescriptorGenerated, []int{190} } func (m *Volume) Reset() { *m = Volume{} } func (*Volume) ProtoMessage() {} -func (*Volume) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{190} } +func (*Volume) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{191} } func (m *VolumeDevice) Reset() { *m = VolumeDevice{} } func (*VolumeDevice) ProtoMessage() {} -func (*VolumeDevice) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{191} } +func (*VolumeDevice) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{192} } func (m *VolumeMount) Reset() { *m = VolumeMount{} } func (*VolumeMount) ProtoMessage() {} -func (*VolumeMount) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{192} } +func (*VolumeMount) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{193} } func (m *VolumeNodeAffinity) Reset() { *m = VolumeNodeAffinity{} } func (*VolumeNodeAffinity) ProtoMessage() {} -func (*VolumeNodeAffinity) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{193} } +func (*VolumeNodeAffinity) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{194} } func (m *VolumeProjection) Reset() { *m = VolumeProjection{} } func (*VolumeProjection) ProtoMessage() {} -func (*VolumeProjection) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{194} } +func (*VolumeProjection) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{195} } func (m *VolumeSource) Reset() { *m = VolumeSource{} } func (*VolumeSource) ProtoMessage() {} -func (*VolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{195} } +func (*VolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{196} } func (m *VsphereVirtualDiskVolumeSource) Reset() { *m = VsphereVirtualDiskVolumeSource{} } func (*VsphereVirtualDiskVolumeSource) ProtoMessage() {} func (*VsphereVirtualDiskVolumeSource) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{196} + return fileDescriptorGenerated, []int{197} } func (m *WeightedPodAffinityTerm) Reset() { *m = WeightedPodAffinityTerm{} } func (*WeightedPodAffinityTerm) ProtoMessage() {} func (*WeightedPodAffinityTerm) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{197} + return fileDescriptorGenerated, []int{198} } func (m *WindowsSecurityContextOptions) Reset() { *m = WindowsSecurityContextOptions{} } func (*WindowsSecurityContextOptions) ProtoMessage() {} func (*WindowsSecurityContextOptions) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{198} + return fileDescriptorGenerated, []int{199} } func init() { @@ -1312,6 +1319,7 @@ func init() { proto.RegisterType((*Toleration)(nil), "k8s.io.api.core.v1.Toleration") proto.RegisterType((*TopologySelectorLabelRequirement)(nil), "k8s.io.api.core.v1.TopologySelectorLabelRequirement") proto.RegisterType((*TopologySelectorTerm)(nil), "k8s.io.api.core.v1.TopologySelectorTerm") + proto.RegisterType((*TopologySpreadConstraint)(nil), "k8s.io.api.core.v1.TopologySpreadConstraint") proto.RegisterType((*TypedLocalObjectReference)(nil), "k8s.io.api.core.v1.TypedLocalObjectReference") proto.RegisterType((*Volume)(nil), "k8s.io.api.core.v1.Volume") proto.RegisterType((*VolumeDevice)(nil), "k8s.io.api.core.v1.VolumeDevice") @@ -7931,6 +7939,20 @@ func (m *PodSpec) MarshalTo(dAtA []byte) (int, error) { i += n155 } } + if len(m.TopologySpreadConstraints) > 0 { + for _, msg := range m.TopologySpreadConstraints { + dAtA[i] = 0x8a + i++ + dAtA[i] = 0x2 + i++ + i = encodeVarintGenerated(dAtA, i, uint64(msg.Size())) + n, err := msg.MarshalTo(dAtA[i:]) + if err != nil { + return 0, err + } + i += n + } + } return i, nil } @@ -10626,6 +10648,45 @@ func (m *TopologySelectorTerm) MarshalTo(dAtA []byte) (int, error) { return i, nil } +func (m *TopologySpreadConstraint) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalTo(dAtA) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *TopologySpreadConstraint) MarshalTo(dAtA []byte) (int, error) { + var i int + _ = i + var l int + _ = l + dAtA[i] = 0x8 + i++ + i = encodeVarintGenerated(dAtA, i, uint64(m.MaxSkew)) + dAtA[i] = 0x12 + i++ + i = encodeVarintGenerated(dAtA, i, uint64(len(m.TopologyKey))) + i += copy(dAtA[i:], m.TopologyKey) + dAtA[i] = 0x1a + i++ + i = encodeVarintGenerated(dAtA, i, uint64(len(m.WhenUnsatisfiable))) + i += copy(dAtA[i:], m.WhenUnsatisfiable) + if m.LabelSelector != nil { + dAtA[i] = 0x22 + i++ + i = encodeVarintGenerated(dAtA, i, uint64(m.LabelSelector.Size())) + n213, err := m.LabelSelector.MarshalTo(dAtA[i:]) + if err != nil { + return 0, err + } + i += n213 + } + return i, nil +} + func (m *TypedLocalObjectReference) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -10680,11 +10741,11 @@ func (m *Volume) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x12 i++ i = encodeVarintGenerated(dAtA, i, uint64(m.VolumeSource.Size())) - n213, err := m.VolumeSource.MarshalTo(dAtA[i:]) + n214, err := m.VolumeSource.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n213 + i += n214 return i, nil } @@ -10781,11 +10842,11 @@ func (m *VolumeNodeAffinity) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintGenerated(dAtA, i, uint64(m.Required.Size())) - n214, err := m.Required.MarshalTo(dAtA[i:]) + n215, err := m.Required.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n214 + i += n215 } return i, nil } @@ -10809,42 +10870,42 @@ func (m *VolumeProjection) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintGenerated(dAtA, i, uint64(m.Secret.Size())) - n215, err := m.Secret.MarshalTo(dAtA[i:]) - if err != nil { - return 0, err - } - i += n215 - } - if m.DownwardAPI != nil { - dAtA[i] = 0x12 - i++ - i = encodeVarintGenerated(dAtA, i, uint64(m.DownwardAPI.Size())) - n216, err := m.DownwardAPI.MarshalTo(dAtA[i:]) + n216, err := m.Secret.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n216 } - if m.ConfigMap != nil { - dAtA[i] = 0x1a + if m.DownwardAPI != nil { + dAtA[i] = 0x12 i++ - i = encodeVarintGenerated(dAtA, i, uint64(m.ConfigMap.Size())) - n217, err := m.ConfigMap.MarshalTo(dAtA[i:]) + i = encodeVarintGenerated(dAtA, i, uint64(m.DownwardAPI.Size())) + n217, err := m.DownwardAPI.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n217 } - if m.ServiceAccountToken != nil { - dAtA[i] = 0x22 + if m.ConfigMap != nil { + dAtA[i] = 0x1a i++ - i = encodeVarintGenerated(dAtA, i, uint64(m.ServiceAccountToken.Size())) - n218, err := m.ServiceAccountToken.MarshalTo(dAtA[i:]) + i = encodeVarintGenerated(dAtA, i, uint64(m.ConfigMap.Size())) + n218, err := m.ConfigMap.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n218 } + if m.ServiceAccountToken != nil { + dAtA[i] = 0x22 + i++ + i = encodeVarintGenerated(dAtA, i, uint64(m.ServiceAccountToken.Size())) + n219, err := m.ServiceAccountToken.MarshalTo(dAtA[i:]) + if err != nil { + return 0, err + } + i += n219 + } return i, nil } @@ -10867,163 +10928,163 @@ func (m *VolumeSource) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintGenerated(dAtA, i, uint64(m.HostPath.Size())) - n219, err := m.HostPath.MarshalTo(dAtA[i:]) - if err != nil { - return 0, err - } - i += n219 - } - if m.EmptyDir != nil { - dAtA[i] = 0x12 - i++ - i = encodeVarintGenerated(dAtA, i, uint64(m.EmptyDir.Size())) - n220, err := m.EmptyDir.MarshalTo(dAtA[i:]) + n220, err := m.HostPath.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n220 } - if m.GCEPersistentDisk != nil { - dAtA[i] = 0x1a + if m.EmptyDir != nil { + dAtA[i] = 0x12 i++ - i = encodeVarintGenerated(dAtA, i, uint64(m.GCEPersistentDisk.Size())) - n221, err := m.GCEPersistentDisk.MarshalTo(dAtA[i:]) + i = encodeVarintGenerated(dAtA, i, uint64(m.EmptyDir.Size())) + n221, err := m.EmptyDir.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n221 } - if m.AWSElasticBlockStore != nil { - dAtA[i] = 0x22 + if m.GCEPersistentDisk != nil { + dAtA[i] = 0x1a i++ - i = encodeVarintGenerated(dAtA, i, uint64(m.AWSElasticBlockStore.Size())) - n222, err := m.AWSElasticBlockStore.MarshalTo(dAtA[i:]) + i = encodeVarintGenerated(dAtA, i, uint64(m.GCEPersistentDisk.Size())) + n222, err := m.GCEPersistentDisk.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n222 } - if m.GitRepo != nil { - dAtA[i] = 0x2a + if m.AWSElasticBlockStore != nil { + dAtA[i] = 0x22 i++ - i = encodeVarintGenerated(dAtA, i, uint64(m.GitRepo.Size())) - n223, err := m.GitRepo.MarshalTo(dAtA[i:]) + i = encodeVarintGenerated(dAtA, i, uint64(m.AWSElasticBlockStore.Size())) + n223, err := m.AWSElasticBlockStore.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n223 } - if m.Secret != nil { - dAtA[i] = 0x32 + if m.GitRepo != nil { + dAtA[i] = 0x2a i++ - i = encodeVarintGenerated(dAtA, i, uint64(m.Secret.Size())) - n224, err := m.Secret.MarshalTo(dAtA[i:]) + i = encodeVarintGenerated(dAtA, i, uint64(m.GitRepo.Size())) + n224, err := m.GitRepo.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n224 } - if m.NFS != nil { - dAtA[i] = 0x3a + if m.Secret != nil { + dAtA[i] = 0x32 i++ - i = encodeVarintGenerated(dAtA, i, uint64(m.NFS.Size())) - n225, err := m.NFS.MarshalTo(dAtA[i:]) + i = encodeVarintGenerated(dAtA, i, uint64(m.Secret.Size())) + n225, err := m.Secret.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n225 } - if m.ISCSI != nil { - dAtA[i] = 0x42 + if m.NFS != nil { + dAtA[i] = 0x3a i++ - i = encodeVarintGenerated(dAtA, i, uint64(m.ISCSI.Size())) - n226, err := m.ISCSI.MarshalTo(dAtA[i:]) + i = encodeVarintGenerated(dAtA, i, uint64(m.NFS.Size())) + n226, err := m.NFS.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n226 } - if m.Glusterfs != nil { - dAtA[i] = 0x4a + if m.ISCSI != nil { + dAtA[i] = 0x42 i++ - i = encodeVarintGenerated(dAtA, i, uint64(m.Glusterfs.Size())) - n227, err := m.Glusterfs.MarshalTo(dAtA[i:]) + i = encodeVarintGenerated(dAtA, i, uint64(m.ISCSI.Size())) + n227, err := m.ISCSI.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n227 } - if m.PersistentVolumeClaim != nil { - dAtA[i] = 0x52 + if m.Glusterfs != nil { + dAtA[i] = 0x4a i++ - i = encodeVarintGenerated(dAtA, i, uint64(m.PersistentVolumeClaim.Size())) - n228, err := m.PersistentVolumeClaim.MarshalTo(dAtA[i:]) + i = encodeVarintGenerated(dAtA, i, uint64(m.Glusterfs.Size())) + n228, err := m.Glusterfs.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n228 } - if m.RBD != nil { - dAtA[i] = 0x5a + if m.PersistentVolumeClaim != nil { + dAtA[i] = 0x52 i++ - i = encodeVarintGenerated(dAtA, i, uint64(m.RBD.Size())) - n229, err := m.RBD.MarshalTo(dAtA[i:]) + i = encodeVarintGenerated(dAtA, i, uint64(m.PersistentVolumeClaim.Size())) + n229, err := m.PersistentVolumeClaim.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n229 } - if m.FlexVolume != nil { - dAtA[i] = 0x62 + if m.RBD != nil { + dAtA[i] = 0x5a i++ - i = encodeVarintGenerated(dAtA, i, uint64(m.FlexVolume.Size())) - n230, err := m.FlexVolume.MarshalTo(dAtA[i:]) + i = encodeVarintGenerated(dAtA, i, uint64(m.RBD.Size())) + n230, err := m.RBD.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n230 } - if m.Cinder != nil { - dAtA[i] = 0x6a + if m.FlexVolume != nil { + dAtA[i] = 0x62 i++ - i = encodeVarintGenerated(dAtA, i, uint64(m.Cinder.Size())) - n231, err := m.Cinder.MarshalTo(dAtA[i:]) + i = encodeVarintGenerated(dAtA, i, uint64(m.FlexVolume.Size())) + n231, err := m.FlexVolume.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n231 } - if m.CephFS != nil { - dAtA[i] = 0x72 + if m.Cinder != nil { + dAtA[i] = 0x6a i++ - i = encodeVarintGenerated(dAtA, i, uint64(m.CephFS.Size())) - n232, err := m.CephFS.MarshalTo(dAtA[i:]) + i = encodeVarintGenerated(dAtA, i, uint64(m.Cinder.Size())) + n232, err := m.Cinder.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n232 } - if m.Flocker != nil { - dAtA[i] = 0x7a + if m.CephFS != nil { + dAtA[i] = 0x72 i++ - i = encodeVarintGenerated(dAtA, i, uint64(m.Flocker.Size())) - n233, err := m.Flocker.MarshalTo(dAtA[i:]) + i = encodeVarintGenerated(dAtA, i, uint64(m.CephFS.Size())) + n233, err := m.CephFS.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n233 } + if m.Flocker != nil { + dAtA[i] = 0x7a + i++ + i = encodeVarintGenerated(dAtA, i, uint64(m.Flocker.Size())) + n234, err := m.Flocker.MarshalTo(dAtA[i:]) + if err != nil { + return 0, err + } + i += n234 + } if m.DownwardAPI != nil { dAtA[i] = 0x82 i++ dAtA[i] = 0x1 i++ i = encodeVarintGenerated(dAtA, i, uint64(m.DownwardAPI.Size())) - n234, err := m.DownwardAPI.MarshalTo(dAtA[i:]) + n235, err := m.DownwardAPI.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n234 + i += n235 } if m.FC != nil { dAtA[i] = 0x8a @@ -11031,11 +11092,11 @@ func (m *VolumeSource) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintGenerated(dAtA, i, uint64(m.FC.Size())) - n235, err := m.FC.MarshalTo(dAtA[i:]) + n236, err := m.FC.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n235 + i += n236 } if m.AzureFile != nil { dAtA[i] = 0x92 @@ -11043,11 +11104,11 @@ func (m *VolumeSource) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintGenerated(dAtA, i, uint64(m.AzureFile.Size())) - n236, err := m.AzureFile.MarshalTo(dAtA[i:]) + n237, err := m.AzureFile.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n236 + i += n237 } if m.ConfigMap != nil { dAtA[i] = 0x9a @@ -11055,11 +11116,11 @@ func (m *VolumeSource) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintGenerated(dAtA, i, uint64(m.ConfigMap.Size())) - n237, err := m.ConfigMap.MarshalTo(dAtA[i:]) + n238, err := m.ConfigMap.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n237 + i += n238 } if m.VsphereVolume != nil { dAtA[i] = 0xa2 @@ -11067,11 +11128,11 @@ func (m *VolumeSource) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintGenerated(dAtA, i, uint64(m.VsphereVolume.Size())) - n238, err := m.VsphereVolume.MarshalTo(dAtA[i:]) + n239, err := m.VsphereVolume.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n238 + i += n239 } if m.Quobyte != nil { dAtA[i] = 0xaa @@ -11079,11 +11140,11 @@ func (m *VolumeSource) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintGenerated(dAtA, i, uint64(m.Quobyte.Size())) - n239, err := m.Quobyte.MarshalTo(dAtA[i:]) + n240, err := m.Quobyte.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n239 + i += n240 } if m.AzureDisk != nil { dAtA[i] = 0xb2 @@ -11091,11 +11152,11 @@ func (m *VolumeSource) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintGenerated(dAtA, i, uint64(m.AzureDisk.Size())) - n240, err := m.AzureDisk.MarshalTo(dAtA[i:]) + n241, err := m.AzureDisk.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n240 + i += n241 } if m.PhotonPersistentDisk != nil { dAtA[i] = 0xba @@ -11103,11 +11164,11 @@ func (m *VolumeSource) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintGenerated(dAtA, i, uint64(m.PhotonPersistentDisk.Size())) - n241, err := m.PhotonPersistentDisk.MarshalTo(dAtA[i:]) + n242, err := m.PhotonPersistentDisk.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n241 + i += n242 } if m.PortworxVolume != nil { dAtA[i] = 0xc2 @@ -11115,11 +11176,11 @@ func (m *VolumeSource) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintGenerated(dAtA, i, uint64(m.PortworxVolume.Size())) - n242, err := m.PortworxVolume.MarshalTo(dAtA[i:]) + n243, err := m.PortworxVolume.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n242 + i += n243 } if m.ScaleIO != nil { dAtA[i] = 0xca @@ -11127,11 +11188,11 @@ func (m *VolumeSource) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintGenerated(dAtA, i, uint64(m.ScaleIO.Size())) - n243, err := m.ScaleIO.MarshalTo(dAtA[i:]) + n244, err := m.ScaleIO.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n243 + i += n244 } if m.Projected != nil { dAtA[i] = 0xd2 @@ -11139,11 +11200,11 @@ func (m *VolumeSource) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintGenerated(dAtA, i, uint64(m.Projected.Size())) - n244, err := m.Projected.MarshalTo(dAtA[i:]) + n245, err := m.Projected.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n244 + i += n245 } if m.StorageOS != nil { dAtA[i] = 0xda @@ -11151,11 +11212,11 @@ func (m *VolumeSource) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintGenerated(dAtA, i, uint64(m.StorageOS.Size())) - n245, err := m.StorageOS.MarshalTo(dAtA[i:]) + n246, err := m.StorageOS.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n245 + i += n246 } if m.CSI != nil { dAtA[i] = 0xe2 @@ -11163,11 +11224,11 @@ func (m *VolumeSource) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintGenerated(dAtA, i, uint64(m.CSI.Size())) - n246, err := m.CSI.MarshalTo(dAtA[i:]) + n247, err := m.CSI.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n246 + i += n247 } return i, nil } @@ -11227,11 +11288,11 @@ func (m *WeightedPodAffinityTerm) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x12 i++ i = encodeVarintGenerated(dAtA, i, uint64(m.PodAffinityTerm.Size())) - n247, err := m.PodAffinityTerm.MarshalTo(dAtA[i:]) + n248, err := m.PodAffinityTerm.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n247 + i += n248 return i, nil } @@ -13702,6 +13763,12 @@ func (m *PodSpec) Size() (n int) { n += mapEntrySize + 2 + sovGenerated(uint64(mapEntrySize)) } } + if len(m.TopologySpreadConstraints) > 0 { + for _, e := range m.TopologySpreadConstraints { + l = e.Size() + n += 2 + l + sovGenerated(uint64(l)) + } + } return n } @@ -14682,6 +14749,21 @@ func (m *TopologySelectorTerm) Size() (n int) { return n } +func (m *TopologySpreadConstraint) Size() (n int) { + var l int + _ = l + n += 1 + sovGenerated(uint64(m.MaxSkew)) + l = len(m.TopologyKey) + n += 1 + l + sovGenerated(uint64(l)) + l = len(m.WhenUnsatisfiable) + n += 1 + l + sovGenerated(uint64(l)) + if m.LabelSelector != nil { + l = m.LabelSelector.Size() + n += 1 + l + sovGenerated(uint64(l)) + } + return n +} + func (m *TypedLocalObjectReference) Size() (n int) { var l int _ = l @@ -16811,6 +16893,7 @@ func (this *PodSpec) String() string { `EnableServiceLinks:` + valueToStringGenerated(this.EnableServiceLinks) + `,`, `PreemptionPolicy:` + valueToStringGenerated(this.PreemptionPolicy) + `,`, `Overhead:` + mapStringForOverhead + `,`, + `TopologySpreadConstraints:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.TopologySpreadConstraints), "TopologySpreadConstraint", "TopologySpreadConstraint", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -17645,6 +17728,19 @@ func (this *TopologySelectorTerm) String() string { }, "") return s } +func (this *TopologySpreadConstraint) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&TopologySpreadConstraint{`, + `MaxSkew:` + fmt.Sprintf("%v", this.MaxSkew) + `,`, + `TopologyKey:` + fmt.Sprintf("%v", this.TopologyKey) + `,`, + `WhenUnsatisfiable:` + fmt.Sprintf("%v", this.WhenUnsatisfiable) + `,`, + `LabelSelector:` + strings.Replace(fmt.Sprintf("%v", this.LabelSelector), "LabelSelector", "k8s_io_apimachinery_pkg_apis_meta_v1.LabelSelector", 1) + `,`, + `}`, + }, "") + return s +} func (this *TypedLocalObjectReference) String() string { if this == nil { return "nil" @@ -40831,6 +40927,37 @@ func (m *PodSpec) Unmarshal(dAtA []byte) error { } m.Overhead[ResourceName(mapkey)] = *mapvalue iNdEx = postIndex + case 33: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field TopologySpreadConstraints", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + msglen + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.TopologySpreadConstraints = append(m.TopologySpreadConstraints, TopologySpreadConstraint{}) + if err := m.TopologySpreadConstraints[len(m.TopologySpreadConstraints)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(dAtA[iNdEx:]) @@ -50656,6 +50783,166 @@ func (m *TopologySelectorTerm) Unmarshal(dAtA []byte) error { } return nil } +func (m *TopologySpreadConstraint) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: TopologySpreadConstraint: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: TopologySpreadConstraint: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field MaxSkew", wireType) + } + m.MaxSkew = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.MaxSkew |= (int32(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field TopologyKey", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + intStringLen + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.TopologyKey = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field WhenUnsatisfiable", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + intStringLen + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.WhenUnsatisfiable = UnsatisfiableConstraintAction(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field LabelSelector", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + msglen + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.LabelSelector == nil { + m.LabelSelector = &k8s_io_apimachinery_pkg_apis_meta_v1.LabelSelector{} + } + if err := m.LabelSelector.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipGenerated(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthGenerated + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *TypedLocalObjectReference) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -52981,830 +53268,837 @@ func init() { } var fileDescriptorGenerated = []byte{ - // 13195 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0xbd, 0x7d, 0x90, 0x24, 0x47, - 0x56, 0x18, 0x7e, 0xd5, 0x3d, 0x1f, 0xdd, 0x6f, 0xbe, 0x73, 0x77, 0xa5, 0xd9, 0x91, 0x76, 0x7b, - 0x55, 0x7b, 0xb7, 0x5a, 0x9d, 0xa4, 0xd9, 0xd3, 0x4a, 0x3a, 0x89, 0x93, 0x4e, 0x30, 0x33, 0x3d, - 0xb3, 0xdb, 0xda, 0x9d, 0xd9, 0x56, 0xf6, 0xec, 0xee, 0x9d, 0xd0, 0x1d, 0x57, 0xd3, 0x95, 0x33, - 0x53, 0x9a, 0x9e, 0xaa, 0x56, 0x55, 0xf5, 0xec, 0x8e, 0x7e, 0x10, 0x3f, 0x7e, 0xc7, 0x0f, 0xcc, - 0x05, 0xd8, 0x71, 0x61, 0x13, 0xfe, 0x00, 0x02, 0x47, 0x60, 0x1c, 0x80, 0xc1, 0x0e, 0x63, 0x30, - 0x60, 0x0e, 0xdb, 0x18, 0xec, 0x08, 0xec, 0x3f, 0xce, 0xd8, 0x11, 0x8e, 0x23, 0x82, 0xf0, 0x18, - 0x16, 0x87, 0x09, 0xfe, 0x30, 0x38, 0x0c, 0xff, 0x78, 0x4c, 0x18, 0x47, 0x7e, 0x56, 0x66, 0x75, - 0x55, 0x77, 0xcf, 0x6a, 0x76, 0x24, 0x88, 0xfb, 0xaf, 0x3b, 0xdf, 0xcb, 0x97, 0x59, 0x99, 0x2f, - 0x33, 0x5f, 0xbe, 0x7c, 0x1f, 0xf0, 0xda, 0xce, 0xab, 0xd1, 0xbc, 0x17, 0x5c, 0xd9, 0xe9, 0x6c, - 0x90, 0xd0, 0x27, 0x31, 0x89, 0xae, 0xec, 0x11, 0xdf, 0x0d, 0xc2, 0x2b, 0x02, 0xe0, 0xb4, 0xbd, - 0x2b, 0xcd, 0x20, 0x24, 0x57, 0xf6, 0x5e, 0xb8, 0xb2, 0x45, 0x7c, 0x12, 0x3a, 0x31, 0x71, 0xe7, - 0xdb, 0x61, 0x10, 0x07, 0x08, 0x71, 0x9c, 0x79, 0xa7, 0xed, 0xcd, 0x53, 0x9c, 0xf9, 0xbd, 0x17, - 0xe6, 0x9e, 0xdf, 0xf2, 0xe2, 0xed, 0xce, 0xc6, 0x7c, 0x33, 0xd8, 0xbd, 0xb2, 0x15, 0x6c, 0x05, - 0x57, 0x18, 0xea, 0x46, 0x67, 0x93, 0xfd, 0x63, 0x7f, 0xd8, 0x2f, 0x4e, 0x62, 0xee, 0xa5, 0xa4, - 0x99, 0x5d, 0xa7, 0xb9, 0xed, 0xf9, 0x24, 0xdc, 0xbf, 0xd2, 0xde, 0xd9, 0x62, 0xed, 0x86, 0x24, - 0x0a, 0x3a, 0x61, 0x93, 0xa4, 0x1b, 0xee, 0x59, 0x2b, 0xba, 0xb2, 0x4b, 0x62, 0x27, 0xa3, 0xbb, - 0x73, 0x57, 0xf2, 0x6a, 0x85, 0x1d, 0x3f, 0xf6, 0x76, 0xbb, 0x9b, 0xf9, 0x74, 0xbf, 0x0a, 0x51, - 0x73, 0x9b, 0xec, 0x3a, 0x5d, 0xf5, 0x5e, 0xcc, 0xab, 0xd7, 0x89, 0xbd, 0xd6, 0x15, 0xcf, 0x8f, - 0xa3, 0x38, 0x4c, 0x57, 0xb2, 0xbf, 0x61, 0xc1, 0x85, 0x85, 0xbb, 0x8d, 0xe5, 0x96, 0x13, 0xc5, - 0x5e, 0x73, 0xb1, 0x15, 0x34, 0x77, 0x1a, 0x71, 0x10, 0x92, 0x3b, 0x41, 0xab, 0xb3, 0x4b, 0x1a, - 0x6c, 0x20, 0xd0, 0x73, 0x50, 0xda, 0x63, 0xff, 0x6b, 0xd5, 0x59, 0xeb, 0x82, 0x75, 0xb9, 0xbc, - 0x38, 0xfd, 0x9b, 0x07, 0x95, 0x8f, 0x3d, 0x38, 0xa8, 0x94, 0xee, 0x88, 0x72, 0xac, 0x30, 0xd0, - 0x25, 0x18, 0xd9, 0x8c, 0xd6, 0xf7, 0xdb, 0x64, 0xb6, 0xc0, 0x70, 0x27, 0x05, 0xee, 0xc8, 0x4a, - 0x83, 0x96, 0x62, 0x01, 0x45, 0x57, 0xa0, 0xdc, 0x76, 0xc2, 0xd8, 0x8b, 0xbd, 0xc0, 0x9f, 0x2d, - 0x5e, 0xb0, 0x2e, 0x0f, 0x2f, 0xce, 0x08, 0xd4, 0x72, 0x5d, 0x02, 0x70, 0x82, 0x43, 0xbb, 0x11, - 0x12, 0xc7, 0xbd, 0xe5, 0xb7, 0xf6, 0x67, 0x87, 0x2e, 0x58, 0x97, 0x4b, 0x49, 0x37, 0xb0, 0x28, - 0xc7, 0x0a, 0xc3, 0xfe, 0xe1, 0x02, 0x94, 0x16, 0x36, 0x37, 0x3d, 0xdf, 0x8b, 0xf7, 0xd1, 0x1d, - 0x18, 0xf7, 0x03, 0x97, 0xc8, 0xff, 0xec, 0x2b, 0xc6, 0xae, 0x5e, 0x98, 0xef, 0x66, 0xa5, 0xf9, - 0x35, 0x0d, 0x6f, 0x71, 0xfa, 0xc1, 0x41, 0x65, 0x5c, 0x2f, 0xc1, 0x06, 0x1d, 0x84, 0x61, 0xac, - 0x1d, 0xb8, 0x8a, 0x6c, 0x81, 0x91, 0xad, 0x64, 0x91, 0xad, 0x27, 0x68, 0x8b, 0x53, 0x0f, 0x0e, - 0x2a, 0x63, 0x5a, 0x01, 0xd6, 0x89, 0xa0, 0x0d, 0x98, 0xa2, 0x7f, 0xfd, 0xd8, 0x53, 0x74, 0x8b, - 0x8c, 0xee, 0xc5, 0x3c, 0xba, 0x1a, 0xea, 0xe2, 0xa9, 0x07, 0x07, 0x95, 0xa9, 0x54, 0x21, 0x4e, - 0x13, 0xb4, 0xdf, 0x87, 0xc9, 0x85, 0x38, 0x76, 0x9a, 0xdb, 0xc4, 0xe5, 0x33, 0x88, 0x5e, 0x82, - 0x21, 0xdf, 0xd9, 0x25, 0x62, 0x7e, 0x2f, 0x88, 0x81, 0x1d, 0x5a, 0x73, 0x76, 0xc9, 0xe1, 0x41, - 0x65, 0xfa, 0xb6, 0xef, 0xbd, 0xd7, 0x11, 0x5c, 0x41, 0xcb, 0x30, 0xc3, 0x46, 0x57, 0x01, 0x5c, - 0xb2, 0xe7, 0x35, 0x49, 0xdd, 0x89, 0xb7, 0xc5, 0x7c, 0x23, 0x51, 0x17, 0xaa, 0x0a, 0x82, 0x35, - 0x2c, 0xfb, 0x3e, 0x94, 0x17, 0xf6, 0x02, 0xcf, 0xad, 0x07, 0x6e, 0x84, 0x76, 0x60, 0xaa, 0x1d, - 0x92, 0x4d, 0x12, 0xaa, 0xa2, 0x59, 0xeb, 0x42, 0xf1, 0xf2, 0xd8, 0xd5, 0xcb, 0x99, 0x1f, 0x6b, - 0xa2, 0x2e, 0xfb, 0x71, 0xb8, 0xbf, 0xf8, 0xb8, 0x68, 0x6f, 0x2a, 0x05, 0xc5, 0x69, 0xca, 0xf6, - 0xbf, 0x2e, 0xc0, 0x99, 0x85, 0xf7, 0x3b, 0x21, 0xa9, 0x7a, 0xd1, 0x4e, 0x9a, 0xc3, 0x5d, 0x2f, - 0xda, 0x59, 0x4b, 0x46, 0x40, 0xb1, 0x56, 0x55, 0x94, 0x63, 0x85, 0x81, 0x9e, 0x87, 0x51, 0xfa, - 0xfb, 0x36, 0xae, 0x89, 0x4f, 0x3e, 0x25, 0x90, 0xc7, 0xaa, 0x4e, 0xec, 0x54, 0x39, 0x08, 0x4b, - 0x1c, 0xb4, 0x0a, 0x63, 0x4d, 0xb6, 0x20, 0xb7, 0x56, 0x03, 0x97, 0xb0, 0xc9, 0x2c, 0x2f, 0x3e, - 0x4b, 0xd1, 0x97, 0x92, 0xe2, 0xc3, 0x83, 0xca, 0x2c, 0xef, 0x9b, 0x20, 0xa1, 0xc1, 0xb0, 0x5e, - 0x1f, 0xd9, 0x6a, 0x7d, 0x0d, 0x31, 0x4a, 0x90, 0xb1, 0xb6, 0x2e, 0x6b, 0x4b, 0x65, 0x98, 0x2d, - 0x95, 0xf1, 0xec, 0x65, 0x82, 0x5e, 0x80, 0xa1, 0x1d, 0xcf, 0x77, 0x67, 0x47, 0x18, 0xad, 0x73, - 0x74, 0xce, 0x6f, 0x78, 0xbe, 0x7b, 0x78, 0x50, 0x99, 0x31, 0xba, 0x43, 0x0b, 0x31, 0x43, 0xb5, - 0xff, 0xc4, 0x82, 0x0a, 0x83, 0xad, 0x78, 0x2d, 0x52, 0x27, 0x61, 0xe4, 0x45, 0x31, 0xf1, 0x63, - 0x63, 0x40, 0xaf, 0x02, 0x44, 0xa4, 0x19, 0x92, 0x58, 0x1b, 0x52, 0xc5, 0x18, 0x0d, 0x05, 0xc1, - 0x1a, 0x16, 0xdd, 0x10, 0xa2, 0x6d, 0x27, 0x64, 0xfc, 0x25, 0x06, 0x56, 0x6d, 0x08, 0x0d, 0x09, - 0xc0, 0x09, 0x8e, 0xb1, 0x21, 0x14, 0xfb, 0x6d, 0x08, 0xe8, 0xb3, 0x30, 0x95, 0x34, 0x16, 0xb5, - 0x9d, 0xa6, 0x1c, 0x40, 0xb6, 0x64, 0x1a, 0x26, 0x08, 0xa7, 0x71, 0xed, 0x7f, 0x60, 0x09, 0xe6, - 0xa1, 0x5f, 0xfd, 0x11, 0xff, 0x56, 0xfb, 0x97, 0x2d, 0x18, 0x5d, 0xf4, 0x7c, 0xd7, 0xf3, 0xb7, - 0xd0, 0x97, 0xa0, 0x44, 0xcf, 0x26, 0xd7, 0x89, 0x1d, 0xb1, 0xef, 0x7d, 0x4a, 0x5b, 0x5b, 0xea, - 0xa8, 0x98, 0x6f, 0xef, 0x6c, 0xd1, 0x82, 0x68, 0x9e, 0x62, 0xd3, 0xd5, 0x76, 0x6b, 0xe3, 0x5d, - 0xd2, 0x8c, 0x57, 0x49, 0xec, 0x24, 0x9f, 0x93, 0x94, 0x61, 0x45, 0x15, 0xdd, 0x80, 0x91, 0xd8, - 0x09, 0xb7, 0x48, 0x2c, 0x36, 0xc0, 0xcc, 0x8d, 0x8a, 0xd7, 0xc4, 0x74, 0x45, 0x12, 0xbf, 0x49, - 0x92, 0x63, 0x61, 0x9d, 0x55, 0xc5, 0x82, 0x84, 0xfd, 0x57, 0x47, 0xe1, 0xec, 0x52, 0xa3, 0x96, - 0xc3, 0x57, 0x97, 0x60, 0xc4, 0x0d, 0xbd, 0x3d, 0x12, 0x8a, 0x71, 0x56, 0x54, 0xaa, 0xac, 0x14, - 0x0b, 0x28, 0x7a, 0x15, 0xc6, 0xf9, 0x81, 0x74, 0xdd, 0xf1, 0xdd, 0x96, 0x1c, 0xe2, 0xd3, 0x02, - 0x7b, 0xfc, 0x8e, 0x06, 0xc3, 0x06, 0xe6, 0x11, 0x99, 0xea, 0x52, 0x6a, 0x31, 0xe6, 0x1d, 0x76, - 0x5f, 0xb1, 0x60, 0x9a, 0x37, 0xb3, 0x10, 0xc7, 0xa1, 0xb7, 0xd1, 0x89, 0x49, 0x34, 0x3b, 0xcc, - 0x76, 0xba, 0xa5, 0xac, 0xd1, 0xca, 0x1d, 0x81, 0xf9, 0x3b, 0x29, 0x2a, 0x7c, 0x13, 0x9c, 0x15, - 0xed, 0x4e, 0xa7, 0xc1, 0xb8, 0xab, 0x59, 0xf4, 0x3d, 0x16, 0xcc, 0x35, 0x03, 0x3f, 0x0e, 0x83, - 0x56, 0x8b, 0x84, 0xf5, 0xce, 0x46, 0xcb, 0x8b, 0xb6, 0x39, 0x9f, 0x62, 0xb2, 0xc9, 0x76, 0x82, - 0x9c, 0x39, 0x54, 0x48, 0x62, 0x0e, 0xcf, 0x3f, 0x38, 0xa8, 0xcc, 0x2d, 0xe5, 0x92, 0xc2, 0x3d, - 0x9a, 0x41, 0x3b, 0x80, 0xe8, 0x51, 0xda, 0x88, 0x9d, 0x2d, 0x92, 0x34, 0x3e, 0x3a, 0x78, 0xe3, - 0x8f, 0x3d, 0x38, 0xa8, 0xa0, 0xb5, 0x2e, 0x12, 0x38, 0x83, 0x2c, 0x7a, 0x0f, 0x4e, 0xd3, 0xd2, - 0xae, 0x6f, 0x2d, 0x0d, 0xde, 0xdc, 0xec, 0x83, 0x83, 0xca, 0xe9, 0xb5, 0x0c, 0x22, 0x38, 0x93, - 0x34, 0xfa, 0x6e, 0x0b, 0xce, 0x26, 0x9f, 0xbf, 0x7c, 0xbf, 0xed, 0xf8, 0x6e, 0xd2, 0x70, 0x79, - 0xf0, 0x86, 0xe9, 0x9e, 0x7c, 0x76, 0x29, 0x8f, 0x12, 0xce, 0x6f, 0x64, 0x6e, 0x09, 0xce, 0x64, - 0x72, 0x0b, 0x9a, 0x86, 0xe2, 0x0e, 0xe1, 0x52, 0x50, 0x19, 0xd3, 0x9f, 0xe8, 0x34, 0x0c, 0xef, - 0x39, 0xad, 0x8e, 0x58, 0x28, 0x98, 0xff, 0xf9, 0x4c, 0xe1, 0x55, 0xcb, 0xfe, 0x37, 0x45, 0x98, - 0x5a, 0x6a, 0xd4, 0x1e, 0x6a, 0x15, 0xea, 0xc7, 0x50, 0xa1, 0xe7, 0x31, 0x94, 0x1c, 0x6a, 0xc5, - 0xdc, 0x43, 0xed, 0xff, 0xcd, 0x58, 0x42, 0x43, 0x6c, 0x09, 0x7d, 0x4b, 0xce, 0x12, 0x3a, 0xe6, - 0x85, 0xb3, 0x97, 0xc3, 0x45, 0xc3, 0x6c, 0x32, 0x33, 0x25, 0x96, 0x9b, 0x41, 0xd3, 0x69, 0xa5, - 0xb7, 0xbe, 0x23, 0xb2, 0xd2, 0xf1, 0xcc, 0x63, 0x13, 0xc6, 0x97, 0x9c, 0xb6, 0xb3, 0xe1, 0xb5, - 0xbc, 0xd8, 0x23, 0x11, 0x7a, 0x1a, 0x8a, 0x8e, 0xeb, 0x32, 0x69, 0xab, 0xbc, 0x78, 0xe6, 0xc1, - 0x41, 0xa5, 0xb8, 0xe0, 0xd2, 0x63, 0x1f, 0x14, 0xd6, 0x3e, 0xa6, 0x18, 0xe8, 0x93, 0x30, 0xe4, - 0x86, 0x41, 0x7b, 0xb6, 0xc0, 0x30, 0xe9, 0xaa, 0x1b, 0xaa, 0x86, 0x41, 0x3b, 0x85, 0xca, 0x70, - 0xec, 0x5f, 0x2b, 0xc0, 0x93, 0x4b, 0xa4, 0xbd, 0xbd, 0xd2, 0xc8, 0xd9, 0xbf, 0x2f, 0x43, 0x69, - 0x37, 0xf0, 0xbd, 0x38, 0x08, 0x23, 0xd1, 0x34, 0xe3, 0x88, 0x55, 0x51, 0x86, 0x15, 0x14, 0x5d, - 0x80, 0xa1, 0x76, 0x22, 0x54, 0x8e, 0x4b, 0x81, 0x94, 0x89, 0x93, 0x0c, 0x42, 0x31, 0x3a, 0x11, - 0x09, 0x05, 0xc7, 0x28, 0x8c, 0xdb, 0x11, 0x09, 0x31, 0x83, 0x24, 0x27, 0x33, 0x3d, 0xb3, 0xc5, - 0x0e, 0x9d, 0x3a, 0x99, 0x29, 0x04, 0x6b, 0x58, 0xa8, 0x0e, 0xe5, 0x28, 0x35, 0xb3, 0x03, 0x2d, - 0xd3, 0x09, 0x76, 0x74, 0xab, 0x99, 0x4c, 0x88, 0x18, 0x27, 0xca, 0x48, 0xdf, 0xa3, 0xfb, 0x6b, - 0x05, 0x40, 0x7c, 0x08, 0xff, 0x82, 0x0d, 0xdc, 0xed, 0xee, 0x81, 0x1b, 0x7c, 0x49, 0x1c, 0xd7, - 0xe8, 0xfd, 0xa9, 0x05, 0x4f, 0x2e, 0x79, 0xbe, 0x4b, 0xc2, 0x1c, 0x06, 0x7c, 0x34, 0x77, 0xd9, - 0xa3, 0x09, 0x0d, 0x06, 0x8b, 0x0d, 0x1d, 0x03, 0x8b, 0xd9, 0x7f, 0x6c, 0x01, 0xe2, 0x9f, 0xfd, - 0x91, 0xfb, 0xd8, 0xdb, 0xdd, 0x1f, 0x7b, 0x0c, 0x6c, 0x61, 0xdf, 0x84, 0xc9, 0xa5, 0x96, 0x47, - 0xfc, 0xb8, 0x56, 0x5f, 0x0a, 0xfc, 0x4d, 0x6f, 0x0b, 0x7d, 0x06, 0x26, 0x63, 0x6f, 0x97, 0x04, - 0x9d, 0xb8, 0x41, 0x9a, 0x81, 0xcf, 0x6e, 0x92, 0xd6, 0xe5, 0xe1, 0x45, 0xf4, 0xe0, 0xa0, 0x32, - 0xb9, 0x6e, 0x40, 0x70, 0x0a, 0xd3, 0xfe, 0x1d, 0x3a, 0x7e, 0xc1, 0x6e, 0x3b, 0xf0, 0x89, 0x1f, - 0x2f, 0x05, 0xbe, 0xcb, 0x35, 0x0e, 0x9f, 0x81, 0xa1, 0x98, 0x8e, 0x07, 0x1f, 0xbb, 0x4b, 0x72, - 0xa1, 0xd0, 0x51, 0x38, 0x3c, 0xa8, 0x3c, 0xd6, 0x5d, 0x83, 0x8d, 0x13, 0xab, 0x83, 0xbe, 0x05, - 0x46, 0xa2, 0xd8, 0x89, 0x3b, 0x91, 0x18, 0xcd, 0xa7, 0xe4, 0x68, 0x36, 0x58, 0xe9, 0xe1, 0x41, - 0x65, 0x4a, 0x55, 0xe3, 0x45, 0x58, 0x54, 0x40, 0xcf, 0xc0, 0xe8, 0x2e, 0x89, 0x22, 0x67, 0x4b, - 0x9e, 0x86, 0x53, 0xa2, 0xee, 0xe8, 0x2a, 0x2f, 0xc6, 0x12, 0x8e, 0x2e, 0xc2, 0x30, 0x09, 0xc3, - 0x20, 0x14, 0x6b, 0x74, 0x42, 0x20, 0x0e, 0x2f, 0xd3, 0x42, 0xcc, 0x61, 0xf6, 0xbf, 0xb7, 0x60, - 0x4a, 0xf5, 0x95, 0xb7, 0x75, 0x02, 0xb7, 0x82, 0xb7, 0x01, 0x9a, 0xf2, 0x03, 0x23, 0x76, 0x7a, - 0x8c, 0x5d, 0xbd, 0x94, 0x79, 0x50, 0x77, 0x0d, 0x63, 0x42, 0x59, 0x15, 0x45, 0x58, 0xa3, 0x66, - 0xff, 0x73, 0x0b, 0x4e, 0xa5, 0xbe, 0xe8, 0xa6, 0x17, 0xc5, 0xe8, 0x9d, 0xae, 0xaf, 0x9a, 0x1f, - 0xec, 0xab, 0x68, 0x6d, 0xf6, 0x4d, 0x8a, 0x95, 0x65, 0x89, 0xf6, 0x45, 0xd7, 0x61, 0xd8, 0x8b, - 0xc9, 0xae, 0xfc, 0x98, 0x8b, 0x3d, 0x3f, 0x86, 0xf7, 0x2a, 0x99, 0x91, 0x1a, 0xad, 0x89, 0x39, - 0x01, 0xfb, 0x6f, 0x14, 0xa1, 0xcc, 0xd9, 0x76, 0xd5, 0x69, 0x9f, 0xc0, 0x5c, 0xd4, 0x60, 0x88, - 0x51, 0xe7, 0x1d, 0x7f, 0x3a, 0xbb, 0xe3, 0xa2, 0x3b, 0xf3, 0xf4, 0xca, 0xcf, 0x85, 0x23, 0x75, - 0x34, 0xd0, 0x22, 0xcc, 0x48, 0x20, 0x07, 0x60, 0xc3, 0xf3, 0x9d, 0x70, 0x9f, 0x96, 0xcd, 0x16, - 0x19, 0xc1, 0xe7, 0x7b, 0x13, 0x5c, 0x54, 0xf8, 0x9c, 0xac, 0xea, 0x6b, 0x02, 0xc0, 0x1a, 0xd1, - 0xb9, 0x57, 0xa0, 0xac, 0x90, 0x8f, 0x22, 0xe3, 0xcc, 0x7d, 0x16, 0xa6, 0x52, 0x6d, 0xf5, 0xab, - 0x3e, 0xae, 0x8b, 0x48, 0xbf, 0xc2, 0x76, 0x01, 0xd1, 0xeb, 0x65, 0x7f, 0x4f, 0xec, 0xa2, 0xef, - 0xc3, 0xe9, 0x56, 0xc6, 0xe6, 0x24, 0xa6, 0x6a, 0xf0, 0xcd, 0xec, 0x49, 0xf1, 0xd9, 0xa7, 0xb3, - 0xa0, 0x38, 0xb3, 0x0d, 0x7a, 0xec, 0x07, 0x6d, 0xca, 0xf3, 0x4e, 0x4b, 0x97, 0xa0, 0x6f, 0x89, - 0x32, 0xac, 0xa0, 0x74, 0x0b, 0x3b, 0xad, 0x3a, 0x7f, 0x83, 0xec, 0x37, 0x48, 0x8b, 0x34, 0xe3, - 0x20, 0xfc, 0x50, 0xbb, 0x7f, 0x8e, 0x8f, 0x3e, 0xdf, 0x01, 0xc7, 0x04, 0x81, 0xe2, 0x0d, 0xb2, - 0xcf, 0xa7, 0x42, 0xff, 0xba, 0x62, 0xcf, 0xaf, 0xfb, 0x39, 0x0b, 0x26, 0xd4, 0xd7, 0x9d, 0xc0, - 0x52, 0x5f, 0x34, 0x97, 0xfa, 0xb9, 0x9e, 0x0c, 0x9e, 0xb3, 0xc8, 0xbf, 0x56, 0x80, 0xb3, 0x0a, - 0x87, 0x8a, 0xfb, 0xfc, 0x8f, 0xe0, 0xaa, 0x2b, 0x50, 0xf6, 0x95, 0x22, 0xca, 0x32, 0x35, 0x40, - 0x89, 0x1a, 0x2a, 0xc1, 0xa1, 0x52, 0x9b, 0x9f, 0x68, 0x8b, 0xc6, 0x75, 0x0d, 0xad, 0xd0, 0xc6, - 0x2e, 0x42, 0xb1, 0xe3, 0xb9, 0xe2, 0xcc, 0xf8, 0x94, 0x1c, 0xed, 0xdb, 0xb5, 0xea, 0xe1, 0x41, - 0xe5, 0xa9, 0xbc, 0xd7, 0x01, 0x7a, 0x58, 0x45, 0xf3, 0xb7, 0x6b, 0x55, 0x4c, 0x2b, 0xa3, 0x05, - 0x98, 0x92, 0x0f, 0x20, 0x77, 0xa8, 0x04, 0x15, 0xf8, 0xe2, 0x68, 0x51, 0x6a, 0x56, 0x6c, 0x82, - 0x71, 0x1a, 0x1f, 0x55, 0x61, 0x7a, 0xa7, 0xb3, 0x41, 0x5a, 0x24, 0xe6, 0x1f, 0x7c, 0x83, 0x70, - 0x25, 0x64, 0x39, 0xb9, 0x6c, 0xdd, 0x48, 0xc1, 0x71, 0x57, 0x0d, 0xfb, 0xcf, 0xd9, 0x16, 0x2f, - 0x46, 0xaf, 0x1e, 0x06, 0x94, 0xb1, 0x28, 0xf5, 0x0f, 0x93, 0x9d, 0x07, 0xe1, 0x8a, 0x1b, 0x64, - 0x7f, 0x3d, 0xa0, 0xc2, 0x76, 0x36, 0x57, 0x18, 0x3c, 0x3f, 0xd4, 0x93, 0xe7, 0x7f, 0xa1, 0x00, - 0x67, 0xd4, 0x08, 0x18, 0x72, 0xdd, 0x5f, 0xf4, 0x31, 0x78, 0x01, 0xc6, 0x5c, 0xb2, 0xe9, 0x74, - 0x5a, 0xb1, 0xd2, 0x88, 0x0f, 0xf3, 0x57, 0x91, 0x6a, 0x52, 0x8c, 0x75, 0x9c, 0x23, 0x0c, 0xdb, - 0x4f, 0x8c, 0xb1, 0xb3, 0x35, 0x76, 0x28, 0x8f, 0xab, 0x55, 0x63, 0xe5, 0xae, 0x9a, 0x8b, 0x30, - 0xec, 0xed, 0x52, 0x59, 0xab, 0x60, 0x8a, 0x50, 0x35, 0x5a, 0x88, 0x39, 0x0c, 0x7d, 0x02, 0x46, - 0x9b, 0xc1, 0xee, 0xae, 0xe3, 0xbb, 0xec, 0xc8, 0x2b, 0x2f, 0x8e, 0x51, 0x71, 0x6c, 0x89, 0x17, - 0x61, 0x09, 0x43, 0x4f, 0xc2, 0x90, 0x13, 0x6e, 0x71, 0xb5, 0x44, 0x79, 0xb1, 0x44, 0x5b, 0x5a, - 0x08, 0xb7, 0x22, 0xcc, 0x4a, 0xe9, 0xad, 0xea, 0x5e, 0x10, 0xee, 0x78, 0xfe, 0x56, 0xd5, 0x0b, - 0xc5, 0x92, 0x50, 0x67, 0xe1, 0x5d, 0x05, 0xc1, 0x1a, 0x16, 0x5a, 0x81, 0xe1, 0x76, 0x10, 0xc6, - 0xd1, 0xec, 0x08, 0x1b, 0xee, 0xa7, 0x72, 0x36, 0x22, 0xfe, 0xb5, 0xf5, 0x20, 0x8c, 0x93, 0x0f, - 0xa0, 0xff, 0x22, 0xcc, 0xab, 0xa3, 0x6f, 0x81, 0x22, 0xf1, 0xf7, 0x66, 0x47, 0x19, 0x95, 0xb9, - 0x2c, 0x2a, 0xcb, 0xfe, 0xde, 0x1d, 0x27, 0x4c, 0x76, 0xe9, 0x65, 0x7f, 0x0f, 0xd3, 0x3a, 0xe8, - 0xf3, 0x50, 0x96, 0x4b, 0x3c, 0x12, 0x1a, 0xb3, 0x4c, 0x16, 0x93, 0x1b, 0x03, 0x26, 0xef, 0x75, - 0xbc, 0x90, 0xec, 0x12, 0x3f, 0x8e, 0x92, 0x3d, 0x4d, 0x42, 0x23, 0x9c, 0x50, 0x43, 0x9f, 0x97, - 0x6a, 0xda, 0xd5, 0xa0, 0xe3, 0xc7, 0xd1, 0x6c, 0x99, 0x75, 0x2f, 0xf3, 0x01, 0xed, 0x4e, 0x82, - 0x97, 0xd6, 0xe3, 0xf2, 0xca, 0xd8, 0x20, 0x85, 0x30, 0x4c, 0xb4, 0xbc, 0x3d, 0xe2, 0x93, 0x28, - 0xaa, 0x87, 0xc1, 0x06, 0x99, 0x05, 0xd6, 0xf3, 0xb3, 0xd9, 0xef, 0x4a, 0xc1, 0x06, 0x59, 0x9c, - 0x79, 0x70, 0x50, 0x99, 0xb8, 0xa9, 0xd7, 0xc1, 0x26, 0x09, 0x74, 0x1b, 0x26, 0xe9, 0xbd, 0xc6, - 0x4b, 0x88, 0x8e, 0xf5, 0x23, 0xca, 0x6e, 0x1f, 0xd8, 0xa8, 0x84, 0x53, 0x44, 0xd0, 0x9b, 0x50, - 0x6e, 0x79, 0x9b, 0xa4, 0xb9, 0xdf, 0x6c, 0x91, 0xd9, 0x71, 0x46, 0x31, 0x73, 0x59, 0xdd, 0x94, - 0x48, 0xfc, 0x5e, 0xa4, 0xfe, 0xe2, 0xa4, 0x3a, 0xba, 0x03, 0x8f, 0xc5, 0x24, 0xdc, 0xf5, 0x7c, - 0x87, 0x2e, 0x07, 0x71, 0x5f, 0x60, 0xaf, 0x73, 0x13, 0x8c, 0xdf, 0xce, 0x8b, 0xa1, 0x7b, 0x6c, - 0x3d, 0x13, 0x0b, 0xe7, 0xd4, 0x46, 0xb7, 0x60, 0x8a, 0xad, 0x84, 0x7a, 0xa7, 0xd5, 0xaa, 0x07, - 0x2d, 0xaf, 0xb9, 0x3f, 0x3b, 0xc9, 0x08, 0x7e, 0x42, 0x9e, 0x0b, 0x35, 0x13, 0x7c, 0x78, 0x50, - 0x81, 0xe4, 0x1f, 0x4e, 0xd7, 0x46, 0x1b, 0xec, 0x39, 0xa6, 0x13, 0x7a, 0xf1, 0x3e, 0xe5, 0x5f, - 0x72, 0x3f, 0x9e, 0x9d, 0xea, 0x79, 0x15, 0xd6, 0x51, 0xd5, 0x9b, 0x8d, 0x5e, 0x88, 0xd3, 0x04, - 0xe9, 0xd2, 0x8e, 0x62, 0xd7, 0xf3, 0x67, 0xa7, 0xd9, 0x8e, 0xa1, 0x56, 0x46, 0x83, 0x16, 0x62, - 0x0e, 0x63, 0x4f, 0x31, 0xf4, 0xc7, 0x2d, 0xba, 0x83, 0xce, 0x30, 0xc4, 0xe4, 0x29, 0x46, 0x02, - 0x70, 0x82, 0x43, 0x85, 0x9a, 0x38, 0xde, 0x9f, 0x45, 0x0c, 0x55, 0x2d, 0x97, 0xf5, 0xf5, 0xcf, - 0x63, 0x5a, 0x8e, 0x6e, 0xc2, 0x28, 0xf1, 0xf7, 0x56, 0xc2, 0x60, 0x77, 0xf6, 0x54, 0xfe, 0x9a, - 0x5d, 0xe6, 0x28, 0x7c, 0x43, 0x4f, 0x2e, 0x78, 0xa2, 0x18, 0x4b, 0x12, 0xe8, 0x3e, 0xcc, 0x66, - 0xcc, 0x08, 0x9f, 0x80, 0xd3, 0x6c, 0x02, 0x5e, 0x17, 0x75, 0x67, 0xd7, 0x73, 0xf0, 0x0e, 0x7b, - 0xc0, 0x70, 0x2e, 0x75, 0xf4, 0x05, 0x98, 0xe0, 0x0b, 0x8a, 0xbf, 0xe3, 0x46, 0xb3, 0x67, 0xd8, - 0xd7, 0x5c, 0xc8, 0x5f, 0x9c, 0x1c, 0x71, 0xf1, 0x8c, 0xe8, 0xd0, 0x84, 0x5e, 0x1a, 0x61, 0x93, - 0x9a, 0xbd, 0x01, 0x93, 0x6a, 0xdf, 0x62, 0xac, 0x83, 0x2a, 0x30, 0xcc, 0xa4, 0x1d, 0xa1, 0xdf, - 0x2a, 0xd3, 0x99, 0x62, 0x92, 0x10, 0xe6, 0xe5, 0x6c, 0xa6, 0xbc, 0xf7, 0xc9, 0xe2, 0x7e, 0x4c, - 0xf8, 0xad, 0xba, 0xa8, 0xcd, 0x94, 0x04, 0xe0, 0x04, 0xc7, 0xfe, 0x3f, 0x5c, 0x6a, 0x4c, 0x36, - 0xc7, 0x01, 0x8e, 0x83, 0xe7, 0xa0, 0xb4, 0x1d, 0x44, 0x31, 0xc5, 0x66, 0x6d, 0x0c, 0x27, 0x72, - 0xe2, 0x75, 0x51, 0x8e, 0x15, 0x06, 0x7a, 0x0d, 0x26, 0x9a, 0x7a, 0x03, 0xe2, 0x2c, 0x53, 0x43, - 0x60, 0xb4, 0x8e, 0x4d, 0x5c, 0xf4, 0x2a, 0x94, 0x98, 0x15, 0x46, 0x33, 0x68, 0x09, 0x21, 0x4b, - 0x1e, 0xc8, 0xa5, 0xba, 0x28, 0x3f, 0xd4, 0x7e, 0x63, 0x85, 0x8d, 0x2e, 0xc1, 0x08, 0xed, 0x42, - 0xad, 0x2e, 0x4e, 0x11, 0xa5, 0xaa, 0xb9, 0xce, 0x4a, 0xb1, 0x80, 0xda, 0x7f, 0xbd, 0xa0, 0x8d, - 0x32, 0xbd, 0x91, 0x12, 0x54, 0x87, 0xd1, 0x7b, 0x8e, 0x17, 0x7b, 0xfe, 0x96, 0x10, 0x17, 0x9e, - 0xe9, 0x79, 0xa4, 0xb0, 0x4a, 0x77, 0x79, 0x05, 0x7e, 0xe8, 0x89, 0x3f, 0x58, 0x92, 0xa1, 0x14, - 0xc3, 0x8e, 0xef, 0x53, 0x8a, 0x85, 0x41, 0x29, 0x62, 0x5e, 0x81, 0x53, 0x14, 0x7f, 0xb0, 0x24, - 0x83, 0xde, 0x01, 0x90, 0x6c, 0x49, 0x5c, 0x61, 0xfd, 0xf0, 0x5c, 0x7f, 0xa2, 0xeb, 0xaa, 0xce, - 0xe2, 0x24, 0x3d, 0x52, 0x93, 0xff, 0x58, 0xa3, 0x67, 0xc7, 0x4c, 0xac, 0xea, 0xee, 0x0c, 0xfa, - 0x76, 0xba, 0x13, 0x38, 0x61, 0x4c, 0xdc, 0x85, 0x58, 0x0c, 0xce, 0x27, 0x07, 0xbb, 0x53, 0xac, - 0x7b, 0xbb, 0x44, 0xdf, 0x35, 0x04, 0x11, 0x9c, 0xd0, 0xb3, 0x7f, 0xa9, 0x08, 0xb3, 0x79, 0xdd, - 0xa5, 0x4c, 0x47, 0xee, 0x7b, 0xf1, 0x12, 0x95, 0x86, 0x2c, 0x93, 0xe9, 0x96, 0x45, 0x39, 0x56, - 0x18, 0x74, 0xf6, 0x23, 0x6f, 0x4b, 0x5e, 0x09, 0x87, 0x93, 0xd9, 0x6f, 0xb0, 0x52, 0x2c, 0xa0, - 0x14, 0x2f, 0x24, 0x4e, 0x24, 0xcc, 0x6b, 0x34, 0x2e, 0xc1, 0xac, 0x14, 0x0b, 0xa8, 0xae, 0x6f, - 0x1a, 0xea, 0xa3, 0x6f, 0x32, 0x86, 0x68, 0xf8, 0x78, 0x87, 0x08, 0x7d, 0x11, 0x60, 0xd3, 0xf3, - 0xbd, 0x68, 0x9b, 0x51, 0x1f, 0x39, 0x32, 0x75, 0x25, 0x4b, 0xad, 0x28, 0x2a, 0x58, 0xa3, 0x88, - 0x5e, 0x86, 0x31, 0xb5, 0x00, 0x6b, 0x55, 0xf6, 0xd6, 0xa8, 0xd9, 0x6e, 0x24, 0xbb, 0x51, 0x15, - 0xeb, 0x78, 0xf6, 0xbb, 0x69, 0x7e, 0x11, 0x2b, 0x40, 0x1b, 0x5f, 0x6b, 0xd0, 0xf1, 0x2d, 0xf4, - 0x1e, 0x5f, 0xfb, 0xd7, 0x8b, 0x30, 0x65, 0x34, 0xd6, 0x89, 0x06, 0xd8, 0xb3, 0xae, 0xd1, 0x73, - 0xce, 0x89, 0x89, 0x58, 0x7f, 0x76, 0xff, 0xa5, 0xa2, 0x9f, 0x85, 0x74, 0x05, 0xf0, 0xfa, 0xe8, - 0x8b, 0x50, 0x6e, 0x39, 0x11, 0xd3, 0x5d, 0x11, 0xb1, 0xee, 0x06, 0x21, 0x96, 0xdc, 0x23, 0x9c, - 0x28, 0xd6, 0x8e, 0x1a, 0x4e, 0x3b, 0x21, 0x49, 0x0f, 0x64, 0x2a, 0xfb, 0x48, 0xfb, 0x2d, 0xd5, - 0x09, 0x2a, 0x20, 0xed, 0x63, 0x0e, 0x43, 0xaf, 0xc2, 0x78, 0x48, 0x18, 0x57, 0x2c, 0x51, 0x51, - 0x8e, 0xb1, 0xd9, 0x70, 0x22, 0xf3, 0x61, 0x0d, 0x86, 0x0d, 0xcc, 0x44, 0x94, 0x1f, 0xe9, 0x21, - 0xca, 0x3f, 0x03, 0xa3, 0xec, 0x87, 0xe2, 0x00, 0x35, 0x1b, 0x35, 0x5e, 0x8c, 0x25, 0x3c, 0xcd, - 0x30, 0xa5, 0x01, 0x19, 0xe6, 0x93, 0x30, 0x59, 0x75, 0xc8, 0x6e, 0xe0, 0x2f, 0xfb, 0x6e, 0x3b, - 0xf0, 0xfc, 0x18, 0xcd, 0xc2, 0x10, 0x3b, 0x1d, 0xf8, 0xda, 0x1e, 0xa2, 0x14, 0xf0, 0x10, 0x15, - 0xcc, 0xed, 0x2d, 0x38, 0x53, 0x0d, 0xee, 0xf9, 0xf7, 0x9c, 0xd0, 0x5d, 0xa8, 0xd7, 0xb4, 0x7b, - 0xee, 0x9a, 0xbc, 0x67, 0x71, 0x7b, 0xa8, 0xcc, 0x3d, 0x55, 0xab, 0xc9, 0xcf, 0xda, 0x15, 0xaf, - 0x45, 0x72, 0xb4, 0x11, 0x7f, 0xab, 0x60, 0xb4, 0x94, 0xe0, 0xab, 0x07, 0x23, 0x2b, 0xf7, 0xc1, - 0xe8, 0x2d, 0x28, 0x6d, 0x7a, 0xa4, 0xe5, 0x62, 0xb2, 0x29, 0x58, 0xec, 0xe9, 0x7c, 0x13, 0x8f, - 0x15, 0x8a, 0x29, 0xb5, 0x4f, 0xfc, 0x96, 0xb6, 0x22, 0x2a, 0x63, 0x45, 0x06, 0xed, 0xc0, 0xb4, - 0xbc, 0x06, 0x48, 0xa8, 0x60, 0xb8, 0x67, 0x7a, 0xdd, 0x2d, 0x4c, 0xe2, 0xa7, 0x1f, 0x1c, 0x54, - 0xa6, 0x71, 0x8a, 0x0c, 0xee, 0x22, 0x4c, 0xaf, 0x65, 0xbb, 0x74, 0x6b, 0x1d, 0x62, 0xc3, 0xcf, - 0xae, 0x65, 0xec, 0x86, 0xc9, 0x4a, 0xed, 0x1f, 0xb5, 0xe0, 0xf1, 0xae, 0x91, 0x11, 0x37, 0xed, - 0x63, 0x9e, 0x85, 0xf4, 0xcd, 0xb7, 0xd0, 0xff, 0xe6, 0x6b, 0xff, 0xac, 0x05, 0xa7, 0x97, 0x77, - 0xdb, 0xf1, 0x7e, 0xd5, 0x33, 0x5f, 0x77, 0x5e, 0x81, 0x91, 0x5d, 0xe2, 0x7a, 0x9d, 0x5d, 0x31, - 0x73, 0x15, 0xb9, 0xfd, 0xac, 0xb2, 0xd2, 0xc3, 0x83, 0xca, 0x44, 0x23, 0x0e, 0x42, 0x67, 0x8b, - 0xf0, 0x02, 0x2c, 0xd0, 0xd9, 0x26, 0xee, 0xbd, 0x4f, 0x6e, 0x7a, 0xbb, 0x9e, 0x34, 0xd9, 0xe9, - 0xa9, 0x3b, 0x9b, 0x97, 0x03, 0x3a, 0xff, 0x56, 0xc7, 0xf1, 0x63, 0x2f, 0xde, 0x17, 0x0f, 0x33, - 0x92, 0x08, 0x4e, 0xe8, 0xd9, 0xdf, 0xb0, 0x60, 0x4a, 0xf2, 0xfd, 0x82, 0xeb, 0x86, 0x24, 0x8a, - 0xd0, 0x1c, 0x14, 0xbc, 0xb6, 0xe8, 0x25, 0x88, 0x5e, 0x16, 0x6a, 0x75, 0x5c, 0xf0, 0xda, 0xa8, - 0x0e, 0x65, 0x6e, 0xf9, 0x93, 0x30, 0xd7, 0x40, 0xf6, 0x43, 0xac, 0x07, 0xeb, 0xb2, 0x26, 0x4e, - 0x88, 0x48, 0x09, 0x8e, 0xed, 0x99, 0x45, 0xf3, 0xd5, 0xeb, 0xba, 0x28, 0xc7, 0x0a, 0x03, 0x5d, - 0x86, 0x92, 0x1f, 0xb8, 0xdc, 0x10, 0x8b, 0x9f, 0x7e, 0x8c, 0x65, 0xd7, 0x44, 0x19, 0x56, 0x50, - 0xfb, 0x07, 0x2d, 0x18, 0x97, 0x5f, 0x36, 0xa0, 0x30, 0x49, 0x97, 0x56, 0x22, 0x48, 0x26, 0x4b, - 0x8b, 0x0a, 0x83, 0x0c, 0x62, 0xc8, 0x80, 0xc5, 0xa3, 0xc8, 0x80, 0xf6, 0x8f, 0x14, 0x60, 0x52, - 0x76, 0xa7, 0xd1, 0xd9, 0x88, 0x48, 0x8c, 0xd6, 0xa1, 0xec, 0xf0, 0x21, 0x27, 0x92, 0x63, 0x2f, - 0x66, 0x5f, 0x3e, 0x8c, 0xf9, 0x49, 0x8e, 0xe5, 0x05, 0x59, 0x1b, 0x27, 0x84, 0x50, 0x0b, 0x66, - 0xfc, 0x20, 0x66, 0x5b, 0xb4, 0x82, 0xf7, 0x7a, 0x02, 0x49, 0x53, 0x3f, 0x2b, 0xa8, 0xcf, 0xac, - 0xa5, 0xa9, 0xe0, 0x6e, 0xc2, 0x68, 0x59, 0x2a, 0x3c, 0x8a, 0xf9, 0xd7, 0x0d, 0x7d, 0x16, 0xb2, - 0xf5, 0x1d, 0xf6, 0xaf, 0x5a, 0x50, 0x96, 0x68, 0x27, 0xf1, 0xda, 0xb5, 0x0a, 0xa3, 0x11, 0x9b, - 0x04, 0x39, 0x34, 0x76, 0xaf, 0x8e, 0xf3, 0xf9, 0x4a, 0x4e, 0x1e, 0xfe, 0x3f, 0xc2, 0x92, 0x06, - 0xd3, 0x77, 0xab, 0xee, 0x7f, 0x44, 0xf4, 0xdd, 0xaa, 0x3f, 0x39, 0x27, 0xcc, 0x1f, 0xb0, 0x3e, - 0x6b, 0xd7, 0x5a, 0x2a, 0x20, 0xb5, 0x43, 0xb2, 0xe9, 0xdd, 0x4f, 0x0b, 0x48, 0x75, 0x56, 0x8a, - 0x05, 0x14, 0xbd, 0x03, 0xe3, 0x4d, 0xa9, 0xe8, 0x4c, 0xb6, 0x81, 0x4b, 0x3d, 0x95, 0xee, 0xea, - 0x7d, 0x86, 0x1b, 0x69, 0x2f, 0x69, 0xf5, 0xb1, 0x41, 0xcd, 0x7c, 0x6e, 0x2f, 0xf6, 0x7b, 0x6e, - 0x4f, 0xe8, 0xe6, 0x3f, 0x3e, 0xff, 0x98, 0x05, 0x23, 0x5c, 0x5d, 0x36, 0x98, 0x7e, 0x51, 0x7b, - 0xae, 0x4a, 0xc6, 0xee, 0x0e, 0x2d, 0x14, 0xcf, 0x4f, 0x68, 0x15, 0xca, 0xec, 0x07, 0x53, 0x1b, - 0x14, 0xf3, 0xad, 0xd3, 0x79, 0xab, 0x7a, 0x07, 0xef, 0xc8, 0x6a, 0x38, 0xa1, 0x60, 0xff, 0x50, - 0x91, 0x6e, 0x55, 0x09, 0xaa, 0x71, 0x82, 0x5b, 0x8f, 0xee, 0x04, 0x2f, 0x3c, 0xaa, 0x13, 0x7c, - 0x0b, 0xa6, 0x9a, 0xda, 0xe3, 0x56, 0x32, 0x93, 0x97, 0x7b, 0x32, 0x89, 0xf6, 0x0e, 0xc6, 0x55, - 0x46, 0x4b, 0x26, 0x11, 0x9c, 0xa6, 0x8a, 0xbe, 0x1d, 0xc6, 0xf9, 0x3c, 0x8b, 0x56, 0xb8, 0xc5, - 0xc2, 0x27, 0xf2, 0xf9, 0x45, 0x6f, 0x82, 0x71, 0x62, 0x43, 0xab, 0x8e, 0x0d, 0x62, 0xf6, 0x2f, - 0x95, 0x60, 0x78, 0x79, 0x8f, 0xf8, 0xf1, 0x09, 0x6c, 0x48, 0x4d, 0x98, 0xf4, 0xfc, 0xbd, 0xa0, - 0xb5, 0x47, 0x5c, 0x0e, 0x3f, 0xca, 0xe1, 0xfa, 0x98, 0x20, 0x3d, 0x59, 0x33, 0x48, 0xe0, 0x14, - 0xc9, 0x47, 0x71, 0xc3, 0xbc, 0x06, 0x23, 0x7c, 0xee, 0xc5, 0xf5, 0x32, 0x53, 0x19, 0xcc, 0x06, - 0x51, 0xac, 0x82, 0xe4, 0xf6, 0xcb, 0xb5, 0xcf, 0xa2, 0x3a, 0x7a, 0x17, 0x26, 0x37, 0xbd, 0x30, - 0x8a, 0xe9, 0xd5, 0x30, 0x8a, 0x9d, 0xdd, 0xf6, 0x43, 0xdc, 0x28, 0xd5, 0x38, 0xac, 0x18, 0x94, - 0x70, 0x8a, 0x32, 0xda, 0x82, 0x09, 0x7a, 0xc9, 0x49, 0x9a, 0x1a, 0x3d, 0x72, 0x53, 0x4a, 0x65, - 0x74, 0x53, 0x27, 0x84, 0x4d, 0xba, 0x74, 0x33, 0x69, 0xb2, 0x4b, 0x51, 0x89, 0x49, 0x14, 0x6a, - 0x33, 0xe1, 0xb7, 0x21, 0x0e, 0xa3, 0x7b, 0x12, 0x33, 0x5b, 0x29, 0x9b, 0x7b, 0x92, 0x66, 0x9c, - 0xf2, 0x25, 0x28, 0x13, 0x3a, 0x84, 0x94, 0xb0, 0x50, 0x8c, 0x5f, 0x19, 0xac, 0xaf, 0xab, 0x5e, - 0x33, 0x0c, 0xcc, 0xbb, 0xfc, 0xb2, 0xa4, 0x84, 0x13, 0xa2, 0x68, 0x09, 0x46, 0x22, 0x12, 0x7a, - 0x24, 0x12, 0x2a, 0xf2, 0x1e, 0xd3, 0xc8, 0xd0, 0xb8, 0xc5, 0x27, 0xff, 0x8d, 0x45, 0x55, 0xca, - 0x5e, 0x0e, 0xbb, 0x0d, 0x31, 0xad, 0xb8, 0xc6, 0x5e, 0x0b, 0xac, 0x14, 0x0b, 0x28, 0x7a, 0x13, - 0x46, 0x43, 0xd2, 0x62, 0xca, 0xa2, 0x89, 0xc1, 0x99, 0x9c, 0xeb, 0x9e, 0x78, 0x3d, 0x2c, 0x09, - 0xa0, 0x1b, 0x80, 0x42, 0x42, 0x65, 0x08, 0xcf, 0xdf, 0x52, 0xc6, 0x1c, 0x42, 0xd7, 0xfd, 0x84, - 0x68, 0xff, 0x14, 0x4e, 0x30, 0xa4, 0xf1, 0x2d, 0xce, 0xa8, 0x86, 0xae, 0xc1, 0x8c, 0x2a, 0xad, - 0xf9, 0x51, 0xec, 0xf8, 0x4d, 0xc2, 0xd4, 0xdc, 0xe5, 0x44, 0x2a, 0xc2, 0x69, 0x04, 0xdc, 0x5d, - 0xc7, 0xfe, 0x69, 0x2a, 0xce, 0xd0, 0xd1, 0x3a, 0x01, 0x59, 0xe0, 0x0d, 0x53, 0x16, 0x38, 0x9b, - 0x3b, 0x73, 0x39, 0x72, 0xc0, 0x03, 0x0b, 0xc6, 0xb4, 0x99, 0x4d, 0x78, 0xd6, 0xea, 0xc1, 0xb3, - 0x1d, 0x98, 0xa6, 0x9c, 0x7e, 0x6b, 0x23, 0x22, 0xe1, 0x1e, 0x71, 0x19, 0x63, 0x16, 0x1e, 0x8e, - 0x31, 0xd5, 0x2b, 0xf3, 0xcd, 0x14, 0x41, 0xdc, 0xd5, 0x04, 0x7a, 0x45, 0x6a, 0x4e, 0x8a, 0x86, - 0x91, 0x16, 0xd7, 0x8a, 0x1c, 0x1e, 0x54, 0xa6, 0xb5, 0x0f, 0xd1, 0x35, 0x25, 0xf6, 0x97, 0xe4, - 0x37, 0xaa, 0xd7, 0xfc, 0xa6, 0x62, 0x96, 0xd4, 0x6b, 0xbe, 0x62, 0x07, 0x9c, 0xe0, 0xd0, 0x35, - 0x4a, 0xaf, 0x20, 0xe9, 0xd7, 0x7c, 0x7a, 0x41, 0xc1, 0x0c, 0x62, 0xbf, 0x08, 0xb0, 0x7c, 0x9f, - 0x34, 0x39, 0xab, 0xeb, 0x0f, 0x90, 0x56, 0xfe, 0x03, 0xa4, 0xfd, 0x1f, 0x2d, 0x98, 0x5c, 0x59, - 0x32, 0xae, 0x89, 0xf3, 0x00, 0xfc, 0x6e, 0x74, 0xf7, 0xee, 0x9a, 0xd4, 0xad, 0x73, 0xf5, 0xa8, - 0x2a, 0xc5, 0x1a, 0x06, 0x3a, 0x0b, 0xc5, 0x56, 0xc7, 0x17, 0x57, 0x96, 0xd1, 0x07, 0x07, 0x95, - 0xe2, 0xcd, 0x8e, 0x8f, 0x69, 0x99, 0x66, 0x21, 0x58, 0x1c, 0xd8, 0x42, 0xb0, 0xaf, 0xa7, 0x1e, - 0xaa, 0xc0, 0xf0, 0xbd, 0x7b, 0x9e, 0xcb, 0xfd, 0x21, 0x84, 0xde, 0xff, 0xee, 0xdd, 0x5a, 0x35, - 0xc2, 0xbc, 0xdc, 0xfe, 0x6a, 0x11, 0xe6, 0x56, 0x5a, 0xe4, 0xfe, 0x07, 0xf4, 0x09, 0x19, 0xd4, - 0xbe, 0xf1, 0x68, 0xf2, 0xe2, 0x51, 0x6d, 0x58, 0xfb, 0x8f, 0xc7, 0x26, 0x8c, 0xf2, 0xc7, 0x6c, - 0xe9, 0x21, 0xf2, 0x5a, 0x56, 0xeb, 0xf9, 0x03, 0x32, 0xcf, 0x1f, 0xc5, 0x85, 0x81, 0xbb, 0x3a, - 0x69, 0x45, 0x29, 0x96, 0xc4, 0xe7, 0x3e, 0x03, 0xe3, 0x3a, 0xe6, 0x91, 0xac, 0xc9, 0xff, 0xbf, - 0x22, 0x4c, 0xd3, 0x1e, 0x3c, 0xd2, 0x89, 0xb8, 0xdd, 0x3d, 0x11, 0xc7, 0x6d, 0x51, 0xdc, 0x7f, - 0x36, 0xde, 0x49, 0xcf, 0xc6, 0x0b, 0x79, 0xb3, 0x71, 0xd2, 0x73, 0xf0, 0x3d, 0x16, 0x9c, 0x5a, - 0x69, 0x05, 0xcd, 0x9d, 0x94, 0xd5, 0xef, 0xcb, 0x30, 0x46, 0xf7, 0xf1, 0xc8, 0x70, 0x48, 0x33, - 0x5c, 0x14, 0x05, 0x08, 0xeb, 0x78, 0x5a, 0xb5, 0xdb, 0xb7, 0x6b, 0xd5, 0x2c, 0xcf, 0x46, 0x01, - 0xc2, 0x3a, 0x9e, 0xfd, 0x75, 0x0b, 0xce, 0x5d, 0x5b, 0x5a, 0x4e, 0x58, 0xb1, 0xcb, 0xb9, 0x92, - 0xde, 0x02, 0x5d, 0xad, 0x2b, 0xc9, 0x2d, 0xb0, 0xca, 0x7a, 0x21, 0xa0, 0x1f, 0x15, 0xc7, 0xe1, - 0x9f, 0xb2, 0xe0, 0xd4, 0x35, 0x2f, 0xa6, 0xc7, 0x72, 0xda, 0xcd, 0x8f, 0x9e, 0xcb, 0x91, 0x17, - 0x07, 0xe1, 0x7e, 0xda, 0xcd, 0x0f, 0x2b, 0x08, 0xd6, 0xb0, 0x78, 0xcb, 0x7b, 0x1e, 0x33, 0xa3, - 0x2a, 0x98, 0xaa, 0x28, 0x2c, 0xca, 0xb1, 0xc2, 0xa0, 0x1f, 0xe6, 0x7a, 0x21, 0xbb, 0x4a, 0xec, - 0x8b, 0x1d, 0x56, 0x7d, 0x58, 0x55, 0x02, 0x70, 0x82, 0x63, 0xff, 0x91, 0x05, 0x95, 0x6b, 0xad, - 0x4e, 0x14, 0x93, 0x70, 0x33, 0xca, 0xd9, 0x1d, 0x5f, 0x84, 0x32, 0x91, 0x17, 0x77, 0xd1, 0x6b, - 0x25, 0x6a, 0xaa, 0x1b, 0x3d, 0xf7, 0x36, 0x54, 0x78, 0x03, 0xf8, 0x10, 0x1c, 0xcd, 0x08, 0x7c, - 0x05, 0x10, 0xd1, 0xdb, 0xd2, 0xdd, 0x2f, 0x99, 0x1f, 0xd7, 0x72, 0x17, 0x14, 0x67, 0xd4, 0xb0, - 0x7f, 0xd4, 0x82, 0x33, 0xea, 0x83, 0x3f, 0x72, 0x9f, 0x69, 0xff, 0x7c, 0x01, 0x26, 0xae, 0xaf, - 0xaf, 0xd7, 0xaf, 0x91, 0x58, 0x1c, 0xdb, 0xfd, 0x75, 0xeb, 0x58, 0x53, 0x11, 0xf6, 0xba, 0x05, - 0x76, 0x62, 0xaf, 0x35, 0xcf, 0xbd, 0xf8, 0xe7, 0x6b, 0x7e, 0x7c, 0x2b, 0x6c, 0xc4, 0xa1, 0xe7, - 0x6f, 0x65, 0x2a, 0x15, 0xa5, 0x70, 0x51, 0xcc, 0x13, 0x2e, 0xd0, 0x8b, 0x30, 0xc2, 0xc2, 0x08, - 0xc8, 0x49, 0x78, 0x42, 0x5d, 0xa2, 0x58, 0xe9, 0xe1, 0x41, 0xa5, 0x7c, 0x1b, 0xd7, 0xf8, 0x1f, - 0x2c, 0x50, 0xd1, 0x6d, 0x18, 0xdb, 0x8e, 0xe3, 0xf6, 0x75, 0xe2, 0xb8, 0x24, 0x94, 0xdb, 0xe1, - 0xf9, 0xac, 0xed, 0x90, 0x0e, 0x02, 0x47, 0x4b, 0x76, 0x90, 0xa4, 0x2c, 0xc2, 0x3a, 0x1d, 0xbb, - 0x01, 0x90, 0xc0, 0x8e, 0x49, 0xa1, 0x62, 0xff, 0xbe, 0x05, 0xa3, 0xdc, 0xa3, 0x33, 0x44, 0xaf, - 0xc3, 0x10, 0xb9, 0x4f, 0x9a, 0x42, 0x54, 0xce, 0xec, 0x70, 0x22, 0x69, 0xf1, 0xe7, 0x01, 0xfa, - 0x1f, 0xb3, 0x5a, 0xe8, 0x3a, 0x8c, 0xd2, 0xde, 0x5e, 0x53, 0xee, 0xad, 0x4f, 0xe5, 0x7d, 0xb1, - 0x9a, 0x76, 0x2e, 0x9c, 0x89, 0x22, 0x2c, 0xab, 0x33, 0x55, 0x77, 0xb3, 0xdd, 0xa0, 0x3b, 0x76, - 0xdc, 0x4b, 0xb0, 0x58, 0x5f, 0xaa, 0x73, 0x24, 0x41, 0x8d, 0xab, 0xba, 0x65, 0x21, 0x4e, 0x88, - 0xd8, 0xeb, 0x50, 0xa6, 0x93, 0xba, 0xd0, 0xf2, 0x9c, 0xde, 0x5a, 0xf6, 0x67, 0xa1, 0x2c, 0x35, - 0xde, 0x91, 0xf0, 0xe4, 0x62, 0x54, 0xa5, 0x42, 0x3c, 0xc2, 0x09, 0xdc, 0xde, 0x84, 0xd3, 0xcc, - 0xd4, 0xc1, 0x89, 0xb7, 0x8d, 0x35, 0xd6, 0x9f, 0x99, 0x9f, 0x13, 0x37, 0x4f, 0x3e, 0x33, 0xb3, - 0x9a, 0xb3, 0xc4, 0xb8, 0xa4, 0x98, 0xdc, 0x42, 0xed, 0x3f, 0x1c, 0x82, 0x27, 0x6a, 0x8d, 0x7c, - 0x67, 0xdf, 0x57, 0x61, 0x9c, 0xcb, 0xa5, 0x94, 0xb5, 0x9d, 0x96, 0x68, 0x57, 0x3d, 0x04, 0xae, - 0x6b, 0x30, 0x6c, 0x60, 0xa2, 0x73, 0x50, 0xf4, 0xde, 0xf3, 0xd3, 0x76, 0xc7, 0xb5, 0xb7, 0xd6, - 0x30, 0x2d, 0xa7, 0x60, 0x2a, 0xe2, 0xf2, 0xb3, 0x43, 0x81, 0x95, 0x98, 0xfb, 0x06, 0x4c, 0x7a, - 0x51, 0x33, 0xf2, 0x6a, 0x3e, 0xdd, 0x67, 0xb4, 0x9d, 0x4a, 0x69, 0x45, 0x68, 0xa7, 0x15, 0x14, - 0xa7, 0xb0, 0xb5, 0x83, 0x6c, 0x78, 0x60, 0x31, 0xb9, 0xaf, 0x6b, 0x13, 0xbd, 0x01, 0xb4, 0xd9, - 0xd7, 0x45, 0xcc, 0x8a, 0x4f, 0xdc, 0x00, 0xf8, 0x07, 0x47, 0x58, 0xc2, 0xe8, 0x95, 0xb3, 0xb9, - 0xed, 0xb4, 0x17, 0x3a, 0xf1, 0x76, 0xd5, 0x8b, 0x9a, 0xc1, 0x1e, 0x09, 0xf7, 0x99, 0xb6, 0xa0, - 0x94, 0x5c, 0x39, 0x15, 0x60, 0xe9, 0xfa, 0x42, 0x9d, 0x62, 0xe2, 0xee, 0x3a, 0xa6, 0x18, 0x0c, - 0xc7, 0x21, 0x06, 0x2f, 0xc0, 0x94, 0x6c, 0xa6, 0x41, 0x22, 0x76, 0x28, 0x8e, 0xb1, 0x8e, 0x29, - 0xdb, 0x62, 0x51, 0xac, 0xba, 0x95, 0xc6, 0x47, 0xaf, 0xc0, 0x84, 0xe7, 0x7b, 0xb1, 0xe7, 0xc4, - 0x41, 0xc8, 0x44, 0x0a, 0xae, 0x18, 0x60, 0xa6, 0x7b, 0x35, 0x1d, 0x80, 0x4d, 0x3c, 0xfb, 0xbf, - 0x0e, 0xc1, 0x0c, 0x9b, 0xb6, 0x6f, 0x72, 0xd8, 0x47, 0x86, 0xc3, 0x6e, 0x77, 0x73, 0xd8, 0x71, - 0xc8, 0xf7, 0x1f, 0x26, 0x9b, 0xbd, 0x0b, 0x65, 0x65, 0xfc, 0x2c, 0xbd, 0x1f, 0xac, 0x1c, 0xef, - 0x87, 0xfe, 0xd2, 0x87, 0x7c, 0xb7, 0x2e, 0x66, 0xbe, 0x5b, 0xff, 0x1d, 0x0b, 0x12, 0x1b, 0x50, - 0x74, 0x1d, 0xca, 0xed, 0x80, 0xd9, 0x59, 0x84, 0xd2, 0x78, 0xe9, 0x89, 0xcc, 0x83, 0x8a, 0x1f, - 0x8a, 0x7c, 0xfc, 0xea, 0xb2, 0x06, 0x4e, 0x2a, 0xa3, 0x45, 0x18, 0x6d, 0x87, 0xa4, 0x11, 0x33, - 0x9f, 0xdf, 0xbe, 0x74, 0x38, 0x8f, 0x70, 0x7c, 0x2c, 0x2b, 0xda, 0xbf, 0x60, 0x01, 0xf0, 0xa7, - 0x61, 0xc7, 0xdf, 0x22, 0x27, 0xa0, 0xee, 0xae, 0xc2, 0x50, 0xd4, 0x26, 0xcd, 0x5e, 0x16, 0x30, - 0x49, 0x7f, 0x1a, 0x6d, 0xd2, 0x4c, 0x06, 0x9c, 0xfe, 0xc3, 0xac, 0xb6, 0xfd, 0xbd, 0x00, 0x93, - 0x09, 0x5a, 0x2d, 0x26, 0xbb, 0xe8, 0x79, 0xc3, 0x07, 0xf0, 0x6c, 0xca, 0x07, 0xb0, 0xcc, 0xb0, - 0x35, 0xcd, 0xea, 0xbb, 0x50, 0xdc, 0x75, 0xee, 0x0b, 0xd5, 0xd9, 0xb3, 0xbd, 0xbb, 0x41, 0xe9, - 0xcf, 0xaf, 0x3a, 0xf7, 0xf9, 0x25, 0xf1, 0x59, 0xc9, 0x20, 0xab, 0xce, 0xfd, 0x43, 0x6e, 0xe7, - 0xc2, 0x36, 0xa9, 0x9b, 0x5e, 0x14, 0x7f, 0xf9, 0xbf, 0x24, 0xff, 0x19, 0xdb, 0xd1, 0x46, 0x58, - 0x5b, 0x9e, 0x2f, 0x1e, 0x4a, 0x07, 0x6a, 0xcb, 0xf3, 0xd3, 0x6d, 0x79, 0xfe, 0x00, 0x6d, 0x79, - 0x3e, 0x7a, 0x1f, 0x46, 0x85, 0x51, 0x82, 0xf0, 0xb9, 0xbf, 0x32, 0x40, 0x7b, 0xc2, 0xa6, 0x81, - 0xb7, 0x79, 0x45, 0x5e, 0x82, 0x45, 0x69, 0xdf, 0x76, 0x65, 0x83, 0xe8, 0x6f, 0x5a, 0x30, 0x29, - 0x7e, 0x63, 0xf2, 0x5e, 0x87, 0x44, 0xb1, 0x90, 0x3d, 0x3f, 0x3d, 0x78, 0x1f, 0x44, 0x45, 0xde, - 0x95, 0x4f, 0xcb, 0x6d, 0xd6, 0x04, 0xf6, 0xed, 0x51, 0xaa, 0x17, 0xe8, 0x1f, 0x59, 0x70, 0x7a, - 0xd7, 0xb9, 0xcf, 0x5b, 0xe4, 0x65, 0xd8, 0x89, 0xbd, 0x40, 0x18, 0xeb, 0xbf, 0x3e, 0xd8, 0xf4, - 0x77, 0x55, 0xe7, 0x9d, 0x94, 0x76, 0xbd, 0xa7, 0xb3, 0x50, 0xfa, 0x76, 0x35, 0xb3, 0x5f, 0x73, - 0x9b, 0x50, 0x92, 0xfc, 0x96, 0xa1, 0x6a, 0xa8, 0xea, 0x82, 0xf5, 0x91, 0x6d, 0x42, 0x74, 0x47, - 0x3c, 0xda, 0x8e, 0xe0, 0xb5, 0x47, 0xda, 0xce, 0xbb, 0x30, 0xae, 0xf3, 0xd8, 0x23, 0x6d, 0xeb, - 0x3d, 0x38, 0x95, 0xc1, 0x4b, 0x8f, 0xb4, 0xc9, 0x7b, 0x70, 0x36, 0x97, 0x3f, 0x1e, 0x65, 0xc3, - 0xf6, 0xcf, 0x5b, 0xfa, 0x3e, 0x78, 0x02, 0x6f, 0x0e, 0x4b, 0xe6, 0x9b, 0xc3, 0xf9, 0xde, 0x2b, - 0x27, 0xe7, 0xe1, 0xe1, 0x1d, 0xbd, 0xd3, 0x74, 0x57, 0x47, 0x6f, 0xc2, 0x48, 0x8b, 0x96, 0x48, - 0x6b, 0x18, 0xbb, 0xff, 0x8a, 0x4c, 0x64, 0x29, 0x56, 0x1e, 0x61, 0x41, 0xc1, 0xfe, 0x65, 0x0b, - 0x86, 0x4e, 0x60, 0x24, 0xb0, 0x39, 0x12, 0xcf, 0xe7, 0x92, 0x16, 0xe1, 0x00, 0xe7, 0xb1, 0x73, - 0x6f, 0xf9, 0x7e, 0x4c, 0xfc, 0x88, 0x5d, 0x15, 0x33, 0x07, 0xe6, 0x3b, 0xe0, 0xd4, 0xcd, 0xc0, - 0x71, 0x17, 0x9d, 0x96, 0xe3, 0x37, 0x49, 0x58, 0xf3, 0xb7, 0xfa, 0x9a, 0x65, 0xe9, 0x46, 0x54, - 0x85, 0x7e, 0x46, 0x54, 0xf6, 0x36, 0x20, 0xbd, 0x01, 0x61, 0xb8, 0x8a, 0x61, 0xd4, 0xe3, 0x4d, - 0x89, 0xe1, 0x7f, 0x3a, 0x5b, 0xba, 0xeb, 0xea, 0x99, 0x66, 0x92, 0xc9, 0x0b, 0xb0, 0x24, 0x64, - 0xbf, 0x0a, 0x99, 0xce, 0x6a, 0xfd, 0xd5, 0x06, 0xf6, 0xe7, 0x61, 0x86, 0xd5, 0x3c, 0xe2, 0x95, - 0xd6, 0x4e, 0x69, 0x25, 0x33, 0x22, 0xd3, 0xd8, 0x5f, 0xb1, 0x60, 0x6a, 0x2d, 0x15, 0xb0, 0xe3, - 0x12, 0x7b, 0x00, 0xcd, 0x50, 0x86, 0x37, 0x58, 0x29, 0x16, 0xd0, 0x63, 0xd7, 0x41, 0xfd, 0xb9, - 0x05, 0x89, 0xff, 0xe8, 0x09, 0x08, 0x5e, 0x4b, 0x86, 0xe0, 0x95, 0xa9, 0x1b, 0x51, 0xdd, 0xc9, - 0x93, 0xbb, 0xd0, 0x0d, 0x15, 0x2c, 0xa1, 0x87, 0x5a, 0x24, 0x21, 0xc3, 0x5d, 0xeb, 0x27, 0xcd, - 0x88, 0x0a, 0x32, 0x7c, 0x02, 0xb3, 0x9d, 0x52, 0xb8, 0x1f, 0x11, 0xdb, 0x29, 0xd5, 0x9f, 0x9c, - 0x15, 0x5a, 0xd7, 0xba, 0xcc, 0x76, 0xae, 0x6f, 0x65, 0xb6, 0xf0, 0x4e, 0xcb, 0x7b, 0x9f, 0xa8, - 0x88, 0x2f, 0x15, 0x61, 0xdb, 0x2e, 0x4a, 0x0f, 0x0f, 0x2a, 0x13, 0xea, 0x1f, 0x8f, 0x30, 0x97, - 0x54, 0xb1, 0xaf, 0xc3, 0x54, 0x6a, 0xc0, 0xd0, 0xcb, 0x30, 0xdc, 0xde, 0x76, 0x22, 0x92, 0xb2, - 0x17, 0x1d, 0xae, 0xd3, 0xc2, 0xc3, 0x83, 0xca, 0xa4, 0xaa, 0xc0, 0x4a, 0x30, 0xc7, 0xb6, 0xff, - 0x87, 0x05, 0x43, 0x6b, 0x81, 0x7b, 0x12, 0xcc, 0xf4, 0x86, 0xc1, 0x4c, 0x4f, 0xe6, 0xc5, 0xe7, - 0xcc, 0xe5, 0xa3, 0x95, 0x14, 0x1f, 0x9d, 0xcf, 0xa5, 0xd0, 0x9b, 0x85, 0x76, 0x61, 0x8c, 0x45, - 0xfd, 0x14, 0xf6, 0xab, 0x2f, 0x1a, 0x77, 0x80, 0x4a, 0xea, 0x0e, 0x30, 0xa5, 0xa1, 0x6a, 0x37, - 0x81, 0x67, 0x60, 0x54, 0xd8, 0x50, 0xa6, 0xad, 0xfe, 0x05, 0x2e, 0x96, 0x70, 0xfb, 0xc7, 0x8a, - 0x60, 0x44, 0x19, 0x45, 0xbf, 0x6a, 0xc1, 0x7c, 0xc8, 0xdd, 0x28, 0xdd, 0x6a, 0x27, 0xf4, 0xfc, - 0xad, 0x46, 0x73, 0x9b, 0xb8, 0x9d, 0x96, 0xe7, 0x6f, 0xd5, 0xb6, 0xfc, 0x40, 0x15, 0x2f, 0xdf, - 0x27, 0xcd, 0x0e, 0x7b, 0x08, 0xe9, 0x13, 0xd2, 0x54, 0xd9, 0x28, 0x5d, 0x7d, 0x70, 0x50, 0x99, - 0xc7, 0x47, 0xa2, 0x8d, 0x8f, 0xd8, 0x17, 0xf4, 0x75, 0x0b, 0xae, 0xf0, 0xe0, 0x9b, 0x83, 0xf7, - 0xbf, 0xc7, 0x8d, 0xa9, 0x2e, 0x49, 0x25, 0x44, 0xd6, 0x49, 0xb8, 0xbb, 0xf8, 0x8a, 0x18, 0xd0, - 0x2b, 0xf5, 0xa3, 0xb5, 0x85, 0x8f, 0xda, 0x39, 0xfb, 0x5f, 0x15, 0x61, 0x42, 0x78, 0xf0, 0x8b, - 0xd0, 0x30, 0x2f, 0x1b, 0x2c, 0xf1, 0x54, 0x8a, 0x25, 0x66, 0x0c, 0xe4, 0xe3, 0x89, 0x0a, 0x13, - 0xc1, 0x4c, 0xcb, 0x89, 0xe2, 0xeb, 0xc4, 0x09, 0xe3, 0x0d, 0xe2, 0x70, 0xdb, 0x9d, 0xe2, 0x91, - 0xed, 0x8c, 0x94, 0x8a, 0xe6, 0x66, 0x9a, 0x18, 0xee, 0xa6, 0x8f, 0xf6, 0x00, 0x31, 0x03, 0xa4, - 0xd0, 0xf1, 0x23, 0xfe, 0x2d, 0x9e, 0x78, 0x33, 0x38, 0x5a, 0xab, 0x73, 0xa2, 0x55, 0x74, 0xb3, - 0x8b, 0x1a, 0xce, 0x68, 0x41, 0x33, 0x2c, 0x1b, 0x1e, 0xd4, 0xb0, 0x6c, 0xa4, 0x8f, 0x6b, 0x8d, - 0x0f, 0xd3, 0x5d, 0x41, 0x18, 0xde, 0x86, 0xb2, 0x32, 0x00, 0x14, 0x9b, 0x4e, 0xef, 0x58, 0x26, - 0x69, 0x0a, 0x5c, 0x8d, 0x92, 0x18, 0x9f, 0x26, 0xe4, 0xec, 0x7f, 0x5c, 0x30, 0x1a, 0xe4, 0x93, - 0xb8, 0x06, 0x25, 0x27, 0x8a, 0xbc, 0x2d, 0x9f, 0xb8, 0x62, 0xc5, 0x7e, 0x3c, 0x6f, 0xc5, 0x1a, - 0xcd, 0x30, 0x23, 0xcc, 0x05, 0x51, 0x13, 0x2b, 0x1a, 0xe8, 0x3a, 0xb7, 0x90, 0xda, 0x93, 0x32, - 0xff, 0x60, 0xd4, 0x40, 0xda, 0x50, 0xed, 0x11, 0x2c, 0xea, 0xa3, 0x2f, 0x70, 0x13, 0xb6, 0x1b, - 0x7e, 0x70, 0xcf, 0xbf, 0x16, 0x04, 0xd2, 0xed, 0x6e, 0x30, 0x82, 0x33, 0xd2, 0x70, 0x4d, 0x55, - 0xc7, 0x26, 0xb5, 0xc1, 0x02, 0x15, 0x7d, 0x27, 0x9c, 0xa2, 0xa4, 0x4d, 0xe7, 0x99, 0x08, 0x11, - 0x98, 0x12, 0xe1, 0x21, 0x64, 0x99, 0x18, 0xbb, 0x4c, 0x71, 0xde, 0xac, 0x9d, 0x28, 0xfd, 0x6e, - 0x98, 0x24, 0x70, 0x9a, 0xa6, 0xfd, 0x93, 0x16, 0x30, 0xb3, 0xff, 0x13, 0x10, 0x19, 0x3e, 0x6b, - 0x8a, 0x0c, 0xb3, 0x79, 0x83, 0x9c, 0x23, 0x2d, 0xbc, 0xc4, 0x39, 0xab, 0x1e, 0x06, 0xf7, 0xf7, - 0x85, 0xf9, 0x40, 0x7f, 0x49, 0xd6, 0xfe, 0xdf, 0x16, 0xdf, 0xc4, 0x94, 0x27, 0x3e, 0xfa, 0x2e, - 0x28, 0x35, 0x9d, 0xb6, 0xd3, 0xe4, 0x21, 0xb1, 0x73, 0xb5, 0x3a, 0x46, 0xa5, 0xf9, 0x25, 0x51, - 0x83, 0x6b, 0x29, 0x64, 0x98, 0x91, 0x92, 0x2c, 0xee, 0xab, 0x99, 0x50, 0x4d, 0xce, 0xed, 0xc0, - 0x84, 0x41, 0xec, 0x91, 0x5e, 0x69, 0xbf, 0x8b, 0x1f, 0xb1, 0x2a, 0x2c, 0xce, 0x2e, 0xcc, 0xf8, - 0xda, 0x7f, 0x7a, 0xa0, 0xc8, 0x6b, 0xca, 0xc7, 0xfb, 0x1d, 0xa2, 0xec, 0xf4, 0xd1, 0xdc, 0x1a, - 0x52, 0x64, 0x70, 0x37, 0x65, 0xfb, 0xc7, 0x2d, 0x78, 0x5c, 0x47, 0xd4, 0x82, 0x24, 0xf4, 0xd3, - 0x13, 0x57, 0xa1, 0x14, 0xb4, 0x49, 0xe8, 0xc4, 0x41, 0x28, 0x4e, 0x8d, 0xcb, 0x72, 0xd0, 0x6f, - 0x89, 0xf2, 0x43, 0x11, 0x50, 0x52, 0x52, 0x97, 0xe5, 0x58, 0xd5, 0xa4, 0xf7, 0x18, 0x36, 0x18, - 0x91, 0x08, 0x60, 0xc1, 0xf6, 0x00, 0xf6, 0x64, 0x1a, 0x61, 0x01, 0xb1, 0xff, 0xd0, 0xe2, 0x8c, - 0xa5, 0x77, 0x1d, 0xbd, 0x07, 0xd3, 0xbb, 0x4e, 0xdc, 0xdc, 0x5e, 0xbe, 0xdf, 0x0e, 0xb9, 0x7a, - 0x5c, 0x8e, 0xd3, 0xb3, 0xfd, 0xc6, 0x49, 0xfb, 0xc8, 0xc4, 0x2a, 0x6f, 0x35, 0x45, 0x0c, 0x77, - 0x91, 0x47, 0x1b, 0x30, 0xc6, 0xca, 0x98, 0xf9, 0x77, 0xd4, 0x4b, 0x34, 0xc8, 0x6b, 0x4d, 0xbd, - 0x3a, 0xaf, 0x26, 0x74, 0xb0, 0x4e, 0xd4, 0xfe, 0xd9, 0x22, 0x5f, 0xed, 0x4c, 0xda, 0x7e, 0x06, - 0x46, 0xdb, 0x81, 0xbb, 0x54, 0xab, 0x62, 0x31, 0x0b, 0xea, 0x18, 0xa9, 0xf3, 0x62, 0x2c, 0xe1, - 0xe8, 0x35, 0x00, 0x72, 0x3f, 0x26, 0xa1, 0xef, 0xb4, 0x94, 0x95, 0x8c, 0xb2, 0x0b, 0xad, 0x06, - 0x6b, 0x41, 0x7c, 0x3b, 0x22, 0xdf, 0xb1, 0xac, 0x50, 0xb0, 0x86, 0x8e, 0xae, 0x02, 0xb4, 0xc3, - 0x60, 0xcf, 0x73, 0x99, 0x3f, 0x61, 0xd1, 0xb4, 0x21, 0xa9, 0x2b, 0x08, 0xd6, 0xb0, 0xd0, 0x6b, - 0x30, 0xd1, 0xf1, 0x23, 0x2e, 0xa1, 0x38, 0x1b, 0x22, 0x1c, 0x63, 0x29, 0xb1, 0x6e, 0xb8, 0xad, - 0x03, 0xb1, 0x89, 0x8b, 0x16, 0x60, 0x24, 0x76, 0x98, 0x4d, 0xc4, 0x70, 0xbe, 0x31, 0xe7, 0x3a, - 0xc5, 0xd0, 0x03, 0x32, 0xd3, 0x0a, 0x58, 0x54, 0x44, 0x6f, 0x4b, 0xe7, 0x0c, 0xbe, 0xd7, 0x0b, - 0x2b, 0xea, 0xc1, 0xce, 0x05, 0xcd, 0x35, 0x43, 0x58, 0x67, 0x1b, 0xb4, 0xd0, 0x65, 0x28, 0x89, - 0x71, 0x95, 0x4f, 0x4e, 0xec, 0xa0, 0x13, 0x83, 0x1e, 0x61, 0x05, 0xb5, 0xbf, 0x5e, 0x06, 0x48, - 0x04, 0x77, 0xf4, 0x7e, 0xd7, 0xce, 0xf5, 0x5c, 0x6f, 0x51, 0xff, 0xf8, 0xb6, 0x2d, 0xf4, 0x7d, - 0x16, 0x8c, 0x39, 0xad, 0x56, 0xd0, 0x74, 0x62, 0x36, 0x1f, 0x85, 0xde, 0x3b, 0xa7, 0x68, 0x7f, - 0x21, 0xa9, 0xc1, 0xbb, 0xf0, 0xa2, 0x64, 0x51, 0x0d, 0xd2, 0xb7, 0x17, 0x7a, 0xc3, 0xe8, 0x53, - 0xf2, 0x3e, 0xc7, 0x19, 0x69, 0x2e, 0x7d, 0x9f, 0x2b, 0xb3, 0x43, 0x42, 0xbb, 0xca, 0xa1, 0xdb, - 0x46, 0x4c, 0xbe, 0xa1, 0xfc, 0xf0, 0x14, 0x86, 0xfc, 0xda, 0x2f, 0x1c, 0x1f, 0xaa, 0xeb, 0x7e, - 0x67, 0xc3, 0xf9, 0x31, 0x5c, 0xb4, 0x8b, 0x52, 0x1f, 0x9f, 0xb3, 0x77, 0x61, 0xca, 0x35, 0xa5, - 0x00, 0xc1, 0x77, 0x4f, 0xe7, 0xd1, 0x4d, 0x09, 0x0d, 0xc9, 0xb9, 0x9f, 0x02, 0xe0, 0x34, 0x61, - 0x54, 0xe7, 0x1e, 0x80, 0x35, 0x7f, 0x33, 0x10, 0x76, 0xfb, 0x76, 0xee, 0x5c, 0xee, 0x47, 0x31, - 0xd9, 0xa5, 0x98, 0xc9, 0xf1, 0xbe, 0x26, 0xea, 0x62, 0x45, 0x05, 0xbd, 0x09, 0x23, 0xcc, 0x85, - 0x38, 0x9a, 0x2d, 0xe5, 0xab, 0x1d, 0xcd, 0xe8, 0x17, 0xc9, 0xf2, 0x63, 0x7f, 0x23, 0x2c, 0x28, - 0xa0, 0xeb, 0x32, 0x44, 0x4e, 0x54, 0xf3, 0x6f, 0x47, 0x84, 0x85, 0xc8, 0x29, 0x2f, 0x7e, 0x3c, - 0x89, 0x7e, 0xc3, 0xcb, 0x33, 0x93, 0x34, 0x18, 0x35, 0xa9, 0x18, 0x25, 0xfe, 0xcb, 0xdc, 0x0f, - 0xb3, 0x90, 0xdf, 0x3d, 0x33, 0x3f, 0x44, 0x32, 0x9c, 0x77, 0x4c, 0x12, 0x38, 0x4d, 0x93, 0x8a, - 0xa4, 0x7c, 0x8d, 0x0b, 0xcb, 0xff, 0x7e, 0x3b, 0x05, 0xbf, 0x89, 0xb3, 0xe3, 0x88, 0x97, 0x60, - 0x51, 0xff, 0x44, 0xe5, 0x83, 0x39, 0x1f, 0xa6, 0xd3, 0x4b, 0xf4, 0x91, 0xca, 0x23, 0xbf, 0x3f, - 0x04, 0x93, 0x26, 0x4b, 0xa1, 0x2b, 0x50, 0x16, 0x44, 0x54, 0xbc, 0x56, 0xb5, 0x4a, 0x56, 0x25, - 0x00, 0x27, 0x38, 0x2c, 0x4c, 0x2f, 0xab, 0xae, 0x59, 0x6c, 0x26, 0x61, 0x7a, 0x15, 0x04, 0x6b, - 0x58, 0xf4, 0x66, 0xb5, 0x11, 0x04, 0xb1, 0x3a, 0x7e, 0x14, 0xdf, 0x2d, 0xb2, 0x52, 0x2c, 0xa0, - 0xf4, 0xd8, 0xd9, 0x21, 0xa1, 0x4f, 0x5a, 0x66, 0x18, 0x38, 0x75, 0xec, 0xdc, 0xd0, 0x81, 0xd8, - 0xc4, 0xa5, 0xe7, 0x69, 0x10, 0x31, 0x46, 0x16, 0xf7, 0xb7, 0xc4, 0x02, 0xb6, 0xc1, 0x9d, 0xf1, - 0x25, 0x1c, 0x7d, 0x1e, 0x1e, 0x57, 0xbe, 0xf3, 0x98, 0xab, 0xb4, 0x65, 0x8b, 0x23, 0x86, 0xba, - 0xe5, 0xf1, 0xa5, 0x6c, 0x34, 0x9c, 0x57, 0x1f, 0xbd, 0x01, 0x93, 0x42, 0xc6, 0x97, 0x14, 0x47, - 0x4d, 0x2b, 0x8b, 0x1b, 0x06, 0x14, 0xa7, 0xb0, 0x65, 0x20, 0x3b, 0x26, 0x66, 0x4b, 0x0a, 0xa5, - 0xee, 0x40, 0x76, 0x3a, 0x1c, 0x77, 0xd5, 0x40, 0x0b, 0x30, 0xc5, 0x85, 0x30, 0xcf, 0xdf, 0xe2, - 0x73, 0x22, 0x1c, 0x73, 0xd4, 0x92, 0xba, 0x65, 0x82, 0x71, 0x1a, 0x1f, 0xbd, 0x0a, 0xe3, 0x4e, - 0xd8, 0xdc, 0xf6, 0x62, 0xd2, 0x8c, 0x3b, 0x21, 0xf7, 0xd8, 0xd1, 0xcc, 0x54, 0x16, 0x34, 0x18, - 0x36, 0x30, 0xed, 0xf7, 0xe1, 0x54, 0x86, 0x4f, 0x1f, 0x65, 0x1c, 0xa7, 0xed, 0xc9, 0x6f, 0x4a, - 0xd9, 0xb2, 0x2e, 0xd4, 0x6b, 0xf2, 0x6b, 0x34, 0x2c, 0xca, 0x9d, 0xcc, 0xf7, 0x4f, 0x4b, 0xf5, - 0xa2, 0xb8, 0x73, 0x45, 0x02, 0x70, 0x82, 0x63, 0xff, 0xcf, 0x02, 0x4c, 0x65, 0xa8, 0xe9, 0x59, - 0xba, 0x91, 0xd4, 0x2d, 0x25, 0xc9, 0x2e, 0x62, 0xc6, 0x45, 0x2c, 0x1c, 0x21, 0x2e, 0x62, 0xb1, - 0x5f, 0x5c, 0xc4, 0xa1, 0x0f, 0x12, 0x17, 0xd1, 0x1c, 0xb1, 0xe1, 0x81, 0x46, 0x2c, 0x23, 0x96, - 0xe2, 0xc8, 0x11, 0x63, 0x29, 0x1a, 0x83, 0x3e, 0x3a, 0xc0, 0xa0, 0xff, 0x50, 0x01, 0xa6, 0xd3, - 0xe6, 0x74, 0x27, 0xa0, 0xb8, 0x7d, 0xd3, 0x50, 0xdc, 0x66, 0x27, 0xef, 0x49, 0x1b, 0xf9, 0xe5, - 0x29, 0x71, 0x71, 0x4a, 0x89, 0xfb, 0xc9, 0x81, 0xa8, 0xf5, 0x56, 0xe8, 0xfe, 0xbd, 0x02, 0x9c, - 0x49, 0x57, 0x59, 0x6a, 0x39, 0xde, 0xee, 0x09, 0x8c, 0xcd, 0x2d, 0x63, 0x6c, 0x9e, 0x1f, 0xe4, - 0x6b, 0x58, 0xd7, 0x72, 0x07, 0xe8, 0x6e, 0x6a, 0x80, 0xae, 0x0c, 0x4e, 0xb2, 0xf7, 0x28, 0x7d, - 0xa3, 0x08, 0xe7, 0x33, 0xeb, 0x25, 0x7a, 0xcf, 0x15, 0x43, 0xef, 0x79, 0x35, 0xa5, 0xf7, 0xb4, - 0x7b, 0xd7, 0x3e, 0x1e, 0x45, 0xa8, 0x70, 0xb6, 0x64, 0xb1, 0xf3, 0x1e, 0x52, 0x09, 0x6a, 0x38, - 0x5b, 0x2a, 0x42, 0xd8, 0xa4, 0xfb, 0x97, 0x49, 0xf9, 0xf9, 0x6f, 0x2d, 0x38, 0x9b, 0x39, 0x37, - 0x27, 0xa0, 0xec, 0x5a, 0x33, 0x95, 0x5d, 0xcf, 0x0c, 0xcc, 0xad, 0x39, 0xda, 0xaf, 0xdf, 0x18, - 0xca, 0xf9, 0x16, 0x76, 0x95, 0xbf, 0x05, 0x63, 0x4e, 0xb3, 0x49, 0xa2, 0x68, 0x35, 0x70, 0x55, - 0x2c, 0xb9, 0xe7, 0xd9, 0x3d, 0x2b, 0x29, 0x3e, 0x3c, 0xa8, 0xcc, 0xa5, 0x49, 0x24, 0x60, 0xac, - 0x53, 0x30, 0xc3, 0x5f, 0x16, 0x8e, 0x35, 0xfc, 0xe5, 0x55, 0x80, 0x3d, 0x25, 0xad, 0xa7, 0xd5, - 0x01, 0x9a, 0x1c, 0xaf, 0x61, 0xa1, 0x2f, 0x40, 0x29, 0x12, 0xc7, 0xb8, 0x60, 0xc5, 0x17, 0x07, - 0x9c, 0x2b, 0x67, 0x83, 0xb4, 0x4c, 0xaf, 0x7e, 0xa5, 0x39, 0x51, 0x24, 0xd1, 0xb7, 0xc1, 0x74, - 0xc4, 0x83, 0xc6, 0x2c, 0xb5, 0x9c, 0x88, 0x79, 0x4c, 0x08, 0x2e, 0x64, 0xae, 0xfa, 0x8d, 0x14, - 0x0c, 0x77, 0x61, 0xa3, 0x15, 0xf9, 0x51, 0x2c, 0xc2, 0x0d, 0x67, 0xcc, 0x4b, 0xc9, 0x07, 0x89, - 0x64, 0x67, 0xa7, 0xd3, 0xc3, 0xcf, 0x06, 0x5e, 0xab, 0x89, 0xbe, 0x00, 0x40, 0xd9, 0x47, 0x68, - 0x1d, 0x46, 0xf3, 0x37, 0x4f, 0xba, 0xab, 0xb8, 0x99, 0x36, 0xa2, 0xcc, 0xcd, 0xb1, 0xaa, 0x88, - 0x60, 0x8d, 0xa0, 0xfd, 0x43, 0x43, 0xf0, 0x44, 0x8f, 0x3d, 0x12, 0x2d, 0x98, 0x8f, 0xa5, 0xcf, - 0xa6, 0x2f, 0xd7, 0x73, 0x99, 0x95, 0x8d, 0xdb, 0x76, 0x8a, 0x15, 0x0b, 0x1f, 0x98, 0x15, 0x7f, - 0xc0, 0xd2, 0xd4, 0x1e, 0xdc, 0xec, 0xef, 0xb3, 0x47, 0xdc, 0xfb, 0x8f, 0x51, 0x0f, 0xb2, 0x99, - 0xa1, 0x4c, 0xb8, 0x3a, 0x70, 0x77, 0x06, 0xd6, 0x2e, 0x9c, 0xac, 0x9a, 0xf8, 0xcb, 0x16, 0x3c, - 0x95, 0xd9, 0x5f, 0xc3, 0xb8, 0xe3, 0x0a, 0x94, 0x9b, 0xb4, 0x50, 0xf3, 0x6a, 0x4b, 0xdc, 0x7d, - 0x25, 0x00, 0x27, 0x38, 0x86, 0x0d, 0x47, 0xa1, 0xaf, 0x0d, 0xc7, 0xbf, 0xb4, 0xa0, 0x6b, 0x7d, - 0x9c, 0xc0, 0x46, 0x5d, 0x33, 0x37, 0xea, 0x8f, 0x0f, 0x32, 0x97, 0x39, 0x7b, 0xf4, 0x1f, 0x4f, - 0xc1, 0x63, 0x39, 0x5e, 0x1d, 0x7b, 0x30, 0xb3, 0xd5, 0x24, 0xa6, 0xbf, 0xa0, 0xf8, 0x98, 0x4c, - 0xd7, 0xca, 0x9e, 0xce, 0x85, 0x2c, 0x73, 0xd1, 0x4c, 0x17, 0x0a, 0xee, 0x6e, 0x02, 0x7d, 0xd9, - 0x82, 0xd3, 0xce, 0xbd, 0xa8, 0x2b, 0xd5, 0xa9, 0xe0, 0x99, 0x97, 0x32, 0x95, 0x20, 0x7d, 0x52, - 0xa3, 0xf2, 0x54, 0x4e, 0x59, 0x58, 0x38, 0xb3, 0x2d, 0x84, 0x45, 0x74, 0x51, 0x2a, 0xce, 0xf7, - 0xf0, 0x68, 0xcd, 0x72, 0xbf, 0xe1, 0x5b, 0xb6, 0x84, 0x60, 0x45, 0x07, 0x7d, 0x09, 0xca, 0x5b, - 0xd2, 0x27, 0x2e, 0xe3, 0x48, 0x48, 0x06, 0xb2, 0xb7, 0xa7, 0x20, 0x7f, 0xca, 0x54, 0x48, 0x38, - 0x21, 0x8a, 0xde, 0x80, 0xa2, 0xbf, 0x19, 0xf5, 0xca, 0x86, 0x94, 0xb2, 0x7e, 0xe2, 0x7e, 0xe3, - 0x6b, 0x2b, 0x0d, 0x4c, 0x2b, 0xa2, 0xeb, 0x50, 0x0c, 0x37, 0x5c, 0xa1, 0xc1, 0xcb, 0xdc, 0xc3, - 0xf1, 0x62, 0x35, 0xa7, 0x57, 0x8c, 0x12, 0x5e, 0xac, 0x62, 0x4a, 0x02, 0xd5, 0x61, 0x98, 0xb9, - 0x42, 0x88, 0xf3, 0x20, 0x53, 0xf2, 0xed, 0xe1, 0x52, 0xc4, 0x9d, 0xcb, 0x19, 0x02, 0xe6, 0x84, - 0xd0, 0x3a, 0x8c, 0x34, 0x59, 0xe6, 0x1c, 0x11, 0xda, 0xfa, 0x53, 0x99, 0xba, 0xba, 0x1e, 0x29, - 0x85, 0x84, 0xea, 0x8a, 0x61, 0x60, 0x41, 0x8b, 0x51, 0x25, 0xed, 0xed, 0xcd, 0x48, 0x64, 0x7a, - 0xcb, 0xa6, 0xda, 0x23, 0x53, 0x96, 0xa0, 0xca, 0x30, 0xb0, 0xa0, 0x85, 0x3e, 0x03, 0x85, 0xcd, - 0xa6, 0xf0, 0x94, 0xc8, 0x54, 0xda, 0x99, 0xae, 0xff, 0x8b, 0x23, 0x0f, 0x0e, 0x2a, 0x85, 0x95, - 0x25, 0x5c, 0xd8, 0x6c, 0xa2, 0x35, 0x18, 0xdd, 0xe4, 0xce, 0xc2, 0x42, 0x2f, 0xf7, 0x74, 0xb6, - 0x1f, 0x73, 0x97, 0x3f, 0x31, 0xb7, 0xf0, 0x17, 0x00, 0x2c, 0x89, 0xb0, 0x60, 0x9d, 0xca, 0xe9, - 0x59, 0x44, 0xad, 0x9e, 0x3f, 0x9a, 0xa3, 0x3a, 0x3f, 0x9f, 0x13, 0xd7, 0x69, 0xac, 0x51, 0xa4, - 0x5c, 0xed, 0xc8, 0x74, 0x9b, 0x22, 0xaa, 0x47, 0x26, 0x57, 0xf7, 0xc9, 0x44, 0xca, 0xb9, 0x5a, - 0x21, 0xe1, 0x84, 0x28, 0xda, 0x81, 0x89, 0xbd, 0xa8, 0xbd, 0x4d, 0xe4, 0x92, 0x66, 0x41, 0x3e, - 0x72, 0x8e, 0xb0, 0x3b, 0x02, 0xd1, 0x0b, 0xe3, 0x8e, 0xd3, 0xea, 0xda, 0x85, 0xd8, 0xfb, 0xf7, - 0x1d, 0x9d, 0x18, 0x36, 0x69, 0xd3, 0xe1, 0x7f, 0xaf, 0x13, 0x6c, 0xec, 0xc7, 0x44, 0x84, 0xb9, - 0xce, 0x1c, 0xfe, 0xb7, 0x38, 0x4a, 0xf7, 0xf0, 0x0b, 0x00, 0x96, 0x44, 0xd0, 0x1d, 0x31, 0x3c, - 0x6c, 0xf7, 0x9c, 0xce, 0x0f, 0xbb, 0x94, 0x99, 0xef, 0x56, 0x1b, 0x14, 0xb6, 0x5b, 0x26, 0xa4, - 0xd8, 0x2e, 0xd9, 0xde, 0x0e, 0xe2, 0xc0, 0x4f, 0xed, 0xd0, 0x33, 0xf9, 0xbb, 0x64, 0x3d, 0x03, - 0xbf, 0x7b, 0x97, 0xcc, 0xc2, 0xc2, 0x99, 0x6d, 0x21, 0x17, 0x26, 0xdb, 0x41, 0x18, 0xdf, 0x0b, - 0x42, 0xc9, 0x5f, 0xa8, 0x87, 0x5e, 0xc1, 0xc0, 0x14, 0x2d, 0xb2, 0xb0, 0xeb, 0x26, 0x04, 0xa7, - 0x68, 0xa2, 0xcf, 0xc1, 0x68, 0xd4, 0x74, 0x5a, 0xa4, 0x76, 0x6b, 0xf6, 0x54, 0xfe, 0xf1, 0xd3, - 0xe0, 0x28, 0x39, 0xdc, 0xc5, 0x26, 0x47, 0xa0, 0x60, 0x49, 0x0e, 0xad, 0xc0, 0x30, 0xcb, 0x9d, - 0xc0, 0x22, 0x74, 0xe7, 0x44, 0x8f, 0xea, 0xb2, 0x45, 0xe5, 0x7b, 0x13, 0x2b, 0xc6, 0xbc, 0x3a, - 0x5d, 0x03, 0x42, 0xbc, 0x0e, 0xa2, 0xd9, 0x33, 0xf9, 0x6b, 0x40, 0x48, 0xe5, 0xb7, 0x1a, 0xbd, - 0xd6, 0x80, 0x42, 0xc2, 0x09, 0x51, 0xba, 0x33, 0xd3, 0xdd, 0xf4, 0xb1, 0x1e, 0xa6, 0x2f, 0xb9, - 0x7b, 0x29, 0xdb, 0x99, 0xe9, 0x4e, 0x4a, 0x49, 0xd8, 0xbf, 0x3b, 0xda, 0x2d, 0xb3, 0xb0, 0x0b, - 0xd9, 0xff, 0x6f, 0x75, 0xbd, 0xd5, 0x7d, 0x7a, 0x50, 0xfd, 0xd0, 0x31, 0x4a, 0xab, 0x5f, 0xb6, - 0xe0, 0xb1, 0x76, 0xe6, 0x87, 0x08, 0x01, 0x60, 0x30, 0x35, 0x13, 0xff, 0x74, 0x15, 0x45, 0x3f, - 0x1b, 0x8e, 0x73, 0x5a, 0x4a, 0xdf, 0x08, 0x8a, 0x1f, 0xf8, 0x46, 0xb0, 0x0a, 0x25, 0x26, 0x64, - 0xf6, 0xc9, 0x24, 0x97, 0xbe, 0x18, 0x31, 0x51, 0x62, 0x49, 0x54, 0xc4, 0x8a, 0x04, 0xfa, 0x41, - 0x0b, 0xce, 0xa5, 0xbb, 0x8e, 0x09, 0x03, 0x8b, 0x98, 0xf3, 0xfc, 0x2e, 0xb8, 0x22, 0xbe, 0xff, - 0x5c, 0xbd, 0x17, 0xf2, 0x61, 0x3f, 0x04, 0xdc, 0xbb, 0x31, 0x54, 0xcd, 0xb8, 0x8c, 0x8e, 0x98, - 0x0a, 0xf8, 0x01, 0x2e, 0xa4, 0x2f, 0xc1, 0xf8, 0x6e, 0xd0, 0xf1, 0x63, 0x61, 0x29, 0x23, 0x1e, - 0x9a, 0xd9, 0xd3, 0xf4, 0xaa, 0x56, 0x8e, 0x0d, 0xac, 0xd4, 0x35, 0xb6, 0xf4, 0xd0, 0xd7, 0xd8, - 0x77, 0x52, 0xa9, 0xe7, 0xcb, 0xf9, 0xb1, 0x0d, 0xc5, 0x8d, 0xff, 0x08, 0x09, 0xe8, 0x4f, 0xf6, - 0x6e, 0xf4, 0xd3, 0x56, 0x86, 0x50, 0xcf, 0x6f, 0xcb, 0xaf, 0x9b, 0xb7, 0xe5, 0x4b, 0xe9, 0xdb, - 0x72, 0x97, 0xf2, 0xd5, 0xb8, 0x28, 0x0f, 0x1e, 0x20, 0x7b, 0xd0, 0x88, 0x73, 0x76, 0x0b, 0x2e, - 0xf4, 0x3b, 0x96, 0x98, 0xc9, 0x94, 0xab, 0x9e, 0xda, 0x12, 0x93, 0x29, 0xb7, 0x56, 0xc5, 0x0c, - 0x32, 0x68, 0x48, 0x12, 0xfb, 0xbf, 0x5b, 0x50, 0xac, 0x07, 0xee, 0x09, 0x28, 0x93, 0x3f, 0x6b, - 0x28, 0x93, 0x9f, 0xc8, 0x3e, 0x10, 0xdd, 0x5c, 0xd5, 0xf1, 0x72, 0x4a, 0x75, 0x7c, 0x2e, 0x8f, - 0x40, 0x6f, 0x45, 0xf1, 0x4f, 0x14, 0x61, 0xac, 0x1e, 0xb8, 0xca, 0x5e, 0xf9, 0x37, 0x1e, 0xc6, - 0x5e, 0x39, 0x37, 0x80, 0xac, 0x46, 0x99, 0x59, 0x5a, 0x49, 0x77, 0xbd, 0xbf, 0x60, 0x66, 0xcb, - 0x77, 0x89, 0xb7, 0xb5, 0x1d, 0x13, 0x37, 0xfd, 0x39, 0x27, 0x67, 0xb6, 0xfc, 0xdf, 0x2c, 0x98, - 0x4a, 0xb5, 0x8e, 0x5a, 0x30, 0xd1, 0xd2, 0x35, 0x81, 0x82, 0x4f, 0x1f, 0x4a, 0x89, 0x28, 0xcc, - 0x3e, 0xb5, 0x22, 0x6c, 0x12, 0x47, 0xf3, 0x00, 0xea, 0xa5, 0x4e, 0x6a, 0xc0, 0x98, 0xd4, 0xaf, - 0x9e, 0xf2, 0x22, 0xac, 0x61, 0xa0, 0x97, 0x61, 0x2c, 0x0e, 0xda, 0x41, 0x2b, 0xd8, 0xda, 0xbf, - 0x41, 0x64, 0x10, 0x1c, 0x65, 0xcc, 0xb5, 0x9e, 0x80, 0xb0, 0x8e, 0x67, 0xff, 0x54, 0x91, 0x7f, - 0xa8, 0x1f, 0x7b, 0xdf, 0xe4, 0xc9, 0x8f, 0x36, 0x4f, 0x7e, 0xc3, 0x82, 0x69, 0xda, 0x3a, 0x33, - 0x17, 0x91, 0x87, 0xad, 0x4a, 0xd4, 0x63, 0xf5, 0x48, 0xd4, 0x73, 0x89, 0xee, 0x5d, 0x6e, 0xd0, - 0x89, 0x85, 0x06, 0x4d, 0xdb, 0x9c, 0x68, 0x29, 0x16, 0x50, 0x81, 0x47, 0xc2, 0x50, 0x78, 0x4b, - 0xe9, 0x78, 0x24, 0x0c, 0xb1, 0x80, 0xca, 0x3c, 0x3e, 0x43, 0x39, 0x79, 0x7c, 0x58, 0x48, 0x3f, - 0x61, 0x58, 0x20, 0xc4, 0x1e, 0x2d, 0xa4, 0x9f, 0xb4, 0x38, 0x48, 0x70, 0xec, 0x9f, 0x2f, 0xc2, - 0x78, 0x3d, 0x70, 0x93, 0xb7, 0xb2, 0x97, 0x8c, 0xb7, 0xb2, 0x0b, 0xa9, 0xb7, 0xb2, 0x69, 0x1d, - 0xf7, 0x9b, 0x2f, 0x63, 0x1f, 0xd6, 0xcb, 0xd8, 0xbf, 0xb0, 0xd8, 0xac, 0x55, 0xd7, 0x1a, 0x22, - 0x8f, 0xf0, 0x0b, 0x30, 0xc6, 0x36, 0x24, 0xe6, 0x9e, 0x27, 0x1f, 0x90, 0x58, 0x88, 0xfe, 0xb5, - 0xa4, 0x18, 0xeb, 0x38, 0xe8, 0x32, 0x94, 0x22, 0xe2, 0x84, 0xcd, 0x6d, 0xb5, 0xc7, 0x89, 0xe7, - 0x15, 0x5e, 0x86, 0x15, 0x14, 0xbd, 0x95, 0x44, 0x93, 0x2b, 0xe6, 0x67, 0xc4, 0xd5, 0xfb, 0xc3, - 0x97, 0x48, 0x7e, 0x08, 0x39, 0xfb, 0x2e, 0xa0, 0x6e, 0xfc, 0x01, 0xc2, 0x28, 0x55, 0xcc, 0x30, - 0x4a, 0xe5, 0xae, 0x10, 0x4a, 0x7f, 0x66, 0xc1, 0x64, 0x3d, 0x70, 0xe9, 0xd2, 0xfd, 0xcb, 0xb4, - 0x4e, 0xf5, 0x50, 0x9a, 0x23, 0x3d, 0x42, 0x69, 0x5e, 0x84, 0xe1, 0x7a, 0xe0, 0xd6, 0xea, 0xbd, - 0xdc, 0x64, 0xed, 0xbf, 0x6f, 0xc1, 0x68, 0x3d, 0x70, 0x4f, 0x40, 0x39, 0xff, 0xba, 0xa9, 0x9c, - 0x7f, 0x3c, 0x87, 0x6f, 0x72, 0xf4, 0xf1, 0xbf, 0x58, 0x84, 0x09, 0xda, 0xcf, 0x60, 0x4b, 0x4e, - 0xa5, 0x31, 0x6c, 0xd6, 0x00, 0xc3, 0x46, 0x65, 0xe1, 0xa0, 0xd5, 0x0a, 0xee, 0xa5, 0xa7, 0x75, - 0x85, 0x95, 0x62, 0x01, 0x45, 0xcf, 0x41, 0xa9, 0x1d, 0x92, 0x3d, 0x2f, 0x10, 0x42, 0xa6, 0xf6, - 0xd4, 0x51, 0x17, 0xe5, 0x58, 0x61, 0xd0, 0xcb, 0x59, 0xe4, 0xf9, 0x4d, 0x22, 0x73, 0x76, 0x0f, - 0xb1, 0xb4, 0x5e, 0x3c, 0x90, 0xb6, 0x56, 0x8e, 0x0d, 0x2c, 0x74, 0x17, 0xca, 0xec, 0x3f, 0xdb, - 0x76, 0x8e, 0x9e, 0x86, 0x48, 0x64, 0xaf, 0x10, 0x04, 0x70, 0x42, 0x0b, 0x5d, 0x05, 0x88, 0x65, - 0xb0, 0xe5, 0x48, 0x84, 0xcc, 0x51, 0x02, 0xb9, 0x0a, 0xc3, 0x1c, 0x61, 0x0d, 0x0b, 0x3d, 0x0b, - 0xe5, 0xd8, 0xf1, 0x5a, 0x37, 0x3d, 0x9f, 0x44, 0x4c, 0x2f, 0x5d, 0x94, 0xc9, 0x29, 0x44, 0x21, - 0x4e, 0xe0, 0x54, 0x20, 0x62, 0xfe, 0xe4, 0x3c, 0x89, 0x59, 0x89, 0x61, 0x33, 0x81, 0xe8, 0xa6, - 0x2a, 0xc5, 0x1a, 0x86, 0xfd, 0x2a, 0x9c, 0xa9, 0x07, 0x6e, 0x3d, 0x08, 0xe3, 0x95, 0x20, 0xbc, - 0xe7, 0x84, 0xae, 0x9c, 0xbf, 0x8a, 0xcc, 0x93, 0x40, 0x37, 0xa8, 0x61, 0xbe, 0x7c, 0x8d, 0x0c, - 0x08, 0x2f, 0x32, 0x91, 0xe8, 0x88, 0x3e, 0x22, 0x4d, 0x76, 0x38, 0xab, 0x7c, 0x85, 0xd7, 0x9c, - 0x98, 0xa0, 0x5b, 0x2c, 0xc7, 0x59, 0x72, 0x4e, 0x89, 0xea, 0xcf, 0x68, 0x39, 0xce, 0x12, 0x60, - 0xe6, 0xc1, 0x66, 0xd6, 0xb7, 0x7f, 0x76, 0x88, 0x6d, 0x59, 0xa9, 0xf4, 0x7d, 0xe8, 0x8b, 0x30, - 0x19, 0x91, 0x9b, 0x9e, 0xdf, 0xb9, 0x2f, 0x6f, 0xea, 0x3d, 0xbc, 0x7c, 0x1a, 0xcb, 0x3a, 0x26, - 0xd7, 0xf7, 0x99, 0x65, 0x38, 0x45, 0x8d, 0xce, 0x53, 0xd8, 0xf1, 0x17, 0xa2, 0xdb, 0x11, 0x09, - 0x45, 0xfa, 0x38, 0x36, 0x4f, 0x58, 0x16, 0xe2, 0x04, 0x4e, 0xf9, 0x92, 0xfd, 0x59, 0x0b, 0x7c, - 0x1c, 0x04, 0xb1, 0xe4, 0x64, 0x96, 0x80, 0x48, 0x2b, 0xc7, 0x06, 0x16, 0x5a, 0x01, 0x14, 0x75, - 0xda, 0xed, 0x16, 0x7b, 0xfd, 0x77, 0x5a, 0xd7, 0xc2, 0xa0, 0xd3, 0xe6, 0x4f, 0xa3, 0x45, 0x1e, - 0xe7, 0xb0, 0xd1, 0x05, 0xc5, 0x19, 0x35, 0xe8, 0x16, 0xb5, 0x19, 0xb1, 0xdf, 0x8c, 0xbb, 0x8b, - 0x42, 0x07, 0xdf, 0x60, 0x45, 0x58, 0xc2, 0x28, 0x33, 0xb1, 0xe6, 0x39, 0xe6, 0x48, 0xc2, 0x4c, - 0x58, 0x95, 0x62, 0x0d, 0x03, 0x2d, 0xc3, 0x68, 0xb4, 0x1f, 0x35, 0x63, 0x11, 0xe0, 0x29, 0x27, - 0x11, 0x68, 0x83, 0xa1, 0x68, 0xc9, 0x29, 0x78, 0x15, 0x2c, 0xeb, 0xa2, 0x5d, 0x98, 0xbc, 0xe7, - 0xf9, 0x6e, 0x70, 0x2f, 0x92, 0x13, 0x55, 0xca, 0xd7, 0x9f, 0xde, 0xe5, 0x98, 0xa9, 0xc9, 0x36, - 0xe6, 0xed, 0xae, 0x41, 0x0c, 0xa7, 0x88, 0xdb, 0xdf, 0xc5, 0x0e, 0x68, 0x96, 0xdb, 0x2c, 0xee, - 0x84, 0x04, 0xed, 0xc2, 0x44, 0x9b, 0x71, 0x98, 0x88, 0xbc, 0x2d, 0xd8, 0xe4, 0xa5, 0x01, 0x6f, - 0xda, 0xf7, 0xe8, 0xbe, 0xa6, 0x34, 0x61, 0xec, 0x0a, 0x53, 0xd7, 0xc9, 0x61, 0x93, 0xba, 0xfd, - 0x5b, 0xa7, 0xd9, 0x16, 0xdf, 0xe0, 0xd7, 0xe7, 0x51, 0x61, 0xee, 0x2c, 0xee, 0x0a, 0x73, 0xf9, - 0x7a, 0x9c, 0x64, 0x00, 0x85, 0xc9, 0x34, 0x96, 0x75, 0xd1, 0x5b, 0xec, 0xe5, 0x9c, 0xef, 0xab, - 0xfd, 0x52, 0x4c, 0x73, 0x2c, 0xe3, 0x91, 0x5c, 0x54, 0xc4, 0x1a, 0x11, 0x74, 0x13, 0x26, 0x44, - 0x2a, 0x2c, 0xa1, 0xa8, 0x2b, 0x1a, 0x8a, 0x98, 0x09, 0xac, 0x03, 0x0f, 0xd3, 0x05, 0xd8, 0xac, - 0x8c, 0xb6, 0xe0, 0x9c, 0x96, 0x17, 0xf2, 0x5a, 0xe8, 0xb0, 0xd7, 0x54, 0x8f, 0xad, 0x59, 0x6d, - 0x9b, 0x7e, 0xea, 0xc1, 0x41, 0xe5, 0xdc, 0x7a, 0x2f, 0x44, 0xdc, 0x9b, 0x0e, 0xba, 0x05, 0x67, - 0xb8, 0xff, 0x61, 0x95, 0x38, 0x6e, 0xcb, 0xf3, 0xd5, 0x39, 0xc0, 0xd9, 0xfe, 0xec, 0x83, 0x83, - 0xca, 0x99, 0x85, 0x2c, 0x04, 0x9c, 0x5d, 0x0f, 0xbd, 0x0e, 0x65, 0xd7, 0x8f, 0xc4, 0x18, 0x8c, - 0x18, 0x29, 0x4f, 0xcb, 0xd5, 0xb5, 0x86, 0xfa, 0xfe, 0xe4, 0x0f, 0x4e, 0x2a, 0xa0, 0x2d, 0xae, - 0xac, 0x53, 0x77, 0xe3, 0xd1, 0xfc, 0xf4, 0xf6, 0x82, 0x25, 0x0c, 0x0f, 0x24, 0xae, 0xa5, 0x56, - 0x76, 0xb9, 0x86, 0x73, 0x92, 0x41, 0x18, 0xbd, 0x09, 0x88, 0x0a, 0x8f, 0x5e, 0x93, 0x2c, 0x34, - 0x59, 0x00, 0x74, 0xa6, 0xdb, 0x2c, 0x19, 0x7e, 0x1c, 0xa8, 0xd1, 0x85, 0x81, 0x33, 0x6a, 0xa1, - 0xeb, 0x74, 0xdf, 0xd4, 0x4b, 0x85, 0x7d, 0xb1, 0xbc, 0x70, 0xcc, 0x56, 0x49, 0x3b, 0x24, 0x4d, - 0x27, 0x26, 0xae, 0x49, 0x11, 0xa7, 0xea, 0xd1, 0xa3, 0x5b, 0xe5, 0x42, 0x02, 0x33, 0xe8, 0x47, - 0x77, 0x3e, 0x24, 0x7a, 0x57, 0xdf, 0x0e, 0xa2, 0x78, 0x8d, 0xc4, 0xf7, 0x82, 0x70, 0x47, 0xc4, - 0x58, 0x4b, 0xc2, 0x7d, 0x26, 0x20, 0xac, 0xe3, 0x51, 0xd9, 0x9c, 0x3d, 0x5d, 0xd7, 0xaa, 0xec, - 0xd5, 0xb0, 0x94, 0xac, 0x93, 0xeb, 0xbc, 0x18, 0x4b, 0xb8, 0x44, 0xad, 0xd5, 0x97, 0xd8, 0x0b, - 0x60, 0x0a, 0xb5, 0x56, 0x5f, 0xc2, 0x12, 0x8e, 0x48, 0x77, 0x3a, 0xd9, 0xc9, 0x7c, 0x4d, 0x6b, - 0xf7, 0xe9, 0x33, 0x60, 0x46, 0x59, 0x1f, 0xa6, 0x55, 0x22, 0x5b, 0x1e, 0x7c, 0x2e, 0x9a, 0x9d, - 0x62, 0x4c, 0x32, 0x78, 0xe4, 0x3a, 0xa5, 0xbb, 0xae, 0xa5, 0x28, 0xe1, 0x2e, 0xda, 0x46, 0x18, - 0x96, 0xe9, 0xbe, 0xb9, 0xac, 0xae, 0x40, 0x39, 0xea, 0x6c, 0xb8, 0xc1, 0xae, 0xe3, 0xf9, 0xec, - 0xc1, 0x4e, 0x93, 0xe9, 0x1a, 0x12, 0x80, 0x13, 0x1c, 0xb4, 0x02, 0x25, 0x47, 0x2a, 0xa6, 0x51, - 0x7e, 0xcc, 0x05, 0xa5, 0x8e, 0xe6, 0x6e, 0xc8, 0x52, 0x15, 0xad, 0xea, 0xa2, 0xd7, 0x60, 0x42, - 0x78, 0x9d, 0xf1, 0x48, 0x14, 0xec, 0x41, 0x4d, 0x73, 0x16, 0x68, 0xe8, 0x40, 0x6c, 0xe2, 0xa2, - 0x2f, 0xc0, 0x24, 0xa5, 0x92, 0x6c, 0x6c, 0xb3, 0xa7, 0x07, 0xd9, 0x11, 0xb5, 0x1c, 0x25, 0x7a, - 0x65, 0x9c, 0x22, 0x86, 0x5c, 0x78, 0xd2, 0xe9, 0xc4, 0x01, 0x53, 0xee, 0x9b, 0xfc, 0xbf, 0x1e, - 0xec, 0x10, 0x9f, 0xbd, 0xab, 0x95, 0x16, 0x2f, 0x3c, 0x38, 0xa8, 0x3c, 0xb9, 0xd0, 0x03, 0x0f, - 0xf7, 0xa4, 0x82, 0x6e, 0xc3, 0x58, 0x1c, 0xb4, 0x98, 0xd9, 0x3e, 0x3d, 0x10, 0x1f, 0xcb, 0x0f, - 0x63, 0xb4, 0xae, 0xd0, 0x74, 0xc5, 0x96, 0xaa, 0x8a, 0x75, 0x3a, 0x68, 0x9d, 0xaf, 0x31, 0x16, - 0xe0, 0x95, 0x44, 0xb3, 0x8f, 0xe7, 0x0f, 0x8c, 0x8a, 0x03, 0x6b, 0x2e, 0x41, 0x51, 0x13, 0xeb, - 0x64, 0xd0, 0x35, 0x98, 0x69, 0x87, 0x5e, 0xc0, 0x18, 0x5b, 0x3d, 0xac, 0xcc, 0x9a, 0x69, 0x29, - 0xea, 0x69, 0x04, 0xdc, 0x5d, 0x87, 0xf9, 0xef, 0x89, 0xc2, 0xd9, 0xb3, 0x3c, 0xc7, 0x19, 0x97, - 0xf3, 0x79, 0x19, 0x56, 0x50, 0xb4, 0xca, 0xf6, 0x65, 0x7e, 0x45, 0x9d, 0x9d, 0xcb, 0x8f, 0x55, - 0xa1, 0x5f, 0x65, 0xb9, 0x78, 0xa6, 0xfe, 0xe2, 0x84, 0x02, 0x3d, 0x37, 0xa2, 0x6d, 0x27, 0x24, - 0xf5, 0x30, 0x68, 0x92, 0x48, 0x8b, 0x29, 0xfd, 0x04, 0x8f, 0x43, 0x49, 0xcf, 0x8d, 0x46, 0x16, - 0x02, 0xce, 0xae, 0x87, 0x5c, 0x2d, 0xb5, 0x37, 0x95, 0x7a, 0xa3, 0xd9, 0x27, 0x7b, 0x18, 0x41, - 0xa5, 0x44, 0xe4, 0x84, 0x17, 0x8d, 0xe2, 0x08, 0xa7, 0x68, 0xa2, 0x6f, 0x83, 0x69, 0x11, 0xb6, - 0x29, 0x19, 0xf7, 0x73, 0x89, 0x75, 0x25, 0x4e, 0xc1, 0x70, 0x17, 0x36, 0x8f, 0xa4, 0xed, 0x6c, - 0xb4, 0x88, 0x60, 0xc2, 0x9b, 0x9e, 0xbf, 0x13, 0xcd, 0x9e, 0x67, 0x5f, 0x2d, 0x22, 0x69, 0xa7, - 0xa1, 0x38, 0xa3, 0x06, 0x5a, 0x87, 0xe9, 0x76, 0x48, 0xc8, 0x2e, 0x93, 0xb1, 0xc4, 0x71, 0x59, - 0xe1, 0xce, 0xc5, 0xb4, 0x27, 0xf5, 0x14, 0xec, 0x30, 0xa3, 0x0c, 0x77, 0x51, 0x40, 0xf7, 0xa0, - 0x14, 0xec, 0x91, 0x70, 0x9b, 0x38, 0xee, 0xec, 0x85, 0x1e, 0xd6, 0xbe, 0xe2, 0xec, 0xbc, 0x25, - 0x70, 0x53, 0xaf, 0xbb, 0xb2, 0xb8, 0xff, 0xeb, 0xae, 0x6c, 0x6c, 0xee, 0x5b, 0x61, 0xa6, 0xeb, - 0x20, 0x3e, 0x4a, 0x30, 0xfd, 0xb9, 0x1d, 0x98, 0x30, 0x7a, 0xf3, 0x48, 0x1f, 0xd2, 0x7e, 0x75, - 0x04, 0xca, 0xea, 0x91, 0x05, 0x5d, 0x31, 0xdf, 0xce, 0xce, 0xa6, 0xdf, 0xce, 0x4a, 0xf4, 0x1a, - 0xa7, 0x3f, 0x97, 0xad, 0x1b, 0x86, 0x97, 0x85, 0xfc, 0x3c, 0x79, 0xfa, 0x45, 0xac, 0xaf, 0x13, - 0xa7, 0xa6, 0x33, 0x2b, 0x0e, 0xfc, 0x08, 0x37, 0xd4, 0x53, 0x0d, 0x37, 0x60, 0x9a, 0x6a, 0x74, - 0x91, 0xde, 0x65, 0xdd, 0x5a, 0x3d, 0x9d, 0xb7, 0x95, 0xe9, 0x5f, 0x30, 0x87, 0xb1, 0x3b, 0x3f, - 0x15, 0x51, 0xd9, 0x9d, 0x7f, 0xf4, 0x21, 0xef, 0xfc, 0x92, 0x00, 0x4e, 0x68, 0xa1, 0x16, 0xcc, - 0x34, 0xcd, 0x94, 0xbb, 0xca, 0x71, 0xf3, 0x62, 0xdf, 0xe4, 0xb7, 0x1d, 0x2d, 0xbf, 0xe1, 0x52, - 0x9a, 0x0a, 0xee, 0x26, 0x8c, 0x5e, 0x83, 0xd2, 0x7b, 0x41, 0xc4, 0x16, 0xb4, 0x90, 0xd3, 0xa4, - 0x83, 0x5b, 0xe9, 0xad, 0x5b, 0x0d, 0x56, 0x7e, 0x78, 0x50, 0x19, 0xab, 0x07, 0xae, 0xfc, 0x8b, - 0x55, 0x05, 0x74, 0x1f, 0xce, 0x18, 0xa7, 0x9b, 0xea, 0x2e, 0x0c, 0xde, 0xdd, 0x73, 0xa2, 0xb9, - 0x33, 0xb5, 0x2c, 0x4a, 0x38, 0xbb, 0x01, 0x7a, 0x64, 0xf8, 0x81, 0x48, 0x57, 0x2d, 0x65, 0x41, - 0x26, 0xf2, 0x95, 0xf5, 0x40, 0x08, 0x29, 0x04, 0xdc, 0x5d, 0x07, 0x2d, 0xc0, 0x08, 0x9b, 0xcf, - 0x68, 0x76, 0x3c, 0xdf, 0x23, 0x9d, 0x4d, 0xbc, 0x96, 0x28, 0x82, 0x55, 0xc0, 0xa2, 0xa2, 0xfd, - 0x2b, 0xfc, 0x59, 0x4b, 0x28, 0xbf, 0x49, 0xd4, 0x69, 0x9d, 0x44, 0x42, 0xb5, 0x65, 0x43, 0x2f, - 0xff, 0xd0, 0x4f, 0xa7, 0xbf, 0x6e, 0xb1, 0xa7, 0xd3, 0x75, 0xb2, 0xdb, 0x6e, 0x39, 0xf1, 0x49, - 0xf8, 0x66, 0xbd, 0x05, 0xa5, 0x58, 0xb4, 0xd6, 0x2b, 0x07, 0x9c, 0xd6, 0x29, 0xf6, 0x7c, 0xac, - 0x04, 0x4d, 0x59, 0x8a, 0x15, 0x19, 0xfb, 0x9f, 0xf2, 0x19, 0x90, 0x90, 0x13, 0x50, 0x7f, 0x56, - 0x4d, 0xf5, 0x67, 0xa5, 0xcf, 0x17, 0xe4, 0xa8, 0x41, 0xff, 0x89, 0xd9, 0x6f, 0x76, 0xa7, 0xff, - 0xa8, 0xbf, 0xd9, 0xdb, 0x3f, 0x6c, 0xc1, 0xe9, 0x2c, 0x23, 0x37, 0x7a, 0x39, 0xe0, 0x1a, 0x05, - 0x65, 0xc3, 0xa0, 0x46, 0xf0, 0x8e, 0x28, 0xc7, 0x0a, 0x63, 0xe0, 0xf4, 0x2a, 0x47, 0x0b, 0x37, - 0x78, 0x0b, 0x26, 0xea, 0x21, 0xd1, 0x8e, 0x91, 0x37, 0xb8, 0xb3, 0x25, 0xef, 0xcf, 0x73, 0x47, - 0x76, 0xb4, 0xb4, 0x7f, 0xa6, 0x00, 0xa7, 0xf9, 0x23, 0xe4, 0xc2, 0x5e, 0xe0, 0xb9, 0xf5, 0xc0, - 0x15, 0xa9, 0x71, 0xde, 0x86, 0xf1, 0xb6, 0xa6, 0x06, 0xea, 0x15, 0xf0, 0x4c, 0x57, 0x17, 0x25, - 0xd7, 0x71, 0xbd, 0x14, 0x1b, 0xb4, 0x90, 0x0b, 0xe3, 0x64, 0xcf, 0x6b, 0xaa, 0x97, 0xac, 0xc2, - 0x91, 0x8f, 0x17, 0xd5, 0xca, 0xb2, 0x46, 0x07, 0x1b, 0x54, 0x1f, 0x41, 0xb6, 0x44, 0xfb, 0x47, - 0x2c, 0x78, 0x3c, 0x27, 0x3c, 0x1a, 0x6d, 0xee, 0x1e, 0x7b, 0xee, 0x15, 0x89, 0xd7, 0x54, 0x73, - 0xfc, 0x11, 0x18, 0x0b, 0x28, 0xfa, 0x1c, 0x00, 0x7f, 0xc4, 0xa5, 0xb7, 0xd3, 0x7e, 0x71, 0xa4, - 0x8c, 0x10, 0x38, 0x5a, 0xe8, 0x12, 0x59, 0x1f, 0x6b, 0xb4, 0xec, 0x9f, 0x2c, 0xc2, 0x30, 0x7b, - 0x34, 0x44, 0x2b, 0x30, 0xba, 0xcd, 0x03, 0x86, 0x0f, 0x12, 0x9b, 0x3c, 0xb9, 0xe6, 0xf3, 0x02, - 0x2c, 0x2b, 0xa3, 0x55, 0x38, 0xc5, 0x03, 0xae, 0xb7, 0xaa, 0xa4, 0xe5, 0xec, 0x4b, 0x6d, 0x11, - 0x4f, 0x56, 0xa6, 0xc2, 0xb0, 0xd4, 0xba, 0x51, 0x70, 0x56, 0x3d, 0xf4, 0x06, 0x4c, 0x52, 0xf1, - 0x3a, 0xe8, 0xc4, 0x92, 0x12, 0x0f, 0xb5, 0xae, 0xe4, 0xf9, 0x75, 0x03, 0x8a, 0x53, 0xd8, 0xf4, - 0xde, 0xdb, 0xee, 0xd2, 0x8b, 0x0d, 0x27, 0xf7, 0x5e, 0x53, 0x17, 0x66, 0xe2, 0x32, 0xeb, 0xb6, - 0x0e, 0xb3, 0xe5, 0x5b, 0xdf, 0x0e, 0x49, 0xb4, 0x1d, 0xb4, 0x5c, 0x91, 0xeb, 0x3e, 0xb1, 0x6e, - 0x4b, 0xc1, 0x71, 0x57, 0x0d, 0x4a, 0x65, 0xd3, 0xf1, 0x5a, 0x9d, 0x90, 0x24, 0x54, 0x46, 0x4c, - 0x2a, 0x2b, 0x29, 0x38, 0xee, 0xaa, 0x41, 0xf9, 0xe8, 0x8c, 0x48, 0x3e, 0x2f, 0x43, 0x3e, 0x28, - 0x93, 0xc5, 0x51, 0xe9, 0xfc, 0xd6, 0x23, 0x3a, 0x92, 0x30, 0xea, 0x52, 0xe9, 0xeb, 0x35, 0xed, - 0xb1, 0x70, 0x7b, 0x93, 0x54, 0x1e, 0x26, 0x05, 0xfa, 0xf7, 0x17, 0xe0, 0x54, 0x86, 0x69, 0x34, - 0xdf, 0xaa, 0xb6, 0xbc, 0x28, 0x56, 0x09, 0x99, 0xb4, 0xad, 0x8a, 0x97, 0x63, 0x85, 0x41, 0xd7, - 0x03, 0xdf, 0x0c, 0xd3, 0x1b, 0xa0, 0x30, 0x3d, 0x14, 0xd0, 0x23, 0xa6, 0x36, 0xba, 0x00, 0x43, - 0x9d, 0x88, 0xc8, 0xb8, 0x66, 0x6a, 0xff, 0x66, 0xef, 0x09, 0x0c, 0x42, 0xa5, 0xdb, 0x2d, 0xa5, - 0xca, 0xd7, 0xa4, 0x5b, 0xae, 0x9f, 0xe7, 0x30, 0xda, 0xb9, 0x98, 0xf8, 0x8e, 0x1f, 0x0b, 0x19, - 0x38, 0x89, 0xc6, 0xc3, 0x4a, 0xb1, 0x80, 0xda, 0x5f, 0x2d, 0xc2, 0xd9, 0x5c, 0x67, 0x09, 0xda, - 0xf5, 0xdd, 0xc0, 0xf7, 0xe2, 0x40, 0x3d, 0x5c, 0xf3, 0x08, 0x3c, 0xa4, 0xbd, 0xbd, 0x2a, 0xca, - 0xb1, 0xc2, 0x40, 0x97, 0x60, 0x98, 0x29, 0x9c, 0xba, 0x52, 0x53, 0x2d, 0x56, 0x79, 0x90, 0x06, - 0x0e, 0x1e, 0x38, 0xed, 0xdf, 0x45, 0x18, 0x6a, 0x07, 0x41, 0x2b, 0xbd, 0x69, 0xd1, 0xee, 0x06, - 0x41, 0x0b, 0x33, 0x20, 0xfa, 0x84, 0x18, 0xaf, 0xd4, 0x4b, 0x2d, 0x76, 0xdc, 0x20, 0xd2, 0x06, - 0xed, 0x19, 0x18, 0xdd, 0x21, 0xfb, 0xa1, 0xe7, 0x6f, 0xa5, 0x5f, 0xf0, 0x6f, 0xf0, 0x62, 0x2c, - 0xe1, 0x66, 0xa2, 0x92, 0xd1, 0xe3, 0xce, 0xd7, 0x57, 0xea, 0x7b, 0x04, 0xfe, 0x40, 0x11, 0xa6, - 0xf0, 0x62, 0xf5, 0x9b, 0x13, 0x71, 0xbb, 0x7b, 0x22, 0x8e, 0x3b, 0x5f, 0x5f, 0xff, 0xd9, 0xf8, - 0x45, 0x0b, 0xa6, 0x58, 0x30, 0x6f, 0x11, 0xcd, 0xc5, 0x0b, 0xfc, 0x13, 0x10, 0xf1, 0x2e, 0xc2, - 0x70, 0x48, 0x1b, 0x4d, 0xe7, 0xa4, 0x62, 0x3d, 0xc1, 0x1c, 0x86, 0x9e, 0x84, 0x21, 0xd6, 0x05, - 0x3a, 0x79, 0xe3, 0x3c, 0x9d, 0x47, 0xd5, 0x89, 0x1d, 0xcc, 0x4a, 0x59, 0x88, 0x02, 0x4c, 0xda, - 0x2d, 0x8f, 0x77, 0x3a, 0x79, 0x81, 0xfa, 0x68, 0x84, 0x28, 0xc8, 0xec, 0xda, 0x07, 0x0b, 0x51, - 0x90, 0x4d, 0xb2, 0xf7, 0xf5, 0xe9, 0x8f, 0x0a, 0x70, 0x3e, 0xb3, 0xde, 0xc0, 0x21, 0x0a, 0x7a, - 0xd7, 0x3e, 0x1e, 0x43, 0xac, 0x6c, 0xfb, 0xa8, 0xe2, 0x09, 0xda, 0x47, 0x0d, 0x0d, 0x2a, 0x61, - 0x0e, 0x0f, 0x10, 0x39, 0x20, 0x73, 0xc8, 0x3e, 0x22, 0x91, 0x03, 0x32, 0xfb, 0x96, 0x73, 0xfd, - 0xfb, 0xf3, 0x42, 0xce, 0xb7, 0xb0, 0x8b, 0xe0, 0x65, 0xba, 0xcf, 0x30, 0x60, 0x24, 0x24, 0xe6, - 0x71, 0xbe, 0xc7, 0xf0, 0x32, 0xac, 0xa0, 0xc8, 0xd3, 0x7c, 0xf0, 0x0b, 0xf9, 0x29, 0x5a, 0x73, - 0x9b, 0x9a, 0x37, 0x1f, 0x0c, 0xd5, 0x10, 0x64, 0xf8, 0xe3, 0xaf, 0x6a, 0x97, 0xf7, 0xe2, 0xe0, - 0x97, 0xf7, 0xf1, 0xec, 0x8b, 0x3b, 0x5a, 0x80, 0xa9, 0x5d, 0xcf, 0xa7, 0xdb, 0xe6, 0xbe, 0x29, - 0xb2, 0xaa, 0x90, 0x34, 0xab, 0x26, 0x18, 0xa7, 0xf1, 0xe7, 0x5e, 0x83, 0x89, 0x87, 0x56, 0xb3, - 0xda, 0xdf, 0x28, 0xc2, 0x13, 0x3d, 0x96, 0x3d, 0xdf, 0xeb, 0x8d, 0x39, 0xd0, 0xf6, 0xfa, 0xae, - 0x79, 0xa8, 0xc3, 0xe9, 0xcd, 0x4e, 0xab, 0xb5, 0xcf, 0x4c, 0x90, 0x89, 0x2b, 0x31, 0x84, 0x4c, - 0xf9, 0xa4, 0x4c, 0xa0, 0xb2, 0x92, 0x81, 0x83, 0x33, 0x6b, 0xa2, 0x37, 0x01, 0x05, 0x22, 0x3f, - 0xf4, 0x35, 0xe2, 0x8b, 0x67, 0x18, 0x36, 0xf0, 0xc5, 0x64, 0x31, 0xde, 0xea, 0xc2, 0xc0, 0x19, - 0xb5, 0xe8, 0xe5, 0x80, 0x9e, 0x4a, 0xfb, 0xaa, 0x5b, 0xa9, 0xcb, 0x01, 0xd6, 0x81, 0xd8, 0xc4, - 0x45, 0xd7, 0x60, 0xc6, 0xd9, 0x73, 0x3c, 0x1e, 0xd4, 0x51, 0x12, 0xe0, 0xb7, 0x03, 0xa5, 0x6f, - 0x5b, 0x48, 0x23, 0xe0, 0xee, 0x3a, 0x29, 0x2f, 0xfd, 0x91, 0x7c, 0x2f, 0xfd, 0xde, 0xfb, 0x62, - 0x3f, 0xf5, 0xb1, 0xfd, 0x9f, 0x2d, 0x7a, 0x7c, 0x71, 0x21, 0xdf, 0x0c, 0x36, 0xf5, 0x1a, 0xb3, - 0x1f, 0xe2, 0xfa, 0x44, 0xcd, 0x61, 0xfe, 0x8c, 0x66, 0x3f, 0x94, 0x00, 0xb1, 0x89, 0xcb, 0x19, - 0x22, 0x4a, 0xfc, 0xb4, 0x0c, 0x11, 0x5f, 0x04, 0xdc, 0x50, 0x18, 0xe8, 0xf3, 0x30, 0xea, 0x7a, - 0x7b, 0x5e, 0x14, 0x84, 0x62, 0xb1, 0x1c, 0x51, 0x49, 0x9f, 0xec, 0x83, 0x55, 0x4e, 0x06, 0x4b, - 0x7a, 0xf6, 0x0f, 0x14, 0x60, 0x42, 0xb6, 0xf8, 0x56, 0x27, 0x88, 0x9d, 0x13, 0x38, 0x96, 0xaf, - 0x19, 0xc7, 0xf2, 0x27, 0x7a, 0x45, 0x1d, 0x61, 0x5d, 0xca, 0x3d, 0x8e, 0x6f, 0xa5, 0x8e, 0xe3, - 0xa7, 0xfb, 0x93, 0xea, 0x7d, 0x0c, 0xff, 0x33, 0x0b, 0x66, 0x0c, 0xfc, 0x13, 0x38, 0x0d, 0x56, - 0xcc, 0xd3, 0xe0, 0xa9, 0xbe, 0xdf, 0x90, 0x73, 0x0a, 0x7c, 0x6f, 0x31, 0xd5, 0x77, 0xb6, 0xfb, - 0xbf, 0x07, 0x43, 0xdb, 0x4e, 0xe8, 0xf6, 0x8a, 0x83, 0xdc, 0x55, 0x69, 0xfe, 0xba, 0x13, 0x8a, - 0xc7, 0xab, 0xe7, 0x54, 0x92, 0x55, 0x27, 0xec, 0xff, 0x70, 0xc5, 0x9a, 0x42, 0xaf, 0xc2, 0x48, - 0xd4, 0x0c, 0xda, 0xca, 0x68, 0xf8, 0x02, 0x4f, 0xc0, 0x4a, 0x4b, 0x0e, 0x0f, 0x2a, 0xc8, 0x6c, - 0x8e, 0x16, 0x63, 0x81, 0x8f, 0xde, 0x86, 0x09, 0xf6, 0x4b, 0x19, 0xaa, 0x14, 0xf3, 0xb3, 0x6f, - 0x34, 0x74, 0x44, 0x6e, 0xef, 0x64, 0x14, 0x61, 0x93, 0xd4, 0xdc, 0x16, 0x94, 0xd5, 0x67, 0x3d, - 0xd2, 0x57, 0xb0, 0xff, 0x50, 0x84, 0x53, 0x19, 0x3c, 0x87, 0x22, 0x63, 0x26, 0x5e, 0x18, 0x90, - 0x55, 0x3f, 0xe0, 0x5c, 0x44, 0xec, 0x36, 0xe4, 0x0a, 0xde, 0x1a, 0xb8, 0xd1, 0xdb, 0x11, 0x49, - 0x37, 0x4a, 0x8b, 0xfa, 0x37, 0x4a, 0x1b, 0x3b, 0xb1, 0xa1, 0xa6, 0x0d, 0xa9, 0x9e, 0x3e, 0xd2, - 0x39, 0xfd, 0x93, 0x22, 0x9c, 0xce, 0x0a, 0x84, 0x84, 0xbe, 0x33, 0x95, 0x89, 0xe9, 0xa5, 0x41, - 0x43, 0x28, 0xf1, 0xf4, 0x4c, 0x22, 0x91, 0xfa, 0xbc, 0x99, 0x9b, 0xa9, 0xef, 0x30, 0x8b, 0x36, - 0x99, 0x0f, 0x72, 0xc8, 0x33, 0x68, 0xc9, 0xed, 0xe3, 0xd3, 0x03, 0x77, 0x40, 0xa4, 0xde, 0x8a, - 0x52, 0xaf, 0xd4, 0xb2, 0xb8, 0xff, 0x2b, 0xb5, 0x6c, 0x79, 0xce, 0x83, 0x31, 0xed, 0x6b, 0x1e, - 0xe9, 0x8c, 0xef, 0xd0, 0xd3, 0x4a, 0xeb, 0xf7, 0x23, 0x9d, 0xf5, 0x1f, 0xb1, 0x20, 0x65, 0x7c, - 0xab, 0xd4, 0x62, 0x56, 0xae, 0x5a, 0xec, 0x02, 0x0c, 0x85, 0x41, 0x8b, 0xa4, 0x13, 0x1f, 0xe1, - 0xa0, 0x45, 0x30, 0x83, 0x50, 0x8c, 0x38, 0x51, 0x76, 0x8c, 0xeb, 0x17, 0x39, 0x71, 0x45, 0xbb, - 0x08, 0xc3, 0x2d, 0xb2, 0x47, 0x5a, 0xe9, 0xac, 0x02, 0x37, 0x69, 0x21, 0xe6, 0x30, 0xfb, 0x17, - 0x87, 0xe0, 0x5c, 0x4f, 0x2f, 0x7e, 0x7a, 0x1d, 0xda, 0x72, 0x62, 0x72, 0xcf, 0xd9, 0x4f, 0x87, - 0xff, 0xbe, 0xc6, 0x8b, 0xb1, 0x84, 0x33, 0xa7, 0x05, 0x1e, 0xc4, 0x33, 0xa5, 0x44, 0x14, 0xb1, - 0x3b, 0x05, 0xd4, 0x54, 0x4a, 0x15, 0x8f, 0x43, 0x29, 0x75, 0x15, 0x20, 0x8a, 0x5a, 0xdc, 0xbc, - 0xc3, 0x15, 0xde, 0x10, 0x49, 0xb0, 0xd7, 0xc6, 0x4d, 0x01, 0xc1, 0x1a, 0x16, 0xaa, 0xc2, 0x74, - 0x3b, 0x0c, 0x62, 0xae, 0x93, 0xad, 0x72, 0xbb, 0xb0, 0x61, 0xd3, 0x81, 0xba, 0x9e, 0x82, 0xe3, - 0xae, 0x1a, 0xe8, 0x65, 0x18, 0x13, 0x4e, 0xd5, 0xf5, 0x20, 0x68, 0x09, 0x35, 0x90, 0xb2, 0x32, - 0x6a, 0x24, 0x20, 0xac, 0xe3, 0x69, 0xd5, 0x98, 0xa2, 0x77, 0x34, 0xb3, 0x1a, 0x57, 0xf6, 0x6a, - 0x78, 0xa9, 0xa0, 0x68, 0xa5, 0x81, 0x82, 0xa2, 0x25, 0x8a, 0xb1, 0xf2, 0xc0, 0x6f, 0x5b, 0xd0, - 0x57, 0x95, 0xf4, 0x73, 0x43, 0x70, 0x4a, 0x30, 0xce, 0xa3, 0x66, 0x97, 0xdb, 0xdd, 0xec, 0x72, - 0x1c, 0xaa, 0xb3, 0x6f, 0xf2, 0xcc, 0x49, 0xf3, 0xcc, 0x0f, 0x5a, 0x60, 0x8a, 0x57, 0xe8, 0xff, - 0xc9, 0xcd, 0x9f, 0xf0, 0x72, 0xae, 0xb8, 0xe6, 0xca, 0x03, 0xe4, 0x03, 0x66, 0x52, 0xb0, 0xff, - 0x93, 0x05, 0x4f, 0xf5, 0xa5, 0x88, 0x96, 0xa1, 0xcc, 0x64, 0x40, 0xed, 0x76, 0xf6, 0xb4, 0xb2, - 0x1b, 0x95, 0x80, 0x1c, 0x91, 0x34, 0xa9, 0x89, 0x96, 0xbb, 0x12, 0x55, 0x3c, 0x93, 0x91, 0xa8, - 0xe2, 0x8c, 0x31, 0x3c, 0x0f, 0x99, 0xa9, 0xe2, 0x57, 0x8a, 0x30, 0xc2, 0x39, 0xfe, 0x04, 0xae, - 0x61, 0x2b, 0x42, 0x6f, 0xdb, 0x23, 0x2c, 0x1a, 0xef, 0xcb, 0x7c, 0xd5, 0x89, 0x1d, 0x2e, 0x26, - 0xa8, 0xd3, 0x2a, 0xd1, 0xf0, 0xa2, 0x79, 0xe3, 0x3c, 0x9b, 0x4b, 0x29, 0x26, 0x81, 0xd3, 0xd0, - 0x4e, 0xb7, 0x2f, 0x02, 0x44, 0x71, 0xe8, 0xf9, 0x5b, 0x94, 0x86, 0x08, 0xb0, 0xf7, 0xc9, 0x1e, - 0xad, 0x37, 0x14, 0x32, 0xef, 0x43, 0xb2, 0xd2, 0x15, 0x00, 0x6b, 0x14, 0xe7, 0x5e, 0x81, 0xb2, - 0x42, 0xee, 0xa7, 0xc5, 0x19, 0xd7, 0x85, 0x8b, 0xcf, 0xc2, 0x54, 0xaa, 0xad, 0x23, 0x29, 0x81, - 0x7e, 0xc9, 0x82, 0x29, 0xde, 0xe5, 0x65, 0x7f, 0x4f, 0xec, 0xa9, 0xef, 0xc3, 0xe9, 0x56, 0xc6, - 0xde, 0x26, 0x66, 0x74, 0xf0, 0xbd, 0x50, 0x29, 0x7d, 0xb2, 0xa0, 0x38, 0xb3, 0x0d, 0x74, 0x99, - 0xf2, 0x2d, 0xdd, 0xbb, 0x9c, 0x96, 0xf0, 0x6d, 0x1b, 0xe7, 0x3c, 0xcb, 0xcb, 0xb0, 0x82, 0xda, - 0xbf, 0x6d, 0xc1, 0x0c, 0xef, 0xf9, 0x0d, 0xb2, 0xaf, 0x56, 0xf8, 0x87, 0xd9, 0x77, 0x91, 0x3b, - 0xa6, 0x90, 0x93, 0x3b, 0x46, 0xff, 0xb4, 0x62, 0xcf, 0x4f, 0xfb, 0x19, 0x0b, 0x04, 0x07, 0x9e, - 0xc0, 0x55, 0xfe, 0x5b, 0xcd, 0xab, 0xfc, 0x5c, 0x3e, 0x53, 0xe7, 0xdc, 0xe1, 0xff, 0xcc, 0x82, - 0x69, 0x8e, 0x90, 0xbc, 0x39, 0x7f, 0xa8, 0xf3, 0x30, 0x48, 0x12, 0x48, 0x95, 0x19, 0x3e, 0xfb, - 0xa3, 0x8c, 0xc9, 0x1a, 0xea, 0x39, 0x59, 0xae, 0x5c, 0x40, 0x47, 0x48, 0x80, 0x7a, 0xe4, 0xc8, - 0xea, 0xf6, 0x1f, 0x5a, 0x80, 0x78, 0x33, 0x86, 0xf8, 0x43, 0x85, 0x0a, 0x56, 0xaa, 0x1d, 0x17, - 0xc9, 0x56, 0xa3, 0x20, 0x58, 0xc3, 0x3a, 0x96, 0xe1, 0x49, 0x19, 0x0e, 0x14, 0xfb, 0x1b, 0x0e, - 0x1c, 0x61, 0x44, 0xff, 0x60, 0x18, 0xd2, 0xde, 0x1f, 0xe8, 0x0e, 0x8c, 0x37, 0x9d, 0xb6, 0xb3, - 0xe1, 0xb5, 0xbc, 0xd8, 0x23, 0x51, 0x2f, 0x8b, 0xa3, 0x25, 0x0d, 0x4f, 0x3c, 0xf5, 0x6a, 0x25, - 0xd8, 0xa0, 0x83, 0xe6, 0x01, 0xda, 0xa1, 0xb7, 0xe7, 0xb5, 0xc8, 0x16, 0xd3, 0x38, 0x30, 0x6f, - 0x5a, 0x6e, 0x46, 0x23, 0x4b, 0xb1, 0x86, 0x91, 0xe1, 0x18, 0x59, 0x7c, 0x74, 0x8e, 0x91, 0x43, - 0x47, 0x74, 0x8c, 0x1c, 0x1e, 0xc8, 0x31, 0x12, 0xc3, 0x63, 0x52, 0x44, 0xa2, 0xff, 0x57, 0xbc, - 0x16, 0x11, 0x72, 0x31, 0xf7, 0xb1, 0x9d, 0x7b, 0x70, 0x50, 0x79, 0x0c, 0x67, 0x62, 0xe0, 0x9c, - 0x9a, 0xe8, 0x73, 0x30, 0xeb, 0xb4, 0x5a, 0xc1, 0x3d, 0x35, 0x6a, 0xcb, 0x51, 0xd3, 0x69, 0x71, - 0x8d, 0xfd, 0x28, 0xa3, 0xfa, 0xe4, 0x83, 0x83, 0xca, 0xec, 0x42, 0x0e, 0x0e, 0xce, 0xad, 0x9d, - 0xf2, 0xab, 0x2c, 0xf5, 0xf5, 0xab, 0x7c, 0x1d, 0xca, 0xed, 0x30, 0x68, 0xae, 0x6a, 0xce, 0x57, - 0xe7, 0xe9, 0x00, 0xd6, 0x65, 0xe1, 0xe1, 0x41, 0x65, 0x42, 0xfd, 0x61, 0x27, 0x7c, 0x52, 0x21, - 0xc3, 0x9d, 0x12, 0x1e, 0xa5, 0x3b, 0xe5, 0x0e, 0x9c, 0x6a, 0x90, 0xd0, 0x63, 0x79, 0x62, 0xdd, - 0x64, 0xff, 0x58, 0x87, 0x72, 0x98, 0xda, 0x31, 0x07, 0x0a, 0x25, 0xa6, 0x45, 0xb8, 0x96, 0x3b, - 0x64, 0x42, 0xc8, 0xfe, 0x5f, 0x16, 0x8c, 0x0a, 0xbf, 0x83, 0x13, 0x10, 0xd4, 0x16, 0x0c, 0x7d, - 0x79, 0x25, 0xfb, 0x54, 0x61, 0x9d, 0xc9, 0xd5, 0x94, 0xd7, 0x52, 0x9a, 0xf2, 0xa7, 0x7a, 0x11, - 0xe9, 0xad, 0x23, 0xff, 0xdb, 0x45, 0x98, 0x34, 0x5d, 0x85, 0x4e, 0x60, 0x08, 0xd6, 0x60, 0x34, - 0x12, 0x7e, 0x69, 0x85, 0x7c, 0x9b, 0xf0, 0xf4, 0x24, 0x26, 0xd6, 0x5a, 0xc2, 0x13, 0x4d, 0x12, - 0xc9, 0x74, 0x78, 0x2b, 0x3e, 0x42, 0x87, 0xb7, 0x7e, 0xde, 0x5a, 0x43, 0xc7, 0xe1, 0xad, 0x65, - 0x7f, 0x8d, 0x9d, 0x6c, 0x7a, 0xf9, 0x09, 0x08, 0x3d, 0xd7, 0xcc, 0x33, 0xd0, 0xee, 0xc1, 0x59, - 0xa2, 0x53, 0x39, 0xc2, 0xcf, 0x2f, 0x58, 0x70, 0x2e, 0xe3, 0xab, 0x34, 0x49, 0xe8, 0x39, 0x28, - 0x39, 0x1d, 0xd7, 0x53, 0x6b, 0x59, 0x7b, 0x35, 0x5b, 0x10, 0xe5, 0x58, 0x61, 0xa0, 0x25, 0x98, - 0x21, 0xf7, 0xdb, 0x1e, 0x7f, 0xb6, 0xd4, 0x4d, 0x2a, 0x8b, 0x3c, 0xbc, 0xf2, 0x72, 0x1a, 0x88, - 0xbb, 0xf1, 0x55, 0x6c, 0x81, 0x62, 0x6e, 0x6c, 0x81, 0x7f, 0x68, 0xc1, 0x98, 0xf2, 0x41, 0x7a, - 0xe4, 0xa3, 0xfd, 0x6d, 0xe6, 0x68, 0x3f, 0xd1, 0x63, 0xb4, 0x73, 0x86, 0xf9, 0xef, 0x16, 0x54, - 0x7f, 0xeb, 0x41, 0x18, 0x0f, 0x20, 0x61, 0xbd, 0x0a, 0xa5, 0x76, 0x18, 0xc4, 0x41, 0x33, 0x68, - 0x09, 0x01, 0xeb, 0xc9, 0x24, 0xf4, 0x05, 0x2f, 0x3f, 0xd4, 0x7e, 0x63, 0x85, 0xcd, 0x46, 0x2f, - 0x08, 0x63, 0x21, 0xd4, 0x24, 0xa3, 0x17, 0x84, 0x31, 0x66, 0x10, 0xe4, 0x02, 0xc4, 0x4e, 0xb8, - 0x45, 0x62, 0x5a, 0x26, 0x42, 0xed, 0xe4, 0x6f, 0x1e, 0x9d, 0xd8, 0x6b, 0xcd, 0x7b, 0x7e, 0x1c, - 0xc5, 0xe1, 0x7c, 0xcd, 0x8f, 0x6f, 0x85, 0xfc, 0xbe, 0xa6, 0xc5, 0xb2, 0x50, 0xb4, 0xb0, 0x46, - 0x57, 0x7a, 0x00, 0xb3, 0x36, 0x86, 0xcd, 0xf7, 0xf7, 0x35, 0x51, 0x8e, 0x15, 0x86, 0xfd, 0x0a, - 0x3b, 0x4a, 0xd8, 0x00, 0x1d, 0x2d, 0xcc, 0xc4, 0xd7, 0x4b, 0x6a, 0x68, 0xd9, 0xe3, 0x5b, 0x55, - 0x0f, 0x66, 0xd1, 0x7b, 0xe7, 0xa6, 0x0d, 0xeb, 0x1e, 0x42, 0x49, 0xc4, 0x0b, 0xf4, 0xed, 0x5d, - 0x66, 0x19, 0xcf, 0xf7, 0x39, 0x02, 0x8e, 0x60, 0x88, 0xc1, 0x42, 0xbe, 0xb3, 0x80, 0xd8, 0xb5, - 0xba, 0x60, 0x72, 0x2d, 0xe4, 0xbb, 0x00, 0xe0, 0x04, 0x07, 0x5d, 0x11, 0xb7, 0xfd, 0x21, 0x23, - 0x45, 0xa4, 0xbc, 0xed, 0xcb, 0xcf, 0xd7, 0xae, 0xfb, 0x2f, 0xc0, 0x98, 0x4a, 0x15, 0x59, 0xe7, - 0x79, 0xf4, 0x44, 0xe0, 0xa1, 0xe5, 0xa4, 0x18, 0xeb, 0x38, 0x68, 0x1d, 0xa6, 0x22, 0xae, 0xea, - 0x51, 0xf1, 0x25, 0xb9, 0xca, 0xec, 0x93, 0xd2, 0x9c, 0xa3, 0x61, 0x82, 0x0f, 0x59, 0x11, 0xdf, - 0x3a, 0xa4, 0x1b, 0x6f, 0x9a, 0x04, 0x7a, 0x03, 0x26, 0x5b, 0x81, 0xe3, 0x2e, 0x3a, 0x2d, 0xc7, - 0x6f, 0xb2, 0xef, 0x2d, 0x99, 0x79, 0xb3, 0x6e, 0x1a, 0x50, 0x9c, 0xc2, 0xa6, 0x82, 0x99, 0x5e, - 0x22, 0x62, 0xa2, 0x3a, 0xfe, 0x16, 0x89, 0x44, 0xfa, 0x3a, 0x26, 0x98, 0xdd, 0xcc, 0xc1, 0xc1, - 0xb9, 0xb5, 0xd1, 0xab, 0x30, 0x2e, 0x3f, 0x5f, 0x73, 0x52, 0x4f, 0x6c, 0xef, 0x35, 0x18, 0x36, - 0x30, 0xd1, 0x3d, 0x38, 0x23, 0xff, 0xaf, 0x87, 0xce, 0xe6, 0xa6, 0xd7, 0x14, 0x4e, 0x8f, 0xdc, - 0x87, 0x69, 0x41, 0x3a, 0x45, 0x2d, 0x67, 0x21, 0x1d, 0x1e, 0x54, 0x2e, 0x88, 0x51, 0xcb, 0x84, - 0xb3, 0x49, 0xcc, 0xa6, 0x8f, 0x56, 0xe1, 0xd4, 0x36, 0x71, 0x5a, 0xf1, 0xf6, 0xd2, 0x36, 0x69, - 0xee, 0xc8, 0x45, 0xc4, 0x5c, 0xdf, 0x35, 0x8b, 0xf5, 0xeb, 0xdd, 0x28, 0x38, 0xab, 0x1e, 0x7a, - 0x07, 0x66, 0xdb, 0x9d, 0x8d, 0x96, 0x17, 0x6d, 0xaf, 0x05, 0x31, 0xb3, 0x20, 0x51, 0xf9, 0x13, - 0x85, 0x8f, 0xbc, 0x72, 0xfb, 0xaf, 0xe7, 0xe0, 0xe1, 0x5c, 0x0a, 0xe8, 0x7d, 0x38, 0x93, 0x62, - 0x06, 0xe1, 0xb1, 0x3b, 0x99, 0x1f, 0x61, 0xba, 0x91, 0x55, 0x41, 0x78, 0xe0, 0x66, 0x81, 0x70, - 0x76, 0x13, 0x1f, 0xcc, 0xae, 0xe8, 0x3d, 0x5a, 0x59, 0x13, 0xca, 0xd0, 0x97, 0x60, 0x5c, 0xe7, - 0x22, 0x71, 0xc0, 0x5c, 0xca, 0x96, 0x59, 0x34, 0x6e, 0xe3, 0x22, 0x9d, 0xe2, 0x28, 0x1d, 0x86, - 0x0d, 0x8a, 0x36, 0x81, 0xec, 0xef, 0x43, 0x37, 0xa1, 0xd4, 0x6c, 0x79, 0xc4, 0x8f, 0x6b, 0xf5, - 0x5e, 0x11, 0x6c, 0x96, 0x04, 0x8e, 0x18, 0x30, 0x11, 0x92, 0x97, 0x97, 0x61, 0x45, 0xc1, 0xfe, - 0xb5, 0x02, 0x54, 0xfa, 0xc4, 0x77, 0x4e, 0xa9, 0xbf, 0xad, 0x81, 0xd4, 0xdf, 0x0b, 0x32, 0x1b, - 0xe4, 0x5a, 0x4a, 0x27, 0x90, 0xca, 0xf4, 0x98, 0x68, 0x06, 0xd2, 0xf8, 0x03, 0x9b, 0x23, 0xeb, - 0x1a, 0xf4, 0xa1, 0xbe, 0x06, 0xf5, 0xc6, 0xcb, 0xd9, 0xf0, 0xe0, 0x17, 0x91, 0xdc, 0x57, 0x10, - 0xfb, 0x6b, 0x05, 0x38, 0xa3, 0x86, 0xf0, 0x2f, 0xef, 0xc0, 0xdd, 0xee, 0x1e, 0xb8, 0x63, 0x78, - 0x43, 0xb2, 0x6f, 0xc1, 0x08, 0x8f, 0x00, 0x34, 0x80, 0x00, 0x74, 0xd1, 0x8c, 0x29, 0xa7, 0x8e, - 0x69, 0x23, 0xae, 0xdc, 0x5f, 0xb1, 0x60, 0x6a, 0x7d, 0xa9, 0xde, 0x08, 0x9a, 0x3b, 0x24, 0x5e, - 0xe0, 0x02, 0x2b, 0x16, 0xf2, 0x8f, 0xf5, 0x90, 0x72, 0x4d, 0x96, 0xc4, 0x74, 0x01, 0x86, 0xb6, - 0x83, 0x28, 0x4e, 0x3f, 0x30, 0x5f, 0x0f, 0xa2, 0x18, 0x33, 0x88, 0xfd, 0x3b, 0x16, 0x0c, 0xb3, - 0x6c, 0xc7, 0xfd, 0x52, 0x70, 0x0f, 0xf2, 0x5d, 0xe8, 0x65, 0x18, 0x21, 0x9b, 0x9b, 0xa4, 0x19, - 0x8b, 0x59, 0x95, 0x8e, 0xb6, 0x23, 0xcb, 0xac, 0x94, 0x1e, 0xfa, 0xac, 0x31, 0xfe, 0x17, 0x0b, - 0x64, 0x74, 0x17, 0xca, 0xb1, 0xb7, 0x4b, 0x16, 0x5c, 0x57, 0x3c, 0xd1, 0x3d, 0x84, 0x5f, 0xf3, - 0xba, 0x24, 0x80, 0x13, 0x5a, 0xf6, 0x57, 0x0b, 0x00, 0x49, 0x60, 0x89, 0x7e, 0x9f, 0xb8, 0xd8, - 0xf5, 0x78, 0x73, 0x29, 0xe3, 0xf1, 0x06, 0x25, 0x04, 0x33, 0x5e, 0x6e, 0xd4, 0x30, 0x15, 0x07, - 0x1a, 0xa6, 0xa1, 0xa3, 0x0c, 0xd3, 0x12, 0xcc, 0x24, 0x81, 0x31, 0xcc, 0x28, 0x41, 0xec, 0x92, - 0xb2, 0x9e, 0x06, 0xe2, 0x6e, 0x7c, 0x9b, 0xc0, 0x05, 0x19, 0x43, 0x56, 0x9e, 0x35, 0xcc, 0x02, - 0xf4, 0x08, 0xd9, 0xd8, 0x93, 0xd7, 0xa9, 0x42, 0xee, 0xeb, 0xd4, 0x8f, 0x5b, 0x70, 0x3a, 0xdd, - 0x0e, 0x73, 0xc9, 0xfb, 0x8a, 0x05, 0x67, 0xd8, 0x1b, 0x1d, 0x6b, 0xb5, 0xfb, 0x45, 0xf0, 0xa5, - 0xec, 0x80, 0x21, 0xbd, 0x7b, 0x9c, 0x78, 0x74, 0xaf, 0x66, 0x91, 0xc6, 0xd9, 0x2d, 0xda, 0x5f, - 0xb1, 0xe0, 0x6c, 0x6e, 0xea, 0x2c, 0x74, 0x19, 0x4a, 0x4e, 0xdb, 0xe3, 0x0a, 0x30, 0xb1, 0xde, - 0xd9, 0xed, 0xb1, 0x5e, 0xe3, 0xea, 0x2f, 0x05, 0x55, 0x29, 0x3d, 0x0b, 0xb9, 0x29, 0x3d, 0xfb, - 0x66, 0xe8, 0xb4, 0xbf, 0xcf, 0x02, 0xe1, 0x85, 0x35, 0xc0, 0x26, 0xf3, 0xb6, 0xcc, 0x88, 0x6c, - 0x84, 0xef, 0xbf, 0x90, 0xef, 0x96, 0x26, 0x82, 0xf6, 0xab, 0x43, 0xdd, 0x08, 0xd5, 0x6f, 0xd0, - 0xb2, 0x5d, 0x10, 0xd0, 0x2a, 0x61, 0x3a, 0xab, 0xfe, 0xbd, 0xb9, 0x0a, 0xe0, 0x32, 0x5c, 0x2d, - 0x2f, 0xaa, 0x3a, 0x42, 0xaa, 0x0a, 0x82, 0x35, 0x2c, 0xfb, 0xdf, 0x15, 0x60, 0x4c, 0x86, 0x8b, - 0xef, 0xf8, 0x83, 0xdc, 0x2c, 0x8f, 0x94, 0x3f, 0x8a, 0x25, 0x12, 0xa6, 0x84, 0xeb, 0xc9, 0x85, - 0x3c, 0x49, 0x24, 0x2c, 0x01, 0x38, 0xc1, 0x41, 0xcf, 0xc0, 0x68, 0xd4, 0xd9, 0x60, 0xe8, 0x29, - 0x9f, 0xa1, 0x06, 0x2f, 0xc6, 0x12, 0x8e, 0x3e, 0x07, 0xd3, 0xbc, 0x5e, 0x18, 0xb4, 0x9d, 0x2d, - 0xae, 0x6d, 0x1d, 0x56, 0xce, 0xbe, 0xd3, 0xab, 0x29, 0xd8, 0xe1, 0x41, 0xe5, 0x74, 0xba, 0x8c, - 0xe9, 0xe9, 0xbb, 0xa8, 0xb0, 0xb7, 0x7f, 0xde, 0x08, 0x65, 0xd3, 0x2e, 0x93, 0x81, 0x04, 0x84, - 0x75, 0x3c, 0xfb, 0x4b, 0x80, 0xba, 0x03, 0xe7, 0xa3, 0x37, 0xb9, 0xc1, 0x97, 0x17, 0x12, 0xb7, - 0x97, 0xde, 0x5e, 0x77, 0x69, 0x95, 0xe6, 0xfe, 0xbc, 0x16, 0x56, 0xf5, 0xed, 0xbf, 0x56, 0x84, - 0xe9, 0xb4, 0x83, 0x23, 0xba, 0x0e, 0x23, 0xfc, 0x8c, 0x14, 0xe4, 0x7b, 0x3c, 0x0b, 0x6b, 0x6e, - 0x91, 0x6c, 0xb7, 0x10, 0xc7, 0xac, 0xa8, 0x8f, 0xde, 0x81, 0x31, 0x37, 0xb8, 0xe7, 0xdf, 0x73, - 0x42, 0x77, 0xa1, 0x5e, 0x13, 0xec, 0x9c, 0x29, 0x6a, 0x57, 0x13, 0x34, 0xdd, 0xd5, 0x92, 0x3d, - 0x81, 0x24, 0x20, 0xac, 0x93, 0x43, 0xeb, 0x2c, 0xce, 0xe7, 0xa6, 0xb7, 0xb5, 0xea, 0xb4, 0x7b, - 0x59, 0xff, 0x2e, 0x49, 0x24, 0x8d, 0xf2, 0x84, 0x08, 0x06, 0xca, 0x01, 0x38, 0x21, 0x84, 0xbe, - 0x13, 0x4e, 0x45, 0x39, 0xda, 0xb9, 0xbc, 0x3c, 0x2a, 0xbd, 0x14, 0x56, 0x8b, 0x8f, 0xd3, 0x4b, - 0x50, 0x96, 0x1e, 0x2f, 0xab, 0x19, 0xfb, 0xd7, 0x4f, 0x81, 0xb1, 0x88, 0x8d, 0xb4, 0x5a, 0xd6, - 0x31, 0xa5, 0xd5, 0xc2, 0x50, 0x22, 0xbb, 0xed, 0x78, 0xbf, 0xea, 0x85, 0xbd, 0xd2, 0x3e, 0x2e, - 0x0b, 0x9c, 0x6e, 0x9a, 0x12, 0x82, 0x15, 0x9d, 0xec, 0xdc, 0x67, 0xc5, 0x0f, 0x31, 0xf7, 0xd9, - 0xd0, 0x09, 0xe6, 0x3e, 0x5b, 0x83, 0xd1, 0x2d, 0x2f, 0xc6, 0xa4, 0x1d, 0x08, 0xe9, 0x34, 0x93, - 0x0f, 0xaf, 0x71, 0x94, 0xee, 0x2c, 0x3b, 0x02, 0x80, 0x25, 0x11, 0xf4, 0xa6, 0x5a, 0x81, 0x23, - 0xf9, 0x97, 0xbb, 0xee, 0xf7, 0xcb, 0xcc, 0x35, 0x28, 0x32, 0x9c, 0x8d, 0x3e, 0x6c, 0x86, 0xb3, - 0x15, 0x99, 0x97, 0xac, 0x94, 0x6f, 0xaa, 0xcf, 0xd2, 0x8e, 0xf5, 0xc9, 0x46, 0x76, 0x47, 0xcf, - 0xe5, 0x56, 0xce, 0xdf, 0x09, 0x54, 0x9a, 0xb6, 0x01, 0x33, 0xb8, 0x7d, 0x9f, 0x05, 0x67, 0xda, - 0x59, 0x69, 0x0d, 0xc5, 0x5b, 0xd3, 0xcb, 0x03, 0xe7, 0x6d, 0x34, 0x1a, 0x64, 0xb7, 0xfc, 0x4c, - 0x34, 0x9c, 0xdd, 0x1c, 0x1d, 0xe8, 0x70, 0xc3, 0x15, 0x29, 0xc8, 0x2e, 0xe6, 0xa4, 0x82, 0xeb, - 0x91, 0x00, 0x6e, 0x3d, 0x23, 0xed, 0xd8, 0xc7, 0xf3, 0xd2, 0x8e, 0x0d, 0x9c, 0x6c, 0xec, 0x4d, - 0x95, 0x04, 0x6e, 0x22, 0x9f, 0x95, 0x78, 0x8a, 0xb7, 0xbe, 0xa9, 0xdf, 0xde, 0x54, 0xa9, 0xdf, - 0x7a, 0x04, 0x20, 0xe4, 0x89, 0xdd, 0xfa, 0x26, 0x7c, 0xd3, 0x92, 0xb6, 0x4d, 0x1d, 0x4f, 0xd2, - 0x36, 0xe3, 0xa8, 0xe1, 0x79, 0xc3, 0x9e, 0xed, 0x73, 0xd4, 0x18, 0x74, 0x7b, 0x1f, 0x36, 0x3c, - 0x41, 0xdd, 0xcc, 0x43, 0x25, 0xa8, 0xbb, 0xa3, 0x27, 0x7c, 0x43, 0x7d, 0x32, 0x9a, 0x51, 0xa4, - 0x01, 0xd3, 0xbc, 0xdd, 0xd1, 0x0f, 0xc0, 0x53, 0xf9, 0x74, 0xd5, 0x39, 0xd7, 0x4d, 0x37, 0xf3, - 0x08, 0xec, 0x4a, 0x1f, 0x77, 0xfa, 0x64, 0xd2, 0xc7, 0x9d, 0x39, 0xf6, 0xf4, 0x71, 0x8f, 0x9d, - 0x40, 0xfa, 0xb8, 0xc7, 0x3f, 0xd4, 0xf4, 0x71, 0xb3, 0x8f, 0x20, 0x7d, 0xdc, 0x5a, 0x92, 0x3e, - 0xee, 0x6c, 0xfe, 0x94, 0x64, 0xd8, 0x0f, 0xe7, 0x24, 0x8d, 0xbb, 0xc3, 0x8c, 0x08, 0x78, 0x04, - 0x0e, 0x11, 0x21, 0x31, 0x3b, 0x78, 0x5e, 0x56, 0x98, 0x0e, 0x3e, 0x25, 0x0a, 0x84, 0x13, 0x52, - 0x94, 0x6e, 0x92, 0x44, 0xee, 0x89, 0x1e, 0x7a, 0xdc, 0x2c, 0x0d, 0x59, 0x8f, 0xd4, 0x71, 0x6f, - 0xf0, 0xd4, 0x71, 0x4f, 0xe6, 0xef, 0xe4, 0xe9, 0xe3, 0xce, 0x4c, 0x18, 0xf7, 0xfd, 0x05, 0x38, - 0xdf, 0x7b, 0x5d, 0x24, 0xea, 0xb9, 0x7a, 0xf2, 0x9c, 0x94, 0x52, 0xcf, 0xf1, 0xbb, 0x55, 0x82, - 0x35, 0x70, 0x98, 0xa3, 0x6b, 0x30, 0xa3, 0x0c, 0x8f, 0x5b, 0x5e, 0x73, 0x5f, 0x4b, 0xc1, 0xad, - 0x1c, 0x2c, 0x1b, 0x69, 0x04, 0xdc, 0x5d, 0x07, 0x2d, 0xc0, 0x94, 0x51, 0x58, 0xab, 0x8a, 0x3b, - 0x94, 0xd2, 0x07, 0x36, 0x4c, 0x30, 0x4e, 0xe3, 0xdb, 0x3f, 0x6d, 0xc1, 0xe3, 0x39, 0x99, 0x59, - 0x06, 0x8e, 0xe2, 0xb3, 0x09, 0x53, 0x6d, 0xb3, 0x6a, 0x9f, 0x60, 0x5f, 0x46, 0xfe, 0x17, 0xd5, - 0xd7, 0x14, 0x00, 0xa7, 0x89, 0xda, 0x7f, 0x6a, 0xc1, 0xb9, 0x9e, 0x46, 0x28, 0x08, 0xc3, 0x63, - 0x5b, 0xbb, 0x91, 0xb3, 0x14, 0x12, 0x97, 0xf8, 0xb1, 0xe7, 0xb4, 0x1a, 0x6d, 0xd2, 0xd4, 0x14, - 0xac, 0xcc, 0xd6, 0xe7, 0xda, 0x6a, 0x63, 0xa1, 0x1b, 0x03, 0xe7, 0xd4, 0x44, 0x2b, 0x80, 0xba, - 0x21, 0x62, 0x86, 0x59, 0xd8, 0xcb, 0x6e, 0x7a, 0x38, 0xa3, 0x06, 0x7a, 0x05, 0x26, 0x94, 0x29, - 0x93, 0x36, 0xe3, 0x6c, 0x03, 0xc6, 0x3a, 0x00, 0x9b, 0x78, 0x8b, 0x97, 0x7f, 0xf3, 0xf7, 0xce, - 0x7f, 0xec, 0xb7, 0x7e, 0xef, 0xfc, 0xc7, 0x7e, 0xfb, 0xf7, 0xce, 0x7f, 0xec, 0xbb, 0x1f, 0x9c, - 0xb7, 0x7e, 0xf3, 0xc1, 0x79, 0xeb, 0xb7, 0x1e, 0x9c, 0xb7, 0x7e, 0xfb, 0xc1, 0x79, 0xeb, 0x77, - 0x1f, 0x9c, 0xb7, 0xbe, 0xfa, 0xfb, 0xe7, 0x3f, 0xf6, 0x76, 0x61, 0xef, 0x85, 0xff, 0x1b, 0x00, - 0x00, 0xff, 0xff, 0x7d, 0x36, 0x48, 0x60, 0xdd, 0xee, 0x00, 0x00, + // 13307 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x6d, 0x70, 0x24, 0x49, + 0x56, 0xd8, 0x55, 0xb7, 0x3e, 0xba, 0x9f, 0xbe, 0x73, 0x3e, 0x56, 0xa3, 0x9d, 0x99, 0x9e, 0xad, + 0xb9, 0x9b, 0x9d, 0xbd, 0xdd, 0xd5, 0xdc, 0xce, 0xee, 0xde, 0x2e, 0xb7, 0x77, 0x0b, 0x92, 0x5a, + 0x9a, 0xd1, 0xce, 0x48, 0xd3, 0x9b, 0xad, 0x99, 0xb9, 0x5b, 0xf6, 0x8e, 0x2b, 0x75, 0xa5, 0xa4, + 0x5a, 0xb5, 0xaa, 0x7a, 0xab, 0xaa, 0xa5, 0xd1, 0x1a, 0xc2, 0xf8, 0x30, 0x98, 0x0b, 0xc0, 0x71, + 0x61, 0x13, 0xfe, 0x00, 0x02, 0x47, 0x60, 0x1c, 0x80, 0xc1, 0x0e, 0x63, 0x30, 0x60, 0x0e, 0xdb, + 0x18, 0xec, 0x08, 0xec, 0x1f, 0x67, 0xec, 0xb0, 0xe3, 0x88, 0x20, 0x2c, 0xc3, 0xe0, 0x30, 0xc1, + 0x0f, 0x83, 0xc3, 0xf0, 0xc7, 0x32, 0x61, 0x1c, 0xf9, 0x59, 0x99, 0xd5, 0x55, 0xdd, 0xad, 0x59, + 0x8d, 0x76, 0x21, 0xee, 0x5f, 0x77, 0xbe, 0x97, 0x2f, 0xb3, 0x32, 0x5f, 0x66, 0xbe, 0x7c, 0xf9, + 0x3e, 0xe0, 0xb5, 0xed, 0x57, 0xa3, 0x59, 0x2f, 0xb8, 0xb6, 0xdd, 0x5e, 0x27, 0xa1, 0x4f, 0x62, + 0x12, 0x5d, 0xdb, 0x25, 0xbe, 0x1b, 0x84, 0xd7, 0x04, 0xc0, 0x69, 0x79, 0xd7, 0x1a, 0x41, 0x48, + 0xae, 0xed, 0xbe, 0x70, 0x6d, 0x93, 0xf8, 0x24, 0x74, 0x62, 0xe2, 0xce, 0xb6, 0xc2, 0x20, 0x0e, + 0x10, 0xe2, 0x38, 0xb3, 0x4e, 0xcb, 0x9b, 0xa5, 0x38, 0xb3, 0xbb, 0x2f, 0xcc, 0x3c, 0xbf, 0xe9, + 0xc5, 0x5b, 0xed, 0xf5, 0xd9, 0x46, 0xb0, 0x73, 0x6d, 0x33, 0xd8, 0x0c, 0xae, 0x31, 0xd4, 0xf5, + 0xf6, 0x06, 0xfb, 0xc7, 0xfe, 0xb0, 0x5f, 0x9c, 0xc4, 0xcc, 0x4b, 0x49, 0x33, 0x3b, 0x4e, 0x63, + 0xcb, 0xf3, 0x49, 0xb8, 0x7f, 0xad, 0xb5, 0xbd, 0xc9, 0xda, 0x0d, 0x49, 0x14, 0xb4, 0xc3, 0x06, + 0x49, 0x37, 0xdc, 0xb5, 0x56, 0x74, 0x6d, 0x87, 0xc4, 0x4e, 0x46, 0x77, 0x67, 0xae, 0xe5, 0xd5, + 0x0a, 0xdb, 0x7e, 0xec, 0xed, 0x74, 0x36, 0xf3, 0xc9, 0x5e, 0x15, 0xa2, 0xc6, 0x16, 0xd9, 0x71, + 0x3a, 0xea, 0xbd, 0x98, 0x57, 0xaf, 0x1d, 0x7b, 0xcd, 0x6b, 0x9e, 0x1f, 0x47, 0x71, 0x98, 0xae, + 0x64, 0x7f, 0xdd, 0x82, 0x4b, 0x73, 0xf7, 0xeb, 0x8b, 0x4d, 0x27, 0x8a, 0xbd, 0xc6, 0x7c, 0x33, + 0x68, 0x6c, 0xd7, 0xe3, 0x20, 0x24, 0xf7, 0x82, 0x66, 0x7b, 0x87, 0xd4, 0xd9, 0x40, 0xa0, 0xe7, + 0xa0, 0xb4, 0xcb, 0xfe, 0x2f, 0x57, 0xa7, 0xad, 0x4b, 0xd6, 0xd5, 0xf2, 0xfc, 0xe4, 0x6f, 0x1c, + 0x54, 0x3e, 0xf2, 0xf0, 0xa0, 0x52, 0xba, 0x27, 0xca, 0xb1, 0xc2, 0x40, 0x57, 0x60, 0x68, 0x23, + 0x5a, 0xdb, 0x6f, 0x91, 0xe9, 0x02, 0xc3, 0x1d, 0x17, 0xb8, 0x43, 0x4b, 0x75, 0x5a, 0x8a, 0x05, + 0x14, 0x5d, 0x83, 0x72, 0xcb, 0x09, 0x63, 0x2f, 0xf6, 0x02, 0x7f, 0xba, 0x78, 0xc9, 0xba, 0x3a, + 0x38, 0x3f, 0x25, 0x50, 0xcb, 0x35, 0x09, 0xc0, 0x09, 0x0e, 0xed, 0x46, 0x48, 0x1c, 0xf7, 0x8e, + 0xdf, 0xdc, 0x9f, 0x1e, 0xb8, 0x64, 0x5d, 0x2d, 0x25, 0xdd, 0xc0, 0xa2, 0x1c, 0x2b, 0x0c, 0xfb, + 0x87, 0x0a, 0x50, 0x9a, 0xdb, 0xd8, 0xf0, 0x7c, 0x2f, 0xde, 0x47, 0xf7, 0x60, 0xd4, 0x0f, 0x5c, + 0x22, 0xff, 0xb3, 0xaf, 0x18, 0xb9, 0x7e, 0x69, 0xb6, 0x93, 0x95, 0x66, 0x57, 0x35, 0xbc, 0xf9, + 0xc9, 0x87, 0x07, 0x95, 0x51, 0xbd, 0x04, 0x1b, 0x74, 0x10, 0x86, 0x91, 0x56, 0xe0, 0x2a, 0xb2, + 0x05, 0x46, 0xb6, 0x92, 0x45, 0xb6, 0x96, 0xa0, 0xcd, 0x4f, 0x3c, 0x3c, 0xa8, 0x8c, 0x68, 0x05, + 0x58, 0x27, 0x82, 0xd6, 0x61, 0x82, 0xfe, 0xf5, 0x63, 0x4f, 0xd1, 0x2d, 0x32, 0xba, 0x97, 0xf3, + 0xe8, 0x6a, 0xa8, 0xf3, 0xa7, 0x1e, 0x1e, 0x54, 0x26, 0x52, 0x85, 0x38, 0x4d, 0xd0, 0x7e, 0x0f, + 0xc6, 0xe7, 0xe2, 0xd8, 0x69, 0x6c, 0x11, 0x97, 0xcf, 0x20, 0x7a, 0x09, 0x06, 0x7c, 0x67, 0x87, + 0x88, 0xf9, 0xbd, 0x24, 0x06, 0x76, 0x60, 0xd5, 0xd9, 0x21, 0x87, 0x07, 0x95, 0xc9, 0xbb, 0xbe, + 0xf7, 0x6e, 0x5b, 0x70, 0x05, 0x2d, 0xc3, 0x0c, 0x1b, 0x5d, 0x07, 0x70, 0xc9, 0xae, 0xd7, 0x20, + 0x35, 0x27, 0xde, 0x12, 0xf3, 0x8d, 0x44, 0x5d, 0xa8, 0x2a, 0x08, 0xd6, 0xb0, 0xec, 0x07, 0x50, + 0x9e, 0xdb, 0x0d, 0x3c, 0xb7, 0x16, 0xb8, 0x11, 0xda, 0x86, 0x89, 0x56, 0x48, 0x36, 0x48, 0xa8, + 0x8a, 0xa6, 0xad, 0x4b, 0xc5, 0xab, 0x23, 0xd7, 0xaf, 0x66, 0x7e, 0xac, 0x89, 0xba, 0xe8, 0xc7, + 0xe1, 0xfe, 0xfc, 0x13, 0xa2, 0xbd, 0x89, 0x14, 0x14, 0xa7, 0x29, 0xdb, 0xff, 0xa6, 0x00, 0x67, + 0xe6, 0xde, 0x6b, 0x87, 0xa4, 0xea, 0x45, 0xdb, 0x69, 0x0e, 0x77, 0xbd, 0x68, 0x7b, 0x35, 0x19, + 0x01, 0xc5, 0x5a, 0x55, 0x51, 0x8e, 0x15, 0x06, 0x7a, 0x1e, 0x86, 0xe9, 0xef, 0xbb, 0x78, 0x59, + 0x7c, 0xf2, 0x29, 0x81, 0x3c, 0x52, 0x75, 0x62, 0xa7, 0xca, 0x41, 0x58, 0xe2, 0xa0, 0x15, 0x18, + 0x69, 0xb0, 0x05, 0xb9, 0xb9, 0x12, 0xb8, 0x84, 0x4d, 0x66, 0x79, 0xfe, 0x59, 0x8a, 0xbe, 0x90, + 0x14, 0x1f, 0x1e, 0x54, 0xa6, 0x79, 0xdf, 0x04, 0x09, 0x0d, 0x86, 0xf5, 0xfa, 0xc8, 0x56, 0xeb, + 0x6b, 0x80, 0x51, 0x82, 0x8c, 0xb5, 0x75, 0x55, 0x5b, 0x2a, 0x83, 0x6c, 0xa9, 0x8c, 0x66, 0x2f, + 0x13, 0xf4, 0x02, 0x0c, 0x6c, 0x7b, 0xbe, 0x3b, 0x3d, 0xc4, 0x68, 0x5d, 0xa0, 0x73, 0x7e, 0xcb, + 0xf3, 0xdd, 0xc3, 0x83, 0xca, 0x94, 0xd1, 0x1d, 0x5a, 0x88, 0x19, 0xaa, 0xfd, 0xc7, 0x16, 0x54, + 0x18, 0x6c, 0xc9, 0x6b, 0x92, 0x1a, 0x09, 0x23, 0x2f, 0x8a, 0x89, 0x1f, 0x1b, 0x03, 0x7a, 0x1d, + 0x20, 0x22, 0x8d, 0x90, 0xc4, 0xda, 0x90, 0x2a, 0xc6, 0xa8, 0x2b, 0x08, 0xd6, 0xb0, 0xe8, 0x86, + 0x10, 0x6d, 0x39, 0x21, 0xe3, 0x2f, 0x31, 0xb0, 0x6a, 0x43, 0xa8, 0x4b, 0x00, 0x4e, 0x70, 0x8c, + 0x0d, 0xa1, 0xd8, 0x6b, 0x43, 0x40, 0x9f, 0x81, 0x89, 0xa4, 0xb1, 0xa8, 0xe5, 0x34, 0xe4, 0x00, + 0xb2, 0x25, 0x53, 0x37, 0x41, 0x38, 0x8d, 0x6b, 0xff, 0x43, 0x4b, 0x30, 0x0f, 0xfd, 0xea, 0x0f, + 0xf9, 0xb7, 0xda, 0xbf, 0x64, 0xc1, 0xf0, 0xbc, 0xe7, 0xbb, 0x9e, 0xbf, 0x89, 0xbe, 0x08, 0x25, + 0x7a, 0x36, 0xb9, 0x4e, 0xec, 0x88, 0x7d, 0xef, 0x13, 0xda, 0xda, 0x52, 0x47, 0xc5, 0x6c, 0x6b, + 0x7b, 0x93, 0x16, 0x44, 0xb3, 0x14, 0x9b, 0xae, 0xb6, 0x3b, 0xeb, 0xef, 0x90, 0x46, 0xbc, 0x42, + 0x62, 0x27, 0xf9, 0x9c, 0xa4, 0x0c, 0x2b, 0xaa, 0xe8, 0x16, 0x0c, 0xc5, 0x4e, 0xb8, 0x49, 0x62, + 0xb1, 0x01, 0x66, 0x6e, 0x54, 0xbc, 0x26, 0xa6, 0x2b, 0x92, 0xf8, 0x0d, 0x92, 0x1c, 0x0b, 0x6b, + 0xac, 0x2a, 0x16, 0x24, 0xec, 0x1f, 0x18, 0x86, 0x73, 0x0b, 0xf5, 0xe5, 0x1c, 0xbe, 0xba, 0x02, + 0x43, 0x6e, 0xe8, 0xed, 0x92, 0x50, 0x8c, 0xb3, 0xa2, 0x52, 0x65, 0xa5, 0x58, 0x40, 0xd1, 0xab, + 0x30, 0xca, 0x0f, 0xa4, 0x9b, 0x8e, 0xef, 0x36, 0xe5, 0x10, 0x9f, 0x16, 0xd8, 0xa3, 0xf7, 0x34, + 0x18, 0x36, 0x30, 0x8f, 0xc8, 0x54, 0x57, 0x52, 0x8b, 0x31, 0xef, 0xb0, 0xfb, 0xb2, 0x05, 0x93, + 0xbc, 0x99, 0xb9, 0x38, 0x0e, 0xbd, 0xf5, 0x76, 0x4c, 0xa2, 0xe9, 0x41, 0xb6, 0xd3, 0x2d, 0x64, + 0x8d, 0x56, 0xee, 0x08, 0xcc, 0xde, 0x4b, 0x51, 0xe1, 0x9b, 0xe0, 0xb4, 0x68, 0x77, 0x32, 0x0d, + 0xc6, 0x1d, 0xcd, 0xa2, 0xef, 0xb2, 0x60, 0xa6, 0x11, 0xf8, 0x71, 0x18, 0x34, 0x9b, 0x24, 0xac, + 0xb5, 0xd7, 0x9b, 0x5e, 0xb4, 0xc5, 0xf9, 0x14, 0x93, 0x0d, 0xb6, 0x13, 0xe4, 0xcc, 0xa1, 0x42, + 0x12, 0x73, 0x78, 0xf1, 0xe1, 0x41, 0x65, 0x66, 0x21, 0x97, 0x14, 0xee, 0xd2, 0x0c, 0xda, 0x06, + 0x44, 0x8f, 0xd2, 0x7a, 0xec, 0x6c, 0x92, 0xa4, 0xf1, 0xe1, 0xfe, 0x1b, 0x3f, 0xfb, 0xf0, 0xa0, + 0x82, 0x56, 0x3b, 0x48, 0xe0, 0x0c, 0xb2, 0xe8, 0x5d, 0x38, 0x4d, 0x4b, 0x3b, 0xbe, 0xb5, 0xd4, + 0x7f, 0x73, 0xd3, 0x0f, 0x0f, 0x2a, 0xa7, 0x57, 0x33, 0x88, 0xe0, 0x4c, 0xd2, 0xe8, 0x3b, 0x2d, + 0x38, 0x97, 0x7c, 0xfe, 0xe2, 0x83, 0x96, 0xe3, 0xbb, 0x49, 0xc3, 0xe5, 0xfe, 0x1b, 0xa6, 0x7b, + 0xf2, 0xb9, 0x85, 0x3c, 0x4a, 0x38, 0xbf, 0x91, 0x99, 0x05, 0x38, 0x93, 0xc9, 0x2d, 0x68, 0x12, + 0x8a, 0xdb, 0x84, 0x4b, 0x41, 0x65, 0x4c, 0x7f, 0xa2, 0xd3, 0x30, 0xb8, 0xeb, 0x34, 0xdb, 0x62, + 0xa1, 0x60, 0xfe, 0xe7, 0x53, 0x85, 0x57, 0x2d, 0xfb, 0xdf, 0x16, 0x61, 0x62, 0xa1, 0xbe, 0xfc, + 0x48, 0xab, 0x50, 0x3f, 0x86, 0x0a, 0x5d, 0x8f, 0xa1, 0xe4, 0x50, 0x2b, 0xe6, 0x1e, 0x6a, 0x7f, + 0x39, 0x63, 0x09, 0x0d, 0xb0, 0x25, 0xf4, 0x4d, 0x39, 0x4b, 0xe8, 0x98, 0x17, 0xce, 0x6e, 0x0e, + 0x17, 0x0d, 0xb2, 0xc9, 0xcc, 0x94, 0x58, 0x6e, 0x07, 0x0d, 0xa7, 0x99, 0xde, 0xfa, 0x8e, 0xc8, + 0x4a, 0xc7, 0x33, 0x8f, 0x0d, 0x18, 0x5d, 0x70, 0x5a, 0xce, 0xba, 0xd7, 0xf4, 0x62, 0x8f, 0x44, + 0xe8, 0x69, 0x28, 0x3a, 0xae, 0xcb, 0xa4, 0xad, 0xf2, 0xfc, 0x99, 0x87, 0x07, 0x95, 0xe2, 0x9c, + 0x4b, 0x8f, 0x7d, 0x50, 0x58, 0xfb, 0x98, 0x62, 0xa0, 0x8f, 0xc3, 0x80, 0x1b, 0x06, 0xad, 0xe9, + 0x02, 0xc3, 0xa4, 0xab, 0x6e, 0xa0, 0x1a, 0x06, 0xad, 0x14, 0x2a, 0xc3, 0xb1, 0x7f, 0xb5, 0x00, + 0xe7, 0x17, 0x48, 0x6b, 0x6b, 0xa9, 0x9e, 0xb3, 0x7f, 0x5f, 0x85, 0xd2, 0x4e, 0xe0, 0x7b, 0x71, + 0x10, 0x46, 0xa2, 0x69, 0xc6, 0x11, 0x2b, 0xa2, 0x0c, 0x2b, 0x28, 0xba, 0x04, 0x03, 0xad, 0x44, + 0xa8, 0x1c, 0x95, 0x02, 0x29, 0x13, 0x27, 0x19, 0x84, 0x62, 0xb4, 0x23, 0x12, 0x0a, 0x8e, 0x51, + 0x18, 0x77, 0x23, 0x12, 0x62, 0x06, 0x49, 0x4e, 0x66, 0x7a, 0x66, 0x8b, 0x1d, 0x3a, 0x75, 0x32, + 0x53, 0x08, 0xd6, 0xb0, 0x50, 0x0d, 0xca, 0x51, 0x6a, 0x66, 0xfb, 0x5a, 0xa6, 0x63, 0xec, 0xe8, + 0x56, 0x33, 0x99, 0x10, 0x31, 0x4e, 0x94, 0xa1, 0x9e, 0x47, 0xf7, 0x57, 0x0b, 0x80, 0xf8, 0x10, + 0xfe, 0x39, 0x1b, 0xb8, 0xbb, 0x9d, 0x03, 0xd7, 0xff, 0x92, 0x38, 0xae, 0xd1, 0xfb, 0x13, 0x0b, + 0xce, 0x2f, 0x78, 0xbe, 0x4b, 0xc2, 0x1c, 0x06, 0x7c, 0x3c, 0x77, 0xd9, 0xa3, 0x09, 0x0d, 0x06, + 0x8b, 0x0d, 0x1c, 0x03, 0x8b, 0xd9, 0x7f, 0x64, 0x01, 0xe2, 0x9f, 0xfd, 0xa1, 0xfb, 0xd8, 0xbb, + 0x9d, 0x1f, 0x7b, 0x0c, 0x6c, 0x61, 0xdf, 0x86, 0xf1, 0x85, 0xa6, 0x47, 0xfc, 0x78, 0xb9, 0xb6, + 0x10, 0xf8, 0x1b, 0xde, 0x26, 0xfa, 0x14, 0x8c, 0xc7, 0xde, 0x0e, 0x09, 0xda, 0x71, 0x9d, 0x34, + 0x02, 0x9f, 0xdd, 0x24, 0xad, 0xab, 0x83, 0xf3, 0xe8, 0xe1, 0x41, 0x65, 0x7c, 0xcd, 0x80, 0xe0, + 0x14, 0xa6, 0xfd, 0xdb, 0x74, 0xfc, 0x82, 0x9d, 0x56, 0xe0, 0x13, 0x3f, 0x5e, 0x08, 0x7c, 0x97, + 0x6b, 0x1c, 0x3e, 0x05, 0x03, 0x31, 0x1d, 0x0f, 0x3e, 0x76, 0x57, 0xe4, 0x42, 0xa1, 0xa3, 0x70, + 0x78, 0x50, 0x39, 0xdb, 0x59, 0x83, 0x8d, 0x13, 0xab, 0x83, 0xbe, 0x09, 0x86, 0xa2, 0xd8, 0x89, + 0xdb, 0x91, 0x18, 0xcd, 0xa7, 0xe4, 0x68, 0xd6, 0x59, 0xe9, 0xe1, 0x41, 0x65, 0x42, 0x55, 0xe3, + 0x45, 0x58, 0x54, 0x40, 0xcf, 0xc0, 0xf0, 0x0e, 0x89, 0x22, 0x67, 0x53, 0x9e, 0x86, 0x13, 0xa2, + 0xee, 0xf0, 0x0a, 0x2f, 0xc6, 0x12, 0x8e, 0x2e, 0xc3, 0x20, 0x09, 0xc3, 0x20, 0x14, 0x6b, 0x74, + 0x4c, 0x20, 0x0e, 0x2e, 0xd2, 0x42, 0xcc, 0x61, 0xf6, 0x7f, 0xb0, 0x60, 0x42, 0xf5, 0x95, 0xb7, + 0x75, 0x02, 0xb7, 0x82, 0xb7, 0x00, 0x1a, 0xf2, 0x03, 0x23, 0x76, 0x7a, 0x8c, 0x5c, 0xbf, 0x92, + 0x79, 0x50, 0x77, 0x0c, 0x63, 0x42, 0x59, 0x15, 0x45, 0x58, 0xa3, 0x66, 0xff, 0x0b, 0x0b, 0x4e, + 0xa5, 0xbe, 0xe8, 0xb6, 0x17, 0xc5, 0xe8, 0xed, 0x8e, 0xaf, 0x9a, 0xed, 0xef, 0xab, 0x68, 0x6d, + 0xf6, 0x4d, 0x8a, 0x95, 0x65, 0x89, 0xf6, 0x45, 0x37, 0x61, 0xd0, 0x8b, 0xc9, 0x8e, 0xfc, 0x98, + 0xcb, 0x5d, 0x3f, 0x86, 0xf7, 0x2a, 0x99, 0x91, 0x65, 0x5a, 0x13, 0x73, 0x02, 0xf6, 0xdf, 0x2c, + 0x42, 0x99, 0xb3, 0xed, 0x8a, 0xd3, 0x3a, 0x81, 0xb9, 0x58, 0x86, 0x01, 0x46, 0x9d, 0x77, 0xfc, + 0xe9, 0xec, 0x8e, 0x8b, 0xee, 0xcc, 0xd2, 0x2b, 0x3f, 0x17, 0x8e, 0xd4, 0xd1, 0x40, 0x8b, 0x30, + 0x23, 0x81, 0x1c, 0x80, 0x75, 0xcf, 0x77, 0xc2, 0x7d, 0x5a, 0x36, 0x5d, 0x64, 0x04, 0x9f, 0xef, + 0x4e, 0x70, 0x5e, 0xe1, 0x73, 0xb2, 0xaa, 0xaf, 0x09, 0x00, 0x6b, 0x44, 0x67, 0x5e, 0x81, 0xb2, + 0x42, 0x3e, 0x8a, 0x8c, 0x33, 0xf3, 0x19, 0x98, 0x48, 0xb5, 0xd5, 0xab, 0xfa, 0xa8, 0x2e, 0x22, + 0xfd, 0x32, 0xdb, 0x05, 0x44, 0xaf, 0x17, 0xfd, 0x5d, 0xb1, 0x8b, 0xbe, 0x07, 0xa7, 0x9b, 0x19, + 0x9b, 0x93, 0x98, 0xaa, 0xfe, 0x37, 0xb3, 0xf3, 0xe2, 0xb3, 0x4f, 0x67, 0x41, 0x71, 0x66, 0x1b, + 0xf4, 0xd8, 0x0f, 0x5a, 0x94, 0xe7, 0x9d, 0xa6, 0x2e, 0x41, 0xdf, 0x11, 0x65, 0x58, 0x41, 0xe9, + 0x16, 0x76, 0x5a, 0x75, 0xfe, 0x16, 0xd9, 0xaf, 0x93, 0x26, 0x69, 0xc4, 0x41, 0xf8, 0x81, 0x76, + 0xff, 0x02, 0x1f, 0x7d, 0xbe, 0x03, 0x8e, 0x08, 0x02, 0xc5, 0x5b, 0x64, 0x9f, 0x4f, 0x85, 0xfe, + 0x75, 0xc5, 0xae, 0x5f, 0xf7, 0xb3, 0x16, 0x8c, 0xa9, 0xaf, 0x3b, 0x81, 0xa5, 0x3e, 0x6f, 0x2e, + 0xf5, 0x0b, 0x5d, 0x19, 0x3c, 0x67, 0x91, 0x7f, 0xb5, 0x00, 0xe7, 0x14, 0x0e, 0x15, 0xf7, 0xf9, + 0x1f, 0xc1, 0x55, 0xd7, 0xa0, 0xec, 0x2b, 0x45, 0x94, 0x65, 0x6a, 0x80, 0x12, 0x35, 0x54, 0x82, + 0x43, 0xa5, 0x36, 0x3f, 0xd1, 0x16, 0x8d, 0xea, 0x1a, 0x5a, 0xa1, 0x8d, 0x9d, 0x87, 0x62, 0xdb, + 0x73, 0xc5, 0x99, 0xf1, 0x09, 0x39, 0xda, 0x77, 0x97, 0xab, 0x87, 0x07, 0x95, 0xa7, 0xf2, 0x5e, + 0x07, 0xe8, 0x61, 0x15, 0xcd, 0xde, 0x5d, 0xae, 0x62, 0x5a, 0x19, 0xcd, 0xc1, 0x84, 0x7c, 0x00, + 0xb9, 0x47, 0x25, 0xa8, 0xc0, 0x17, 0x47, 0x8b, 0x52, 0xb3, 0x62, 0x13, 0x8c, 0xd3, 0xf8, 0xa8, + 0x0a, 0x93, 0xdb, 0xed, 0x75, 0xd2, 0x24, 0x31, 0xff, 0xe0, 0x5b, 0x84, 0x2b, 0x21, 0xcb, 0xc9, + 0x65, 0xeb, 0x56, 0x0a, 0x8e, 0x3b, 0x6a, 0xd8, 0x7f, 0xc6, 0xb6, 0x78, 0x31, 0x7a, 0xb5, 0x30, + 0xa0, 0x8c, 0x45, 0xa9, 0x7f, 0x90, 0xec, 0xdc, 0x0f, 0x57, 0xdc, 0x22, 0xfb, 0x6b, 0x01, 0x15, + 0xb6, 0xb3, 0xb9, 0xc2, 0xe0, 0xf9, 0x81, 0xae, 0x3c, 0xff, 0xf3, 0x05, 0x38, 0xa3, 0x46, 0xc0, + 0x90, 0xeb, 0xfe, 0xbc, 0x8f, 0xc1, 0x0b, 0x30, 0xe2, 0x92, 0x0d, 0xa7, 0xdd, 0x8c, 0x95, 0x46, + 0x7c, 0x90, 0xbf, 0x8a, 0x54, 0x93, 0x62, 0xac, 0xe3, 0x1c, 0x61, 0xd8, 0x7e, 0x7c, 0x84, 0x9d, + 0xad, 0xb1, 0x43, 0x79, 0x5c, 0xad, 0x1a, 0x2b, 0x77, 0xd5, 0x5c, 0x86, 0x41, 0x6f, 0x87, 0xca, + 0x5a, 0x05, 0x53, 0x84, 0x5a, 0xa6, 0x85, 0x98, 0xc3, 0xd0, 0xc7, 0x60, 0xb8, 0x11, 0xec, 0xec, + 0x38, 0xbe, 0xcb, 0x8e, 0xbc, 0xf2, 0xfc, 0x08, 0x15, 0xc7, 0x16, 0x78, 0x11, 0x96, 0x30, 0x74, + 0x1e, 0x06, 0x9c, 0x70, 0x93, 0xab, 0x25, 0xca, 0xf3, 0x25, 0xda, 0xd2, 0x5c, 0xb8, 0x19, 0x61, + 0x56, 0x4a, 0x6f, 0x55, 0x7b, 0x41, 0xb8, 0xed, 0xf9, 0x9b, 0x55, 0x2f, 0x14, 0x4b, 0x42, 0x9d, + 0x85, 0xf7, 0x15, 0x04, 0x6b, 0x58, 0x68, 0x09, 0x06, 0x5b, 0x41, 0x18, 0x47, 0xd3, 0x43, 0x6c, + 0xb8, 0x9f, 0xca, 0xd9, 0x88, 0xf8, 0xd7, 0xd6, 0x82, 0x30, 0x4e, 0x3e, 0x80, 0xfe, 0x8b, 0x30, + 0xaf, 0x8e, 0xbe, 0x09, 0x8a, 0xc4, 0xdf, 0x9d, 0x1e, 0x66, 0x54, 0x66, 0xb2, 0xa8, 0x2c, 0xfa, + 0xbb, 0xf7, 0x9c, 0x30, 0xd9, 0xa5, 0x17, 0xfd, 0x5d, 0x4c, 0xeb, 0xa0, 0xcf, 0x41, 0x59, 0x2e, + 0xf1, 0x48, 0x68, 0xcc, 0x32, 0x59, 0x4c, 0x6e, 0x0c, 0x98, 0xbc, 0xdb, 0xf6, 0x42, 0xb2, 0x43, + 0xfc, 0x38, 0x4a, 0xf6, 0x34, 0x09, 0x8d, 0x70, 0x42, 0x0d, 0x7d, 0x4e, 0xaa, 0x69, 0x57, 0x82, + 0xb6, 0x1f, 0x47, 0xd3, 0x65, 0xd6, 0xbd, 0xcc, 0x07, 0xb4, 0x7b, 0x09, 0x5e, 0x5a, 0x8f, 0xcb, + 0x2b, 0x63, 0x83, 0x14, 0xc2, 0x30, 0xd6, 0xf4, 0x76, 0x89, 0x4f, 0xa2, 0xa8, 0x16, 0x06, 0xeb, + 0x64, 0x1a, 0x58, 0xcf, 0xcf, 0x65, 0xbf, 0x2b, 0x05, 0xeb, 0x64, 0x7e, 0xea, 0xe1, 0x41, 0x65, + 0xec, 0xb6, 0x5e, 0x07, 0x9b, 0x24, 0xd0, 0x5d, 0x18, 0xa7, 0xf7, 0x1a, 0x2f, 0x21, 0x3a, 0xd2, + 0x8b, 0x28, 0xbb, 0x7d, 0x60, 0xa3, 0x12, 0x4e, 0x11, 0x41, 0x6f, 0x40, 0xb9, 0xe9, 0x6d, 0x90, + 0xc6, 0x7e, 0xa3, 0x49, 0xa6, 0x47, 0x19, 0xc5, 0xcc, 0x65, 0x75, 0x5b, 0x22, 0xf1, 0x7b, 0x91, + 0xfa, 0x8b, 0x93, 0xea, 0xe8, 0x1e, 0x9c, 0x8d, 0x49, 0xb8, 0xe3, 0xf9, 0x0e, 0x5d, 0x0e, 0xe2, + 0xbe, 0xc0, 0x5e, 0xe7, 0xc6, 0x18, 0xbf, 0x5d, 0x14, 0x43, 0x77, 0x76, 0x2d, 0x13, 0x0b, 0xe7, + 0xd4, 0x46, 0x77, 0x60, 0x82, 0xad, 0x84, 0x5a, 0xbb, 0xd9, 0xac, 0x05, 0x4d, 0xaf, 0xb1, 0x3f, + 0x3d, 0xce, 0x08, 0x7e, 0x4c, 0x9e, 0x0b, 0xcb, 0x26, 0xf8, 0xf0, 0xa0, 0x02, 0xc9, 0x3f, 0x9c, + 0xae, 0x8d, 0xd6, 0xd9, 0x73, 0x4c, 0x3b, 0xf4, 0xe2, 0x7d, 0xca, 0xbf, 0xe4, 0x41, 0x3c, 0x3d, + 0xd1, 0xf5, 0x2a, 0xac, 0xa3, 0xaa, 0x37, 0x1b, 0xbd, 0x10, 0xa7, 0x09, 0xd2, 0xa5, 0x1d, 0xc5, + 0xae, 0xe7, 0x4f, 0x4f, 0xb2, 0x1d, 0x43, 0xad, 0x8c, 0x3a, 0x2d, 0xc4, 0x1c, 0xc6, 0x9e, 0x62, + 0xe8, 0x8f, 0x3b, 0x74, 0x07, 0x9d, 0x62, 0x88, 0xc9, 0x53, 0x8c, 0x04, 0xe0, 0x04, 0x87, 0x0a, + 0x35, 0x71, 0xbc, 0x3f, 0x8d, 0x18, 0xaa, 0x5a, 0x2e, 0x6b, 0x6b, 0x9f, 0xc3, 0xb4, 0x1c, 0xdd, + 0x86, 0x61, 0xe2, 0xef, 0x2e, 0x85, 0xc1, 0xce, 0xf4, 0xa9, 0xfc, 0x35, 0xbb, 0xc8, 0x51, 0xf8, + 0x86, 0x9e, 0x5c, 0xf0, 0x44, 0x31, 0x96, 0x24, 0xd0, 0x03, 0x98, 0xce, 0x98, 0x11, 0x3e, 0x01, + 0xa7, 0xd9, 0x04, 0x7c, 0x5a, 0xd4, 0x9d, 0x5e, 0xcb, 0xc1, 0x3b, 0xec, 0x02, 0xc3, 0xb9, 0xd4, + 0xd1, 0xe7, 0x61, 0x8c, 0x2f, 0x28, 0xfe, 0x8e, 0x1b, 0x4d, 0x9f, 0x61, 0x5f, 0x73, 0x29, 0x7f, + 0x71, 0x72, 0xc4, 0xf9, 0x33, 0xa2, 0x43, 0x63, 0x7a, 0x69, 0x84, 0x4d, 0x6a, 0xf6, 0x3a, 0x8c, + 0xab, 0x7d, 0x8b, 0xb1, 0x0e, 0xaa, 0xc0, 0x20, 0x93, 0x76, 0x84, 0x7e, 0xab, 0x4c, 0x67, 0x8a, + 0x49, 0x42, 0x98, 0x97, 0xb3, 0x99, 0xf2, 0xde, 0x23, 0xf3, 0xfb, 0x31, 0xe1, 0xb7, 0xea, 0xa2, + 0x36, 0x53, 0x12, 0x80, 0x13, 0x1c, 0xfb, 0xff, 0x71, 0xa9, 0x31, 0xd9, 0x1c, 0xfb, 0x38, 0x0e, + 0x9e, 0x83, 0xd2, 0x56, 0x10, 0xc5, 0x14, 0x9b, 0xb5, 0x31, 0x98, 0xc8, 0x89, 0x37, 0x45, 0x39, + 0x56, 0x18, 0xe8, 0x35, 0x18, 0x6b, 0xe8, 0x0d, 0x88, 0xb3, 0x4c, 0x0d, 0x81, 0xd1, 0x3a, 0x36, + 0x71, 0xd1, 0xab, 0x50, 0x62, 0x56, 0x18, 0x8d, 0xa0, 0x29, 0x84, 0x2c, 0x79, 0x20, 0x97, 0x6a, + 0xa2, 0xfc, 0x50, 0xfb, 0x8d, 0x15, 0x36, 0xba, 0x02, 0x43, 0xb4, 0x0b, 0xcb, 0x35, 0x71, 0x8a, + 0x28, 0x55, 0xcd, 0x4d, 0x56, 0x8a, 0x05, 0xd4, 0xfe, 0x1b, 0x05, 0x6d, 0x94, 0xe9, 0x8d, 0x94, + 0xa0, 0x1a, 0x0c, 0xef, 0x39, 0x5e, 0xec, 0xf9, 0x9b, 0x42, 0x5c, 0x78, 0xa6, 0xeb, 0x91, 0xc2, + 0x2a, 0xdd, 0xe7, 0x15, 0xf8, 0xa1, 0x27, 0xfe, 0x60, 0x49, 0x86, 0x52, 0x0c, 0xdb, 0xbe, 0x4f, + 0x29, 0x16, 0xfa, 0xa5, 0x88, 0x79, 0x05, 0x4e, 0x51, 0xfc, 0xc1, 0x92, 0x0c, 0x7a, 0x1b, 0x40, + 0xb2, 0x25, 0x71, 0x85, 0xf5, 0xc3, 0x73, 0xbd, 0x89, 0xae, 0xa9, 0x3a, 0xf3, 0xe3, 0xf4, 0x48, + 0x4d, 0xfe, 0x63, 0x8d, 0x9e, 0x1d, 0x33, 0xb1, 0xaa, 0xb3, 0x33, 0xe8, 0x5b, 0xe9, 0x4e, 0xe0, + 0x84, 0x31, 0x71, 0xe7, 0x62, 0x31, 0x38, 0x1f, 0xef, 0xef, 0x4e, 0xb1, 0xe6, 0xed, 0x10, 0x7d, + 0xd7, 0x10, 0x44, 0x70, 0x42, 0xcf, 0xfe, 0xc5, 0x22, 0x4c, 0xe7, 0x75, 0x97, 0x32, 0x1d, 0x79, + 0xe0, 0xc5, 0x0b, 0x54, 0x1a, 0xb2, 0x4c, 0xa6, 0x5b, 0x14, 0xe5, 0x58, 0x61, 0xd0, 0xd9, 0x8f, + 0xbc, 0x4d, 0x79, 0x25, 0x1c, 0x4c, 0x66, 0xbf, 0xce, 0x4a, 0xb1, 0x80, 0x52, 0xbc, 0x90, 0x38, + 0x91, 0x30, 0xaf, 0xd1, 0xb8, 0x04, 0xb3, 0x52, 0x2c, 0xa0, 0xba, 0xbe, 0x69, 0xa0, 0x87, 0xbe, + 0xc9, 0x18, 0xa2, 0xc1, 0xe3, 0x1d, 0x22, 0xf4, 0x05, 0x80, 0x0d, 0xcf, 0xf7, 0xa2, 0x2d, 0x46, + 0x7d, 0xe8, 0xc8, 0xd4, 0x95, 0x2c, 0xb5, 0xa4, 0xa8, 0x60, 0x8d, 0x22, 0x7a, 0x19, 0x46, 0xd4, + 0x02, 0x5c, 0xae, 0xb2, 0xb7, 0x46, 0xcd, 0x76, 0x23, 0xd9, 0x8d, 0xaa, 0x58, 0xc7, 0xb3, 0xdf, + 0x49, 0xf3, 0x8b, 0x58, 0x01, 0xda, 0xf8, 0x5a, 0xfd, 0x8e, 0x6f, 0xa1, 0xfb, 0xf8, 0xda, 0xbf, + 0x56, 0x84, 0x09, 0xa3, 0xb1, 0x76, 0xd4, 0xc7, 0x9e, 0x75, 0x83, 0x9e, 0x73, 0x4e, 0x4c, 0xc4, + 0xfa, 0xb3, 0x7b, 0x2f, 0x15, 0xfd, 0x2c, 0xa4, 0x2b, 0x80, 0xd7, 0x47, 0x5f, 0x80, 0x72, 0xd3, + 0x89, 0x98, 0xee, 0x8a, 0x88, 0x75, 0xd7, 0x0f, 0xb1, 0xe4, 0x1e, 0xe1, 0x44, 0xb1, 0x76, 0xd4, + 0x70, 0xda, 0x09, 0x49, 0x7a, 0x20, 0x53, 0xd9, 0x47, 0xda, 0x6f, 0xa9, 0x4e, 0x50, 0x01, 0x69, + 0x1f, 0x73, 0x18, 0x7a, 0x15, 0x46, 0x43, 0xc2, 0xb8, 0x62, 0x81, 0x8a, 0x72, 0x8c, 0xcd, 0x06, + 0x13, 0x99, 0x0f, 0x6b, 0x30, 0x6c, 0x60, 0x26, 0xa2, 0xfc, 0x50, 0x17, 0x51, 0xfe, 0x19, 0x18, + 0x66, 0x3f, 0x14, 0x07, 0xa8, 0xd9, 0x58, 0xe6, 0xc5, 0x58, 0xc2, 0xd3, 0x0c, 0x53, 0xea, 0x93, + 0x61, 0x3e, 0x0e, 0xe3, 0x55, 0x87, 0xec, 0x04, 0xfe, 0xa2, 0xef, 0xb6, 0x02, 0xcf, 0x8f, 0xd1, + 0x34, 0x0c, 0xb0, 0xd3, 0x81, 0xaf, 0xed, 0x01, 0x4a, 0x01, 0x0f, 0x50, 0xc1, 0xdc, 0xde, 0x84, + 0x33, 0xd5, 0x60, 0xcf, 0xdf, 0x73, 0x42, 0x77, 0xae, 0xb6, 0xac, 0xdd, 0x73, 0x57, 0xe5, 0x3d, + 0x8b, 0xdb, 0x43, 0x65, 0xee, 0xa9, 0x5a, 0x4d, 0x7e, 0xd6, 0x2e, 0x79, 0x4d, 0x92, 0xa3, 0x8d, + 0xf8, 0xdb, 0x05, 0xa3, 0xa5, 0x04, 0x5f, 0x3d, 0x18, 0x59, 0xb9, 0x0f, 0x46, 0x6f, 0x42, 0x69, + 0xc3, 0x23, 0x4d, 0x17, 0x93, 0x0d, 0xc1, 0x62, 0x4f, 0xe7, 0x9b, 0x78, 0x2c, 0x51, 0x4c, 0xa9, + 0x7d, 0xe2, 0xb7, 0xb4, 0x25, 0x51, 0x19, 0x2b, 0x32, 0x68, 0x1b, 0x26, 0xe5, 0x35, 0x40, 0x42, + 0x05, 0xc3, 0x3d, 0xd3, 0xed, 0x6e, 0x61, 0x12, 0x3f, 0xfd, 0xf0, 0xa0, 0x32, 0x89, 0x53, 0x64, + 0x70, 0x07, 0x61, 0x7a, 0x2d, 0xdb, 0xa1, 0x5b, 0xeb, 0x00, 0x1b, 0x7e, 0x76, 0x2d, 0x63, 0x37, + 0x4c, 0x56, 0x6a, 0xff, 0x88, 0x05, 0x4f, 0x74, 0x8c, 0x8c, 0xb8, 0x69, 0x1f, 0xf3, 0x2c, 0xa4, + 0x6f, 0xbe, 0x85, 0xde, 0x37, 0x5f, 0xfb, 0x67, 0x2c, 0x38, 0xbd, 0xb8, 0xd3, 0x8a, 0xf7, 0xab, + 0x9e, 0xf9, 0xba, 0xf3, 0x0a, 0x0c, 0xed, 0x10, 0xd7, 0x6b, 0xef, 0x88, 0x99, 0xab, 0xc8, 0xed, + 0x67, 0x85, 0x95, 0x1e, 0x1e, 0x54, 0xc6, 0xea, 0x71, 0x10, 0x3a, 0x9b, 0x84, 0x17, 0x60, 0x81, + 0xce, 0x36, 0x71, 0xef, 0x3d, 0x72, 0xdb, 0xdb, 0xf1, 0xa4, 0xc9, 0x4e, 0x57, 0xdd, 0xd9, 0xac, + 0x1c, 0xd0, 0xd9, 0x37, 0xdb, 0x8e, 0x1f, 0x7b, 0xf1, 0xbe, 0x78, 0x98, 0x91, 0x44, 0x70, 0x42, + 0xcf, 0xfe, 0xba, 0x05, 0x13, 0x92, 0xef, 0xe7, 0x5c, 0x37, 0x24, 0x51, 0x84, 0x66, 0xa0, 0xe0, + 0xb5, 0x44, 0x2f, 0x41, 0xf4, 0xb2, 0xb0, 0x5c, 0xc3, 0x05, 0xaf, 0x85, 0x6a, 0x50, 0xe6, 0x96, + 0x3f, 0x09, 0x73, 0xf5, 0x65, 0x3f, 0xc4, 0x7a, 0xb0, 0x26, 0x6b, 0xe2, 0x84, 0x88, 0x94, 0xe0, + 0xd8, 0x9e, 0x59, 0x34, 0x5f, 0xbd, 0x6e, 0x8a, 0x72, 0xac, 0x30, 0xd0, 0x55, 0x28, 0xf9, 0x81, + 0xcb, 0x0d, 0xb1, 0xf8, 0xe9, 0xc7, 0x58, 0x76, 0x55, 0x94, 0x61, 0x05, 0xb5, 0xbf, 0xdf, 0x82, + 0x51, 0xf9, 0x65, 0x7d, 0x0a, 0x93, 0x74, 0x69, 0x25, 0x82, 0x64, 0xb2, 0xb4, 0xa8, 0x30, 0xc8, + 0x20, 0x86, 0x0c, 0x58, 0x3c, 0x8a, 0x0c, 0x68, 0xff, 0x70, 0x01, 0xc6, 0x65, 0x77, 0xea, 0xed, + 0xf5, 0x88, 0xc4, 0x68, 0x0d, 0xca, 0x0e, 0x1f, 0x72, 0x22, 0x39, 0xf6, 0x72, 0xf6, 0xe5, 0xc3, + 0x98, 0x9f, 0xe4, 0x58, 0x9e, 0x93, 0xb5, 0x71, 0x42, 0x08, 0x35, 0x61, 0xca, 0x0f, 0x62, 0xb6, + 0x45, 0x2b, 0x78, 0xb7, 0x27, 0x90, 0x34, 0xf5, 0x73, 0x82, 0xfa, 0xd4, 0x6a, 0x9a, 0x0a, 0xee, + 0x24, 0x8c, 0x16, 0xa5, 0xc2, 0xa3, 0x98, 0x7f, 0xdd, 0xd0, 0x67, 0x21, 0x5b, 0xdf, 0x61, 0xff, + 0x8a, 0x05, 0x65, 0x89, 0x76, 0x12, 0xaf, 0x5d, 0x2b, 0x30, 0x1c, 0xb1, 0x49, 0x90, 0x43, 0x63, + 0x77, 0xeb, 0x38, 0x9f, 0xaf, 0xe4, 0xe4, 0xe1, 0xff, 0x23, 0x2c, 0x69, 0x30, 0x7d, 0xb7, 0xea, + 0xfe, 0x87, 0x44, 0xdf, 0xad, 0xfa, 0x93, 0x73, 0xc2, 0xfc, 0x3e, 0xeb, 0xb3, 0x76, 0xad, 0xa5, + 0x02, 0x52, 0x2b, 0x24, 0x1b, 0xde, 0x83, 0xb4, 0x80, 0x54, 0x63, 0xa5, 0x58, 0x40, 0xd1, 0xdb, + 0x30, 0xda, 0x90, 0x8a, 0xce, 0x64, 0x1b, 0xb8, 0xd2, 0x55, 0xe9, 0xae, 0xde, 0x67, 0xb8, 0x91, + 0xf6, 0x82, 0x56, 0x1f, 0x1b, 0xd4, 0xcc, 0xe7, 0xf6, 0x62, 0xaf, 0xe7, 0xf6, 0x84, 0x6e, 0xfe, + 0xe3, 0xf3, 0x8f, 0x5a, 0x30, 0xc4, 0xd5, 0x65, 0xfd, 0xe9, 0x17, 0xb5, 0xe7, 0xaa, 0x64, 0xec, + 0xee, 0xd1, 0x42, 0xf1, 0xfc, 0x84, 0x56, 0xa0, 0xcc, 0x7e, 0x30, 0xb5, 0x41, 0x31, 0xdf, 0x3a, + 0x9d, 0xb7, 0xaa, 0x77, 0xf0, 0x9e, 0xac, 0x86, 0x13, 0x0a, 0xf6, 0x0f, 0x16, 0xe9, 0x56, 0x95, + 0xa0, 0x1a, 0x27, 0xb8, 0xf5, 0xf8, 0x4e, 0xf0, 0xc2, 0xe3, 0x3a, 0xc1, 0x37, 0x61, 0xa2, 0xa1, + 0x3d, 0x6e, 0x25, 0x33, 0x79, 0xb5, 0x2b, 0x93, 0x68, 0xef, 0x60, 0x5c, 0x65, 0xb4, 0x60, 0x12, + 0xc1, 0x69, 0xaa, 0xe8, 0x5b, 0x61, 0x94, 0xcf, 0xb3, 0x68, 0x85, 0x5b, 0x2c, 0x7c, 0x2c, 0x9f, + 0x5f, 0xf4, 0x26, 0x18, 0x27, 0xd6, 0xb5, 0xea, 0xd8, 0x20, 0x66, 0xff, 0x62, 0x09, 0x06, 0x17, + 0x77, 0x89, 0x1f, 0x9f, 0xc0, 0x86, 0xd4, 0x80, 0x71, 0xcf, 0xdf, 0x0d, 0x9a, 0xbb, 0xc4, 0xe5, + 0xf0, 0xa3, 0x1c, 0xae, 0x67, 0x05, 0xe9, 0xf1, 0x65, 0x83, 0x04, 0x4e, 0x91, 0x7c, 0x1c, 0x37, + 0xcc, 0x1b, 0x30, 0xc4, 0xe7, 0x5e, 0x5c, 0x2f, 0x33, 0x95, 0xc1, 0x6c, 0x10, 0xc5, 0x2a, 0x48, + 0x6e, 0xbf, 0x5c, 0xfb, 0x2c, 0xaa, 0xa3, 0x77, 0x60, 0x7c, 0xc3, 0x0b, 0xa3, 0x98, 0x5e, 0x0d, + 0xa3, 0xd8, 0xd9, 0x69, 0x3d, 0xc2, 0x8d, 0x52, 0x8d, 0xc3, 0x92, 0x41, 0x09, 0xa7, 0x28, 0xa3, + 0x4d, 0x18, 0xa3, 0x97, 0x9c, 0xa4, 0xa9, 0xe1, 0x23, 0x37, 0xa5, 0x54, 0x46, 0xb7, 0x75, 0x42, + 0xd8, 0xa4, 0x4b, 0x37, 0x93, 0x06, 0xbb, 0x14, 0x95, 0x98, 0x44, 0xa1, 0x36, 0x13, 0x7e, 0x1b, + 0xe2, 0x30, 0xba, 0x27, 0x31, 0xb3, 0x95, 0xb2, 0xb9, 0x27, 0x69, 0xc6, 0x29, 0x5f, 0x84, 0x32, + 0xa1, 0x43, 0x48, 0x09, 0x0b, 0xc5, 0xf8, 0xb5, 0xfe, 0xfa, 0xba, 0xe2, 0x35, 0xc2, 0xc0, 0xbc, + 0xcb, 0x2f, 0x4a, 0x4a, 0x38, 0x21, 0x8a, 0x16, 0x60, 0x28, 0x22, 0xa1, 0x47, 0x22, 0xa1, 0x22, + 0xef, 0x32, 0x8d, 0x0c, 0x8d, 0x5b, 0x7c, 0xf2, 0xdf, 0x58, 0x54, 0xa5, 0xec, 0xe5, 0xb0, 0xdb, + 0x10, 0xd3, 0x8a, 0x6b, 0xec, 0x35, 0xc7, 0x4a, 0xb1, 0x80, 0xa2, 0x37, 0x60, 0x38, 0x24, 0x4d, + 0xa6, 0x2c, 0x1a, 0xeb, 0x9f, 0xc9, 0xb9, 0xee, 0x89, 0xd7, 0xc3, 0x92, 0x00, 0xba, 0x05, 0x28, + 0x24, 0x54, 0x86, 0xf0, 0xfc, 0x4d, 0x65, 0xcc, 0x21, 0x74, 0xdd, 0x4f, 0x8a, 0xf6, 0x4f, 0xe1, + 0x04, 0x43, 0x1a, 0xdf, 0xe2, 0x8c, 0x6a, 0xe8, 0x06, 0x4c, 0xa9, 0xd2, 0x65, 0x3f, 0x8a, 0x1d, + 0xbf, 0x41, 0x98, 0x9a, 0xbb, 0x9c, 0x48, 0x45, 0x38, 0x8d, 0x80, 0x3b, 0xeb, 0xd8, 0x3f, 0x45, + 0xc5, 0x19, 0x3a, 0x5a, 0x27, 0x20, 0x0b, 0xbc, 0x6e, 0xca, 0x02, 0xe7, 0x72, 0x67, 0x2e, 0x47, + 0x0e, 0x78, 0x68, 0xc1, 0x88, 0x36, 0xb3, 0x09, 0xcf, 0x5a, 0x5d, 0x78, 0xb6, 0x0d, 0x93, 0x94, + 0xd3, 0xef, 0xac, 0x47, 0x24, 0xdc, 0x25, 0x2e, 0x63, 0xcc, 0xc2, 0xa3, 0x31, 0xa6, 0x7a, 0x65, + 0xbe, 0x9d, 0x22, 0x88, 0x3b, 0x9a, 0x40, 0xaf, 0x48, 0xcd, 0x49, 0xd1, 0x30, 0xd2, 0xe2, 0x5a, + 0x91, 0xc3, 0x83, 0xca, 0xa4, 0xf6, 0x21, 0xba, 0xa6, 0xc4, 0xfe, 0xa2, 0xfc, 0x46, 0xf5, 0x9a, + 0xdf, 0x50, 0xcc, 0x92, 0x7a, 0xcd, 0x57, 0xec, 0x80, 0x13, 0x1c, 0xba, 0x46, 0xe9, 0x15, 0x24, + 0xfd, 0x9a, 0x4f, 0x2f, 0x28, 0x98, 0x41, 0xec, 0x17, 0x01, 0x16, 0x1f, 0x90, 0x06, 0x67, 0x75, + 0xfd, 0x01, 0xd2, 0xca, 0x7f, 0x80, 0xb4, 0xff, 0x93, 0x05, 0xe3, 0x4b, 0x0b, 0xc6, 0x35, 0x71, + 0x16, 0x80, 0xdf, 0x8d, 0xee, 0xdf, 0x5f, 0x95, 0xba, 0x75, 0xae, 0x1e, 0x55, 0xa5, 0x58, 0xc3, + 0x40, 0xe7, 0xa0, 0xd8, 0x6c, 0xfb, 0xe2, 0xca, 0x32, 0xfc, 0xf0, 0xa0, 0x52, 0xbc, 0xdd, 0xf6, + 0x31, 0x2d, 0xd3, 0x2c, 0x04, 0x8b, 0x7d, 0x5b, 0x08, 0xf6, 0xf4, 0xd4, 0x43, 0x15, 0x18, 0xdc, + 0xdb, 0xf3, 0x5c, 0xee, 0x0f, 0x21, 0xf4, 0xfe, 0xf7, 0xef, 0x2f, 0x57, 0x23, 0xcc, 0xcb, 0xed, + 0xaf, 0x14, 0x61, 0x66, 0xa9, 0x49, 0x1e, 0xbc, 0x4f, 0x9f, 0x90, 0x7e, 0xed, 0x1b, 0x8f, 0x26, + 0x2f, 0x1e, 0xd5, 0x86, 0xb5, 0xf7, 0x78, 0x6c, 0xc0, 0x30, 0x7f, 0xcc, 0x96, 0x1e, 0x22, 0xaf, + 0x65, 0xb5, 0x9e, 0x3f, 0x20, 0xb3, 0xfc, 0x51, 0x5c, 0x18, 0xb8, 0xab, 0x93, 0x56, 0x94, 0x62, + 0x49, 0x7c, 0xe6, 0x53, 0x30, 0xaa, 0x63, 0x1e, 0xc9, 0x9a, 0xfc, 0xaf, 0x14, 0x61, 0x92, 0xf6, + 0xe0, 0xb1, 0x4e, 0xc4, 0xdd, 0xce, 0x89, 0x38, 0x6e, 0x8b, 0xe2, 0xde, 0xb3, 0xf1, 0x76, 0x7a, + 0x36, 0x5e, 0xc8, 0x9b, 0x8d, 0x93, 0x9e, 0x83, 0xef, 0xb2, 0xe0, 0xd4, 0x52, 0x33, 0x68, 0x6c, + 0xa7, 0xac, 0x7e, 0x5f, 0x86, 0x11, 0xba, 0x8f, 0x47, 0x86, 0x43, 0x9a, 0xe1, 0xa2, 0x28, 0x40, + 0x58, 0xc7, 0xd3, 0xaa, 0xdd, 0xbd, 0xbb, 0x5c, 0xcd, 0xf2, 0x6c, 0x14, 0x20, 0xac, 0xe3, 0xd9, + 0x5f, 0xb3, 0xe0, 0xc2, 0x8d, 0x85, 0xc5, 0x84, 0x15, 0x3b, 0x9c, 0x2b, 0xe9, 0x2d, 0xd0, 0xd5, + 0xba, 0x92, 0xdc, 0x02, 0xab, 0xac, 0x17, 0x02, 0xfa, 0x61, 0x71, 0x1c, 0xfe, 0x49, 0x0b, 0x4e, + 0xdd, 0xf0, 0x62, 0x7a, 0x2c, 0xa7, 0xdd, 0xfc, 0xe8, 0xb9, 0x1c, 0x79, 0x71, 0x10, 0xee, 0xa7, + 0xdd, 0xfc, 0xb0, 0x82, 0x60, 0x0d, 0x8b, 0xb7, 0xbc, 0xeb, 0x31, 0x33, 0xaa, 0x82, 0xa9, 0x8a, + 0xc2, 0xa2, 0x1c, 0x2b, 0x0c, 0xfa, 0x61, 0xae, 0x17, 0xb2, 0xab, 0xc4, 0xbe, 0xd8, 0x61, 0xd5, + 0x87, 0x55, 0x25, 0x00, 0x27, 0x38, 0xf6, 0x1f, 0x5a, 0x50, 0xb9, 0xd1, 0x6c, 0x47, 0x31, 0x09, + 0x37, 0xa2, 0x9c, 0xdd, 0xf1, 0x45, 0x28, 0x13, 0x79, 0x71, 0x17, 0xbd, 0x56, 0xa2, 0xa6, 0xba, + 0xd1, 0x73, 0x6f, 0x43, 0x85, 0xd7, 0x87, 0x0f, 0xc1, 0xd1, 0x8c, 0xc0, 0x97, 0x00, 0x11, 0xbd, + 0x2d, 0xdd, 0xfd, 0x92, 0xf9, 0x71, 0x2d, 0x76, 0x40, 0x71, 0x46, 0x0d, 0xfb, 0x47, 0x2c, 0x38, + 0xa3, 0x3e, 0xf8, 0x43, 0xf7, 0x99, 0xf6, 0xcf, 0x15, 0x60, 0xec, 0xe6, 0xda, 0x5a, 0xed, 0x06, + 0x89, 0xc5, 0xb1, 0xdd, 0x5b, 0xb7, 0x8e, 0x35, 0x15, 0x61, 0xb7, 0x5b, 0x60, 0x3b, 0xf6, 0x9a, + 0xb3, 0xdc, 0x8b, 0x7f, 0x76, 0xd9, 0x8f, 0xef, 0x84, 0xf5, 0x38, 0xf4, 0xfc, 0xcd, 0x4c, 0xa5, + 0xa2, 0x14, 0x2e, 0x8a, 0x79, 0xc2, 0x05, 0x7a, 0x11, 0x86, 0x58, 0x18, 0x01, 0x39, 0x09, 0x4f, + 0xaa, 0x4b, 0x14, 0x2b, 0x3d, 0x3c, 0xa8, 0x94, 0xef, 0xe2, 0x65, 0xfe, 0x07, 0x0b, 0x54, 0x74, + 0x17, 0x46, 0xb6, 0xe2, 0xb8, 0x75, 0x93, 0x38, 0x2e, 0x09, 0xe5, 0x76, 0x78, 0x31, 0x6b, 0x3b, + 0xa4, 0x83, 0xc0, 0xd1, 0x92, 0x1d, 0x24, 0x29, 0x8b, 0xb0, 0x4e, 0xc7, 0xae, 0x03, 0x24, 0xb0, + 0x63, 0x52, 0xa8, 0xd8, 0xbf, 0x67, 0xc1, 0x30, 0xf7, 0xe8, 0x0c, 0xd1, 0xa7, 0x61, 0x80, 0x3c, + 0x20, 0x0d, 0x21, 0x2a, 0x67, 0x76, 0x38, 0x91, 0xb4, 0xf8, 0xf3, 0x00, 0xfd, 0x8f, 0x59, 0x2d, + 0x74, 0x13, 0x86, 0x69, 0x6f, 0x6f, 0x28, 0xf7, 0xd6, 0xa7, 0xf2, 0xbe, 0x58, 0x4d, 0x3b, 0x17, + 0xce, 0x44, 0x11, 0x96, 0xd5, 0x99, 0xaa, 0xbb, 0xd1, 0xaa, 0xd3, 0x1d, 0x3b, 0xee, 0x26, 0x58, + 0xac, 0x2d, 0xd4, 0x38, 0x92, 0xa0, 0xc6, 0x55, 0xdd, 0xb2, 0x10, 0x27, 0x44, 0xec, 0x35, 0x28, + 0xd3, 0x49, 0x9d, 0x6b, 0x7a, 0x4e, 0x77, 0x2d, 0xfb, 0xb3, 0x50, 0x96, 0x1a, 0xef, 0x48, 0x78, + 0x72, 0x31, 0xaa, 0x52, 0x21, 0x1e, 0xe1, 0x04, 0x6e, 0x6f, 0xc0, 0x69, 0x66, 0xea, 0xe0, 0xc4, + 0x5b, 0xc6, 0x1a, 0xeb, 0xcd, 0xcc, 0xcf, 0x89, 0x9b, 0x27, 0x9f, 0x99, 0x69, 0xcd, 0x59, 0x62, + 0x54, 0x52, 0x4c, 0x6e, 0xa1, 0xf6, 0x1f, 0x0c, 0xc0, 0x93, 0xcb, 0xf5, 0x7c, 0x67, 0xdf, 0x57, + 0x61, 0x94, 0xcb, 0xa5, 0x94, 0xb5, 0x9d, 0xa6, 0x68, 0x57, 0x3d, 0x04, 0xae, 0x69, 0x30, 0x6c, + 0x60, 0xa2, 0x0b, 0x50, 0xf4, 0xde, 0xf5, 0xd3, 0x76, 0xc7, 0xcb, 0x6f, 0xae, 0x62, 0x5a, 0x4e, + 0xc1, 0x54, 0xc4, 0xe5, 0x67, 0x87, 0x02, 0x2b, 0x31, 0xf7, 0x75, 0x18, 0xf7, 0xa2, 0x46, 0xe4, + 0x2d, 0xfb, 0x74, 0x9f, 0xd1, 0x76, 0x2a, 0xa5, 0x15, 0xa1, 0x9d, 0x56, 0x50, 0x9c, 0xc2, 0xd6, + 0x0e, 0xb2, 0xc1, 0xbe, 0xc5, 0xe4, 0x9e, 0xae, 0x4d, 0xf4, 0x06, 0xd0, 0x62, 0x5f, 0x17, 0x31, + 0x2b, 0x3e, 0x71, 0x03, 0xe0, 0x1f, 0x1c, 0x61, 0x09, 0xa3, 0x57, 0xce, 0xc6, 0x96, 0xd3, 0x9a, + 0x6b, 0xc7, 0x5b, 0x55, 0x2f, 0x6a, 0x04, 0xbb, 0x24, 0xdc, 0x67, 0xda, 0x82, 0x52, 0x72, 0xe5, + 0x54, 0x80, 0x85, 0x9b, 0x73, 0x35, 0x8a, 0x89, 0x3b, 0xeb, 0x98, 0x62, 0x30, 0x1c, 0x87, 0x18, + 0x3c, 0x07, 0x13, 0xb2, 0x99, 0x3a, 0x89, 0xd8, 0xa1, 0x38, 0xc2, 0x3a, 0xa6, 0x6c, 0x8b, 0x45, + 0xb1, 0xea, 0x56, 0x1a, 0x1f, 0xbd, 0x02, 0x63, 0x9e, 0xef, 0xc5, 0x9e, 0x13, 0x07, 0x21, 0x13, + 0x29, 0xb8, 0x62, 0x80, 0x99, 0xee, 0x2d, 0xeb, 0x00, 0x6c, 0xe2, 0xd9, 0xff, 0x7d, 0x00, 0xa6, + 0xd8, 0xb4, 0x7d, 0x83, 0xc3, 0x3e, 0x34, 0x1c, 0x76, 0xb7, 0x93, 0xc3, 0x8e, 0x43, 0xbe, 0xff, + 0x20, 0xd9, 0xec, 0x1d, 0x28, 0x2b, 0xe3, 0x67, 0xe9, 0xfd, 0x60, 0xe5, 0x78, 0x3f, 0xf4, 0x96, + 0x3e, 0xe4, 0xbb, 0x75, 0x31, 0xf3, 0xdd, 0xfa, 0xef, 0x5a, 0x90, 0xd8, 0x80, 0xa2, 0x9b, 0x50, + 0x6e, 0x05, 0xcc, 0xce, 0x22, 0x94, 0xc6, 0x4b, 0x4f, 0x66, 0x1e, 0x54, 0xfc, 0x50, 0xe4, 0xe3, + 0x57, 0x93, 0x35, 0x70, 0x52, 0x19, 0xcd, 0xc3, 0x70, 0x2b, 0x24, 0xf5, 0x98, 0xf9, 0xfc, 0xf6, + 0xa4, 0xc3, 0x79, 0x84, 0xe3, 0x63, 0x59, 0xd1, 0xfe, 0x79, 0x0b, 0x80, 0x3f, 0x0d, 0x3b, 0xfe, + 0x26, 0x39, 0x01, 0x75, 0x77, 0x15, 0x06, 0xa2, 0x16, 0x69, 0x74, 0xb3, 0x80, 0x49, 0xfa, 0x53, + 0x6f, 0x91, 0x46, 0x32, 0xe0, 0xf4, 0x1f, 0x66, 0xb5, 0xed, 0xef, 0x06, 0x18, 0x4f, 0xd0, 0x96, + 0x63, 0xb2, 0x83, 0x9e, 0x37, 0x7c, 0x00, 0xcf, 0xa5, 0x7c, 0x00, 0xcb, 0x0c, 0x5b, 0xd3, 0xac, + 0xbe, 0x03, 0xc5, 0x1d, 0xe7, 0x81, 0x50, 0x9d, 0x3d, 0xdb, 0xbd, 0x1b, 0x94, 0xfe, 0xec, 0x8a, + 0xf3, 0x80, 0x5f, 0x12, 0x9f, 0x95, 0x0c, 0xb2, 0xe2, 0x3c, 0x38, 0xe4, 0x76, 0x2e, 0x6c, 0x93, + 0xba, 0xed, 0x45, 0xf1, 0x97, 0xfe, 0x5b, 0xf2, 0x9f, 0xb1, 0x1d, 0x6d, 0x84, 0xb5, 0xe5, 0xf9, + 0xe2, 0xa1, 0xb4, 0xaf, 0xb6, 0x3c, 0x3f, 0xdd, 0x96, 0xe7, 0xf7, 0xd1, 0x96, 0xe7, 0xa3, 0xf7, + 0x60, 0x58, 0x18, 0x25, 0x08, 0x9f, 0xfb, 0x6b, 0x7d, 0xb4, 0x27, 0x6c, 0x1a, 0x78, 0x9b, 0xd7, + 0xe4, 0x25, 0x58, 0x94, 0xf6, 0x6c, 0x57, 0x36, 0x88, 0xfe, 0x96, 0x05, 0xe3, 0xe2, 0x37, 0x26, + 0xef, 0xb6, 0x49, 0x14, 0x0b, 0xd9, 0xf3, 0x93, 0xfd, 0xf7, 0x41, 0x54, 0xe4, 0x5d, 0xf9, 0xa4, + 0xdc, 0x66, 0x4d, 0x60, 0xcf, 0x1e, 0xa5, 0x7a, 0x81, 0xfe, 0xb1, 0x05, 0xa7, 0x77, 0x9c, 0x07, + 0xbc, 0x45, 0x5e, 0x86, 0x9d, 0xd8, 0x0b, 0x84, 0xb1, 0xfe, 0xa7, 0xfb, 0x9b, 0xfe, 0x8e, 0xea, + 0xbc, 0x93, 0xd2, 0xae, 0xf7, 0x74, 0x16, 0x4a, 0xcf, 0xae, 0x66, 0xf6, 0x6b, 0x66, 0x03, 0x4a, + 0x92, 0xdf, 0x32, 0x54, 0x0d, 0x55, 0x5d, 0xb0, 0x3e, 0xb2, 0x4d, 0x88, 0xee, 0x88, 0x47, 0xdb, + 0x11, 0xbc, 0xf6, 0x58, 0xdb, 0x79, 0x07, 0x46, 0x75, 0x1e, 0x7b, 0xac, 0x6d, 0xbd, 0x0b, 0xa7, + 0x32, 0x78, 0xe9, 0xb1, 0x36, 0xb9, 0x07, 0xe7, 0x72, 0xf9, 0xe3, 0x71, 0x36, 0x6c, 0xff, 0x9c, + 0xa5, 0xef, 0x83, 0x27, 0xf0, 0xe6, 0xb0, 0x60, 0xbe, 0x39, 0x5c, 0xec, 0xbe, 0x72, 0x72, 0x1e, + 0x1e, 0xde, 0xd6, 0x3b, 0x4d, 0x77, 0x75, 0xf4, 0x06, 0x0c, 0x35, 0x69, 0x89, 0xb4, 0x86, 0xb1, + 0x7b, 0xaf, 0xc8, 0x44, 0x96, 0x62, 0xe5, 0x11, 0x16, 0x14, 0xec, 0x5f, 0xb2, 0x60, 0xe0, 0x04, + 0x46, 0x02, 0x9b, 0x23, 0xf1, 0x7c, 0x2e, 0x69, 0x11, 0x0e, 0x70, 0x16, 0x3b, 0x7b, 0x8b, 0x0f, + 0x62, 0xe2, 0x47, 0xec, 0xaa, 0x98, 0x39, 0x30, 0xdf, 0x06, 0xa7, 0x6e, 0x07, 0x8e, 0x3b, 0xef, + 0x34, 0x1d, 0xbf, 0x41, 0xc2, 0x65, 0x7f, 0xb3, 0xa7, 0x59, 0x96, 0x6e, 0x44, 0x55, 0xe8, 0x65, + 0x44, 0x65, 0x6f, 0x01, 0xd2, 0x1b, 0x10, 0x86, 0xab, 0x18, 0x86, 0x3d, 0xde, 0x94, 0x18, 0xfe, + 0xa7, 0xb3, 0xa5, 0xbb, 0x8e, 0x9e, 0x69, 0x26, 0x99, 0xbc, 0x00, 0x4b, 0x42, 0xf6, 0xab, 0x90, + 0xe9, 0xac, 0xd6, 0x5b, 0x6d, 0x60, 0x7f, 0x0e, 0xa6, 0x58, 0xcd, 0x23, 0x5e, 0x69, 0xed, 0x94, + 0x56, 0x32, 0x23, 0x32, 0x8d, 0xfd, 0x65, 0x0b, 0x26, 0x56, 0x53, 0x01, 0x3b, 0xae, 0xb0, 0x07, + 0xd0, 0x0c, 0x65, 0x78, 0x9d, 0x95, 0x62, 0x01, 0x3d, 0x76, 0x1d, 0xd4, 0x9f, 0x59, 0x90, 0xf8, + 0x8f, 0x9e, 0x80, 0xe0, 0xb5, 0x60, 0x08, 0x5e, 0x99, 0xba, 0x11, 0xd5, 0x9d, 0x3c, 0xb9, 0x0b, + 0xdd, 0x52, 0xc1, 0x12, 0xba, 0xa8, 0x45, 0x12, 0x32, 0xdc, 0xb5, 0x7e, 0xdc, 0x8c, 0xa8, 0x20, + 0xc3, 0x27, 0x30, 0xdb, 0x29, 0x85, 0xfb, 0x21, 0xb1, 0x9d, 0x52, 0xfd, 0xc9, 0x59, 0xa1, 0x35, + 0xad, 0xcb, 0x6c, 0xe7, 0xfa, 0x66, 0x66, 0x0b, 0xef, 0x34, 0xbd, 0xf7, 0x88, 0x8a, 0xf8, 0x52, + 0x11, 0xb6, 0xed, 0xa2, 0xf4, 0xf0, 0xa0, 0x32, 0xa6, 0xfe, 0xf1, 0x08, 0x73, 0x49, 0x15, 0xfb, + 0x26, 0x4c, 0xa4, 0x06, 0x0c, 0xbd, 0x0c, 0x83, 0xad, 0x2d, 0x27, 0x22, 0x29, 0x7b, 0xd1, 0xc1, + 0x1a, 0x2d, 0x3c, 0x3c, 0xa8, 0x8c, 0xab, 0x0a, 0xac, 0x04, 0x73, 0x6c, 0xfb, 0x7f, 0x59, 0x30, + 0xb0, 0x1a, 0xb8, 0x27, 0xc1, 0x4c, 0xaf, 0x1b, 0xcc, 0x74, 0x3e, 0x2f, 0x3e, 0x67, 0x2e, 0x1f, + 0x2d, 0xa5, 0xf8, 0xe8, 0x62, 0x2e, 0x85, 0xee, 0x2c, 0xb4, 0x03, 0x23, 0x2c, 0xea, 0xa7, 0xb0, + 0x5f, 0x7d, 0xd1, 0xb8, 0x03, 0x54, 0x52, 0x77, 0x80, 0x09, 0x0d, 0x55, 0xbb, 0x09, 0x3c, 0x03, + 0xc3, 0xc2, 0x86, 0x32, 0x6d, 0xf5, 0x2f, 0x70, 0xb1, 0x84, 0xdb, 0x3f, 0x5a, 0x04, 0x23, 0xca, + 0x28, 0xfa, 0x15, 0x0b, 0x66, 0x43, 0xee, 0x46, 0xe9, 0x56, 0xdb, 0xa1, 0xe7, 0x6f, 0xd6, 0x1b, + 0x5b, 0xc4, 0x6d, 0x37, 0x3d, 0x7f, 0x73, 0x79, 0xd3, 0x0f, 0x54, 0xf1, 0xe2, 0x03, 0xd2, 0x68, + 0xb3, 0x87, 0x90, 0x1e, 0x21, 0x4d, 0x95, 0x8d, 0xd2, 0xf5, 0x87, 0x07, 0x95, 0x59, 0x7c, 0x24, + 0xda, 0xf8, 0x88, 0x7d, 0x41, 0x5f, 0xb3, 0xe0, 0x1a, 0x0f, 0xbe, 0xd9, 0x7f, 0xff, 0xbb, 0xdc, + 0x98, 0x6a, 0x92, 0x54, 0x42, 0x64, 0x8d, 0x84, 0x3b, 0xf3, 0xaf, 0x88, 0x01, 0xbd, 0x56, 0x3b, + 0x5a, 0x5b, 0xf8, 0xa8, 0x9d, 0xb3, 0xff, 0x75, 0x11, 0xc6, 0x84, 0x07, 0xbf, 0x08, 0x0d, 0xf3, + 0xb2, 0xc1, 0x12, 0x4f, 0xa5, 0x58, 0x62, 0xca, 0x40, 0x3e, 0x9e, 0xa8, 0x30, 0x11, 0x4c, 0x35, + 0x9d, 0x28, 0xbe, 0x49, 0x9c, 0x30, 0x5e, 0x27, 0x0e, 0xb7, 0xdd, 0x29, 0x1e, 0xd9, 0xce, 0x48, + 0xa9, 0x68, 0x6e, 0xa7, 0x89, 0xe1, 0x4e, 0xfa, 0x68, 0x17, 0x10, 0x33, 0x40, 0x0a, 0x1d, 0x3f, + 0xe2, 0xdf, 0xe2, 0x89, 0x37, 0x83, 0xa3, 0xb5, 0x3a, 0x23, 0x5a, 0x45, 0xb7, 0x3b, 0xa8, 0xe1, + 0x8c, 0x16, 0x34, 0xc3, 0xb2, 0xc1, 0x7e, 0x0d, 0xcb, 0x86, 0x7a, 0xb8, 0xd6, 0xf8, 0x30, 0xd9, + 0x11, 0x84, 0xe1, 0x2d, 0x28, 0x2b, 0x03, 0x40, 0xb1, 0xe9, 0x74, 0x8f, 0x65, 0x92, 0xa6, 0xc0, + 0xd5, 0x28, 0x89, 0xf1, 0x69, 0x42, 0xce, 0xfe, 0x27, 0x05, 0xa3, 0x41, 0x3e, 0x89, 0xab, 0x50, + 0x72, 0xa2, 0xc8, 0xdb, 0xf4, 0x89, 0x2b, 0x56, 0xec, 0x47, 0xf3, 0x56, 0xac, 0xd1, 0x0c, 0x33, + 0xc2, 0x9c, 0x13, 0x35, 0xb1, 0xa2, 0x81, 0x6e, 0x72, 0x0b, 0xa9, 0x5d, 0x29, 0xf3, 0xf7, 0x47, + 0x0d, 0xa4, 0x0d, 0xd5, 0x2e, 0xc1, 0xa2, 0x3e, 0xfa, 0x3c, 0x37, 0x61, 0xbb, 0xe5, 0x07, 0x7b, + 0xfe, 0x8d, 0x20, 0x90, 0x6e, 0x77, 0xfd, 0x11, 0x9c, 0x92, 0x86, 0x6b, 0xaa, 0x3a, 0x36, 0xa9, + 0xf5, 0x17, 0xa8, 0xe8, 0xdb, 0xe1, 0x14, 0x25, 0x6d, 0x3a, 0xcf, 0x44, 0x88, 0xc0, 0x84, 0x08, + 0x0f, 0x21, 0xcb, 0xc4, 0xd8, 0x65, 0x8a, 0xf3, 0x66, 0xed, 0x44, 0xe9, 0x77, 0xcb, 0x24, 0x81, + 0xd3, 0x34, 0xed, 0x9f, 0xb0, 0x80, 0x99, 0xfd, 0x9f, 0x80, 0xc8, 0xf0, 0x19, 0x53, 0x64, 0x98, + 0xce, 0x1b, 0xe4, 0x1c, 0x69, 0xe1, 0x25, 0xce, 0x59, 0xb5, 0x30, 0x78, 0xb0, 0x2f, 0xcc, 0x07, + 0x7a, 0x4b, 0xb2, 0xf6, 0xff, 0xb5, 0xf8, 0x26, 0xa6, 0x3c, 0xf1, 0xd1, 0x77, 0x40, 0xa9, 0xe1, + 0xb4, 0x9c, 0x06, 0x0f, 0x89, 0x9d, 0xab, 0xd5, 0x31, 0x2a, 0xcd, 0x2e, 0x88, 0x1a, 0x5c, 0x4b, + 0x21, 0xc3, 0x8c, 0x94, 0x64, 0x71, 0x4f, 0xcd, 0x84, 0x6a, 0x72, 0x66, 0x1b, 0xc6, 0x0c, 0x62, + 0x8f, 0xf5, 0x4a, 0xfb, 0x1d, 0xfc, 0x88, 0x55, 0x61, 0x71, 0x76, 0x60, 0xca, 0xd7, 0xfe, 0xd3, + 0x03, 0x45, 0x5e, 0x53, 0x3e, 0xda, 0xeb, 0x10, 0x65, 0xa7, 0x8f, 0xe6, 0xd6, 0x90, 0x22, 0x83, + 0x3b, 0x29, 0xdb, 0x3f, 0x66, 0xc1, 0x13, 0x3a, 0xa2, 0x16, 0x24, 0xa1, 0x97, 0x9e, 0xb8, 0x0a, + 0xa5, 0xa0, 0x45, 0x42, 0x27, 0x0e, 0x42, 0x71, 0x6a, 0x5c, 0x95, 0x83, 0x7e, 0x47, 0x94, 0x1f, + 0x8a, 0x80, 0x92, 0x92, 0xba, 0x2c, 0xc7, 0xaa, 0x26, 0xbd, 0xc7, 0xb0, 0xc1, 0x88, 0x44, 0x00, + 0x0b, 0xb6, 0x07, 0xb0, 0x27, 0xd3, 0x08, 0x0b, 0x88, 0xfd, 0x07, 0x16, 0x67, 0x2c, 0xbd, 0xeb, + 0xe8, 0x5d, 0x98, 0xdc, 0x71, 0xe2, 0xc6, 0xd6, 0xe2, 0x83, 0x56, 0xc8, 0xd5, 0xe3, 0x72, 0x9c, + 0x9e, 0xed, 0x35, 0x4e, 0xda, 0x47, 0x26, 0x56, 0x79, 0x2b, 0x29, 0x62, 0xb8, 0x83, 0x3c, 0x5a, + 0x87, 0x11, 0x56, 0xc6, 0xcc, 0xbf, 0xa3, 0x6e, 0xa2, 0x41, 0x5e, 0x6b, 0xea, 0xd5, 0x79, 0x25, + 0xa1, 0x83, 0x75, 0xa2, 0xf6, 0xcf, 0x14, 0xf9, 0x6a, 0x67, 0xd2, 0xf6, 0x33, 0x30, 0xdc, 0x0a, + 0xdc, 0x85, 0xe5, 0x2a, 0x16, 0xb3, 0xa0, 0x8e, 0x91, 0x1a, 0x2f, 0xc6, 0x12, 0x8e, 0x5e, 0x03, + 0x20, 0x0f, 0x62, 0x12, 0xfa, 0x4e, 0x53, 0x59, 0xc9, 0x28, 0xbb, 0xd0, 0x6a, 0xb0, 0x1a, 0xc4, + 0x77, 0x23, 0xf2, 0x6d, 0x8b, 0x0a, 0x05, 0x6b, 0xe8, 0xe8, 0x3a, 0x40, 0x2b, 0x0c, 0x76, 0x3d, + 0x97, 0xf9, 0x13, 0x16, 0x4d, 0x1b, 0x92, 0x9a, 0x82, 0x60, 0x0d, 0x0b, 0xbd, 0x06, 0x63, 0x6d, + 0x3f, 0xe2, 0x12, 0x8a, 0xb3, 0x2e, 0xc2, 0x31, 0x96, 0x12, 0xeb, 0x86, 0xbb, 0x3a, 0x10, 0x9b, + 0xb8, 0x68, 0x0e, 0x86, 0x62, 0x87, 0xd9, 0x44, 0x0c, 0xe6, 0x1b, 0x73, 0xae, 0x51, 0x0c, 0x3d, + 0x20, 0x33, 0xad, 0x80, 0x45, 0x45, 0xf4, 0x96, 0x74, 0xce, 0xe0, 0x7b, 0xbd, 0xb0, 0xa2, 0xee, + 0xef, 0x5c, 0xd0, 0x5c, 0x33, 0x84, 0x75, 0xb6, 0x41, 0x0b, 0x5d, 0x85, 0x92, 0x18, 0x57, 0xf9, + 0xe4, 0xc4, 0x0e, 0x3a, 0x31, 0xe8, 0x11, 0x56, 0x50, 0xfb, 0x6b, 0x65, 0x80, 0x44, 0x70, 0x47, + 0xef, 0x75, 0xec, 0x5c, 0xcf, 0x75, 0x17, 0xf5, 0x8f, 0x6f, 0xdb, 0x42, 0xdf, 0x63, 0xc1, 0x88, + 0xd3, 0x6c, 0x06, 0x0d, 0x27, 0x66, 0xf3, 0x51, 0xe8, 0xbe, 0x73, 0x8a, 0xf6, 0xe7, 0x92, 0x1a, + 0xbc, 0x0b, 0x2f, 0x4a, 0x16, 0xd5, 0x20, 0x3d, 0x7b, 0xa1, 0x37, 0x8c, 0x3e, 0x21, 0xef, 0x73, + 0x9c, 0x91, 0x66, 0xd2, 0xf7, 0xb9, 0x32, 0x3b, 0x24, 0xb4, 0xab, 0x1c, 0xba, 0x6b, 0xc4, 0xe4, + 0x1b, 0xc8, 0x0f, 0x4f, 0x61, 0xc8, 0xaf, 0xbd, 0xc2, 0xf1, 0xa1, 0x9a, 0xee, 0x77, 0x36, 0x98, + 0x1f, 0xc3, 0x45, 0xbb, 0x28, 0xf5, 0xf0, 0x39, 0x7b, 0x07, 0x26, 0x5c, 0x53, 0x0a, 0x10, 0x7c, + 0xf7, 0x74, 0x1e, 0xdd, 0x94, 0xd0, 0x90, 0x9c, 0xfb, 0x29, 0x00, 0x4e, 0x13, 0x46, 0x35, 0xee, + 0x01, 0xb8, 0xec, 0x6f, 0x04, 0xc2, 0x6e, 0xdf, 0xce, 0x9d, 0xcb, 0xfd, 0x28, 0x26, 0x3b, 0x14, + 0x33, 0x39, 0xde, 0x57, 0x45, 0x5d, 0xac, 0xa8, 0xa0, 0x37, 0x60, 0x88, 0xb9, 0x10, 0x47, 0xd3, + 0xa5, 0x7c, 0xb5, 0xa3, 0x19, 0xfd, 0x22, 0x59, 0x7e, 0xec, 0x6f, 0x84, 0x05, 0x05, 0x74, 0x53, + 0x86, 0xc8, 0x89, 0x96, 0xfd, 0xbb, 0x11, 0x61, 0x21, 0x72, 0xca, 0xf3, 0x1f, 0x4d, 0xa2, 0xdf, + 0xf0, 0xf2, 0xcc, 0x24, 0x0d, 0x46, 0x4d, 0x2a, 0x46, 0x89, 0xff, 0x32, 0xf7, 0xc3, 0x34, 0xe4, + 0x77, 0xcf, 0xcc, 0x0f, 0x91, 0x0c, 0xe7, 0x3d, 0x93, 0x04, 0x4e, 0xd3, 0xa4, 0x22, 0x29, 0x5f, + 0xe3, 0xc2, 0xf2, 0xbf, 0xd7, 0x4e, 0xc1, 0x6f, 0xe2, 0xec, 0x38, 0xe2, 0x25, 0x58, 0xd4, 0x3f, + 0x51, 0xf9, 0x60, 0xc6, 0x87, 0xc9, 0xf4, 0x12, 0x7d, 0xac, 0xf2, 0xc8, 0xef, 0x0d, 0xc0, 0xb8, + 0xc9, 0x52, 0xe8, 0x1a, 0x94, 0x05, 0x11, 0x15, 0xaf, 0x55, 0xad, 0x92, 0x15, 0x09, 0xc0, 0x09, + 0x0e, 0x0b, 0xd3, 0xcb, 0xaa, 0x6b, 0x16, 0x9b, 0x49, 0x98, 0x5e, 0x05, 0xc1, 0x1a, 0x16, 0xbd, + 0x59, 0xad, 0x07, 0x41, 0xac, 0x8e, 0x1f, 0xc5, 0x77, 0xf3, 0xac, 0x14, 0x0b, 0x28, 0x3d, 0x76, + 0xb6, 0x49, 0xe8, 0x93, 0xa6, 0x19, 0x06, 0x4e, 0x1d, 0x3b, 0xb7, 0x74, 0x20, 0x36, 0x71, 0xe9, + 0x79, 0x1a, 0x44, 0x8c, 0x91, 0xc5, 0xfd, 0x2d, 0xb1, 0x80, 0xad, 0x73, 0x67, 0x7c, 0x09, 0x47, + 0x9f, 0x83, 0x27, 0x94, 0xef, 0x3c, 0xe6, 0x2a, 0x6d, 0xd9, 0xe2, 0x90, 0xa1, 0x6e, 0x79, 0x62, + 0x21, 0x1b, 0x0d, 0xe7, 0xd5, 0x47, 0xaf, 0xc3, 0xb8, 0x90, 0xf1, 0x25, 0xc5, 0x61, 0xd3, 0xca, + 0xe2, 0x96, 0x01, 0xc5, 0x29, 0x6c, 0x19, 0xc8, 0x8e, 0x89, 0xd9, 0x92, 0x42, 0xa9, 0x33, 0x90, + 0x9d, 0x0e, 0xc7, 0x1d, 0x35, 0xd0, 0x1c, 0x4c, 0x70, 0x21, 0xcc, 0xf3, 0x37, 0xf9, 0x9c, 0x08, + 0xc7, 0x1c, 0xb5, 0xa4, 0xee, 0x98, 0x60, 0x9c, 0xc6, 0x47, 0xaf, 0xc2, 0xa8, 0x13, 0x36, 0xb6, + 0xbc, 0x98, 0x34, 0xe2, 0x76, 0xc8, 0x3d, 0x76, 0x34, 0x33, 0x95, 0x39, 0x0d, 0x86, 0x0d, 0x4c, + 0xfb, 0x3d, 0x38, 0x95, 0xe1, 0xd3, 0x47, 0x19, 0xc7, 0x69, 0x79, 0xf2, 0x9b, 0x52, 0xb6, 0xac, + 0x73, 0xb5, 0x65, 0xf9, 0x35, 0x1a, 0x16, 0xe5, 0x4e, 0xe6, 0xfb, 0xa7, 0xa5, 0x7a, 0x51, 0xdc, + 0xb9, 0x24, 0x01, 0x38, 0xc1, 0xb1, 0xff, 0x77, 0x01, 0x26, 0x32, 0xd4, 0xf4, 0x2c, 0xdd, 0x48, + 0xea, 0x96, 0x92, 0x64, 0x17, 0x31, 0xe3, 0x22, 0x16, 0x8e, 0x10, 0x17, 0xb1, 0xd8, 0x2b, 0x2e, + 0xe2, 0xc0, 0xfb, 0x89, 0x8b, 0x68, 0x8e, 0xd8, 0x60, 0x5f, 0x23, 0x96, 0x11, 0x4b, 0x71, 0xe8, + 0x88, 0xb1, 0x14, 0x8d, 0x41, 0x1f, 0xee, 0x63, 0xd0, 0x7f, 0xb0, 0x00, 0x93, 0x69, 0x73, 0xba, + 0x13, 0x50, 0xdc, 0xbe, 0x61, 0x28, 0x6e, 0xb3, 0x93, 0xf7, 0xa4, 0x8d, 0xfc, 0xf2, 0x94, 0xb8, + 0x38, 0xa5, 0xc4, 0xfd, 0x78, 0x5f, 0xd4, 0xba, 0x2b, 0x74, 0xff, 0x7e, 0x01, 0xce, 0xa4, 0xab, + 0x2c, 0x34, 0x1d, 0x6f, 0xe7, 0x04, 0xc6, 0xe6, 0x8e, 0x31, 0x36, 0xcf, 0xf7, 0xf3, 0x35, 0xac, + 0x6b, 0xb9, 0x03, 0x74, 0x3f, 0x35, 0x40, 0xd7, 0xfa, 0x27, 0xd9, 0x7d, 0x94, 0xbe, 0x5e, 0x84, + 0x8b, 0x99, 0xf5, 0x12, 0xbd, 0xe7, 0x92, 0xa1, 0xf7, 0xbc, 0x9e, 0xd2, 0x7b, 0xda, 0xdd, 0x6b, + 0x1f, 0x8f, 0x22, 0x54, 0x38, 0x5b, 0xb2, 0xd8, 0x79, 0x8f, 0xa8, 0x04, 0x35, 0x9c, 0x2d, 0x15, + 0x21, 0x6c, 0xd2, 0xfd, 0x8b, 0xa4, 0xfc, 0xfc, 0x77, 0x16, 0x9c, 0xcb, 0x9c, 0x9b, 0x13, 0x50, + 0x76, 0xad, 0x9a, 0xca, 0xae, 0x67, 0xfa, 0xe6, 0xd6, 0x1c, 0xed, 0xd7, 0xaf, 0x0f, 0xe4, 0x7c, + 0x0b, 0xbb, 0xca, 0xdf, 0x81, 0x11, 0xa7, 0xd1, 0x20, 0x51, 0xb4, 0x12, 0xb8, 0x2a, 0x96, 0xdc, + 0xf3, 0xec, 0x9e, 0x95, 0x14, 0x1f, 0x1e, 0x54, 0x66, 0xd2, 0x24, 0x12, 0x30, 0xd6, 0x29, 0x98, + 0xe1, 0x2f, 0x0b, 0xc7, 0x1a, 0xfe, 0xf2, 0x3a, 0xc0, 0xae, 0x92, 0xd6, 0xd3, 0xea, 0x00, 0x4d, + 0x8e, 0xd7, 0xb0, 0xd0, 0xe7, 0xa1, 0x14, 0x89, 0x63, 0x5c, 0xb0, 0xe2, 0x8b, 0x7d, 0xce, 0x95, + 0xb3, 0x4e, 0x9a, 0xa6, 0x57, 0xbf, 0xd2, 0x9c, 0x28, 0x92, 0xe8, 0x5b, 0x60, 0x32, 0xe2, 0x41, + 0x63, 0x16, 0x9a, 0x4e, 0xc4, 0x3c, 0x26, 0x04, 0x17, 0x32, 0x57, 0xfd, 0x7a, 0x0a, 0x86, 0x3b, + 0xb0, 0xd1, 0x92, 0xfc, 0x28, 0x16, 0xe1, 0x86, 0x33, 0xe6, 0x95, 0xe4, 0x83, 0x44, 0xb2, 0xb3, + 0xd3, 0xe9, 0xe1, 0x67, 0x03, 0xaf, 0xd5, 0x44, 0x9f, 0x07, 0xa0, 0xec, 0x23, 0xb4, 0x0e, 0xc3, + 0xf9, 0x9b, 0x27, 0xdd, 0x55, 0xdc, 0x4c, 0x1b, 0x51, 0xe6, 0xe6, 0x58, 0x55, 0x44, 0xb0, 0x46, + 0xd0, 0xfe, 0xc1, 0x01, 0x78, 0xb2, 0xcb, 0x1e, 0x89, 0xe6, 0xcc, 0xc7, 0xd2, 0x67, 0xd3, 0x97, + 0xeb, 0x99, 0xcc, 0xca, 0xc6, 0x6d, 0x3b, 0xc5, 0x8a, 0x85, 0xf7, 0xcd, 0x8a, 0xdf, 0x67, 0x69, + 0x6a, 0x0f, 0x6e, 0xf6, 0xf7, 0x99, 0x23, 0xee, 0xfd, 0xc7, 0xa8, 0x07, 0xd9, 0xc8, 0x50, 0x26, + 0x5c, 0xef, 0xbb, 0x3b, 0x7d, 0x6b, 0x17, 0x4e, 0x56, 0x4d, 0xfc, 0x25, 0x0b, 0x9e, 0xca, 0xec, + 0xaf, 0x61, 0xdc, 0x71, 0x0d, 0xca, 0x0d, 0x5a, 0xa8, 0x79, 0xb5, 0x25, 0xee, 0xbe, 0x12, 0x80, + 0x13, 0x1c, 0xc3, 0x86, 0xa3, 0xd0, 0xd3, 0x86, 0xe3, 0x5f, 0x59, 0xd0, 0xb1, 0x3e, 0x4e, 0x60, + 0xa3, 0x5e, 0x36, 0x37, 0xea, 0x8f, 0xf6, 0x33, 0x97, 0x39, 0x7b, 0xf4, 0x1f, 0x4d, 0xc0, 0xd9, + 0x1c, 0xaf, 0x8e, 0x5d, 0x98, 0xda, 0x6c, 0x10, 0xd3, 0x5f, 0x50, 0x7c, 0x4c, 0xa6, 0x6b, 0x65, + 0x57, 0xe7, 0x42, 0x96, 0xb9, 0x68, 0xaa, 0x03, 0x05, 0x77, 0x36, 0x81, 0xbe, 0x64, 0xc1, 0x69, + 0x67, 0x2f, 0xea, 0x48, 0x75, 0x2a, 0x78, 0xe6, 0xa5, 0x4c, 0x25, 0x48, 0x8f, 0xd4, 0xa8, 0x3c, + 0x95, 0x53, 0x16, 0x16, 0xce, 0x6c, 0x0b, 0x61, 0x11, 0x5d, 0x94, 0x8a, 0xf3, 0x5d, 0x3c, 0x5a, + 0xb3, 0xdc, 0x6f, 0xf8, 0x96, 0x2d, 0x21, 0x58, 0xd1, 0x41, 0x5f, 0x84, 0xf2, 0xa6, 0xf4, 0x89, + 0xcb, 0x38, 0x12, 0x92, 0x81, 0xec, 0xee, 0x29, 0xc8, 0x9f, 0x32, 0x15, 0x12, 0x4e, 0x88, 0xa2, + 0xd7, 0xa1, 0xe8, 0x6f, 0x44, 0xdd, 0xb2, 0x21, 0xa5, 0xac, 0x9f, 0xb8, 0xdf, 0xf8, 0xea, 0x52, + 0x1d, 0xd3, 0x8a, 0xe8, 0x26, 0x14, 0xc3, 0x75, 0x57, 0x68, 0xf0, 0x32, 0xf7, 0x70, 0x3c, 0x5f, + 0xcd, 0xe9, 0x15, 0xa3, 0x84, 0xe7, 0xab, 0x98, 0x92, 0x40, 0x35, 0x18, 0x64, 0xae, 0x10, 0xe2, + 0x3c, 0xc8, 0x94, 0x7c, 0xbb, 0xb8, 0x14, 0x71, 0xe7, 0x72, 0x86, 0x80, 0x39, 0x21, 0xb4, 0x06, + 0x43, 0x0d, 0x96, 0x39, 0x47, 0x84, 0xb6, 0xfe, 0x44, 0xa6, 0xae, 0xae, 0x4b, 0x4a, 0x21, 0xa1, + 0xba, 0x62, 0x18, 0x58, 0xd0, 0x62, 0x54, 0x49, 0x6b, 0x6b, 0x23, 0x12, 0x99, 0xde, 0xb2, 0xa9, + 0x76, 0xc9, 0x94, 0x25, 0xa8, 0x32, 0x0c, 0x2c, 0x68, 0xa1, 0x4f, 0x41, 0x61, 0xa3, 0x21, 0x3c, + 0x25, 0x32, 0x95, 0x76, 0xa6, 0xeb, 0xff, 0xfc, 0xd0, 0xc3, 0x83, 0x4a, 0x61, 0x69, 0x01, 0x17, + 0x36, 0x1a, 0x68, 0x15, 0x86, 0x37, 0xb8, 0xb3, 0xb0, 0xd0, 0xcb, 0x3d, 0x9d, 0xed, 0xc7, 0xdc, + 0xe1, 0x4f, 0xcc, 0x2d, 0xfc, 0x05, 0x00, 0x4b, 0x22, 0x2c, 0x58, 0xa7, 0x72, 0x7a, 0x16, 0x51, + 0xab, 0x67, 0x8f, 0xe6, 0xa8, 0xce, 0xcf, 0xe7, 0xc4, 0x75, 0x1a, 0x6b, 0x14, 0x29, 0x57, 0x3b, + 0x32, 0xdd, 0xa6, 0x88, 0xea, 0x91, 0xc9, 0xd5, 0x3d, 0x32, 0x91, 0x72, 0xae, 0x56, 0x48, 0x38, + 0x21, 0x8a, 0xb6, 0x61, 0x6c, 0x37, 0x6a, 0x6d, 0x11, 0xb9, 0xa4, 0x59, 0x90, 0x8f, 0x9c, 0x23, + 0xec, 0x9e, 0x40, 0xf4, 0xc2, 0xb8, 0xed, 0x34, 0x3b, 0x76, 0x21, 0xf6, 0xfe, 0x7d, 0x4f, 0x27, + 0x86, 0x4d, 0xda, 0x74, 0xf8, 0xdf, 0x6d, 0x07, 0xeb, 0xfb, 0x31, 0x11, 0x61, 0xae, 0x33, 0x87, + 0xff, 0x4d, 0x8e, 0xd2, 0x39, 0xfc, 0x02, 0x80, 0x25, 0x11, 0x74, 0x4f, 0x0c, 0x0f, 0xdb, 0x3d, + 0x27, 0xf3, 0xc3, 0x2e, 0x65, 0xe6, 0xbb, 0xd5, 0x06, 0x85, 0xed, 0x96, 0x09, 0x29, 0xb6, 0x4b, + 0xb6, 0xb6, 0x82, 0x38, 0xf0, 0x53, 0x3b, 0xf4, 0x54, 0xfe, 0x2e, 0x59, 0xcb, 0xc0, 0xef, 0xdc, + 0x25, 0xb3, 0xb0, 0x70, 0x66, 0x5b, 0xc8, 0x85, 0xf1, 0x56, 0x10, 0xc6, 0x7b, 0x41, 0x28, 0xf9, + 0x0b, 0x75, 0xd1, 0x2b, 0x18, 0x98, 0xa2, 0x45, 0x16, 0x76, 0xdd, 0x84, 0xe0, 0x14, 0x4d, 0xf4, + 0x59, 0x18, 0x8e, 0x1a, 0x4e, 0x93, 0x2c, 0xdf, 0x99, 0x3e, 0x95, 0x7f, 0xfc, 0xd4, 0x39, 0x4a, + 0x0e, 0x77, 0xb1, 0xc9, 0x11, 0x28, 0x58, 0x92, 0x43, 0x4b, 0x30, 0xc8, 0x72, 0x27, 0xb0, 0x08, + 0xdd, 0x39, 0xd1, 0xa3, 0x3a, 0x6c, 0x51, 0xf9, 0xde, 0xc4, 0x8a, 0x31, 0xaf, 0x4e, 0xd7, 0x80, + 0x10, 0xaf, 0x83, 0x68, 0xfa, 0x4c, 0xfe, 0x1a, 0x10, 0x52, 0xf9, 0x9d, 0x7a, 0xb7, 0x35, 0xa0, + 0x90, 0x70, 0x42, 0x94, 0xee, 0xcc, 0x74, 0x37, 0x3d, 0xdb, 0xc5, 0xf4, 0x25, 0x77, 0x2f, 0x65, + 0x3b, 0x33, 0xdd, 0x49, 0x29, 0x09, 0xfb, 0x77, 0x86, 0x3b, 0x65, 0x16, 0x76, 0x21, 0xfb, 0xab, + 0x56, 0xc7, 0x5b, 0xdd, 0x27, 0xfb, 0xd5, 0x0f, 0x1d, 0xa3, 0xb4, 0xfa, 0x25, 0x0b, 0xce, 0xb6, + 0x32, 0x3f, 0x44, 0x08, 0x00, 0xfd, 0xa9, 0x99, 0xf8, 0xa7, 0xab, 0x28, 0xfa, 0xd9, 0x70, 0x9c, + 0xd3, 0x52, 0xfa, 0x46, 0x50, 0x7c, 0xdf, 0x37, 0x82, 0x15, 0x28, 0x31, 0x21, 0xb3, 0x47, 0x26, + 0xb9, 0xf4, 0xc5, 0x88, 0x89, 0x12, 0x0b, 0xa2, 0x22, 0x56, 0x24, 0xd0, 0xf7, 0x5b, 0x70, 0x21, + 0xdd, 0x75, 0x4c, 0x18, 0x58, 0xc4, 0x9c, 0xe7, 0x77, 0xc1, 0x25, 0xf1, 0xfd, 0x17, 0x6a, 0xdd, + 0x90, 0x0f, 0x7b, 0x21, 0xe0, 0xee, 0x8d, 0xa1, 0x6a, 0xc6, 0x65, 0x74, 0xc8, 0x54, 0xc0, 0xf7, + 0x71, 0x21, 0x7d, 0x09, 0x46, 0x77, 0x82, 0xb6, 0x1f, 0x0b, 0x4b, 0x19, 0xf1, 0xd0, 0xcc, 0x9e, + 0xa6, 0x57, 0xb4, 0x72, 0x6c, 0x60, 0xa5, 0xae, 0xb1, 0xa5, 0x47, 0xbe, 0xc6, 0xbe, 0x9d, 0x4a, + 0x3d, 0x5f, 0xce, 0x8f, 0x6d, 0x28, 0x6e, 0xfc, 0x47, 0x48, 0x40, 0x7f, 0xb2, 0x77, 0xa3, 0x9f, + 0xb2, 0x32, 0x84, 0x7a, 0x7e, 0x5b, 0xfe, 0xb4, 0x79, 0x5b, 0xbe, 0x92, 0xbe, 0x2d, 0x77, 0x28, + 0x5f, 0x8d, 0x8b, 0x72, 0xff, 0x01, 0xb2, 0xfb, 0x8d, 0x38, 0x67, 0x37, 0xe1, 0x52, 0xaf, 0x63, + 0x89, 0x99, 0x4c, 0xb9, 0xea, 0xa9, 0x2d, 0x31, 0x99, 0x72, 0x97, 0xab, 0x98, 0x41, 0xfa, 0x0d, + 0x49, 0x62, 0xff, 0x4f, 0x0b, 0x8a, 0xb5, 0xc0, 0x3d, 0x01, 0x65, 0xf2, 0x67, 0x0c, 0x65, 0xf2, + 0x93, 0xd9, 0x07, 0xa2, 0x9b, 0xab, 0x3a, 0x5e, 0x4c, 0xa9, 0x8e, 0x2f, 0xe4, 0x11, 0xe8, 0xae, + 0x28, 0xfe, 0xf1, 0x22, 0x8c, 0xd4, 0x02, 0x57, 0xd9, 0x2b, 0xff, 0xfa, 0xa3, 0xd8, 0x2b, 0xe7, + 0x06, 0x90, 0xd5, 0x28, 0x33, 0x4b, 0x2b, 0xe9, 0xae, 0xf7, 0xe7, 0xcc, 0x6c, 0xf9, 0x3e, 0xf1, + 0x36, 0xb7, 0x62, 0xe2, 0xa6, 0x3f, 0xe7, 0xe4, 0xcc, 0x96, 0xff, 0x87, 0x05, 0x13, 0xa9, 0xd6, + 0x51, 0x13, 0xc6, 0x9a, 0xba, 0x26, 0x50, 0xf0, 0xe9, 0x23, 0x29, 0x11, 0x85, 0xd9, 0xa7, 0x56, + 0x84, 0x4d, 0xe2, 0x68, 0x16, 0x40, 0xbd, 0xd4, 0x49, 0x0d, 0x18, 0x93, 0xfa, 0xd5, 0x53, 0x5e, + 0x84, 0x35, 0x0c, 0xf4, 0x32, 0x8c, 0xc4, 0x41, 0x2b, 0x68, 0x06, 0x9b, 0xfb, 0xb7, 0x88, 0x0c, + 0x82, 0xa3, 0x8c, 0xb9, 0xd6, 0x12, 0x10, 0xd6, 0xf1, 0xec, 0x9f, 0x2c, 0xf2, 0x0f, 0xf5, 0x63, + 0xef, 0x1b, 0x3c, 0xf9, 0xe1, 0xe6, 0xc9, 0xaf, 0x5b, 0x30, 0x49, 0x5b, 0x67, 0xe6, 0x22, 0xf2, + 0xb0, 0x55, 0x89, 0x7a, 0xac, 0x2e, 0x89, 0x7a, 0xae, 0xd0, 0xbd, 0xcb, 0x0d, 0xda, 0xb1, 0xd0, + 0xa0, 0x69, 0x9b, 0x13, 0x2d, 0xc5, 0x02, 0x2a, 0xf0, 0x48, 0x18, 0x0a, 0x6f, 0x29, 0x1d, 0x8f, + 0x84, 0x21, 0x16, 0x50, 0x99, 0xc7, 0x67, 0x20, 0x27, 0x8f, 0x0f, 0x0b, 0xe9, 0x27, 0x0c, 0x0b, + 0x84, 0xd8, 0xa3, 0x85, 0xf4, 0x93, 0x16, 0x07, 0x09, 0x8e, 0xfd, 0x73, 0x45, 0x18, 0xad, 0x05, + 0x6e, 0xf2, 0x56, 0xf6, 0x92, 0xf1, 0x56, 0x76, 0x29, 0xf5, 0x56, 0x36, 0xa9, 0xe3, 0x7e, 0xe3, + 0x65, 0xec, 0x83, 0x7a, 0x19, 0xfb, 0x97, 0x16, 0x9b, 0xb5, 0xea, 0x6a, 0x5d, 0xe4, 0x11, 0x7e, + 0x01, 0x46, 0xd8, 0x86, 0xc4, 0xdc, 0xf3, 0xe4, 0x03, 0x12, 0x0b, 0xd1, 0xbf, 0x9a, 0x14, 0x63, + 0x1d, 0x07, 0x5d, 0x85, 0x52, 0x44, 0x9c, 0xb0, 0xb1, 0xa5, 0xf6, 0x38, 0xf1, 0xbc, 0xc2, 0xcb, + 0xb0, 0x82, 0xa2, 0x37, 0x93, 0x68, 0x72, 0xc5, 0xfc, 0x8c, 0xb8, 0x7a, 0x7f, 0xf8, 0x12, 0xc9, + 0x0f, 0x21, 0x67, 0xdf, 0x07, 0xd4, 0x89, 0xdf, 0x47, 0x18, 0xa5, 0x8a, 0x19, 0x46, 0xa9, 0xdc, + 0x11, 0x42, 0xe9, 0x4f, 0x2d, 0x18, 0xaf, 0x05, 0x2e, 0x5d, 0xba, 0x7f, 0x91, 0xd6, 0xa9, 0x1e, + 0x4a, 0x73, 0xa8, 0x4b, 0x28, 0xcd, 0xcb, 0x30, 0x58, 0x0b, 0xdc, 0xe5, 0x5a, 0x37, 0x37, 0x59, + 0xfb, 0x1f, 0x58, 0x30, 0x5c, 0x0b, 0xdc, 0x13, 0x50, 0xce, 0x7f, 0xda, 0x54, 0xce, 0x3f, 0x91, + 0xc3, 0x37, 0x39, 0xfa, 0xf8, 0x5f, 0x28, 0xc2, 0x18, 0xed, 0x67, 0xb0, 0x29, 0xa7, 0xd2, 0x18, + 0x36, 0xab, 0x8f, 0x61, 0xa3, 0xb2, 0x70, 0xd0, 0x6c, 0x06, 0x7b, 0xe9, 0x69, 0x5d, 0x62, 0xa5, + 0x58, 0x40, 0xd1, 0x73, 0x50, 0x6a, 0x85, 0x64, 0xd7, 0x0b, 0x84, 0x90, 0xa9, 0x3d, 0x75, 0xd4, + 0x44, 0x39, 0x56, 0x18, 0xf4, 0x72, 0x16, 0x79, 0x7e, 0x83, 0xc8, 0x9c, 0xdd, 0x03, 0x2c, 0xad, + 0x17, 0x0f, 0xa4, 0xad, 0x95, 0x63, 0x03, 0x0b, 0xdd, 0x87, 0x32, 0xfb, 0xcf, 0xb6, 0x9d, 0xa3, + 0xa7, 0x21, 0x12, 0xd9, 0x2b, 0x04, 0x01, 0x9c, 0xd0, 0x42, 0xd7, 0x01, 0x62, 0x19, 0x6c, 0x39, + 0x12, 0x21, 0x73, 0x94, 0x40, 0xae, 0xc2, 0x30, 0x47, 0x58, 0xc3, 0x42, 0xcf, 0x42, 0x39, 0x76, + 0xbc, 0xe6, 0x6d, 0xcf, 0x27, 0x11, 0xd3, 0x4b, 0x17, 0x65, 0x72, 0x0a, 0x51, 0x88, 0x13, 0x38, + 0x15, 0x88, 0x98, 0x3f, 0x39, 0x4f, 0x62, 0x56, 0x62, 0xd8, 0x4c, 0x20, 0xba, 0xad, 0x4a, 0xb1, + 0x86, 0x61, 0xbf, 0x0a, 0x67, 0x6a, 0x81, 0x5b, 0x0b, 0xc2, 0x78, 0x29, 0x08, 0xf7, 0x9c, 0xd0, + 0x95, 0xf3, 0x57, 0x91, 0x79, 0x12, 0xe8, 0x06, 0x35, 0xc8, 0x97, 0xaf, 0x91, 0x01, 0xe1, 0x45, + 0x26, 0x12, 0x1d, 0xd1, 0x47, 0xa4, 0xc1, 0x0e, 0x67, 0x95, 0xaf, 0xf0, 0x86, 0x13, 0x13, 0x74, + 0x87, 0xe5, 0x38, 0x4b, 0xce, 0x29, 0x51, 0xfd, 0x19, 0x2d, 0xc7, 0x59, 0x02, 0xcc, 0x3c, 0xd8, + 0xcc, 0xfa, 0xf6, 0xcf, 0x0c, 0xb0, 0x2d, 0x2b, 0x95, 0xbe, 0x0f, 0x7d, 0x01, 0xc6, 0x23, 0x72, + 0xdb, 0xf3, 0xdb, 0x0f, 0xe4, 0x4d, 0xbd, 0x8b, 0x97, 0x4f, 0x7d, 0x51, 0xc7, 0xe4, 0xfa, 0x3e, + 0xb3, 0x0c, 0xa7, 0xa8, 0xd1, 0x79, 0x0a, 0xdb, 0xfe, 0x5c, 0x74, 0x37, 0x22, 0xa1, 0x48, 0x1f, + 0xc7, 0xe6, 0x09, 0xcb, 0x42, 0x9c, 0xc0, 0x29, 0x5f, 0xb2, 0x3f, 0xab, 0x81, 0x8f, 0x83, 0x20, + 0x96, 0x9c, 0xcc, 0x12, 0x10, 0x69, 0xe5, 0xd8, 0xc0, 0x42, 0x4b, 0x80, 0xa2, 0x76, 0xab, 0xd5, + 0x64, 0xaf, 0xff, 0x4e, 0xf3, 0x46, 0x18, 0xb4, 0x5b, 0xfc, 0x69, 0xb4, 0xc8, 0xe3, 0x1c, 0xd6, + 0x3b, 0xa0, 0x38, 0xa3, 0x06, 0xdd, 0xa2, 0x36, 0x22, 0xf6, 0x9b, 0x71, 0x77, 0x51, 0xe8, 0xe0, + 0xeb, 0xac, 0x08, 0x4b, 0x18, 0x65, 0x26, 0xd6, 0x3c, 0xc7, 0x1c, 0x4a, 0x98, 0x09, 0xab, 0x52, + 0xac, 0x61, 0xa0, 0x45, 0x18, 0x8e, 0xf6, 0xa3, 0x46, 0x2c, 0x02, 0x3c, 0xe5, 0x24, 0x02, 0xad, + 0x33, 0x14, 0x2d, 0x39, 0x05, 0xaf, 0x82, 0x65, 0x5d, 0xb4, 0x03, 0xe3, 0x7b, 0x9e, 0xef, 0x06, + 0x7b, 0x91, 0x9c, 0xa8, 0x52, 0xbe, 0xfe, 0xf4, 0x3e, 0xc7, 0x4c, 0x4d, 0xb6, 0x31, 0x6f, 0xf7, + 0x0d, 0x62, 0x38, 0x45, 0xdc, 0xfe, 0x0e, 0x76, 0x40, 0xb3, 0xdc, 0x66, 0x71, 0x3b, 0x24, 0x68, + 0x07, 0xc6, 0x5a, 0x8c, 0xc3, 0x44, 0xe4, 0x6d, 0xc1, 0x26, 0x2f, 0xf5, 0x79, 0xd3, 0xde, 0xa3, + 0xfb, 0x9a, 0xd2, 0x84, 0xb1, 0x2b, 0x4c, 0x4d, 0x27, 0x87, 0x4d, 0xea, 0xf6, 0xef, 0x9c, 0x61, + 0x5b, 0x7c, 0x9d, 0x5f, 0x9f, 0x87, 0x85, 0xb9, 0xb3, 0xb8, 0x2b, 0xcc, 0xe4, 0xeb, 0x71, 0x92, + 0x01, 0x14, 0x26, 0xd3, 0x58, 0xd6, 0x45, 0x6f, 0xb2, 0x97, 0x73, 0xbe, 0xaf, 0xf6, 0x4a, 0x31, + 0xcd, 0xb1, 0x8c, 0x47, 0x72, 0x51, 0x11, 0x6b, 0x44, 0xd0, 0x6d, 0x18, 0x13, 0xa9, 0xb0, 0x84, + 0xa2, 0xae, 0x68, 0x28, 0x62, 0xc6, 0xb0, 0x0e, 0x3c, 0x4c, 0x17, 0x60, 0xb3, 0x32, 0xda, 0x84, + 0x0b, 0x5a, 0x5e, 0xc8, 0x1b, 0xa1, 0xc3, 0x5e, 0x53, 0x3d, 0xb6, 0x66, 0xb5, 0x6d, 0xfa, 0xa9, + 0x87, 0x07, 0x95, 0x0b, 0x6b, 0xdd, 0x10, 0x71, 0x77, 0x3a, 0xe8, 0x0e, 0x9c, 0xe1, 0xfe, 0x87, + 0x55, 0xe2, 0xb8, 0x4d, 0xcf, 0x57, 0xe7, 0x00, 0x67, 0xfb, 0x73, 0x0f, 0x0f, 0x2a, 0x67, 0xe6, + 0xb2, 0x10, 0x70, 0x76, 0x3d, 0xf4, 0x69, 0x28, 0xbb, 0x7e, 0x24, 0xc6, 0x60, 0xc8, 0x48, 0x79, + 0x5a, 0xae, 0xae, 0xd6, 0xd5, 0xf7, 0x27, 0x7f, 0x70, 0x52, 0x01, 0x6d, 0x72, 0x65, 0x9d, 0xba, + 0x1b, 0x0f, 0xe7, 0xa7, 0xb7, 0x17, 0x2c, 0x61, 0x78, 0x20, 0x71, 0x2d, 0xb5, 0xb2, 0xcb, 0x35, + 0x9c, 0x93, 0x0c, 0xc2, 0xe8, 0x0d, 0x40, 0x54, 0x78, 0xf4, 0x1a, 0x64, 0xae, 0xc1, 0x02, 0xa0, + 0x33, 0xdd, 0x66, 0xc9, 0xf0, 0xe3, 0x40, 0xf5, 0x0e, 0x0c, 0x9c, 0x51, 0x0b, 0xdd, 0xa4, 0xfb, + 0xa6, 0x5e, 0x2a, 0xec, 0x8b, 0xe5, 0x85, 0x63, 0xba, 0x4a, 0x5a, 0x21, 0x69, 0x38, 0x31, 0x71, + 0x4d, 0x8a, 0x38, 0x55, 0x8f, 0x1e, 0xdd, 0x2a, 0x17, 0x12, 0x98, 0x41, 0x3f, 0x3a, 0xf3, 0x21, + 0xd1, 0xbb, 0xfa, 0x56, 0x10, 0xc5, 0xab, 0x24, 0xde, 0x0b, 0xc2, 0x6d, 0x11, 0x63, 0x2d, 0x09, + 0xf7, 0x99, 0x80, 0xb0, 0x8e, 0x47, 0x65, 0x73, 0xf6, 0x74, 0xbd, 0x5c, 0x65, 0xaf, 0x86, 0xa5, + 0x64, 0x9d, 0xdc, 0xe4, 0xc5, 0x58, 0xc2, 0x25, 0xea, 0x72, 0x6d, 0x81, 0xbd, 0x00, 0xa6, 0x50, + 0x97, 0x6b, 0x0b, 0x58, 0xc2, 0x11, 0xe9, 0x4c, 0x27, 0x3b, 0x9e, 0xaf, 0x69, 0xed, 0x3c, 0x7d, + 0xfa, 0xcc, 0x28, 0xeb, 0xc3, 0xa4, 0x4a, 0x64, 0xcb, 0x83, 0xcf, 0x45, 0xd3, 0x13, 0x8c, 0x49, + 0xfa, 0x8f, 0x5c, 0xa7, 0x74, 0xd7, 0xcb, 0x29, 0x4a, 0xb8, 0x83, 0xb6, 0x11, 0x86, 0x65, 0xb2, + 0x67, 0x2e, 0xab, 0x6b, 0x50, 0x8e, 0xda, 0xeb, 0x6e, 0xb0, 0xe3, 0x78, 0x3e, 0x7b, 0xb0, 0xd3, + 0x64, 0xba, 0xba, 0x04, 0xe0, 0x04, 0x07, 0x2d, 0x41, 0xc9, 0x91, 0x8a, 0x69, 0x94, 0x1f, 0x73, + 0x41, 0xa9, 0xa3, 0xb9, 0x1b, 0xb2, 0x54, 0x45, 0xab, 0xba, 0xe8, 0x35, 0x18, 0x13, 0x5e, 0x67, + 0x3c, 0x12, 0x05, 0x7b, 0x50, 0xd3, 0x9c, 0x05, 0xea, 0x3a, 0x10, 0x9b, 0xb8, 0xe8, 0xf3, 0x30, + 0x4e, 0xa9, 0x24, 0x1b, 0xdb, 0xf4, 0xe9, 0x7e, 0x76, 0x44, 0x2d, 0x47, 0x89, 0x5e, 0x19, 0xa7, + 0x88, 0x21, 0x17, 0xce, 0x3b, 0xed, 0x38, 0x60, 0xca, 0x7d, 0x93, 0xff, 0xd7, 0x82, 0x6d, 0xe2, + 0xb3, 0x77, 0xb5, 0xd2, 0xfc, 0xa5, 0x87, 0x07, 0x95, 0xf3, 0x73, 0x5d, 0xf0, 0x70, 0x57, 0x2a, + 0xe8, 0x2e, 0x8c, 0xc4, 0x41, 0x93, 0x99, 0xed, 0xd3, 0x03, 0xf1, 0x6c, 0x7e, 0x18, 0xa3, 0x35, + 0x85, 0xa6, 0x2b, 0xb6, 0x54, 0x55, 0xac, 0xd3, 0x41, 0x6b, 0x7c, 0x8d, 0xb1, 0x00, 0xaf, 0x24, + 0x9a, 0x7e, 0x22, 0x7f, 0x60, 0x54, 0x1c, 0x58, 0x73, 0x09, 0x8a, 0x9a, 0x58, 0x27, 0x83, 0x6e, + 0xc0, 0x54, 0x2b, 0xf4, 0x02, 0xc6, 0xd8, 0xea, 0x61, 0x65, 0xda, 0x4c, 0x4b, 0x51, 0x4b, 0x23, + 0xe0, 0xce, 0x3a, 0xcc, 0x7f, 0x4f, 0x14, 0x4e, 0x9f, 0xe3, 0x39, 0xce, 0xb8, 0x9c, 0xcf, 0xcb, + 0xb0, 0x82, 0xa2, 0x15, 0xb6, 0x2f, 0xf3, 0x2b, 0xea, 0xf4, 0x4c, 0x7e, 0xac, 0x0a, 0xfd, 0x2a, + 0xcb, 0xc5, 0x33, 0xf5, 0x17, 0x27, 0x14, 0xe8, 0xb9, 0x11, 0x6d, 0x39, 0x21, 0xa9, 0x85, 0x41, + 0x83, 0x44, 0x5a, 0x4c, 0xe9, 0x27, 0x79, 0x1c, 0x4a, 0x7a, 0x6e, 0xd4, 0xb3, 0x10, 0x70, 0x76, + 0x3d, 0xe4, 0x6a, 0xa9, 0xbd, 0xa9, 0xd4, 0x1b, 0x4d, 0x9f, 0xef, 0x62, 0x04, 0x95, 0x12, 0x91, + 0x13, 0x5e, 0x34, 0x8a, 0x23, 0x9c, 0xa2, 0x89, 0xbe, 0x05, 0x26, 0x45, 0xd8, 0xa6, 0x64, 0xdc, + 0x2f, 0x24, 0xd6, 0x95, 0x38, 0x05, 0xc3, 0x1d, 0xd8, 0x3c, 0x92, 0xb6, 0xb3, 0xde, 0x24, 0x82, + 0x09, 0x6f, 0x7b, 0xfe, 0x76, 0x34, 0x7d, 0x91, 0x7d, 0xb5, 0x88, 0xa4, 0x9d, 0x86, 0xe2, 0x8c, + 0x1a, 0x68, 0x0d, 0x26, 0x5b, 0x21, 0x21, 0x3b, 0x4c, 0xc6, 0x12, 0xc7, 0x65, 0x85, 0x3b, 0x17, + 0xd3, 0x9e, 0xd4, 0x52, 0xb0, 0xc3, 0x8c, 0x32, 0xdc, 0x41, 0x01, 0xed, 0x41, 0x29, 0xd8, 0x25, + 0xe1, 0x16, 0x71, 0xdc, 0xe9, 0x4b, 0x5d, 0xac, 0x7d, 0xc5, 0xd9, 0x79, 0x47, 0xe0, 0xa6, 0x5e, + 0x77, 0x65, 0x71, 0xef, 0xd7, 0x5d, 0xd9, 0x18, 0xfa, 0x01, 0x0b, 0xce, 0x49, 0x85, 0x70, 0xbd, + 0x45, 0x47, 0x7d, 0x21, 0xf0, 0xa3, 0x38, 0xe4, 0xbe, 0xaf, 0x4f, 0xe5, 0x7b, 0x88, 0xae, 0xe5, + 0x54, 0x52, 0x6a, 0xb7, 0x73, 0x79, 0x18, 0x11, 0xce, 0x6f, 0x71, 0xe6, 0x9b, 0x61, 0xaa, 0x43, + 0x30, 0x38, 0x4a, 0x70, 0xff, 0x99, 0x6d, 0x18, 0x33, 0x46, 0xe7, 0xb1, 0x3e, 0xec, 0xfd, 0xca, + 0x10, 0x94, 0xd5, 0xa3, 0x0f, 0xba, 0x66, 0xbe, 0xe5, 0x9d, 0x4b, 0xbf, 0xe5, 0x95, 0xe8, 0xb5, + 0x52, 0x7f, 0xbe, 0x5b, 0x33, 0x0c, 0x41, 0x0b, 0xf9, 0x79, 0xfb, 0xf4, 0x8b, 0x61, 0x4f, 0xa7, + 0x52, 0x4d, 0x87, 0x57, 0xec, 0xfb, 0x51, 0x70, 0xa0, 0xab, 0x5a, 0xb0, 0xcf, 0xb4, 0xd9, 0xe8, + 0x32, 0xbd, 0x5b, 0xbb, 0xcb, 0xb5, 0x74, 0x1e, 0x59, 0xa6, 0x0f, 0xc2, 0x1c, 0xc6, 0x74, 0x10, + 0x54, 0x64, 0x66, 0x3a, 0x88, 0xe1, 0x47, 0xd4, 0x41, 0x48, 0x02, 0x38, 0xa1, 0x85, 0x9a, 0x30, + 0xd5, 0x30, 0x53, 0x00, 0x2b, 0x47, 0xd2, 0xcb, 0x3d, 0x93, 0xf1, 0xb6, 0xb5, 0x7c, 0x8b, 0x0b, + 0x69, 0x2a, 0xb8, 0x93, 0x30, 0x7a, 0x0d, 0x4a, 0xef, 0x06, 0x11, 0xdb, 0x60, 0x84, 0xdc, 0x28, + 0x1d, 0xee, 0x4a, 0x6f, 0xde, 0xa9, 0xb3, 0xf2, 0xc3, 0x83, 0xca, 0x48, 0x2d, 0x70, 0xe5, 0x5f, + 0xac, 0x2a, 0xa0, 0x07, 0x70, 0xc6, 0x38, 0x6d, 0x55, 0x77, 0xa1, 0xff, 0xee, 0x5e, 0x10, 0xcd, + 0x9d, 0x59, 0xce, 0xa2, 0x84, 0xb3, 0x1b, 0xa0, 0x47, 0x98, 0x1f, 0x88, 0xf4, 0xd9, 0x52, 0x36, + 0x65, 0x22, 0x68, 0x59, 0x0f, 0xcc, 0x90, 0x42, 0xc0, 0x9d, 0x75, 0xd0, 0x1c, 0x0c, 0xb1, 0xf9, + 0x8c, 0xa6, 0x47, 0xf3, 0x3d, 0xe4, 0xd9, 0xc4, 0x6b, 0x89, 0x2b, 0x58, 0x05, 0x2c, 0x2a, 0xda, + 0xbf, 0xcc, 0x9f, 0xd9, 0x84, 0x32, 0x9e, 0x44, 0xed, 0xe6, 0x49, 0x24, 0x78, 0x5b, 0x34, 0xde, + 0x09, 0x1e, 0xf9, 0x29, 0xf7, 0xd7, 0x2c, 0xf6, 0x94, 0xbb, 0x46, 0x76, 0x5a, 0x4d, 0x27, 0x3e, + 0x09, 0x5f, 0xb1, 0x37, 0xa1, 0x14, 0x8b, 0xd6, 0xba, 0xe5, 0xa4, 0xd3, 0x3a, 0xc5, 0x9e, 0xb3, + 0x95, 0xe0, 0x2b, 0x4b, 0xb1, 0x22, 0x63, 0xff, 0x33, 0x3e, 0x03, 0x12, 0x72, 0x02, 0xea, 0xd8, + 0xaa, 0xa9, 0x8e, 0xad, 0xf4, 0xf8, 0x82, 0x1c, 0xb5, 0xec, 0x3f, 0x35, 0xfb, 0xcd, 0x74, 0x0c, + 0x1f, 0x76, 0x1b, 0x02, 0xfb, 0x87, 0x2c, 0x38, 0x9d, 0x65, 0x74, 0x47, 0x2f, 0x2b, 0x5c, 0xc3, + 0xa1, 0x6c, 0x2a, 0xd4, 0x08, 0xde, 0x13, 0xe5, 0x58, 0x61, 0xf4, 0x9d, 0xee, 0xe5, 0x68, 0xe1, + 0x0f, 0xef, 0xc0, 0x58, 0x2d, 0x24, 0xda, 0x31, 0xf2, 0x3a, 0x77, 0xfe, 0xe4, 0xfd, 0x79, 0xee, + 0xc8, 0x8e, 0x9f, 0xf6, 0x4f, 0x17, 0xe0, 0x34, 0x7f, 0x14, 0x9d, 0xdb, 0x0d, 0x3c, 0xb7, 0x16, + 0xb8, 0x22, 0x55, 0xcf, 0x5b, 0x30, 0xda, 0xd2, 0xd4, 0x52, 0xdd, 0x02, 0xb0, 0xe9, 0xea, 0xab, + 0x44, 0x3d, 0xa0, 0x97, 0x62, 0x83, 0x16, 0x72, 0x61, 0x94, 0xec, 0x7a, 0x0d, 0xf5, 0xb2, 0x56, + 0x38, 0xf2, 0xf1, 0xa2, 0x5a, 0x59, 0xd4, 0xe8, 0x60, 0x83, 0xea, 0x63, 0xc8, 0xde, 0x68, 0xff, + 0xb0, 0x05, 0x4f, 0xe4, 0x84, 0x6b, 0xa3, 0xcd, 0xed, 0xb1, 0xe7, 0x67, 0x91, 0x08, 0x4e, 0x35, + 0xc7, 0x1f, 0xa5, 0xb1, 0x80, 0xa2, 0xcf, 0x02, 0xf0, 0x47, 0x65, 0x7a, 0x5b, 0xee, 0x15, 0xd7, + 0xca, 0x08, 0xc9, 0xa3, 0x85, 0x52, 0x91, 0xf5, 0xb1, 0x46, 0xcb, 0xfe, 0x89, 0x22, 0x0c, 0xb2, + 0x47, 0x4c, 0xb4, 0x04, 0xc3, 0x5b, 0x3c, 0x80, 0x79, 0x3f, 0xb1, 0xd2, 0x13, 0xb5, 0x03, 0x2f, + 0xc0, 0xb2, 0x32, 0x5a, 0x81, 0x53, 0x3c, 0x00, 0x7c, 0xb3, 0x4a, 0x9a, 0xce, 0xbe, 0xd4, 0x5e, + 0xf1, 0xe4, 0x69, 0x2a, 0x2c, 0xcc, 0x72, 0x27, 0x0a, 0xce, 0xaa, 0x87, 0x5e, 0x87, 0x71, 0x2a, + 0xee, 0x07, 0xed, 0x58, 0x52, 0xe2, 0xa1, 0xdf, 0xd5, 0xfd, 0x62, 0xcd, 0x80, 0xe2, 0x14, 0x36, + 0xbd, 0x87, 0xb7, 0x3a, 0xf4, 0x74, 0x83, 0xc9, 0x3d, 0xdc, 0xd4, 0xcd, 0x99, 0xb8, 0xcc, 0xda, + 0xae, 0xcd, 0x6c, 0x0b, 0xd7, 0xb6, 0x42, 0x12, 0x6d, 0x05, 0x4d, 0x57, 0xe4, 0xde, 0x4f, 0xac, + 0xed, 0x52, 0x70, 0xdc, 0x51, 0x83, 0x52, 0xd9, 0x70, 0xbc, 0x66, 0x3b, 0x24, 0x09, 0x95, 0x21, + 0x93, 0xca, 0x52, 0x0a, 0x8e, 0x3b, 0x6a, 0x50, 0x3e, 0x3a, 0x23, 0x92, 0xe1, 0xcb, 0x10, 0x14, + 0xca, 0x84, 0x72, 0x58, 0x3a, 0xe3, 0x75, 0x89, 0xd6, 0x24, 0x8c, 0xcc, 0x54, 0x3a, 0x7d, 0x4d, + 0x9b, 0x2d, 0xdc, 0xf0, 0x24, 0x95, 0x47, 0x49, 0xc9, 0xfe, 0xbd, 0x05, 0x38, 0x95, 0x61, 0xaa, + 0xcd, 0xb7, 0xaa, 0x4d, 0x2f, 0x8a, 0x55, 0x82, 0x28, 0x6d, 0xab, 0xe2, 0xe5, 0x58, 0x61, 0xd0, + 0xf5, 0xc0, 0x37, 0xc3, 0xf4, 0x06, 0x28, 0x4c, 0x21, 0x05, 0xf4, 0x88, 0xa9, 0x96, 0x2e, 0xc1, + 0x40, 0x3b, 0x22, 0x32, 0xce, 0x9a, 0xda, 0xbf, 0xd9, 0xfb, 0x06, 0x83, 0x50, 0xe9, 0x76, 0x53, + 0x3d, 0x2d, 0x68, 0xd2, 0x2d, 0x7f, 0x2f, 0xe0, 0x30, 0xda, 0xb9, 0x98, 0xf8, 0x8e, 0x1f, 0x0b, + 0x19, 0x38, 0x89, 0x0e, 0xc4, 0x4a, 0xb1, 0x80, 0xda, 0x5f, 0x29, 0xc2, 0xb9, 0x5c, 0xe7, 0x0d, + 0xda, 0xf5, 0x9d, 0xc0, 0xf7, 0xe2, 0x40, 0x3d, 0xa4, 0xf3, 0x88, 0x40, 0xa4, 0xb5, 0xb5, 0x22, + 0xca, 0xb1, 0xc2, 0x40, 0x57, 0x60, 0x90, 0x29, 0xc0, 0x3a, 0x52, 0x65, 0xcd, 0x57, 0x79, 0xd0, + 0x08, 0x0e, 0xee, 0x3b, 0x0d, 0xe1, 0x65, 0x18, 0x68, 0x05, 0x41, 0x33, 0xbd, 0x69, 0xd1, 0xee, + 0x06, 0x41, 0x13, 0x33, 0x20, 0xfa, 0x98, 0x18, 0xaf, 0xd4, 0xcb, 0x31, 0x76, 0xdc, 0x20, 0xd2, + 0x06, 0xed, 0x19, 0x18, 0xde, 0x26, 0xfb, 0xa1, 0xe7, 0x6f, 0xa6, 0x2d, 0x0a, 0x6e, 0xf1, 0x62, + 0x2c, 0xe1, 0x66, 0xe2, 0x94, 0xe1, 0xe3, 0xce, 0x1f, 0x58, 0xea, 0x79, 0x04, 0x7e, 0x5f, 0x11, + 0x26, 0xf0, 0x7c, 0xf5, 0x1b, 0x13, 0x71, 0xb7, 0x73, 0x22, 0x8e, 0x3b, 0x7f, 0x60, 0xef, 0xd9, + 0xf8, 0x05, 0x0b, 0x26, 0x58, 0x70, 0x71, 0x11, 0x5d, 0xc6, 0x0b, 0xfc, 0x13, 0x10, 0xf1, 0x2e, + 0xc3, 0x60, 0x48, 0x1b, 0x4d, 0xe7, 0xc8, 0x62, 0x3d, 0xc1, 0x1c, 0x86, 0xce, 0xc3, 0x00, 0xeb, + 0x02, 0x9d, 0xbc, 0x51, 0x9e, 0x5e, 0xa4, 0xea, 0xc4, 0x0e, 0x66, 0xa5, 0x2c, 0x64, 0x02, 0x26, + 0xad, 0xa6, 0xc7, 0x3b, 0x9d, 0xbc, 0x88, 0x7d, 0x38, 0x42, 0x26, 0x64, 0x76, 0xed, 0xfd, 0x85, + 0x4c, 0xc8, 0x26, 0xd9, 0xfd, 0xfa, 0xf4, 0x87, 0x05, 0xb8, 0x98, 0x59, 0xaf, 0xef, 0x90, 0x09, + 0xdd, 0x6b, 0x1f, 0x8f, 0x61, 0x58, 0xb6, 0xbd, 0x56, 0xf1, 0x04, 0xed, 0xb5, 0x06, 0xfa, 0x95, + 0x30, 0x07, 0xfb, 0x88, 0x64, 0x90, 0x39, 0x64, 0x1f, 0x92, 0x48, 0x06, 0x99, 0x7d, 0xcb, 0xb9, + 0xfe, 0xfd, 0x59, 0x21, 0xe7, 0x5b, 0xd8, 0x45, 0xf0, 0x2a, 0xdd, 0x67, 0x18, 0x30, 0x12, 0x12, + 0xf3, 0x28, 0xdf, 0x63, 0x78, 0x19, 0x56, 0x50, 0xe4, 0x69, 0x31, 0x01, 0x0a, 0xf9, 0x29, 0x63, + 0x73, 0x9b, 0x9a, 0x35, 0x1f, 0x30, 0xd5, 0x10, 0x64, 0xc4, 0x07, 0x58, 0xd1, 0x2e, 0xef, 0xc5, + 0xfe, 0x2f, 0xef, 0xa3, 0xd9, 0x17, 0x77, 0x34, 0x07, 0x13, 0x3b, 0x9e, 0x4f, 0xb7, 0xcd, 0x7d, + 0x53, 0x64, 0x55, 0x21, 0x72, 0x56, 0x4c, 0x30, 0x4e, 0xe3, 0xcf, 0xbc, 0x06, 0x63, 0x8f, 0xac, + 0x66, 0xb5, 0xbf, 0x5e, 0x84, 0x27, 0xbb, 0x2c, 0x7b, 0xbe, 0xd7, 0x1b, 0x73, 0xa0, 0xed, 0xf5, + 0x1d, 0xf3, 0x50, 0x83, 0xd3, 0x1b, 0xed, 0x66, 0x73, 0x9f, 0x99, 0x44, 0x13, 0x57, 0x62, 0x08, + 0x99, 0xf2, 0xbc, 0x4c, 0xe8, 0xb2, 0x94, 0x81, 0x83, 0x33, 0x6b, 0xa2, 0x37, 0x00, 0x05, 0x22, + 0x5f, 0xf5, 0x0d, 0xe2, 0x8b, 0x67, 0x21, 0x36, 0xf0, 0xc5, 0x64, 0x31, 0xde, 0xe9, 0xc0, 0xc0, + 0x19, 0xb5, 0xe8, 0xe5, 0x80, 0x9e, 0x4a, 0xfb, 0xaa, 0x5b, 0xa9, 0xcb, 0x01, 0xd6, 0x81, 0xd8, + 0xc4, 0x45, 0x37, 0x60, 0xca, 0xd9, 0x75, 0x3c, 0x1e, 0x64, 0x52, 0x12, 0xe0, 0xb7, 0x03, 0xa5, + 0x6f, 0x9b, 0x4b, 0x23, 0xe0, 0xce, 0x3a, 0xa9, 0xa8, 0x01, 0x43, 0xf9, 0x51, 0x03, 0xba, 0xef, + 0x8b, 0xbd, 0xd4, 0xc7, 0xf6, 0x7f, 0xb5, 0xe8, 0xf1, 0xc5, 0x85, 0x7c, 0x33, 0xf8, 0xd5, 0x6b, + 0xcc, 0x9e, 0x89, 0xeb, 0x13, 0x35, 0x07, 0xfe, 0x33, 0x9a, 0x3d, 0x53, 0x02, 0xc4, 0x26, 0x2e, + 0x67, 0x88, 0x28, 0xf1, 0x1b, 0x33, 0x44, 0x7c, 0x11, 0x00, 0x44, 0x61, 0xa0, 0xcf, 0xc1, 0xb0, + 0xeb, 0xed, 0x7a, 0x51, 0x10, 0x8a, 0xc5, 0x72, 0x44, 0x25, 0x7d, 0xb2, 0x0f, 0x56, 0x39, 0x19, + 0x2c, 0xe9, 0xd9, 0xdf, 0x57, 0x80, 0x31, 0xd9, 0xe2, 0x9b, 0xed, 0x20, 0x76, 0x4e, 0xe0, 0x58, + 0xbe, 0x61, 0x1c, 0xcb, 0x1f, 0xeb, 0x16, 0x05, 0x85, 0x75, 0x29, 0xf7, 0x38, 0xbe, 0x93, 0x3a, + 0x8e, 0x9f, 0xee, 0x4d, 0xaa, 0xfb, 0x31, 0xfc, 0xcf, 0x2d, 0x98, 0x32, 0xf0, 0x4f, 0xe0, 0x34, + 0x58, 0x32, 0x4f, 0x83, 0xa7, 0x7a, 0x7e, 0x43, 0xce, 0x29, 0xf0, 0xdd, 0xc5, 0x54, 0xdf, 0xd9, + 0xee, 0xff, 0x2e, 0x0c, 0x6c, 0x39, 0xa1, 0xdb, 0x2d, 0x2e, 0x73, 0x47, 0xa5, 0xd9, 0x9b, 0x4e, + 0x28, 0x1e, 0xd3, 0x9e, 0x53, 0x49, 0x5f, 0x9d, 0xb0, 0xf7, 0x43, 0x1a, 0x6b, 0x0a, 0xbd, 0x0a, + 0x43, 0x51, 0x23, 0x68, 0x29, 0x23, 0xe6, 0x4b, 0x3c, 0x21, 0x2c, 0x2d, 0x39, 0x3c, 0xa8, 0x20, + 0xb3, 0x39, 0x5a, 0x8c, 0x05, 0x3e, 0x7a, 0x0b, 0xc6, 0xd8, 0x2f, 0x65, 0x38, 0x53, 0xcc, 0xcf, + 0x06, 0x52, 0xd7, 0x11, 0xb9, 0xfd, 0x95, 0x51, 0x84, 0x4d, 0x52, 0x33, 0x9b, 0x50, 0x56, 0x9f, + 0xf5, 0x58, 0x5f, 0xc1, 0xfe, 0x63, 0x11, 0x4e, 0x65, 0xf0, 0x1c, 0x8a, 0x8c, 0x99, 0x78, 0xa1, + 0x4f, 0x56, 0x7d, 0x9f, 0x73, 0x11, 0xb1, 0xdb, 0x90, 0x2b, 0x78, 0xab, 0xef, 0x46, 0xef, 0x46, + 0x24, 0xdd, 0x28, 0x2d, 0xea, 0xdd, 0x28, 0x6d, 0xec, 0xc4, 0x86, 0x9a, 0x36, 0xa4, 0x7a, 0xfa, + 0x58, 0xe7, 0xf4, 0x8f, 0x8b, 0x70, 0x3a, 0x2b, 0x30, 0x13, 0xfa, 0xf6, 0x54, 0x66, 0xa8, 0x97, + 0xfa, 0x0d, 0xe9, 0xc4, 0xd3, 0x45, 0x89, 0xc4, 0xee, 0xb3, 0x66, 0xae, 0xa8, 0x9e, 0xc3, 0x2c, + 0xda, 0x64, 0x3e, 0xd1, 0x21, 0xcf, 0xe8, 0x25, 0xb7, 0x8f, 0x4f, 0xf6, 0xdd, 0x01, 0x91, 0x0a, + 0x2c, 0x4a, 0xbd, 0x9a, 0xcb, 0xe2, 0xde, 0xaf, 0xe6, 0xb2, 0xe5, 0x19, 0x0f, 0x46, 0xb4, 0xaf, + 0x79, 0xac, 0x33, 0xbe, 0x4d, 0x4f, 0x2b, 0xad, 0xdf, 0x8f, 0x75, 0xd6, 0x7f, 0xd8, 0x82, 0x94, + 0x31, 0xb0, 0x52, 0x8b, 0x59, 0xb9, 0x6a, 0xb1, 0x4b, 0x30, 0x10, 0x06, 0x4d, 0x92, 0x4e, 0xc4, + 0x84, 0x83, 0x26, 0xc1, 0x0c, 0x42, 0x31, 0xe2, 0x44, 0xd9, 0x31, 0xaa, 0x5f, 0xe4, 0xc4, 0x15, + 0xed, 0x32, 0x0c, 0x36, 0xc9, 0x2e, 0x69, 0xa6, 0xb3, 0x1c, 0xdc, 0xa6, 0x85, 0x98, 0xc3, 0xec, + 0x5f, 0x18, 0x80, 0x0b, 0x5d, 0xa3, 0x0a, 0xd0, 0xeb, 0xd0, 0xa6, 0x13, 0x93, 0x3d, 0x67, 0x3f, + 0x1d, 0x8e, 0xfc, 0x06, 0x2f, 0xc6, 0x12, 0xce, 0x9c, 0x28, 0x78, 0x50, 0xd1, 0x94, 0x12, 0x51, + 0xc4, 0x12, 0x15, 0x50, 0x53, 0x29, 0x55, 0x3c, 0x0e, 0xa5, 0xd4, 0x75, 0x80, 0x28, 0x6a, 0x72, + 0x73, 0x13, 0x57, 0x78, 0x67, 0x24, 0xc1, 0x67, 0xeb, 0xb7, 0x05, 0x04, 0x6b, 0x58, 0xa8, 0x0a, + 0x93, 0xad, 0x30, 0x88, 0xb9, 0x4e, 0xb6, 0xca, 0xed, 0xd4, 0x06, 0x4d, 0x87, 0xee, 0x5a, 0x0a, + 0x8e, 0x3b, 0x6a, 0xa0, 0x97, 0x61, 0x44, 0x38, 0x79, 0xd7, 0x82, 0xa0, 0x29, 0xd4, 0x40, 0xca, + 0xea, 0xa9, 0x9e, 0x80, 0xb0, 0x8e, 0xa7, 0x55, 0x63, 0x8a, 0xde, 0xe1, 0xcc, 0x6a, 0x5c, 0xd9, + 0xab, 0xe1, 0xa5, 0x82, 0xb4, 0x95, 0xfa, 0x0a, 0xd2, 0x96, 0x28, 0xc6, 0xca, 0x7d, 0xbf, 0x6d, + 0x41, 0x4f, 0x55, 0xd2, 0xcf, 0x0e, 0xc0, 0x29, 0xc1, 0x38, 0x8f, 0x9b, 0x5d, 0xee, 0x76, 0xb2, + 0xcb, 0x71, 0xa8, 0xce, 0xbe, 0xc1, 0x33, 0x27, 0xcd, 0x33, 0xdf, 0x6f, 0x81, 0x29, 0x5e, 0xa1, + 0xbf, 0x94, 0x9b, 0xcf, 0xe1, 0xe5, 0x5c, 0x71, 0xcd, 0x95, 0x07, 0xc8, 0xfb, 0xcc, 0xec, 0x60, + 0xff, 0x17, 0x0b, 0x9e, 0xea, 0x49, 0x11, 0x2d, 0x42, 0x99, 0xc9, 0x80, 0xda, 0xed, 0xec, 0x69, + 0x65, 0xc7, 0x2a, 0x01, 0x39, 0x22, 0x69, 0x52, 0x13, 0x2d, 0x76, 0x24, 0xce, 0x78, 0x26, 0x23, + 0x71, 0xc6, 0x19, 0x63, 0x78, 0x1e, 0x31, 0x73, 0xc6, 0x2f, 0x17, 0x61, 0x88, 0x73, 0xfc, 0x09, + 0x5c, 0xc3, 0x96, 0x84, 0xde, 0xb6, 0x4b, 0x98, 0x36, 0xde, 0x97, 0xd9, 0xaa, 0x13, 0x3b, 0x5c, + 0x4c, 0x50, 0xa7, 0x55, 0xa2, 0xe1, 0x45, 0xb3, 0xc6, 0x79, 0x36, 0x93, 0x52, 0x4c, 0x02, 0xa7, + 0xa1, 0x9d, 0x6e, 0x5f, 0x00, 0x88, 0xe2, 0xd0, 0xf3, 0x37, 0x29, 0x0d, 0x11, 0xf0, 0xef, 0xe3, + 0x5d, 0x5a, 0xaf, 0x2b, 0x64, 0xde, 0x87, 0x64, 0xa5, 0x2b, 0x00, 0xd6, 0x28, 0xce, 0xbc, 0x02, + 0x65, 0x85, 0xdc, 0x4b, 0x8b, 0x33, 0xaa, 0x0b, 0x17, 0x9f, 0x81, 0x89, 0x54, 0x5b, 0x47, 0x52, + 0x02, 0xfd, 0xa2, 0x05, 0x13, 0xbc, 0xcb, 0x8b, 0xfe, 0xae, 0xd8, 0x53, 0xdf, 0x83, 0xd3, 0xcd, + 0x8c, 0xbd, 0x4d, 0xcc, 0x68, 0xff, 0x7b, 0xa1, 0x52, 0xfa, 0x64, 0x41, 0x71, 0x66, 0x1b, 0xe8, + 0x2a, 0xe5, 0x5b, 0xba, 0x77, 0x39, 0x4d, 0xe1, 0x6b, 0x37, 0xca, 0x79, 0x96, 0x97, 0x61, 0x05, + 0xb5, 0x7f, 0xcb, 0x82, 0x29, 0xde, 0xf3, 0x5b, 0x64, 0x5f, 0xad, 0xf0, 0x0f, 0xb2, 0xef, 0x22, + 0x97, 0x4d, 0x21, 0x27, 0x97, 0x8d, 0xfe, 0x69, 0xc5, 0xae, 0x9f, 0xf6, 0xd3, 0x16, 0x08, 0x0e, + 0x3c, 0x81, 0xab, 0xfc, 0x37, 0x9b, 0x57, 0xf9, 0x99, 0x7c, 0xa6, 0xce, 0xb9, 0xc3, 0xff, 0xa9, + 0x05, 0x93, 0x1c, 0x21, 0x79, 0x73, 0xfe, 0x40, 0xe7, 0xa1, 0x9f, 0xa4, 0x94, 0x2a, 0x53, 0x7d, + 0xf6, 0x47, 0x19, 0x93, 0x35, 0xd0, 0x75, 0xb2, 0x5c, 0xb9, 0x80, 0x8e, 0x90, 0x90, 0xf5, 0xc8, + 0x91, 0xde, 0xed, 0x3f, 0xb0, 0x00, 0xf1, 0x66, 0x0c, 0xf1, 0x87, 0x0a, 0x15, 0xac, 0x54, 0x3b, + 0x2e, 0x92, 0xad, 0x46, 0x41, 0xb0, 0x86, 0x75, 0x2c, 0xc3, 0x93, 0x32, 0x1c, 0x28, 0xf6, 0x36, + 0x1c, 0x38, 0xc2, 0x88, 0xfe, 0xfe, 0x20, 0xa4, 0xbd, 0x51, 0xd0, 0x3d, 0x18, 0x6d, 0x38, 0x2d, + 0x67, 0xdd, 0x6b, 0x7a, 0xb1, 0x47, 0xa2, 0x6e, 0x16, 0x47, 0x0b, 0x1a, 0x9e, 0x78, 0xea, 0xd5, + 0x4a, 0xb0, 0x41, 0x07, 0xcd, 0x02, 0xb4, 0x42, 0x6f, 0xd7, 0x6b, 0x92, 0x4d, 0xa6, 0x71, 0x60, + 0xde, 0xbd, 0xdc, 0x8c, 0x46, 0x96, 0x62, 0x0d, 0x23, 0xc3, 0x51, 0xb3, 0xf8, 0xf8, 0x1c, 0x35, + 0x07, 0x8e, 0xe8, 0xa8, 0x39, 0xd8, 0x97, 0xa3, 0x26, 0x86, 0xb3, 0x52, 0x44, 0xa2, 0xff, 0x97, + 0xbc, 0x26, 0x11, 0x72, 0x31, 0xf7, 0xf9, 0x9d, 0x79, 0x78, 0x50, 0x39, 0x8b, 0x33, 0x31, 0x70, + 0x4e, 0x4d, 0xf4, 0x59, 0x98, 0x76, 0x9a, 0xcd, 0x60, 0x4f, 0x8d, 0xda, 0x62, 0xd4, 0x70, 0x9a, + 0x5c, 0x63, 0x3f, 0xcc, 0xa8, 0x9e, 0x7f, 0x78, 0x50, 0x99, 0x9e, 0xcb, 0xc1, 0xc1, 0xb9, 0xb5, + 0x53, 0x7e, 0x9e, 0xa5, 0x9e, 0x7e, 0x9e, 0x9f, 0x86, 0x72, 0x2b, 0x0c, 0x1a, 0x2b, 0x9a, 0x33, + 0xd8, 0x45, 0x3a, 0x80, 0x35, 0x59, 0x78, 0x78, 0x50, 0x19, 0x53, 0x7f, 0xd8, 0x09, 0x9f, 0x54, + 0xc8, 0x70, 0xef, 0x84, 0xc7, 0xe9, 0xde, 0xb9, 0x0d, 0xa7, 0xea, 0x24, 0xf4, 0x58, 0xde, 0x5a, + 0x37, 0xd9, 0x3f, 0xd6, 0xa0, 0x1c, 0xa6, 0x76, 0xcc, 0xbe, 0x42, 0x9b, 0x69, 0x11, 0xb7, 0xe5, + 0x0e, 0x99, 0x10, 0xb2, 0xff, 0x8f, 0x05, 0xc3, 0xc2, 0x0f, 0xe2, 0x04, 0x04, 0xb5, 0x39, 0x43, + 0x5f, 0x5e, 0xc9, 0x3e, 0x55, 0x58, 0x67, 0x72, 0x35, 0xe5, 0xcb, 0x29, 0x4d, 0xf9, 0x53, 0xdd, + 0x88, 0x74, 0xd7, 0x91, 0xff, 0x9d, 0x22, 0x8c, 0x9b, 0xae, 0x4b, 0x27, 0x30, 0x04, 0xab, 0x30, + 0x1c, 0x09, 0x3f, 0xb9, 0x42, 0xbe, 0x4d, 0x78, 0x7a, 0x12, 0x13, 0x6b, 0x2d, 0xe1, 0x19, 0x27, + 0x89, 0x64, 0x3a, 0xe0, 0x15, 0x1f, 0xa3, 0x03, 0x5e, 0x2f, 0xef, 0xb1, 0x81, 0xe3, 0xf0, 0x1e, + 0xb3, 0xbf, 0xca, 0x4e, 0x36, 0xbd, 0xfc, 0x04, 0x84, 0x9e, 0x1b, 0xe6, 0x19, 0x68, 0x77, 0xe1, + 0x2c, 0xd1, 0xa9, 0x1c, 0xe1, 0xe7, 0xe7, 0x2d, 0xb8, 0x90, 0xf1, 0x55, 0x9a, 0x24, 0xf4, 0x1c, + 0x94, 0x9c, 0xb6, 0xeb, 0xa9, 0xb5, 0xac, 0xbd, 0x9a, 0xcd, 0x89, 0x72, 0xac, 0x30, 0xd0, 0x02, + 0x4c, 0x91, 0x07, 0x2d, 0x8f, 0x3f, 0x5b, 0xea, 0x26, 0x95, 0x45, 0x1e, 0xee, 0x79, 0x31, 0x0d, + 0xc4, 0x9d, 0xf8, 0x2a, 0xd6, 0x41, 0x31, 0x37, 0xd6, 0xc1, 0x3f, 0xb2, 0x60, 0x44, 0xf9, 0x44, + 0x3d, 0xf6, 0xd1, 0xfe, 0x16, 0x73, 0xb4, 0x9f, 0xec, 0x32, 0xda, 0x39, 0xc3, 0xfc, 0xf7, 0x0a, + 0xaa, 0xbf, 0xb5, 0x20, 0x8c, 0xfb, 0x90, 0xb0, 0x5e, 0x85, 0x52, 0x2b, 0x0c, 0xe2, 0xa0, 0x11, + 0x34, 0x85, 0x80, 0x75, 0x3e, 0x09, 0xc5, 0xc1, 0xcb, 0x0f, 0xb5, 0xdf, 0x58, 0x61, 0xb3, 0xd1, + 0x0b, 0xc2, 0x58, 0x08, 0x35, 0xc9, 0xe8, 0x05, 0x61, 0x8c, 0x19, 0x04, 0xb9, 0x00, 0xb1, 0x13, + 0x6e, 0x92, 0x98, 0x96, 0x89, 0xd0, 0x3f, 0xf9, 0x9b, 0x47, 0x3b, 0xf6, 0x9a, 0xb3, 0x9e, 0x1f, + 0x47, 0x71, 0x38, 0xbb, 0xec, 0xc7, 0x77, 0x42, 0x7e, 0x5f, 0xd3, 0x62, 0x6b, 0x28, 0x5a, 0x58, + 0xa3, 0x2b, 0x3d, 0x92, 0x59, 0x1b, 0x83, 0xe6, 0xfb, 0xfb, 0xaa, 0x28, 0xc7, 0x0a, 0xc3, 0x7e, + 0x85, 0x1d, 0x25, 0x6c, 0x80, 0x8e, 0x16, 0xf6, 0xe2, 0x6b, 0x25, 0x35, 0xb4, 0xec, 0xf1, 0xad, + 0xaa, 0x07, 0xd7, 0xe8, 0xbe, 0x73, 0xd3, 0x86, 0x75, 0x0f, 0xa1, 0x24, 0x02, 0x07, 0xfa, 0xd6, + 0x0e, 0xb3, 0x8c, 0xe7, 0x7b, 0x1c, 0x01, 0x47, 0x30, 0xc4, 0x60, 0x21, 0xe8, 0x59, 0x80, 0xee, + 0xe5, 0x9a, 0x60, 0x72, 0x2d, 0x04, 0xbd, 0x00, 0xe0, 0x04, 0x07, 0x5d, 0x13, 0xb7, 0xfd, 0x01, + 0x23, 0x65, 0xa5, 0xbc, 0xed, 0xcb, 0xcf, 0xd7, 0xae, 0xfb, 0x2f, 0xc0, 0x88, 0x4a, 0x5d, 0x59, + 0xe3, 0x79, 0xfd, 0x44, 0x20, 0xa4, 0xc5, 0xa4, 0x18, 0xeb, 0x38, 0x68, 0x0d, 0x26, 0x22, 0xae, + 0xea, 0x51, 0xf1, 0x2e, 0xb9, 0xca, 0xec, 0xe3, 0xd2, 0x9c, 0xa3, 0x6e, 0x82, 0x0f, 0x59, 0x11, + 0xdf, 0x3a, 0xa4, 0x5b, 0x71, 0x9a, 0x04, 0x7a, 0x1d, 0xc6, 0x9b, 0x81, 0xe3, 0xce, 0x3b, 0x4d, + 0xc7, 0x6f, 0xb0, 0xef, 0x2d, 0x99, 0x79, 0xbc, 0x6e, 0x1b, 0x50, 0x9c, 0xc2, 0xa6, 0x82, 0x99, + 0x5e, 0x22, 0x62, 0xb4, 0x3a, 0xfe, 0x26, 0x89, 0x44, 0x3a, 0x3d, 0x26, 0x98, 0xdd, 0xce, 0xc1, + 0xc1, 0xb9, 0xb5, 0xd1, 0xab, 0x30, 0x2a, 0x3f, 0x5f, 0x73, 0x9a, 0x4f, 0x6c, 0xef, 0x35, 0x18, + 0x36, 0x30, 0xd1, 0x1e, 0x9c, 0x91, 0xff, 0xd7, 0x42, 0x67, 0x63, 0xc3, 0x6b, 0x08, 0x27, 0x4c, + 0xee, 0xc3, 0x34, 0x27, 0x9d, 0xa2, 0x16, 0xb3, 0x90, 0x0e, 0x0f, 0x2a, 0x97, 0xc4, 0xa8, 0x65, + 0xc2, 0xd9, 0x24, 0x66, 0xd3, 0x47, 0x2b, 0x70, 0x6a, 0x8b, 0x38, 0xcd, 0x78, 0x6b, 0x61, 0x8b, + 0x34, 0xb6, 0xe5, 0x22, 0x62, 0xae, 0xf8, 0x9a, 0xc5, 0xfa, 0xcd, 0x4e, 0x14, 0x9c, 0x55, 0x0f, + 0xbd, 0x0d, 0xd3, 0xad, 0xf6, 0x7a, 0xd3, 0x8b, 0xb6, 0x56, 0x83, 0x98, 0x59, 0x90, 0xa8, 0x7c, + 0x8e, 0xc2, 0x67, 0x5f, 0x85, 0x21, 0xa8, 0xe5, 0xe0, 0xe1, 0x5c, 0x0a, 0xe8, 0x3d, 0x38, 0x93, + 0x62, 0x06, 0xe1, 0x41, 0x3c, 0x9e, 0x1f, 0xf1, 0xba, 0x9e, 0x55, 0x41, 0x78, 0x04, 0x67, 0x81, + 0x70, 0x76, 0x13, 0xef, 0xcf, 0xae, 0xe8, 0x5d, 0x5a, 0x59, 0x13, 0xca, 0xd0, 0x17, 0x61, 0x54, + 0xe7, 0x22, 0x71, 0xc0, 0x5c, 0xc9, 0x96, 0x59, 0x34, 0x6e, 0xe3, 0x22, 0x9d, 0xe2, 0x28, 0x1d, + 0x86, 0x0d, 0x8a, 0x36, 0x81, 0xec, 0xef, 0x43, 0xb7, 0xa1, 0xd4, 0x68, 0x7a, 0xc4, 0x8f, 0x97, + 0x6b, 0xdd, 0x22, 0xea, 0x2c, 0x08, 0x1c, 0x31, 0x60, 0x22, 0x44, 0x30, 0x2f, 0xc3, 0x8a, 0x82, + 0xfd, 0xab, 0x05, 0xa8, 0xf4, 0x88, 0x37, 0x9d, 0x52, 0x7f, 0x5b, 0x7d, 0xa9, 0xbf, 0xe7, 0x64, + 0x76, 0xca, 0xd5, 0x94, 0x4e, 0x20, 0x95, 0x79, 0x32, 0xd1, 0x0c, 0xa4, 0xf1, 0xfb, 0x36, 0x47, + 0xd6, 0x35, 0xe8, 0x03, 0x3d, 0x0d, 0xea, 0x8d, 0x97, 0xb3, 0xc1, 0xfe, 0x2f, 0x22, 0xb9, 0xaf, + 0x20, 0xf6, 0x57, 0x0b, 0x70, 0x46, 0x0d, 0xe1, 0x5f, 0xdc, 0x81, 0xbb, 0xdb, 0x39, 0x70, 0xc7, + 0xf0, 0x86, 0x64, 0xdf, 0x81, 0x21, 0x1e, 0x91, 0xa8, 0x0f, 0x01, 0xe8, 0xb2, 0x19, 0xe3, 0x4e, + 0x1d, 0xd3, 0x46, 0x9c, 0xbb, 0xbf, 0x66, 0xc1, 0xc4, 0xda, 0x42, 0xad, 0x1e, 0x34, 0xb6, 0x49, + 0x3c, 0xc7, 0x05, 0x56, 0x2c, 0xe4, 0x1f, 0xeb, 0x11, 0xe5, 0x9a, 0x2c, 0x89, 0xe9, 0x12, 0x0c, + 0x6c, 0x05, 0x51, 0x9c, 0x7e, 0x60, 0xbe, 0x19, 0x44, 0x31, 0x66, 0x10, 0xfb, 0xb7, 0x2d, 0x18, + 0x64, 0xd9, 0x97, 0x7b, 0xa5, 0x04, 0xef, 0xe7, 0xbb, 0xd0, 0xcb, 0x30, 0x44, 0x36, 0x36, 0x48, + 0x23, 0x16, 0xb3, 0x2a, 0x1d, 0x6d, 0x87, 0x16, 0x59, 0x29, 0x3d, 0xf4, 0x59, 0x63, 0xfc, 0x2f, + 0x16, 0xc8, 0xe8, 0x3e, 0x94, 0x63, 0x6f, 0x87, 0xcc, 0xb9, 0xae, 0x78, 0xa2, 0x7b, 0x04, 0xbf, + 0xe6, 0x35, 0x49, 0x00, 0x27, 0xb4, 0xec, 0xaf, 0x14, 0x00, 0x92, 0x40, 0x17, 0xbd, 0x3e, 0x71, + 0xbe, 0xe3, 0xf1, 0xe6, 0x4a, 0xc6, 0xe3, 0x0d, 0x4a, 0x08, 0x66, 0xbc, 0xdc, 0xa8, 0x61, 0x2a, + 0xf6, 0x35, 0x4c, 0x03, 0x47, 0x19, 0xa6, 0x05, 0x98, 0x4a, 0x02, 0x75, 0x98, 0x51, 0x8b, 0xd8, + 0x25, 0x65, 0x2d, 0x0d, 0xc4, 0x9d, 0xf8, 0x36, 0x81, 0x4b, 0x2a, 0xbc, 0x80, 0x38, 0x6b, 0x98, + 0x05, 0xe8, 0x11, 0xb2, 0xc3, 0x27, 0xaf, 0x53, 0x85, 0xdc, 0xd7, 0xa9, 0x1f, 0xb3, 0xe0, 0x74, + 0xba, 0x1d, 0xe6, 0x92, 0xf7, 0x65, 0x0b, 0xce, 0xb0, 0x37, 0x3a, 0xd6, 0x6a, 0xe7, 0x8b, 0xe0, + 0x4b, 0x5d, 0x43, 0x26, 0xe4, 0xf4, 0x38, 0xf1, 0xe8, 0x5e, 0xc9, 0x22, 0x8d, 0xb3, 0x5b, 0xb4, + 0xff, 0x73, 0x01, 0xa6, 0xf3, 0x62, 0x2d, 0x30, 0x03, 0x71, 0xe7, 0x41, 0x7d, 0x9b, 0xec, 0x09, + 0x33, 0xdc, 0xc4, 0x40, 0x9c, 0x17, 0x63, 0x09, 0x4f, 0x87, 0x10, 0x2e, 0xf4, 0x17, 0x42, 0x18, + 0x6d, 0xc1, 0xd4, 0xde, 0x16, 0xf1, 0xef, 0xfa, 0x91, 0x13, 0x7b, 0xd1, 0x86, 0xc7, 0x52, 0x7b, + 0x73, 0xbe, 0xf9, 0x94, 0x34, 0x70, 0xbd, 0x9f, 0x46, 0x38, 0x3c, 0xa8, 0x5c, 0x30, 0x0a, 0x92, + 0x2e, 0xf3, 0x8d, 0x04, 0x77, 0x12, 0xed, 0x8c, 0xc0, 0x3c, 0xf0, 0x18, 0x23, 0x30, 0xdb, 0x5f, + 0xb6, 0xe0, 0x5c, 0x6e, 0x86, 0x34, 0x74, 0x15, 0x4a, 0x4e, 0xcb, 0xe3, 0x7a, 0x45, 0xb1, 0x8d, + 0xb2, 0x4b, 0x79, 0x6d, 0x99, 0x6b, 0x15, 0x15, 0x54, 0x65, 0x6e, 0x2d, 0xe4, 0x66, 0x6e, 0xed, + 0x99, 0x88, 0xd5, 0xfe, 0x1e, 0x0b, 0x84, 0x73, 0x5b, 0x1f, 0x7b, 0xf7, 0x5b, 0x32, 0xf1, 0xb5, + 0x91, 0xa5, 0xe1, 0x52, 0xbe, 0xb7, 0x9f, 0xc8, 0xcd, 0xa0, 0x64, 0x25, 0x23, 0x23, 0x83, 0x41, + 0xcb, 0x76, 0x41, 0x40, 0xab, 0x84, 0xa9, 0x02, 0x7b, 0xf7, 0xe6, 0x3a, 0x80, 0xcb, 0x70, 0xb5, + 0xf4, 0xb7, 0xea, 0x64, 0xae, 0x2a, 0x08, 0xd6, 0xb0, 0xec, 0x7f, 0x5f, 0x80, 0x11, 0x99, 0x15, + 0xa0, 0xed, 0xf7, 0x73, 0x61, 0x3f, 0x52, 0x9a, 0x30, 0x96, 0x2f, 0x9a, 0x12, 0xae, 0x25, 0x7a, + 0x8e, 0x24, 0x5f, 0xb4, 0x04, 0xe0, 0x04, 0x87, 0xae, 0xa2, 0xa8, 0xbd, 0xce, 0xd0, 0x53, 0xae, + 0x58, 0x75, 0x5e, 0x8c, 0x25, 0x1c, 0x7d, 0x16, 0x26, 0x79, 0xbd, 0x30, 0x68, 0x39, 0x9b, 0x5c, + 0x89, 0x3d, 0xa8, 0x7c, 0xa8, 0x27, 0x57, 0x52, 0xb0, 0xc3, 0x83, 0xca, 0xe9, 0x74, 0x19, 0x7b, + 0xfe, 0xe8, 0xa0, 0xc2, 0x4c, 0x2a, 0x78, 0x23, 0x74, 0xf5, 0x77, 0x58, 0x62, 0x24, 0x20, 0xac, + 0xe3, 0xd9, 0x5f, 0x04, 0xd4, 0x99, 0x1f, 0x01, 0xbd, 0xc1, 0xed, 0xe8, 0xbc, 0x90, 0xb8, 0xdd, + 0x9e, 0x43, 0x74, 0x4f, 0x61, 0xe9, 0x45, 0xc1, 0x6b, 0x61, 0x55, 0xdf, 0xfe, 0xeb, 0x45, 0x98, + 0x4c, 0xfb, 0x8d, 0xa2, 0x9b, 0x30, 0xc4, 0x45, 0x0f, 0x41, 0xbe, 0xcb, 0x6b, 0xbb, 0xe6, 0x6d, + 0xca, 0x36, 0x61, 0x21, 0xbd, 0x88, 0xfa, 0xe8, 0x6d, 0x18, 0x71, 0x83, 0x3d, 0x7f, 0xcf, 0x09, + 0xdd, 0xb9, 0xda, 0xb2, 0x60, 0xe7, 0xcc, 0x1b, 0x4c, 0x35, 0x41, 0xd3, 0x3d, 0x58, 0xd9, 0xcb, + 0x52, 0x02, 0xc2, 0x3a, 0x39, 0xb4, 0xc6, 0xc2, 0xb9, 0x6e, 0x78, 0x9b, 0x2b, 0x4e, 0xab, 0x9b, + 0x51, 0xf5, 0x82, 0x44, 0xd2, 0x28, 0x8f, 0x89, 0x98, 0xaf, 0x1c, 0x80, 0x13, 0x42, 0xe8, 0xdb, + 0xe1, 0x54, 0x94, 0xa3, 0xf4, 0xcc, 0x4b, 0x97, 0xd3, 0x4d, 0x0f, 0x38, 0xff, 0x04, 0xbd, 0x5b, + 0x66, 0xa9, 0x47, 0xb3, 0x9a, 0xb1, 0x7f, 0xed, 0x14, 0x18, 0x8b, 0xd8, 0xc8, 0x9e, 0x66, 0x1d, + 0x53, 0xf6, 0x34, 0x0c, 0x25, 0xb2, 0xd3, 0x8a, 0xf7, 0xab, 0x5e, 0xd8, 0x2d, 0xbb, 0xe7, 0xa2, + 0xc0, 0xe9, 0xa4, 0x29, 0x21, 0x58, 0xd1, 0xc9, 0x4e, 0x71, 0x57, 0xfc, 0x00, 0x53, 0xdc, 0x0d, + 0x9c, 0x60, 0x8a, 0xbb, 0x55, 0x18, 0xde, 0xf4, 0x62, 0x4c, 0x5a, 0x81, 0x10, 0xfa, 0x33, 0xf9, + 0xf0, 0x06, 0x47, 0xe9, 0x4c, 0xa6, 0x24, 0x00, 0x58, 0x12, 0x41, 0x6f, 0xa8, 0x15, 0x38, 0x94, + 0x7f, 0x67, 0xee, 0x7c, 0x16, 0xce, 0x5c, 0x83, 0x22, 0x91, 0xdd, 0xf0, 0xa3, 0x26, 0xb2, 0x5b, + 0x92, 0xe9, 0xe7, 0x4a, 0xf9, 0x1e, 0x10, 0x2c, 0xbb, 0x5c, 0x8f, 0xa4, 0x73, 0xf7, 0xf4, 0x94, + 0x7d, 0xe5, 0xfc, 0x9d, 0x40, 0x65, 0xe3, 0xeb, 0x33, 0x51, 0xdf, 0xf7, 0x58, 0x70, 0xa6, 0x95, + 0x95, 0xbd, 0x52, 0x3c, 0xe1, 0xbd, 0xdc, 0x77, 0x7a, 0x4e, 0xa3, 0x41, 0xa6, 0x3c, 0xc9, 0x44, + 0xc3, 0xd9, 0xcd, 0xd1, 0x81, 0x0e, 0xd7, 0x5d, 0x91, 0x69, 0xee, 0x72, 0x4e, 0xc6, 0xbf, 0x2e, + 0x79, 0xfe, 0xd6, 0x32, 0xb2, 0xcb, 0x7d, 0x34, 0x2f, 0xbb, 0x5c, 0xdf, 0x39, 0xe5, 0xde, 0x50, + 0xb9, 0xfe, 0xc6, 0xf2, 0x59, 0x89, 0x67, 0xf2, 0xeb, 0x99, 0xe1, 0xef, 0x0d, 0x95, 0xe1, 0xaf, + 0x4b, 0x9c, 0x49, 0x9e, 0xbf, 0xaf, 0x67, 0x5e, 0x3f, 0x2d, 0x37, 0xdf, 0xc4, 0xf1, 0xe4, 0xe6, + 0x33, 0x8e, 0x1a, 0x9e, 0x1e, 0xee, 0xd9, 0x1e, 0x47, 0x8d, 0x41, 0xb7, 0xfb, 0x61, 0xc3, 0xf3, + 0x10, 0x4e, 0x3d, 0x52, 0x1e, 0xc2, 0x7b, 0x7a, 0x5e, 0x3f, 0xd4, 0x23, 0x71, 0x1d, 0x45, 0xea, + 0x33, 0x9b, 0xdf, 0x3d, 0xfd, 0x00, 0x3c, 0x95, 0x4f, 0x57, 0x9d, 0x73, 0x9d, 0x74, 0x33, 0x8f, + 0xc0, 0x8e, 0x2c, 0x81, 0xa7, 0x4f, 0x26, 0x4b, 0xe0, 0x99, 0x63, 0xcf, 0x12, 0x78, 0xf6, 0x04, + 0xb2, 0x04, 0x3e, 0xf1, 0x81, 0x66, 0x09, 0x9c, 0x7e, 0x0c, 0x59, 0x02, 0x57, 0x93, 0x2c, 0x81, + 0xe7, 0xf2, 0xa7, 0x24, 0xc3, 0x2c, 0x3b, 0x27, 0x37, 0xe0, 0x3d, 0x66, 0x9b, 0xc1, 0x03, 0x9b, + 0x88, 0x40, 0x98, 0xd9, 0x31, 0x12, 0xb3, 0xa2, 0x9f, 0xf0, 0x29, 0x51, 0x20, 0x9c, 0x90, 0xa2, + 0x74, 0x93, 0x5c, 0x81, 0x4f, 0x76, 0x51, 0x8f, 0x67, 0x29, 0x1e, 0xbb, 0x64, 0x08, 0x7c, 0x9d, + 0x67, 0x08, 0x3c, 0x9f, 0xbf, 0x93, 0xa7, 0x8f, 0x3b, 0x33, 0x2f, 0xe0, 0xf7, 0x16, 0xe0, 0x62, + 0xf7, 0x75, 0x91, 0x68, 0x3d, 0x6b, 0xc9, 0x2b, 0x5d, 0x4a, 0xeb, 0xc9, 0xef, 0x56, 0x09, 0x56, + 0xdf, 0xd1, 0xa3, 0x6e, 0xc0, 0x94, 0xb2, 0xe7, 0x6e, 0x7a, 0x8d, 0x7d, 0x2d, 0xd3, 0xba, 0xf2, + 0x5b, 0xad, 0xa7, 0x11, 0x70, 0x67, 0x1d, 0x34, 0x07, 0x13, 0x46, 0xe1, 0x72, 0x55, 0xdc, 0xa1, + 0x94, 0x9a, 0xb5, 0x6e, 0x82, 0x71, 0x1a, 0xdf, 0xfe, 0x29, 0x0b, 0x9e, 0xc8, 0x49, 0xc0, 0xd3, + 0x77, 0x70, 0xa4, 0x0d, 0x98, 0x68, 0x99, 0x55, 0x7b, 0xc4, 0x50, 0x33, 0xd2, 0xfc, 0xa8, 0xbe, + 0xa6, 0x00, 0x38, 0x4d, 0xd4, 0xfe, 0x13, 0x0b, 0x2e, 0x74, 0xb5, 0xed, 0x41, 0x18, 0xce, 0x6e, + 0xee, 0x44, 0xce, 0x42, 0x48, 0x5c, 0xe2, 0xc7, 0x9e, 0xd3, 0xac, 0xb7, 0x48, 0x43, 0xd3, 0x5b, + 0x33, 0x13, 0xaa, 0x1b, 0x2b, 0xf5, 0xb9, 0x4e, 0x0c, 0x9c, 0x53, 0x13, 0x2d, 0x01, 0xea, 0x84, + 0x88, 0x19, 0x66, 0xd1, 0x4d, 0x3b, 0xe9, 0xe1, 0x8c, 0x1a, 0xe8, 0x15, 0x18, 0x53, 0x16, 0x62, + 0xda, 0x8c, 0xb3, 0x0d, 0x18, 0xeb, 0x00, 0x6c, 0xe2, 0xcd, 0x5f, 0xfd, 0x8d, 0xdf, 0xbd, 0xf8, + 0x91, 0xdf, 0xfc, 0xdd, 0x8b, 0x1f, 0xf9, 0xad, 0xdf, 0xbd, 0xf8, 0x91, 0xef, 0x7c, 0x78, 0xd1, + 0xfa, 0x8d, 0x87, 0x17, 0xad, 0xdf, 0x7c, 0x78, 0xd1, 0xfa, 0xad, 0x87, 0x17, 0xad, 0xdf, 0x79, + 0x78, 0xd1, 0xfa, 0xca, 0xef, 0x5d, 0xfc, 0xc8, 0x5b, 0x85, 0xdd, 0x17, 0xfe, 0x7f, 0x00, 0x00, + 0x00, 0xff, 0xff, 0xba, 0x58, 0x99, 0x11, 0xc4, 0xf0, 0x00, 0x00, } diff --git a/staging/src/k8s.io/api/core/v1/generated.proto b/staging/src/k8s.io/api/core/v1/generated.proto index c98b36a033d..492c82709d0 100644 --- a/staging/src/k8s.io/api/core/v1/generated.proto +++ b/staging/src/k8s.io/api/core/v1/generated.proto @@ -3246,6 +3246,19 @@ message PodSpec { // This field is alpha-level as of Kubernetes v1.16, and is only honored by servers that enable the PodOverhead feature. // +optional map overhead = 32; + + // TopologySpreadConstraints describes how a group of pods ought to spread across topology + // domains. Scheduler will schedule pods in a way which abides by the constraints. + // This field is alpha-level and is only honored by clusters that enables the EvenPodsSpread + // feature. + // All topologySpreadConstraints are ANDed. + // +optional + // +patchMergeKey=topologyKey + // +patchStrategy=merge + // +listType=map + // +listMapKey=topologyKey + // +listMapKey=whenUnsatisfiable + repeated TopologySpreadConstraint topologySpreadConstraints = 33; } // PodStatus represents information about the status of a pod. Status may trail the actual @@ -4642,6 +4655,59 @@ message TopologySelectorTerm { repeated TopologySelectorLabelRequirement matchLabelExpressions = 1; } +// TopologySpreadConstraint specifies how to spread matching pods among the given topology. +message TopologySpreadConstraint { + // MaxSkew describes the degree to which pods may be unevenly distributed. + // It's the maximum permitted difference between the number of matching pods in + // any two topology domains of a given topology type. + // For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same + // labelSelector spread as 1/1/0: + // +-------+-------+-------+ + // | zone1 | zone2 | zone3 | + // +-------+-------+-------+ + // | P | P | | + // +-------+-------+-------+ + // - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 1/1/1; + // scheduling it onto zone1(zone2) would make the ActualSkew(2-0) on zone1(zone2) + // violate MaxSkew(1). + // - if MaxSkew is 2, incoming pod can be scheduled onto any zone. + // It's a required field. Default value is 1 and 0 is not allowed. + optional int32 maxSkew = 1; + + // TopologyKey is the key of node labels. Nodes that have a label with this key + // and identical values are considered to be in the same topology. + // We consider each as a "bucket", and try to put balanced number + // of pods into each bucket. + // It's a required field. + optional string topologyKey = 2; + + // WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy + // the spread constraint. + // - DoNotSchedule (default) tells the scheduler not to schedule it + // - ScheduleAnyway tells the scheduler to still schedule it + // It's considered as "Unsatisfiable" if and only if placing incoming pod on any + // topology violates "MaxSkew". + // For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same + // labelSelector spread as 3/1/1: + // +-------+-------+-------+ + // | zone1 | zone2 | zone3 | + // +-------+-------+-------+ + // | P P P | P | P | + // +-------+-------+-------+ + // If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled + // to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies + // MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler + // won't make it *more* imbalanced. + // It's a required field. + optional string whenUnsatisfiable = 3; + + // LabelSelector is used to find matching pods. + // Pods that match this label selector are counted to determine the number of pods + // in their corresponding topology domain. + // +optional + optional k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector labelSelector = 4; +} + // TypedLocalObjectReference contains enough information to let you locate the // typed referenced object inside the same namespace. message TypedLocalObjectReference { diff --git a/staging/src/k8s.io/api/core/v1/types.go b/staging/src/k8s.io/api/core/v1/types.go index 4a6510930ca..493a9377a60 100644 --- a/staging/src/k8s.io/api/core/v1/types.go +++ b/staging/src/k8s.io/api/core/v1/types.go @@ -3011,6 +3011,79 @@ type PodSpec struct { // This field is alpha-level as of Kubernetes v1.16, and is only honored by servers that enable the PodOverhead feature. // +optional Overhead ResourceList `json:"overhead,omitempty" protobuf:"bytes,32,opt,name=overhead"` + // TopologySpreadConstraints describes how a group of pods ought to spread across topology + // domains. Scheduler will schedule pods in a way which abides by the constraints. + // This field is alpha-level and is only honored by clusters that enables the EvenPodsSpread + // feature. + // All topologySpreadConstraints are ANDed. + // +optional + // +patchMergeKey=topologyKey + // +patchStrategy=merge + // +listType=map + // +listMapKey=topologyKey + // +listMapKey=whenUnsatisfiable + TopologySpreadConstraints []TopologySpreadConstraint `json:"topologySpreadConstraints,omitempty" patchStrategy:"merge" patchMergeKey:"topologyKey" protobuf:"bytes,33,opt,name=topologySpreadConstraints"` +} + +type UnsatisfiableConstraintAction string + +const ( + // DoNotSchedule instructs the scheduler not to schedule the pod + // when constraints are not satisfied. + DoNotSchedule UnsatisfiableConstraintAction = "DoNotSchedule" + // ScheduleAnyway instructs the scheduler to schedule the pod + // even if constraints are not satisfied. + ScheduleAnyway UnsatisfiableConstraintAction = "ScheduleAnyway" +) + +// TopologySpreadConstraint specifies how to spread matching pods among the given topology. +type TopologySpreadConstraint struct { + // MaxSkew describes the degree to which pods may be unevenly distributed. + // It's the maximum permitted difference between the number of matching pods in + // any two topology domains of a given topology type. + // For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same + // labelSelector spread as 1/1/0: + // +-------+-------+-------+ + // | zone1 | zone2 | zone3 | + // +-------+-------+-------+ + // | P | P | | + // +-------+-------+-------+ + // - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 1/1/1; + // scheduling it onto zone1(zone2) would make the ActualSkew(2-0) on zone1(zone2) + // violate MaxSkew(1). + // - if MaxSkew is 2, incoming pod can be scheduled onto any zone. + // It's a required field. Default value is 1 and 0 is not allowed. + MaxSkew int32 `json:"maxSkew" protobuf:"varint,1,opt,name=maxSkew"` + // TopologyKey is the key of node labels. Nodes that have a label with this key + // and identical values are considered to be in the same topology. + // We consider each as a "bucket", and try to put balanced number + // of pods into each bucket. + // It's a required field. + TopologyKey string `json:"topologyKey" protobuf:"bytes,2,opt,name=topologyKey"` + // WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy + // the spread constraint. + // - DoNotSchedule (default) tells the scheduler not to schedule it + // - ScheduleAnyway tells the scheduler to still schedule it + // It's considered as "Unsatisfiable" if and only if placing incoming pod on any + // topology violates "MaxSkew". + // For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same + // labelSelector spread as 3/1/1: + // +-------+-------+-------+ + // | zone1 | zone2 | zone3 | + // +-------+-------+-------+ + // | P P P | P | P | + // +-------+-------+-------+ + // If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled + // to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies + // MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler + // won't make it *more* imbalanced. + // It's a required field. + WhenUnsatisfiable UnsatisfiableConstraintAction `json:"whenUnsatisfiable" protobuf:"bytes,3,opt,name=whenUnsatisfiable,casttype=UnsatisfiableConstraintAction"` + // LabelSelector is used to find matching pods. + // Pods that match this label selector are counted to determine the number of pods + // in their corresponding topology domain. + // +optional + LabelSelector *metav1.LabelSelector `json:"labelSelector,omitempty" protobuf:"bytes,4,opt,name=labelSelector"` } const ( diff --git a/staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go b/staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go index cfe7a533c7e..d98f3d37301 100644 --- a/staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go +++ b/staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go @@ -1568,6 +1568,7 @@ var map_PodSpec = map[string]string{ "enableServiceLinks": "EnableServiceLinks indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links. Optional: Defaults to true.", "preemptionPolicy": "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is alpha-level and is only honored by servers that enable the NonPreemptingPriority feature.", "overhead": "Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. This field will be autopopulated at admission time by the RuntimeClass admission controller. If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests. The RuntimeClass admission controller will reject Pod create requests which have the overhead already set. If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero. More info: https://git.k8s.io/enhancements/keps/sig-node/20190226-pod-overhead.md This field is alpha-level as of Kubernetes v1.16, and is only honored by servers that enable the PodOverhead feature.", + "topologySpreadConstraints": "TopologySpreadConstraints describes how a group of pods ought to spread across topology domains. Scheduler will schedule pods in a way which abides by the constraints. This field is alpha-level and is only honored by clusters that enables the EvenPodsSpread feature. All topologySpreadConstraints are ANDed.", } func (PodSpec) SwaggerDoc() map[string]string { @@ -2252,6 +2253,18 @@ func (TopologySelectorTerm) SwaggerDoc() map[string]string { return map_TopologySelectorTerm } +var map_TopologySpreadConstraint = map[string]string{ + "": "TopologySpreadConstraint specifies how to spread matching pods among the given topology.", + "maxSkew": "MaxSkew describes the degree to which pods may be unevenly distributed. It's the maximum permitted difference between the number of matching pods in any two topology domains of a given topology type. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 1/1/0: ", + "topologyKey": "TopologyKey is the key of node labels. Nodes that have a label with this key and identical values are considered to be in the same topology. We consider each as a \"bucket\", and try to put balanced number of pods into each bucket. It's a required field.", + "whenUnsatisfiable": "WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy the spread constraint. - DoNotSchedule (default) tells the scheduler not to schedule it - ScheduleAnyway tells the scheduler to still schedule it It's considered as \"Unsatisfiable\" if and only if placing incoming pod on any topology violates \"MaxSkew\". For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: ", + "labelSelector": "LabelSelector is used to find matching pods. Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain.", +} + +func (TopologySpreadConstraint) SwaggerDoc() map[string]string { + return map_TopologySpreadConstraint +} + var map_TypedLocalObjectReference = map[string]string{ "": "TypedLocalObjectReference contains enough information to let you locate the typed referenced object inside the same namespace.", "apiGroup": "APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required.", diff --git a/staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go b/staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go index ac79fafbb50..563bab6443d 100644 --- a/staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go +++ b/staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go @@ -3661,6 +3661,13 @@ func (in *PodSpec) DeepCopyInto(out *PodSpec) { (*out)[key] = val.DeepCopy() } } + if in.TopologySpreadConstraints != nil { + in, out := &in.TopologySpreadConstraints, &out.TopologySpreadConstraints + *out = make([]TopologySpreadConstraint, len(*in)) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } + } return } @@ -5204,6 +5211,27 @@ func (in *TopologySelectorTerm) DeepCopy() *TopologySelectorTerm { return out } +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *TopologySpreadConstraint) DeepCopyInto(out *TopologySpreadConstraint) { + *out = *in + if in.LabelSelector != nil { + in, out := &in.LabelSelector, &out.LabelSelector + *out = new(metav1.LabelSelector) + (*in).DeepCopyInto(*out) + } + return +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TopologySpreadConstraint. +func (in *TopologySpreadConstraint) DeepCopy() *TopologySpreadConstraint { + if in == nil { + return nil + } + out := new(TopologySpreadConstraint) + in.DeepCopyInto(out) + return out +} + // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *TypedLocalObjectReference) DeepCopyInto(out *TypedLocalObjectReference) { *out = *in diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.DaemonSet.json b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.DaemonSet.json index d2631d7b1f0..433abb89184 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.DaemonSet.json +++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.DaemonSet.json @@ -1051,35 +1051,53 @@ "preemptionPolicy": "ʕW6¯ȗŮ·俦磊ʝʅ¸Ư竱=沚ʧ", "overhead": { "硑Ț匡婲#ɛ蛳j惧鷋簡SļŽɣB矗E": "667" - } + }, + "topologySpreadConstraints": [ + { + "maxSkew": 1008427374, + "topologyKey": "351", + "whenUnsatisfiable": "揃_ftvĩĚƂ蚅郦抷qTfZ", + "labelSelector": { + "matchLabels": { + "fY6T4g_-.._Lf2t_m...CqrN7_B__--v-3-BzO5z80n_Ht5W_._._-2M2Z": "i_P..w-W_-nE...-__--.k47M7y-Dy__3wc.q.8_00.0_._.-_L-__bJ" + }, + "matchExpressions": [ + { + "key": "7Pn-W23-_.z_.._s--_F-BR-.h_-2-s", + "operator": "Exists" + } + ] + } + } + ] } }, "updateStrategy": { - "type": "乾毛ĥu疾4姺剟ź魊塾ɖ$", + "type": "tŧK剛Ʀ魨练脨,Ƃ3貊", "rollingUpdate": { } }, - "minReadySeconds": 108452964, - "revisionHistoryLimit": -1556813247 + "minReadySeconds": 527722852, + "revisionHistoryLimit": -1109287817 }, "status": { - "currentNumberScheduled": -699990187, - "numberMisscheduled": 1494873941, - "desiredNumberScheduled": -150888717, - "numberReady": 159036358, - "observedGeneration": 8572471297015927631, - "updatedNumberScheduled": 2017039887, - "numberAvailable": -1370389893, - "numberUnavailable": -1065451254, - "collisionCount": 256213209, + "currentNumberScheduled": -227159566, + "numberMisscheduled": 1555151820, + "desiredNumberScheduled": -1757808404, + "numberReady": 957711740, + "observedGeneration": -725266266422306482, + "updatedNumberScheduled": -1461365428, + "numberAvailable": -886586171, + "numberUnavailable": -496491540, + "collisionCount": -918715115, "conditions": [ { - "type": "ŜĂ", - "status": "!ń1ċƹ|慼櫁色苆试揯遐", - "lastTransitionTime": "2058-09-30T18:21:51Z", - "reason": "351", - "message": "352" + "type": "Ķ餍4Y鳲Jɡj瓇ɽ丿Y", + "status": "媴h5ƅȸȓɻ猶N嫡", + "lastTransitionTime": "2153-11-03T10:00:52Z", + "reason": "358", + "message": "359" } ] } diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.DaemonSet.pb b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.DaemonSet.pb index 61fde5e56bf..634e91d509d 100644 Binary files a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.DaemonSet.pb and b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.DaemonSet.pb differ diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.DaemonSet.yaml b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.DaemonSet.yaml index 62ed8027b58..0915d61bfd5 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.DaemonSet.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.DaemonSet.yaml @@ -32,8 +32,8 @@ metadata: selfLink: "5" uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e spec: - minReadySeconds: 108452964 - revisionHistoryLimit: -1556813247 + minReadySeconds: 527722852 + revisionHistoryLimit: -1109287817 selector: matchExpressions: - key: 68._bQw.-dG6c-.6--_x.--0wmZk1_8._3s_-B @@ -521,6 +521,16 @@ spec: operator: Uȍ tolerationSeconds: 5874355269862618775 value: "342" + topologySpreadConstraints: + - labelSelector: + matchExpressions: + - key: 7Pn-W23-_.z_.._s--_F-BR-.h_-2-s + operator: Exists + matchLabels: + fY6T4g_-.._Lf2t_m...CqrN7_B__--v-3-BzO5z80n_Ht5W_._._-2M2Z: i_P..w-W_-nE...-__--.k47M7y-Dy__3wc.q.8_00.0_._.-_L-__bJ + maxSkew: 1008427374 + topologyKey: "351" + whenUnsatisfiable: 揃_ftvĩĚƂ蚅郦抷qTfZ volumes: - awsElasticBlockStore: fsType: "56" @@ -723,20 +733,20 @@ spec: volumePath: "110" updateStrategy: rollingUpdate: {} - type: 乾毛ĥu疾4姺剟ź魊塾ɖ$ + type: tŧK剛Ʀ魨练脨,Ƃ3貊 status: - collisionCount: 256213209 + collisionCount: -918715115 conditions: - - lastTransitionTime: "2058-09-30T18:21:51Z" - message: "352" - reason: "351" - status: '!ń1ċƹ|慼櫁色苆试揯遐' - type: ŜĂ - currentNumberScheduled: -699990187 - desiredNumberScheduled: -150888717 - numberAvailable: -1370389893 - numberMisscheduled: 1494873941 - numberReady: 159036358 - numberUnavailable: -1065451254 - observedGeneration: 8572471297015927631 - updatedNumberScheduled: 2017039887 + - lastTransitionTime: "2153-11-03T10:00:52Z" + message: "359" + reason: "358" + status: 媴h5ƅȸȓɻ猶N嫡 + type: Ķ餍4Y鳲Jɡj瓇ɽ丿Y + currentNumberScheduled: -227159566 + desiredNumberScheduled: -1757808404 + numberAvailable: -886586171 + numberMisscheduled: 1555151820 + numberReady: 957711740 + numberUnavailable: -496491540 + observedGeneration: -725266266422306482 + updatedNumberScheduled: -1461365428 diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.json b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.json index ccbfd53821c..c1c7530363c 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.json +++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.json @@ -1058,36 +1058,54 @@ "preemptionPolicy": "qiǙĞǠ", "overhead": { "锒鿦Ršțb贇髪č": "840" - } + }, + "topologySpreadConstraints": [ + { + "maxSkew": 44905239, + "topologyKey": "349", + "whenUnsatisfiable": "NRNJ丧鴻ĿW癜鞤A馱z芀¿l磶Bb偃", + "labelSelector": { + "matchLabels": { + "54-br5r---r8oh782-u---76g---h-4-lx-0-2qg-4.94s-6-k57/8..-__--.k47M7y-Dy__3wc.q.8_00.0_._.-_L-_b": "E_8-7_-YD-Q9_-__..YNFu7Pg-.814e-_07-ht-E6___-X__H.-39-A_-_l67Qa" + }, + "matchExpressions": [ + { + "key": "34-5-yqu20-9105g4-edj0fh/8C4_-_2G0.-c_C.G.h--m._fN._k8__._p", + "operator": "DoesNotExist" + } + ] + } + } + ] } }, "strategy": { - "type": "暇镘買ɱD很唟-墡è箁E嗆R2璻", + "type": "琇ũ齑誀ŭ\"ɦ?鮻ȧH僠 ", "rollingUpdate": { } }, - "minReadySeconds": 1969832939, - "revisionHistoryLimit": -984441502, - "progressDeadlineSeconds": 609488884 + "minReadySeconds": -517165840, + "revisionHistoryLimit": 1605659256, + "progressDeadlineSeconds": 1266174302 }, "status": { - "observedGeneration": -2515851994541435779, - "replicas": -1761745349, - "updatedReplicas": 853127920, - "readyReplicas": -1585749538, - "availableReplicas": 1652110987, - "unavailableReplicas": -572810738, + "observedGeneration": 2247058080259757914, + "replicas": -87275477, + "updatedReplicas": -1140021566, + "readyReplicas": 2081997618, + "availableReplicas": -261966046, + "unavailableReplicas": 444881930, "conditions": [ { - "type": "ªɛȨç捌聮ŃŻ@ǮJ=礏ƴ磳藷曥摮", - "status": "}óǑ獰Ĉ癯頯", - "lastUpdateTime": "2605-01-14T06:17:32Z", - "lastTransitionTime": "2709-11-25T14:54:03Z", - "reason": "349", - "message": "350" + "type": "黹ʩ鹸ɷLȋw`揄戀Ž彙p", + "status": "Ćɜɘ灢7ưgǣ", + "lastUpdateTime": "2061-09-04T01:12:20Z", + "lastTransitionTime": "2720-08-01T20:39:42Z", + "reason": "356", + "message": "357" } ], - "collisionCount": -2053075334 + "collisionCount": 1429176680 } } \ No newline at end of file diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.pb b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.pb index 0e52d3cf211..6d8c7554189 100644 Binary files a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.pb and b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.pb differ diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.yaml b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.yaml index 8f836627b05..57b1caaefbd 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.yaml @@ -32,10 +32,10 @@ metadata: selfLink: "5" uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e spec: - minReadySeconds: 1969832939 - progressDeadlineSeconds: 609488884 + minReadySeconds: -517165840 + progressDeadlineSeconds: 1266174302 replicas: -1978186127 - revisionHistoryLimit: -984441502 + revisionHistoryLimit: 1605659256 selector: matchExpressions: - key: 5816m59-dx8----i--5-8t36b--09--23-u19m-35--d.vo61---4fy--9---7--9-9s-0-u5lj2--10pq-0-7-9-2-ekg-071b/YJTrcd-2.-__E_Sv__26KX_F @@ -46,7 +46,7 @@ spec: w9v--m0-1y5-g3/JFHn7y-74.-0MUORQQ.N2.1.L.l-Y._.-44..d.__g: F-_3-n-_-__3u-.__P__.7U-Uo_F strategy: rollingUpdate: {} - type: 暇镘買ɱD很唟-墡è箁E嗆R2璻 + type: '琇ũ齑誀ŭ"ɦ?鮻ȧH僠 ' template: metadata: annotations: @@ -529,6 +529,16 @@ spec: operator: 抷qTfZȻ干m謆7 tolerationSeconds: -7411984641310969236 value: "340" + topologySpreadConstraints: + - labelSelector: + matchExpressions: + - key: 34-5-yqu20-9105g4-edj0fh/8C4_-_2G0.-c_C.G.h--m._fN._k8__._p + operator: DoesNotExist + matchLabels: + 54-br5r---r8oh782-u---76g---h-4-lx-0-2qg-4.94s-6-k57/8..-__--.k47M7y-Dy__3wc.q.8_00.0_._.-_L-_b: E_8-7_-YD-Q9_-__..YNFu7Pg-.814e-_07-ht-E6___-X__H.-39-A_-_l67Qa + maxSkew: 44905239 + topologyKey: "349" + whenUnsatisfiable: NRNJ丧鴻ĿW癜鞤A馱z芀¿l磶Bb偃 volumes: - awsElasticBlockStore: fsType: "56" @@ -732,17 +742,17 @@ spec: storagePolicyName: "112" volumePath: "110" status: - availableReplicas: 1652110987 - collisionCount: -2053075334 + availableReplicas: -261966046 + collisionCount: 1429176680 conditions: - - lastTransitionTime: "2709-11-25T14:54:03Z" - lastUpdateTime: "2605-01-14T06:17:32Z" - message: "350" - reason: "349" - status: '}óǑ獰Ĉ癯頯' - type: ªɛȨç捌聮ŃŻ@ǮJ=礏ƴ磳藷曥摮 - observedGeneration: -2515851994541435779 - readyReplicas: -1585749538 - replicas: -1761745349 - unavailableReplicas: -572810738 - updatedReplicas: 853127920 + - lastTransitionTime: "2720-08-01T20:39:42Z" + lastUpdateTime: "2061-09-04T01:12:20Z" + message: "357" + reason: "356" + status: Ćɜɘ灢7ưgǣ + type: 黹ʩ鹸ɷLȋw`揄戀Ž彙p + observedGeneration: 2247058080259757914 + readyReplicas: 2081997618 + replicas: -87275477 + unavailableReplicas: 444881930 + updatedReplicas: -1140021566 diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.ReplicaSet.json b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.ReplicaSet.json index cf039708254..70f68526713 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.ReplicaSet.json +++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.ReplicaSet.json @@ -1045,23 +1045,44 @@ "preemptionPolicy": "ʜ_ȭwɵ糫武诰ð", "overhead": { "娒Ġ滔xvŗÑ\"虆k遚釾ʼn{": "803" - } + }, + "topologySpreadConstraints": [ + { + "maxSkew": -1531421126, + "topologyKey": "349", + "whenUnsatisfiable": "墘ȕûy\u003cvĝ線Ưȫ喆5O2.", + "labelSelector": { + "matchLabels": { + "7s4483-o--3f1p7--43nw-l-x18mtxb--kexr-1-o--g--1l8.bc-coa--y--4-1204wrb---1024g-5-3v9-9jcz9f-6-4g-z46--f2t-k/db-L7.-__-G_2kCpSY": "0" + }, + "matchExpressions": [ + { + "key": "vf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--it6k47-7yd-y-3/hjO", + "operator": "NotIn", + "values": [ + "c.q.8_00.0_._.-_L-__bf_9_-C-PfNxG" + ] + } + ] + } + } + ] } } }, "status": { - "replicas": 1226704591, - "fullyLabeledReplicas": 801466911, - "readyReplicas": -545107118, - "availableReplicas": -746105654, - "observedGeneration": 4456040724914385859, + "replicas": -1530496417, + "fullyLabeledReplicas": -1698525469, + "readyReplicas": -525943726, + "availableReplicas": -578926701, + "observedGeneration": 8034206547748752944, "conditions": [ { - "type": "\u003cvĝ線Ưȫ喆5O2.:鑋Ļ", - "status": "H筆U锟蕞纥奆0ǔ廘ɵ岳v\u0026ȝxɕū", - "lastTransitionTime": "2732-10-05T01:06:26Z", - "reason": "349", - "message": "350" + "type": "Î磣:mʂ渢pɉ驻(+昒ȼȈɍ颬灲", + "status": "\u003e堵zŕƧ钖孝0蛮xAǫ\u0026tŧK剛Ʀ", + "lastTransitionTime": "2837-10-14T23:23:27Z", + "reason": "356", + "message": "357" } ] } diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.ReplicaSet.pb b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.ReplicaSet.pb index 38fdd583654..b358fe4cee4 100644 Binary files a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.ReplicaSet.pb and b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.ReplicaSet.pb differ diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.ReplicaSet.yaml b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.ReplicaSet.yaml index c8bae018d37..0f2f580d84a 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.ReplicaSet.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.ReplicaSet.yaml @@ -519,6 +519,18 @@ spec: operator: '}缫,' tolerationSeconds: 5005983565679986804 value: "340" + topologySpreadConstraints: + - labelSelector: + matchExpressions: + - key: vf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--it6k47-7yd-y-3/hjO + operator: NotIn + values: + - c.q.8_00.0_._.-_L-__bf_9_-C-PfNxG + matchLabels: + 7s4483-o--3f1p7--43nw-l-x18mtxb--kexr-1-o--g--1l8.bc-coa--y--4-1204wrb---1024g-5-3v9-9jcz9f-6-4g-z46--f2t-k/db-L7.-__-G_2kCpSY: "0" + maxSkew: -1531421126 + topologyKey: "349" + whenUnsatisfiable: 墘ȕûy堵zŕƧ钖孝0蛮xAǫ&tŧK剛Ʀ' + type: Î磣:mʂ渢pɉ驻(+昒ȼȈɍ颬灲 + fullyLabeledReplicas: -1698525469 + observedGeneration: 8034206547748752944 + readyReplicas: -525943726 + replicas: -1530496417 diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.json b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.json index a48d7fdd21c..bfcfb826e0b 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.json +++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.json @@ -1058,126 +1058,150 @@ "preemptionPolicy": "qiǙĞǠ", "overhead": { "锒鿦Ršțb贇髪č": "840" - } + }, + "topologySpreadConstraints": [ + { + "maxSkew": 44905239, + "topologyKey": "349", + "whenUnsatisfiable": "NRNJ丧鴻ĿW癜鞤A馱z芀¿l磶Bb偃", + "labelSelector": { + "matchLabels": { + "54-br5r---r8oh782-u---76g---h-4-lx-0-2qg-4.94s-6-k57/8..-__--.k47M7y-Dy__3wc.q.8_00.0_._.-_L-_b": "E_8-7_-YD-Q9_-__..YNFu7Pg-.814e-_07-ht-E6___-X__H.-39-A_-_l67Qa" + }, + "matchExpressions": [ + { + "key": "34-5-yqu20-9105g4-edj0fh/8C4_-_2G0.-c_C.G.h--m._fN._k8__._p", + "operator": "DoesNotExist" + } + ] + } + } + ] } }, "volumeClaimTemplates": [ { "metadata": { - "name": "349", - "generateName": "350", - "namespace": "351", - "selfLink": "352", - "resourceVersion": "5540407251138887855", - "generation": -3511493794676511173, + "name": "356", + "generateName": "357", + "namespace": "358", + "selfLink": "359", + "uid": "Ɯk菪隃尳芛Ÿ2SȲ1z勻", + "resourceVersion": "1303883272262540341", + "generation": -162807750201503418, "creationTimestamp": null, - "deletionGracePeriodSeconds": 5247456886637678767, + "deletionGracePeriodSeconds": 6571334195964589531, "labels": { - "354": "355" + "361": "362" }, "annotations": { - "356": "357" + "363": "364" }, "ownerReferences": [ { - "apiVersion": "358", - "kind": "359", - "name": "360", - "uid": "Bb偃礳Ȭ痍脉PP", - "controller": false, - "blockOwnerDeletion": true + "apiVersion": "365", + "kind": "366", + "name": "367", + "uid": "嶐暁×軓鼐嵱宯ÙQ阉(闒", + "controller": true, + "blockOwnerDeletion": false } ], "finalizers": [ - "361" + "368" ], - "clusterName": "362", + "clusterName": "369", "managedFields": [ { - "manager": "363", - "operation": "餘ŁƁ翂|C", - "apiVersion": "364", - "fields": {"365":{"366":null}} + "manager": "370", + "operation": "Ŋ\u003ceÙ蝌铀íÅė 宣a(炛帵(弬NĆ", + "apiVersion": "371", + "fields": {"372":{"373":null}} } ] }, "spec": { "accessModes": [ - "藷曥摮Z Ǐg鲅峣/vɟ擅Ɇǥ" + "" ], "selector": { "matchLabels": { - "L_1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2--__40": "a68-7AlR__8-7_-YD-Q9_-__..YNFu7Pg-.814e-_07-ht-EP" + "U7iLfS-0.9-.-._.1..s._jP6j.u--.K--g__..2bidF.-0-...E": "w_tdt_-Z0_TM_p6lM.Y-nd8" }, "matchExpressions": [ { - "key": "39-A_-_l67Q.-_r", - "operator": "Exists" + "key": "75-p-z---k-5r6h--y7o-0-wq-zfdw73w0---4a18-f4/d1-CdM._bk81S3.s_s_6.-_v__.rP._2_O--d.7.--2", + "operator": "In", + "values": [ + "u-.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_t_IkI-mt4...rBQ.9-0" + ] } ] }, "resources": { "limits": { - "": "204" + "}¹旛坷硂鋡浤ɖ緖焿熣$ɒ割婻漛": "843" }, "requests": { - "Z綶ĀRġ磸": "628" + "ǖʣ国ȏ禫eÒ": "554" } }, - "volumeName": "375", - "storageClassName": "376", - "volumeMode": "ȗ\u003c8^翜T蘈", + "volumeName": "382", + "storageClassName": "383", + "volumeMode": "gȠ蕁嵍£搣溋", "dataSource": { - "apiGroup": "377", - "kind": "378", - "name": "379" + "apiGroup": "384", + "kind": "385", + "name": "386" } }, "status": { - "phase": "筞X銲tHǽ÷閂抰", + "phase": "縻湸Ŀ鴎靇!翘ǼZ熝Ʊ宷泐", "accessModes": [ - "" + "vŰ`Ǧɝ" ], "capacity": { - "CǙķȈĐI梞ū筀-": "457" + "ǖ菐u": "331" }, "conditions": [ { - "type": "mAȥ睙蜵E坉Ɖ虼/h毂y覙 ", - "status": "4'N擻", - "lastProbeTime": "2725-12-02T15:24:11Z", - "lastTransitionTime": "2546-07-16T14:04:49Z", - "reason": "380", - "message": "381" + "type": "ɴC}怢", + "status": "D?/nēɅĀ埰ʀł!U詨nj1ýǝ", + "lastProbeTime": "2107-09-25T05:42:07Z", + "lastTransitionTime": "2812-05-15T09:05:15Z", + "reason": "387", + "message": "388" } ] } } ], - "serviceName": "382", + "serviceName": "389", + "podManagementPolicy": "cõ乨厰ʚ±", "updateStrategy": { + "type": "楗鱶镖喗vȥ倉螆ȨX\u003e,«ɒó", "rollingUpdate": { - "partition": 1952497813 + "partition": 2016992077 } }, - "revisionHistoryLimit": 1538760390 + "revisionHistoryLimit": -2124540623 }, "status": { - "observedGeneration": 8218676932085767799, - "replicas": 1423120294, - "readyReplicas": -1147281085, - "currentReplicas": -2037929910, - "updatedReplicas": 1589830480, - "currentRevision": "383", - "updateRevision": "384", - "collisionCount": 1897665453, + "observedGeneration": 6685370236584602474, + "replicas": -465176274, + "readyReplicas": 920170539, + "currentReplicas": -1408181738, + "updatedReplicas": 2144242714, + "currentRevision": "390", + "updateRevision": "391", + "collisionCount": -1650280220, "conditions": [ { - "type": "\u003c僚徘ó蒿", - "status": "誀ŭ\"ɦ?", - "lastTransitionTime": "2741-08-01T23:33:42Z", - "reason": "385", - "message": "386" + "type": "ɞ", + "status": "I儑瓔¯", + "lastTransitionTime": "2875-07-01T09:17:38Z", + "reason": "392", + "message": "393" } ] } diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.pb b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.pb index 28d58905039..cbb47747eff 100644 Binary files a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.pb and b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.pb differ diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.yaml b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.yaml index a54ffb9ca70..d6ef8a187e8 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.yaml @@ -32,8 +32,9 @@ metadata: selfLink: "5" uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e spec: + podManagementPolicy: cõ乨厰ʚ± replicas: -1978186127 - revisionHistoryLimit: 1538760390 + revisionHistoryLimit: -2124540623 selector: matchExpressions: - key: 5816m59-dx8----i--5-8t36b--09--23-u19m-35--d.vo61---4fy--9---7--9-9s-0-u5lj2--10pq-0-7-9-2-ekg-071b/YJTrcd-2.-__E_Sv__26KX_F @@ -42,7 +43,7 @@ spec: - y_y_o0_5qN2_---_M.N_._a6.9bHjdH.-.5_.I8__.-AIw.__-___16 matchLabels: w9v--m0-1y5-g3/JFHn7y-74.-0MUORQQ.N2.1.L.l-Y._.-44..d.__g: F-_3-n-_-__3u-.__P__.7U-Uo_F - serviceName: "382" + serviceName: "389" template: metadata: annotations: @@ -525,6 +526,16 @@ spec: operator: 抷qTfZȻ干m謆7 tolerationSeconds: -7411984641310969236 value: "340" + topologySpreadConstraints: + - labelSelector: + matchExpressions: + - key: 34-5-yqu20-9105g4-edj0fh/8C4_-_2G0.-c_C.G.h--m._fN._k8__._p + operator: DoesNotExist + matchLabels: + 54-br5r---r8oh782-u---76g---h-4-lx-0-2qg-4.94s-6-k57/8..-__--.k47M7y-Dy__3wc.q.8_00.0_._.-_L-_b: E_8-7_-YD-Q9_-__..YNFu7Pg-.814e-_07-ht-E6___-X__H.-39-A_-_l67Qa + maxSkew: 44905239 + topologyKey: "349" + whenUnsatisfiable: NRNJ丧鴻ĿW癜鞤A馱z芀¿l磶Bb偃 volumes: - awsElasticBlockStore: fsType: "56" @@ -729,84 +740,88 @@ spec: volumePath: "110" updateStrategy: rollingUpdate: - partition: 1952497813 + partition: 2016992077 + type: 楗鱶镖喗vȥ倉螆ȨX>,«ɒó volumeClaimTemplates: - metadata: annotations: - "356": "357" - clusterName: "362" + "363": "364" + clusterName: "369" creationTimestamp: null - deletionGracePeriodSeconds: 5247456886637678767 + deletionGracePeriodSeconds: 6571334195964589531 finalizers: - - "361" - generateName: "350" - generation: -3511493794676511173 + - "368" + generateName: "357" + generation: -162807750201503418 labels: - "354": "355" + "361": "362" managedFields: - - apiVersion: "364" + - apiVersion: "371" fields: - "365": - "366": null - manager: "363" - operation: 餘ŁƁ翂|C - name: "349" - namespace: "351" + "372": + "373": null + manager: "370" + operation: Ŋ,«ɒó volumeClaimTemplates: - metadata: annotations: - "356": "357" - clusterName: "362" + "363": "364" + clusterName: "369" creationTimestamp: null - deletionGracePeriodSeconds: 5247456886637678767 + deletionGracePeriodSeconds: 6571334195964589531 finalizers: - - "361" - generateName: "350" - generation: -3511493794676511173 + - "368" + generateName: "357" + generation: -162807750201503418 labels: - "354": "355" + "361": "362" managedFields: - - apiVersion: "364" + - apiVersion: "371" fields: - "365": - "366": null - manager: "363" - operation: 餘ŁƁ翂|C - name: "349" - namespace: "351" + "372": + "373": null + manager: "370" + operation: Ŋ堵zŕƧ钖孝0蛮xAǫ&tŧK剛Ʀ' + type: Î磣:mʂ渢pɉ驻(+昒ȼȈɍ颬灲 + fullyLabeledReplicas: -1698525469 + observedGeneration: 8034206547748752944 + readyReplicas: -525943726 + replicas: -1530496417 diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.json b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.json index 7f77e258f67..0b82341bd0e 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.json +++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.json @@ -1058,126 +1058,150 @@ "preemptionPolicy": "qiǙĞǠ", "overhead": { "锒鿦Ršțb贇髪č": "840" - } + }, + "topologySpreadConstraints": [ + { + "maxSkew": 44905239, + "topologyKey": "349", + "whenUnsatisfiable": "NRNJ丧鴻ĿW癜鞤A馱z芀¿l磶Bb偃", + "labelSelector": { + "matchLabels": { + "54-br5r---r8oh782-u---76g---h-4-lx-0-2qg-4.94s-6-k57/8..-__--.k47M7y-Dy__3wc.q.8_00.0_._.-_L-_b": "E_8-7_-YD-Q9_-__..YNFu7Pg-.814e-_07-ht-E6___-X__H.-39-A_-_l67Qa" + }, + "matchExpressions": [ + { + "key": "34-5-yqu20-9105g4-edj0fh/8C4_-_2G0.-c_C.G.h--m._fN._k8__._p", + "operator": "DoesNotExist" + } + ] + } + } + ] } }, "volumeClaimTemplates": [ { "metadata": { - "name": "349", - "generateName": "350", - "namespace": "351", - "selfLink": "352", - "resourceVersion": "5540407251138887855", - "generation": -3511493794676511173, + "name": "356", + "generateName": "357", + "namespace": "358", + "selfLink": "359", + "uid": "Ɯk菪隃尳芛Ÿ2SȲ1z勻", + "resourceVersion": "1303883272262540341", + "generation": -162807750201503418, "creationTimestamp": null, - "deletionGracePeriodSeconds": 5247456886637678767, + "deletionGracePeriodSeconds": 6571334195964589531, "labels": { - "354": "355" + "361": "362" }, "annotations": { - "356": "357" + "363": "364" }, "ownerReferences": [ { - "apiVersion": "358", - "kind": "359", - "name": "360", - "uid": "Bb偃礳Ȭ痍脉PP", - "controller": false, - "blockOwnerDeletion": true + "apiVersion": "365", + "kind": "366", + "name": "367", + "uid": "嶐暁×軓鼐嵱宯ÙQ阉(闒", + "controller": true, + "blockOwnerDeletion": false } ], "finalizers": [ - "361" + "368" ], - "clusterName": "362", + "clusterName": "369", "managedFields": [ { - "manager": "363", - "operation": "餘ŁƁ翂|C", - "apiVersion": "364", - "fields": {"365":{"366":null}} + "manager": "370", + "operation": "Ŋ\u003ceÙ蝌铀íÅė 宣a(炛帵(弬NĆ", + "apiVersion": "371", + "fields": {"372":{"373":null}} } ] }, "spec": { "accessModes": [ - "藷曥摮Z Ǐg鲅峣/vɟ擅Ɇǥ" + "" ], "selector": { "matchLabels": { - "L_1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2--__40": "a68-7AlR__8-7_-YD-Q9_-__..YNFu7Pg-.814e-_07-ht-EP" + "U7iLfS-0.9-.-._.1..s._jP6j.u--.K--g__..2bidF.-0-...E": "w_tdt_-Z0_TM_p6lM.Y-nd8" }, "matchExpressions": [ { - "key": "39-A_-_l67Q.-_r", - "operator": "Exists" + "key": "75-p-z---k-5r6h--y7o-0-wq-zfdw73w0---4a18-f4/d1-CdM._bk81S3.s_s_6.-_v__.rP._2_O--d.7.--2", + "operator": "In", + "values": [ + "u-.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_t_IkI-mt4...rBQ.9-0" + ] } ] }, "resources": { "limits": { - "": "204" + "}¹旛坷硂鋡浤ɖ緖焿熣$ɒ割婻漛": "843" }, "requests": { - "Z綶ĀRġ磸": "628" + "ǖʣ国ȏ禫eÒ": "554" } }, - "volumeName": "375", - "storageClassName": "376", - "volumeMode": "ȗ\u003c8^翜T蘈", + "volumeName": "382", + "storageClassName": "383", + "volumeMode": "gȠ蕁嵍£搣溋", "dataSource": { - "apiGroup": "377", - "kind": "378", - "name": "379" + "apiGroup": "384", + "kind": "385", + "name": "386" } }, "status": { - "phase": "筞X銲tHǽ÷閂抰", + "phase": "縻湸Ŀ鴎靇!翘ǼZ熝Ʊ宷泐", "accessModes": [ - "" + "vŰ`Ǧɝ" ], "capacity": { - "CǙķȈĐI梞ū筀-": "457" + "ǖ菐u": "331" }, "conditions": [ { - "type": "mAȥ睙蜵E坉Ɖ虼/h毂y覙 ", - "status": "4'N擻", - "lastProbeTime": "2725-12-02T15:24:11Z", - "lastTransitionTime": "2546-07-16T14:04:49Z", - "reason": "380", - "message": "381" + "type": "ɴC}怢", + "status": "D?/nēɅĀ埰ʀł!U詨nj1ýǝ", + "lastProbeTime": "2107-09-25T05:42:07Z", + "lastTransitionTime": "2812-05-15T09:05:15Z", + "reason": "387", + "message": "388" } ] } } ], - "serviceName": "382", + "serviceName": "389", + "podManagementPolicy": "cõ乨厰ʚ±", "updateStrategy": { + "type": "楗鱶镖喗vȥ倉螆ȨX\u003e,«ɒó", "rollingUpdate": { - "partition": 1952497813 + "partition": 2016992077 } }, - "revisionHistoryLimit": 1538760390 + "revisionHistoryLimit": -2124540623 }, "status": { - "observedGeneration": 8218676932085767799, - "replicas": 1423120294, - "readyReplicas": -1147281085, - "currentReplicas": -2037929910, - "updatedReplicas": 1589830480, - "currentRevision": "383", - "updateRevision": "384", - "collisionCount": 1897665453, + "observedGeneration": 6685370236584602474, + "replicas": -465176274, + "readyReplicas": 920170539, + "currentReplicas": -1408181738, + "updatedReplicas": 2144242714, + "currentRevision": "390", + "updateRevision": "391", + "collisionCount": -1650280220, "conditions": [ { - "type": "\u003c僚徘ó蒿", - "status": "誀ŭ\"ɦ?", - "lastTransitionTime": "2741-08-01T23:33:42Z", - "reason": "385", - "message": "386" + "type": "ɞ", + "status": "I儑瓔¯", + "lastTransitionTime": "2875-07-01T09:17:38Z", + "reason": "392", + "message": "393" } ] } diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.pb b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.pb index ff061a5cc95..19021b6817d 100644 Binary files a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.pb and b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.pb differ diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.yaml b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.yaml index db63cfe53a7..48a2ac96cd4 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.yaml @@ -32,8 +32,9 @@ metadata: selfLink: "5" uid: ą飋īqJ枊a8衍`Ĩɘ.蘯6ċV夸e spec: + podManagementPolicy: cõ乨厰ʚ± replicas: -1978186127 - revisionHistoryLimit: 1538760390 + revisionHistoryLimit: -2124540623 selector: matchExpressions: - key: 5816m59-dx8----i--5-8t36b--09--23-u19m-35--d.vo61---4fy--9---7--9-9s-0-u5lj2--10pq-0-7-9-2-ekg-071b/YJTrcd-2.-__E_Sv__26KX_F @@ -42,7 +43,7 @@ spec: - y_y_o0_5qN2_---_M.N_._a6.9bHjdH.-.5_.I8__.-AIw.__-___16 matchLabels: w9v--m0-1y5-g3/JFHn7y-74.-0MUORQQ.N2.1.L.l-Y._.-44..d.__g: F-_3-n-_-__3u-.__P__.7U-Uo_F - serviceName: "382" + serviceName: "389" template: metadata: annotations: @@ -525,6 +526,16 @@ spec: operator: 抷qTfZȻ干m謆7 tolerationSeconds: -7411984641310969236 value: "340" + topologySpreadConstraints: + - labelSelector: + matchExpressions: + - key: 34-5-yqu20-9105g4-edj0fh/8C4_-_2G0.-c_C.G.h--m._fN._k8__._p + operator: DoesNotExist + matchLabels: + 54-br5r---r8oh782-u---76g---h-4-lx-0-2qg-4.94s-6-k57/8..-__--.k47M7y-Dy__3wc.q.8_00.0_._.-_L-_b: E_8-7_-YD-Q9_-__..YNFu7Pg-.814e-_07-ht-E6___-X__H.-39-A_-_l67Qa + maxSkew: 44905239 + topologyKey: "349" + whenUnsatisfiable: NRNJ丧鴻ĿW癜鞤A馱z芀¿l磶Bb偃 volumes: - awsElasticBlockStore: fsType: "56" @@ -729,84 +740,88 @@ spec: volumePath: "110" updateStrategy: rollingUpdate: - partition: 1952497813 + partition: 2016992077 + type: 楗鱶镖喗vȥ倉螆ȨX>,«ɒó volumeClaimTemplates: - metadata: annotations: - "356": "357" - clusterName: "362" + "363": "364" + clusterName: "369" creationTimestamp: null - deletionGracePeriodSeconds: 5247456886637678767 + deletionGracePeriodSeconds: 6571334195964589531 finalizers: - - "361" - generateName: "350" - generation: -3511493794676511173 + - "368" + generateName: "357" + generation: -162807750201503418 labels: - "354": "355" + "361": "362" managedFields: - - apiVersion: "364" + - apiVersion: "371" fields: - "365": - "366": null - manager: "363" - operation: 餘ŁƁ翂|C - name: "349" - namespace: "351" + "372": + "373": null + manager: "370" + operation: Ŋ堵zŕƧ钖孝0蛮xAǫ&tŧK剛Ʀ' + type: Î磣:mʂ渢pɉ驻(+昒ȼȈɍ颬灲 + fullyLabeledReplicas: -1698525469 + observedGeneration: 8034206547748752944 + readyReplicas: -525943726 + replicas: -1530496417