diff --git a/docs/features/analysis.md b/docs/features/analysis.md index 9e96cd1d65..1a81a71274 100644 --- a/docs/features/analysis.md +++ b/docs/features/analysis.md @@ -804,6 +804,26 @@ spec: limit: 20 ``` +### Define custom Labels/Annotations for AnalysisRun + +If you would like to annotate/label the `AnalysisRun` with the custom labels your can do it by specifying +`analysisRunMetadata` field. + +```yaml hl_lines="9 10 11" +kind: Rollout +spec: +... + steps: + - analysis: + templates: + - templateName: my-template + analysisRunMetadata: + labels: + my-custom-label: label-value + annotations: + my-custom-annotation: annotation-value +``` + ### Measurements Retention for Experiments If an experiment wants to retain more results of its analysis metrics, it simply needs to specify the diff --git a/docs/features/specification.md b/docs/features/specification.md index 12feeb9240..025ab529c4 100644 --- a/docs/features/specification.md +++ b/docs/features/specification.md @@ -348,6 +348,12 @@ spec: analyses: - name : mann-whitney templateName: mann-whitney + # Metadata which will be attached to the AnalysisRun. + analysisRunMetadata: + labels: + app.service.io/analysisType: smoke-test + annotations: + link.argocd.argoproj.io/external-link: http://my-loggin-platform.com/pre-generated-link # Anti-affinity configuration between desired and previous ReplicaSet. # Only one must be specified. diff --git a/manifests/crds/rollout-crd.yaml b/manifests/crds/rollout-crd.yaml index bbd547baee..ed3bc3d7ba 100755 --- a/manifests/crds/rollout-crd.yaml +++ b/manifests/crds/rollout-crd.yaml @@ -153,6 +153,17 @@ spec: x-kubernetes-int-or-string: true postPromotionAnalysis: properties: + analysisRunMetadata: + properties: + annotations: + additionalProperties: + type: string + type: object + labels: + additionalProperties: + type: string + type: object + type: object args: items: properties: @@ -210,6 +221,17 @@ spec: type: object prePromotionAnalysis: properties: + analysisRunMetadata: + properties: + annotations: + additionalProperties: + type: string + type: object + labels: + additionalProperties: + type: string + type: object + type: object args: items: properties: @@ -297,6 +319,17 @@ spec: type: integer analysis: properties: + analysisRunMetadata: + properties: + annotations: + additionalProperties: + type: string + type: object + labels: + additionalProperties: + type: string + type: object + type: object args: items: properties: @@ -430,6 +463,17 @@ spec: properties: analysis: properties: + analysisRunMetadata: + properties: + annotations: + additionalProperties: + type: string + type: object + labels: + additionalProperties: + type: string + type: object + type: object args: items: properties: diff --git a/manifests/install.yaml b/manifests/install.yaml index 8ac2ebaaca..ccf3be5097 100755 --- a/manifests/install.yaml +++ b/manifests/install.yaml @@ -11208,6 +11208,17 @@ spec: x-kubernetes-int-or-string: true postPromotionAnalysis: properties: + analysisRunMetadata: + properties: + annotations: + additionalProperties: + type: string + type: object + labels: + additionalProperties: + type: string + type: object + type: object args: items: properties: @@ -11265,6 +11276,17 @@ spec: type: object prePromotionAnalysis: properties: + analysisRunMetadata: + properties: + annotations: + additionalProperties: + type: string + type: object + labels: + additionalProperties: + type: string + type: object + type: object args: items: properties: @@ -11352,6 +11374,17 @@ spec: type: integer analysis: properties: + analysisRunMetadata: + properties: + annotations: + additionalProperties: + type: string + type: object + labels: + additionalProperties: + type: string + type: object + type: object args: items: properties: @@ -11485,6 +11518,17 @@ spec: properties: analysis: properties: + analysisRunMetadata: + properties: + annotations: + additionalProperties: + type: string + type: object + labels: + additionalProperties: + type: string + type: object + type: object args: items: properties: diff --git a/pkg/apiclient/rollout/rollout.swagger.json b/pkg/apiclient/rollout/rollout.swagger.json index b47f017c91..93f113c641 100755 --- a/pkg/apiclient/rollout/rollout.swagger.json +++ b/pkg/apiclient/rollout/rollout.swagger.json @@ -568,6 +568,26 @@ }, "title": "AnalysisRunArgument argument to add to analysisRun" }, + "github.com.argoproj.argo_rollouts.pkg.apis.rollouts.v1alpha1.AnalysisRunMetadata": { + "type": "object", + "properties": { + "labels": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "title": "Labels Additional labels to add to the AnalysisRun\n+optional" + }, + "annotations": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "title": "Annotations additional annotations to add to the AnalysisRun\n+optional" + } + }, + "title": "AnalysisRunMetadata extra labels to add to the AnalysisRun" + }, "github.com.argoproj.argo_rollouts.pkg.apis.rollouts.v1alpha1.AnalysisRunStrategy": { "type": "object", "properties": { @@ -1225,6 +1245,10 @@ "$ref": "#/definitions/github.com.argoproj.argo_rollouts.pkg.apis.rollouts.v1alpha1.MeasurementRetention" }, "title": "MeasurementRetention object contains the settings for retaining the number of measurements during the analysis\n+patchMergeKey=metricName\n+patchStrategy=merge\n+optional" + }, + "analysisRunMetadata": { + "$ref": "#/definitions/github.com.argoproj.argo_rollouts.pkg.apis.rollouts.v1alpha1.AnalysisRunMetadata", + "title": "AnalysisRunMetadata labels and annotations that will be added to the AnalysisRuns\n+optional" } }, "title": "RolloutAnalysis defines a template that is used to create a analysisRun" diff --git a/pkg/apis/rollouts/v1alpha1/generated.pb.go b/pkg/apis/rollouts/v1alpha1/generated.pb.go index a485999856..998e3ea168 100644 --- a/pkg/apis/rollouts/v1alpha1/generated.pb.go +++ b/pkg/apis/rollouts/v1alpha1/generated.pb.go @@ -217,10 +217,38 @@ func (m *AnalysisRunList) XXX_DiscardUnknown() { var xxx_messageInfo_AnalysisRunList proto.InternalMessageInfo +func (m *AnalysisRunMetadata) Reset() { *m = AnalysisRunMetadata{} } +func (*AnalysisRunMetadata) ProtoMessage() {} +func (*AnalysisRunMetadata) Descriptor() ([]byte, []int) { + return fileDescriptor_e0e705f843545fab, []int{6} +} +func (m *AnalysisRunMetadata) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *AnalysisRunMetadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil +} +func (m *AnalysisRunMetadata) XXX_Merge(src proto.Message) { + xxx_messageInfo_AnalysisRunMetadata.Merge(m, src) +} +func (m *AnalysisRunMetadata) XXX_Size() int { + return m.Size() +} +func (m *AnalysisRunMetadata) XXX_DiscardUnknown() { + xxx_messageInfo_AnalysisRunMetadata.DiscardUnknown(m) +} + +var xxx_messageInfo_AnalysisRunMetadata proto.InternalMessageInfo + func (m *AnalysisRunSpec) Reset() { *m = AnalysisRunSpec{} } func (*AnalysisRunSpec) ProtoMessage() {} func (*AnalysisRunSpec) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{6} + return fileDescriptor_e0e705f843545fab, []int{7} } func (m *AnalysisRunSpec) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -248,7 +276,7 @@ var xxx_messageInfo_AnalysisRunSpec proto.InternalMessageInfo func (m *AnalysisRunStatus) Reset() { *m = AnalysisRunStatus{} } func (*AnalysisRunStatus) ProtoMessage() {} func (*AnalysisRunStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{7} + return fileDescriptor_e0e705f843545fab, []int{8} } func (m *AnalysisRunStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -276,7 +304,7 @@ var xxx_messageInfo_AnalysisRunStatus proto.InternalMessageInfo func (m *AnalysisRunStrategy) Reset() { *m = AnalysisRunStrategy{} } func (*AnalysisRunStrategy) ProtoMessage() {} func (*AnalysisRunStrategy) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{8} + return fileDescriptor_e0e705f843545fab, []int{9} } func (m *AnalysisRunStrategy) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -304,7 +332,7 @@ var xxx_messageInfo_AnalysisRunStrategy proto.InternalMessageInfo func (m *AnalysisTemplate) Reset() { *m = AnalysisTemplate{} } func (*AnalysisTemplate) ProtoMessage() {} func (*AnalysisTemplate) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{9} + return fileDescriptor_e0e705f843545fab, []int{10} } func (m *AnalysisTemplate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -332,7 +360,7 @@ var xxx_messageInfo_AnalysisTemplate proto.InternalMessageInfo func (m *AnalysisTemplateList) Reset() { *m = AnalysisTemplateList{} } func (*AnalysisTemplateList) ProtoMessage() {} func (*AnalysisTemplateList) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{10} + return fileDescriptor_e0e705f843545fab, []int{11} } func (m *AnalysisTemplateList) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -360,7 +388,7 @@ var xxx_messageInfo_AnalysisTemplateList proto.InternalMessageInfo func (m *AnalysisTemplateSpec) Reset() { *m = AnalysisTemplateSpec{} } func (*AnalysisTemplateSpec) ProtoMessage() {} func (*AnalysisTemplateSpec) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{11} + return fileDescriptor_e0e705f843545fab, []int{12} } func (m *AnalysisTemplateSpec) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -388,7 +416,7 @@ var xxx_messageInfo_AnalysisTemplateSpec proto.InternalMessageInfo func (m *AntiAffinity) Reset() { *m = AntiAffinity{} } func (*AntiAffinity) ProtoMessage() {} func (*AntiAffinity) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{12} + return fileDescriptor_e0e705f843545fab, []int{13} } func (m *AntiAffinity) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -416,7 +444,7 @@ var xxx_messageInfo_AntiAffinity proto.InternalMessageInfo func (m *ApisixRoute) Reset() { *m = ApisixRoute{} } func (*ApisixRoute) ProtoMessage() {} func (*ApisixRoute) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{13} + return fileDescriptor_e0e705f843545fab, []int{14} } func (m *ApisixRoute) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -444,7 +472,7 @@ var xxx_messageInfo_ApisixRoute proto.InternalMessageInfo func (m *ApisixTrafficRouting) Reset() { *m = ApisixTrafficRouting{} } func (*ApisixTrafficRouting) ProtoMessage() {} func (*ApisixTrafficRouting) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{14} + return fileDescriptor_e0e705f843545fab, []int{15} } func (m *ApisixTrafficRouting) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -472,7 +500,7 @@ var xxx_messageInfo_ApisixTrafficRouting proto.InternalMessageInfo func (m *AppMeshTrafficRouting) Reset() { *m = AppMeshTrafficRouting{} } func (*AppMeshTrafficRouting) ProtoMessage() {} func (*AppMeshTrafficRouting) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{15} + return fileDescriptor_e0e705f843545fab, []int{16} } func (m *AppMeshTrafficRouting) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -500,7 +528,7 @@ var xxx_messageInfo_AppMeshTrafficRouting proto.InternalMessageInfo func (m *AppMeshVirtualNodeGroup) Reset() { *m = AppMeshVirtualNodeGroup{} } func (*AppMeshVirtualNodeGroup) ProtoMessage() {} func (*AppMeshVirtualNodeGroup) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{16} + return fileDescriptor_e0e705f843545fab, []int{17} } func (m *AppMeshVirtualNodeGroup) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -528,7 +556,7 @@ var xxx_messageInfo_AppMeshVirtualNodeGroup proto.InternalMessageInfo func (m *AppMeshVirtualNodeReference) Reset() { *m = AppMeshVirtualNodeReference{} } func (*AppMeshVirtualNodeReference) ProtoMessage() {} func (*AppMeshVirtualNodeReference) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{17} + return fileDescriptor_e0e705f843545fab, []int{18} } func (m *AppMeshVirtualNodeReference) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -556,7 +584,7 @@ var xxx_messageInfo_AppMeshVirtualNodeReference proto.InternalMessageInfo func (m *AppMeshVirtualService) Reset() { *m = AppMeshVirtualService{} } func (*AppMeshVirtualService) ProtoMessage() {} func (*AppMeshVirtualService) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{18} + return fileDescriptor_e0e705f843545fab, []int{19} } func (m *AppMeshVirtualService) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -584,7 +612,7 @@ var xxx_messageInfo_AppMeshVirtualService proto.InternalMessageInfo func (m *Argument) Reset() { *m = Argument{} } func (*Argument) ProtoMessage() {} func (*Argument) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{19} + return fileDescriptor_e0e705f843545fab, []int{20} } func (m *Argument) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -612,7 +640,7 @@ var xxx_messageInfo_Argument proto.InternalMessageInfo func (m *ArgumentValueFrom) Reset() { *m = ArgumentValueFrom{} } func (*ArgumentValueFrom) ProtoMessage() {} func (*ArgumentValueFrom) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{20} + return fileDescriptor_e0e705f843545fab, []int{21} } func (m *ArgumentValueFrom) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -640,7 +668,7 @@ var xxx_messageInfo_ArgumentValueFrom proto.InternalMessageInfo func (m *AwsResourceRef) Reset() { *m = AwsResourceRef{} } func (*AwsResourceRef) ProtoMessage() {} func (*AwsResourceRef) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{21} + return fileDescriptor_e0e705f843545fab, []int{22} } func (m *AwsResourceRef) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -668,7 +696,7 @@ var xxx_messageInfo_AwsResourceRef proto.InternalMessageInfo func (m *BlueGreenStatus) Reset() { *m = BlueGreenStatus{} } func (*BlueGreenStatus) ProtoMessage() {} func (*BlueGreenStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{22} + return fileDescriptor_e0e705f843545fab, []int{23} } func (m *BlueGreenStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -696,7 +724,7 @@ var xxx_messageInfo_BlueGreenStatus proto.InternalMessageInfo func (m *BlueGreenStrategy) Reset() { *m = BlueGreenStrategy{} } func (*BlueGreenStrategy) ProtoMessage() {} func (*BlueGreenStrategy) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{23} + return fileDescriptor_e0e705f843545fab, []int{24} } func (m *BlueGreenStrategy) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -724,7 +752,7 @@ var xxx_messageInfo_BlueGreenStrategy proto.InternalMessageInfo func (m *CanaryStatus) Reset() { *m = CanaryStatus{} } func (*CanaryStatus) ProtoMessage() {} func (*CanaryStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{24} + return fileDescriptor_e0e705f843545fab, []int{25} } func (m *CanaryStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -752,7 +780,7 @@ var xxx_messageInfo_CanaryStatus proto.InternalMessageInfo func (m *CanaryStep) Reset() { *m = CanaryStep{} } func (*CanaryStep) ProtoMessage() {} func (*CanaryStep) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{25} + return fileDescriptor_e0e705f843545fab, []int{26} } func (m *CanaryStep) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -780,7 +808,7 @@ var xxx_messageInfo_CanaryStep proto.InternalMessageInfo func (m *CanaryStrategy) Reset() { *m = CanaryStrategy{} } func (*CanaryStrategy) ProtoMessage() {} func (*CanaryStrategy) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{26} + return fileDescriptor_e0e705f843545fab, []int{27} } func (m *CanaryStrategy) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -808,7 +836,7 @@ var xxx_messageInfo_CanaryStrategy proto.InternalMessageInfo func (m *CloudWatchMetric) Reset() { *m = CloudWatchMetric{} } func (*CloudWatchMetric) ProtoMessage() {} func (*CloudWatchMetric) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{27} + return fileDescriptor_e0e705f843545fab, []int{28} } func (m *CloudWatchMetric) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -836,7 +864,7 @@ var xxx_messageInfo_CloudWatchMetric proto.InternalMessageInfo func (m *CloudWatchMetricDataQuery) Reset() { *m = CloudWatchMetricDataQuery{} } func (*CloudWatchMetricDataQuery) ProtoMessage() {} func (*CloudWatchMetricDataQuery) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{28} + return fileDescriptor_e0e705f843545fab, []int{29} } func (m *CloudWatchMetricDataQuery) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -864,7 +892,7 @@ var xxx_messageInfo_CloudWatchMetricDataQuery proto.InternalMessageInfo func (m *CloudWatchMetricStat) Reset() { *m = CloudWatchMetricStat{} } func (*CloudWatchMetricStat) ProtoMessage() {} func (*CloudWatchMetricStat) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{29} + return fileDescriptor_e0e705f843545fab, []int{30} } func (m *CloudWatchMetricStat) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -892,7 +920,7 @@ var xxx_messageInfo_CloudWatchMetricStat proto.InternalMessageInfo func (m *CloudWatchMetricStatMetric) Reset() { *m = CloudWatchMetricStatMetric{} } func (*CloudWatchMetricStatMetric) ProtoMessage() {} func (*CloudWatchMetricStatMetric) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{30} + return fileDescriptor_e0e705f843545fab, []int{31} } func (m *CloudWatchMetricStatMetric) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -920,7 +948,7 @@ var xxx_messageInfo_CloudWatchMetricStatMetric proto.InternalMessageInfo func (m *CloudWatchMetricStatMetricDimension) Reset() { *m = CloudWatchMetricStatMetricDimension{} } func (*CloudWatchMetricStatMetricDimension) ProtoMessage() {} func (*CloudWatchMetricStatMetricDimension) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{31} + return fileDescriptor_e0e705f843545fab, []int{32} } func (m *CloudWatchMetricStatMetricDimension) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -948,7 +976,7 @@ var xxx_messageInfo_CloudWatchMetricStatMetricDimension proto.InternalMessageInf func (m *ClusterAnalysisTemplate) Reset() { *m = ClusterAnalysisTemplate{} } func (*ClusterAnalysisTemplate) ProtoMessage() {} func (*ClusterAnalysisTemplate) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{32} + return fileDescriptor_e0e705f843545fab, []int{33} } func (m *ClusterAnalysisTemplate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -976,7 +1004,7 @@ var xxx_messageInfo_ClusterAnalysisTemplate proto.InternalMessageInfo func (m *ClusterAnalysisTemplateList) Reset() { *m = ClusterAnalysisTemplateList{} } func (*ClusterAnalysisTemplateList) ProtoMessage() {} func (*ClusterAnalysisTemplateList) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{33} + return fileDescriptor_e0e705f843545fab, []int{34} } func (m *ClusterAnalysisTemplateList) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1004,7 +1032,7 @@ var xxx_messageInfo_ClusterAnalysisTemplateList proto.InternalMessageInfo func (m *DatadogMetric) Reset() { *m = DatadogMetric{} } func (*DatadogMetric) ProtoMessage() {} func (*DatadogMetric) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{34} + return fileDescriptor_e0e705f843545fab, []int{35} } func (m *DatadogMetric) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1032,7 +1060,7 @@ var xxx_messageInfo_DatadogMetric proto.InternalMessageInfo func (m *DryRun) Reset() { *m = DryRun{} } func (*DryRun) ProtoMessage() {} func (*DryRun) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{35} + return fileDescriptor_e0e705f843545fab, []int{36} } func (m *DryRun) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1060,7 +1088,7 @@ var xxx_messageInfo_DryRun proto.InternalMessageInfo func (m *Experiment) Reset() { *m = Experiment{} } func (*Experiment) ProtoMessage() {} func (*Experiment) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{36} + return fileDescriptor_e0e705f843545fab, []int{37} } func (m *Experiment) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1088,7 +1116,7 @@ var xxx_messageInfo_Experiment proto.InternalMessageInfo func (m *ExperimentAnalysisRunStatus) Reset() { *m = ExperimentAnalysisRunStatus{} } func (*ExperimentAnalysisRunStatus) ProtoMessage() {} func (*ExperimentAnalysisRunStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{37} + return fileDescriptor_e0e705f843545fab, []int{38} } func (m *ExperimentAnalysisRunStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1116,7 +1144,7 @@ var xxx_messageInfo_ExperimentAnalysisRunStatus proto.InternalMessageInfo func (m *ExperimentAnalysisTemplateRef) Reset() { *m = ExperimentAnalysisTemplateRef{} } func (*ExperimentAnalysisTemplateRef) ProtoMessage() {} func (*ExperimentAnalysisTemplateRef) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{38} + return fileDescriptor_e0e705f843545fab, []int{39} } func (m *ExperimentAnalysisTemplateRef) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1144,7 +1172,7 @@ var xxx_messageInfo_ExperimentAnalysisTemplateRef proto.InternalMessageInfo func (m *ExperimentCondition) Reset() { *m = ExperimentCondition{} } func (*ExperimentCondition) ProtoMessage() {} func (*ExperimentCondition) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{39} + return fileDescriptor_e0e705f843545fab, []int{40} } func (m *ExperimentCondition) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1172,7 +1200,7 @@ var xxx_messageInfo_ExperimentCondition proto.InternalMessageInfo func (m *ExperimentList) Reset() { *m = ExperimentList{} } func (*ExperimentList) ProtoMessage() {} func (*ExperimentList) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{40} + return fileDescriptor_e0e705f843545fab, []int{41} } func (m *ExperimentList) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1200,7 +1228,7 @@ var xxx_messageInfo_ExperimentList proto.InternalMessageInfo func (m *ExperimentSpec) Reset() { *m = ExperimentSpec{} } func (*ExperimentSpec) ProtoMessage() {} func (*ExperimentSpec) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{41} + return fileDescriptor_e0e705f843545fab, []int{42} } func (m *ExperimentSpec) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1228,7 +1256,7 @@ var xxx_messageInfo_ExperimentSpec proto.InternalMessageInfo func (m *ExperimentStatus) Reset() { *m = ExperimentStatus{} } func (*ExperimentStatus) ProtoMessage() {} func (*ExperimentStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{42} + return fileDescriptor_e0e705f843545fab, []int{43} } func (m *ExperimentStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1256,7 +1284,7 @@ var xxx_messageInfo_ExperimentStatus proto.InternalMessageInfo func (m *FieldRef) Reset() { *m = FieldRef{} } func (*FieldRef) ProtoMessage() {} func (*FieldRef) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{43} + return fileDescriptor_e0e705f843545fab, []int{44} } func (m *FieldRef) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1284,7 +1312,7 @@ var xxx_messageInfo_FieldRef proto.InternalMessageInfo func (m *GraphiteMetric) Reset() { *m = GraphiteMetric{} } func (*GraphiteMetric) ProtoMessage() {} func (*GraphiteMetric) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{44} + return fileDescriptor_e0e705f843545fab, []int{45} } func (m *GraphiteMetric) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1312,7 +1340,7 @@ var xxx_messageInfo_GraphiteMetric proto.InternalMessageInfo func (m *HeaderRoutingMatch) Reset() { *m = HeaderRoutingMatch{} } func (*HeaderRoutingMatch) ProtoMessage() {} func (*HeaderRoutingMatch) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{45} + return fileDescriptor_e0e705f843545fab, []int{46} } func (m *HeaderRoutingMatch) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1340,7 +1368,7 @@ var xxx_messageInfo_HeaderRoutingMatch proto.InternalMessageInfo func (m *InfluxdbMetric) Reset() { *m = InfluxdbMetric{} } func (*InfluxdbMetric) ProtoMessage() {} func (*InfluxdbMetric) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{46} + return fileDescriptor_e0e705f843545fab, []int{47} } func (m *InfluxdbMetric) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1368,7 +1396,7 @@ var xxx_messageInfo_InfluxdbMetric proto.InternalMessageInfo func (m *IstioDestinationRule) Reset() { *m = IstioDestinationRule{} } func (*IstioDestinationRule) ProtoMessage() {} func (*IstioDestinationRule) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{47} + return fileDescriptor_e0e705f843545fab, []int{48} } func (m *IstioDestinationRule) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1396,7 +1424,7 @@ var xxx_messageInfo_IstioDestinationRule proto.InternalMessageInfo func (m *IstioTrafficRouting) Reset() { *m = IstioTrafficRouting{} } func (*IstioTrafficRouting) ProtoMessage() {} func (*IstioTrafficRouting) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{48} + return fileDescriptor_e0e705f843545fab, []int{49} } func (m *IstioTrafficRouting) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1424,7 +1452,7 @@ var xxx_messageInfo_IstioTrafficRouting proto.InternalMessageInfo func (m *IstioVirtualService) Reset() { *m = IstioVirtualService{} } func (*IstioVirtualService) ProtoMessage() {} func (*IstioVirtualService) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{49} + return fileDescriptor_e0e705f843545fab, []int{50} } func (m *IstioVirtualService) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1452,7 +1480,7 @@ var xxx_messageInfo_IstioVirtualService proto.InternalMessageInfo func (m *JobMetric) Reset() { *m = JobMetric{} } func (*JobMetric) ProtoMessage() {} func (*JobMetric) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{50} + return fileDescriptor_e0e705f843545fab, []int{51} } func (m *JobMetric) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1480,7 +1508,7 @@ var xxx_messageInfo_JobMetric proto.InternalMessageInfo func (m *KayentaMetric) Reset() { *m = KayentaMetric{} } func (*KayentaMetric) ProtoMessage() {} func (*KayentaMetric) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{51} + return fileDescriptor_e0e705f843545fab, []int{52} } func (m *KayentaMetric) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1508,7 +1536,7 @@ var xxx_messageInfo_KayentaMetric proto.InternalMessageInfo func (m *KayentaScope) Reset() { *m = KayentaScope{} } func (*KayentaScope) ProtoMessage() {} func (*KayentaScope) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{52} + return fileDescriptor_e0e705f843545fab, []int{53} } func (m *KayentaScope) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1536,7 +1564,7 @@ var xxx_messageInfo_KayentaScope proto.InternalMessageInfo func (m *KayentaThreshold) Reset() { *m = KayentaThreshold{} } func (*KayentaThreshold) ProtoMessage() {} func (*KayentaThreshold) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{53} + return fileDescriptor_e0e705f843545fab, []int{54} } func (m *KayentaThreshold) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1564,7 +1592,7 @@ var xxx_messageInfo_KayentaThreshold proto.InternalMessageInfo func (m *MangedRoutes) Reset() { *m = MangedRoutes{} } func (*MangedRoutes) ProtoMessage() {} func (*MangedRoutes) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{54} + return fileDescriptor_e0e705f843545fab, []int{55} } func (m *MangedRoutes) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1592,7 +1620,7 @@ var xxx_messageInfo_MangedRoutes proto.InternalMessageInfo func (m *Measurement) Reset() { *m = Measurement{} } func (*Measurement) ProtoMessage() {} func (*Measurement) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{55} + return fileDescriptor_e0e705f843545fab, []int{56} } func (m *Measurement) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1620,7 +1648,7 @@ var xxx_messageInfo_Measurement proto.InternalMessageInfo func (m *MeasurementRetention) Reset() { *m = MeasurementRetention{} } func (*MeasurementRetention) ProtoMessage() {} func (*MeasurementRetention) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{56} + return fileDescriptor_e0e705f843545fab, []int{57} } func (m *MeasurementRetention) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1648,7 +1676,7 @@ var xxx_messageInfo_MeasurementRetention proto.InternalMessageInfo func (m *Metric) Reset() { *m = Metric{} } func (*Metric) ProtoMessage() {} func (*Metric) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{57} + return fileDescriptor_e0e705f843545fab, []int{58} } func (m *Metric) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1676,7 +1704,7 @@ var xxx_messageInfo_Metric proto.InternalMessageInfo func (m *MetricProvider) Reset() { *m = MetricProvider{} } func (*MetricProvider) ProtoMessage() {} func (*MetricProvider) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{58} + return fileDescriptor_e0e705f843545fab, []int{59} } func (m *MetricProvider) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1704,7 +1732,7 @@ var xxx_messageInfo_MetricProvider proto.InternalMessageInfo func (m *MetricResult) Reset() { *m = MetricResult{} } func (*MetricResult) ProtoMessage() {} func (*MetricResult) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{59} + return fileDescriptor_e0e705f843545fab, []int{60} } func (m *MetricResult) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1732,7 +1760,7 @@ var xxx_messageInfo_MetricResult proto.InternalMessageInfo func (m *NewRelicMetric) Reset() { *m = NewRelicMetric{} } func (*NewRelicMetric) ProtoMessage() {} func (*NewRelicMetric) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{60} + return fileDescriptor_e0e705f843545fab, []int{61} } func (m *NewRelicMetric) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1760,7 +1788,7 @@ var xxx_messageInfo_NewRelicMetric proto.InternalMessageInfo func (m *NginxTrafficRouting) Reset() { *m = NginxTrafficRouting{} } func (*NginxTrafficRouting) ProtoMessage() {} func (*NginxTrafficRouting) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{61} + return fileDescriptor_e0e705f843545fab, []int{62} } func (m *NginxTrafficRouting) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1788,7 +1816,7 @@ var xxx_messageInfo_NginxTrafficRouting proto.InternalMessageInfo func (m *ObjectRef) Reset() { *m = ObjectRef{} } func (*ObjectRef) ProtoMessage() {} func (*ObjectRef) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{62} + return fileDescriptor_e0e705f843545fab, []int{63} } func (m *ObjectRef) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1816,7 +1844,7 @@ var xxx_messageInfo_ObjectRef proto.InternalMessageInfo func (m *PauseCondition) Reset() { *m = PauseCondition{} } func (*PauseCondition) ProtoMessage() {} func (*PauseCondition) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{63} + return fileDescriptor_e0e705f843545fab, []int{64} } func (m *PauseCondition) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1844,7 +1872,7 @@ var xxx_messageInfo_PauseCondition proto.InternalMessageInfo func (m *PingPongSpec) Reset() { *m = PingPongSpec{} } func (*PingPongSpec) ProtoMessage() {} func (*PingPongSpec) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{64} + return fileDescriptor_e0e705f843545fab, []int{65} } func (m *PingPongSpec) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1872,7 +1900,7 @@ var xxx_messageInfo_PingPongSpec proto.InternalMessageInfo func (m *PodTemplateMetadata) Reset() { *m = PodTemplateMetadata{} } func (*PodTemplateMetadata) ProtoMessage() {} func (*PodTemplateMetadata) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{65} + return fileDescriptor_e0e705f843545fab, []int{66} } func (m *PodTemplateMetadata) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1902,7 +1930,7 @@ func (m *PreferredDuringSchedulingIgnoredDuringExecution) Reset() { } func (*PreferredDuringSchedulingIgnoredDuringExecution) ProtoMessage() {} func (*PreferredDuringSchedulingIgnoredDuringExecution) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{66} + return fileDescriptor_e0e705f843545fab, []int{67} } func (m *PreferredDuringSchedulingIgnoredDuringExecution) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1930,7 +1958,7 @@ var xxx_messageInfo_PreferredDuringSchedulingIgnoredDuringExecution proto.Intern func (m *PrometheusMetric) Reset() { *m = PrometheusMetric{} } func (*PrometheusMetric) ProtoMessage() {} func (*PrometheusMetric) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{67} + return fileDescriptor_e0e705f843545fab, []int{68} } func (m *PrometheusMetric) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1960,7 +1988,7 @@ func (m *RequiredDuringSchedulingIgnoredDuringExecution) Reset() { } func (*RequiredDuringSchedulingIgnoredDuringExecution) ProtoMessage() {} func (*RequiredDuringSchedulingIgnoredDuringExecution) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{68} + return fileDescriptor_e0e705f843545fab, []int{69} } func (m *RequiredDuringSchedulingIgnoredDuringExecution) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1988,7 +2016,7 @@ var xxx_messageInfo_RequiredDuringSchedulingIgnoredDuringExecution proto.Interna func (m *RollbackWindowSpec) Reset() { *m = RollbackWindowSpec{} } func (*RollbackWindowSpec) ProtoMessage() {} func (*RollbackWindowSpec) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{69} + return fileDescriptor_e0e705f843545fab, []int{70} } func (m *RollbackWindowSpec) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2016,7 +2044,7 @@ var xxx_messageInfo_RollbackWindowSpec proto.InternalMessageInfo func (m *Rollout) Reset() { *m = Rollout{} } func (*Rollout) ProtoMessage() {} func (*Rollout) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{70} + return fileDescriptor_e0e705f843545fab, []int{71} } func (m *Rollout) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2044,7 +2072,7 @@ var xxx_messageInfo_Rollout proto.InternalMessageInfo func (m *RolloutAnalysis) Reset() { *m = RolloutAnalysis{} } func (*RolloutAnalysis) ProtoMessage() {} func (*RolloutAnalysis) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{71} + return fileDescriptor_e0e705f843545fab, []int{72} } func (m *RolloutAnalysis) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2072,7 +2100,7 @@ var xxx_messageInfo_RolloutAnalysis proto.InternalMessageInfo func (m *RolloutAnalysisBackground) Reset() { *m = RolloutAnalysisBackground{} } func (*RolloutAnalysisBackground) ProtoMessage() {} func (*RolloutAnalysisBackground) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{72} + return fileDescriptor_e0e705f843545fab, []int{73} } func (m *RolloutAnalysisBackground) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2100,7 +2128,7 @@ var xxx_messageInfo_RolloutAnalysisBackground proto.InternalMessageInfo func (m *RolloutAnalysisRunStatus) Reset() { *m = RolloutAnalysisRunStatus{} } func (*RolloutAnalysisRunStatus) ProtoMessage() {} func (*RolloutAnalysisRunStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{73} + return fileDescriptor_e0e705f843545fab, []int{74} } func (m *RolloutAnalysisRunStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2128,7 +2156,7 @@ var xxx_messageInfo_RolloutAnalysisRunStatus proto.InternalMessageInfo func (m *RolloutAnalysisTemplate) Reset() { *m = RolloutAnalysisTemplate{} } func (*RolloutAnalysisTemplate) ProtoMessage() {} func (*RolloutAnalysisTemplate) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{74} + return fileDescriptor_e0e705f843545fab, []int{75} } func (m *RolloutAnalysisTemplate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2156,7 +2184,7 @@ var xxx_messageInfo_RolloutAnalysisTemplate proto.InternalMessageInfo func (m *RolloutCondition) Reset() { *m = RolloutCondition{} } func (*RolloutCondition) ProtoMessage() {} func (*RolloutCondition) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{75} + return fileDescriptor_e0e705f843545fab, []int{76} } func (m *RolloutCondition) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2184,7 +2212,7 @@ var xxx_messageInfo_RolloutCondition proto.InternalMessageInfo func (m *RolloutExperimentStep) Reset() { *m = RolloutExperimentStep{} } func (*RolloutExperimentStep) ProtoMessage() {} func (*RolloutExperimentStep) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{76} + return fileDescriptor_e0e705f843545fab, []int{77} } func (m *RolloutExperimentStep) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2214,7 +2242,7 @@ func (m *RolloutExperimentStepAnalysisTemplateRef) Reset() { } func (*RolloutExperimentStepAnalysisTemplateRef) ProtoMessage() {} func (*RolloutExperimentStepAnalysisTemplateRef) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{77} + return fileDescriptor_e0e705f843545fab, []int{78} } func (m *RolloutExperimentStepAnalysisTemplateRef) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2242,7 +2270,7 @@ var xxx_messageInfo_RolloutExperimentStepAnalysisTemplateRef proto.InternalMessa func (m *RolloutExperimentTemplate) Reset() { *m = RolloutExperimentTemplate{} } func (*RolloutExperimentTemplate) ProtoMessage() {} func (*RolloutExperimentTemplate) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{78} + return fileDescriptor_e0e705f843545fab, []int{79} } func (m *RolloutExperimentTemplate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2270,7 +2298,7 @@ var xxx_messageInfo_RolloutExperimentTemplate proto.InternalMessageInfo func (m *RolloutList) Reset() { *m = RolloutList{} } func (*RolloutList) ProtoMessage() {} func (*RolloutList) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{79} + return fileDescriptor_e0e705f843545fab, []int{80} } func (m *RolloutList) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2298,7 +2326,7 @@ var xxx_messageInfo_RolloutList proto.InternalMessageInfo func (m *RolloutPause) Reset() { *m = RolloutPause{} } func (*RolloutPause) ProtoMessage() {} func (*RolloutPause) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{80} + return fileDescriptor_e0e705f843545fab, []int{81} } func (m *RolloutPause) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2326,7 +2354,7 @@ var xxx_messageInfo_RolloutPause proto.InternalMessageInfo func (m *RolloutSpec) Reset() { *m = RolloutSpec{} } func (*RolloutSpec) ProtoMessage() {} func (*RolloutSpec) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{81} + return fileDescriptor_e0e705f843545fab, []int{82} } func (m *RolloutSpec) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2354,7 +2382,7 @@ var xxx_messageInfo_RolloutSpec proto.InternalMessageInfo func (m *RolloutStatus) Reset() { *m = RolloutStatus{} } func (*RolloutStatus) ProtoMessage() {} func (*RolloutStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{82} + return fileDescriptor_e0e705f843545fab, []int{83} } func (m *RolloutStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2382,7 +2410,7 @@ var xxx_messageInfo_RolloutStatus proto.InternalMessageInfo func (m *RolloutStrategy) Reset() { *m = RolloutStrategy{} } func (*RolloutStrategy) ProtoMessage() {} func (*RolloutStrategy) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{83} + return fileDescriptor_e0e705f843545fab, []int{84} } func (m *RolloutStrategy) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2410,7 +2438,7 @@ var xxx_messageInfo_RolloutStrategy proto.InternalMessageInfo func (m *RolloutTrafficRouting) Reset() { *m = RolloutTrafficRouting{} } func (*RolloutTrafficRouting) ProtoMessage() {} func (*RolloutTrafficRouting) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{84} + return fileDescriptor_e0e705f843545fab, []int{85} } func (m *RolloutTrafficRouting) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2438,7 +2466,7 @@ var xxx_messageInfo_RolloutTrafficRouting proto.InternalMessageInfo func (m *RouteMatch) Reset() { *m = RouteMatch{} } func (*RouteMatch) ProtoMessage() {} func (*RouteMatch) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{85} + return fileDescriptor_e0e705f843545fab, []int{86} } func (m *RouteMatch) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2466,7 +2494,7 @@ var xxx_messageInfo_RouteMatch proto.InternalMessageInfo func (m *RunSummary) Reset() { *m = RunSummary{} } func (*RunSummary) ProtoMessage() {} func (*RunSummary) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{86} + return fileDescriptor_e0e705f843545fab, []int{87} } func (m *RunSummary) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2494,7 +2522,7 @@ var xxx_messageInfo_RunSummary proto.InternalMessageInfo func (m *SMITrafficRouting) Reset() { *m = SMITrafficRouting{} } func (*SMITrafficRouting) ProtoMessage() {} func (*SMITrafficRouting) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{87} + return fileDescriptor_e0e705f843545fab, []int{88} } func (m *SMITrafficRouting) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2522,7 +2550,7 @@ var xxx_messageInfo_SMITrafficRouting proto.InternalMessageInfo func (m *ScopeDetail) Reset() { *m = ScopeDetail{} } func (*ScopeDetail) ProtoMessage() {} func (*ScopeDetail) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{88} + return fileDescriptor_e0e705f843545fab, []int{89} } func (m *ScopeDetail) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2550,7 +2578,7 @@ var xxx_messageInfo_ScopeDetail proto.InternalMessageInfo func (m *SecretKeyRef) Reset() { *m = SecretKeyRef{} } func (*SecretKeyRef) ProtoMessage() {} func (*SecretKeyRef) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{89} + return fileDescriptor_e0e705f843545fab, []int{90} } func (m *SecretKeyRef) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2578,7 +2606,7 @@ var xxx_messageInfo_SecretKeyRef proto.InternalMessageInfo func (m *SetCanaryScale) Reset() { *m = SetCanaryScale{} } func (*SetCanaryScale) ProtoMessage() {} func (*SetCanaryScale) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{90} + return fileDescriptor_e0e705f843545fab, []int{91} } func (m *SetCanaryScale) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2606,7 +2634,7 @@ var xxx_messageInfo_SetCanaryScale proto.InternalMessageInfo func (m *SetHeaderRoute) Reset() { *m = SetHeaderRoute{} } func (*SetHeaderRoute) ProtoMessage() {} func (*SetHeaderRoute) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{91} + return fileDescriptor_e0e705f843545fab, []int{92} } func (m *SetHeaderRoute) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2634,7 +2662,7 @@ var xxx_messageInfo_SetHeaderRoute proto.InternalMessageInfo func (m *SetMirrorRoute) Reset() { *m = SetMirrorRoute{} } func (*SetMirrorRoute) ProtoMessage() {} func (*SetMirrorRoute) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{92} + return fileDescriptor_e0e705f843545fab, []int{93} } func (m *SetMirrorRoute) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2662,7 +2690,7 @@ var xxx_messageInfo_SetMirrorRoute proto.InternalMessageInfo func (m *SkyWalkingMetric) Reset() { *m = SkyWalkingMetric{} } func (*SkyWalkingMetric) ProtoMessage() {} func (*SkyWalkingMetric) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{93} + return fileDescriptor_e0e705f843545fab, []int{94} } func (m *SkyWalkingMetric) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2690,7 +2718,7 @@ var xxx_messageInfo_SkyWalkingMetric proto.InternalMessageInfo func (m *StickinessConfig) Reset() { *m = StickinessConfig{} } func (*StickinessConfig) ProtoMessage() {} func (*StickinessConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{94} + return fileDescriptor_e0e705f843545fab, []int{95} } func (m *StickinessConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2718,7 +2746,7 @@ var xxx_messageInfo_StickinessConfig proto.InternalMessageInfo func (m *StringMatch) Reset() { *m = StringMatch{} } func (*StringMatch) ProtoMessage() {} func (*StringMatch) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{95} + return fileDescriptor_e0e705f843545fab, []int{96} } func (m *StringMatch) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2746,7 +2774,7 @@ var xxx_messageInfo_StringMatch proto.InternalMessageInfo func (m *TCPRoute) Reset() { *m = TCPRoute{} } func (*TCPRoute) ProtoMessage() {} func (*TCPRoute) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{96} + return fileDescriptor_e0e705f843545fab, []int{97} } func (m *TCPRoute) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2774,7 +2802,7 @@ var xxx_messageInfo_TCPRoute proto.InternalMessageInfo func (m *TLSRoute) Reset() { *m = TLSRoute{} } func (*TLSRoute) ProtoMessage() {} func (*TLSRoute) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{97} + return fileDescriptor_e0e705f843545fab, []int{98} } func (m *TLSRoute) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2802,7 +2830,7 @@ var xxx_messageInfo_TLSRoute proto.InternalMessageInfo func (m *TemplateService) Reset() { *m = TemplateService{} } func (*TemplateService) ProtoMessage() {} func (*TemplateService) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{98} + return fileDescriptor_e0e705f843545fab, []int{99} } func (m *TemplateService) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2830,7 +2858,7 @@ var xxx_messageInfo_TemplateService proto.InternalMessageInfo func (m *TemplateSpec) Reset() { *m = TemplateSpec{} } func (*TemplateSpec) ProtoMessage() {} func (*TemplateSpec) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{99} + return fileDescriptor_e0e705f843545fab, []int{100} } func (m *TemplateSpec) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2858,7 +2886,7 @@ var xxx_messageInfo_TemplateSpec proto.InternalMessageInfo func (m *TemplateStatus) Reset() { *m = TemplateStatus{} } func (*TemplateStatus) ProtoMessage() {} func (*TemplateStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{100} + return fileDescriptor_e0e705f843545fab, []int{101} } func (m *TemplateStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2886,7 +2914,7 @@ var xxx_messageInfo_TemplateStatus proto.InternalMessageInfo func (m *TraefikTrafficRouting) Reset() { *m = TraefikTrafficRouting{} } func (*TraefikTrafficRouting) ProtoMessage() {} func (*TraefikTrafficRouting) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{101} + return fileDescriptor_e0e705f843545fab, []int{102} } func (m *TraefikTrafficRouting) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2914,7 +2942,7 @@ var xxx_messageInfo_TraefikTrafficRouting proto.InternalMessageInfo func (m *TrafficWeights) Reset() { *m = TrafficWeights{} } func (*TrafficWeights) ProtoMessage() {} func (*TrafficWeights) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{102} + return fileDescriptor_e0e705f843545fab, []int{103} } func (m *TrafficWeights) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2942,7 +2970,7 @@ var xxx_messageInfo_TrafficWeights proto.InternalMessageInfo func (m *ValueFrom) Reset() { *m = ValueFrom{} } func (*ValueFrom) ProtoMessage() {} func (*ValueFrom) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{103} + return fileDescriptor_e0e705f843545fab, []int{104} } func (m *ValueFrom) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2970,7 +2998,7 @@ var xxx_messageInfo_ValueFrom proto.InternalMessageInfo func (m *WavefrontMetric) Reset() { *m = WavefrontMetric{} } func (*WavefrontMetric) ProtoMessage() {} func (*WavefrontMetric) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{104} + return fileDescriptor_e0e705f843545fab, []int{105} } func (m *WavefrontMetric) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2998,7 +3026,7 @@ var xxx_messageInfo_WavefrontMetric proto.InternalMessageInfo func (m *WebMetric) Reset() { *m = WebMetric{} } func (*WebMetric) ProtoMessage() {} func (*WebMetric) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{105} + return fileDescriptor_e0e705f843545fab, []int{106} } func (m *WebMetric) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3026,7 +3054,7 @@ var xxx_messageInfo_WebMetric proto.InternalMessageInfo func (m *WebMetricHeader) Reset() { *m = WebMetricHeader{} } func (*WebMetricHeader) ProtoMessage() {} func (*WebMetricHeader) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{106} + return fileDescriptor_e0e705f843545fab, []int{107} } func (m *WebMetricHeader) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3054,7 +3082,7 @@ var xxx_messageInfo_WebMetricHeader proto.InternalMessageInfo func (m *WeightDestination) Reset() { *m = WeightDestination{} } func (*WeightDestination) ProtoMessage() {} func (*WeightDestination) Descriptor() ([]byte, []int) { - return fileDescriptor_e0e705f843545fab, []int{107} + return fileDescriptor_e0e705f843545fab, []int{108} } func (m *WeightDestination) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3086,6 +3114,9 @@ func init() { proto.RegisterType((*AnalysisRun)(nil), "github.com.argoproj.argo_rollouts.pkg.apis.rollouts.v1alpha1.AnalysisRun") proto.RegisterType((*AnalysisRunArgument)(nil), "github.com.argoproj.argo_rollouts.pkg.apis.rollouts.v1alpha1.AnalysisRunArgument") proto.RegisterType((*AnalysisRunList)(nil), "github.com.argoproj.argo_rollouts.pkg.apis.rollouts.v1alpha1.AnalysisRunList") + proto.RegisterType((*AnalysisRunMetadata)(nil), "github.com.argoproj.argo_rollouts.pkg.apis.rollouts.v1alpha1.AnalysisRunMetadata") + proto.RegisterMapType((map[string]string)(nil), "github.com.argoproj.argo_rollouts.pkg.apis.rollouts.v1alpha1.AnalysisRunMetadata.AnnotationsEntry") + proto.RegisterMapType((map[string]string)(nil), "github.com.argoproj.argo_rollouts.pkg.apis.rollouts.v1alpha1.AnalysisRunMetadata.LabelsEntry") proto.RegisterType((*AnalysisRunSpec)(nil), "github.com.argoproj.argo_rollouts.pkg.apis.rollouts.v1alpha1.AnalysisRunSpec") proto.RegisterType((*AnalysisRunStatus)(nil), "github.com.argoproj.argo_rollouts.pkg.apis.rollouts.v1alpha1.AnalysisRunStatus") proto.RegisterType((*AnalysisRunStrategy)(nil), "github.com.argoproj.argo_rollouts.pkg.apis.rollouts.v1alpha1.AnalysisRunStrategy") @@ -3203,505 +3234,509 @@ func init() { } var fileDescriptor_e0e705f843545fab = []byte{ - // 7967 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x5b, 0x6c, 0x24, 0xd9, - 0x75, 0xd8, 0x16, 0x9b, 0xaf, 0x3e, 0xe4, 0xf0, 0x71, 0x87, 0xa3, 0xe1, 0x72, 0x77, 0xa6, 0x57, - 0xb5, 0xc6, 0x66, 0x6d, 0xaf, 0x48, 0x69, 0x1f, 0xc9, 0x5a, 0xab, 0x6c, 0xd2, 0x4d, 0xce, 0xec, - 0x70, 0x96, 0x9c, 0xed, 0x3d, 0xcd, 0xd9, 0x91, 0x25, 0xad, 0xad, 0x62, 0xf7, 0x65, 0xb3, 0x86, - 0xdd, 0x55, 0xed, 0xaa, 0x6a, 0x72, 0xb8, 0x5a, 0x58, 0x2b, 0x0b, 0xab, 0x28, 0x86, 0x04, 0x2b, - 0xb1, 0x85, 0x20, 0x48, 0x10, 0x28, 0x86, 0x00, 0x3b, 0xb1, 0xbf, 0x8c, 0x04, 0xf9, 0x31, 0x10, - 0x23, 0x7e, 0x44, 0x3f, 0x0e, 0xe4, 0x8f, 0x44, 0x76, 0x00, 0xd3, 0x11, 0x95, 0x9f, 0x04, 0x09, - 0x8c, 0x00, 0x0e, 0x02, 0xcf, 0x47, 0x10, 0xdc, 0x67, 0xdd, 0xaa, 0xae, 0xe6, 0x74, 0xb3, 0x8b, - 0x23, 0x21, 0xf6, 0x5f, 0xf7, 0x3d, 0xe7, 0x9e, 0x73, 0xea, 0x3e, 0xcf, 0x3d, 0xf7, 0x9c, 0x73, - 0x61, 0xab, 0xe9, 0x46, 0xfb, 0xdd, 0xdd, 0xd5, 0xba, 0xdf, 0x5e, 0x73, 0x82, 0xa6, 0xdf, 0x09, - 0xfc, 0xfb, 0xfc, 0xc7, 0xc7, 0x02, 0xbf, 0xd5, 0xf2, 0xbb, 0x51, 0xb8, 0xd6, 0x39, 0x68, 0xae, - 0x39, 0x1d, 0x37, 0x5c, 0xd3, 0x25, 0x87, 0x9f, 0x70, 0x5a, 0x9d, 0x7d, 0xe7, 0x13, 0x6b, 0x4d, - 0xea, 0xd1, 0xc0, 0x89, 0x68, 0x63, 0xb5, 0x13, 0xf8, 0x91, 0x4f, 0x3e, 0x15, 0x53, 0x5b, 0x55, - 0xd4, 0xf8, 0x8f, 0x9f, 0x55, 0x75, 0x57, 0x3b, 0x07, 0xcd, 0x55, 0x46, 0x6d, 0x55, 0x97, 0x28, - 0x6a, 0x2b, 0x1f, 0x33, 0x64, 0x69, 0xfa, 0x4d, 0x7f, 0x8d, 0x13, 0xdd, 0xed, 0xee, 0xf1, 0x7f, - 0xfc, 0x0f, 0xff, 0x25, 0x98, 0xad, 0x3c, 0x7b, 0xf0, 0x6a, 0xb8, 0xea, 0xfa, 0x4c, 0xb6, 0xb5, - 0x5d, 0x27, 0xaa, 0xef, 0xaf, 0x1d, 0xf6, 0x48, 0xb4, 0x62, 0x1b, 0x48, 0x75, 0x3f, 0xa0, 0x59, - 0x38, 0x2f, 0xc7, 0x38, 0x6d, 0xa7, 0xbe, 0xef, 0x7a, 0x34, 0x38, 0x8e, 0xbf, 0xba, 0x4d, 0x23, - 0x27, 0xab, 0xd6, 0x5a, 0xbf, 0x5a, 0x41, 0xd7, 0x8b, 0xdc, 0x36, 0xed, 0xa9, 0xf0, 0x37, 0x1f, - 0x55, 0x21, 0xac, 0xef, 0xd3, 0xb6, 0xd3, 0x53, 0xef, 0xa5, 0x7e, 0xf5, 0xba, 0x91, 0xdb, 0x5a, - 0x73, 0xbd, 0x28, 0x8c, 0x82, 0x74, 0x25, 0xfb, 0xf7, 0x0a, 0x50, 0x2c, 0x6f, 0x55, 0x6a, 0x91, - 0x13, 0x75, 0x43, 0xf2, 0x15, 0x0b, 0x66, 0x5b, 0xbe, 0xd3, 0xa8, 0x38, 0x2d, 0xc7, 0xab, 0xd3, - 0x60, 0xd9, 0x7a, 0xc6, 0x7a, 0x7e, 0xe6, 0xc5, 0xad, 0xd5, 0x51, 0xfa, 0x6b, 0xb5, 0x7c, 0x14, - 0x22, 0x0d, 0xfd, 0x6e, 0x50, 0xa7, 0x48, 0xf7, 0x2a, 0x4b, 0xdf, 0x39, 0x29, 0x3d, 0x71, 0x7a, - 0x52, 0x9a, 0xdd, 0x32, 0x38, 0x61, 0x82, 0x2f, 0xf9, 0xa6, 0x05, 0x8b, 0x75, 0xc7, 0x73, 0x82, - 0xe3, 0x1d, 0x27, 0x68, 0xd2, 0xe8, 0x8d, 0xc0, 0xef, 0x76, 0x96, 0xc7, 0x2e, 0x40, 0x9a, 0x27, - 0xa5, 0x34, 0x8b, 0xeb, 0x69, 0x76, 0xd8, 0x2b, 0x01, 0x97, 0x2b, 0x8c, 0x9c, 0xdd, 0x16, 0x35, - 0xe5, 0x2a, 0x5c, 0xa4, 0x5c, 0xb5, 0x34, 0x3b, 0xec, 0x95, 0xc0, 0xfe, 0xb0, 0x00, 0x8b, 0xe5, - 0xad, 0xca, 0x4e, 0xe0, 0xec, 0xed, 0xb9, 0x75, 0xf4, 0xbb, 0x91, 0xeb, 0x35, 0xc9, 0x8f, 0xc3, - 0x94, 0xeb, 0x35, 0x03, 0x1a, 0x86, 0xbc, 0x23, 0x8b, 0x95, 0x79, 0x49, 0x74, 0x6a, 0x53, 0x14, - 0xa3, 0x82, 0x93, 0x57, 0x60, 0x26, 0xa4, 0xc1, 0xa1, 0x5b, 0xa7, 0x55, 0x3f, 0x88, 0x78, 0x4b, - 0x4f, 0x54, 0x2e, 0x4b, 0xf4, 0x99, 0x5a, 0x0c, 0x42, 0x13, 0x8f, 0x55, 0x0b, 0x7c, 0x3f, 0x92, - 0x70, 0xde, 0x10, 0xc5, 0xb8, 0x1a, 0xc6, 0x20, 0x34, 0xf1, 0xc8, 0x37, 0x2c, 0x58, 0x08, 0x23, - 0xb7, 0x7e, 0xe0, 0x7a, 0x34, 0x0c, 0xd7, 0x7d, 0x6f, 0xcf, 0x6d, 0x2e, 0x4f, 0xf0, 0x56, 0xbc, - 0x33, 0x5a, 0x2b, 0xd6, 0x52, 0x54, 0x2b, 0x4b, 0xa7, 0x27, 0xa5, 0x85, 0x74, 0x29, 0xf6, 0x70, - 0x27, 0x1b, 0xb0, 0xe0, 0x78, 0x9e, 0x1f, 0x39, 0x91, 0xeb, 0x7b, 0xd5, 0x80, 0xee, 0xb9, 0x0f, - 0x96, 0xc7, 0xf9, 0xe7, 0x2c, 0xcb, 0xcf, 0x59, 0x28, 0xa7, 0xe0, 0xd8, 0x53, 0xc3, 0xde, 0x80, - 0xe5, 0x72, 0x7b, 0xd7, 0x09, 0x43, 0xa7, 0xe1, 0x07, 0xa9, 0xde, 0x78, 0x1e, 0xa6, 0xdb, 0x4e, - 0xa7, 0xe3, 0x7a, 0x4d, 0xd6, 0x1d, 0x85, 0xe7, 0x8b, 0x95, 0xd9, 0xd3, 0x93, 0xd2, 0xf4, 0xb6, - 0x2c, 0x43, 0x0d, 0xb5, 0xff, 0x64, 0x0c, 0x66, 0xca, 0x9e, 0xd3, 0x3a, 0x0e, 0xdd, 0x10, 0xbb, - 0x1e, 0xf9, 0x3c, 0x4c, 0xb3, 0xd5, 0xa5, 0xe1, 0x44, 0x8e, 0x9c, 0x91, 0x1f, 0x5f, 0x15, 0x93, - 0x7d, 0xd5, 0x9c, 0xec, 0x71, 0xbb, 0x30, 0xec, 0xd5, 0xc3, 0x4f, 0xac, 0xbe, 0xb5, 0x7b, 0x9f, - 0xd6, 0xa3, 0x6d, 0x1a, 0x39, 0x15, 0x22, 0xbf, 0x02, 0xe2, 0x32, 0xd4, 0x54, 0x89, 0x0f, 0xe3, - 0x61, 0x87, 0xd6, 0xe5, 0x0c, 0xdb, 0x1e, 0x71, 0x24, 0xc7, 0xa2, 0xd7, 0x3a, 0xb4, 0x5e, 0x99, - 0x95, 0xac, 0xc7, 0xd9, 0x3f, 0xe4, 0x8c, 0xc8, 0x11, 0x4c, 0x86, 0x7c, 0xcd, 0x91, 0x93, 0xe7, - 0xad, 0xfc, 0x58, 0x72, 0xb2, 0x95, 0x39, 0xc9, 0x74, 0x52, 0xfc, 0x47, 0xc9, 0xce, 0xfe, 0xcf, - 0x16, 0x5c, 0x36, 0xb0, 0xcb, 0x41, 0xb3, 0xdb, 0xa6, 0x5e, 0x44, 0x9e, 0x81, 0x71, 0xcf, 0x69, - 0x53, 0x39, 0x51, 0xb4, 0xc8, 0x77, 0x9c, 0x36, 0x45, 0x0e, 0x21, 0xcf, 0xc2, 0xc4, 0xa1, 0xd3, - 0xea, 0x52, 0xde, 0x48, 0xc5, 0xca, 0x25, 0x89, 0x32, 0xf1, 0x0e, 0x2b, 0x44, 0x01, 0x23, 0xef, - 0x43, 0x91, 0xff, 0xb8, 0x19, 0xf8, 0xed, 0x9c, 0x3e, 0x4d, 0x4a, 0xf8, 0x8e, 0x22, 0x5b, 0xb9, - 0x74, 0x7a, 0x52, 0x2a, 0xea, 0xbf, 0x18, 0x33, 0xb4, 0xff, 0xcc, 0x82, 0x79, 0xe3, 0xe3, 0xb6, - 0xdc, 0x30, 0x22, 0x9f, 0xeb, 0x19, 0x3c, 0xab, 0x83, 0x0d, 0x1e, 0x56, 0x9b, 0x0f, 0x9d, 0x05, - 0xf9, 0xa5, 0xd3, 0xaa, 0xc4, 0x18, 0x38, 0x1e, 0x4c, 0xb8, 0x11, 0x6d, 0x87, 0xcb, 0x63, 0xcf, - 0x14, 0x9e, 0x9f, 0x79, 0x71, 0x33, 0xb7, 0x6e, 0x8c, 0xdb, 0x77, 0x93, 0xd1, 0x47, 0xc1, 0xc6, - 0xfe, 0xad, 0xf1, 0xc4, 0x17, 0xb2, 0x11, 0x45, 0x7c, 0x98, 0x6a, 0xd3, 0x28, 0x70, 0xeb, 0x62, - 0x5e, 0xcd, 0xbc, 0xb8, 0x31, 0x9a, 0x14, 0xdb, 0x9c, 0x58, 0xbc, 0x58, 0x8a, 0xff, 0x21, 0x2a, - 0x2e, 0x64, 0x1f, 0xc6, 0x9d, 0xa0, 0xa9, 0xbe, 0xf9, 0x66, 0x3e, 0xfd, 0x1b, 0x8f, 0xb9, 0x72, - 0xd0, 0x0c, 0x91, 0x73, 0x20, 0x6b, 0x50, 0x8c, 0x68, 0xd0, 0x76, 0x3d, 0x27, 0x12, 0xab, 0xeb, - 0x74, 0x65, 0x51, 0xa2, 0x15, 0x77, 0x14, 0x00, 0x63, 0x1c, 0xd2, 0x82, 0xc9, 0x46, 0x70, 0x8c, - 0x5d, 0x6f, 0x79, 0x3c, 0x8f, 0xa6, 0xd8, 0xe0, 0xb4, 0xe2, 0xc9, 0x24, 0xfe, 0xa3, 0xe4, 0x41, - 0xbe, 0x6d, 0xc1, 0x52, 0x9b, 0x3a, 0x61, 0x37, 0xa0, 0xec, 0x13, 0x90, 0x46, 0xd4, 0x63, 0xab, - 0xe1, 0xf2, 0x04, 0x67, 0x8e, 0xa3, 0xf6, 0x43, 0x2f, 0xe5, 0xca, 0xd3, 0x52, 0x94, 0xa5, 0x2c, - 0x28, 0x66, 0x4a, 0x63, 0xff, 0xc9, 0x38, 0x2c, 0xf6, 0xac, 0x10, 0xe4, 0x65, 0x98, 0xe8, 0xec, - 0x3b, 0xa1, 0x9a, 0xf2, 0xd7, 0xd5, 0x78, 0xab, 0xb2, 0xc2, 0x87, 0x27, 0xa5, 0x4b, 0xaa, 0x0a, - 0x2f, 0x40, 0x81, 0xcc, 0xf6, 0xd4, 0x36, 0x0d, 0x43, 0xa7, 0xa9, 0xd6, 0x01, 0x63, 0x98, 0xf0, - 0x62, 0x54, 0x70, 0xf2, 0xf7, 0x2c, 0xb8, 0x24, 0x86, 0x0c, 0xd2, 0xb0, 0xdb, 0x8a, 0xd8, 0x5a, - 0xc7, 0x9a, 0xe5, 0x76, 0x1e, 0xc3, 0x53, 0x90, 0xac, 0x5c, 0x91, 0xdc, 0x2f, 0x99, 0xa5, 0x21, - 0x26, 0xf9, 0x92, 0x7b, 0x50, 0x0c, 0x23, 0x27, 0x88, 0x68, 0xa3, 0x1c, 0xf1, 0x5d, 0x6d, 0xe6, - 0xc5, 0x9f, 0x18, 0x6c, 0x11, 0xd8, 0x71, 0xdb, 0x54, 0x2c, 0x38, 0x35, 0x45, 0x00, 0x63, 0x5a, - 0xe4, 0x7d, 0x80, 0xa0, 0xeb, 0xd5, 0xba, 0xed, 0xb6, 0x13, 0x1c, 0xcb, 0x1d, 0xfc, 0xd6, 0x68, - 0x9f, 0x87, 0x9a, 0x5e, 0xbc, 0x67, 0xc5, 0x65, 0x68, 0xf0, 0x23, 0x5f, 0xb2, 0xe0, 0x92, 0x18, - 0x89, 0x4a, 0x82, 0xc9, 0x9c, 0x25, 0x58, 0x64, 0x4d, 0xbb, 0x61, 0xb2, 0xc0, 0x24, 0x47, 0xfb, - 0x3f, 0x26, 0xf7, 0x93, 0x5a, 0xc4, 0xb4, 0xeb, 0xe6, 0x31, 0xf9, 0x2c, 0x3c, 0x19, 0x76, 0xeb, - 0x75, 0x1a, 0x86, 0x7b, 0xdd, 0x16, 0x76, 0xbd, 0x5b, 0x6e, 0x18, 0xf9, 0xc1, 0xf1, 0x96, 0xdb, - 0x76, 0x23, 0x3e, 0xe2, 0x26, 0x2a, 0xd7, 0x4e, 0x4f, 0x4a, 0x4f, 0xd6, 0xfa, 0x21, 0x61, 0xff, - 0xfa, 0xc4, 0x81, 0xa7, 0xba, 0x5e, 0x7f, 0xf2, 0x42, 0x7b, 0x2b, 0x9d, 0x9e, 0x94, 0x9e, 0xba, - 0xdb, 0x1f, 0x0d, 0xcf, 0xa2, 0x61, 0xff, 0x77, 0x0b, 0x16, 0xd4, 0x77, 0xed, 0xd0, 0x76, 0xa7, - 0xc5, 0x56, 0x97, 0x8b, 0x57, 0x44, 0xa2, 0x84, 0x22, 0x82, 0xf9, 0x6c, 0x27, 0x4a, 0xfe, 0x7e, - 0xda, 0x88, 0xfd, 0xdf, 0x2c, 0x58, 0x4a, 0x23, 0x3f, 0x86, 0xcd, 0x33, 0x4c, 0x6e, 0x9e, 0x77, - 0xf2, 0xfd, 0xda, 0x3e, 0x3b, 0xe8, 0x57, 0xc6, 0x7b, 0xbf, 0xf5, 0xff, 0xf7, 0x6d, 0x34, 0xde, - 0x15, 0x0b, 0x3f, 0xcc, 0x5d, 0x71, 0xfc, 0x47, 0x6a, 0x57, 0xfc, 0xf5, 0x71, 0x98, 0x2d, 0x7b, - 0x91, 0x5b, 0xde, 0xdb, 0x73, 0x3d, 0x37, 0x3a, 0x26, 0x5f, 0x1b, 0x83, 0xb5, 0x4e, 0x40, 0xf7, - 0x68, 0x10, 0xd0, 0xc6, 0x46, 0x37, 0x70, 0xbd, 0x66, 0xad, 0xbe, 0x4f, 0x1b, 0xdd, 0x96, 0xeb, - 0x35, 0x37, 0x9b, 0x9e, 0xaf, 0x8b, 0x6f, 0x3c, 0xa0, 0xf5, 0x2e, 0xff, 0x24, 0x31, 0x29, 0xda, - 0xa3, 0x7d, 0x52, 0x75, 0x38, 0xa6, 0x95, 0x97, 0x4e, 0x4f, 0x4a, 0x6b, 0x43, 0x56, 0xc2, 0x61, - 0x3f, 0x8d, 0x7c, 0x75, 0x0c, 0x56, 0x03, 0xfa, 0x73, 0x5d, 0x77, 0xf0, 0xd6, 0x10, 0xab, 0x56, - 0x6b, 0xc4, 0xed, 0x67, 0x28, 0x9e, 0x95, 0x17, 0x4f, 0x4f, 0x4a, 0x43, 0xd6, 0xc1, 0x21, 0xbf, - 0xcb, 0xae, 0xc2, 0x4c, 0xb9, 0xe3, 0x86, 0xee, 0x03, 0x76, 0x96, 0xa5, 0x03, 0x9c, 0x95, 0x4a, - 0x30, 0x11, 0x74, 0x5b, 0x54, 0xcc, 0xed, 0x62, 0xa5, 0xc8, 0x56, 0x21, 0x64, 0x05, 0x28, 0xca, - 0xed, 0x5f, 0x60, 0x2b, 0x2e, 0x27, 0x99, 0x3a, 0x25, 0xdf, 0x87, 0x89, 0x80, 0x31, 0x91, 0x23, - 0x6b, 0xd4, 0x03, 0x45, 0x2c, 0xb5, 0x14, 0x82, 0xfd, 0x44, 0xc1, 0xc2, 0xfe, 0xdd, 0x31, 0xb8, - 0x52, 0xee, 0x74, 0xb6, 0x69, 0xb8, 0x9f, 0x92, 0xe2, 0x97, 0x2c, 0x98, 0x3b, 0x74, 0x83, 0xa8, - 0xeb, 0xb4, 0x94, 0x6d, 0x43, 0xc8, 0x53, 0x1b, 0x55, 0x1e, 0xce, 0xed, 0x9d, 0x04, 0xe9, 0x0a, - 0x39, 0x3d, 0x29, 0xcd, 0x25, 0xcb, 0x30, 0xc5, 0x9e, 0xfc, 0x23, 0x0b, 0x16, 0x64, 0xd1, 0x1d, - 0xbf, 0x41, 0x4d, 0x83, 0xd8, 0xdd, 0x3c, 0x65, 0xd2, 0xc4, 0x85, 0xe5, 0x24, 0x5d, 0x8a, 0x3d, - 0x42, 0xd8, 0xff, 0x73, 0x0c, 0xae, 0xf6, 0xa1, 0x41, 0x7e, 0xcd, 0x82, 0x25, 0x61, 0x45, 0x33, - 0x40, 0x48, 0xf7, 0x64, 0x6b, 0xfe, 0x74, 0xde, 0x92, 0x23, 0x9b, 0xe2, 0xd4, 0xab, 0xd3, 0xca, - 0x32, 0x5b, 0x0d, 0xd7, 0x33, 0x58, 0x63, 0xa6, 0x40, 0x5c, 0x52, 0x61, 0x57, 0x4b, 0x49, 0x3a, - 0xf6, 0x58, 0x24, 0xad, 0x65, 0xb0, 0xc6, 0x4c, 0x81, 0xec, 0xbf, 0x03, 0x4f, 0x9d, 0x41, 0xee, - 0xd1, 0x93, 0xd3, 0x7e, 0x57, 0x8f, 0xfa, 0xe4, 0x98, 0x1b, 0x60, 0x5e, 0xdb, 0x30, 0xc9, 0xa7, - 0x8e, 0x9a, 0xd8, 0xc0, 0xb6, 0x3f, 0x3e, 0xa7, 0x42, 0x94, 0x10, 0xfb, 0x77, 0x2d, 0x98, 0x1e, - 0xc2, 0xac, 0x52, 0x4a, 0x9a, 0x55, 0x8a, 0x3d, 0x26, 0x95, 0xa8, 0xd7, 0xa4, 0xf2, 0xc6, 0x68, - 0xbd, 0x31, 0x88, 0x29, 0xe5, 0xcf, 0x2d, 0x58, 0xec, 0x31, 0xbd, 0x90, 0x7d, 0x58, 0xea, 0xf8, - 0x0d, 0xa5, 0x36, 0xdd, 0x72, 0xc2, 0x7d, 0x0e, 0x93, 0x9f, 0xf7, 0x32, 0xeb, 0xc9, 0x6a, 0x06, - 0xfc, 0xe1, 0x49, 0x69, 0x59, 0x13, 0x49, 0x21, 0x60, 0x26, 0x45, 0xd2, 0x81, 0xe9, 0x3d, 0x97, - 0xb6, 0x1a, 0xf1, 0x10, 0x1c, 0x51, 0x41, 0xba, 0x29, 0xa9, 0x09, 0xab, 0xa3, 0xfa, 0x87, 0x9a, - 0x8b, 0xfd, 0x45, 0x98, 0x4b, 0xda, 0xa0, 0x07, 0xe8, 0xbc, 0x6b, 0x50, 0x70, 0x02, 0x4f, 0x76, - 0xdd, 0x8c, 0x44, 0x28, 0x94, 0xf1, 0x0e, 0xb2, 0x72, 0xf2, 0x02, 0x4c, 0xef, 0x75, 0x5b, 0x2d, - 0x56, 0x41, 0xda, 0x86, 0xb5, 0x3a, 0x7c, 0x53, 0x96, 0xa3, 0xc6, 0xb0, 0xff, 0x72, 0x1c, 0xe6, - 0x2b, 0xad, 0x2e, 0x7d, 0x23, 0xa0, 0x54, 0x1d, 0xd2, 0xcb, 0x30, 0xdf, 0x09, 0xe8, 0xa1, 0x4b, - 0x8f, 0x6a, 0xb4, 0x45, 0xeb, 0x91, 0x1f, 0x48, 0x69, 0xae, 0x4a, 0x42, 0xf3, 0xd5, 0x24, 0x18, - 0xd3, 0xf8, 0xe4, 0x75, 0x98, 0x73, 0xea, 0x91, 0x7b, 0x48, 0x35, 0x05, 0x21, 0xee, 0x47, 0x24, - 0x85, 0xb9, 0x72, 0x02, 0x8a, 0x29, 0x6c, 0xf2, 0x39, 0x58, 0x0e, 0xeb, 0x4e, 0x8b, 0xde, 0xed, - 0x48, 0x56, 0xeb, 0xfb, 0xb4, 0x7e, 0x50, 0xf5, 0x5d, 0x2f, 0x92, 0x26, 0x99, 0x67, 0x24, 0xa5, - 0xe5, 0x5a, 0x1f, 0x3c, 0xec, 0x4b, 0x81, 0xfc, 0x5b, 0x0b, 0xae, 0x75, 0x02, 0x5a, 0x0d, 0xfc, - 0xb6, 0xcf, 0xf6, 0xda, 0x1e, 0x3b, 0x85, 0x3c, 0xaf, 0xbf, 0x33, 0xa2, 0x52, 0x21, 0x4a, 0x7a, - 0xed, 0xa4, 0x1f, 0x3d, 0x3d, 0x29, 0x5d, 0xab, 0x9e, 0x25, 0x00, 0x9e, 0x2d, 0x1f, 0xf9, 0x77, - 0x16, 0x5c, 0xef, 0xf8, 0x61, 0x74, 0xc6, 0x27, 0x4c, 0x5c, 0xe8, 0x27, 0xd8, 0xa7, 0x27, 0xa5, - 0xeb, 0xd5, 0x33, 0x25, 0xc0, 0x47, 0x48, 0x68, 0x9f, 0xce, 0xc0, 0xa2, 0x31, 0xf6, 0xe4, 0x21, - 0xfe, 0x35, 0xb8, 0xa4, 0x06, 0x43, 0xac, 0x04, 0x14, 0x63, 0xa3, 0x4b, 0xd9, 0x04, 0x62, 0x12, - 0x97, 0x8d, 0x3b, 0x3d, 0x14, 0x45, 0xed, 0xd4, 0xb8, 0xab, 0x26, 0xa0, 0x98, 0xc2, 0x26, 0x9b, - 0x70, 0x59, 0x96, 0x20, 0xed, 0xb4, 0xdc, 0xba, 0xb3, 0xee, 0x77, 0xe5, 0x90, 0x9b, 0xa8, 0x5c, - 0x3d, 0x3d, 0x29, 0x5d, 0xae, 0xf6, 0x82, 0x31, 0xab, 0x0e, 0xd9, 0x82, 0x25, 0xa7, 0x1b, 0xf9, - 0xfa, 0xfb, 0x6f, 0x78, 0x6c, 0x5f, 0x69, 0xf0, 0xa1, 0x35, 0x2d, 0x36, 0xa0, 0x72, 0x06, 0x1c, - 0x33, 0x6b, 0x91, 0x6a, 0x8a, 0x5a, 0x8d, 0xd6, 0x7d, 0xaf, 0x21, 0x7a, 0x79, 0x22, 0x3e, 0x8a, - 0x94, 0x33, 0x70, 0x30, 0xb3, 0x26, 0x69, 0xc1, 0x5c, 0xdb, 0x79, 0x70, 0xd7, 0x73, 0x0e, 0x1d, - 0xb7, 0xc5, 0x98, 0x48, 0x43, 0x4e, 0x7f, 0xeb, 0x42, 0x37, 0x72, 0x5b, 0xab, 0xe2, 0x4e, 0x73, - 0x75, 0xd3, 0x8b, 0xde, 0x0a, 0x6a, 0x11, 0x53, 0x59, 0x85, 0x2a, 0xb5, 0x9d, 0xa0, 0x85, 0x29, - 0xda, 0xe4, 0x2d, 0xb8, 0xc2, 0xa7, 0xe3, 0x86, 0x7f, 0xe4, 0x6d, 0xd0, 0x96, 0x73, 0xac, 0x3e, - 0x60, 0x8a, 0x7f, 0xc0, 0x93, 0xa7, 0x27, 0xa5, 0x2b, 0xb5, 0x2c, 0x04, 0xcc, 0xae, 0x47, 0x1c, - 0x78, 0x2a, 0x09, 0x40, 0x7a, 0xe8, 0x86, 0xae, 0xef, 0x09, 0x73, 0xcc, 0x74, 0x6c, 0x8e, 0xa9, - 0xf5, 0x47, 0xc3, 0xb3, 0x68, 0x90, 0x7f, 0x62, 0xc1, 0x52, 0xd6, 0x34, 0x5c, 0x2e, 0xe6, 0x71, - 0x63, 0x93, 0x9a, 0x5a, 0x62, 0x44, 0x64, 0x2e, 0x0a, 0x99, 0x42, 0x90, 0x0f, 0x2c, 0x98, 0x75, - 0x8c, 0xa3, 0xe4, 0x32, 0x70, 0xa9, 0x6e, 0x8f, 0x6a, 0xd0, 0x88, 0x29, 0x56, 0x16, 0x4e, 0x4f, - 0x4a, 0x89, 0xe3, 0x2a, 0x26, 0x38, 0x92, 0x7f, 0x66, 0xc1, 0x95, 0xcc, 0x39, 0xbe, 0x3c, 0x73, - 0x11, 0x2d, 0xc4, 0x07, 0x49, 0xf6, 0x9a, 0x93, 0x2d, 0x06, 0xf9, 0x86, 0xa5, 0xb7, 0xb2, 0x6d, - 0x65, 0x52, 0x9a, 0xe5, 0xa2, 0xbd, 0x3d, 0xe2, 0xe9, 0x39, 0x56, 0x1f, 0x14, 0xe1, 0xca, 0x65, - 0x63, 0x67, 0x54, 0x85, 0x98, 0x66, 0x4f, 0xbe, 0x6e, 0xa9, 0xad, 0x51, 0x4b, 0x74, 0xe9, 0xa2, - 0x24, 0x22, 0xf1, 0x4e, 0xab, 0x05, 0x4a, 0x31, 0x27, 0x3f, 0x03, 0x2b, 0xce, 0xae, 0x1f, 0x44, - 0x99, 0x93, 0x6f, 0x79, 0x8e, 0x4f, 0xa3, 0xeb, 0xa7, 0x27, 0xa5, 0x95, 0x72, 0x5f, 0x2c, 0x3c, - 0x83, 0x82, 0xfd, 0x9b, 0x13, 0x30, 0x2b, 0x8e, 0x04, 0x72, 0xeb, 0xfa, 0x6d, 0x0b, 0x9e, 0xae, - 0x77, 0x83, 0x80, 0x7a, 0x51, 0x2d, 0xa2, 0x9d, 0xde, 0x8d, 0xcb, 0xba, 0xd0, 0x8d, 0xeb, 0x99, - 0xd3, 0x93, 0xd2, 0xd3, 0xeb, 0x67, 0xf0, 0xc7, 0x33, 0xa5, 0x23, 0xff, 0xc1, 0x02, 0x5b, 0x22, - 0x54, 0x9c, 0xfa, 0x41, 0x33, 0xf0, 0xbb, 0x5e, 0xa3, 0xf7, 0x23, 0xc6, 0x2e, 0xf4, 0x23, 0x9e, - 0x3b, 0x3d, 0x29, 0xd9, 0xeb, 0x8f, 0x94, 0x02, 0x07, 0x90, 0x94, 0xbc, 0x01, 0x8b, 0x12, 0xeb, - 0xc6, 0x83, 0x0e, 0x0d, 0x5c, 0xa6, 0x7c, 0x4b, 0xc5, 0x31, 0xf6, 0xd3, 0x48, 0x23, 0x60, 0x6f, - 0x1d, 0x12, 0xc2, 0xd4, 0x11, 0x75, 0x9b, 0xfb, 0x91, 0x52, 0x9f, 0x46, 0x74, 0xce, 0x90, 0xe6, - 0x81, 0x7b, 0x82, 0x66, 0x65, 0xe6, 0xf4, 0xa4, 0x34, 0x25, 0xff, 0xa0, 0xe2, 0x44, 0xee, 0xc0, - 0x9c, 0x38, 0xb0, 0x55, 0x5d, 0xaf, 0x59, 0xf5, 0x3d, 0xe1, 0xd2, 0x50, 0xac, 0x3c, 0xa7, 0x36, - 0xfc, 0x5a, 0x02, 0xfa, 0xf0, 0xa4, 0x34, 0xab, 0x7e, 0xef, 0x1c, 0x77, 0x28, 0xa6, 0x6a, 0xdb, - 0x7f, 0x30, 0x09, 0xa0, 0x86, 0x2b, 0xed, 0x90, 0x9f, 0x84, 0x62, 0x48, 0x23, 0xc1, 0x55, 0xde, - 0x20, 0x88, 0x8b, 0x19, 0x55, 0x88, 0x31, 0x9c, 0x1c, 0xc0, 0x44, 0xc7, 0xe9, 0x86, 0x54, 0x76, - 0xfe, 0xed, 0x5c, 0x3a, 0xbf, 0xca, 0x28, 0x8a, 0x13, 0x1a, 0xff, 0x89, 0x82, 0x07, 0xf9, 0xb2, - 0x05, 0x40, 0x93, 0x1d, 0x36, 0xb2, 0xa5, 0x44, 0xb2, 0x8c, 0xfb, 0x94, 0xb5, 0x41, 0x65, 0xee, - 0xf4, 0xa4, 0x04, 0x46, 0xd7, 0x1b, 0x6c, 0xc9, 0x11, 0x4c, 0x3b, 0x6a, 0xcd, 0x1f, 0xbf, 0x88, - 0x35, 0x9f, 0x1f, 0x9c, 0xf4, 0xa0, 0xd5, 0xcc, 0xc8, 0x57, 0x2d, 0x98, 0x0b, 0x69, 0x24, 0xbb, - 0x8a, 0xad, 0x3c, 0x52, 0xe1, 0x1d, 0x71, 0xd0, 0xd5, 0x12, 0x34, 0xc5, 0x0a, 0x9a, 0x2c, 0xc3, - 0x14, 0x5f, 0x25, 0xca, 0x2d, 0xea, 0x34, 0x68, 0xc0, 0xcf, 0xe5, 0x52, 0x93, 0x1a, 0x5d, 0x14, - 0x83, 0xa6, 0x16, 0xc5, 0x28, 0xc3, 0x14, 0x5f, 0x25, 0xca, 0xb6, 0x1b, 0x04, 0xbe, 0x14, 0x65, - 0x3a, 0x27, 0x51, 0x0c, 0x9a, 0x5a, 0x14, 0xa3, 0x0c, 0x53, 0x7c, 0xed, 0x6f, 0x5d, 0x82, 0x39, - 0x35, 0x91, 0x62, 0xcd, 0x5e, 0x98, 0x81, 0xfa, 0x68, 0xf6, 0xeb, 0x26, 0x10, 0x93, 0xb8, 0xac, - 0xb2, 0x98, 0xaa, 0x49, 0xc5, 0x5e, 0x57, 0xae, 0x99, 0x40, 0x4c, 0xe2, 0x92, 0x36, 0x4c, 0x84, - 0x11, 0xed, 0xa8, 0xcb, 0xe0, 0x11, 0xef, 0x2a, 0xe3, 0xf5, 0x21, 0xbe, 0xee, 0x61, 0xff, 0x42, - 0x14, 0x5c, 0xb8, 0x25, 0x33, 0x4a, 0x18, 0x37, 0xe5, 0xe4, 0xc8, 0x67, 0x7e, 0x26, 0xed, 0xa6, - 0xa2, 0x37, 0x92, 0x65, 0x98, 0x62, 0x9f, 0xa1, 0xec, 0x4f, 0x5c, 0xa0, 0xb2, 0xff, 0x19, 0x98, - 0x6e, 0x3b, 0x0f, 0x6a, 0xdd, 0xa0, 0x79, 0xfe, 0x43, 0x85, 0xf4, 0xd3, 0x12, 0x54, 0x50, 0xd3, - 0x23, 0x5f, 0xb2, 0x8c, 0x25, 0x67, 0x8a, 0x13, 0xbf, 0x97, 0xef, 0x92, 0xa3, 0xf7, 0xca, 0xbe, - 0x8b, 0x4f, 0x8f, 0xea, 0x3d, 0xfd, 0xd8, 0x55, 0x6f, 0xa6, 0x46, 0x8a, 0x09, 0xa2, 0xd5, 0xc8, - 0xe2, 0x85, 0xaa, 0x91, 0xeb, 0x09, 0x66, 0x98, 0x62, 0xce, 0xe5, 0x11, 0x73, 0x4e, 0xcb, 0x03, - 0x17, 0x2a, 0x4f, 0x2d, 0xc1, 0x0c, 0x53, 0xcc, 0xfb, 0x9f, 0x37, 0x67, 0x2e, 0xe6, 0xbc, 0x39, - 0x9b, 0xc3, 0x79, 0xf3, 0x6c, 0x55, 0xfc, 0xd2, 0xa8, 0xaa, 0x38, 0xb9, 0x0d, 0xa4, 0x71, 0xec, - 0x39, 0x6d, 0xb7, 0x2e, 0x17, 0x4b, 0xbe, 0x6d, 0xce, 0x71, 0x7b, 0xc4, 0x8a, 0x5c, 0xc8, 0xc8, - 0x46, 0x0f, 0x06, 0x66, 0xd4, 0x22, 0x11, 0x4c, 0x77, 0x94, 0xc6, 0x35, 0x9f, 0xc7, 0xe8, 0x57, - 0x1a, 0x98, 0xf0, 0x17, 0x60, 0x13, 0x4f, 0x95, 0xa0, 0xe6, 0x44, 0xb6, 0x60, 0xa9, 0xed, 0x7a, - 0x55, 0xbf, 0x11, 0x56, 0x69, 0x20, 0xad, 0x2d, 0x35, 0x1a, 0x2d, 0x2f, 0xf0, 0xb6, 0xe1, 0x27, - 0xe8, 0xed, 0x0c, 0x38, 0x66, 0xd6, 0xb2, 0xff, 0xb7, 0x05, 0x0b, 0xeb, 0x2d, 0xbf, 0xdb, 0xb8, - 0xe7, 0x44, 0xf5, 0x7d, 0x71, 0x55, 0x4e, 0x5e, 0x87, 0x69, 0xd7, 0x8b, 0x68, 0x70, 0xe8, 0xb4, - 0xe4, 0xfe, 0x64, 0x2b, 0xf3, 0xe9, 0xa6, 0x2c, 0x7f, 0x78, 0x52, 0x9a, 0xdb, 0xe8, 0x06, 0xdc, - 0x07, 0x55, 0xac, 0x56, 0xa8, 0xeb, 0x90, 0x6f, 0x59, 0xb0, 0x28, 0x2e, 0xdb, 0x37, 0x9c, 0xc8, - 0x79, 0xbb, 0x4b, 0x03, 0x97, 0xaa, 0xeb, 0xf6, 0x11, 0x17, 0xaa, 0xb4, 0xac, 0x8a, 0xc1, 0x71, - 0xac, 0xa8, 0x6f, 0xa7, 0x39, 0x63, 0xaf, 0x30, 0xf6, 0x2f, 0x17, 0xe0, 0xc9, 0xbe, 0xb4, 0xc8, - 0x0a, 0x8c, 0xb9, 0x0d, 0xf9, 0xe9, 0x20, 0xe9, 0x8e, 0x6d, 0x36, 0x70, 0xcc, 0x6d, 0x90, 0x55, - 0xae, 0x73, 0x06, 0x34, 0x0c, 0xd5, 0xcd, 0x6b, 0x51, 0xab, 0x87, 0xb2, 0x14, 0x0d, 0x0c, 0x52, - 0x82, 0x89, 0x96, 0xb3, 0x4b, 0x5b, 0xf2, 0x3c, 0xc1, 0xb5, 0xd8, 0x2d, 0x56, 0x80, 0xa2, 0x9c, - 0xfc, 0x82, 0x05, 0x20, 0x04, 0x64, 0xa7, 0x11, 0xb9, 0x4b, 0x62, 0xbe, 0xcd, 0xc4, 0x28, 0x0b, - 0x29, 0xe3, 0xff, 0x68, 0x70, 0x25, 0x3b, 0x30, 0xc9, 0x14, 0x5a, 0xbf, 0x71, 0xee, 0x4d, 0x91, - 0x5f, 0xc9, 0x54, 0x39, 0x0d, 0x94, 0xb4, 0x58, 0x5b, 0x05, 0x34, 0xea, 0x06, 0x1e, 0x6b, 0x5a, - 0xbe, 0x0d, 0x4e, 0x0b, 0x29, 0x50, 0x97, 0xa2, 0x81, 0x61, 0xff, 0x9b, 0x31, 0x58, 0xca, 0x12, - 0x9d, 0xed, 0x36, 0x93, 0x42, 0x5a, 0x79, 0x34, 0xfe, 0x74, 0xfe, 0xed, 0x23, 0xfd, 0x46, 0xb4, - 0x77, 0x85, 0xf4, 0x6c, 0x93, 0x7c, 0xc9, 0xa7, 0x75, 0x0b, 0x8d, 0x9d, 0xb3, 0x85, 0x34, 0xe5, - 0x54, 0x2b, 0x3d, 0x03, 0xe3, 0x21, 0xeb, 0xf9, 0x42, 0xf2, 0xba, 0x83, 0xf7, 0x11, 0x87, 0x30, - 0x8c, 0xae, 0xe7, 0x46, 0xd2, 0x31, 0x5c, 0x63, 0xdc, 0xf5, 0xdc, 0x08, 0x39, 0xc4, 0xfe, 0xe6, - 0x18, 0xac, 0xf4, 0xff, 0x28, 0xf2, 0x4d, 0x0b, 0xa0, 0xc1, 0x8e, 0x2b, 0x6c, 0x48, 0x2a, 0x3f, - 0x1b, 0xe7, 0xa2, 0xda, 0x70, 0x43, 0x71, 0x8a, 0x9d, 0xae, 0x74, 0x51, 0x88, 0x86, 0x20, 0xe4, - 0x45, 0x35, 0xf4, 0xf9, 0x55, 0x8d, 0x98, 0x4c, 0xba, 0xce, 0xb6, 0x86, 0xa0, 0x81, 0xc5, 0xce, - 0xa3, 0x9e, 0xd3, 0xa6, 0x61, 0xc7, 0xd1, 0x9e, 0xff, 0xfc, 0x3c, 0x7a, 0x47, 0x15, 0x62, 0x0c, - 0xb7, 0x5b, 0xf0, 0xec, 0x00, 0x72, 0xe6, 0xe4, 0x85, 0x6d, 0xff, 0x2f, 0x0b, 0xae, 0xae, 0xb7, - 0xba, 0x61, 0x44, 0x83, 0xbf, 0x32, 0x3e, 0x6c, 0xff, 0xc7, 0x82, 0xa7, 0xfa, 0x7c, 0xf3, 0x63, - 0x70, 0x65, 0x7b, 0x2f, 0xe9, 0xca, 0x76, 0x77, 0xd4, 0x21, 0x9d, 0xf9, 0x1d, 0x7d, 0x3c, 0xda, - 0x7e, 0xdd, 0x82, 0x4b, 0x6c, 0xd9, 0x6a, 0xf8, 0xcd, 0x9c, 0x36, 0xce, 0x67, 0x61, 0xe2, 0xe7, - 0xd8, 0x06, 0x94, 0x1e, 0x64, 0x7c, 0x57, 0x42, 0x01, 0x63, 0x73, 0xc6, 0xe9, 0xb8, 0xef, 0xd0, - 0x80, 0x6f, 0x40, 0x85, 0xe4, 0x9c, 0x29, 0x6b, 0x08, 0x1a, 0x58, 0xf6, 0xa7, 0x40, 0x3a, 0x8b, - 0xa5, 0x66, 0x9c, 0x35, 0xc8, 0x8c, 0xb3, 0xff, 0xd3, 0x18, 0x18, 0xc6, 0x8f, 0xc7, 0x30, 0x92, - 0xbd, 0xc4, 0x48, 0x1e, 0xf1, 0xe0, 0x6e, 0x98, 0x72, 0xfa, 0x45, 0x85, 0x1c, 0xa6, 0xa2, 0x42, - 0xee, 0xe4, 0xc6, 0xf1, 0xec, 0xa0, 0x90, 0xef, 0x59, 0xf0, 0x54, 0x8c, 0xdc, 0x6b, 0x97, 0x7c, - 0xf4, 0xb2, 0xf4, 0x0a, 0xcc, 0x38, 0x71, 0x35, 0x39, 0x6e, 0x74, 0x20, 0x94, 0x41, 0x11, 0x4d, - 0xbc, 0xd8, 0x07, 0xbd, 0x70, 0x4e, 0x1f, 0xf4, 0xf1, 0xb3, 0x7d, 0xd0, 0xed, 0xbf, 0x18, 0x83, - 0x6b, 0xbd, 0x5f, 0xa6, 0x26, 0xd4, 0x60, 0x97, 0xfc, 0xaf, 0xc2, 0x6c, 0x24, 0x2b, 0x18, 0xdb, - 0x83, 0x0e, 0xe3, 0xdb, 0x31, 0x60, 0x98, 0xc0, 0x64, 0x35, 0xeb, 0x62, 0x2a, 0xd7, 0xea, 0x7e, - 0x47, 0x45, 0x30, 0xe8, 0x9a, 0xeb, 0x06, 0x0c, 0x13, 0x98, 0xda, 0x37, 0x74, 0xfc, 0xc2, 0x7d, - 0x43, 0x6b, 0x70, 0x45, 0x79, 0xc3, 0xdd, 0xf4, 0x83, 0x75, 0xbf, 0xdd, 0x69, 0x51, 0x19, 0xc3, - 0xc0, 0x84, 0xbd, 0x26, 0xab, 0x5c, 0xc1, 0x2c, 0x24, 0xcc, 0xae, 0x6b, 0x7f, 0xaf, 0x00, 0x97, - 0xe3, 0x66, 0x5f, 0xf7, 0xbd, 0x86, 0xcb, 0x7d, 0x0a, 0x5f, 0x83, 0xf1, 0xe8, 0xb8, 0xa3, 0x1a, - 0xfb, 0x6f, 0x28, 0x71, 0x76, 0x8e, 0x3b, 0xac, 0xb7, 0xaf, 0x66, 0x54, 0xe1, 0x96, 0x61, 0x5e, - 0x89, 0x6c, 0xe9, 0xd9, 0x21, 0x7a, 0xe0, 0xe5, 0xe4, 0x68, 0x7e, 0x78, 0x52, 0xca, 0x88, 0x62, - 0x5d, 0xd5, 0x94, 0x92, 0x63, 0x9e, 0xdc, 0x87, 0xb9, 0x96, 0x13, 0x46, 0x77, 0x3b, 0x0d, 0x27, - 0xa2, 0x3b, 0xae, 0xf4, 0xd0, 0x18, 0x2e, 0x30, 0x40, 0x5f, 0x65, 0x6f, 0x25, 0x28, 0x61, 0x8a, - 0x32, 0x39, 0x04, 0xc2, 0x4a, 0x76, 0x02, 0xc7, 0x0b, 0xc5, 0x57, 0x31, 0x7e, 0xc3, 0x07, 0x22, - 0xe8, 0x93, 0xe1, 0x56, 0x0f, 0x35, 0xcc, 0xe0, 0x40, 0x9e, 0x83, 0xc9, 0x80, 0x3a, 0xa1, 0xec, - 0xcc, 0x62, 0x3c, 0xff, 0x91, 0x97, 0xa2, 0x84, 0x9a, 0x13, 0x6a, 0xf2, 0x11, 0x13, 0xea, 0x4f, - 0x2d, 0x98, 0x8b, 0xbb, 0xe9, 0x31, 0xec, 0xac, 0xed, 0xe4, 0xce, 0x7a, 0x2b, 0xaf, 0x25, 0xb1, - 0xcf, 0x66, 0xfa, 0xef, 0x27, 0xcd, 0xef, 0xe3, 0x8e, 0xe1, 0x5f, 0x80, 0xa2, 0x9a, 0xd5, 0x4a, - 0x65, 0x1d, 0xf1, 0x80, 0x9d, 0x50, 0x66, 0x8c, 0x80, 0x26, 0xc9, 0x04, 0x63, 0x7e, 0x6c, 0x2b, - 0x6f, 0xc8, 0x6d, 0x5a, 0x0e, 0x7b, 0xbd, 0x95, 0xab, 0xed, 0x3b, 0x6b, 0x2b, 0x57, 0x75, 0xc8, - 0x5d, 0xb8, 0xda, 0x09, 0x7c, 0x1e, 0xe4, 0xba, 0x41, 0x9d, 0x46, 0xcb, 0xf5, 0xa8, 0xb2, 0x62, - 0x08, 0x4f, 0x8a, 0xa7, 0x4e, 0x4f, 0x4a, 0x57, 0xab, 0xd9, 0x28, 0xd8, 0xaf, 0x6e, 0x32, 0x30, - 0x6b, 0x7c, 0x80, 0xc0, 0xac, 0xbf, 0xaf, 0x6d, 0x85, 0x34, 0x94, 0xe1, 0x51, 0x9f, 0xcd, 0xab, - 0x2b, 0x33, 0x96, 0xf5, 0x78, 0x48, 0x95, 0x25, 0x53, 0xd4, 0xec, 0xfb, 0x1b, 0xa4, 0x26, 0xcf, - 0x69, 0x90, 0x8a, 0xfd, 0xeb, 0xa7, 0x7e, 0x98, 0xfe, 0xf5, 0xd3, 0x3f, 0x52, 0xfe, 0xf5, 0x1f, - 0x4e, 0xc0, 0x42, 0x5a, 0x03, 0xb9, 0xf8, 0xa0, 0xb3, 0x7f, 0x68, 0xc1, 0x82, 0x9a, 0x3d, 0x82, - 0x27, 0x55, 0x57, 0x0d, 0x5b, 0x39, 0x4d, 0x5a, 0xa1, 0x4b, 0xe9, 0xb0, 0xe8, 0x9d, 0x14, 0x37, - 0xec, 0xe1, 0x4f, 0xde, 0x85, 0x19, 0x6d, 0x91, 0x3f, 0x57, 0x04, 0xda, 0x3c, 0xd7, 0xa2, 0x62, - 0x12, 0x68, 0xd2, 0x23, 0x1f, 0x5a, 0x00, 0x75, 0xb5, 0xcd, 0xa9, 0xd9, 0xf5, 0x76, 0x5e, 0xb3, - 0x4b, 0x6f, 0xa0, 0xb1, 0xb2, 0xac, 0x8b, 0x42, 0x34, 0x18, 0x93, 0x5f, 0xe6, 0xb6, 0x78, 0xad, - 0xdd, 0xb1, 0xf9, 0x54, 0x18, 0xdd, 0x77, 0xf8, 0x0c, 0xc5, 0x34, 0x56, 0xa5, 0x0c, 0x50, 0x88, - 0x09, 0x21, 0xec, 0xd7, 0x40, 0x7b, 0x7b, 0xb2, 0x65, 0x8b, 0xfb, 0x7b, 0x56, 0x9d, 0x68, 0x5f, - 0x0e, 0x41, 0xbd, 0x6c, 0xdd, 0x54, 0x00, 0x8c, 0x71, 0xec, 0xcf, 0xc3, 0xdc, 0x1b, 0x81, 0xd3, - 0xd9, 0x77, 0xb9, 0xcd, 0x9b, 0x9d, 0xad, 0x7e, 0x1c, 0xa6, 0x9c, 0x46, 0x23, 0x2b, 0xa9, 0x40, - 0x59, 0x14, 0xa3, 0x82, 0x0f, 0x74, 0x8c, 0xb2, 0xff, 0xc0, 0x02, 0x12, 0xdf, 0x1b, 0xba, 0x5e, - 0x73, 0xdb, 0x89, 0xea, 0xfb, 0xec, 0x7c, 0xb4, 0xcf, 0x4b, 0xb3, 0xce, 0x47, 0xb7, 0x34, 0x04, - 0x0d, 0x2c, 0xf2, 0x3e, 0xcc, 0x88, 0x7f, 0xef, 0x68, 0x0b, 0xc1, 0xc8, 0x11, 0x04, 0x62, 0x43, - 0xe1, 0x32, 0x89, 0x51, 0x78, 0x2b, 0xe6, 0x80, 0x26, 0x3b, 0xd6, 0x54, 0x9b, 0xde, 0x5e, 0xab, - 0xfb, 0xa0, 0xb1, 0x1b, 0x37, 0x55, 0x27, 0xf0, 0xf7, 0xdc, 0x16, 0x4d, 0x37, 0x55, 0x55, 0x14, - 0xa3, 0x82, 0x0f, 0xd6, 0x54, 0xbf, 0x67, 0xc1, 0xd2, 0x66, 0x18, 0xb9, 0xfe, 0x06, 0x0d, 0x23, - 0xb6, 0xad, 0xb0, 0xc5, 0xa7, 0xdb, 0x1a, 0xc4, 0x71, 0x7b, 0x03, 0x16, 0xe4, 0x1d, 0x66, 0x77, - 0x37, 0xa4, 0x91, 0xa1, 0xc7, 0xeb, 0x79, 0xbc, 0x9e, 0x82, 0x63, 0x4f, 0x0d, 0x46, 0x45, 0x5e, - 0x66, 0xc6, 0x54, 0x0a, 0x49, 0x2a, 0xb5, 0x14, 0x1c, 0x7b, 0x6a, 0xd8, 0xdf, 0x2d, 0xc0, 0x65, - 0xfe, 0x19, 0xa9, 0xa0, 0x8b, 0xaf, 0xf7, 0x0b, 0xba, 0x18, 0x71, 0x2a, 0x73, 0x5e, 0xe7, 0x08, - 0xb9, 0xf8, 0x07, 0x16, 0xcc, 0x37, 0x92, 0x2d, 0x9d, 0x8f, 0x4d, 0x27, 0xab, 0x0f, 0x85, 0xcb, - 0x56, 0xaa, 0x10, 0xd3, 0xfc, 0xc9, 0xaf, 0x58, 0x30, 0x9f, 0x14, 0x53, 0xad, 0xee, 0x17, 0xd0, - 0x48, 0xda, 0xc7, 0x3a, 0x59, 0x1e, 0x62, 0x5a, 0x04, 0xfb, 0x0f, 0xc7, 0x64, 0x97, 0x5e, 0x44, - 0x44, 0x01, 0x39, 0x82, 0x62, 0xd4, 0x0a, 0x45, 0xa1, 0xfc, 0xda, 0x11, 0x4f, 0x84, 0x3b, 0x5b, - 0x35, 0xe1, 0x3e, 0x10, 0x2b, 0x6d, 0xb2, 0x84, 0x29, 0x9f, 0x8a, 0x17, 0x67, 0x5c, 0xef, 0x48, - 0xc6, 0xb9, 0x1c, 0x45, 0x77, 0xd6, 0xab, 0x69, 0xc6, 0xb2, 0x84, 0x31, 0x56, 0xbc, 0xec, 0xdf, - 0xb0, 0xa0, 0x78, 0xdb, 0x57, 0xeb, 0xc8, 0xcf, 0xe4, 0x60, 0xe8, 0xd1, 0xfa, 0xa0, 0xbe, 0xa6, - 0x8c, 0x8f, 0x18, 0xaf, 0x27, 0xcc, 0x3c, 0x4f, 0x1b, 0xb4, 0x57, 0x79, 0xc2, 0x24, 0x46, 0xea, - 0xb6, 0xbf, 0xdb, 0xd7, 0xf4, 0xf8, 0xab, 0x13, 0x70, 0xe9, 0x4d, 0xe7, 0x98, 0x7a, 0x91, 0x33, - 0xfc, 0x26, 0xf1, 0x0a, 0xcc, 0x38, 0x1d, 0x7e, 0x0f, 0x66, 0xe8, 0xf8, 0xb1, 0xe5, 0x24, 0x06, - 0xa1, 0x89, 0x17, 0x2f, 0x68, 0x22, 0x7f, 0x4b, 0xd6, 0x52, 0xb4, 0x9e, 0x82, 0x63, 0x4f, 0x0d, - 0x72, 0x1b, 0x88, 0x8c, 0x46, 0x2d, 0xd7, 0xeb, 0x7e, 0xd7, 0x13, 0x4b, 0x9a, 0x30, 0xaa, 0xe8, - 0xc3, 0xe6, 0x76, 0x0f, 0x06, 0x66, 0xd4, 0x22, 0x9f, 0x83, 0xe5, 0x3a, 0xa7, 0x2c, 0x8f, 0x1e, - 0x26, 0x45, 0x71, 0xfc, 0xd4, 0x71, 0x02, 0xeb, 0x7d, 0xf0, 0xb0, 0x2f, 0x05, 0x26, 0x69, 0x18, - 0xf9, 0x81, 0xd3, 0xa4, 0x26, 0xdd, 0xc9, 0xa4, 0xa4, 0xb5, 0x1e, 0x0c, 0xcc, 0xa8, 0x45, 0xbe, - 0x08, 0xc5, 0x68, 0x3f, 0xa0, 0xe1, 0xbe, 0xdf, 0x6a, 0x48, 0xbf, 0x85, 0x11, 0x2d, 0x6d, 0xb2, - 0xf7, 0x77, 0x14, 0x55, 0x63, 0x78, 0xab, 0x22, 0x8c, 0x79, 0x92, 0x00, 0x26, 0xc3, 0xba, 0xdf, - 0xa1, 0xa1, 0x54, 0xd9, 0x6f, 0xe7, 0xc2, 0x9d, 0x5b, 0x8e, 0x0c, 0x1b, 0x1f, 0xe7, 0x80, 0x92, - 0x93, 0xfd, 0xfb, 0x63, 0x30, 0x6b, 0x22, 0x0e, 0xb0, 0x36, 0x7d, 0xd9, 0x82, 0xd9, 0xba, 0xef, - 0x45, 0x81, 0xdf, 0x12, 0xf6, 0xab, 0x7c, 0x34, 0x0a, 0x46, 0x6a, 0x83, 0x46, 0x8e, 0xdb, 0x32, - 0x4c, 0x61, 0x06, 0x1b, 0x4c, 0x30, 0x25, 0x5f, 0xb3, 0x60, 0x3e, 0x76, 0x73, 0x8b, 0x0d, 0x69, - 0xb9, 0x0a, 0xa2, 0x97, 0xfa, 0x1b, 0x49, 0x4e, 0x98, 0x66, 0x6d, 0xef, 0xc2, 0x42, 0xba, 0xb7, - 0x59, 0x53, 0x76, 0x1c, 0x39, 0xd7, 0x0b, 0x71, 0x53, 0x56, 0x9d, 0x30, 0x44, 0x0e, 0x21, 0x2f, - 0xc0, 0x74, 0xdb, 0x09, 0x9a, 0xae, 0xe7, 0xb4, 0x78, 0x2b, 0x16, 0x8c, 0x05, 0x49, 0x96, 0xa3, - 0xc6, 0xb0, 0x3f, 0x0e, 0xb3, 0xdb, 0x8e, 0xd7, 0xa4, 0x0d, 0xb9, 0x0e, 0x3f, 0x3a, 0xa6, 0xed, - 0x07, 0xe3, 0x30, 0x63, 0x9c, 0xcd, 0x2e, 0xfe, 0x9c, 0x95, 0x48, 0xa9, 0x51, 0xc8, 0x31, 0xa5, - 0xc6, 0x67, 0x00, 0xf6, 0x5c, 0xcf, 0x0d, 0xf7, 0xcf, 0x99, 0xac, 0x83, 0xdf, 0xeb, 0xde, 0xd4, - 0x14, 0xd0, 0xa0, 0x16, 0x5f, 0x9e, 0x4d, 0x9c, 0x91, 0xc2, 0xe8, 0x43, 0xcb, 0xd8, 0x6e, 0x26, - 0xf3, 0x70, 0x16, 0x30, 0x3a, 0x66, 0x55, 0x6d, 0x3f, 0x37, 0xbc, 0x28, 0x38, 0x3e, 0x73, 0x57, - 0xda, 0x81, 0xe9, 0x80, 0x86, 0xdd, 0x36, 0x3b, 0x31, 0x4e, 0x0d, 0xdd, 0x0c, 0xdc, 0x6d, 0x03, - 0x65, 0x7d, 0xd4, 0x94, 0x56, 0x5e, 0x83, 0x4b, 0x09, 0x11, 0xc8, 0x02, 0x14, 0x0e, 0xe8, 0xb1, - 0x18, 0x27, 0xc8, 0x7e, 0x92, 0xa5, 0xc4, 0x15, 0xa3, 0x6c, 0x96, 0x4f, 0x8e, 0xbd, 0x6a, 0xd9, - 0x3e, 0x64, 0x1a, 0x00, 0xce, 0x73, 0x99, 0xc3, 0xfa, 0xa2, 0x65, 0x64, 0xeb, 0xd0, 0x7d, 0x21, - 0x9c, 0x73, 0x04, 0xcc, 0xfe, 0x8b, 0x49, 0x90, 0xf7, 0xdf, 0x03, 0x2c, 0x57, 0xe6, 0xad, 0xd7, - 0xd8, 0x39, 0x6e, 0xbd, 0x6e, 0xc3, 0xac, 0xeb, 0xb9, 0x91, 0xeb, 0xb4, 0xb8, 0x71, 0x47, 0x6e, - 0xa7, 0xca, 0x7b, 0x79, 0x76, 0xd3, 0x80, 0x65, 0xd0, 0x49, 0xd4, 0x25, 0x6f, 0xc3, 0x04, 0xdf, - 0x6f, 0xe4, 0x00, 0x1e, 0xfe, 0x92, 0x9e, 0xfb, 0x67, 0x88, 0x90, 0x26, 0x41, 0x89, 0x1f, 0x3e, - 0x44, 0xba, 0x12, 0x7d, 0xfc, 0x96, 0xe3, 0x38, 0x3e, 0x7c, 0xa4, 0xe0, 0xd8, 0x53, 0x83, 0x51, - 0xd9, 0x73, 0xdc, 0x56, 0x37, 0xa0, 0x31, 0x95, 0xc9, 0x24, 0x95, 0x9b, 0x29, 0x38, 0xf6, 0xd4, - 0x20, 0x7b, 0x30, 0x2b, 0xcb, 0x84, 0xcb, 0xd5, 0xd4, 0x39, 0xbf, 0x92, 0xbb, 0xd6, 0xdd, 0x34, - 0x28, 0x61, 0x82, 0x2e, 0xe9, 0xc2, 0xa2, 0xeb, 0xd5, 0x7d, 0xaf, 0xde, 0xea, 0x86, 0xee, 0x21, - 0x8d, 0xe3, 0x89, 0xce, 0xc3, 0xec, 0xca, 0xe9, 0x49, 0x69, 0x71, 0x33, 0x4d, 0x0e, 0x7b, 0x39, - 0x90, 0x2f, 0x59, 0x70, 0xa5, 0xee, 0x7b, 0x21, 0x8f, 0xff, 0x3f, 0xa4, 0x37, 0x82, 0xc0, 0x0f, - 0x04, 0xef, 0xe2, 0x39, 0x79, 0x73, 0x9b, 0xe2, 0x7a, 0x16, 0x49, 0xcc, 0xe6, 0x44, 0xde, 0x83, - 0xe9, 0x4e, 0xe0, 0x1f, 0xba, 0x0d, 0x1a, 0x48, 0xf7, 0xbd, 0xad, 0x3c, 0xf2, 0x91, 0x54, 0x25, - 0xcd, 0x78, 0xe9, 0x51, 0x25, 0xa8, 0xf9, 0xd9, 0xff, 0x77, 0x06, 0xe6, 0x92, 0xe8, 0xe4, 0xe7, - 0x01, 0x3a, 0x81, 0xdf, 0xa6, 0xd1, 0x3e, 0xd5, 0x71, 0x21, 0x77, 0x46, 0x4d, 0x7b, 0xa1, 0xe8, - 0x29, 0x97, 0x17, 0xb6, 0x5c, 0xc4, 0xa5, 0x68, 0x70, 0x24, 0x01, 0x4c, 0x1d, 0x88, 0x6d, 0x57, - 0x6a, 0x21, 0x6f, 0xe6, 0xa2, 0x33, 0x49, 0xce, 0x3c, 0xa0, 0x41, 0x16, 0xa1, 0x62, 0x44, 0x76, - 0xa1, 0x70, 0x44, 0x77, 0xf3, 0x89, 0xb9, 0xbe, 0x47, 0xe5, 0x69, 0xa6, 0x32, 0x75, 0x7a, 0x52, - 0x2a, 0xdc, 0xa3, 0xbb, 0xc8, 0x88, 0xb3, 0xef, 0x6a, 0x88, 0xbb, 0x7b, 0xb9, 0x54, 0x8c, 0xf8, - 0x5d, 0x09, 0x47, 0x00, 0xf1, 0x5d, 0xb2, 0x08, 0x15, 0x23, 0xf2, 0x1e, 0x14, 0x8f, 0x9c, 0x43, - 0xba, 0x17, 0xf8, 0x5e, 0x24, 0xfd, 0xac, 0x46, 0x0c, 0x15, 0xb8, 0xa7, 0xc8, 0x49, 0xbe, 0x7c, - 0x7b, 0xd7, 0x85, 0x18, 0xb3, 0x23, 0x87, 0x30, 0xed, 0xd1, 0x23, 0xa4, 0x2d, 0xb7, 0x9e, 0x8f, - 0x6b, 0xfe, 0x1d, 0x49, 0x4d, 0x72, 0xe6, 0xfb, 0x9e, 0x2a, 0x43, 0xcd, 0x8b, 0xf5, 0xe5, 0x7d, - 0x7f, 0x57, 0x2e, 0x54, 0x23, 0xf6, 0xa5, 0x3e, 0x99, 0x8a, 0xbe, 0xbc, 0xed, 0xef, 0x22, 0x23, - 0xce, 0xe6, 0x48, 0x5d, 0x3b, 0xf9, 0xc8, 0x65, 0xea, 0x4e, 0xbe, 0xce, 0x4d, 0x62, 0x8e, 0xc4, - 0xa5, 0x68, 0x70, 0x64, 0x6d, 0xdb, 0x94, 0xc6, 0x4a, 0xb9, 0x50, 0x8d, 0xd8, 0xb6, 0x49, 0xd3, - 0xa7, 0x68, 0x5b, 0x55, 0x86, 0x9a, 0x17, 0xe3, 0xeb, 0x4a, 0xcb, 0x5f, 0x3e, 0x4b, 0x55, 0xd2, - 0x8e, 0x28, 0xf8, 0xaa, 0x32, 0xd4, 0xbc, 0x58, 0x7b, 0x87, 0x07, 0xc7, 0x47, 0x4e, 0xeb, 0xc0, - 0xf5, 0x9a, 0x32, 0xce, 0x71, 0xd4, 0xfc, 0xa9, 0x07, 0xc7, 0xf7, 0x04, 0x3d, 0xb3, 0xbd, 0xe3, - 0x52, 0x34, 0x38, 0x92, 0x7f, 0x6a, 0xc1, 0x64, 0xa7, 0xd5, 0x6d, 0xba, 0xde, 0xf2, 0x2c, 0xd7, - 0x13, 0x3f, 0x9d, 0xe7, 0x0a, 0xbd, 0x5a, 0xe5, 0xa4, 0x85, 0xa2, 0xf8, 0x13, 0xda, 0x67, 0x8f, - 0x17, 0xfe, 0xe2, 0x9f, 0x95, 0x96, 0xa9, 0x57, 0xf7, 0x1b, 0xae, 0xd7, 0x5c, 0xbb, 0x1f, 0xfa, - 0xde, 0x2a, 0x3a, 0x47, 0x4a, 0x47, 0x97, 0x32, 0xad, 0xfc, 0x14, 0xcc, 0x18, 0x24, 0x1e, 0xa5, - 0xe8, 0xcd, 0x9a, 0x8a, 0xde, 0x6f, 0x4c, 0xc2, 0xac, 0x99, 0x51, 0x6f, 0x00, 0xed, 0x4b, 0x9f, - 0x38, 0xc6, 0x86, 0x39, 0x71, 0xb0, 0x23, 0xa6, 0x71, 0x7b, 0xa4, 0xcc, 0x5b, 0x9b, 0xb9, 0x29, - 0xdc, 0xf1, 0x11, 0xd3, 0x28, 0x0c, 0x31, 0xc1, 0x74, 0x08, 0x87, 0x12, 0xa6, 0xb6, 0x0a, 0xc5, - 0x6e, 0x22, 0xa9, 0xb6, 0x26, 0x54, 0xb5, 0x17, 0x01, 0xe2, 0xcc, 0x72, 0xf2, 0x56, 0x51, 0xeb, - 0xc3, 0x46, 0xc6, 0x3b, 0x03, 0x8b, 0x3c, 0x07, 0x93, 0x4c, 0xf5, 0xa1, 0x0d, 0x19, 0x86, 0xad, - 0xcf, 0xf1, 0x37, 0x79, 0x29, 0x4a, 0x28, 0x79, 0x95, 0x69, 0xa9, 0xb1, 0xc2, 0x22, 0xa3, 0xab, - 0x97, 0x62, 0x2d, 0x35, 0x86, 0x61, 0x02, 0x93, 0x89, 0x4e, 0x99, 0x7e, 0xc1, 0xd7, 0x06, 0x43, - 0x74, 0xae, 0x74, 0xa0, 0x80, 0x71, 0xbb, 0x52, 0x4a, 0x1f, 0xe1, 0x73, 0x7a, 0xc2, 0xb0, 0x2b, - 0xa5, 0xe0, 0xd8, 0x53, 0x83, 0x7d, 0x8c, 0xbc, 0x10, 0x9d, 0x11, 0xce, 0xb6, 0x7d, 0xae, 0x32, - 0xbf, 0x62, 0x9e, 0xb5, 0x72, 0x9c, 0x43, 0x62, 0xd4, 0x0e, 0x7e, 0xd8, 0x1a, 0xed, 0x58, 0xf4, - 0x79, 0x98, 0x4b, 0xee, 0x42, 0xb9, 0xdf, 0x7c, 0x7c, 0x75, 0x1c, 0x2e, 0xdf, 0x69, 0xba, 0x5e, - 0x3a, 0x5b, 0x54, 0x56, 0xd6, 0x66, 0x6b, 0xd8, 0xac, 0xcd, 0x71, 0x3c, 0x97, 0x4c, 0x8b, 0x9d, - 0x1d, 0xcf, 0xa5, 0x72, 0x66, 0x27, 0x71, 0xc9, 0x9f, 0x5a, 0xf0, 0xb4, 0xd3, 0x10, 0xe7, 0x02, - 0xa7, 0x25, 0x4b, 0x63, 0xa6, 0x6a, 0x46, 0x87, 0x23, 0xee, 0xf2, 0xbd, 0x1f, 0xbf, 0x5a, 0x3e, - 0x83, 0xab, 0xe8, 0xf1, 0x1f, 0x93, 0x5f, 0xf0, 0xf4, 0x59, 0xa8, 0x78, 0xa6, 0xf8, 0xe4, 0x6f, - 0xc3, 0x7c, 0xe2, 0x83, 0xa5, 0x25, 0xbc, 0x28, 0x2e, 0x2c, 0x6a, 0x49, 0x10, 0xa6, 0x71, 0x57, - 0xde, 0x82, 0x8f, 0x3e, 0x52, 0xce, 0xa1, 0x06, 0xdb, 0x97, 0x2d, 0x28, 0x0a, 0xbb, 0x36, 0xd2, - 0xbd, 0x94, 0x13, 0x66, 0xea, 0xe4, 0x5d, 0xae, 0x6e, 0x66, 0x38, 0x61, 0xb2, 0xb5, 0xfc, 0xc0, - 0xf5, 0x1a, 0xb2, 0x97, 0xf5, 0x5a, 0xfe, 0xa6, 0xeb, 0x35, 0x90, 0x43, 0xf4, 0x6a, 0x5f, 0xe8, - 0x6b, 0x6f, 0xfa, 0xb6, 0x05, 0x73, 0x3c, 0x06, 0x36, 0x3e, 0x13, 0xbe, 0xa2, 0x9d, 0x8d, 0x84, - 0x18, 0xd7, 0x92, 0xce, 0x46, 0x0f, 0x4f, 0x4a, 0x33, 0x22, 0x6a, 0x36, 0xe9, 0x7b, 0xf4, 0x59, - 0x69, 0x48, 0xe2, 0x2e, 0x51, 0x63, 0x43, 0xdb, 0x39, 0xb4, 0xa1, 0xb5, 0xa6, 0x88, 0x60, 0x4c, - 0xcf, 0x7e, 0x1f, 0x66, 0xcd, 0x60, 0x16, 0xf2, 0x0a, 0xcc, 0x74, 0x5c, 0xaf, 0x99, 0x0c, 0x7a, - 0xd4, 0xc6, 0xf6, 0x6a, 0x0c, 0x42, 0x13, 0x8f, 0x57, 0xf3, 0xe3, 0x6a, 0x29, 0x1b, 0x7d, 0xd5, - 0x37, 0xab, 0xc5, 0x7f, 0xec, 0x7f, 0x55, 0x80, 0xcb, 0x19, 0x41, 0x53, 0xe4, 0x43, 0x0b, 0x26, - 0x79, 0xcc, 0x85, 0x72, 0x27, 0x7a, 0x37, 0xf7, 0xc0, 0xac, 0x55, 0x1e, 0xda, 0x21, 0xa7, 0x81, - 0x5e, 0x7d, 0x45, 0x21, 0x4a, 0xe6, 0xe4, 0x1f, 0x5b, 0x30, 0xe3, 0x18, 0x33, 0x55, 0x78, 0x58, - 0xed, 0xe6, 0x2f, 0x4c, 0xcf, 0xc4, 0x34, 0x3c, 0x43, 0xe3, 0x79, 0x68, 0xca, 0xc2, 0x94, 0x17, - 0xe3, 0x13, 0x86, 0x99, 0x21, 0x2b, 0xaf, 0xc3, 0xc2, 0x48, 0x33, 0xec, 0xa7, 0x61, 0xd8, 0xe4, - 0x8a, 0x6c, 0xbf, 0x3b, 0x32, 0x03, 0xd3, 0x75, 0x8b, 0xcb, 0xc8, 0x74, 0x09, 0xb5, 0x77, 0x61, - 0x21, 0x7d, 0xea, 0xcd, 0xdd, 0xa1, 0xe0, 0xe3, 0x30, 0x64, 0x3a, 0x44, 0xfb, 0x06, 0x10, 0xf4, - 0x5b, 0xad, 0x5d, 0xa7, 0x7e, 0x70, 0xcf, 0xf5, 0x1a, 0xfe, 0x11, 0x9f, 0x2b, 0x6b, 0x50, 0x0c, - 0x64, 0x4c, 0x5c, 0x28, 0x3f, 0x4b, 0x4f, 0x36, 0x15, 0x2c, 0x17, 0x62, 0x8c, 0x63, 0xff, 0xe1, - 0x18, 0x4c, 0xc9, 0x00, 0xce, 0xc7, 0xe0, 0x9b, 0x7d, 0x90, 0xb8, 0xb4, 0xdb, 0xcc, 0x25, 0xee, - 0xb4, 0xaf, 0x63, 0x76, 0x98, 0x72, 0xcc, 0x7e, 0x33, 0x1f, 0x76, 0x67, 0x7b, 0x65, 0x7f, 0x7b, - 0x1c, 0xe6, 0x53, 0x01, 0xb1, 0x4c, 0x61, 0xea, 0x71, 0x46, 0xbc, 0x9b, 0x6b, 0xcc, 0xad, 0x0e, - 0x36, 0x38, 0xdb, 0x2f, 0x31, 0x4c, 0x24, 0xaf, 0x7d, 0x3b, 0xb7, 0xbc, 0xf7, 0x7f, 0x9d, 0xc7, - 0x76, 0x58, 0x3f, 0xbb, 0xff, 0x6a, 0xc1, 0x93, 0x7d, 0xe3, 0xa6, 0x79, 0xda, 0x9d, 0x20, 0x09, - 0x95, 0x13, 0x32, 0xe7, 0xec, 0x10, 0xfa, 0x06, 0x2d, 0x9d, 0x29, 0x25, 0xcd, 0x9e, 0xbc, 0x0c, - 0xb3, 0x7c, 0x87, 0x66, 0x4b, 0x53, 0x44, 0x3b, 0xf2, 0x02, 0x80, 0x9b, 0x82, 0x6b, 0x46, 0x39, - 0x26, 0xb0, 0xec, 0x6f, 0x59, 0xb0, 0xdc, 0x2f, 0x09, 0xcb, 0x00, 0xc7, 0xd3, 0xbf, 0x95, 0x72, - 0x1e, 0x2f, 0xf5, 0x38, 0x8f, 0xa7, 0x0e, 0xa8, 0xca, 0x4f, 0xdc, 0x38, 0x1b, 0x16, 0x1e, 0xe1, - 0x1b, 0xfd, 0x75, 0x0b, 0xae, 0xf6, 0x99, 0x4d, 0x3d, 0x41, 0x04, 0xd6, 0xb9, 0x83, 0x08, 0xc6, - 0x06, 0x0d, 0x22, 0xb0, 0xff, 0xa8, 0x00, 0x0b, 0x52, 0x9e, 0x58, 0x4d, 0x7b, 0x35, 0xe1, 0x82, - 0xff, 0x63, 0x29, 0x17, 0xfc, 0xa5, 0x34, 0xfe, 0x5f, 0xfb, 0xdf, 0xff, 0x68, 0xf9, 0xdf, 0xff, - 0xe5, 0x18, 0x5c, 0xc9, 0xcc, 0x0d, 0x43, 0xbe, 0x9a, 0xb1, 0x35, 0xdc, 0xcb, 0x39, 0x09, 0xcd, - 0x80, 0x9b, 0xc3, 0xa8, 0x4e, 0xeb, 0xbf, 0x62, 0x3a, 0x8b, 0x8b, 0xa5, 0x7e, 0xef, 0x02, 0xd2, - 0xe9, 0x0c, 0xe9, 0x37, 0x6e, 0xff, 0x62, 0x01, 0x9e, 0x1f, 0x94, 0xd0, 0x8f, 0x68, 0x5c, 0x51, - 0x98, 0x88, 0x2b, 0x7a, 0x4c, 0xdb, 0xf6, 0x85, 0x84, 0x18, 0xfd, 0xf3, 0x71, 0xbd, 0xed, 0xf5, - 0x8e, 0xcf, 0x81, 0x6e, 0x8b, 0xa7, 0x98, 0x6a, 0xa7, 0xf2, 0xcb, 0xc6, 0x4b, 0xe1, 0x54, 0x4d, - 0x14, 0x3f, 0x3c, 0x29, 0x2d, 0xc6, 0x19, 0x0a, 0x64, 0x21, 0xaa, 0x4a, 0xe4, 0x79, 0x98, 0x0e, - 0x04, 0x54, 0x45, 0x52, 0xc8, 0x2b, 0x77, 0x51, 0x86, 0x1a, 0x4a, 0xbe, 0x68, 0xe8, 0xc2, 0xe3, - 0x17, 0x95, 0x88, 0xe3, 0x2c, 0x4f, 0x82, 0x77, 0x61, 0x3a, 0x54, 0xb9, 0x5f, 0xc5, 0x75, 0xcf, - 0x4b, 0x03, 0x06, 0xe8, 0xb0, 0x13, 0x98, 0x4a, 0x04, 0x2b, 0xbe, 0x4f, 0xa7, 0x89, 0xd5, 0x24, - 0x89, 0xad, 0x0f, 0x3f, 0xc2, 0xd2, 0x09, 0xbd, 0x07, 0x1f, 0x12, 0xc1, 0x94, 0x7c, 0x37, 0x4d, - 0x5e, 0xc1, 0x6c, 0xe7, 0xe4, 0x8c, 0x2f, 0x5d, 0x35, 0xf9, 0x45, 0x97, 0x3a, 0x84, 0x2b, 0x56, - 0xf6, 0xf7, 0x2c, 0x98, 0x91, 0x63, 0xe4, 0x31, 0x44, 0x2a, 0xdd, 0x4f, 0x46, 0x2a, 0xdd, 0xc8, - 0x65, 0xc5, 0xea, 0x13, 0xa6, 0x74, 0x1f, 0x66, 0xcd, 0xa4, 0x64, 0xe4, 0x33, 0xc6, 0x8a, 0x6b, - 0x8d, 0x92, 0xe6, 0x47, 0xad, 0xc9, 0xf1, 0x6a, 0x6c, 0xff, 0x66, 0x51, 0xb7, 0x22, 0x3f, 0x18, - 0x9a, 0x23, 0xdf, 0x3a, 0x73, 0xe4, 0x9b, 0x03, 0x6f, 0x2c, 0xff, 0x81, 0xf7, 0x36, 0x4c, 0xab, - 0x65, 0x51, 0x2a, 0x0f, 0xcf, 0x9a, 0xbe, 0x9b, 0x4c, 0x03, 0x61, 0xc4, 0x8c, 0xe9, 0xc2, 0x0f, - 0x78, 0xba, 0x0f, 0xf5, 0x72, 0xad, 0xc9, 0x90, 0xf7, 0x60, 0xe6, 0xc8, 0x0f, 0x0e, 0x5a, 0xbe, - 0xc3, 0x33, 0x4f, 0x43, 0x1e, 0xd7, 0x85, 0xda, 0x5a, 0x27, 0x1c, 0xe8, 0xef, 0xc5, 0xf4, 0xd1, - 0x64, 0x46, 0xca, 0x30, 0xdf, 0x76, 0x3d, 0xa4, 0x4e, 0x43, 0x07, 0x24, 0x8d, 0x8b, 0x64, 0xb7, - 0x4a, 0xb5, 0xde, 0x4e, 0x82, 0x31, 0x8d, 0x4f, 0xbe, 0x66, 0xc1, 0x5c, 0x90, 0x38, 0xca, 0xcb, - 0x8c, 0x96, 0xd5, 0xd1, 0x07, 0x63, 0xd2, 0x3c, 0x20, 0x3c, 0xc8, 0x93, 0xe5, 0x98, 0xe2, 0x4d, - 0xbe, 0x00, 0xd3, 0xa1, 0xcc, 0x38, 0x96, 0xcf, 0x3d, 0xb3, 0x3e, 0x38, 0x0b, 0xa2, 0x71, 0x57, - 0xaa, 0x12, 0xd4, 0x0c, 0xc9, 0x16, 0x2c, 0x29, 0xdb, 0x44, 0xe2, 0x75, 0xa0, 0xc9, 0x38, 0x41, - 0x0d, 0x66, 0xc0, 0x31, 0xb3, 0x16, 0x53, 0xe5, 0x78, 0xb2, 0x3f, 0x71, 0x3d, 0x63, 0xdc, 0x68, - 0xf0, 0xf9, 0xd7, 0x40, 0x09, 0x3d, 0x2b, 0xde, 0x6e, 0x7a, 0x84, 0x78, 0xbb, 0x1a, 0x5c, 0x49, - 0x83, 0x78, 0xe6, 0x21, 0x9e, 0xec, 0xc8, 0xd8, 0x42, 0xab, 0x59, 0x48, 0x98, 0x5d, 0x97, 0xdc, - 0x83, 0x62, 0x40, 0xf9, 0x21, 0xab, 0xac, 0x3c, 0x5b, 0x86, 0xf6, 0xe1, 0x43, 0x45, 0x00, 0x63, - 0x5a, 0xac, 0xdf, 0x9d, 0x64, 0xfa, 0xd9, 0xb7, 0x73, 0x7c, 0xdf, 0x50, 0xf6, 0x7d, 0x9f, 0x8c, - 0x60, 0xf6, 0xf7, 0xe7, 0xe0, 0x52, 0xc2, 0xc0, 0x42, 0x9e, 0x85, 0x09, 0x9e, 0x8a, 0x89, 0xaf, - 0x56, 0xd3, 0xf1, 0x8a, 0x2a, 0x1a, 0x47, 0xc0, 0xc8, 0x2f, 0x59, 0x30, 0xdf, 0x49, 0x58, 0xb4, - 0xd5, 0x42, 0x3e, 0xe2, 0x65, 0x76, 0xd2, 0x4c, 0x6e, 0x24, 0x6e, 0x4f, 0x32, 0xc3, 0x34, 0x77, - 0xb6, 0x1e, 0x48, 0x47, 0xd8, 0x16, 0x0d, 0x38, 0xb6, 0x54, 0xf4, 0x34, 0x89, 0xf5, 0x24, 0x18, - 0xd3, 0xf8, 0xac, 0x87, 0xf9, 0xd7, 0x8d, 0xf2, 0xf0, 0x59, 0x59, 0x11, 0xc0, 0x98, 0x16, 0x79, - 0x1d, 0xe6, 0x64, 0xd6, 0xd1, 0xaa, 0xdf, 0xb8, 0xe5, 0x84, 0xfb, 0xf2, 0x84, 0xa3, 0x4f, 0x64, - 0xeb, 0x09, 0x28, 0xa6, 0xb0, 0xf9, 0xb7, 0xc5, 0xa9, 0x5d, 0x39, 0x81, 0xc9, 0x64, 0x5e, 0xfb, - 0xf5, 0x24, 0x18, 0xd3, 0xf8, 0xe4, 0x05, 0x63, 0x1b, 0x12, 0x57, 0xa6, 0x7a, 0x35, 0xc8, 0xd8, - 0x8a, 0xca, 0x30, 0xdf, 0xe5, 0x07, 0xc2, 0x86, 0x02, 0xca, 0xf9, 0xa8, 0x19, 0xde, 0x4d, 0x82, - 0x31, 0x8d, 0x4f, 0x5e, 0x83, 0x4b, 0x01, 0x5b, 0x6c, 0x35, 0x01, 0x71, 0x8f, 0xaa, 0xaf, 0xc9, - 0xd0, 0x04, 0x62, 0x12, 0x97, 0xbc, 0x01, 0x8b, 0x71, 0x92, 0x3e, 0x45, 0x40, 0x5c, 0xac, 0xea, - 0x8c, 0x51, 0xe5, 0x34, 0x02, 0xf6, 0xd6, 0x21, 0x7f, 0x17, 0x16, 0x8c, 0x96, 0xd8, 0xf4, 0x1a, - 0xf4, 0x81, 0x4c, 0xa4, 0xc6, 0x1f, 0x2c, 0x59, 0x4f, 0xc1, 0xb0, 0x07, 0x9b, 0x7c, 0x12, 0xe6, - 0xea, 0x7e, 0xab, 0xc5, 0xd7, 0x38, 0x91, 0x53, 0x5d, 0x64, 0x4c, 0x13, 0xb9, 0xe5, 0x12, 0x10, - 0x4c, 0x61, 0x92, 0xdb, 0x40, 0xfc, 0x5d, 0xa6, 0x5e, 0xd1, 0xc6, 0x1b, 0xe2, 0x29, 0x65, 0xa6, - 0x71, 0x5c, 0x4a, 0xba, 0xe1, 0xbf, 0xd5, 0x83, 0x81, 0x19, 0xb5, 0x78, 0xc2, 0x29, 0x23, 0x6c, - 0x71, 0x2e, 0x8f, 0x47, 0xc0, 0xd2, 0xe6, 0x8b, 0x47, 0xc6, 0x2c, 0x06, 0x30, 0x29, 0xa2, 0x22, - 0xf2, 0x49, 0x9d, 0x66, 0xa6, 0x57, 0x8e, 0xf7, 0x08, 0x51, 0x8a, 0x92, 0x13, 0xf9, 0x79, 0x28, - 0xee, 0xaa, 0x5c, 0xfb, 0x3c, 0x5f, 0xda, 0xc8, 0xfb, 0x62, 0xea, 0xd9, 0x88, 0xf8, 0x78, 0xae, - 0x01, 0x18, 0xb3, 0x24, 0xcf, 0xc1, 0xcc, 0xad, 0x6a, 0x59, 0x8f, 0xc2, 0x45, 0xde, 0xfb, 0xe3, - 0xac, 0x0a, 0x9a, 0x00, 0x36, 0xc3, 0xb4, 0xfa, 0x46, 0x92, 0xcf, 0x57, 0x64, 0x68, 0x63, 0x0c, - 0x9b, 0x5f, 0x7e, 0x62, 0x6d, 0xf9, 0x72, 0x0a, 0x5b, 0x96, 0xa3, 0xc6, 0x20, 0xef, 0xc2, 0x8c, - 0xdc, 0x2f, 0xf8, 0xda, 0xb4, 0x74, 0xbe, 0x90, 0x58, 0x8c, 0x49, 0xa0, 0x49, 0x8f, 0xdf, 0xd8, - 0xf1, 0x14, 0xe4, 0xf4, 0x66, 0xb7, 0xd5, 0x5a, 0xbe, 0xc2, 0xd7, 0xcd, 0xf8, 0xc6, 0x2e, 0x06, - 0xa1, 0x89, 0x47, 0x5e, 0x52, 0x4e, 0x2c, 0x1f, 0x49, 0x5c, 0x61, 0x6a, 0x27, 0x16, 0xad, 0x74, - 0xf7, 0xf1, 0x9a, 0xbf, 0xfa, 0x08, 0xef, 0x91, 0x5d, 0x58, 0x51, 0x1a, 0x5f, 0xef, 0x24, 0x59, - 0x5e, 0x4e, 0x98, 0x4a, 0x56, 0xee, 0xf5, 0xc5, 0xc4, 0x33, 0xa8, 0x90, 0x5d, 0x28, 0x38, 0xad, - 0xdd, 0xe5, 0x27, 0xf3, 0x50, 0x5d, 0xf5, 0xd3, 0xe8, 0xc2, 0xd3, 0xad, 0xbc, 0x55, 0x41, 0x46, - 0xdc, 0xfe, 0xd2, 0x98, 0xbe, 0x9a, 0xd0, 0x29, 0x65, 0xdf, 0x37, 0x47, 0xb5, 0x95, 0xc7, 0xd3, - 0xbf, 0x3d, 0x0f, 0x52, 0x88, 0x0d, 0x29, 0x73, 0x4c, 0x77, 0xf4, 0x3c, 0xce, 0x25, 0x59, 0x4f, - 0x32, 0x5d, 0xae, 0x38, 0xd2, 0x26, 0x67, 0xb1, 0xfd, 0x3b, 0xa0, 0x2d, 0x71, 0x29, 0xaf, 0x8c, - 0x00, 0x26, 0xdc, 0x30, 0x72, 0xfd, 0x1c, 0xc3, 0x37, 0x53, 0x79, 0x66, 0xb9, 0x77, 0x38, 0x07, - 0xa0, 0x60, 0xc5, 0x78, 0x7a, 0x4d, 0xd7, 0x7b, 0x20, 0x3f, 0xff, 0xed, 0xdc, 0xdd, 0x2d, 0x04, - 0x4f, 0x0e, 0x40, 0xc1, 0x8a, 0xdc, 0x17, 0x23, 0x2d, 0x9f, 0x67, 0x9e, 0xd3, 0xaf, 0xb7, 0x27, - 0x47, 0x1c, 0xe3, 0x15, 0xb6, 0x5d, 0xa9, 0xc3, 0x8c, 0xc8, 0xab, 0xb6, 0xbd, 0x99, 0xc5, 0xab, - 0xb6, 0xbd, 0x89, 0x8c, 0x09, 0xf9, 0x8a, 0x05, 0xe0, 0xe8, 0x67, 0xcc, 0xf3, 0x79, 0xbd, 0xa5, - 0xdf, 0xb3, 0xe8, 0xc2, 0xc1, 0x30, 0x86, 0xa2, 0xc1, 0x99, 0xbc, 0x07, 0x53, 0x8e, 0x78, 0xa9, - 0x4a, 0xfa, 0xca, 0xe6, 0xf3, 0xfc, 0x5a, 0x4a, 0x02, 0x6e, 0x3b, 0x91, 0x20, 0x54, 0x0c, 0x19, - 0xef, 0x28, 0x70, 0xe8, 0x9e, 0x7b, 0x20, 0x2d, 0x36, 0xb5, 0x91, 0x53, 0xc8, 0x33, 0x62, 0x59, - 0xbc, 0x25, 0x08, 0x15, 0x43, 0xf1, 0x72, 0xb0, 0xe3, 0x39, 0x3a, 0x02, 0x2a, 0x9f, 0x38, 0x39, - 0x33, 0xa6, 0xca, 0x78, 0x39, 0xd8, 0x64, 0x84, 0x49, 0xbe, 0xe4, 0x10, 0x26, 0x1d, 0xfe, 0x86, - 0x9e, 0x3c, 0x1f, 0x61, 0x1e, 0xef, 0xf1, 0xa5, 0xda, 0x80, 0x2f, 0x2e, 0xf2, 0xa5, 0x3e, 0xc9, - 0x8d, 0xfc, 0x9a, 0x05, 0x53, 0xc2, 0x8d, 0x93, 0x69, 0x89, 0xec, 0xdb, 0x3f, 0x7f, 0x01, 0xf9, - 0xaa, 0xa5, 0x8b, 0xa9, 0x74, 0xca, 0xf8, 0x49, 0xed, 0xa3, 0x26, 0x4a, 0xcf, 0x74, 0x32, 0x55, - 0xd2, 0xad, 0x7c, 0x12, 0x66, 0x4d, 0x2a, 0x43, 0xb9, 0x99, 0xfe, 0x79, 0x01, 0x80, 0x37, 0xb4, - 0xc8, 0x79, 0xd0, 0xe6, 0xc9, 0x35, 0xf7, 0xfd, 0x46, 0x3e, 0x8f, 0x1f, 0x9a, 0xa9, 0x0b, 0x40, - 0x66, 0xd2, 0xdc, 0xf7, 0x1b, 0x28, 0x99, 0x90, 0x26, 0x8c, 0x77, 0x9c, 0x68, 0x3f, 0xff, 0x3c, - 0x09, 0xd3, 0x22, 0xf8, 0x2f, 0xda, 0x47, 0xce, 0x80, 0x7c, 0x60, 0xc1, 0x94, 0xc8, 0x94, 0xa0, - 0x6e, 0x33, 0x46, 0xbe, 0xb2, 0x57, 0x6d, 0xb6, 0x2a, 0xd2, 0x31, 0xc8, 0x1e, 0xd4, 0x8a, 0x87, - 0x2c, 0x45, 0xc5, 0x76, 0xe5, 0x43, 0x0b, 0x66, 0x4d, 0xd4, 0x8c, 0x6e, 0xfa, 0x59, 0xb3, 0x9b, - 0xf2, 0x6c, 0x0f, 0xb3, 0xc7, 0xff, 0x87, 0x05, 0xc6, 0x6b, 0xd6, 0xb1, 0x37, 0xad, 0x35, 0xb0, - 0x37, 0xed, 0xd8, 0x90, 0xde, 0xb4, 0x85, 0xa1, 0xbc, 0x69, 0xc7, 0x87, 0xf7, 0xa6, 0x9d, 0xe8, - 0xef, 0x4d, 0x6b, 0x7f, 0xc3, 0x82, 0xc5, 0x9e, 0xdd, 0x86, 0x29, 0xa7, 0x81, 0xef, 0x47, 0x7d, - 0xbc, 0xd0, 0x30, 0x06, 0xa1, 0x89, 0x47, 0x36, 0x60, 0x41, 0xa6, 0x92, 0xaf, 0x75, 0x5a, 0x6e, - 0x66, 0x0e, 0x8b, 0x9d, 0x14, 0x1c, 0x7b, 0x6a, 0xd8, 0xbf, 0x63, 0xc1, 0x8c, 0x11, 0xf9, 0xca, - 0xbe, 0x83, 0x47, 0x08, 0x4b, 0x31, 0xe2, 0x2c, 0xfa, 0xfc, 0xf6, 0x48, 0xc0, 0xc4, 0x45, 0x66, - 0xd3, 0x48, 0x34, 0x1c, 0x5f, 0x64, 0xb2, 0x52, 0x94, 0x50, 0x91, 0x42, 0x96, 0x76, 0x78, 0xa3, - 0x17, 0xcc, 0x14, 0xb2, 0xb4, 0x83, 0x1c, 0xc2, 0xd9, 0x31, 0x2d, 0x5d, 0x3a, 0x5a, 0x1b, 0x49, - 0xfb, 0x9d, 0x20, 0x42, 0x01, 0x23, 0xd7, 0xa0, 0x40, 0xbd, 0x86, 0x34, 0x29, 0xe8, 0x67, 0xf5, - 0x6e, 0x78, 0x0d, 0x64, 0xe5, 0xf6, 0x5b, 0x30, 0x5b, 0xa3, 0xf5, 0x80, 0x46, 0x6f, 0xd2, 0xe3, - 0x81, 0xdf, 0xe9, 0x63, 0xa3, 0x3d, 0xf5, 0x4e, 0x1f, 0xab, 0xce, 0xca, 0xed, 0x7f, 0x69, 0x41, - 0xea, 0x65, 0x09, 0xe3, 0x52, 0xc3, 0xea, 0x7b, 0xa9, 0x61, 0x1a, 0xc2, 0xc7, 0xce, 0x34, 0x84, - 0xdf, 0x06, 0xd2, 0x66, 0x53, 0x21, 0xf1, 0x8e, 0x8a, 0xb4, 0xe6, 0xc4, 0x71, 0xf6, 0x3d, 0x18, - 0x98, 0x51, 0xcb, 0xfe, 0x17, 0x42, 0x58, 0xf3, 0xad, 0x89, 0x47, 0x37, 0x40, 0x17, 0x26, 0x38, - 0x29, 0x69, 0xd2, 0x1a, 0xd1, 0x1c, 0xdc, 0x9b, 0xaf, 0x26, 0xee, 0x48, 0x39, 0xe5, 0x39, 0x37, - 0xfb, 0x8f, 0x84, 0xac, 0xc6, 0x63, 0x14, 0x03, 0xc8, 0xda, 0x4e, 0xca, 0x7a, 0x2b, 0xaf, 0xb5, - 0x32, 0x5b, 0x46, 0xb2, 0x0a, 0xd0, 0xa1, 0x41, 0x9d, 0x7a, 0x91, 0xf2, 0xff, 0x9f, 0x90, 0x91, - 0x68, 0xba, 0x14, 0x0d, 0x0c, 0xfb, 0x57, 0x2d, 0x58, 0x48, 0x87, 0x89, 0xe4, 0xed, 0xc4, 0x97, - 0x88, 0x65, 0x2d, 0x0c, 0x1f, 0xcb, 0x6a, 0x7f, 0xc0, 0x84, 0x8c, 0xdc, 0xfa, 0x81, 0xeb, 0x89, - 0xf0, 0xcf, 0x3d, 0xb7, 0xc9, 0x84, 0xa4, 0xf2, 0xe5, 0x3b, 0x61, 0x09, 0xd5, 0x42, 0xaa, 0x07, - 0xef, 0x14, 0x9c, 0x94, 0x61, 0x5e, 0xdd, 0xff, 0x28, 0xf3, 0xb5, 0x08, 0x5b, 0xd7, 0xe6, 0xb2, - 0x8d, 0x24, 0x18, 0xd3, 0xf8, 0xf6, 0x17, 0x61, 0xc6, 0xd8, 0x04, 0xf8, 0x7a, 0xf9, 0xc0, 0xa9, - 0x47, 0xe9, 0x75, 0xe6, 0x06, 0x2b, 0x44, 0x01, 0xe3, 0x56, 0x76, 0xe1, 0xc5, 0x9e, 0x5a, 0x67, - 0xa4, 0xef, 0xba, 0x84, 0x32, 0x62, 0x01, 0x6d, 0xd2, 0x07, 0x2a, 0xef, 0xb2, 0x22, 0x86, 0xac, - 0x10, 0x05, 0xcc, 0x7e, 0x01, 0xa6, 0x55, 0x72, 0x11, 0x1e, 0xa1, 0xaf, 0x2c, 0xc0, 0x66, 0x84, - 0xbe, 0x1f, 0x44, 0xc8, 0x21, 0xf6, 0x3b, 0x30, 0xad, 0x72, 0xa0, 0x3c, 0x1a, 0x9b, 0x4d, 0xfd, - 0xd0, 0x73, 0x6f, 0xf9, 0x61, 0xa4, 0x12, 0xb7, 0x88, 0x4b, 0xaa, 0x3b, 0x9b, 0xbc, 0x0c, 0x35, - 0xd4, 0x7e, 0x09, 0xe6, 0x53, 0x97, 0x95, 0x03, 0x84, 0xf3, 0xff, 0x7e, 0x01, 0x66, 0x13, 0x8f, - 0xd3, 0x3f, 0x7a, 0xd6, 0x0c, 0xbe, 0x18, 0x65, 0xdc, 0x33, 0x15, 0x86, 0xbc, 0x67, 0x32, 0x2f, - 0xf6, 0xc6, 0x2f, 0xf6, 0x62, 0x6f, 0x22, 0x9f, 0x8b, 0x3d, 0xe3, 0x02, 0x7a, 0xf2, 0xf1, 0x5d, - 0x40, 0xff, 0xf6, 0x04, 0xcc, 0x25, 0xf3, 0xc3, 0x0d, 0xd0, 0x93, 0x2f, 0xf4, 0xf4, 0xe4, 0x90, - 0x86, 0xed, 0xc2, 0xa8, 0x86, 0xed, 0xf1, 0x51, 0x0d, 0xdb, 0x13, 0xe7, 0x30, 0x6c, 0xf7, 0x9a, - 0xa5, 0x27, 0x07, 0x36, 0x4b, 0x7f, 0x4a, 0xbb, 0xa6, 0x4d, 0x25, 0x7c, 0x39, 0x62, 0xd7, 0x34, - 0x92, 0xec, 0x86, 0x75, 0xbf, 0x91, 0xe9, 0xe2, 0x37, 0xfd, 0x08, 0x03, 0x5e, 0x90, 0xe9, 0x49, - 0x36, 0xfc, 0xdd, 0xd9, 0x47, 0x86, 0xf0, 0x22, 0x7b, 0x05, 0x66, 0xe4, 0x78, 0xe2, 0x2a, 0x1f, - 0x24, 0xd5, 0xc5, 0x5a, 0x0c, 0x42, 0x13, 0x8f, 0x3f, 0x1d, 0x9c, 0x7c, 0x59, 0x99, 0xdf, 0x13, - 0x98, 0x4f, 0x07, 0xa7, 0x5e, 0x62, 0x4e, 0xe3, 0xdb, 0x5f, 0x80, 0x2b, 0x99, 0xc7, 0x76, 0x6e, - 0xc7, 0xe4, 0xda, 0x08, 0x6d, 0x48, 0x04, 0x43, 0x8c, 0x54, 0xca, 0xf1, 0x95, 0x7b, 0x7d, 0x31, - 0xf1, 0x0c, 0x2a, 0xf6, 0x6f, 0x15, 0x60, 0x2e, 0xf9, 0xee, 0x1c, 0x39, 0xd2, 0x46, 0xbe, 0x5c, - 0xec, 0x8b, 0x82, 0xac, 0x91, 0x73, 0xac, 0xaf, 0xc5, 0xfe, 0x88, 0x8f, 0xaf, 0x5d, 0x9d, 0x00, - 0xed, 0xe2, 0x18, 0x4b, 0x53, 0xb9, 0x64, 0xc7, 0x9f, 0x96, 0x8b, 0xc3, 0x93, 0xe4, 0xe9, 0x31, - 0x77, 0xee, 0x71, 0xc4, 0x90, 0x66, 0x85, 0x06, 0x5b, 0xb6, 0xb7, 0x1c, 0xd2, 0xc0, 0xdd, 0x73, - 0xf5, 0x9b, 0xb9, 0x7c, 0xe5, 0x7e, 0x47, 0x96, 0xa1, 0x86, 0xda, 0x1f, 0x8c, 0x41, 0xfc, 0x9e, - 0x38, 0x7f, 0x9c, 0x29, 0x34, 0x34, 0x75, 0xd9, 0x6d, 0xb7, 0x47, 0x7d, 0x01, 0x2d, 0xa6, 0x28, - 0xdd, 0x86, 0x8d, 0x12, 0x4c, 0x70, 0xfc, 0x21, 0xbc, 0x23, 0xee, 0xc0, 0x7c, 0x2a, 0x1c, 0x3e, - 0xf7, 0x10, 0x8f, 0x1f, 0x14, 0xa0, 0xa8, 0x13, 0x0a, 0x90, 0x9f, 0x4a, 0x98, 0x4d, 0x8a, 0x95, - 0x8f, 0x1a, 0x2f, 0x87, 0xec, 0xfb, 0x8d, 0x87, 0x27, 0xa5, 0x79, 0x8d, 0x9c, 0x32, 0x81, 0x5c, - 0x83, 0x42, 0x37, 0x68, 0xa5, 0xcf, 0x45, 0x77, 0x71, 0x0b, 0x59, 0x39, 0x79, 0x90, 0xb6, 0x5b, - 0x6c, 0xe7, 0x94, 0x04, 0x41, 0x1c, 0x20, 0xfa, 0xdb, 0x2b, 0xd8, 0x2e, 0xb9, 0xeb, 0x37, 0x8e, - 0xd3, 0x2f, 0x8d, 0x54, 0xfc, 0xc6, 0x31, 0x72, 0x08, 0x79, 0x1d, 0xe6, 0x22, 0xb7, 0x4d, 0xfd, - 0x6e, 0x64, 0xbe, 0xbf, 0x5c, 0x88, 0x6f, 0xa0, 0x77, 0x12, 0x50, 0x4c, 0x61, 0xb3, 0x5d, 0xf6, - 0x7e, 0xe8, 0x7b, 0x3c, 0x13, 0xe8, 0x64, 0xf2, 0xba, 0xea, 0x76, 0xed, 0xad, 0x3b, 0xdc, 0x7c, - 0xa3, 0x31, 0x18, 0xb6, 0xcb, 0x63, 0x5c, 0x03, 0x2a, 0x1d, 0x40, 0x16, 0x62, 0x7d, 0x5c, 0x94, - 0xa3, 0xc6, 0x20, 0x1b, 0x82, 0x36, 0x93, 0x96, 0xef, 0x28, 0xb3, 0x95, 0xe7, 0x15, 0x5d, 0x56, - 0xf6, 0xf0, 0xe4, 0x0c, 0xc3, 0x9a, 0xae, 0x69, 0xdf, 0x85, 0xf9, 0x54, 0x83, 0xa9, 0x73, 0xac, - 0x95, 0x7d, 0x8e, 0x1d, 0xec, 0x71, 0x90, 0x7f, 0x6d, 0xc1, 0x62, 0xcf, 0x12, 0x30, 0x68, 0x04, - 0x53, 0x7a, 0x33, 0x1a, 0x3b, 0xff, 0x66, 0x54, 0x18, 0x6e, 0x33, 0xaa, 0xec, 0x7e, 0xe7, 0xfb, - 0xd7, 0x9f, 0xf8, 0xee, 0xf7, 0xaf, 0x3f, 0xf1, 0xc7, 0xdf, 0xbf, 0xfe, 0xc4, 0x07, 0xa7, 0xd7, - 0xad, 0xef, 0x9c, 0x5e, 0xb7, 0xbe, 0x7b, 0x7a, 0xdd, 0xfa, 0xe3, 0xd3, 0xeb, 0xd6, 0x7f, 0x39, - 0xbd, 0x6e, 0x7d, 0xe3, 0x07, 0xd7, 0x9f, 0xf8, 0xcc, 0xa7, 0xe2, 0x01, 0xba, 0xa6, 0x06, 0x28, - 0xff, 0xf1, 0x31, 0x35, 0x1c, 0xd7, 0x3a, 0x07, 0xcd, 0x35, 0x36, 0x40, 0xd7, 0x74, 0x89, 0x1a, - 0xa0, 0xff, 0x2f, 0x00, 0x00, 0xff, 0xff, 0xc3, 0x76, 0xad, 0x47, 0xe7, 0x99, 0x00, 0x00, + // 8026 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x6d, 0x6c, 0x24, 0xd9, + 0x71, 0xd8, 0x35, 0x87, 0x43, 0x72, 0x8a, 0x5c, 0x92, 0xfb, 0x76, 0x57, 0xcb, 0xe3, 0xdd, 0xee, + 0x9c, 0xfa, 0x8c, 0xcb, 0xd9, 0x3e, 0x91, 0xd2, 0x7d, 0x24, 0x27, 0x9d, 0x72, 0xc9, 0x0c, 0xb9, + 0x7b, 0xcb, 0x3d, 0x72, 0x6f, 0xb6, 0x86, 0x7b, 0x2b, 0x4b, 0x3a, 0x5b, 0xcd, 0x99, 0xc7, 0x61, + 0x2f, 0x67, 0xba, 0xc7, 0xdd, 0x3d, 0xdc, 0xe5, 0xe9, 0x60, 0x9d, 0x2c, 0x9c, 0xa2, 0x18, 0x12, + 0xac, 0xc4, 0x16, 0x82, 0x20, 0x41, 0xa0, 0x18, 0x06, 0xec, 0xc4, 0xfe, 0x65, 0x24, 0xc8, 0x1f, + 0x03, 0x31, 0xe2, 0x2f, 0xfd, 0x71, 0x20, 0xff, 0x48, 0x64, 0x07, 0x30, 0x1d, 0x51, 0xf9, 0x93, + 0x20, 0x81, 0x11, 0xc0, 0x41, 0xe0, 0xfd, 0x11, 0x04, 0xef, 0xb3, 0x5f, 0xf7, 0xf4, 0x70, 0x67, + 0x38, 0xcd, 0xd5, 0x25, 0xd6, 0xbf, 0x99, 0x57, 0xf5, 0xaa, 0xaa, 0xdf, 0x67, 0xbd, 0x7a, 0x55, + 0xf5, 0x60, 0xb3, 0xe5, 0x46, 0x7b, 0xbd, 0x9d, 0x95, 0x86, 0xdf, 0x59, 0x75, 0x82, 0x96, 0xdf, + 0x0d, 0xfc, 0x7b, 0xfc, 0xc7, 0xc7, 0x02, 0xbf, 0xdd, 0xf6, 0x7b, 0x51, 0xb8, 0xda, 0xdd, 0x6f, + 0xad, 0x3a, 0x5d, 0x37, 0x5c, 0xd5, 0x25, 0x07, 0x9f, 0x70, 0xda, 0xdd, 0x3d, 0xe7, 0x13, 0xab, + 0x2d, 0xea, 0xd1, 0xc0, 0x89, 0x68, 0x73, 0xa5, 0x1b, 0xf8, 0x91, 0x4f, 0x3e, 0x1d, 0x53, 0x5b, + 0x51, 0xd4, 0xf8, 0x8f, 0x9f, 0x51, 0x75, 0x57, 0xba, 0xfb, 0xad, 0x15, 0x46, 0x6d, 0x45, 0x97, + 0x28, 0x6a, 0xcb, 0x1f, 0x33, 0x64, 0x69, 0xf9, 0x2d, 0x7f, 0x95, 0x13, 0xdd, 0xe9, 0xed, 0xf2, + 0x7f, 0xfc, 0x0f, 0xff, 0x25, 0x98, 0x2d, 0x3f, 0xbb, 0xff, 0x6a, 0xb8, 0xe2, 0xfa, 0x4c, 0xb6, + 0xd5, 0x1d, 0x27, 0x6a, 0xec, 0xad, 0x1e, 0xf4, 0x49, 0xb4, 0x6c, 0x1b, 0x48, 0x0d, 0x3f, 0xa0, + 0x59, 0x38, 0x2f, 0xc7, 0x38, 0x1d, 0xa7, 0xb1, 0xe7, 0x7a, 0x34, 0x38, 0x8c, 0xbf, 0xba, 0x43, + 0x23, 0x27, 0xab, 0xd6, 0xea, 0xa0, 0x5a, 0x41, 0xcf, 0x8b, 0xdc, 0x0e, 0xed, 0xab, 0xf0, 0x37, + 0x1f, 0x55, 0x21, 0x6c, 0xec, 0xd1, 0x8e, 0xd3, 0x57, 0xef, 0xa5, 0x41, 0xf5, 0x7a, 0x91, 0xdb, + 0x5e, 0x75, 0xbd, 0x28, 0x8c, 0x82, 0x74, 0x25, 0xfb, 0xf7, 0x0a, 0x50, 0xaa, 0x6c, 0x56, 0xeb, + 0x91, 0x13, 0xf5, 0x42, 0xf2, 0x55, 0x0b, 0xe6, 0xda, 0xbe, 0xd3, 0xac, 0x3a, 0x6d, 0xc7, 0x6b, + 0xd0, 0x60, 0xc9, 0x7a, 0xc6, 0x7a, 0x7e, 0xf6, 0xc5, 0xcd, 0x95, 0x71, 0xfa, 0x6b, 0xa5, 0x72, + 0x3f, 0x44, 0x1a, 0xfa, 0xbd, 0xa0, 0x41, 0x91, 0xee, 0x56, 0x2f, 0x7e, 0xe7, 0xa8, 0xfc, 0xc4, + 0xf1, 0x51, 0x79, 0x6e, 0xd3, 0xe0, 0x84, 0x09, 0xbe, 0xe4, 0x5b, 0x16, 0x9c, 0x6f, 0x38, 0x9e, + 0x13, 0x1c, 0x6e, 0x3b, 0x41, 0x8b, 0x46, 0x6f, 0x04, 0x7e, 0xaf, 0xbb, 0x34, 0x71, 0x06, 0xd2, + 0x3c, 0x29, 0xa5, 0x39, 0xbf, 0x96, 0x66, 0x87, 0xfd, 0x12, 0x70, 0xb9, 0xc2, 0xc8, 0xd9, 0x69, + 0x53, 0x53, 0xae, 0xc2, 0x59, 0xca, 0x55, 0x4f, 0xb3, 0xc3, 0x7e, 0x09, 0xec, 0x0f, 0x0a, 0x70, + 0xbe, 0xb2, 0x59, 0xdd, 0x0e, 0x9c, 0xdd, 0x5d, 0xb7, 0x81, 0x7e, 0x2f, 0x72, 0xbd, 0x16, 0xf9, + 0x71, 0x98, 0x76, 0xbd, 0x56, 0x40, 0xc3, 0x90, 0x77, 0x64, 0xa9, 0xba, 0x20, 0x89, 0x4e, 0x6f, + 0x88, 0x62, 0x54, 0x70, 0xf2, 0x0a, 0xcc, 0x86, 0x34, 0x38, 0x70, 0x1b, 0xb4, 0xe6, 0x07, 0x11, + 0x6f, 0xe9, 0x62, 0xf5, 0x82, 0x44, 0x9f, 0xad, 0xc7, 0x20, 0x34, 0xf1, 0x58, 0xb5, 0xc0, 0xf7, + 0x23, 0x09, 0xe7, 0x0d, 0x51, 0x8a, 0xab, 0x61, 0x0c, 0x42, 0x13, 0x8f, 0x7c, 0xd3, 0x82, 0xc5, + 0x30, 0x72, 0x1b, 0xfb, 0xae, 0x47, 0xc3, 0x70, 0xcd, 0xf7, 0x76, 0xdd, 0xd6, 0x52, 0x91, 0xb7, + 0xe2, 0xad, 0xf1, 0x5a, 0xb1, 0x9e, 0xa2, 0x5a, 0xbd, 0x78, 0x7c, 0x54, 0x5e, 0x4c, 0x97, 0x62, + 0x1f, 0x77, 0xb2, 0x0e, 0x8b, 0x8e, 0xe7, 0xf9, 0x91, 0x13, 0xb9, 0xbe, 0x57, 0x0b, 0xe8, 0xae, + 0xfb, 0x60, 0x69, 0x92, 0x7f, 0xce, 0x92, 0xfc, 0x9c, 0xc5, 0x4a, 0x0a, 0x8e, 0x7d, 0x35, 0xec, + 0x75, 0x58, 0xaa, 0x74, 0x76, 0x9c, 0x30, 0x74, 0x9a, 0x7e, 0x90, 0xea, 0x8d, 0xe7, 0x61, 0xa6, + 0xe3, 0x74, 0xbb, 0xae, 0xd7, 0x62, 0xdd, 0x51, 0x78, 0xbe, 0x54, 0x9d, 0x3b, 0x3e, 0x2a, 0xcf, + 0x6c, 0xc9, 0x32, 0xd4, 0x50, 0xfb, 0x4f, 0x27, 0x60, 0xb6, 0xe2, 0x39, 0xed, 0xc3, 0xd0, 0x0d, + 0xb1, 0xe7, 0x91, 0x2f, 0xc0, 0x0c, 0x5b, 0x5d, 0x9a, 0x4e, 0xe4, 0xc8, 0x19, 0xf9, 0xf1, 0x15, + 0x31, 0xd9, 0x57, 0xcc, 0xc9, 0x1e, 0xb7, 0x0b, 0xc3, 0x5e, 0x39, 0xf8, 0xc4, 0xca, 0x5b, 0x3b, + 0xf7, 0x68, 0x23, 0xda, 0xa2, 0x91, 0x53, 0x25, 0xf2, 0x2b, 0x20, 0x2e, 0x43, 0x4d, 0x95, 0xf8, + 0x30, 0x19, 0x76, 0x69, 0x43, 0xce, 0xb0, 0xad, 0x31, 0x47, 0x72, 0x2c, 0x7a, 0xbd, 0x4b, 0x1b, + 0xd5, 0x39, 0xc9, 0x7a, 0x92, 0xfd, 0x43, 0xce, 0x88, 0xdc, 0x87, 0xa9, 0x90, 0xaf, 0x39, 0x72, + 0xf2, 0xbc, 0x95, 0x1f, 0x4b, 0x4e, 0xb6, 0x3a, 0x2f, 0x99, 0x4e, 0x89, 0xff, 0x28, 0xd9, 0xd9, + 0xff, 0xc9, 0x82, 0x0b, 0x06, 0x76, 0x25, 0x68, 0xf5, 0x3a, 0xd4, 0x8b, 0xc8, 0x33, 0x30, 0xe9, + 0x39, 0x1d, 0x2a, 0x27, 0x8a, 0x16, 0xf9, 0x96, 0xd3, 0xa1, 0xc8, 0x21, 0xe4, 0x59, 0x28, 0x1e, + 0x38, 0xed, 0x1e, 0xe5, 0x8d, 0x54, 0xaa, 0x9e, 0x93, 0x28, 0xc5, 0xb7, 0x59, 0x21, 0x0a, 0x18, + 0x79, 0x0f, 0x4a, 0xfc, 0xc7, 0xf5, 0xc0, 0xef, 0xe4, 0xf4, 0x69, 0x52, 0xc2, 0xb7, 0x15, 0xd9, + 0xea, 0xb9, 0xe3, 0xa3, 0x72, 0x49, 0xff, 0xc5, 0x98, 0xa1, 0xfd, 0xe7, 0x16, 0x2c, 0x18, 0x1f, + 0xb7, 0xe9, 0x86, 0x11, 0xf9, 0x7c, 0xdf, 0xe0, 0x59, 0x19, 0x6e, 0xf0, 0xb0, 0xda, 0x7c, 0xe8, + 0x2c, 0xca, 0x2f, 0x9d, 0x51, 0x25, 0xc6, 0xc0, 0xf1, 0xa0, 0xe8, 0x46, 0xb4, 0x13, 0x2e, 0x4d, + 0x3c, 0x53, 0x78, 0x7e, 0xf6, 0xc5, 0x8d, 0xdc, 0xba, 0x31, 0x6e, 0xdf, 0x0d, 0x46, 0x1f, 0x05, + 0x1b, 0xfb, 0x5f, 0x15, 0x12, 0xdd, 0xb7, 0xa5, 0xe4, 0xf8, 0xc0, 0x82, 0xa9, 0xb6, 0xb3, 0x43, + 0xdb, 0x62, 0x6e, 0xcd, 0xbe, 0xf8, 0x4e, 0x6e, 0x92, 0x28, 0x1e, 0x2b, 0x9b, 0x9c, 0xfe, 0x35, + 0x2f, 0x0a, 0x0e, 0xe3, 0xe1, 0x25, 0x0a, 0x51, 0x32, 0x27, 0xff, 0xd8, 0x82, 0xd9, 0x78, 0x55, + 0x50, 0xcd, 0xb2, 0x93, 0xbf, 0x30, 0xf1, 0x62, 0x24, 0x25, 0xd2, 0xab, 0xae, 0x01, 0x41, 0x53, + 0x96, 0xe5, 0x4f, 0xc2, 0xac, 0xf1, 0x09, 0x64, 0x11, 0x0a, 0xfb, 0xf4, 0x50, 0x0c, 0x78, 0x64, + 0x3f, 0xc9, 0xc5, 0xc4, 0x08, 0x97, 0x43, 0xfa, 0x53, 0x13, 0xaf, 0x5a, 0xcb, 0xaf, 0xc3, 0x62, + 0x9a, 0xe1, 0x28, 0xf5, 0xed, 0xdf, 0x9a, 0x4c, 0x0c, 0x4c, 0xb6, 0x10, 0x10, 0x1f, 0xa6, 0x3b, + 0x34, 0x0a, 0xdc, 0x86, 0xea, 0xb2, 0xf5, 0xf1, 0x5a, 0x69, 0x8b, 0x13, 0x8b, 0xf7, 0x38, 0xf1, + 0x3f, 0x44, 0xc5, 0x85, 0xec, 0xc1, 0xa4, 0x13, 0xb4, 0x54, 0x9f, 0x5c, 0xcf, 0x67, 0x5a, 0xc6, + 0x4b, 0x45, 0x25, 0x68, 0x85, 0xc8, 0x39, 0x90, 0x55, 0x28, 0x45, 0x34, 0xe8, 0xb8, 0x9e, 0x13, + 0x89, 0x4d, 0x71, 0xa6, 0x7a, 0x5e, 0xa2, 0x95, 0xb6, 0x15, 0x00, 0x63, 0x1c, 0xd2, 0x86, 0xa9, + 0x66, 0x70, 0x88, 0x3d, 0x6f, 0x69, 0x32, 0x8f, 0xa6, 0x58, 0xe7, 0xb4, 0xe2, 0x41, 0x2a, 0xfe, + 0xa3, 0xe4, 0x41, 0x7e, 0xd5, 0x82, 0x8b, 0x1d, 0xea, 0x84, 0xbd, 0x80, 0xb2, 0x4f, 0x40, 0x1a, + 0x51, 0x8f, 0x75, 0xec, 0x52, 0x91, 0x33, 0xc7, 0x71, 0xfb, 0xa1, 0x9f, 0x72, 0xf5, 0x69, 0x29, + 0xca, 0xc5, 0x2c, 0x28, 0x66, 0x4a, 0x63, 0xff, 0xe9, 0x24, 0x9c, 0xef, 0x5b, 0xd8, 0xc9, 0xcb, + 0x50, 0xec, 0xee, 0x39, 0xa1, 0x5a, 0xa9, 0xaf, 0xaa, 0x65, 0xa2, 0xc6, 0x0a, 0x1f, 0x1e, 0x95, + 0xcf, 0xa9, 0x2a, 0xbc, 0x00, 0x05, 0x32, 0x53, 0x85, 0x3a, 0x34, 0x0c, 0x9d, 0x96, 0x5a, 0xbe, + 0x8d, 0x61, 0xc2, 0x8b, 0x51, 0xc1, 0xc9, 0xdf, 0xb3, 0xe0, 0x9c, 0x18, 0x32, 0x48, 0xc3, 0x5e, + 0x3b, 0x62, 0x5b, 0x14, 0x6b, 0x96, 0x9b, 0x79, 0x0c, 0x4f, 0x41, 0xb2, 0x7a, 0x49, 0x72, 0x3f, + 0x67, 0x96, 0x86, 0x98, 0xe4, 0x4b, 0xee, 0x42, 0x29, 0x8c, 0x9c, 0x20, 0xa2, 0xcd, 0x4a, 0xc4, + 0x95, 0x91, 0xd9, 0x17, 0x7f, 0x62, 0xb8, 0xb5, 0x7b, 0xdb, 0xed, 0x50, 0xb1, 0x4f, 0xd4, 0x15, + 0x01, 0x8c, 0x69, 0x91, 0xf7, 0x00, 0x82, 0x9e, 0x57, 0xef, 0x75, 0x3a, 0x4e, 0x70, 0x28, 0x15, + 0xaf, 0x1b, 0xe3, 0x7d, 0x1e, 0x6a, 0x7a, 0xb1, 0xaa, 0x11, 0x97, 0xa1, 0xc1, 0x8f, 0x7c, 0xd9, + 0x82, 0x73, 0x62, 0x24, 0x2a, 0x09, 0xa6, 0x72, 0x96, 0xe0, 0x3c, 0x6b, 0xda, 0x75, 0x93, 0x05, + 0x26, 0x39, 0xda, 0xff, 0x21, 0xa9, 0x06, 0xd4, 0x23, 0x76, 0x28, 0x6a, 0x1d, 0x92, 0xcf, 0xc1, + 0x93, 0x61, 0xaf, 0xd1, 0xa0, 0x61, 0xb8, 0xdb, 0x6b, 0x63, 0xcf, 0xbb, 0xe1, 0x86, 0x91, 0x1f, + 0x1c, 0x6e, 0xba, 0x1d, 0x37, 0xe2, 0x23, 0xae, 0x58, 0xbd, 0x72, 0x7c, 0x54, 0x7e, 0xb2, 0x3e, + 0x08, 0x09, 0x07, 0xd7, 0x27, 0x0e, 0x3c, 0xd5, 0xf3, 0x06, 0x93, 0x17, 0x4a, 0x77, 0xf9, 0xf8, + 0xa8, 0xfc, 0xd4, 0x9d, 0xc1, 0x68, 0x78, 0x12, 0x0d, 0xfb, 0xbf, 0x59, 0x6c, 0xa5, 0x16, 0xdf, + 0xb5, 0x4d, 0x3b, 0xdd, 0x36, 0x5b, 0x5d, 0xce, 0x5e, 0x7f, 0x8c, 0x12, 0xfa, 0x23, 0xe6, 0xb3, + 0xdd, 0x29, 0xf9, 0x07, 0x29, 0x91, 0xf6, 0x7f, 0xb5, 0xe0, 0x62, 0x1a, 0xf9, 0x31, 0xe8, 0x3c, + 0x61, 0x52, 0xe7, 0xb9, 0x95, 0xef, 0xd7, 0x0e, 0x50, 0x7c, 0xbe, 0x3a, 0xd9, 0xff, 0xad, 0xff, + 0xbf, 0x6f, 0xa3, 0xf1, 0xae, 0x58, 0xf8, 0x61, 0xee, 0x8a, 0x93, 0x1f, 0xaa, 0x5d, 0xf1, 0xd7, + 0x27, 0x61, 0xae, 0xe2, 0x45, 0x6e, 0x65, 0x77, 0xd7, 0xf5, 0xdc, 0xe8, 0x90, 0x7c, 0x7d, 0x02, + 0x56, 0xbb, 0x01, 0xdd, 0xa5, 0x41, 0x40, 0x9b, 0xeb, 0xbd, 0xc0, 0xf5, 0x5a, 0xf5, 0xc6, 0x1e, + 0x6d, 0xf6, 0xda, 0xae, 0xd7, 0xda, 0x68, 0x79, 0xbe, 0x2e, 0xbe, 0xf6, 0x80, 0x36, 0x7a, 0xfc, + 0x93, 0xc4, 0xa4, 0xe8, 0x8c, 0xf7, 0x49, 0xb5, 0xd1, 0x98, 0x56, 0x5f, 0x3a, 0x3e, 0x2a, 0xaf, + 0x8e, 0x58, 0x09, 0x47, 0xfd, 0x34, 0xf2, 0xb5, 0x09, 0x58, 0x09, 0xe8, 0xcf, 0xf6, 0xdc, 0xe1, + 0x5b, 0x43, 0xac, 0x5a, 0xed, 0x31, 0xb7, 0x9f, 0x91, 0x78, 0x56, 0x5f, 0x3c, 0x3e, 0x2a, 0x8f, + 0x58, 0x07, 0x47, 0xfc, 0x2e, 0xbb, 0x06, 0xb3, 0x95, 0xae, 0x1b, 0xba, 0x0f, 0xd0, 0xef, 0x45, + 0x74, 0x88, 0x23, 0x6e, 0x19, 0x8a, 0x41, 0xaf, 0x4d, 0xc5, 0xdc, 0x2e, 0x55, 0x4b, 0x6c, 0x15, + 0x42, 0x56, 0x80, 0xa2, 0xdc, 0xfe, 0x79, 0xb6, 0xe2, 0x72, 0x92, 0x29, 0xe3, 0xc6, 0x3d, 0x28, + 0x06, 0x8c, 0x89, 0x1c, 0x59, 0xe3, 0x9e, 0x03, 0x63, 0xa9, 0xa5, 0x10, 0xec, 0x27, 0x0a, 0x16, + 0xf6, 0xef, 0x4e, 0xc0, 0xa5, 0x4a, 0xb7, 0xbb, 0x45, 0xc3, 0xbd, 0x94, 0x14, 0xbf, 0x68, 0xc1, + 0xfc, 0x81, 0x1b, 0x44, 0x3d, 0xa7, 0xad, 0x4c, 0x52, 0x42, 0x9e, 0xfa, 0xb8, 0xf2, 0x70, 0x6e, + 0x6f, 0x27, 0x48, 0x57, 0xc9, 0xf1, 0x51, 0x79, 0x3e, 0x59, 0x86, 0x29, 0xf6, 0xe4, 0x1f, 0x59, + 0xb0, 0x28, 0x8b, 0x6e, 0xf9, 0x4d, 0x6a, 0xda, 0x31, 0xef, 0xe4, 0x29, 0x93, 0x26, 0x2e, 0x0c, + 0x5e, 0xe9, 0x52, 0xec, 0x13, 0xc2, 0xfe, 0x1f, 0x13, 0x70, 0x79, 0x00, 0x0d, 0xf2, 0x6b, 0x16, + 0x5c, 0x14, 0xc6, 0x4f, 0x03, 0x84, 0x74, 0x57, 0xb6, 0xe6, 0x4f, 0xe5, 0x2d, 0x39, 0xb2, 0x29, + 0x4e, 0xbd, 0x06, 0xad, 0x2e, 0xb1, 0xd5, 0x70, 0x2d, 0x83, 0x35, 0x66, 0x0a, 0xc4, 0x25, 0x15, + 0xe6, 0xd0, 0x94, 0xa4, 0x13, 0x8f, 0x45, 0xd2, 0x7a, 0x06, 0x6b, 0xcc, 0x14, 0xc8, 0xfe, 0x3b, + 0xf0, 0xd4, 0x09, 0xe4, 0x1e, 0x3d, 0x39, 0xed, 0x77, 0xf4, 0xa8, 0x4f, 0x8e, 0xb9, 0x21, 0xe6, + 0xb5, 0x0d, 0x53, 0x7c, 0xea, 0xa8, 0x89, 0x0d, 0x6c, 0xfb, 0xe3, 0x73, 0x2a, 0x44, 0x09, 0xb1, + 0x7f, 0xd7, 0x82, 0x99, 0x11, 0xac, 0x61, 0xe5, 0xa4, 0x35, 0xac, 0xd4, 0x67, 0x09, 0x8b, 0xfa, + 0x2d, 0x61, 0x6f, 0x8c, 0xd7, 0x1b, 0xc3, 0x58, 0xc0, 0xfe, 0xc2, 0x82, 0xf3, 0x7d, 0x16, 0x33, + 0xb2, 0x07, 0x17, 0xbb, 0x7e, 0x53, 0xa9, 0x4d, 0x37, 0x9c, 0x70, 0x8f, 0xc3, 0xe4, 0xe7, 0xbd, + 0xcc, 0x7a, 0xb2, 0x96, 0x01, 0x7f, 0x78, 0x54, 0x5e, 0xd2, 0x44, 0x52, 0x08, 0x98, 0x49, 0x91, + 0x74, 0x61, 0x66, 0xd7, 0xa5, 0xed, 0x66, 0x3c, 0x04, 0xc7, 0x54, 0x90, 0xae, 0x4b, 0x6a, 0xc2, + 0x58, 0xac, 0xfe, 0xa1, 0xe6, 0x62, 0x7f, 0x09, 0xe6, 0x93, 0x57, 0x07, 0x43, 0x74, 0xde, 0x15, + 0x28, 0x38, 0x81, 0x27, 0xbb, 0x6e, 0x56, 0x22, 0x14, 0x2a, 0x78, 0x0b, 0x59, 0x39, 0x79, 0x01, + 0x66, 0x76, 0x7b, 0xed, 0x36, 0xab, 0x20, 0x4d, 0xfa, 0x5a, 0x1d, 0xbe, 0x2e, 0xcb, 0x51, 0x63, + 0xd8, 0x7f, 0x35, 0x09, 0x0b, 0xd5, 0x76, 0x8f, 0xbe, 0x11, 0x50, 0xaa, 0x0e, 0xe9, 0x15, 0x58, + 0xe8, 0x06, 0xf4, 0xc0, 0xa5, 0xf7, 0xeb, 0xb4, 0x4d, 0x1b, 0x91, 0x1f, 0x48, 0x69, 0x2e, 0x4b, + 0x42, 0x0b, 0xb5, 0x24, 0x18, 0xd3, 0xf8, 0xe4, 0x75, 0x98, 0x77, 0x1a, 0x91, 0x7b, 0x40, 0x35, + 0x05, 0x21, 0xee, 0x47, 0x24, 0x85, 0xf9, 0x4a, 0x02, 0x8a, 0x29, 0x6c, 0xf2, 0x79, 0x58, 0x0a, + 0x1b, 0x4e, 0x9b, 0xde, 0xe9, 0x4a, 0x56, 0x6b, 0x7b, 0xb4, 0xb1, 0x5f, 0xf3, 0x5d, 0x2f, 0x92, + 0x26, 0x99, 0x67, 0x24, 0xa5, 0xa5, 0xfa, 0x00, 0x3c, 0x1c, 0x48, 0x81, 0xfc, 0x5b, 0x0b, 0xae, + 0x74, 0x03, 0x5a, 0x0b, 0xfc, 0x8e, 0xcf, 0xf6, 0xda, 0x3e, 0x3b, 0x85, 0x3c, 0xaf, 0xbf, 0x3d, + 0xa6, 0x52, 0x21, 0x4a, 0xfa, 0xcd, 0xdb, 0x1f, 0x3d, 0x3e, 0x2a, 0x5f, 0xa9, 0x9d, 0x24, 0x00, + 0x9e, 0x2c, 0x1f, 0xf9, 0x77, 0x16, 0x5c, 0xed, 0xfa, 0x61, 0x74, 0xc2, 0x27, 0x14, 0xcf, 0xf4, + 0x13, 0xec, 0xe3, 0xa3, 0xf2, 0xd5, 0xda, 0x89, 0x12, 0xe0, 0x23, 0x24, 0xb4, 0x8f, 0x67, 0xe1, + 0xbc, 0x31, 0xf6, 0xe4, 0x21, 0xfe, 0x35, 0x38, 0xa7, 0x06, 0x43, 0xac, 0x04, 0x94, 0x62, 0xa3, + 0x4b, 0xc5, 0x04, 0x62, 0x12, 0x97, 0x8d, 0x3b, 0x3d, 0x14, 0x45, 0xed, 0xd4, 0xb8, 0xab, 0x25, + 0xa0, 0x98, 0xc2, 0x26, 0x1b, 0x70, 0x41, 0x96, 0x20, 0xed, 0xb6, 0xdd, 0x86, 0xb3, 0xe6, 0xf7, + 0xe4, 0x90, 0x2b, 0x56, 0x2f, 0x1f, 0x1f, 0x95, 0x2f, 0xd4, 0xfa, 0xc1, 0x98, 0x55, 0x87, 0x6c, + 0xc2, 0x45, 0xa7, 0x17, 0xf9, 0xfa, 0xfb, 0xaf, 0x79, 0x6c, 0x5f, 0x69, 0xf2, 0xa1, 0x35, 0x23, + 0x36, 0xa0, 0x4a, 0x06, 0x1c, 0x33, 0x6b, 0x91, 0x5a, 0x8a, 0x5a, 0x9d, 0x36, 0x7c, 0xaf, 0x29, + 0x7a, 0xb9, 0x18, 0x1f, 0x45, 0x2a, 0x19, 0x38, 0x98, 0x59, 0x93, 0xb4, 0x61, 0xbe, 0xe3, 0x3c, + 0xb8, 0xe3, 0x39, 0x07, 0x8e, 0xdb, 0x66, 0x4c, 0xa4, 0x21, 0x67, 0xb0, 0x75, 0xa1, 0x17, 0xb9, + 0xed, 0x15, 0x71, 0x15, 0xbd, 0xb2, 0xe1, 0x45, 0x6f, 0x05, 0xf5, 0x88, 0xa9, 0xac, 0x42, 0x95, + 0xda, 0x4a, 0xd0, 0xc2, 0x14, 0x6d, 0xf2, 0x16, 0x5c, 0xe2, 0xd3, 0x71, 0xdd, 0xbf, 0xef, 0xad, + 0xd3, 0xb6, 0x73, 0xa8, 0x3e, 0x60, 0x9a, 0x7f, 0xc0, 0x93, 0xc7, 0x47, 0xe5, 0x4b, 0xf5, 0x2c, + 0x04, 0xcc, 0xae, 0x47, 0x1c, 0x78, 0x2a, 0x09, 0x40, 0x7a, 0xe0, 0x86, 0xae, 0xef, 0x09, 0x73, + 0xcc, 0x4c, 0x6c, 0x8e, 0xa9, 0x0f, 0x46, 0xc3, 0x93, 0x68, 0x90, 0x7f, 0x62, 0xc1, 0xc5, 0xac, + 0x69, 0xb8, 0x54, 0xca, 0xe3, 0xa2, 0x2d, 0x35, 0xb5, 0xc4, 0x88, 0xc8, 0x5c, 0x14, 0x32, 0x85, + 0x20, 0xef, 0x5b, 0x30, 0xe7, 0x18, 0x47, 0xc9, 0x25, 0xe0, 0x52, 0xdd, 0x1c, 0xd7, 0xa0, 0x11, + 0x53, 0xac, 0x2e, 0x1e, 0x1f, 0x95, 0x13, 0xc7, 0x55, 0x4c, 0x70, 0x24, 0xff, 0xcc, 0x82, 0x4b, + 0x99, 0x73, 0x7c, 0x69, 0xf6, 0x2c, 0x5a, 0x88, 0x0f, 0x92, 0xec, 0x35, 0x27, 0x5b, 0x0c, 0xf2, + 0x4d, 0x4b, 0x6f, 0x65, 0xea, 0xee, 0x65, 0x69, 0x8e, 0x8b, 0x76, 0x7b, 0xcc, 0xd3, 0x73, 0xac, + 0x3e, 0x28, 0xc2, 0xd5, 0x0b, 0xc6, 0xce, 0xa8, 0x0a, 0x31, 0xcd, 0x9e, 0x7c, 0xc3, 0x52, 0x5b, + 0xa3, 0x96, 0xe8, 0xdc, 0x59, 0x49, 0x44, 0xe2, 0x9d, 0x56, 0x0b, 0x94, 0x62, 0x4e, 0x7e, 0x1a, + 0x96, 0x9d, 0x1d, 0x3f, 0x88, 0x32, 0x27, 0xdf, 0xd2, 0x3c, 0x9f, 0x46, 0x57, 0x8f, 0x8f, 0xca, + 0xcb, 0x95, 0x81, 0x58, 0x78, 0x02, 0x05, 0xfb, 0x37, 0x8b, 0x30, 0x27, 0x8e, 0x04, 0x72, 0xeb, + 0xfa, 0x6d, 0x0b, 0x9e, 0x6e, 0xf4, 0x82, 0x80, 0x7a, 0x51, 0x3d, 0xa2, 0xdd, 0xfe, 0x8d, 0xcb, + 0x3a, 0xd3, 0x8d, 0xeb, 0x99, 0xe3, 0xa3, 0xf2, 0xd3, 0x6b, 0x27, 0xf0, 0xc7, 0x13, 0xa5, 0x23, + 0xff, 0xde, 0x02, 0x5b, 0x22, 0x54, 0x9d, 0xc6, 0x7e, 0x2b, 0xf0, 0x7b, 0x5e, 0xb3, 0xff, 0x23, + 0x26, 0xce, 0xf4, 0x23, 0x9e, 0x3b, 0x3e, 0x2a, 0xdb, 0x6b, 0x8f, 0x94, 0x02, 0x87, 0x90, 0x94, + 0xbc, 0x01, 0xe7, 0x25, 0xd6, 0xb5, 0x07, 0x5d, 0x1a, 0xb8, 0x4c, 0xf9, 0x96, 0x8a, 0x63, 0xec, + 0x5e, 0x93, 0x46, 0xc0, 0xfe, 0x3a, 0x24, 0x84, 0xe9, 0xfb, 0xd4, 0x6d, 0xed, 0x45, 0x4a, 0x7d, + 0x1a, 0xd3, 0xa7, 0x46, 0x9a, 0x07, 0xee, 0x0a, 0x9a, 0xd5, 0xd9, 0xe3, 0xa3, 0xf2, 0xb4, 0xfc, + 0x83, 0x8a, 0x13, 0xb9, 0x05, 0xf3, 0xe2, 0xc0, 0x56, 0x73, 0xbd, 0x56, 0xcd, 0xf7, 0x84, 0x27, + 0x4a, 0xa9, 0xfa, 0x9c, 0xda, 0xf0, 0xeb, 0x09, 0xe8, 0xc3, 0xa3, 0xf2, 0x9c, 0xfa, 0xbd, 0x7d, + 0xd8, 0xa5, 0x98, 0xaa, 0x6d, 0xff, 0xc1, 0x14, 0x80, 0x1a, 0xae, 0xb4, 0x4b, 0x7e, 0x12, 0x4a, + 0x21, 0x8d, 0x04, 0x57, 0x79, 0x83, 0x20, 0x2e, 0x66, 0x54, 0x21, 0xc6, 0x70, 0xb2, 0x0f, 0xc5, + 0xae, 0xd3, 0x0b, 0xa9, 0xec, 0xfc, 0x9b, 0xb9, 0x74, 0x7e, 0x8d, 0x51, 0x14, 0x27, 0x34, 0xfe, + 0x13, 0x05, 0x0f, 0xf2, 0x15, 0x0b, 0x80, 0x26, 0x3b, 0x6c, 0x6c, 0x4b, 0x89, 0x64, 0x19, 0xf7, + 0x29, 0x6b, 0x83, 0xea, 0xfc, 0xf1, 0x51, 0x19, 0x8c, 0xae, 0x37, 0xd8, 0x92, 0xfb, 0x30, 0xe3, + 0xa8, 0x35, 0x7f, 0xf2, 0x2c, 0xd6, 0x7c, 0x7e, 0x70, 0xd2, 0x83, 0x56, 0x33, 0x23, 0x5f, 0xb3, + 0x60, 0x3e, 0xa4, 0x91, 0xec, 0x2a, 0xb6, 0xf2, 0x48, 0x85, 0x77, 0xcc, 0x41, 0x57, 0x4f, 0xd0, + 0x14, 0x2b, 0x68, 0xb2, 0x0c, 0x53, 0x7c, 0x95, 0x28, 0x37, 0xa8, 0xd3, 0xa4, 0x01, 0x3f, 0x97, + 0x4b, 0x4d, 0x6a, 0x7c, 0x51, 0x0c, 0x9a, 0x5a, 0x14, 0xa3, 0x0c, 0x53, 0x7c, 0x95, 0x28, 0x5b, + 0x6e, 0x10, 0xf8, 0x52, 0x94, 0x99, 0x9c, 0x44, 0x31, 0x68, 0x6a, 0x51, 0x8c, 0x32, 0x4c, 0xf1, + 0xb5, 0xbf, 0x7d, 0x0e, 0xe6, 0xd5, 0x44, 0x8a, 0x35, 0x7b, 0x61, 0x06, 0x1a, 0xa0, 0xd9, 0xaf, + 0x99, 0x40, 0x4c, 0xe2, 0xb2, 0xca, 0x62, 0xaa, 0x26, 0x15, 0x7b, 0x5d, 0xb9, 0x6e, 0x02, 0x31, + 0x89, 0x4b, 0x3a, 0x50, 0x0c, 0x23, 0xda, 0x55, 0x97, 0xc1, 0x63, 0xde, 0x55, 0xc6, 0xeb, 0x43, + 0x7c, 0xdd, 0xc3, 0xfe, 0x85, 0x28, 0xb8, 0x70, 0x4b, 0x66, 0x94, 0x30, 0x6e, 0xca, 0xc9, 0x91, + 0xcf, 0xfc, 0x4c, 0xda, 0x4d, 0x45, 0x6f, 0x24, 0xcb, 0x30, 0xc5, 0x3e, 0x43, 0xd9, 0x2f, 0x9e, + 0xa1, 0xb2, 0xff, 0x59, 0x98, 0xe9, 0x38, 0x0f, 0xea, 0xbd, 0xa0, 0x75, 0xfa, 0x43, 0x85, 0x74, + 0xaf, 0x13, 0x54, 0x50, 0xd3, 0x23, 0x5f, 0xb6, 0x8c, 0x25, 0x67, 0x9a, 0x13, 0xbf, 0x9b, 0xef, + 0x92, 0xa3, 0xf7, 0xca, 0x81, 0x8b, 0x4f, 0x9f, 0xea, 0x3d, 0xf3, 0xd8, 0x55, 0x6f, 0xa6, 0x46, + 0x8a, 0x09, 0xa2, 0xd5, 0xc8, 0xd2, 0x99, 0xaa, 0x91, 0x6b, 0x09, 0x66, 0x98, 0x62, 0xce, 0xe5, + 0x11, 0x73, 0x4e, 0xcb, 0x03, 0x67, 0x2a, 0x4f, 0x3d, 0xc1, 0x0c, 0x53, 0xcc, 0x07, 0x9f, 0x37, + 0x67, 0xcf, 0xe6, 0xbc, 0x39, 0x97, 0xc3, 0x79, 0xf3, 0x64, 0x55, 0xfc, 0xdc, 0xb8, 0xaa, 0x38, + 0xb9, 0x09, 0xa4, 0x79, 0xe8, 0x39, 0x1d, 0xb7, 0x21, 0x17, 0x4b, 0xbe, 0x6d, 0xce, 0x73, 0x7b, + 0xc4, 0xb2, 0x5c, 0xc8, 0xc8, 0x7a, 0x1f, 0x06, 0x66, 0xd4, 0x22, 0x11, 0xcc, 0x74, 0x95, 0xc6, + 0xb5, 0x90, 0xc7, 0xe8, 0x57, 0x1a, 0x98, 0xf0, 0x17, 0x60, 0x13, 0x4f, 0x95, 0xa0, 0xe6, 0x44, + 0x36, 0xe1, 0x62, 0xc7, 0xf5, 0x6a, 0x7e, 0x33, 0xac, 0xd1, 0x40, 0x5a, 0x5b, 0xea, 0x34, 0x5a, + 0x5a, 0xe4, 0x6d, 0xc3, 0x4f, 0xd0, 0x5b, 0x19, 0x70, 0xcc, 0xac, 0x65, 0xff, 0x2f, 0x0b, 0x16, + 0xd7, 0xda, 0x7e, 0xaf, 0x79, 0xd7, 0x89, 0x1a, 0x7b, 0xe2, 0xaa, 0x9c, 0xbc, 0x0e, 0x33, 0xae, + 0x17, 0xd1, 0xe0, 0xc0, 0x69, 0xcb, 0xfd, 0xc9, 0x56, 0xe6, 0xd3, 0x0d, 0x59, 0xfe, 0xf0, 0xa8, + 0x3c, 0xbf, 0xde, 0x0b, 0xb8, 0x3b, 0x9d, 0x58, 0xad, 0x50, 0xd7, 0x21, 0xdf, 0xb6, 0xe0, 0xbc, + 0xb8, 0x6c, 0x5f, 0x77, 0x22, 0xe7, 0x76, 0x8f, 0x06, 0x2e, 0x55, 0xd7, 0xed, 0x63, 0x2e, 0x54, + 0x69, 0x59, 0x15, 0x83, 0xc3, 0x58, 0x51, 0xdf, 0x4a, 0x73, 0xc6, 0x7e, 0x61, 0xec, 0x5f, 0x2a, + 0xc0, 0x93, 0x03, 0x69, 0x91, 0x65, 0x98, 0x70, 0x9b, 0xf2, 0xd3, 0x41, 0xd2, 0x9d, 0xd8, 0x68, + 0xe2, 0x84, 0xdb, 0x24, 0x2b, 0x5c, 0xe7, 0x0c, 0x68, 0x18, 0xaa, 0x9b, 0xd7, 0x92, 0x56, 0x0f, + 0x65, 0x29, 0x1a, 0x18, 0xa4, 0x0c, 0x45, 0xee, 0x5a, 0x29, 0xcf, 0x13, 0x5c, 0x8b, 0xe5, 0x5e, + 0x8c, 0x28, 0xca, 0xc9, 0xcf, 0x5b, 0x00, 0x42, 0x40, 0x76, 0x1a, 0x91, 0xbb, 0x24, 0xe6, 0xdb, + 0x4c, 0x8c, 0xb2, 0x90, 0x32, 0xfe, 0x8f, 0x06, 0x57, 0xb2, 0x0d, 0x53, 0x4c, 0xa1, 0xf5, 0x9b, + 0xa7, 0xde, 0x14, 0xf9, 0x95, 0x4c, 0x8d, 0xd3, 0x40, 0x49, 0x8b, 0xb5, 0x55, 0x40, 0xa3, 0x5e, + 0xe0, 0xb1, 0xa6, 0xe5, 0xdb, 0xe0, 0x8c, 0x90, 0x02, 0x75, 0x29, 0x1a, 0x18, 0xf6, 0xbf, 0x99, + 0x80, 0x8b, 0x59, 0xa2, 0xb3, 0xdd, 0x66, 0x4a, 0x48, 0x2b, 0x8f, 0xc6, 0x9f, 0xc9, 0xbf, 0x7d, + 0xa4, 0xdf, 0x88, 0xf6, 0xae, 0x90, 0x9e, 0x6d, 0x92, 0x2f, 0xf9, 0x8c, 0x6e, 0xa1, 0x89, 0x53, + 0xb6, 0x90, 0xa6, 0x9c, 0x6a, 0xa5, 0x67, 0x60, 0x32, 0x64, 0x3d, 0x5f, 0x48, 0x5e, 0x77, 0xf0, + 0x3e, 0xe2, 0x10, 0x86, 0xd1, 0xf3, 0xdc, 0x48, 0xfa, 0xf3, 0x6b, 0x8c, 0x3b, 0x9e, 0x1b, 0x21, + 0x87, 0xd8, 0xdf, 0x9a, 0x80, 0xe5, 0xc1, 0x1f, 0x45, 0xbe, 0x65, 0x01, 0x34, 0xd9, 0x71, 0x25, + 0xe4, 0x4e, 0xbd, 0xc2, 0xcf, 0xc6, 0x39, 0xab, 0x36, 0x5c, 0x57, 0x9c, 0x62, 0xa7, 0x2b, 0x5d, + 0x14, 0xa2, 0x21, 0x08, 0x79, 0x51, 0x0d, 0x7d, 0x7e, 0x55, 0x23, 0x26, 0x93, 0xae, 0xb3, 0xa5, + 0x21, 0x68, 0x60, 0xb1, 0xf3, 0xa8, 0xe7, 0x74, 0x68, 0xd8, 0x75, 0x74, 0xc0, 0x06, 0x3f, 0x8f, + 0xde, 0x52, 0x85, 0x18, 0xc3, 0xed, 0x36, 0x3c, 0x3b, 0x84, 0x9c, 0x39, 0x39, 0xcf, 0xdb, 0xff, + 0xd3, 0x82, 0xcb, 0x6b, 0xed, 0x5e, 0x18, 0xd1, 0xe0, 0xaf, 0x8d, 0x0f, 0xdb, 0xff, 0xb6, 0xe0, + 0xa9, 0x01, 0xdf, 0xfc, 0x18, 0x5c, 0xd9, 0xde, 0x4d, 0xba, 0xb2, 0xdd, 0x19, 0x77, 0x48, 0x67, + 0x7e, 0xc7, 0x00, 0x8f, 0xb6, 0x5f, 0xb7, 0xe0, 0x1c, 0x5b, 0xb6, 0x9a, 0x7e, 0x2b, 0xa7, 0x8d, + 0xf3, 0x59, 0x28, 0xfe, 0x2c, 0xdb, 0x80, 0xd2, 0x83, 0x8c, 0xef, 0x4a, 0x28, 0x60, 0x6c, 0xce, + 0x38, 0x5d, 0xf7, 0x6d, 0x1a, 0xf0, 0x0d, 0xa8, 0x90, 0x9c, 0x33, 0x15, 0x0d, 0x41, 0x03, 0xcb, + 0xfe, 0x34, 0x48, 0x67, 0xb1, 0xd4, 0x8c, 0xb3, 0x86, 0x99, 0x71, 0xf6, 0x7f, 0x9c, 0x00, 0xc3, + 0xf8, 0xf1, 0x18, 0x46, 0xb2, 0x97, 0x18, 0xc9, 0x63, 0x1e, 0xdc, 0x0d, 0x53, 0xce, 0xa0, 0x60, + 0x9e, 0x83, 0x54, 0x30, 0xcf, 0xad, 0xdc, 0x38, 0x9e, 0x1c, 0xcb, 0xf3, 0x3d, 0x0b, 0x9e, 0x8a, + 0x91, 0xfb, 0xed, 0x92, 0x8f, 0x5e, 0x96, 0x5e, 0x81, 0x59, 0x27, 0xae, 0x26, 0xc7, 0x8d, 0x11, + 0x49, 0xa1, 0x41, 0x68, 0xe2, 0xc5, 0x3e, 0xe8, 0x85, 0x53, 0xfa, 0xa0, 0x4f, 0x9e, 0xec, 0x83, + 0x6e, 0xff, 0xe5, 0x04, 0x5c, 0xe9, 0xff, 0x32, 0x35, 0xa1, 0x86, 0xbb, 0xe4, 0x7f, 0x15, 0xe6, + 0x22, 0x59, 0xc1, 0xd8, 0x1e, 0x74, 0xf4, 0xe5, 0xb6, 0x01, 0xc3, 0x04, 0x26, 0xab, 0xd9, 0x10, + 0x53, 0xb9, 0xde, 0xf0, 0xbb, 0x2a, 0x82, 0x41, 0xd7, 0x5c, 0x33, 0x60, 0x98, 0xc0, 0xd4, 0xbe, + 0xa1, 0x93, 0x67, 0xee, 0x1b, 0x5a, 0x87, 0x4b, 0xca, 0x1b, 0xee, 0xba, 0x1f, 0xac, 0xf9, 0x9d, + 0x6e, 0x9b, 0xca, 0x18, 0x06, 0x26, 0xec, 0x15, 0x59, 0xe5, 0x12, 0x66, 0x21, 0x61, 0x76, 0x5d, + 0xfb, 0x7b, 0x05, 0xb8, 0x10, 0x37, 0xfb, 0x9a, 0xef, 0x35, 0x5d, 0xee, 0x53, 0xf8, 0x1a, 0x4c, + 0x46, 0x87, 0x5d, 0xd5, 0xd8, 0x7f, 0x43, 0x89, 0xb3, 0x7d, 0xd8, 0x65, 0xbd, 0x7d, 0x39, 0xa3, + 0x0a, 0xb7, 0x0c, 0xf3, 0x4a, 0x64, 0x53, 0xcf, 0x0e, 0xd1, 0x03, 0x2f, 0x27, 0x47, 0xf3, 0xc3, + 0xa3, 0x72, 0x46, 0xf0, 0xf1, 0x8a, 0xa6, 0x94, 0x1c, 0xf3, 0xe4, 0x1e, 0xcc, 0xb7, 0x9d, 0x30, + 0xba, 0xd3, 0x6d, 0x3a, 0x11, 0xdd, 0x76, 0xa5, 0x87, 0xc6, 0x68, 0x81, 0x01, 0xfa, 0x2a, 0x7b, + 0x33, 0x41, 0x09, 0x53, 0x94, 0xc9, 0x01, 0x10, 0x56, 0xb2, 0x1d, 0x38, 0x5e, 0x28, 0xbe, 0x8a, + 0xf1, 0x1b, 0x3d, 0x10, 0x41, 0x9f, 0x0c, 0x37, 0xfb, 0xa8, 0x61, 0x06, 0x07, 0xf2, 0x1c, 0x4c, + 0x05, 0xd4, 0x09, 0x65, 0x67, 0x96, 0xe2, 0xf9, 0x8f, 0xbc, 0x14, 0x25, 0xd4, 0x9c, 0x50, 0x53, + 0x8f, 0x98, 0x50, 0x7f, 0x66, 0xc1, 0x7c, 0xdc, 0x4d, 0x8f, 0x61, 0x67, 0xed, 0x24, 0x77, 0xd6, + 0x1b, 0x79, 0x2d, 0x89, 0x03, 0x36, 0xd3, 0x3f, 0x9c, 0x32, 0xbf, 0x8f, 0x3b, 0x86, 0x7f, 0x11, + 0x4a, 0x6a, 0x56, 0x2b, 0x95, 0x75, 0xcc, 0x03, 0x76, 0x42, 0x99, 0x31, 0x02, 0x9a, 0x24, 0x13, + 0x8c, 0xf9, 0xb1, 0xad, 0xbc, 0x29, 0xb7, 0x69, 0x39, 0xec, 0xf5, 0x56, 0xae, 0xb6, 0xef, 0xac, + 0xad, 0x5c, 0xd5, 0x21, 0x77, 0xe0, 0x72, 0x37, 0xf0, 0x79, 0x6c, 0xf2, 0x3a, 0x75, 0x9a, 0x6d, + 0xd7, 0xa3, 0xca, 0x8a, 0x21, 0x3c, 0x29, 0x9e, 0x3a, 0x3e, 0x2a, 0x5f, 0xae, 0x65, 0xa3, 0xe0, + 0xa0, 0xba, 0xc9, 0xc0, 0xac, 0xc9, 0x21, 0x02, 0xb3, 0xfe, 0xbe, 0xb6, 0x15, 0xd2, 0x50, 0x86, + 0x47, 0x7d, 0x2e, 0xaf, 0xae, 0xcc, 0x58, 0xd6, 0xe3, 0x21, 0x55, 0x91, 0x4c, 0x51, 0xb3, 0x1f, + 0x6c, 0x90, 0x9a, 0x3a, 0xa5, 0x41, 0x2a, 0xf6, 0xaf, 0x9f, 0xfe, 0x61, 0xfa, 0xd7, 0xcf, 0x7c, + 0xa8, 0xfc, 0xeb, 0x3f, 0x28, 0xc2, 0x62, 0x5a, 0x03, 0x39, 0xfb, 0xa0, 0xb3, 0x7f, 0x68, 0xc1, + 0xa2, 0x9a, 0x3d, 0x82, 0x27, 0x55, 0x57, 0x0d, 0x9b, 0x39, 0x4d, 0x5a, 0xa1, 0x4b, 0xe9, 0x68, + 0xf6, 0xed, 0x14, 0x37, 0xec, 0xe3, 0x4f, 0xde, 0x81, 0x59, 0x6d, 0x91, 0x3f, 0x55, 0x04, 0xda, + 0x02, 0xd7, 0xa2, 0x62, 0x12, 0x68, 0xd2, 0x23, 0x1f, 0x58, 0x00, 0x0d, 0xb5, 0xcd, 0xa9, 0xd9, + 0x75, 0x3b, 0xaf, 0xd9, 0xa5, 0x37, 0xd0, 0x58, 0x59, 0xd6, 0x45, 0x21, 0x1a, 0x8c, 0xc9, 0x2f, + 0x71, 0x5b, 0xbc, 0xd6, 0xee, 0xd8, 0x7c, 0x2a, 0x8c, 0xef, 0x3b, 0x7c, 0x82, 0x62, 0x1a, 0xab, + 0x52, 0x06, 0x28, 0xc4, 0x84, 0x10, 0xf6, 0x6b, 0xa0, 0xbd, 0x3d, 0xd9, 0xb2, 0xc5, 0xfd, 0x3d, + 0x6b, 0x4e, 0xb4, 0x27, 0x87, 0xa0, 0x5e, 0xb6, 0xae, 0x2b, 0x00, 0xc6, 0x38, 0xf6, 0x17, 0x60, + 0xfe, 0x8d, 0xc0, 0xe9, 0xee, 0xb9, 0xdc, 0xe6, 0xcd, 0xce, 0x56, 0x3f, 0x0e, 0xd3, 0x4e, 0xb3, + 0x99, 0x95, 0x0b, 0xa2, 0x22, 0x8a, 0x51, 0xc1, 0x87, 0x3a, 0x46, 0xd9, 0x7f, 0x60, 0x01, 0x89, + 0xef, 0x0d, 0x5d, 0xaf, 0xb5, 0xe5, 0x44, 0x8d, 0x3d, 0x76, 0x3e, 0xda, 0xe3, 0xa5, 0x59, 0xe7, + 0xa3, 0x1b, 0x1a, 0x82, 0x06, 0x16, 0x79, 0x0f, 0x66, 0xc5, 0xbf, 0xb7, 0xb5, 0x85, 0x60, 0xec, + 0x08, 0x02, 0xb1, 0xa1, 0x70, 0x99, 0xc4, 0x28, 0xbc, 0x11, 0x73, 0x40, 0x93, 0x1d, 0x6b, 0xaa, + 0x0d, 0x6f, 0xb7, 0xdd, 0x7b, 0xd0, 0xdc, 0x89, 0x9b, 0xaa, 0x1b, 0xf8, 0xbb, 0x6e, 0x9b, 0xa6, + 0x9b, 0xaa, 0x26, 0x8a, 0x51, 0xc1, 0x87, 0x6b, 0xaa, 0xdf, 0xb3, 0xe0, 0xe2, 0x46, 0x18, 0xb9, + 0xfe, 0x3a, 0x0d, 0x23, 0xb6, 0xad, 0xb0, 0xc5, 0xa7, 0xd7, 0x1e, 0xc6, 0x71, 0x7b, 0x1d, 0x16, + 0xe5, 0x1d, 0x66, 0x6f, 0x27, 0xa4, 0x91, 0xa1, 0xc7, 0xeb, 0x79, 0xbc, 0x96, 0x82, 0x63, 0x5f, + 0x0d, 0x46, 0x45, 0x5e, 0x66, 0xc6, 0x54, 0x0a, 0x49, 0x2a, 0xf5, 0x14, 0x1c, 0xfb, 0x6a, 0xd8, + 0xdf, 0x2d, 0xc0, 0x05, 0xfe, 0x19, 0xa9, 0xa0, 0x8b, 0x6f, 0x0c, 0x0a, 0xba, 0x18, 0x73, 0x2a, + 0x73, 0x5e, 0xa7, 0x08, 0xb9, 0xf8, 0x07, 0x16, 0x2c, 0x34, 0x93, 0x2d, 0x9d, 0x8f, 0x4d, 0x27, + 0xab, 0x0f, 0x85, 0xcb, 0x56, 0xaa, 0x10, 0xd3, 0xfc, 0xc9, 0x2f, 0x5b, 0xb0, 0x90, 0x14, 0x53, + 0xad, 0xee, 0x67, 0xd0, 0x48, 0xda, 0xc7, 0x3a, 0x59, 0x1e, 0x62, 0x5a, 0x04, 0xfb, 0x8f, 0x26, + 0x64, 0x97, 0x9e, 0x45, 0x44, 0x01, 0xb9, 0x0f, 0xa5, 0xa8, 0x1d, 0x8a, 0x42, 0xf9, 0xb5, 0x63, + 0x9e, 0x08, 0xb7, 0x37, 0xeb, 0xc2, 0x7d, 0x20, 0x56, 0xda, 0x64, 0x09, 0x53, 0x3e, 0x15, 0x2f, + 0xce, 0xb8, 0xd1, 0x95, 0x8c, 0x73, 0x39, 0x8a, 0x6e, 0xaf, 0xd5, 0xd2, 0x8c, 0x65, 0x09, 0x63, + 0xac, 0x78, 0xd9, 0xbf, 0x61, 0x41, 0xe9, 0xa6, 0xaf, 0xd6, 0x91, 0x9f, 0xce, 0xc1, 0xd0, 0xa3, + 0xf5, 0x41, 0x7d, 0x4d, 0x19, 0x1f, 0x31, 0x5e, 0x4f, 0x98, 0x79, 0x9e, 0x36, 0x68, 0xaf, 0xf0, + 0x3c, 0x57, 0x8c, 0xd4, 0x4d, 0x7f, 0x67, 0xa0, 0xe9, 0xf1, 0x57, 0x8a, 0x70, 0xee, 0x4d, 0xe7, + 0x90, 0x7a, 0x91, 0x33, 0xfa, 0x26, 0xf1, 0x0a, 0xcc, 0x3a, 0x5d, 0x7e, 0x0f, 0x66, 0xe8, 0xf8, + 0xb1, 0xe5, 0x24, 0x06, 0xa1, 0x89, 0x17, 0x2f, 0x68, 0x22, 0xed, 0x4e, 0xd6, 0x52, 0xb4, 0x96, + 0x82, 0x63, 0x5f, 0x0d, 0x72, 0x13, 0x88, 0x8c, 0x46, 0xad, 0x34, 0x1a, 0x7e, 0xcf, 0x13, 0x4b, + 0x9a, 0x30, 0xaa, 0xe8, 0xc3, 0xe6, 0x56, 0x1f, 0x06, 0x66, 0xd4, 0x22, 0x9f, 0x87, 0xa5, 0x06, + 0xa7, 0x2c, 0x8f, 0x1e, 0x26, 0x45, 0x71, 0xfc, 0xd4, 0x71, 0x02, 0x6b, 0x03, 0xf0, 0x70, 0x20, + 0x05, 0x26, 0x69, 0x18, 0xf9, 0x81, 0xd3, 0xa2, 0x26, 0xdd, 0xa9, 0xa4, 0xa4, 0xf5, 0x3e, 0x0c, + 0xcc, 0xa8, 0x45, 0xbe, 0x04, 0xa5, 0x68, 0x2f, 0xa0, 0xe1, 0x9e, 0xdf, 0x6e, 0x4a, 0xbf, 0x85, + 0x31, 0x2d, 0x6d, 0xb2, 0xf7, 0xb7, 0x15, 0x55, 0x63, 0x78, 0xab, 0x22, 0x8c, 0x79, 0x92, 0x00, + 0xa6, 0xc2, 0x86, 0xdf, 0xa5, 0xa1, 0x54, 0xd9, 0x6f, 0xe6, 0xc2, 0x9d, 0x5b, 0x8e, 0x0c, 0x1b, + 0x1f, 0xe7, 0x80, 0x92, 0x93, 0xfd, 0xfb, 0x13, 0x30, 0x67, 0x22, 0x0e, 0xb1, 0x36, 0x7d, 0xc5, + 0x82, 0xb9, 0x86, 0xef, 0x45, 0x81, 0xdf, 0x16, 0xf6, 0xab, 0x7c, 0x34, 0x0a, 0x46, 0x6a, 0x9d, + 0x46, 0x8e, 0xdb, 0x36, 0x4c, 0x61, 0x06, 0x1b, 0x4c, 0x30, 0x25, 0x5f, 0xb7, 0x60, 0x21, 0x76, + 0x73, 0x8b, 0x0d, 0x69, 0xb9, 0x0a, 0xa2, 0x97, 0xfa, 0x6b, 0x49, 0x4e, 0x98, 0x66, 0x6d, 0xef, + 0xc0, 0x62, 0xba, 0xb7, 0x59, 0x53, 0x76, 0x1d, 0x39, 0xd7, 0x0b, 0x71, 0x53, 0xd6, 0x9c, 0x30, + 0x44, 0x0e, 0x21, 0x2f, 0xc0, 0x4c, 0xc7, 0x09, 0x5a, 0xae, 0xe7, 0xb4, 0x79, 0x2b, 0x16, 0x8c, + 0x05, 0x49, 0x96, 0xa3, 0xc6, 0xb0, 0x3f, 0x0e, 0x73, 0x5b, 0x8e, 0xd7, 0xa2, 0x4d, 0xb9, 0x0e, + 0x3f, 0x3a, 0xa6, 0xed, 0x07, 0x93, 0x30, 0x6b, 0x9c, 0xcd, 0xce, 0xfe, 0x9c, 0x95, 0x48, 0xa9, + 0x51, 0xc8, 0x31, 0xa5, 0xc6, 0x67, 0x01, 0x76, 0x5d, 0xcf, 0x0d, 0xf7, 0x4e, 0x99, 0xac, 0x83, + 0xdf, 0xeb, 0x5e, 0xd7, 0x14, 0xd0, 0xa0, 0x16, 0x5f, 0x9e, 0x15, 0x4f, 0xc8, 0x3c, 0xf5, 0x81, + 0x65, 0x6c, 0x37, 0x53, 0x79, 0x38, 0x0b, 0x18, 0x1d, 0xb3, 0xa2, 0xb6, 0x1f, 0x91, 0x6b, 0xe8, + 0xa4, 0x5d, 0x69, 0x1b, 0x66, 0x02, 0x1a, 0xf6, 0x3a, 0xec, 0xc4, 0x38, 0x3d, 0x72, 0x33, 0x70, + 0xb7, 0x0d, 0x94, 0xf5, 0x51, 0x53, 0x5a, 0x7e, 0x0d, 0xce, 0x25, 0x44, 0x18, 0x29, 0xfb, 0x90, + 0x0f, 0x99, 0x06, 0x80, 0xd3, 0x5c, 0xe6, 0xb0, 0xbe, 0x68, 0x1b, 0xd9, 0x3a, 0x74, 0x5f, 0x08, + 0xe7, 0x1c, 0x01, 0xb3, 0xff, 0x72, 0x0a, 0xe4, 0xfd, 0xf7, 0x10, 0xcb, 0x95, 0x79, 0xeb, 0x35, + 0x71, 0x8a, 0x5b, 0xaf, 0x9b, 0x30, 0xe7, 0x7a, 0x6e, 0xe4, 0x3a, 0x6d, 0x6e, 0xdc, 0x91, 0xdb, + 0xa9, 0xf2, 0x5e, 0x9e, 0xdb, 0x30, 0x60, 0x19, 0x74, 0x12, 0x75, 0xc9, 0x6d, 0x28, 0xf2, 0xfd, + 0x46, 0x0e, 0xe0, 0xd1, 0x2f, 0xe9, 0xb9, 0x7f, 0x86, 0x08, 0x69, 0x12, 0x94, 0xf8, 0xe1, 0x43, + 0xa4, 0x2b, 0xd1, 0xc7, 0x6f, 0x39, 0x8e, 0xe3, 0xc3, 0x47, 0x0a, 0x8e, 0x7d, 0x35, 0x18, 0x95, + 0x5d, 0xc7, 0x6d, 0xf7, 0x02, 0x1a, 0x53, 0x99, 0x4a, 0x52, 0xb9, 0x9e, 0x82, 0x63, 0x5f, 0x0d, + 0xb2, 0x0b, 0x73, 0xb2, 0x4c, 0xb8, 0x5c, 0x4d, 0x9f, 0xf2, 0x2b, 0xb9, 0x6b, 0xdd, 0x75, 0x83, + 0x12, 0x26, 0xe8, 0x92, 0x1e, 0x9c, 0x77, 0xbd, 0x86, 0xef, 0x35, 0xda, 0xbd, 0xd0, 0x3d, 0xa0, + 0x71, 0x3c, 0xd1, 0x69, 0x98, 0x5d, 0x3a, 0x3e, 0x2a, 0x9f, 0xdf, 0x48, 0x93, 0xc3, 0x7e, 0x0e, + 0xe4, 0xcb, 0x16, 0x5c, 0x6a, 0xf8, 0x5e, 0xc8, 0xe3, 0xff, 0x0f, 0xe8, 0xb5, 0x20, 0xf0, 0x03, + 0xc1, 0xbb, 0x74, 0x4a, 0xde, 0xdc, 0xa6, 0xb8, 0x96, 0x45, 0x12, 0xb3, 0x39, 0x91, 0x77, 0x61, + 0xa6, 0x1b, 0xf8, 0x07, 0x6e, 0x93, 0x06, 0xd2, 0x7d, 0x6f, 0x33, 0x8f, 0x7c, 0x24, 0x35, 0x49, + 0x33, 0x5e, 0x7a, 0x54, 0x09, 0x6a, 0x7e, 0xf6, 0xff, 0x99, 0x85, 0xf9, 0x24, 0x3a, 0xf9, 0x39, + 0x80, 0x6e, 0xe0, 0x77, 0x68, 0xb4, 0x47, 0x75, 0x5c, 0xc8, 0xad, 0x71, 0xd3, 0x5e, 0x28, 0x7a, + 0xca, 0xe5, 0x85, 0x2d, 0x17, 0x71, 0x29, 0x1a, 0x1c, 0x49, 0x00, 0xd3, 0xfb, 0x62, 0xdb, 0x95, + 0x5a, 0xc8, 0x9b, 0xb9, 0xe8, 0x4c, 0x92, 0x33, 0x0f, 0x68, 0x90, 0x45, 0xa8, 0x18, 0x91, 0x1d, + 0x28, 0xdc, 0xa7, 0x3b, 0xf9, 0xc4, 0x5c, 0xdf, 0xa5, 0xf2, 0x34, 0x53, 0x9d, 0x3e, 0x3e, 0x2a, + 0x17, 0xee, 0xd2, 0x1d, 0x64, 0xc4, 0xd9, 0x77, 0x35, 0xc5, 0xdd, 0xbd, 0x5c, 0x2a, 0xc6, 0xfc, + 0xae, 0x84, 0x23, 0x80, 0xf8, 0x2e, 0x59, 0x84, 0x8a, 0x11, 0x79, 0x17, 0x4a, 0xf7, 0x9d, 0x03, + 0xba, 0x1b, 0xf8, 0x5e, 0x24, 0xfd, 0xac, 0xc6, 0x0c, 0x15, 0xb8, 0xab, 0xc8, 0x49, 0xbe, 0x7c, + 0x7b, 0xd7, 0x85, 0x18, 0xb3, 0x23, 0x07, 0x30, 0xe3, 0xd1, 0xfb, 0x48, 0xdb, 0x6e, 0x23, 0x1f, + 0xd7, 0xfc, 0x5b, 0x92, 0x9a, 0xe4, 0xcc, 0xf7, 0x3d, 0x55, 0x86, 0x9a, 0x17, 0xeb, 0xcb, 0x7b, + 0xfe, 0x8e, 0x5c, 0xa8, 0xc6, 0xec, 0x4b, 0x7d, 0x32, 0x15, 0x7d, 0x79, 0xd3, 0xdf, 0x41, 0x46, + 0x9c, 0xcd, 0x91, 0x86, 0x76, 0xf2, 0x91, 0xcb, 0xd4, 0xad, 0x7c, 0x9d, 0x9b, 0xc4, 0x1c, 0x89, + 0x4b, 0xd1, 0xe0, 0xc8, 0xda, 0xb6, 0x25, 0x8d, 0x95, 0x72, 0xa1, 0x1a, 0xb3, 0x6d, 0x93, 0xa6, + 0x4f, 0xd1, 0xb6, 0xaa, 0x0c, 0x35, 0x2f, 0xc6, 0xd7, 0x95, 0x96, 0xbf, 0x7c, 0x96, 0xaa, 0xa4, + 0x1d, 0x51, 0xf0, 0x55, 0x65, 0xa8, 0x79, 0xb1, 0xf6, 0x0e, 0xf7, 0x0f, 0xef, 0x3b, 0xed, 0x7d, + 0xd7, 0x6b, 0xc9, 0x38, 0xc7, 0x71, 0xd3, 0xde, 0xee, 0x1f, 0xde, 0x15, 0xf4, 0xcc, 0xf6, 0x8e, + 0x4b, 0xd1, 0xe0, 0x48, 0xfe, 0xa9, 0x05, 0x53, 0xdd, 0x76, 0xaf, 0xe5, 0x7a, 0x4b, 0x73, 0x5c, + 0x4f, 0xfc, 0x4c, 0x9e, 0x2b, 0xf4, 0x4a, 0x8d, 0x93, 0x16, 0x8a, 0xe2, 0x4f, 0x68, 0x9f, 0x3d, + 0x5e, 0xf8, 0x0b, 0x7f, 0x5e, 0x5e, 0xa2, 0x5e, 0xc3, 0x6f, 0xba, 0x5e, 0x6b, 0xf5, 0x5e, 0xe8, + 0x7b, 0x2b, 0xe8, 0xdc, 0x57, 0x3a, 0xba, 0x94, 0x69, 0xf9, 0x93, 0x30, 0x6b, 0x90, 0x78, 0x94, + 0xa2, 0x37, 0x67, 0x2a, 0x7a, 0xbf, 0x31, 0x05, 0x73, 0x66, 0x46, 0xbd, 0x21, 0xb4, 0x2f, 0x7d, + 0xe2, 0x98, 0x18, 0xe5, 0xc4, 0xc1, 0x8e, 0x98, 0xc6, 0xed, 0x91, 0x32, 0x6f, 0x6d, 0xe4, 0xa6, + 0x70, 0xc7, 0x47, 0x4c, 0xa3, 0x30, 0xc4, 0x04, 0xd3, 0x11, 0x1c, 0x4a, 0x98, 0xda, 0x2a, 0x14, + 0xbb, 0x62, 0x52, 0x6d, 0x4d, 0xa8, 0x6a, 0x2f, 0x02, 0xc4, 0x99, 0xe5, 0xe4, 0xad, 0xa2, 0xd6, + 0x87, 0x8d, 0x8c, 0x77, 0x06, 0x16, 0x79, 0x0e, 0xa6, 0x98, 0xea, 0x43, 0x9b, 0x32, 0x0c, 0x5b, + 0x9f, 0xe3, 0xaf, 0xf3, 0x52, 0x94, 0x50, 0xf2, 0x2a, 0xd3, 0x52, 0x63, 0x85, 0x45, 0x46, 0x57, + 0x5f, 0x8c, 0xb5, 0xd4, 0x18, 0x86, 0x09, 0x4c, 0x26, 0x3a, 0x65, 0xfa, 0x05, 0x5f, 0x1b, 0x0c, + 0xd1, 0xb9, 0xd2, 0x81, 0x02, 0xc6, 0xed, 0x4a, 0x29, 0x7d, 0x84, 0xcf, 0xe9, 0xa2, 0x61, 0x57, + 0x4a, 0xc1, 0xb1, 0xaf, 0x06, 0xfb, 0x18, 0x79, 0x21, 0x3a, 0x2b, 0x9c, 0x6d, 0x07, 0x5c, 0x65, + 0x7e, 0xd5, 0x3c, 0x6b, 0xe5, 0x38, 0x87, 0xc4, 0xa8, 0x1d, 0xfe, 0xb0, 0x35, 0xde, 0xb1, 0xe8, + 0x0b, 0x30, 0x9f, 0xdc, 0x85, 0x72, 0xbf, 0xf9, 0xf8, 0xda, 0x24, 0x5c, 0xb8, 0xd5, 0x72, 0xbd, + 0x74, 0xb6, 0xa8, 0xac, 0x64, 0xdb, 0xd6, 0xa8, 0xc9, 0xb6, 0xe3, 0x78, 0x2e, 0x99, 0xcd, 0x3c, + 0x3b, 0x9e, 0x4b, 0xa5, 0x3a, 0x4f, 0xe2, 0x92, 0x3f, 0xb3, 0xe0, 0x69, 0xa7, 0x29, 0xce, 0x05, + 0x4e, 0x5b, 0x96, 0x1a, 0x39, 0x6e, 0xe5, 0x8c, 0x0e, 0xc7, 0xdc, 0xe5, 0xfb, 0x3f, 0x7e, 0xa5, + 0x72, 0x02, 0x57, 0xd1, 0xe3, 0x3f, 0x26, 0xbf, 0xe0, 0xe9, 0x93, 0x50, 0xf1, 0x44, 0xf1, 0xc9, + 0xdf, 0x86, 0x85, 0xc4, 0x07, 0x4b, 0x4b, 0x78, 0x49, 0x5c, 0x58, 0xd4, 0x93, 0x20, 0x4c, 0xe3, + 0x2e, 0xbf, 0x05, 0x1f, 0x7d, 0xa4, 0x9c, 0x23, 0x0d, 0xb6, 0xaf, 0x58, 0x50, 0x12, 0x76, 0x6d, + 0xa4, 0xbb, 0x29, 0x27, 0xcc, 0xd4, 0xc9, 0xbb, 0x52, 0xdb, 0xc8, 0x70, 0xc2, 0x64, 0x6b, 0xf9, + 0xbe, 0xeb, 0x35, 0x65, 0x2f, 0xeb, 0xb5, 0xfc, 0x4d, 0xd7, 0x6b, 0x22, 0x87, 0xe8, 0xd5, 0xbe, + 0x30, 0xd0, 0xde, 0xf4, 0xab, 0x16, 0xcc, 0xf3, 0x18, 0xd8, 0xf8, 0x4c, 0xf8, 0x8a, 0x76, 0x36, + 0x12, 0x62, 0x5c, 0x49, 0x3a, 0x1b, 0x3d, 0x3c, 0x2a, 0xcf, 0x8a, 0xa8, 0xd9, 0xa4, 0xef, 0xd1, + 0xe7, 0xa4, 0x21, 0x89, 0xbb, 0x44, 0x4d, 0x8c, 0x6c, 0xe7, 0xd0, 0x86, 0xd6, 0xba, 0x22, 0x82, + 0x31, 0x3d, 0xfb, 0x3d, 0x98, 0x33, 0x83, 0x59, 0xc8, 0x2b, 0x30, 0xdb, 0x75, 0xbd, 0x56, 0x32, + 0xe8, 0x51, 0x1b, 0xdb, 0x6b, 0x31, 0x08, 0x4d, 0x3c, 0x5e, 0xcd, 0x8f, 0xab, 0xa5, 0x6c, 0xf4, + 0x35, 0xdf, 0xac, 0x16, 0xff, 0xe1, 0x39, 0xb6, 0x33, 0x82, 0xa6, 0x72, 0xcf, 0xb1, 0x9d, 0xc1, + 0xe3, 0x87, 0x97, 0x63, 0x3b, 0x4b, 0x98, 0xff, 0xb7, 0x72, 0x6c, 0xff, 0x14, 0x8c, 0x9a, 0x5c, + 0x91, 0xed, 0x77, 0xf7, 0xcd, 0xc0, 0x74, 0xdd, 0xe2, 0x32, 0x32, 0x5d, 0x42, 0xed, 0x1d, 0x58, + 0x4c, 0x9f, 0x7a, 0x73, 0x77, 0x28, 0xf8, 0x38, 0x8c, 0x98, 0x0e, 0xd1, 0xbe, 0x06, 0x04, 0xfd, + 0x76, 0x7b, 0xc7, 0x69, 0xec, 0xdf, 0x75, 0xbd, 0xa6, 0x7f, 0x9f, 0xcf, 0x95, 0x55, 0x28, 0x05, + 0x32, 0x26, 0x2e, 0x94, 0x9f, 0xa5, 0x27, 0x9b, 0x0a, 0x96, 0x0b, 0x31, 0xc6, 0xb1, 0xff, 0x68, + 0x02, 0xa6, 0x65, 0x00, 0xe7, 0x63, 0xf0, 0xcd, 0xde, 0x4f, 0x5c, 0xda, 0x6d, 0xe4, 0x12, 0x77, + 0x3a, 0xd0, 0x31, 0x3b, 0x4c, 0x39, 0x66, 0xbf, 0x99, 0x0f, 0xbb, 0x93, 0xbd, 0xb2, 0xff, 0xb0, + 0x08, 0x0b, 0xa9, 0x80, 0x58, 0xa6, 0x30, 0xf5, 0x39, 0x23, 0xde, 0xc9, 0x35, 0xe6, 0x56, 0x07, + 0x1b, 0x9c, 0xec, 0x97, 0x18, 0x26, 0x92, 0xd7, 0xde, 0xce, 0x2d, 0x2f, 0xff, 0x8f, 0xf2, 0xd8, + 0x8e, 0xe8, 0x67, 0x47, 0xbe, 0x6d, 0xc1, 0x05, 0xa7, 0xff, 0x61, 0x03, 0x69, 0xd8, 0xb9, 0x9d, + 0xfb, 0x8b, 0x09, 0xd5, 0xa7, 0xa4, 0x90, 0x59, 0xef, 0x47, 0x60, 0x96, 0x28, 0xf6, 0x7f, 0xb1, + 0xe0, 0xc9, 0x81, 0xa1, 0xdd, 0x3c, 0x33, 0x50, 0x90, 0x84, 0xca, 0x35, 0x23, 0xe7, 0x04, 0x16, + 0xfa, 0x92, 0x2f, 0x9d, 0xcc, 0x25, 0xcd, 0x9e, 0xbc, 0x0c, 0x73, 0x5c, 0x89, 0x60, 0xab, 0x67, + 0x44, 0xbb, 0xf2, 0x8e, 0x82, 0x5b, 0xab, 0xeb, 0x46, 0x39, 0x26, 0xb0, 0xec, 0x6f, 0x5b, 0xb0, + 0x34, 0x28, 0x4f, 0xcc, 0x10, 0x27, 0xe8, 0xbf, 0x95, 0xf2, 0x6f, 0x2f, 0xf7, 0xf9, 0xb7, 0xa7, + 0xce, 0xd0, 0xca, 0x95, 0xdd, 0x38, 0xbe, 0x16, 0x1e, 0xe1, 0xbe, 0xfd, 0x0d, 0x0b, 0x2e, 0x0f, + 0x98, 0xf0, 0x7d, 0x71, 0x0e, 0xd6, 0xa9, 0xe3, 0x1c, 0x26, 0x86, 0x8d, 0x73, 0xb0, 0xff, 0xb8, + 0x00, 0x8b, 0x52, 0x9e, 0x58, 0x93, 0x7c, 0x35, 0x11, 0x25, 0xf0, 0x63, 0xa9, 0x28, 0x81, 0x8b, + 0x69, 0xfc, 0x1f, 0x85, 0x08, 0x7c, 0xb8, 0x42, 0x04, 0xfe, 0x6a, 0x02, 0x2e, 0x65, 0xa6, 0xaf, + 0x21, 0x5f, 0xcb, 0xd8, 0xbd, 0xee, 0xe6, 0x9c, 0x27, 0x67, 0xc8, 0xfd, 0x6b, 0x5c, 0xbf, 0xfa, + 0x5f, 0x36, 0xfd, 0xd9, 0xc5, 0x6e, 0xb4, 0x7b, 0x06, 0x19, 0x7f, 0x46, 0x74, 0x6d, 0xb7, 0x7f, + 0xa1, 0x00, 0xcf, 0x0f, 0x4b, 0xe8, 0x43, 0x1a, 0xfa, 0x14, 0x26, 0x42, 0x9f, 0x1e, 0x93, 0x66, + 0x71, 0x26, 0x51, 0x50, 0xff, 0x7c, 0x52, 0x6f, 0x7b, 0xfd, 0xe3, 0x73, 0xa8, 0x0b, 0xed, 0x69, + 0xa6, 0x7d, 0xaa, 0x14, 0xb8, 0xf1, 0x52, 0x38, 0x5d, 0x17, 0xc5, 0x0f, 0x8f, 0xca, 0xe7, 0xe3, + 0x24, 0x0a, 0xb2, 0x10, 0x55, 0x25, 0xf2, 0x3c, 0xcc, 0x04, 0x02, 0xaa, 0x82, 0x3d, 0xa4, 0x57, + 0x80, 0x28, 0x43, 0x0d, 0x25, 0x5f, 0x32, 0xd4, 0xf5, 0xc9, 0xb3, 0xca, 0x15, 0x72, 0x92, 0xb3, + 0xc3, 0x3b, 0x30, 0x13, 0xaa, 0xf4, 0xb4, 0x42, 0x71, 0x79, 0x69, 0xc8, 0x18, 0x22, 0x76, 0x48, + 0x54, 0xb9, 0x6a, 0xc5, 0xf7, 0xe9, 0x4c, 0xb6, 0x9a, 0x24, 0xb1, 0xf5, 0xf9, 0x4c, 0x18, 0x63, + 0xa1, 0xff, 0x6c, 0x46, 0x22, 0x98, 0x96, 0x2f, 0xf2, 0xc9, 0x5b, 0xa2, 0xad, 0x9c, 0xe2, 0x05, + 0xa4, 0x37, 0x29, 0xbf, 0x8b, 0x53, 0x76, 0x02, 0xc5, 0xca, 0xfe, 0x9e, 0x05, 0xb3, 0x72, 0x8c, + 0x3c, 0x86, 0x60, 0xaa, 0x7b, 0xc9, 0x60, 0xaa, 0x6b, 0xb9, 0xac, 0x58, 0x03, 0x22, 0xa9, 0xee, + 0xc1, 0x9c, 0x99, 0x37, 0x8d, 0x7c, 0xd6, 0x58, 0x71, 0xad, 0x71, 0x32, 0x11, 0xa9, 0x35, 0x39, + 0x5e, 0x8d, 0xed, 0xdf, 0x2c, 0xe9, 0x56, 0xe4, 0x67, 0x57, 0x73, 0xe4, 0x5b, 0x27, 0x8e, 0x7c, + 0x73, 0xe0, 0x4d, 0xe4, 0x3f, 0xf0, 0x6e, 0xc3, 0x8c, 0x5a, 0x16, 0xa5, 0xf2, 0xf0, 0xac, 0xe9, + 0x5e, 0xca, 0x34, 0x10, 0x46, 0xcc, 0x98, 0x2e, 0xfc, 0x0c, 0xaa, 0xfb, 0x50, 0x2f, 0xd7, 0x9a, + 0x0c, 0x79, 0x17, 0x66, 0xef, 0xfb, 0xc1, 0x7e, 0xdb, 0x77, 0x78, 0x72, 0x6c, 0xc8, 0xe3, 0x46, + 0x53, 0x1b, 0x14, 0x85, 0x8f, 0xff, 0xdd, 0x98, 0x3e, 0x9a, 0xcc, 0x48, 0x05, 0x16, 0x3a, 0xae, + 0x87, 0xd4, 0x69, 0xea, 0x98, 0xa9, 0x49, 0x91, 0x8f, 0x57, 0xa9, 0xd6, 0x5b, 0x49, 0x30, 0xa6, + 0xf1, 0xc9, 0xd7, 0x2d, 0x98, 0x0f, 0x12, 0xd6, 0x06, 0x99, 0x74, 0xb3, 0x36, 0xfe, 0x60, 0x4c, + 0x5a, 0x30, 0x84, 0x93, 0x7b, 0xb2, 0x1c, 0x53, 0xbc, 0xc9, 0x17, 0x61, 0x26, 0x94, 0x49, 0xd1, + 0xf2, 0xb9, 0x0a, 0xd7, 0x67, 0x7b, 0x41, 0x34, 0xee, 0x4a, 0x55, 0x82, 0x9a, 0x21, 0xd9, 0x84, + 0x8b, 0xca, 0x7c, 0x92, 0x78, 0xc0, 0x68, 0x2a, 0xce, 0xa1, 0x83, 0x19, 0x70, 0xcc, 0xac, 0xc5, + 0x54, 0x39, 0x9e, 0x8f, 0x50, 0xdc, 0x20, 0x19, 0x97, 0x2e, 0x7c, 0xfe, 0x35, 0x51, 0x42, 0x4f, + 0x0a, 0x09, 0x9c, 0x19, 0x23, 0x24, 0xb0, 0x0e, 0x97, 0xd2, 0x20, 0x9e, 0x1c, 0x89, 0xe7, 0x63, + 0x32, 0xb6, 0xd0, 0x5a, 0x16, 0x12, 0x66, 0xd7, 0x25, 0x77, 0xa1, 0x14, 0x50, 0x7e, 0xc8, 0xaa, + 0x28, 0xe7, 0x9b, 0x91, 0xdd, 0x0c, 0x51, 0x11, 0xc0, 0x98, 0x16, 0xeb, 0x77, 0x27, 0x99, 0x21, + 0xf7, 0x76, 0x8e, 0x2f, 0x67, 0xca, 0xbe, 0x1f, 0x90, 0xb4, 0xcc, 0xfe, 0xfe, 0x3c, 0x9c, 0x4b, + 0xd8, 0x80, 0xc8, 0xb3, 0x50, 0xe4, 0xd9, 0xa2, 0xf8, 0x6a, 0x35, 0x13, 0xaf, 0xa8, 0xa2, 0x71, + 0x04, 0x8c, 0xfc, 0xa2, 0x05, 0x0b, 0xdd, 0x84, 0xd1, 0x5d, 0x2d, 0xe4, 0x63, 0xde, 0xb7, 0x27, + 0x2d, 0xf9, 0x46, 0x6e, 0xf9, 0x24, 0x33, 0x4c, 0x73, 0x67, 0xeb, 0x81, 0xf4, 0xd5, 0x6d, 0xd3, + 0x80, 0x63, 0x4b, 0x45, 0x4f, 0x93, 0x58, 0x4b, 0x82, 0x31, 0x8d, 0xcf, 0x7a, 0x98, 0x7f, 0xdd, + 0x38, 0x6f, 0xb3, 0x55, 0x14, 0x01, 0x8c, 0x69, 0x91, 0xd7, 0x61, 0x5e, 0x26, 0x46, 0xad, 0xf9, + 0xcd, 0x1b, 0x4e, 0xb8, 0x27, 0x4f, 0x38, 0xfa, 0x44, 0xb6, 0x96, 0x80, 0x62, 0x0a, 0x9b, 0x7f, + 0x5b, 0x9c, 0x7d, 0x96, 0x13, 0x98, 0x4a, 0xa6, 0xde, 0x5f, 0x4b, 0x82, 0x31, 0x8d, 0x4f, 0x5e, + 0x30, 0xb6, 0x21, 0x71, 0xab, 0xab, 0x57, 0x83, 0x8c, 0xad, 0xa8, 0x02, 0x0b, 0x3d, 0x7e, 0x20, + 0x6c, 0x2a, 0xa0, 0x9c, 0x8f, 0x9a, 0xe1, 0x9d, 0x24, 0x18, 0xd3, 0xf8, 0xe4, 0x35, 0x38, 0x17, + 0xb0, 0xc5, 0x56, 0x13, 0x10, 0x57, 0xbd, 0xfa, 0x26, 0x0f, 0x4d, 0x20, 0x26, 0x71, 0xc9, 0x1b, + 0x70, 0x3e, 0xce, 0x23, 0xa8, 0x08, 0x88, 0xbb, 0x5f, 0x9d, 0xd4, 0xaa, 0x92, 0x46, 0xc0, 0xfe, + 0x3a, 0xe4, 0xef, 0xc2, 0xa2, 0xd1, 0x12, 0x1b, 0x5e, 0x93, 0x3e, 0x90, 0xb9, 0xde, 0xf8, 0x9b, + 0x2a, 0x6b, 0x29, 0x18, 0xf6, 0x61, 0x93, 0x4f, 0xc1, 0x7c, 0xc3, 0x6f, 0xb7, 0xf9, 0x1a, 0x27, + 0xd2, 0xbe, 0x8b, 0xa4, 0x6e, 0x22, 0xfd, 0x5d, 0x02, 0x82, 0x29, 0x4c, 0x72, 0x13, 0x88, 0xbf, + 0xc3, 0xd4, 0x2b, 0xda, 0x7c, 0x43, 0x3c, 0xd2, 0xcd, 0x34, 0x8e, 0x73, 0xc9, 0x48, 0x81, 0xb7, + 0xfa, 0x30, 0x30, 0xa3, 0x16, 0xcf, 0x89, 0x65, 0x44, 0x56, 0xce, 0xe7, 0xf1, 0x4e, 0x59, 0xda, + 0x7c, 0xf1, 0xc8, 0xb0, 0xca, 0x00, 0xa6, 0x44, 0xe0, 0x46, 0x3e, 0xd9, 0xdd, 0xcc, 0x0c, 0xd0, + 0xf1, 0x1e, 0x21, 0x4a, 0x51, 0x72, 0x22, 0x3f, 0x07, 0xa5, 0x1d, 0xf5, 0x1c, 0x00, 0x4f, 0xe9, + 0x36, 0xf6, 0xbe, 0x98, 0x7a, 0xd9, 0x22, 0x3e, 0x9e, 0x6b, 0x00, 0xc6, 0x2c, 0xc9, 0x73, 0x30, + 0x7b, 0xa3, 0x56, 0xd1, 0xa3, 0xf0, 0x3c, 0xef, 0xfd, 0x49, 0x56, 0x05, 0x4d, 0x00, 0x9b, 0x61, + 0x5a, 0x7d, 0x23, 0xc9, 0x17, 0x36, 0x32, 0xb4, 0x31, 0x86, 0xcd, 0xef, 0x67, 0xb1, 0xbe, 0x74, + 0x21, 0x85, 0x2d, 0xcb, 0x51, 0x63, 0x90, 0x77, 0x60, 0x56, 0xee, 0x17, 0x7c, 0x6d, 0xba, 0x78, + 0xba, 0xa8, 0x5d, 0x8c, 0x49, 0xa0, 0x49, 0x8f, 0x5f, 0x2a, 0xf2, 0x2c, 0xe9, 0xf4, 0x7a, 0xaf, + 0xdd, 0x5e, 0xba, 0xc4, 0xd7, 0xcd, 0xf8, 0x52, 0x31, 0x06, 0xa1, 0x89, 0x47, 0x5e, 0x52, 0x7e, + 0x36, 0x1f, 0x49, 0xdc, 0xb2, 0x6a, 0x3f, 0x1b, 0xad, 0x74, 0x0f, 0x70, 0xec, 0xbf, 0xfc, 0x08, + 0x07, 0x97, 0x1d, 0x58, 0x56, 0x1a, 0x5f, 0xff, 0x24, 0x59, 0x5a, 0x4a, 0x98, 0x4a, 0x96, 0xef, + 0x0e, 0xc4, 0xc4, 0x13, 0xa8, 0x90, 0x1d, 0x28, 0x38, 0xed, 0x9d, 0xa5, 0x27, 0xf3, 0x50, 0x5d, + 0xf5, 0xa3, 0xfb, 0xc2, 0x19, 0xaf, 0xb2, 0x59, 0x45, 0x46, 0xdc, 0xfe, 0xf2, 0x84, 0xbe, 0x3d, + 0xd1, 0x59, 0x6f, 0xdf, 0x33, 0x47, 0xb5, 0x95, 0xc7, 0xa3, 0xd2, 0x7d, 0x6f, 0x66, 0x88, 0x0d, + 0x29, 0x73, 0x4c, 0x77, 0xf5, 0x3c, 0xce, 0x25, 0x9f, 0x50, 0x32, 0xa3, 0xaf, 0x38, 0xd2, 0x26, + 0x67, 0xb1, 0xfd, 0x3b, 0xa0, 0x2d, 0x71, 0x29, 0xc7, 0x91, 0x00, 0x8a, 0x6e, 0x18, 0xb9, 0x7e, + 0x8e, 0x11, 0xa6, 0xa9, 0x54, 0xb8, 0xdc, 0x81, 0x9d, 0x03, 0x50, 0xb0, 0x62, 0x3c, 0xbd, 0x96, + 0xeb, 0x3d, 0x90, 0x9f, 0x7f, 0x3b, 0x77, 0x8f, 0x10, 0xc1, 0x93, 0x03, 0x50, 0xb0, 0x22, 0xf7, + 0xc4, 0x48, 0xcb, 0xe7, 0x01, 0xf1, 0xcd, 0x6a, 0x8a, 0x5f, 0x62, 0xc4, 0x31, 0x5e, 0x61, 0xc7, + 0x95, 0x3a, 0xcc, 0x98, 0xbc, 0xea, 0x5b, 0x1b, 0x59, 0xbc, 0xea, 0x5b, 0x1b, 0xc8, 0x98, 0x90, + 0xaf, 0x5a, 0x00, 0x8e, 0x7e, 0x20, 0x3f, 0x9f, 0x07, 0x66, 0x06, 0x3d, 0xb8, 0x2f, 0x7c, 0x20, + 0x63, 0x28, 0x1a, 0x9c, 0xc9, 0xbb, 0x30, 0xed, 0x88, 0xc7, 0xb4, 0xa4, 0x3b, 0x6f, 0x3e, 0x2f, + 0xc4, 0xa5, 0x24, 0xe0, 0xb6, 0x13, 0x09, 0x42, 0xc5, 0x90, 0xf1, 0x8e, 0x02, 0x87, 0xee, 0xba, + 0xfb, 0xd2, 0x62, 0x53, 0x1f, 0x3b, 0xcb, 0x3d, 0x23, 0x96, 0xc5, 0x5b, 0x82, 0x50, 0x31, 0x14, + 0x8f, 0x1b, 0x3b, 0x9e, 0xa3, 0x83, 0xb4, 0xf2, 0x09, 0xe5, 0x33, 0xc3, 0xbe, 0x8c, 0xc7, 0x8d, + 0x4d, 0x46, 0x98, 0xe4, 0x4b, 0x0e, 0x60, 0xca, 0xe1, 0xcf, 0xfc, 0xc9, 0xf3, 0x11, 0xe6, 0xf1, + 0x64, 0x60, 0xaa, 0x0d, 0xf8, 0xe2, 0x22, 0x1f, 0x13, 0x94, 0xdc, 0xc8, 0xaf, 0x59, 0x30, 0x2d, + 0x3c, 0x4d, 0x99, 0x96, 0xc8, 0xbe, 0xfd, 0x0b, 0x67, 0x90, 0x52, 0x5b, 0x7a, 0xc1, 0x4a, 0xbf, + 0x91, 0x9f, 0xd4, 0x6e, 0x74, 0xa2, 0xf4, 0x44, 0x3f, 0x58, 0x25, 0xdd, 0xf2, 0xa7, 0x60, 0xce, + 0xa4, 0x32, 0x92, 0x27, 0xec, 0x5f, 0x14, 0x00, 0x78, 0x43, 0x8b, 0xb4, 0x0c, 0x1d, 0x9e, 0xff, + 0x73, 0xcf, 0x6f, 0xe6, 0xf3, 0x3e, 0xa3, 0x99, 0x5d, 0x01, 0x64, 0xb2, 0xcf, 0x3d, 0xbf, 0x89, + 0x92, 0x09, 0x69, 0xc1, 0x64, 0xd7, 0x89, 0xf6, 0xf2, 0x4f, 0xe5, 0x30, 0x23, 0xe2, 0x13, 0xa3, + 0x3d, 0xe4, 0x0c, 0xc8, 0xfb, 0x16, 0x4c, 0x8b, 0x64, 0x0e, 0xea, 0x36, 0x63, 0x6c, 0xaf, 0x02, + 0xd5, 0x66, 0x2b, 0x22, 0x63, 0x84, 0xec, 0x41, 0xad, 0x78, 0xc8, 0x52, 0x54, 0x6c, 0x97, 0x3f, + 0xb0, 0x60, 0xce, 0x44, 0xcd, 0xe8, 0xa6, 0x9f, 0x31, 0xbb, 0x29, 0xcf, 0xf6, 0x30, 0x7b, 0xfc, + 0xbf, 0x5b, 0x60, 0x3c, 0xb8, 0x1d, 0x3b, 0xfc, 0x5a, 0x43, 0x3b, 0xfc, 0x4e, 0x8c, 0xe8, 0xf0, + 0x5b, 0x18, 0xc9, 0xe1, 0x77, 0x72, 0x74, 0x87, 0xdf, 0xe2, 0x60, 0x87, 0x5f, 0xfb, 0x9b, 0x16, + 0x9c, 0xef, 0xdb, 0x6d, 0x98, 0x72, 0x1a, 0xf8, 0x7e, 0x34, 0xc0, 0x51, 0x0e, 0x63, 0x10, 0x9a, + 0x78, 0x64, 0x1d, 0x16, 0x65, 0xb6, 0xfb, 0x7a, 0xb7, 0xed, 0x66, 0xa6, 0xd9, 0xd8, 0x4e, 0xc1, + 0xb1, 0xaf, 0x86, 0xfd, 0x3b, 0x16, 0xcc, 0x1a, 0xc1, 0xb9, 0xec, 0x3b, 0x78, 0x10, 0xb3, 0x14, + 0x23, 0x4e, 0xf4, 0xcf, 0x6f, 0x8f, 0x04, 0x4c, 0x5c, 0x64, 0xb6, 0x8c, 0x5c, 0xc8, 0xf1, 0x45, + 0x26, 0x2b, 0x45, 0x09, 0x15, 0x59, 0x6e, 0x69, 0x97, 0x37, 0x7a, 0xc1, 0xcc, 0x72, 0x4b, 0xbb, + 0xc8, 0x21, 0x9c, 0x1d, 0xd3, 0xd2, 0xa5, 0x2f, 0xb8, 0xf1, 0xae, 0x80, 0x13, 0x44, 0x28, 0x60, + 0xe4, 0x0a, 0x14, 0xa8, 0xd7, 0x94, 0x26, 0x05, 0xfd, 0xf2, 0xdf, 0x35, 0xaf, 0x89, 0xac, 0xdc, + 0x7e, 0x0b, 0xe6, 0xea, 0xb4, 0x11, 0xd0, 0xe8, 0x4d, 0x7a, 0x38, 0xf4, 0x53, 0x82, 0x6c, 0xb4, + 0xa7, 0x9e, 0x12, 0x64, 0xd5, 0x59, 0xb9, 0xfd, 0x2f, 0x2d, 0x48, 0x3d, 0x7e, 0x61, 0x5c, 0x6a, + 0x58, 0x03, 0x2f, 0x35, 0x4c, 0x43, 0xf8, 0xc4, 0x89, 0x86, 0xf0, 0x9b, 0x40, 0x3a, 0x6c, 0x2a, + 0x24, 0x9e, 0x7a, 0x91, 0xd6, 0x9c, 0x38, 0x15, 0x40, 0x1f, 0x06, 0x66, 0xd4, 0xb2, 0xff, 0x85, + 0x10, 0xd6, 0x7c, 0x0e, 0xe3, 0xd1, 0x0d, 0xd0, 0x83, 0x22, 0x27, 0x25, 0x4d, 0x5a, 0x63, 0x9a, + 0x83, 0xfb, 0x53, 0xea, 0xc4, 0x1d, 0x29, 0xa7, 0x3c, 0xe7, 0x66, 0xff, 0xb1, 0x90, 0xd5, 0x78, + 0x2f, 0x63, 0x08, 0x59, 0x3b, 0x49, 0x59, 0x6f, 0xe4, 0xb5, 0x56, 0x66, 0xcb, 0x48, 0x56, 0x00, + 0xba, 0x34, 0x68, 0x50, 0x2f, 0x52, 0x21, 0x0a, 0x45, 0x19, 0x2c, 0xa7, 0x4b, 0xd1, 0xc0, 0xb0, + 0x7f, 0xc5, 0x82, 0xc5, 0x74, 0x24, 0x4b, 0xde, 0x7e, 0x86, 0x89, 0x70, 0xdb, 0xc2, 0xe8, 0xe1, + 0xb6, 0xf6, 0xfb, 0x4c, 0xc8, 0xc8, 0x6d, 0xec, 0xbb, 0x9e, 0x88, 0x50, 0xdd, 0x75, 0x5b, 0x4c, + 0x48, 0x2a, 0x1f, 0xe7, 0x13, 0x96, 0x50, 0x2d, 0xa4, 0x7a, 0x93, 0x4f, 0xc1, 0x49, 0x05, 0x16, + 0xd4, 0xfd, 0x8f, 0x32, 0x5f, 0x8b, 0xc8, 0x7a, 0x6d, 0x2e, 0x5b, 0x4f, 0x82, 0x31, 0x8d, 0x6f, + 0x7f, 0x09, 0x66, 0x8d, 0x4d, 0x80, 0xaf, 0x97, 0x0f, 0x9c, 0x46, 0x94, 0x5e, 0x67, 0xae, 0xb1, + 0x42, 0x14, 0x30, 0x6e, 0x65, 0x17, 0x8e, 0xf6, 0xa9, 0x75, 0x46, 0xba, 0xd7, 0x4b, 0x28, 0x23, + 0x16, 0xd0, 0x16, 0x7d, 0xa0, 0x52, 0x43, 0x2b, 0x62, 0xc8, 0x0a, 0x51, 0xc0, 0xec, 0x17, 0x60, + 0x46, 0xe5, 0x3f, 0xe1, 0x49, 0x04, 0x94, 0x05, 0xd8, 0x4c, 0x22, 0xe0, 0x07, 0x11, 0x72, 0x88, + 0xfd, 0x36, 0xcc, 0xa8, 0x34, 0x2d, 0x8f, 0xc6, 0x66, 0x53, 0x3f, 0xf4, 0xdc, 0x1b, 0x7e, 0x18, + 0xa9, 0xdc, 0x32, 0xe2, 0x92, 0xea, 0xd6, 0x06, 0x2f, 0x43, 0x0d, 0xb5, 0x5f, 0x82, 0x85, 0xd4, + 0x65, 0xe5, 0x10, 0x19, 0x07, 0x7e, 0xbf, 0x00, 0x73, 0x89, 0xf7, 0xf3, 0x1f, 0x3d, 0x6b, 0x86, + 0x5f, 0x8c, 0x32, 0xee, 0x99, 0x0a, 0x23, 0xde, 0x33, 0x99, 0x17, 0x7b, 0x93, 0x67, 0x7b, 0xb1, + 0x57, 0xcc, 0xe7, 0x62, 0xcf, 0xb8, 0x80, 0x9e, 0x7a, 0x7c, 0x17, 0xd0, 0xbf, 0x5d, 0x84, 0xf9, + 0x64, 0x0a, 0xbb, 0x21, 0x7a, 0xf2, 0x85, 0xbe, 0x9e, 0x1c, 0xd1, 0xb0, 0x5d, 0x18, 0xd7, 0xb0, + 0x3d, 0x39, 0xae, 0x61, 0xbb, 0x78, 0x0a, 0xc3, 0x76, 0xbf, 0x59, 0x7a, 0x6a, 0x68, 0xb3, 0xf4, + 0xa7, 0xb5, 0x6b, 0xda, 0x74, 0xc2, 0x97, 0x23, 0x76, 0x4d, 0x23, 0xc9, 0x6e, 0x58, 0xf3, 0x9b, + 0x99, 0x2e, 0x7e, 0x33, 0x8f, 0x30, 0xe0, 0x05, 0x99, 0x9e, 0x64, 0xa3, 0xdf, 0x9d, 0x7d, 0x64, + 0x04, 0x2f, 0xb2, 0x57, 0x60, 0x56, 0x8e, 0x27, 0xae, 0xf2, 0x41, 0x52, 0x5d, 0xac, 0xc7, 0x20, + 0x34, 0xf1, 0xf8, 0xeb, 0xc6, 0xc9, 0xc7, 0x9f, 0xf9, 0x3d, 0x81, 0xf9, 0xba, 0x71, 0xea, 0xb1, + 0xe8, 0x34, 0xbe, 0xfd, 0x45, 0xb8, 0x94, 0x79, 0x6c, 0xe7, 0x76, 0x4c, 0xae, 0x8d, 0xd0, 0xa6, + 0x44, 0x30, 0xc4, 0x48, 0x65, 0x45, 0x5f, 0xbe, 0x3b, 0x10, 0x13, 0x4f, 0xa0, 0x62, 0xff, 0x56, + 0x01, 0xe6, 0x93, 0x4f, 0xe3, 0x91, 0xfb, 0xda, 0xc8, 0x97, 0x8b, 0x7d, 0x51, 0x90, 0x35, 0xd2, + 0xa2, 0x0d, 0xb4, 0xd8, 0xdf, 0xe7, 0xe3, 0x6b, 0x47, 0xe7, 0x68, 0x3b, 0x3b, 0xc6, 0xd2, 0x54, + 0x2e, 0xd9, 0xf1, 0xd7, 0xef, 0xe2, 0x08, 0x2a, 0x79, 0x7a, 0xcc, 0x9d, 0x7b, 0x1c, 0xd4, 0xa4, + 0x59, 0xa1, 0xc1, 0x96, 0xed, 0x2d, 0x07, 0x34, 0x70, 0x77, 0x5d, 0xfd, 0xac, 0x2f, 0x5f, 0xb9, + 0xdf, 0x96, 0x65, 0xa8, 0xa1, 0xf6, 0xfb, 0x13, 0x10, 0x3f, 0x79, 0xce, 0xdf, 0x8f, 0x0a, 0x0d, + 0x4d, 0x5d, 0x76, 0xdb, 0xcd, 0x71, 0x1f, 0x69, 0x8b, 0x29, 0x4a, 0xb7, 0x61, 0xa3, 0x04, 0x13, + 0x1c, 0x7f, 0x08, 0x4f, 0x9d, 0x3b, 0xb0, 0x90, 0x8a, 0xd8, 0xcf, 0x3d, 0x0a, 0xe5, 0x07, 0x05, + 0x28, 0xe9, 0x9c, 0x07, 0xe4, 0x93, 0x09, 0xb3, 0x49, 0xa9, 0xfa, 0x51, 0xe3, 0x71, 0x93, 0x3d, + 0xbf, 0xf9, 0xf0, 0xa8, 0xbc, 0xa0, 0x91, 0x53, 0x26, 0x90, 0x2b, 0x50, 0xe8, 0x05, 0xed, 0xf4, + 0xb9, 0xe8, 0x0e, 0x6e, 0x22, 0x2b, 0x27, 0x0f, 0xd2, 0x76, 0x8b, 0xad, 0x9c, 0xf2, 0x34, 0x88, + 0x03, 0xc4, 0x60, 0x7b, 0x05, 0xdb, 0x25, 0x77, 0xfc, 0xe6, 0x61, 0xfa, 0x31, 0x94, 0xaa, 0xdf, + 0x3c, 0x44, 0x0e, 0x21, 0xaf, 0xc3, 0x7c, 0xe4, 0x76, 0xa8, 0xdf, 0x8b, 0xcc, 0x27, 0xa2, 0x0b, + 0xf1, 0x0d, 0xf4, 0x76, 0x02, 0x8a, 0x29, 0x6c, 0xb6, 0xcb, 0xde, 0x0b, 0x7d, 0x8f, 0x27, 0x2b, + 0x9d, 0x4a, 0x5e, 0x57, 0xdd, 0xac, 0xbf, 0x75, 0x8b, 0x9b, 0x6f, 0x34, 0x06, 0xc3, 0x76, 0x79, + 0x18, 0x6e, 0x40, 0xa5, 0x03, 0xc8, 0x62, 0xac, 0x8f, 0x8b, 0x72, 0xd4, 0x18, 0x64, 0x5d, 0xd0, + 0x66, 0xd2, 0xf2, 0x1d, 0x65, 0xae, 0xfa, 0xbc, 0xa2, 0xcb, 0xca, 0x1e, 0x1e, 0x9d, 0x60, 0x58, + 0xd3, 0x35, 0xed, 0x3b, 0xb0, 0x90, 0x6a, 0x30, 0x75, 0x8e, 0xb5, 0xb2, 0xcf, 0xb1, 0xc3, 0xbd, + 0x5f, 0xf2, 0xaf, 0x2d, 0x38, 0xdf, 0xb7, 0x04, 0x0c, 0x1b, 0x64, 0x95, 0xde, 0x8c, 0x26, 0x4e, + 0xbf, 0x19, 0x15, 0x46, 0xdb, 0x8c, 0xaa, 0x3b, 0xdf, 0xf9, 0xfe, 0xd5, 0x27, 0xbe, 0xfb, 0xfd, + 0xab, 0x4f, 0xfc, 0xc9, 0xf7, 0xaf, 0x3e, 0xf1, 0xfe, 0xf1, 0x55, 0xeb, 0x3b, 0xc7, 0x57, 0xad, + 0xef, 0x1e, 0x5f, 0xb5, 0xfe, 0xe4, 0xf8, 0xaa, 0xf5, 0x9f, 0x8f, 0xaf, 0x5a, 0xdf, 0xfc, 0xc1, + 0xd5, 0x27, 0x3e, 0xfb, 0xe9, 0x78, 0x80, 0xae, 0xaa, 0x01, 0xca, 0x7f, 0x7c, 0x4c, 0x0d, 0xc7, + 0xd5, 0xee, 0x7e, 0x6b, 0x95, 0x0d, 0xd0, 0x55, 0x5d, 0xa2, 0x06, 0xe8, 0xff, 0x0d, 0x00, 0x00, + 0xff, 0xff, 0x07, 0x71, 0xea, 0xe7, 0x41, 0x9c, 0x00, 0x00, } func (m *ALBStatus) Marshal() (dAtA []byte, err error) { @@ -3987,6 +4022,77 @@ func (m *AnalysisRunList) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *AnalysisRunMetadata) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *AnalysisRunMetadata) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *AnalysisRunMetadata) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Annotations) > 0 { + keysForAnnotations := make([]string, 0, len(m.Annotations)) + for k := range m.Annotations { + keysForAnnotations = append(keysForAnnotations, string(k)) + } + github_com_gogo_protobuf_sortkeys.Strings(keysForAnnotations) + for iNdEx := len(keysForAnnotations) - 1; iNdEx >= 0; iNdEx-- { + v := m.Annotations[string(keysForAnnotations[iNdEx])] + baseI := i + i -= len(v) + copy(dAtA[i:], v) + i = encodeVarintGenerated(dAtA, i, uint64(len(v))) + i-- + dAtA[i] = 0x12 + i -= len(keysForAnnotations[iNdEx]) + copy(dAtA[i:], keysForAnnotations[iNdEx]) + i = encodeVarintGenerated(dAtA, i, uint64(len(keysForAnnotations[iNdEx]))) + i-- + dAtA[i] = 0xa + i = encodeVarintGenerated(dAtA, i, uint64(baseI-i)) + i-- + dAtA[i] = 0x12 + } + } + if len(m.Labels) > 0 { + keysForLabels := make([]string, 0, len(m.Labels)) + for k := range m.Labels { + keysForLabels = append(keysForLabels, string(k)) + } + github_com_gogo_protobuf_sortkeys.Strings(keysForLabels) + for iNdEx := len(keysForLabels) - 1; iNdEx >= 0; iNdEx-- { + v := m.Labels[string(keysForLabels[iNdEx])] + baseI := i + i -= len(v) + copy(dAtA[i:], v) + i = encodeVarintGenerated(dAtA, i, uint64(len(v))) + i-- + dAtA[i] = 0x12 + i -= len(keysForLabels[iNdEx]) + copy(dAtA[i:], keysForLabels[iNdEx]) + i = encodeVarintGenerated(dAtA, i, uint64(len(keysForLabels[iNdEx]))) + i-- + dAtA[i] = 0xa + i = encodeVarintGenerated(dAtA, i, uint64(baseI-i)) + i-- + dAtA[i] = 0xa + } + } + return len(dAtA) - i, nil +} + func (m *AnalysisRunSpec) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -7675,6 +7781,16 @@ func (m *RolloutAnalysis) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + { + size, err := m.AnalysisRunMetadata.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintGenerated(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x2a if len(m.MeasurementRetention) > 0 { for iNdEx := len(m.MeasurementRetention) - 1; iNdEx >= 0; iNdEx-- { { @@ -9877,6 +9993,31 @@ func (m *AnalysisRunList) Size() (n int) { return n } +func (m *AnalysisRunMetadata) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if len(m.Labels) > 0 { + for k, v := range m.Labels { + _ = k + _ = v + mapEntrySize := 1 + len(k) + sovGenerated(uint64(len(k))) + 1 + len(v) + sovGenerated(uint64(len(v))) + n += mapEntrySize + 1 + sovGenerated(uint64(mapEntrySize)) + } + } + if len(m.Annotations) > 0 { + for k, v := range m.Annotations { + _ = k + _ = v + mapEntrySize := 1 + len(k) + sovGenerated(uint64(len(k))) + 1 + len(v) + sovGenerated(uint64(len(v))) + n += mapEntrySize + 1 + sovGenerated(uint64(mapEntrySize)) + } + } + return n +} + func (m *AnalysisRunSpec) Size() (n int) { if m == nil { return 0 @@ -11276,6 +11417,8 @@ func (m *RolloutAnalysis) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } + l = m.AnalysisRunMetadata.Size() + n += 1 + l + sovGenerated(uint64(l)) return n } @@ -12103,6 +12246,37 @@ func (this *AnalysisRunList) String() string { }, "") return s } +func (this *AnalysisRunMetadata) String() string { + if this == nil { + return "nil" + } + keysForLabels := make([]string, 0, len(this.Labels)) + for k := range this.Labels { + keysForLabels = append(keysForLabels, k) + } + github_com_gogo_protobuf_sortkeys.Strings(keysForLabels) + mapStringForLabels := "map[string]string{" + for _, k := range keysForLabels { + mapStringForLabels += fmt.Sprintf("%v: %v,", k, this.Labels[k]) + } + mapStringForLabels += "}" + keysForAnnotations := make([]string, 0, len(this.Annotations)) + for k := range this.Annotations { + keysForAnnotations = append(keysForAnnotations, k) + } + github_com_gogo_protobuf_sortkeys.Strings(keysForAnnotations) + mapStringForAnnotations := "map[string]string{" + for _, k := range keysForAnnotations { + mapStringForAnnotations += fmt.Sprintf("%v: %v,", k, this.Annotations[k]) + } + mapStringForAnnotations += "}" + s := strings.Join([]string{`&AnalysisRunMetadata{`, + `Labels:` + mapStringForLabels + `,`, + `Annotations:` + mapStringForAnnotations + `,`, + `}`, + }, "") + return s +} func (this *AnalysisRunSpec) String() string { if this == nil { return "nil" @@ -13162,6 +13336,7 @@ func (this *RolloutAnalysis) String() string { `Args:` + repeatedStringForArgs + `,`, `DryRun:` + repeatedStringForDryRun + `,`, `MeasurementRetention:` + repeatedStringForMeasurementRetention + `,`, + `AnalysisRunMetadata:` + strings.Replace(strings.Replace(this.AnalysisRunMetadata.String(), "AnalysisRunMetadata", "AnalysisRunMetadata", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -14386,27 +14561,146 @@ func (m *AnalysisRunArgument) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - stringLen |= uint64(b&0x7F) << shift + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Value = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ValueFrom", 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 < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.ValueFrom == nil { + m.ValueFrom = &ArgumentValueFrom{} + } + if err := m.ValueFrom.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) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthGenerated + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *AnalysisRunList) 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: AnalysisRunList: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: AnalysisRunList: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ListMeta", 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 } } - intStringLen := int(stringLen) - if intStringLen < 0 { + if msglen < 0 { return ErrInvalidLengthGenerated } - postIndex := iNdEx + intStringLen + postIndex := iNdEx + msglen if postIndex < 0 { return ErrInvalidLengthGenerated } if postIndex > l { return io.ErrUnexpectedEOF } - m.Value = string(dAtA[iNdEx:postIndex]) + if err := m.ListMeta.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } iNdEx = postIndex - case 3: + case 2: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field ValueFrom", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Items", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -14433,10 +14727,8 @@ func (m *AnalysisRunArgument) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if m.ValueFrom == nil { - m.ValueFrom = &ArgumentValueFrom{} - } - if err := m.ValueFrom.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + m.Items = append(m.Items, AnalysisRun{}) + if err := m.Items[len(m.Items)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex @@ -14461,7 +14753,7 @@ func (m *AnalysisRunArgument) Unmarshal(dAtA []byte) error { } return nil } -func (m *AnalysisRunList) Unmarshal(dAtA []byte) error { +func (m *AnalysisRunMetadata) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -14484,15 +14776,15 @@ func (m *AnalysisRunList) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: AnalysisRunList: wiretype end group for non-group") + return fmt.Errorf("proto: AnalysisRunMetadata: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: AnalysisRunList: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: AnalysisRunMetadata: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field ListMeta", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Labels", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -14519,13 +14811,107 @@ func (m *AnalysisRunList) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := m.ListMeta.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err + if m.Labels == nil { + m.Labels = make(map[string]string) + } + var mapkey string + var mapvalue string + for iNdEx < postIndex { + entryPreIndex := 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) + if fieldNum == 1 { + var stringLenmapkey uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapkey |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLenmapkey := int(stringLenmapkey) + if intStringLenmapkey < 0 { + return ErrInvalidLengthGenerated + } + postStringIndexmapkey := iNdEx + intStringLenmapkey + if postStringIndexmapkey < 0 { + return ErrInvalidLengthGenerated + } + if postStringIndexmapkey > l { + return io.ErrUnexpectedEOF + } + mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) + iNdEx = postStringIndexmapkey + } else if fieldNum == 2 { + var stringLenmapvalue uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapvalue |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLenmapvalue := int(stringLenmapvalue) + if intStringLenmapvalue < 0 { + return ErrInvalidLengthGenerated + } + postStringIndexmapvalue := iNdEx + intStringLenmapvalue + if postStringIndexmapvalue < 0 { + return ErrInvalidLengthGenerated + } + if postStringIndexmapvalue > l { + return io.ErrUnexpectedEOF + } + mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue]) + iNdEx = postStringIndexmapvalue + } else { + iNdEx = entryPreIndex + skippy, err := skipGenerated(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthGenerated + } + if (iNdEx + skippy) > postIndex { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } } + m.Labels[mapkey] = mapvalue iNdEx = postIndex case 2: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Items", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Annotations", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -14552,10 +14938,103 @@ func (m *AnalysisRunList) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.Items = append(m.Items, AnalysisRun{}) - if err := m.Items[len(m.Items)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err + if m.Annotations == nil { + m.Annotations = make(map[string]string) + } + var mapkey string + var mapvalue string + for iNdEx < postIndex { + entryPreIndex := 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) + if fieldNum == 1 { + var stringLenmapkey uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapkey |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLenmapkey := int(stringLenmapkey) + if intStringLenmapkey < 0 { + return ErrInvalidLengthGenerated + } + postStringIndexmapkey := iNdEx + intStringLenmapkey + if postStringIndexmapkey < 0 { + return ErrInvalidLengthGenerated + } + if postStringIndexmapkey > l { + return io.ErrUnexpectedEOF + } + mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) + iNdEx = postStringIndexmapkey + } else if fieldNum == 2 { + var stringLenmapvalue uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapvalue |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLenmapvalue := int(stringLenmapvalue) + if intStringLenmapvalue < 0 { + return ErrInvalidLengthGenerated + } + postStringIndexmapvalue := iNdEx + intStringLenmapvalue + if postStringIndexmapvalue < 0 { + return ErrInvalidLengthGenerated + } + if postStringIndexmapvalue > l { + return io.ErrUnexpectedEOF + } + mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue]) + iNdEx = postStringIndexmapvalue + } else { + iNdEx = entryPreIndex + skippy, err := skipGenerated(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthGenerated + } + if (iNdEx + skippy) > postIndex { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } } + m.Annotations[mapkey] = mapvalue iNdEx = postIndex default: iNdEx = preIndex @@ -26312,6 +26791,39 @@ func (m *RolloutAnalysis) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 5: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field AnalysisRunMetadata", 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 < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.AnalysisRunMetadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(dAtA[iNdEx:]) diff --git a/pkg/apis/rollouts/v1alpha1/generated.proto b/pkg/apis/rollouts/v1alpha1/generated.proto index 30e6874d3c..186c4ccc41 100644 --- a/pkg/apis/rollouts/v1alpha1/generated.proto +++ b/pkg/apis/rollouts/v1alpha1/generated.proto @@ -101,6 +101,17 @@ message AnalysisRunList { repeated AnalysisRun items = 2; } +// AnalysisRunMetadata extra labels to add to the AnalysisRun +message AnalysisRunMetadata { + // Labels Additional labels to add to the AnalysisRun + // +optional + map labels = 1; + + // Annotations additional annotations to add to the AnalysisRun + // +optional + map annotations = 2; +} + // AnalysisRunSpec is the spec for a AnalysisRun resource message AnalysisRunSpec { // Metrics contains the list of metrics to query as part of an analysis run @@ -1154,6 +1165,10 @@ message RolloutAnalysis { // +patchStrategy=merge // +optional repeated MeasurementRetention measurementRetention = 4; + + // AnalysisRunMetadata labels and annotations that will be added to the AnalysisRuns + // +optional + optional AnalysisRunMetadata analysisRunMetadata = 5; } // RolloutAnalysisBackground defines a template that is used to create a background analysisRun diff --git a/pkg/apis/rollouts/v1alpha1/openapi_generated.go b/pkg/apis/rollouts/v1alpha1/openapi_generated.go index 6cd83f8ed1..d857f05559 100644 --- a/pkg/apis/rollouts/v1alpha1/openapi_generated.go +++ b/pkg/apis/rollouts/v1alpha1/openapi_generated.go @@ -36,6 +36,7 @@ func GetOpenAPIDefinitions(ref common.ReferenceCallback) map[string]common.OpenA "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.AnalysisRun": schema_pkg_apis_rollouts_v1alpha1_AnalysisRun(ref), "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.AnalysisRunArgument": schema_pkg_apis_rollouts_v1alpha1_AnalysisRunArgument(ref), "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.AnalysisRunList": schema_pkg_apis_rollouts_v1alpha1_AnalysisRunList(ref), + "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.AnalysisRunMetadata": schema_pkg_apis_rollouts_v1alpha1_AnalysisRunMetadata(ref), "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.AnalysisRunSpec": schema_pkg_apis_rollouts_v1alpha1_AnalysisRunSpec(ref), "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.AnalysisRunStatus": schema_pkg_apis_rollouts_v1alpha1_AnalysisRunStatus(ref), "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.AnalysisRunStrategy": schema_pkg_apis_rollouts_v1alpha1_AnalysisRunStrategy(ref), @@ -388,6 +389,51 @@ func schema_pkg_apis_rollouts_v1alpha1_AnalysisRunList(ref common.ReferenceCallb } } +func schema_pkg_apis_rollouts_v1alpha1_AnalysisRunMetadata(ref common.ReferenceCallback) common.OpenAPIDefinition { + return common.OpenAPIDefinition{ + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "AnalysisRunMetadata extra labels to add to the AnalysisRun", + Type: []string{"object"}, + Properties: map[string]spec.Schema{ + "labels": { + SchemaProps: spec.SchemaProps{ + Description: "Labels Additional labels to add to the AnalysisRun", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Allows: true, + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Default: "", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "annotations": { + SchemaProps: spec.SchemaProps{ + Description: "Annotations additional annotations to add to the AnalysisRun", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Allows: true, + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Default: "", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + }, + }, + }, + } +} + func schema_pkg_apis_rollouts_v1alpha1_AnalysisRunSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ @@ -3518,11 +3564,18 @@ func schema_pkg_apis_rollouts_v1alpha1_RolloutAnalysis(ref common.ReferenceCallb }, }, }, + "analysisRunMetadata": { + SchemaProps: spec.SchemaProps{ + Description: "AnalysisRunMetadata labels and annotations that will be added to the AnalysisRuns", + Default: map[string]interface{}{}, + Ref: ref("github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.AnalysisRunMetadata"), + }, + }, }, }, }, Dependencies: []string{ - "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.AnalysisRunArgument", "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.DryRun", "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.MeasurementRetention", "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.RolloutAnalysisTemplate"}, + "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.AnalysisRunArgument", "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.AnalysisRunMetadata", "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.DryRun", "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.MeasurementRetention", "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.RolloutAnalysisTemplate"}, } } @@ -3607,6 +3660,13 @@ func schema_pkg_apis_rollouts_v1alpha1_RolloutAnalysisBackground(ref common.Refe }, }, }, + "analysisRunMetadata": { + SchemaProps: spec.SchemaProps{ + Description: "AnalysisRunMetadata labels and annotations that will be added to the AnalysisRuns", + Default: map[string]interface{}{}, + Ref: ref("github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.AnalysisRunMetadata"), + }, + }, "startingStep": { SchemaProps: spec.SchemaProps{ Description: "StartingStep indicates which step the background analysis should start on If not listed, controller defaults to 0", @@ -3618,7 +3678,7 @@ func schema_pkg_apis_rollouts_v1alpha1_RolloutAnalysisBackground(ref common.Refe }, }, Dependencies: []string{ - "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.AnalysisRunArgument", "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.DryRun", "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.MeasurementRetention", "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.RolloutAnalysisTemplate"}, + "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.AnalysisRunArgument", "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.AnalysisRunMetadata", "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.DryRun", "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.MeasurementRetention", "github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1.RolloutAnalysisTemplate"}, } } diff --git a/pkg/apis/rollouts/v1alpha1/types.go b/pkg/apis/rollouts/v1alpha1/types.go index 0e5c192be1..a3804ccddd 100755 --- a/pkg/apis/rollouts/v1alpha1/types.go +++ b/pkg/apis/rollouts/v1alpha1/types.go @@ -578,6 +578,16 @@ type PodTemplateMetadata struct { Annotations map[string]string `json:"annotations,omitempty" protobuf:"bytes,2,rep,name=annotations"` } +// AnalysisRunMetadata extra labels to add to the AnalysisRun +type AnalysisRunMetadata struct { + // Labels Additional labels to add to the AnalysisRun + // +optional + Labels map[string]string `json:"labels,omitempty" protobuf:"bytes,1,rep,name=labels"` + // Annotations additional annotations to add to the AnalysisRun + // +optional + Annotations map[string]string `json:"annotations,omitempty" protobuf:"bytes,2,rep,name=annotations"` +} + // ReplicaSetSpecRef defines which RS that the experiment's template will use. type ReplicaSetSpecRef string @@ -701,6 +711,9 @@ type RolloutAnalysis struct { // +patchStrategy=merge // +optional MeasurementRetention []MeasurementRetention `json:"measurementRetention,omitempty" patchStrategy:"merge" patchMergeKey:"metricName" protobuf:"bytes,4,rep,name=measurementRetention"` + // AnalysisRunMetadata labels and annotations that will be added to the AnalysisRuns + // +optional + AnalysisRunMetadata AnalysisRunMetadata `json:"analysisRunMetadata,omitempty" protobuf:"bytes,5,opt,name=analysisRunMetadata"` } type RolloutAnalysisTemplate struct { diff --git a/pkg/apis/rollouts/v1alpha1/zz_generated.deepcopy.go b/pkg/apis/rollouts/v1alpha1/zz_generated.deepcopy.go index c787ce9216..e9f7e9a05e 100644 --- a/pkg/apis/rollouts/v1alpha1/zz_generated.deepcopy.go +++ b/pkg/apis/rollouts/v1alpha1/zz_generated.deepcopy.go @@ -172,6 +172,36 @@ func (in *AnalysisRunList) DeepCopyObject() runtime.Object { return nil } +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *AnalysisRunMetadata) DeepCopyInto(out *AnalysisRunMetadata) { + *out = *in + if in.Labels != nil { + in, out := &in.Labels, &out.Labels + *out = make(map[string]string, len(*in)) + for key, val := range *in { + (*out)[key] = val + } + } + if in.Annotations != nil { + in, out := &in.Annotations, &out.Annotations + *out = make(map[string]string, len(*in)) + for key, val := range *in { + (*out)[key] = val + } + } + return +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AnalysisRunMetadata. +func (in *AnalysisRunMetadata) DeepCopy() *AnalysisRunMetadata { + if in == nil { + return nil + } + out := new(AnalysisRunMetadata) + in.DeepCopyInto(out) + return out +} + // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *AnalysisRunSpec) DeepCopyInto(out *AnalysisRunSpec) { *out = *in @@ -1966,6 +1996,7 @@ func (in *RolloutAnalysis) DeepCopyInto(out *RolloutAnalysis) { *out = make([]MeasurementRetention, len(*in)) copy(*out, *in) } + in.AnalysisRunMetadata.DeepCopyInto(&out.AnalysisRunMetadata) return } diff --git a/rollout/analysis.go b/rollout/analysis.go index 339aa3fec6..912237d9c3 100644 --- a/rollout/analysis.go +++ b/rollout/analysis.go @@ -457,9 +457,15 @@ func (c *rolloutContext) newAnalysisRunFromRollout(rolloutAnalysis *v1alpha1.Rol return nil, err } run.Labels = labels + for k, v := range rolloutAnalysis.AnalysisRunMetadata.Labels { + run.Labels[k] = v + } run.Annotations = map[string]string{ annotations.RevisionAnnotation: revision, } + for k, v := range rolloutAnalysis.AnalysisRunMetadata.Annotations { + run.Annotations[k] = v + } run.OwnerReferences = []metav1.OwnerReference{*metav1.NewControllerRef(c.rollout, controllerKind)} return run, nil } diff --git a/rollout/analysis_test.go b/rollout/analysis_test.go index 87a30123ff..f6fa6c4bf2 100644 --- a/rollout/analysis_test.go +++ b/rollout/analysis_test.go @@ -2336,3 +2336,54 @@ func TestAbortRolloutOnErrorPostPromotionAnalysis(t *testing.T) { newConditions := updateConditionsPatch(*r2, progressingFalseAborted) assert.Equal(t, calculatePatch(r2, fmt.Sprintf(expectedPatch, now, newConditions, conditions.RolloutAbortedReason, progressingFalseAborted.Message)), patch) } + +func TestCreateAnalysisRunWithCustomAnalysisRunMetadata(t *testing.T) { + f := newFixture(t) + defer f.Close() + + steps := []v1alpha1.CanaryStep{{ + SetWeight: int32Ptr(10), + }} + at := analysisTemplate("bar") + r1 := newCanaryRollout("foo", 10, nil, steps, pointer.Int32Ptr(0), intstr.FromInt(0), intstr.FromInt(1)) + r2 := bumpVersion(r1) + ar := analysisRun(at, v1alpha1.RolloutTypeBackgroundRunLabel, r2) + r2.Spec.Strategy.Canary.Analysis = &v1alpha1.RolloutAnalysisBackground{ + RolloutAnalysis: v1alpha1.RolloutAnalysis{ + Templates: []v1alpha1.RolloutAnalysisTemplate{ + { + TemplateName: at.Name, + }, + }, + AnalysisRunMetadata: v1alpha1.AnalysisRunMetadata{ + Annotations: map[string]string{"testAnnotationKey": "testAnnotationValue"}, + Labels: map[string]string{"testLabelKey": "testLabelValue"}, + }, + }, + } + + rs1 := newReplicaSetWithStatus(r1, 10, 10) + rs2 := newReplicaSetWithStatus(r2, 0, 0) + f.kubeobjects = append(f.kubeobjects, rs1, rs2) + f.replicaSetLister = append(f.replicaSetLister, rs1, rs2) + rs1PodHash := rs1.Labels[v1alpha1.DefaultRolloutUniqueLabelKey] + rs2PodHash := rs2.Labels[v1alpha1.DefaultRolloutUniqueLabelKey] + + r2 = updateCanaryRolloutStatus(r2, rs1PodHash, 10, 0, 10, false) + _, _ = newProgressingCondition(conditions.ReplicaSetUpdatedReason, rs2, "") + + f.rolloutLister = append(f.rolloutLister, r2) + f.analysisTemplateLister = append(f.analysisTemplateLister, at) + f.objects = append(f.objects, r2, at) + + createdIndex := f.expectCreateAnalysisRunAction(ar) + f.expectUpdateReplicaSetAction(rs2) + _ = f.expectPatchRolloutAction(r1) + + f.run(getKey(r2, t)) + createdAr := f.getCreatedAnalysisRun(createdIndex) + expectedArName := fmt.Sprintf("%s-%s-%s", r2.Name, rs2PodHash, "2") + assert.Equal(t, expectedArName, createdAr.Name) + assert.Equal(t, "testAnnotationValue", createdAr.Annotations["testAnnotationKey"]) + assert.Equal(t, "testLabelValue", createdAr.Labels["testLabelKey"]) +} diff --git a/ui/src/models/rollout/generated/api.ts b/ui/src/models/rollout/generated/api.ts index e95c8a4899..6c8456fd34 100755 --- a/ui/src/models/rollout/generated/api.ts +++ b/ui/src/models/rollout/generated/api.ts @@ -177,6 +177,25 @@ export interface GithubComArgoprojArgoRolloutsPkgApisRolloutsV1alpha1AnalysisRun */ valueFrom?: GithubComArgoprojArgoRolloutsPkgApisRolloutsV1alpha1ArgumentValueFrom; } +/** + * + * @export + * @interface GithubComArgoprojArgoRolloutsPkgApisRolloutsV1alpha1AnalysisRunMetadata + */ +export interface GithubComArgoprojArgoRolloutsPkgApisRolloutsV1alpha1AnalysisRunMetadata { + /** + * + * @type {{ [key: string]: string; }} + * @memberof GithubComArgoprojArgoRolloutsPkgApisRolloutsV1alpha1AnalysisRunMetadata + */ + labels?: { [key: string]: string; }; + /** + * + * @type {{ [key: string]: string; }} + * @memberof GithubComArgoprojArgoRolloutsPkgApisRolloutsV1alpha1AnalysisRunMetadata + */ + annotations?: { [key: string]: string; }; +} /** * * @export @@ -1037,6 +1056,12 @@ export interface GithubComArgoprojArgoRolloutsPkgApisRolloutsV1alpha1RolloutAnal * @memberof GithubComArgoprojArgoRolloutsPkgApisRolloutsV1alpha1RolloutAnalysis */ measurementRetention?: Array; + /** + * + * @type {GithubComArgoprojArgoRolloutsPkgApisRolloutsV1alpha1AnalysisRunMetadata} + * @memberof GithubComArgoprojArgoRolloutsPkgApisRolloutsV1alpha1RolloutAnalysis + */ + analysisRunMetadata?: GithubComArgoprojArgoRolloutsPkgApisRolloutsV1alpha1AnalysisRunMetadata; } /** *