From 21f4360fcfbb97c00fae881f9bd1a9096bac8d6c Mon Sep 17 00:00:00 2001 From: Derek Wang Date: Sun, 26 Jul 2020 10:31:29 -0700 Subject: [PATCH] feat: Expose metadata for sensors and fix metadata for eventsources (#773) --- api/openapi-spec/swagger.json | 22 + api/sensor.html | 52 + api/sensor.md | 100 ++ controllers/eventsource/resource.go | 15 +- controllers/sensor/resource.go | 14 +- examples/event-sources/aws-sns.yaml | 2 - examples/event-sources/aws-sqs.yaml | 2 - examples/event-sources/azure-events-hub.yaml | 2 - examples/event-sources/emitter.yaml | 1 - examples/event-sources/github.yaml | 2 - examples/event-sources/gitlab.yaml | 2 - examples/event-sources/hdfs.yaml | 1 - examples/event-sources/minio.yaml | 2 - examples/event-sources/redis.yaml | 3 - examples/event-sources/slack.yaml | 2 - examples/event-sources/storage-grid.yaml | 2 - examples/event-sources/stripe.yaml | 2 - examples/eventbus/native.yaml | 2 + examples/sensors/http-trigger.yaml | 2 - examples/sensors/trigger-nats-messages.yaml | 2 - examples/sensors/trigger-openwhisk.yaml | 2 - hack/crdgen.sh | 3 + pkg/apis/sensor/v1alpha1/generated.pb.go | 1008 +++++++++++++---- pkg/apis/sensor/v1alpha1/generated.proto | 20 +- pkg/apis/sensor/v1alpha1/openapi_generated.go | 50 +- pkg/apis/sensor/v1alpha1/types.go | 18 +- .../sensor/v1alpha1/zz_generated.deepcopy.go | 31 + 27 files changed, 1074 insertions(+), 290 deletions(-) diff --git a/api/openapi-spec/swagger.json b/api/openapi-spec/swagger.json index 7e7fc2639f..6b98910a86 100644 --- a/api/openapi-spec/swagger.json +++ b/api/openapi-spec/swagger.json @@ -2200,6 +2200,24 @@ } } }, + "io.argoproj.sensor.v1alpha1.Metadata": { + "description": "Metadata holds the annotations and labels of an event source pod", + "type": "object", + "properties": { + "annotations": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "labels": { + "type": "object", + "additionalProperties": { + "type": "string" + } + } + } + }, "io.argoproj.sensor.v1alpha1.NATSTrigger": { "description": "NATSTrigger refers to the specification of the NATS trigger.", "type": "object", @@ -2512,6 +2530,10 @@ "description": "Container is the main container image to run in the gateway pod", "$ref": "#/definitions/io.k8s.api.core.v1.Container" }, + "metadata": { + "description": "Metdata sets the pods's metadata, i.e. annotations and labels", + "$ref": "#/definitions/io.argoproj.sensor.v1alpha1.Metadata" + }, "nodeSelector": { "description": "NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/", "type": "object", diff --git a/api/sensor.html b/api/sensor.html index d24f4f4726..12dc0162d2 100644 --- a/api/sensor.html +++ b/api/sensor.html @@ -1505,6 +1505,45 @@

KubernetesResourceOper

KubernetesResourceOperation refers to the type of operation performed on the K8s resource

+

Metadata +

+

+(Appears on: +Template) +

+

+

Metadata holds the annotations and labels of an event source pod

+

+ + + + + + + + + + + + + + + + + +
FieldDescription
+annotations
+ +map[string]string + +
+
+labels
+ +map[string]string + +
+

NATSTrigger

@@ -2280,6 +2319,19 @@

Template +metadata
+ + +Metadata + + + + +

Metdata sets the pods’s metadata, i.e. annotations and labels

+ + + + serviceAccountName
string diff --git a/api/sensor.md b/api/sensor.md index afbe6f50b6..f9f0b4155a 100644 --- a/api/sensor.md +++ b/api/sensor.md @@ -2973,6 +2973,85 @@ the K8s resource

+

+ +Metadata + +

+ +

+ +(Appears on: +Template) + +

+ +

+ +

+ +Metadata holds the annotations and labels of an event source pod + +

+ +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +Field + + + +Description + +
+ +annotations
map\[string\]string + +
+ +
+ +labels
map\[string\]string + +
+ +
+

NATSTrigger @@ -4480,6 +4559,27 @@ Description +metadata
+ Metadata + + + + + +

+ +Metdata sets the pods’s metadata, i.e. annotations and labels + +

+ + + + + + + + + serviceAccountName
string diff --git a/controllers/eventsource/resource.go b/controllers/eventsource/resource.go index e3d09b0647..a23bf96c78 100644 --- a/controllers/eventsource/resource.go +++ b/controllers/eventsource/resource.go @@ -286,14 +286,25 @@ func buildDeploymentSpec(args *AdaptorArgs) (*appv1.DeploymentSpec, error) { } } eventSourceContainer.Name = "main" + podTemplateLabels := make(map[string]string) + if len(args.EventSource.Spec.Template.Metadata.Labels) > 0 { + for k, v := range args.EventSource.Spec.Template.Metadata.Labels { + podTemplateLabels[k] = v + } + } + for k, v := range args.Labels { + podTemplateLabels[k] = v + } + spec := &appv1.DeploymentSpec{ Selector: &metav1.LabelSelector{ - MatchLabels: args.Labels, + MatchLabels: podTemplateLabels, }, Replicas: &replicas, Template: corev1.PodTemplateSpec{ ObjectMeta: metav1.ObjectMeta{ - Labels: args.Labels, + Labels: podTemplateLabels, + Annotations: args.EventSource.Spec.Template.Metadata.Annotations, }, Spec: corev1.PodSpec{ ServiceAccountName: args.EventSource.Spec.Template.ServiceAccountName, diff --git a/controllers/sensor/resource.go b/controllers/sensor/resource.go index de9ff5916a..d8c4a6778d 100644 --- a/controllers/sensor/resource.go +++ b/controllers/sensor/resource.go @@ -218,9 +218,18 @@ func buildDeploymentSpec(args *AdaptorArgs) (*appv1.DeploymentSpec, error) { } } sensorContainer.Name = "main" + podTemplateLabels := make(map[string]string) + if len(args.Sensor.Spec.Template.Metadata.Labels) > 0 { + for k, v := range args.Sensor.Spec.Template.Metadata.Labels { + podTemplateLabels[k] = v + } + } + for k, v := range args.Labels { + podTemplateLabels[k] = v + } return &appv1.DeploymentSpec{ Selector: &metav1.LabelSelector{ - MatchLabels: args.Labels, + MatchLabels: podTemplateLabels, }, Replicas: &replicas, Strategy: appv1.DeploymentStrategy{ @@ -229,7 +238,8 @@ func buildDeploymentSpec(args *AdaptorArgs) (*appv1.DeploymentSpec, error) { }, Template: corev1.PodTemplateSpec{ ObjectMeta: metav1.ObjectMeta{ - Labels: args.Labels, + Labels: podTemplateLabels, + Annotations: args.Sensor.Spec.Template.Metadata.Annotations, }, Spec: corev1.PodSpec{ ServiceAccountName: args.Sensor.Spec.Template.ServiceAccountName, diff --git a/examples/event-sources/aws-sns.yaml b/examples/event-sources/aws-sns.yaml index 005b838b7e..aaf8d4be4e 100644 --- a/examples/event-sources/aws-sns.yaml +++ b/examples/event-sources/aws-sns.yaml @@ -3,8 +3,6 @@ kind: EventSource metadata: name: aws-sns spec: - template: - serviceAccountName: argo-events-sa # assign a service account with `get` permissions for secrets. service: ports: - port: 12000 diff --git a/examples/event-sources/aws-sqs.yaml b/examples/event-sources/aws-sqs.yaml index 0e5927a6a4..4c54cd7898 100644 --- a/examples/event-sources/aws-sqs.yaml +++ b/examples/event-sources/aws-sqs.yaml @@ -3,8 +3,6 @@ kind: EventSource metadata: name: aws-sqs spec: - template: - serviceAccountName: argo-events-sa # assign a service account with `get` permissions for secrets. sqs: example: # jsonBody specifies that all event body payload coming from this diff --git a/examples/event-sources/azure-events-hub.yaml b/examples/event-sources/azure-events-hub.yaml index e3861d0a53..323b800b83 100644 --- a/examples/event-sources/azure-events-hub.yaml +++ b/examples/event-sources/azure-events-hub.yaml @@ -3,8 +3,6 @@ kind: EventSource metadata: name: azure-events-hub spec: - template: - serviceAccountName: argo-events-sa # assign a service account with `get` permissions for secrets. azureEventsHub: example: # FQDN of the EventsHub namespace you created diff --git a/examples/event-sources/emitter.yaml b/examples/event-sources/emitter.yaml index 360a8ddfb6..5b9c050f3f 100644 --- a/examples/event-sources/emitter.yaml +++ b/examples/event-sources/emitter.yaml @@ -26,7 +26,6 @@ spec: factor: 2 jitter: 0.2 # template: -# serviceAccountName: argo-events-sa # assign a service account with `get` permissions for secrets. # # Username to use to connect to broker # # +optional # username: diff --git a/examples/event-sources/github.yaml b/examples/event-sources/github.yaml index c59b12c0c3..3ebe1ff788 100644 --- a/examples/event-sources/github.yaml +++ b/examples/event-sources/github.yaml @@ -4,8 +4,6 @@ kind: EventSource metadata: name: github spec: - template: - serviceAccountName: argo-events-sa # assign a service account with `get` permissions for secrets. service: ports: - port: 12000 diff --git a/examples/event-sources/gitlab.yaml b/examples/event-sources/gitlab.yaml index 32988072da..05411ea0e5 100644 --- a/examples/event-sources/gitlab.yaml +++ b/examples/event-sources/gitlab.yaml @@ -4,8 +4,6 @@ kind: EventSource metadata: name: gitlab spec: - template: - serviceAccountName: argo-events-sa # assign a service account with `get` permissions for secrets. service: ports: - port: 12000 diff --git a/examples/event-sources/hdfs.yaml b/examples/event-sources/hdfs.yaml index c32a8705f1..eb17331f74 100644 --- a/examples/event-sources/hdfs.yaml +++ b/examples/event-sources/hdfs.yaml @@ -13,7 +13,6 @@ spec: - my-hdfs-namenode-1.my-hdfs-namenode.default.svc.cluster.local:8020 hdfsUser: root # template: -# serviceAccountName: argo-events-sa # assign a service account with `get` permissions for secrets. # krbCCacheSecret: # name: krb # key: krb5cc_0 diff --git a/examples/event-sources/minio.yaml b/examples/event-sources/minio.yaml index f17c235b78..a0fdab4f55 100644 --- a/examples/event-sources/minio.yaml +++ b/examples/event-sources/minio.yaml @@ -3,8 +3,6 @@ kind: EventSource metadata: name: minio spec: - template: - serviceAccountName: argo-events-sa # assign a service account with `get` permissions for secrets. minio: example: # bucket information diff --git a/examples/event-sources/redis.yaml b/examples/event-sources/redis.yaml index 56919a1340..12a7d3a133 100644 --- a/examples/event-sources/redis.yaml +++ b/examples/event-sources/redis.yaml @@ -3,9 +3,6 @@ kind: EventSource metadata: name: redis spec: - # uncomment if the password field is set -# template: -# serviceAccountName: argo-events-sa # assign a service account with `get` permissions for secrets. redis: example: # HostAddress refers to the address of the Redis host/server diff --git a/examples/event-sources/slack.yaml b/examples/event-sources/slack.yaml index 36b84c6dcb..53a25ce352 100644 --- a/examples/event-sources/slack.yaml +++ b/examples/event-sources/slack.yaml @@ -3,8 +3,6 @@ kind: EventSource metadata: name: slack spec: - template: - serviceAccountName: argo-events-sa # assign a service account with `get` permissions for secrets. service: ports: - port: 12000 diff --git a/examples/event-sources/storage-grid.yaml b/examples/event-sources/storage-grid.yaml index c5f78f6375..d127ee0b5a 100644 --- a/examples/event-sources/storage-grid.yaml +++ b/examples/event-sources/storage-grid.yaml @@ -3,8 +3,6 @@ kind: EventSource metadata: name: storage-grid spec: - template: - serviceAccountName: argo-events-sa # assign a service account with `get` permissions for secrets. service: ports: - port: 8080 diff --git a/examples/event-sources/stripe.yaml b/examples/event-sources/stripe.yaml index 2fe3625528..20d0062ded 100644 --- a/examples/event-sources/stripe.yaml +++ b/examples/event-sources/stripe.yaml @@ -3,8 +3,6 @@ kind: EventSource metadata: name: stripe spec: - template: - serviceAccountName: argo-events-sa # assign a service account with `get` permissions for secrets. service: ports: - port: 12000 diff --git a/examples/eventbus/native.yaml b/examples/eventbus/native.yaml index 1b591d0f8b..c00da9dac7 100644 --- a/examples/eventbus/native.yaml +++ b/examples/eventbus/native.yaml @@ -5,7 +5,9 @@ metadata: spec: nats: native: + # Optional, defaults to 3 replicas: 3 + # Optional, authen strategy, "none" or "token", defaults to "none" auth: token # containerTemplate: # resources: diff --git a/examples/sensors/http-trigger.yaml b/examples/sensors/http-trigger.yaml index 8d5027df7d..0830f2939f 100644 --- a/examples/sensors/http-trigger.yaml +++ b/examples/sensors/http-trigger.yaml @@ -3,8 +3,6 @@ kind: Sensor metadata: name: minio spec: - template: - serviceAccountName: argo-events-sa dependencies: - name: test-dep eventSourceName: minio diff --git a/examples/sensors/trigger-nats-messages.yaml b/examples/sensors/trigger-nats-messages.yaml index 11e2d017c5..df62b031f5 100644 --- a/examples/sensors/trigger-nats-messages.yaml +++ b/examples/sensors/trigger-nats-messages.yaml @@ -3,8 +3,6 @@ kind: Sensor metadata: name: minio spec: - template: - serviceAccountName: argo-events-sa dependencies: - name: test-dep eventSourceName: minio diff --git a/examples/sensors/trigger-openwhisk.yaml b/examples/sensors/trigger-openwhisk.yaml index 4a1d02cf90..ec559020ab 100644 --- a/examples/sensors/trigger-openwhisk.yaml +++ b/examples/sensors/trigger-openwhisk.yaml @@ -3,8 +3,6 @@ kind: Sensor metadata: name: minio spec: - template: - serviceAccountName: argo-events-sa dependencies: - name: test-dep eventSourceName: minio diff --git a/hack/crdgen.sh b/hack/crdgen.sh index 4b1e303ccc..a253620ce5 100755 --- a/hack/crdgen.sh +++ b/hack/crdgen.sh @@ -22,3 +22,6 @@ find manifests/base/crds -name 'argoproj.io*.yaml' | while read -r file; do go run ./hack cleancrd "$file" add_header "$file" done + +# Remove this after cleanning up Gateway related code +rm manifests/base/crds/argoproj.io_gateways.yaml diff --git a/pkg/apis/sensor/v1alpha1/generated.pb.go b/pkg/apis/sensor/v1alpha1/generated.pb.go index 575f94d0b8..dfac05c87e 100644 --- a/pkg/apis/sensor/v1alpha1/generated.pb.go +++ b/pkg/apis/sensor/v1alpha1/generated.pb.go @@ -580,10 +580,38 @@ func (m *KafkaTrigger) XXX_DiscardUnknown() { var xxx_messageInfo_KafkaTrigger proto.InternalMessageInfo +func (m *Metadata) Reset() { *m = Metadata{} } +func (*Metadata) ProtoMessage() {} +func (*Metadata) Descriptor() ([]byte, []int) { + return fileDescriptor_6c4bded897df1f16, []int{19} +} +func (m *Metadata) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *Metadata) 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 *Metadata) XXX_Merge(src proto.Message) { + xxx_messageInfo_Metadata.Merge(m, src) +} +func (m *Metadata) XXX_Size() int { + return m.Size() +} +func (m *Metadata) XXX_DiscardUnknown() { + xxx_messageInfo_Metadata.DiscardUnknown(m) +} + +var xxx_messageInfo_Metadata proto.InternalMessageInfo + func (m *NATSTrigger) Reset() { *m = NATSTrigger{} } func (*NATSTrigger) ProtoMessage() {} func (*NATSTrigger) Descriptor() ([]byte, []int) { - return fileDescriptor_6c4bded897df1f16, []int{19} + return fileDescriptor_6c4bded897df1f16, []int{20} } func (m *NATSTrigger) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -611,7 +639,7 @@ var xxx_messageInfo_NATSTrigger proto.InternalMessageInfo func (m *OpenWhiskTrigger) Reset() { *m = OpenWhiskTrigger{} } func (*OpenWhiskTrigger) ProtoMessage() {} func (*OpenWhiskTrigger) Descriptor() ([]byte, []int) { - return fileDescriptor_6c4bded897df1f16, []int{20} + return fileDescriptor_6c4bded897df1f16, []int{21} } func (m *OpenWhiskTrigger) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -639,7 +667,7 @@ var xxx_messageInfo_OpenWhiskTrigger proto.InternalMessageInfo func (m *Sensor) Reset() { *m = Sensor{} } func (*Sensor) ProtoMessage() {} func (*Sensor) Descriptor() ([]byte, []int) { - return fileDescriptor_6c4bded897df1f16, []int{21} + return fileDescriptor_6c4bded897df1f16, []int{22} } func (m *Sensor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -667,7 +695,7 @@ var xxx_messageInfo_Sensor proto.InternalMessageInfo func (m *SensorList) Reset() { *m = SensorList{} } func (*SensorList) ProtoMessage() {} func (*SensorList) Descriptor() ([]byte, []int) { - return fileDescriptor_6c4bded897df1f16, []int{22} + return fileDescriptor_6c4bded897df1f16, []int{23} } func (m *SensorList) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -695,7 +723,7 @@ var xxx_messageInfo_SensorList proto.InternalMessageInfo func (m *SensorSpec) Reset() { *m = SensorSpec{} } func (*SensorSpec) ProtoMessage() {} func (*SensorSpec) Descriptor() ([]byte, []int) { - return fileDescriptor_6c4bded897df1f16, []int{23} + return fileDescriptor_6c4bded897df1f16, []int{24} } func (m *SensorSpec) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -723,7 +751,7 @@ var xxx_messageInfo_SensorSpec proto.InternalMessageInfo func (m *SensorStatus) Reset() { *m = SensorStatus{} } func (*SensorStatus) ProtoMessage() {} func (*SensorStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_6c4bded897df1f16, []int{24} + return fileDescriptor_6c4bded897df1f16, []int{25} } func (m *SensorStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -751,7 +779,7 @@ var xxx_messageInfo_SensorStatus proto.InternalMessageInfo func (m *SlackTrigger) Reset() { *m = SlackTrigger{} } func (*SlackTrigger) ProtoMessage() {} func (*SlackTrigger) Descriptor() ([]byte, []int) { - return fileDescriptor_6c4bded897df1f16, []int{25} + return fileDescriptor_6c4bded897df1f16, []int{26} } func (m *SlackTrigger) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -779,7 +807,7 @@ var xxx_messageInfo_SlackTrigger proto.InternalMessageInfo func (m *StandardK8STrigger) Reset() { *m = StandardK8STrigger{} } func (*StandardK8STrigger) ProtoMessage() {} func (*StandardK8STrigger) Descriptor() ([]byte, []int) { - return fileDescriptor_6c4bded897df1f16, []int{26} + return fileDescriptor_6c4bded897df1f16, []int{27} } func (m *StandardK8STrigger) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -807,7 +835,7 @@ var xxx_messageInfo_StandardK8STrigger proto.InternalMessageInfo func (m *StatusPolicy) Reset() { *m = StatusPolicy{} } func (*StatusPolicy) ProtoMessage() {} func (*StatusPolicy) Descriptor() ([]byte, []int) { - return fileDescriptor_6c4bded897df1f16, []int{27} + return fileDescriptor_6c4bded897df1f16, []int{28} } func (m *StatusPolicy) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -835,7 +863,7 @@ var xxx_messageInfo_StatusPolicy proto.InternalMessageInfo func (m *TLSConfig) Reset() { *m = TLSConfig{} } func (*TLSConfig) ProtoMessage() {} func (*TLSConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_6c4bded897df1f16, []int{28} + return fileDescriptor_6c4bded897df1f16, []int{29} } func (m *TLSConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -863,7 +891,7 @@ var xxx_messageInfo_TLSConfig proto.InternalMessageInfo func (m *Template) Reset() { *m = Template{} } func (*Template) ProtoMessage() {} func (*Template) Descriptor() ([]byte, []int) { - return fileDescriptor_6c4bded897df1f16, []int{29} + return fileDescriptor_6c4bded897df1f16, []int{30} } func (m *Template) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -891,7 +919,7 @@ var xxx_messageInfo_Template proto.InternalMessageInfo func (m *TimeFilter) Reset() { *m = TimeFilter{} } func (*TimeFilter) ProtoMessage() {} func (*TimeFilter) Descriptor() ([]byte, []int) { - return fileDescriptor_6c4bded897df1f16, []int{30} + return fileDescriptor_6c4bded897df1f16, []int{31} } func (m *TimeFilter) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -919,7 +947,7 @@ var xxx_messageInfo_TimeFilter proto.InternalMessageInfo func (m *Trigger) Reset() { *m = Trigger{} } func (*Trigger) ProtoMessage() {} func (*Trigger) Descriptor() ([]byte, []int) { - return fileDescriptor_6c4bded897df1f16, []int{31} + return fileDescriptor_6c4bded897df1f16, []int{32} } func (m *Trigger) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -947,7 +975,7 @@ var xxx_messageInfo_Trigger proto.InternalMessageInfo func (m *TriggerParameter) Reset() { *m = TriggerParameter{} } func (*TriggerParameter) ProtoMessage() {} func (*TriggerParameter) Descriptor() ([]byte, []int) { - return fileDescriptor_6c4bded897df1f16, []int{32} + return fileDescriptor_6c4bded897df1f16, []int{33} } func (m *TriggerParameter) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -975,7 +1003,7 @@ var xxx_messageInfo_TriggerParameter proto.InternalMessageInfo func (m *TriggerParameterSource) Reset() { *m = TriggerParameterSource{} } func (*TriggerParameterSource) ProtoMessage() {} func (*TriggerParameterSource) Descriptor() ([]byte, []int) { - return fileDescriptor_6c4bded897df1f16, []int{33} + return fileDescriptor_6c4bded897df1f16, []int{34} } func (m *TriggerParameterSource) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1003,7 +1031,7 @@ var xxx_messageInfo_TriggerParameterSource proto.InternalMessageInfo func (m *TriggerPolicy) Reset() { *m = TriggerPolicy{} } func (*TriggerPolicy) ProtoMessage() {} func (*TriggerPolicy) Descriptor() ([]byte, []int) { - return fileDescriptor_6c4bded897df1f16, []int{34} + return fileDescriptor_6c4bded897df1f16, []int{35} } func (m *TriggerPolicy) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1031,7 +1059,7 @@ var xxx_messageInfo_TriggerPolicy proto.InternalMessageInfo func (m *TriggerSwitch) Reset() { *m = TriggerSwitch{} } func (*TriggerSwitch) ProtoMessage() {} func (*TriggerSwitch) Descriptor() ([]byte, []int) { - return fileDescriptor_6c4bded897df1f16, []int{35} + return fileDescriptor_6c4bded897df1f16, []int{36} } func (m *TriggerSwitch) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1059,7 +1087,7 @@ var xxx_messageInfo_TriggerSwitch proto.InternalMessageInfo func (m *TriggerTemplate) Reset() { *m = TriggerTemplate{} } func (*TriggerTemplate) ProtoMessage() {} func (*TriggerTemplate) Descriptor() ([]byte, []int) { - return fileDescriptor_6c4bded897df1f16, []int{36} + return fileDescriptor_6c4bded897df1f16, []int{37} } func (m *TriggerTemplate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1087,7 +1115,7 @@ var xxx_messageInfo_TriggerTemplate proto.InternalMessageInfo func (m *URLArtifact) Reset() { *m = URLArtifact{} } func (*URLArtifact) ProtoMessage() {} func (*URLArtifact) Descriptor() ([]byte, []int) { - return fileDescriptor_6c4bded897df1f16, []int{37} + return fileDescriptor_6c4bded897df1f16, []int{38} } func (m *URLArtifact) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1135,6 +1163,9 @@ func init() { proto.RegisterType((*K8SResourcePolicy)(nil), "github.com.argoproj.argo_events.pkg.apis.sensor.v1alpha1.K8SResourcePolicy") proto.RegisterMapType((map[string]string)(nil), "github.com.argoproj.argo_events.pkg.apis.sensor.v1alpha1.K8SResourcePolicy.LabelsEntry") proto.RegisterType((*KafkaTrigger)(nil), "github.com.argoproj.argo_events.pkg.apis.sensor.v1alpha1.KafkaTrigger") + proto.RegisterType((*Metadata)(nil), "github.com.argoproj.argo_events.pkg.apis.sensor.v1alpha1.Metadata") + proto.RegisterMapType((map[string]string)(nil), "github.com.argoproj.argo_events.pkg.apis.sensor.v1alpha1.Metadata.AnnotationsEntry") + proto.RegisterMapType((map[string]string)(nil), "github.com.argoproj.argo_events.pkg.apis.sensor.v1alpha1.Metadata.LabelsEntry") proto.RegisterType((*NATSTrigger)(nil), "github.com.argoproj.argo_events.pkg.apis.sensor.v1alpha1.NATSTrigger") proto.RegisterType((*OpenWhiskTrigger)(nil), "github.com.argoproj.argo_events.pkg.apis.sensor.v1alpha1.OpenWhiskTrigger") proto.RegisterType((*Sensor)(nil), "github.com.argoproj.argo_events.pkg.apis.sensor.v1alpha1.Sensor") @@ -1162,225 +1193,230 @@ func init() { } var fileDescriptor_6c4bded897df1f16 = []byte{ - // 3475 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x3b, 0x4d, 0x6c, 0x1b, 0xc7, - 0xd5, 0xe6, 0xaf, 0xc8, 0x27, 0xda, 0x92, 0x27, 0x76, 0x3e, 0x46, 0x5f, 0x22, 0x19, 0x1b, 0x7c, - 0xf9, 0x92, 0x20, 0xa1, 0x12, 0x3b, 0x6d, 0x94, 0x04, 0x68, 0x42, 0x52, 0xf2, 0x9f, 0x64, 0x4b, - 0x19, 0xca, 0x36, 0x50, 0x14, 0x4d, 0x56, 0xcb, 0x21, 0xb9, 0x21, 0xb9, 0xbb, 0xdd, 0x19, 0xca, - 0xe1, 0xa1, 0x3f, 0x40, 0xd0, 0x43, 0x81, 0xa2, 0x69, 0xd1, 0xdc, 0x0b, 0xf4, 0x5c, 0xf4, 0xdc, - 0x02, 0x05, 0x0a, 0x14, 0x2d, 0x90, 0x63, 0x7a, 0x28, 0x90, 0x93, 0xd0, 0x28, 0x87, 0x1e, 0x5a, - 0xa0, 0x97, 0x9e, 0x7c, 0x69, 0x31, 0x7f, 0xbb, 0xb3, 0x2b, 0xba, 0xa6, 0x4c, 0x47, 0x29, 0xd0, - 0x1b, 0xf7, 0xbd, 0x37, 0xef, 0xcd, 0xbc, 0x79, 0xf3, 0xfe, 0x66, 0x08, 0x57, 0xbb, 0x2e, 0xeb, - 0x8d, 0xf6, 0x6a, 0x8e, 0x3f, 0x5c, 0xb5, 0xc3, 0xae, 0x1f, 0x84, 0xfe, 0x7b, 0xe2, 0xc7, 0x8b, - 0x64, 0x9f, 0x78, 0x8c, 0xae, 0x06, 0xfd, 0xee, 0xaa, 0x1d, 0xb8, 0x74, 0x95, 0x12, 0x8f, 0xfa, - 0xe1, 0xea, 0xfe, 0xcb, 0xf6, 0x20, 0xe8, 0xd9, 0x2f, 0xaf, 0x76, 0x89, 0x47, 0x42, 0x9b, 0x91, - 0x76, 0x2d, 0x08, 0x7d, 0xe6, 0xa3, 0xb5, 0x98, 0x53, 0x4d, 0x73, 0x12, 0x3f, 0xde, 0x91, 0x9c, - 0x6a, 0x41, 0xbf, 0x5b, 0xe3, 0x9c, 0x6a, 0x92, 0x53, 0x4d, 0x73, 0x5a, 0x7a, 0x73, 0xea, 0x39, - 0x38, 0xfe, 0x70, 0xe8, 0x7b, 0x69, 0xd1, 0x4b, 0x2f, 0x1a, 0x0c, 0xba, 0x7e, 0xd7, 0x5f, 0x15, - 0xe0, 0xbd, 0x51, 0x47, 0x7c, 0x89, 0x0f, 0xf1, 0x4b, 0x91, 0x5b, 0xfd, 0x35, 0x5a, 0x73, 0x7d, - 0xce, 0x72, 0xd5, 0xf1, 0x43, 0xb2, 0xba, 0x7f, 0x64, 0x35, 0x4b, 0xaf, 0xc4, 0x34, 0x43, 0xdb, - 0xe9, 0xb9, 0x1e, 0x09, 0xc7, 0xf1, 0x3c, 0x86, 0x84, 0xd9, 0x93, 0x46, 0xad, 0xde, 0x6f, 0x54, - 0x38, 0xf2, 0x98, 0x3b, 0x24, 0x47, 0x06, 0x7c, 0xf5, 0x41, 0x03, 0xa8, 0xd3, 0x23, 0x43, 0x3b, - 0x3d, 0xce, 0xfa, 0x7d, 0x1e, 0x16, 0xeb, 0x77, 0x5a, 0x5b, 0xf6, 0x70, 0xaf, 0x6d, 0xef, 0x86, - 0x6e, 0xb7, 0x4b, 0x42, 0xb4, 0x06, 0x95, 0xce, 0xc8, 0x73, 0x98, 0xeb, 0x7b, 0x37, 0xed, 0x21, - 0xa9, 0x66, 0x2e, 0x64, 0x9e, 0x2d, 0x37, 0xce, 0x7d, 0x7c, 0xb0, 0x72, 0xea, 0xf0, 0x60, 0xa5, - 0x72, 0xd9, 0xc0, 0xe1, 0x04, 0x25, 0xc2, 0x50, 0xb6, 0x1d, 0x87, 0x50, 0xba, 0x49, 0xc6, 0xd5, - 0xec, 0x85, 0xcc, 0xb3, 0xf3, 0x17, 0xff, 0xaf, 0x26, 0xa7, 0xc6, 0xb7, 0xac, 0xc6, 0xb5, 0x54, - 0xdb, 0x7f, 0xb9, 0xd6, 0x22, 0x4e, 0x48, 0xd8, 0x26, 0x19, 0xb7, 0xc8, 0x80, 0x38, 0xcc, 0x0f, - 0x1b, 0xa7, 0x0f, 0x0f, 0x56, 0xca, 0x75, 0x3d, 0x16, 0xc7, 0x6c, 0x38, 0x4f, 0xaa, 0xc9, 0xab, - 0xb9, 0x63, 0xf3, 0x8c, 0xc0, 0x38, 0x66, 0x83, 0x56, 0xa1, 0xec, 0xd9, 0x43, 0x42, 0x03, 0xdb, - 0x21, 0xd5, 0xbc, 0x58, 0xde, 0x59, 0xb5, 0xbc, 0xf2, 0x4d, 0x8d, 0xc0, 0x31, 0x0d, 0x7a, 0x06, - 0x8a, 0x21, 0xe9, 0xba, 0xbe, 0x57, 0x2d, 0x08, 0xea, 0x33, 0x8a, 0xba, 0x88, 0x05, 0x14, 0x2b, - 0x2c, 0x1a, 0xc1, 0x5c, 0x60, 0x8f, 0x07, 0xbe, 0xdd, 0xae, 0x16, 0x2f, 0xe4, 0x9e, 0x9d, 0xbf, - 0x78, 0xbd, 0xf6, 0xb0, 0xe6, 0x5c, 0x53, 0xdb, 0xb1, 0x63, 0x87, 0xf6, 0x90, 0x30, 0x12, 0x36, - 0x16, 0x94, 0xd0, 0xb9, 0x1d, 0x29, 0x02, 0x6b, 0x59, 0xe8, 0x3b, 0x00, 0x81, 0x26, 0xa3, 0xd5, - 0xb9, 0x47, 0x2e, 0x19, 0x29, 0xc9, 0x10, 0x81, 0x28, 0x36, 0x24, 0x5a, 0x07, 0x39, 0x78, 0xac, - 0x1e, 0x76, 0xfd, 0x3b, 0x7e, 0xd8, 0xef, 0x0c, 0xfc, 0xbb, 0xda, 0x92, 0x3c, 0x28, 0x52, 0x7f, - 0x14, 0x3a, 0xd2, 0x86, 0x66, 0x9a, 0x53, 0x3d, 0x64, 0x6e, 0xc7, 0x76, 0xd8, 0x96, 0xef, 0xd8, - 0xdc, 0xde, 0x1a, 0xc0, 0xd5, 0xdf, 0x12, 0xdc, 0xb1, 0x92, 0x82, 0xae, 0x42, 0xd9, 0x0f, 0xb8, - 0x81, 0xf3, 0x9d, 0xca, 0x8a, 0x9d, 0x7a, 0x5e, 0xef, 0xeb, 0xb6, 0x46, 0xdc, 0x3b, 0x58, 0x39, - 0x6f, 0x4e, 0x36, 0x42, 0xe0, 0x78, 0x70, 0x4a, 0xa3, 0xb9, 0x93, 0xd6, 0x28, 0xfa, 0x61, 0x06, - 0xce, 0x75, 0x43, 0x7f, 0x14, 0xdc, 0x26, 0x21, 0xe5, 0x73, 0x23, 0x4a, 0x91, 0x79, 0xa1, 0xc8, - 0xd7, 0x8d, 0x13, 0x10, 0x1d, 0xf8, 0x58, 0x3c, 0xf7, 0x2b, 0xfc, 0x4c, 0x5c, 0x99, 0xc0, 0xa1, - 0xf1, 0xa4, 0x12, 0x7d, 0x6e, 0x12, 0x16, 0x4f, 0x94, 0x6a, 0x7d, 0x54, 0x80, 0xc5, 0xf4, 0x0e, - 0xa0, 0x16, 0x64, 0xe9, 0x25, 0xb5, 0xb3, 0x6f, 0x4c, 0xaf, 0x1b, 0xe9, 0x7c, 0x6b, 0xad, 0x4b, - 0x9a, 0x61, 0xa3, 0x78, 0x78, 0xb0, 0x92, 0x6d, 0x5d, 0xc2, 0x59, 0x7a, 0x09, 0x59, 0x50, 0x74, - 0xbd, 0x81, 0xeb, 0x11, 0xb5, 0x7f, 0x62, 0x9b, 0xaf, 0x09, 0x08, 0x56, 0x18, 0xd4, 0x86, 0x7c, - 0xc7, 0x1d, 0x10, 0xe5, 0x0d, 0x2e, 0x3f, 0xfc, 0xb6, 0x5c, 0x76, 0x07, 0x24, 0x9a, 0x45, 0xe9, - 0xf0, 0x60, 0x25, 0xcf, 0x21, 0x58, 0x70, 0x47, 0xef, 0x42, 0x6e, 0x14, 0x0e, 0x94, 0xc2, 0x37, - 0x1e, 0x5e, 0xc8, 0x2d, 0xbc, 0x15, 0xc9, 0x98, 0x3b, 0x3c, 0x58, 0xc9, 0xdd, 0xc2, 0x5b, 0x98, - 0xb3, 0x46, 0xef, 0x43, 0xd9, 0xf1, 0xbd, 0x8e, 0xdb, 0x1d, 0xda, 0x81, 0x70, 0x2c, 0xf3, 0x17, - 0x37, 0x1f, 0x5e, 0x4e, 0x53, 0xb3, 0x8a, 0xa4, 0x09, 0x07, 0x18, 0x81, 0x71, 0x2c, 0x8c, 0xaf, - 0xad, 0xeb, 0xb2, 0x6a, 0x71, 0xd6, 0xb5, 0x5d, 0x71, 0x59, 0x72, 0x6d, 0x57, 0x5c, 0x86, 0x39, - 0x6b, 0xe4, 0x40, 0x29, 0xd4, 0x36, 0x3b, 0x27, 0xc4, 0xbc, 0x76, 0x6c, 0x13, 0x89, 0x4c, 0xb6, - 0x72, 0x78, 0xb0, 0x52, 0x8a, 0x4c, 0x34, 0x62, 0x6c, 0x1d, 0x64, 0xa0, 0xdc, 0xb0, 0xa9, 0xeb, - 0xd4, 0x47, 0xac, 0x87, 0xb6, 0xa1, 0x34, 0xa2, 0x24, 0xf4, 0x74, 0xcc, 0x9a, 0x3a, 0x50, 0x08, - 0xf6, 0xb7, 0xd4, 0x50, 0x1c, 0x31, 0xe1, 0x0c, 0x03, 0x9b, 0xd2, 0xbb, 0x7e, 0xd8, 0x3e, 0x5e, - 0x34, 0x13, 0x0c, 0x77, 0xd4, 0x50, 0x1c, 0x31, 0x49, 0xc6, 0x9d, 0xdc, 0x83, 0xe3, 0x8e, 0xf5, - 0xfd, 0x0c, 0x9c, 0x3d, 0xb2, 0xaf, 0xe8, 0x02, 0xe4, 0xbd, 0x38, 0x30, 0x57, 0x14, 0x87, 0xbc, - 0x08, 0xc8, 0x02, 0x93, 0x14, 0x94, 0x9d, 0x22, 0xc0, 0x3d, 0x05, 0xb9, 0xbe, 0x8a, 0xaf, 0xe5, - 0xc6, 0xbc, 0x22, 0xcd, 0xf1, 0xb0, 0xc9, 0xe1, 0xd6, 0x4f, 0x0b, 0x70, 0xba, 0x39, 0xa2, 0xcc, - 0x1f, 0x6a, 0xd7, 0xbe, 0xca, 0xc3, 0x72, 0xb8, 0x4f, 0xc2, 0x5b, 0x78, 0x4b, 0x4d, 0x24, 0x92, - 0xd0, 0xd2, 0x08, 0x1c, 0xd3, 0xf0, 0x10, 0x4a, 0x89, 0x33, 0x0a, 0xe5, 0x7c, 0x4a, 0x71, 0x08, - 0x6d, 0x09, 0x28, 0x56, 0x58, 0x9e, 0x7d, 0x38, 0x24, 0x64, 0xfc, 0x20, 0xee, 0xd8, 0xac, 0xa7, - 0xa6, 0x14, 0x65, 0x1f, 0x4d, 0x03, 0x87, 0x13, 0x94, 0xe8, 0x3a, 0x20, 0x29, 0x8e, 0xaf, 0x70, - 0x7b, 0x9f, 0x84, 0xa1, 0xdb, 0xd6, 0xe1, 0x7d, 0x49, 0x8d, 0x47, 0xad, 0x23, 0x14, 0x78, 0xc2, - 0x28, 0x44, 0x21, 0x4f, 0x03, 0xe2, 0x54, 0x0b, 0xc2, 0xf3, 0xbf, 0x3d, 0xc3, 0xa9, 0x34, 0xb5, - 0x56, 0x6b, 0x05, 0xc4, 0xd9, 0xf0, 0x58, 0x38, 0x8e, 0x77, 0x8d, 0x83, 0xb0, 0x10, 0x96, 0x0a, - 0x3a, 0xc5, 0x13, 0x0f, 0x3a, 0x46, 0xf6, 0x32, 0x77, 0x72, 0xd9, 0xcb, 0xd2, 0xab, 0x50, 0x8e, - 0xf4, 0x82, 0x16, 0xa5, 0x21, 0x0a, 0x8b, 0x12, 0xb6, 0x87, 0xce, 0x41, 0x61, 0xdf, 0x1e, 0x8c, - 0x94, 0x1d, 0x63, 0xf9, 0xf1, 0x7a, 0x76, 0x2d, 0x63, 0xfd, 0x36, 0x03, 0xb0, 0x6e, 0x33, 0xfb, - 0xb2, 0x3b, 0x60, 0x24, 0xe4, 0xc7, 0x22, 0xe0, 0x16, 0x93, 0x3a, 0x16, 0xc2, 0x52, 0x04, 0x06, - 0xbd, 0x00, 0x79, 0x36, 0x0e, 0xf4, 0x89, 0xa8, 0x6a, 0x8a, 0xdd, 0x71, 0x40, 0xee, 0x1d, 0xac, - 0x94, 0xae, 0xb7, 0xb6, 0x6f, 0xf2, 0xdf, 0x58, 0x50, 0xa1, 0x15, 0x2d, 0x98, 0x87, 0xff, 0x72, - 0xa3, 0x7c, 0x78, 0xb0, 0x52, 0xb8, 0xcd, 0x01, 0x6a, 0x0e, 0xe8, 0x2d, 0x00, 0xc7, 0x1f, 0x72, - 0x05, 0x32, 0x3f, 0x54, 0x86, 0x76, 0x41, 0xeb, 0xb8, 0x19, 0x61, 0xee, 0x25, 0xbe, 0xb0, 0x31, - 0xc6, 0x72, 0x61, 0x61, 0x9d, 0x04, 0xc4, 0x6b, 0x13, 0xcf, 0x19, 0x8b, 0x78, 0x3c, 0xc5, 0xe1, - 0x7e, 0x05, 0x2a, 0x6d, 0x3d, 0xc8, 0x25, 0xb4, 0x9a, 0x15, 0xd3, 0x5b, 0xe4, 0xa7, 0x63, 0xdd, - 0x80, 0xe3, 0x04, 0x95, 0xf5, 0x51, 0x06, 0x0a, 0x1b, 0x7c, 0xd3, 0xd0, 0x10, 0xe6, 0x1c, 0xdf, - 0x63, 0xe4, 0x7d, 0xa6, 0xdc, 0xe4, 0x0c, 0x11, 0x54, 0x70, 0x6c, 0x4a, 0x6e, 0x8d, 0x79, 0xbe, - 0xbd, 0xea, 0x03, 0x6b, 0x19, 0xe8, 0x49, 0xc8, 0xb7, 0x6d, 0x66, 0x0b, 0xa5, 0x57, 0x64, 0x94, - 0xe5, 0x9b, 0x86, 0x05, 0xd4, 0xfa, 0x4b, 0x16, 0x2a, 0x26, 0x13, 0xb4, 0x04, 0x59, 0xb7, 0xad, - 0x56, 0x0f, 0x6a, 0xf5, 0xd9, 0x6b, 0xeb, 0x38, 0xeb, 0xb6, 0x85, 0x0f, 0x91, 0x21, 0x25, 0x9b, - 0x4c, 0xc3, 0x53, 0x79, 0xe0, 0x57, 0x60, 0x9e, 0x1f, 0xa8, 0x7d, 0x99, 0xc5, 0x28, 0x17, 0xf2, - 0x98, 0x22, 0x9e, 0xe7, 0xc6, 0xa6, 0x13, 0x1c, 0x93, 0x8e, 0xab, 0x5e, 0x98, 0x47, 0x3e, 0xa9, - 0x7a, 0xc3, 0x24, 0xea, 0xb0, 0xc0, 0x67, 0x2d, 0x96, 0xe6, 0x31, 0x41, 0x2c, 0x0b, 0x82, 0xff, - 0x51, 0xc4, 0x0b, 0x7c, 0x69, 0x4d, 0x89, 0x16, 0xe3, 0xd2, 0xf4, 0xe8, 0x39, 0x98, 0xa3, 0xa3, - 0xbd, 0xf7, 0x88, 0x23, 0xc3, 0x6f, 0x39, 0x3e, 0x18, 0x2d, 0x09, 0xc6, 0x1a, 0x8f, 0xb6, 0x20, - 0xcf, 0x8b, 0x37, 0x15, 0x3f, 0x9f, 0x9f, 0x2e, 0xe7, 0xdb, 0x75, 0x87, 0xc4, 0x98, 0xbb, 0xcb, - 0xcd, 0x86, 0x73, 0xb1, 0x7e, 0x96, 0x85, 0x05, 0xa1, 0xe9, 0xd8, 0xe2, 0xa6, 0x30, 0xb6, 0x3a, - 0x2c, 0x08, 0x1b, 0x90, 0x1a, 0x16, 0xf5, 0x60, 0x36, 0xb9, 0xe2, 0x8d, 0x24, 0x1a, 0xa7, 0xe9, - 0x79, 0xa8, 0x10, 0x20, 0x31, 0x38, 0x15, 0xf5, 0x36, 0x34, 0x02, 0xc7, 0x34, 0x68, 0x1f, 0xe6, - 0x3a, 0xe2, 0x48, 0x53, 0x95, 0x7d, 0x6d, 0xcf, 0x68, 0xa0, 0xf1, 0x8a, 0xa5, 0xab, 0x90, 0x96, - 0x2a, 0x7f, 0x53, 0xac, 0x85, 0x59, 0xff, 0xc8, 0xc2, 0xf9, 0x89, 0xf4, 0x53, 0xe8, 0x69, 0x4f, - 0xed, 0x95, 0xcc, 0x13, 0xd6, 0x67, 0x70, 0x9c, 0xee, 0x90, 0xa8, 0x59, 0x96, 0x92, 0x3b, 0x68, - 0x1e, 0xdc, 0xdc, 0x09, 0x1c, 0xdc, 0x8e, 0x3a, 0xb8, 0x79, 0x11, 0x0b, 0x66, 0x58, 0x52, 0xec, - 0xa3, 0x63, 0xd5, 0x19, 0x2e, 0xe0, 0x25, 0xa8, 0x98, 0x89, 0xf8, 0x83, 0xfd, 0xb8, 0xf5, 0xeb, - 0x3c, 0xcc, 0x1b, 0xa9, 0x27, 0xcf, 0x5e, 0x78, 0xaa, 0x9e, 0x49, 0x66, 0x2f, 0x51, 0x9e, 0xfd, - 0x35, 0x38, 0xe3, 0x0c, 0x7c, 0x8f, 0xac, 0xbb, 0xa1, 0xc8, 0xcf, 0xc6, 0xca, 0x84, 0x1f, 0x57, - 0x94, 0x67, 0x9a, 0x09, 0x2c, 0x4e, 0x51, 0x23, 0x07, 0x0a, 0x4e, 0x48, 0xda, 0x54, 0x69, 0xbd, - 0x31, 0x53, 0xbe, 0xdc, 0xe4, 0x9c, 0x64, 0x30, 0x11, 0x3f, 0xb1, 0xe4, 0x7d, 0xfc, 0x9e, 0xc4, - 0x45, 0x00, 0x4a, 0x7b, 0x9b, 0x64, 0x2c, 0xd2, 0x24, 0xe9, 0x86, 0xa2, 0x08, 0xdf, 0x6a, 0x5d, - 0x55, 0x18, 0x6c, 0x50, 0xa1, 0x17, 0xa0, 0xd4, 0xd1, 0x89, 0x95, 0xf4, 0x3e, 0x8b, 0x6a, 0x44, - 0x29, 0x4a, 0xaa, 0x22, 0x0a, 0xee, 0x6e, 0xf7, 0x42, 0xdb, 0x73, 0x7a, 0xc2, 0x03, 0x19, 0xee, - 0xb6, 0x21, 0xa0, 0x58, 0x61, 0xb9, 0xfa, 0x99, 0xdd, 0xad, 0x96, 0x92, 0xea, 0xdf, 0xb5, 0xbb, - 0x98, 0xc3, 0x39, 0x3a, 0x24, 0x9d, 0x6a, 0x39, 0x89, 0xc6, 0xa4, 0x83, 0x39, 0x1c, 0x0d, 0xa1, - 0x18, 0x92, 0xa1, 0xcf, 0x48, 0x15, 0x84, 0x7a, 0xaf, 0xcd, 0xa4, 0x5e, 0x2c, 0x58, 0xc9, 0x9c, - 0x59, 0x16, 0x8f, 0x12, 0x82, 0x95, 0x10, 0xeb, 0x17, 0x19, 0x28, 0xe9, 0x6d, 0xf8, 0xcf, 0x2f, - 0x19, 0xac, 0xb7, 0x61, 0x21, 0xb5, 0xaa, 0x29, 0x9c, 0xd1, 0x93, 0x90, 0x1f, 0x85, 0x03, 0x9d, - 0x19, 0x08, 0x37, 0x72, 0x0b, 0x6f, 0xb5, 0xb0, 0x80, 0x5a, 0x1f, 0x14, 0x61, 0xfe, 0xea, 0xee, - 0xee, 0x8e, 0x4e, 0xe5, 0x1f, 0x70, 0x7a, 0x8c, 0xac, 0x30, 0x7b, 0x82, 0x3d, 0xad, 0x6f, 0x42, - 0x8e, 0x0d, 0xf4, 0x91, 0x6b, 0xce, 0x20, 0x72, 0xab, 0xa5, 0xac, 0x41, 0x14, 0xa8, 0xbb, 0x5b, - 0x2d, 0xcc, 0x19, 0x73, 0xe3, 0x1e, 0x12, 0xd6, 0xf3, 0xdb, 0xea, 0xb0, 0x45, 0xc6, 0x7d, 0x43, - 0x40, 0xb1, 0xc2, 0xa6, 0x92, 0xf2, 0xc2, 0x89, 0x27, 0xe5, 0xcf, 0xc1, 0x1c, 0x77, 0xfe, 0xfe, - 0x48, 0xe6, 0x0b, 0xb9, 0x58, 0x65, 0xbb, 0x12, 0x8c, 0x35, 0x1e, 0x05, 0x50, 0xde, 0xd3, 0xd5, - 0xb0, 0x4a, 0x1a, 0x66, 0x50, 0x5c, 0x54, 0x58, 0xcb, 0x3e, 0x42, 0xf4, 0x89, 0x63, 0x21, 0xe8, - 0xdb, 0x30, 0xd7, 0x23, 0x76, 0x9b, 0x6b, 0xa6, 0x24, 0x34, 0x83, 0x1f, 0x5e, 0x9e, 0x61, 0x92, - 0xb5, 0xab, 0x92, 0xa9, 0x2c, 0x95, 0xa2, 0x05, 0x2b, 0x28, 0xd6, 0x32, 0x97, 0x5e, 0x87, 0x8a, - 0x49, 0x79, 0xac, 0xe2, 0xe1, 0x07, 0x39, 0x38, 0xbb, 0xb9, 0xd6, 0xd2, 0x5d, 0x85, 0x1d, 0x7f, - 0xe0, 0x3a, 0x63, 0xf4, 0x5d, 0x28, 0x0e, 0xec, 0x3d, 0x32, 0xa0, 0xd5, 0x8c, 0x58, 0xcf, 0x9d, - 0x87, 0x5f, 0xcf, 0x11, 0xe6, 0xb5, 0x2d, 0xc1, 0x59, 0x2e, 0x2a, 0x32, 0x37, 0x09, 0xc4, 0x4a, - 0x2c, 0x72, 0x60, 0x6e, 0xcf, 0x76, 0xfa, 0x7e, 0xa7, 0xa3, 0xfc, 0xc7, 0xda, 0xb1, 0xdb, 0x26, - 0x0d, 0x39, 0x3e, 0xd6, 0x9b, 0x02, 0x60, 0xcd, 0x19, 0xb5, 0xe0, 0x3c, 0x09, 0x43, 0x3f, 0xdc, - 0xf6, 0x14, 0x4a, 0x99, 0x92, 0x38, 0x6d, 0xa5, 0xc6, 0x53, 0x6a, 0xe0, 0xf9, 0x8d, 0x49, 0x44, - 0x78, 0xf2, 0xd8, 0xa5, 0xd7, 0x60, 0xde, 0x58, 0xe0, 0xb1, 0xf6, 0xe2, 0x0f, 0x05, 0xa8, 0x6c, - 0xda, 0x9d, 0xbe, 0x3d, 0xa5, 0x4b, 0x7a, 0x1a, 0x0a, 0xcc, 0x0f, 0x5c, 0x47, 0xc5, 0xf1, 0xd3, - 0x8a, 0xa0, 0xb0, 0xcb, 0x81, 0x58, 0xe2, 0x78, 0x40, 0x0d, 0xec, 0x90, 0xb9, 0x4c, 0x97, 0x00, - 0x85, 0x38, 0xa0, 0xee, 0x68, 0x04, 0x8e, 0x69, 0x52, 0x27, 0x3d, 0x7f, 0xe2, 0x27, 0x7d, 0x0d, - 0x2a, 0x21, 0xf9, 0xd6, 0xc8, 0x0d, 0x49, 0xbb, 0xee, 0xf4, 0xa9, 0x08, 0xe9, 0x85, 0xb8, 0xf3, - 0x81, 0x0d, 0x1c, 0x4e, 0x50, 0xf2, 0xb0, 0xce, 0x8b, 0xca, 0x90, 0x50, 0x2a, 0x9c, 0x44, 0x29, - 0x0e, 0xeb, 0x4d, 0x05, 0xc7, 0x11, 0x05, 0x4f, 0x87, 0x3a, 0x83, 0x11, 0xed, 0x5d, 0xe6, 0x3c, - 0x78, 0x92, 0x2b, 0x7c, 0x45, 0x21, 0x4e, 0x87, 0x2e, 0x27, 0xb0, 0x38, 0x45, 0xad, 0x3d, 0x73, - 0xe9, 0x8b, 0xf2, 0xcc, 0x46, 0xc0, 0x29, 0x9f, 0x60, 0xc0, 0xa9, 0xc3, 0x42, 0x64, 0x0b, 0xae, - 0xd7, 0xdd, 0x24, 0x63, 0x91, 0x90, 0x18, 0x95, 0xce, 0x4e, 0x12, 0x8d, 0xd3, 0xf4, 0xd6, 0x2f, - 0x73, 0x30, 0x7f, 0xb3, 0xbe, 0xdb, 0x9a, 0xd2, 0x8c, 0x8d, 0x52, 0x30, 0xfb, 0x80, 0x52, 0xd0, - 0xd0, 0x49, 0xee, 0x4b, 0xbb, 0x58, 0x3a, 0xf9, 0x23, 0xa1, 0x4c, 0xad, 0xf0, 0x05, 0x99, 0x9a, - 0xf5, 0x61, 0x1e, 0x16, 0xb7, 0x03, 0xe2, 0xdd, 0xe9, 0xb9, 0xb4, 0xaf, 0x77, 0xed, 0x02, 0xe4, - 0x7b, 0x3e, 0x65, 0xe9, 0xfc, 0xea, 0xaa, 0x4f, 0x19, 0x16, 0x18, 0xbe, 0x71, 0xba, 0xb7, 0x90, - 0xda, 0x38, 0xdd, 0x57, 0xd0, 0xf8, 0x63, 0xb7, 0x7c, 0xc5, 0x1d, 0xea, 0x88, 0xf5, 0x76, 0xfd, - 0x3e, 0xf1, 0x54, 0xf9, 0x7b, 0xac, 0x3b, 0x54, 0x3d, 0x16, 0xc7, 0x6c, 0x78, 0xa9, 0x60, 0xc7, - 0xf7, 0xb9, 0xa9, 0x52, 0xa1, 0x1e, 0xdf, 0xe6, 0x1a, 0x54, 0xff, 0xad, 0x57, 0x99, 0xbf, 0xcb, - 0x42, 0xb1, 0x25, 0x98, 0xa0, 0x77, 0xa1, 0x34, 0x24, 0xcc, 0x16, 0x35, 0xb0, 0x2c, 0x0e, 0x5e, - 0x9a, 0xae, 0x05, 0xb3, 0x2d, 0xce, 0xec, 0x0d, 0xc2, 0xec, 0x58, 0x5c, 0x0c, 0xc3, 0x11, 0x57, - 0x5e, 0x61, 0x8b, 0x2e, 0xf3, 0xcc, 0x4d, 0x03, 0x39, 0xe3, 0x56, 0x40, 0x9c, 0x89, 0x8d, 0x65, - 0x0f, 0x8a, 0x94, 0xd9, 0x6c, 0x44, 0x67, 0xef, 0x1b, 0x28, 0x49, 0x82, 0x9b, 0xd1, 0x7f, 0x13, - 0xdf, 0x58, 0x49, 0xb1, 0xfe, 0x98, 0x01, 0x90, 0x84, 0x5b, 0x2e, 0x65, 0xe8, 0x1b, 0x47, 0x14, - 0x59, 0x9b, 0x4e, 0x91, 0x7c, 0xb4, 0x50, 0x63, 0x14, 0xce, 0x34, 0xc4, 0x50, 0x22, 0x81, 0x82, - 0xcb, 0xc8, 0x90, 0xaa, 0xea, 0xe4, 0xad, 0x59, 0xd7, 0x16, 0xa7, 0x13, 0xd7, 0x38, 0x5b, 0x2c, - 0xb9, 0x5b, 0xbf, 0x2a, 0xe8, 0x35, 0x71, 0xc5, 0xa2, 0x0f, 0x32, 0xa9, 0x2e, 0xac, 0xcc, 0x17, - 0xaf, 0x3d, 0xb2, 0x4e, 0x55, 0x1c, 0xf8, 0xef, 0xdf, 0xd4, 0x45, 0x3e, 0x94, 0x98, 0xb4, 0x70, - 0xbd, 0xfc, 0xfa, 0xcc, 0x67, 0x25, 0x56, 0xb6, 0x02, 0x50, 0x1c, 0x09, 0x41, 0x01, 0x94, 0x18, - 0x19, 0x06, 0x03, 0x9b, 0x91, 0xd9, 0xbb, 0x21, 0xbb, 0x8a, 0x93, 0x21, 0x51, 0x41, 0x70, 0x24, - 0x85, 0xfb, 0x5a, 0xc7, 0x0d, 0x9d, 0x91, 0xcb, 0x54, 0xa1, 0x16, 0xf9, 0x8e, 0xa6, 0x04, 0x63, - 0x8d, 0x47, 0x1f, 0x66, 0x60, 0xb1, 0x9d, 0x6c, 0xa7, 0xeb, 0x8a, 0x6d, 0x86, 0x7d, 0x49, 0x35, - 0xe8, 0xa3, 0x6b, 0x83, 0xc5, 0x14, 0x82, 0xe2, 0x23, 0xc2, 0xd1, 0x75, 0x40, 0x2a, 0x59, 0xbe, - 0x6c, 0xbb, 0x03, 0xd2, 0xc6, 0xfe, 0xc8, 0x6b, 0xab, 0x14, 0x2d, 0xba, 0x92, 0xda, 0x38, 0x42, - 0x81, 0x27, 0x8c, 0xe2, 0xe9, 0xa1, 0x98, 0x6a, 0x63, 0x44, 0x85, 0x1b, 0x9f, 0x4b, 0x5e, 0x8c, - 0x6d, 0x18, 0x38, 0x9c, 0xa0, 0xb4, 0x7c, 0xa8, 0x98, 0xc7, 0x16, 0xbd, 0x13, 0xb9, 0x03, 0x79, - 0x1a, 0x5f, 0x3d, 0xfe, 0xe5, 0xfd, 0xbf, 0x3f, 0xff, 0x7f, 0xcb, 0x42, 0xa5, 0x35, 0xb0, 0x9d, - 0x28, 0xa4, 0x26, 0xbd, 0x7a, 0xe6, 0xc4, 0xf3, 0x88, 0x5b, 0x00, 0x54, 0xcc, 0x47, 0x44, 0xd5, - 0x63, 0x35, 0x66, 0xce, 0x88, 0x76, 0x5a, 0x34, 0x18, 0x1b, 0x8c, 0x8e, 0x1f, 0xdc, 0xb9, 0x31, - 0xf7, 0x6c, 0xcf, 0x23, 0x83, 0x23, 0xc6, 0x2c, 0xc1, 0x58, 0xe3, 0x39, 0xe9, 0x90, 0x50, 0x6a, - 0x77, 0x75, 0xc0, 0x8e, 0x48, 0x6f, 0x48, 0x30, 0xd6, 0x78, 0xeb, 0x9f, 0x79, 0x40, 0x2d, 0x66, - 0x7b, 0x6d, 0x3b, 0x6c, 0x6f, 0xae, 0x45, 0xd9, 0xe7, 0x7d, 0xdf, 0x90, 0x64, 0xbe, 0x8c, 0x37, - 0x24, 0xc6, 0x63, 0xa0, 0xec, 0x89, 0x3c, 0x06, 0xba, 0x69, 0x3e, 0x06, 0x92, 0x9b, 0xf3, 0xd2, - 0xa4, 0xc7, 0x40, 0xff, 0xbb, 0x39, 0xda, 0x23, 0xa1, 0x47, 0x18, 0xa1, 0x7a, 0xae, 0x53, 0x3c, - 0x09, 0x3a, 0xf9, 0x5c, 0xb8, 0x03, 0xa7, 0x03, 0x9b, 0x39, 0xbd, 0x16, 0x0b, 0x6d, 0x46, 0xba, - 0x63, 0x65, 0x16, 0x6f, 0xa9, 0x61, 0xa7, 0x77, 0x4c, 0xe4, 0xbd, 0x83, 0x95, 0xff, 0xbf, 0xdf, - 0x9b, 0x40, 0x36, 0x0e, 0x08, 0xad, 0x09, 0x72, 0x71, 0x45, 0x95, 0x64, 0xcb, 0x93, 0xc5, 0x81, - 0xbb, 0x4f, 0xb6, 0xe3, 0x3b, 0xaa, 0x52, 0x3c, 0xb7, 0xad, 0x08, 0x83, 0x0d, 0x2a, 0x6b, 0x15, - 0x2a, 0xd2, 0x05, 0xa8, 0x36, 0xca, 0x0a, 0x14, 0xec, 0xc1, 0xc0, 0xbf, 0x2b, 0x8e, 0x7a, 0x41, - 0x76, 0xbb, 0xeb, 0x1c, 0x80, 0x25, 0xdc, 0xfa, 0x4d, 0x06, 0xca, 0x51, 0x52, 0xce, 0x45, 0x3a, - 0x76, 0x93, 0x84, 0x6c, 0x27, 0xee, 0xfb, 0x47, 0x22, 0x9b, 0x75, 0x8d, 0xc1, 0x06, 0x95, 0x6c, - 0xea, 0xbb, 0xc4, 0x63, 0xd1, 0xb8, 0x23, 0x4d, 0x7d, 0x13, 0x8b, 0x53, 0xd4, 0xe8, 0x0d, 0x38, - 0x2d, 0x21, 0xba, 0x83, 0x2e, 0x4d, 0xe4, 0xbc, 0x56, 0x67, 0xd3, 0x44, 0xe2, 0x24, 0xad, 0xf5, - 0xf3, 0x3c, 0x44, 0xb1, 0x4a, 0xbf, 0x3b, 0x70, 0x1d, 0x52, 0x77, 0x1c, 0x7f, 0xa4, 0x2e, 0xba, - 0x32, 0x47, 0xdf, 0x1d, 0x24, 0x29, 0xf0, 0x84, 0x51, 0xe8, 0xba, 0x78, 0x12, 0xc4, 0x6c, 0xbe, - 0x5b, 0xea, 0x9c, 0x3c, 0x35, 0xc9, 0x4f, 0x35, 0x35, 0x51, 0xf4, 0xc8, 0x47, 0x7e, 0xe2, 0x78, - 0x38, 0xda, 0x80, 0xb9, 0x7d, 0x7f, 0x30, 0x1a, 0x12, 0xfd, 0x80, 0x6d, 0x69, 0x12, 0xa7, 0xdb, - 0x82, 0xc4, 0xa8, 0x60, 0xe4, 0x10, 0xac, 0xc7, 0x22, 0x02, 0x0b, 0xe2, 0x69, 0x86, 0xcb, 0xc6, - 0xea, 0x8a, 0x48, 0x95, 0x25, 0xcf, 0x4c, 0x62, 0xb7, 0xe3, 0xb7, 0x5b, 0x49, 0xea, 0xc6, 0x63, - 0xbc, 0x76, 0x4e, 0x01, 0x71, 0x9a, 0x27, 0xfa, 0x51, 0x06, 0x2a, 0x9e, 0xdf, 0x26, 0xda, 0xf1, - 0xaa, 0xc0, 0xbd, 0x3b, 0x7b, 0x7a, 0x51, 0xbb, 0x69, 0xb0, 0x95, 0xdd, 0xb7, 0x28, 0x6a, 0x9a, - 0x28, 0x9c, 0x90, 0xbf, 0xf4, 0x26, 0x9c, 0x3d, 0x32, 0xf0, 0x58, 0x5d, 0xad, 0x16, 0x40, 0x7c, - 0x99, 0x87, 0x9e, 0x86, 0x02, 0x65, 0x76, 0xa8, 0xcb, 0xca, 0x28, 0xc9, 0x6c, 0x71, 0x20, 0x96, - 0x38, 0x5e, 0x7a, 0x52, 0xe6, 0x07, 0xca, 0x94, 0xe3, 0x54, 0x9e, 0xf9, 0x01, 0x16, 0x18, 0xeb, - 0xaf, 0x59, 0x98, 0xd3, 0x0e, 0x9e, 0x1a, 0xc9, 0x58, 0x66, 0xd6, 0xbb, 0x13, 0xc5, 0x34, 0xca, - 0xc9, 0x2a, 0xf7, 0xc9, 0xc7, 0x92, 0x6e, 0x30, 0x7b, 0xe2, 0x6e, 0xb0, 0x0f, 0xc5, 0x40, 0x38, - 0x19, 0x95, 0x7f, 0x5e, 0x99, 0x5d, 0xb6, 0x60, 0x27, 0x63, 0x88, 0xfc, 0x8d, 0x95, 0x08, 0xeb, - 0xef, 0x19, 0x58, 0x4c, 0xcf, 0x10, 0xf5, 0x21, 0x47, 0x43, 0x47, 0x69, 0x7c, 0xe7, 0xd1, 0x2d, - 0x5d, 0xc6, 0x2f, 0xd9, 0xa1, 0x68, 0x85, 0x0e, 0xe6, 0x52, 0xb8, 0x45, 0xb4, 0x09, 0x65, 0x69, - 0x8b, 0x58, 0x27, 0x94, 0x61, 0x81, 0x41, 0x5b, 0x47, 0xe3, 0x5c, 0x6d, 0x52, 0x9c, 0x7b, 0x22, - 0x2d, 0x6f, 0x52, 0x94, 0xb3, 0xfe, 0x94, 0x85, 0xc7, 0x27, 0x4f, 0x8c, 0x7b, 0xdc, 0x38, 0xc1, - 0x35, 0x7c, 0x5c, 0xe4, 0x71, 0xd7, 0x13, 0x58, 0x9c, 0xa2, 0x16, 0x5e, 0x5e, 0x1e, 0x76, 0xfd, - 0x3c, 0xdc, 0xf4, 0xf2, 0x11, 0x06, 0x1b, 0x54, 0xa8, 0x0e, 0x0b, 0xea, 0x6b, 0xd7, 0x2c, 0x3b, - 0x8c, 0xa6, 0x5c, 0x33, 0x89, 0xc6, 0x69, 0x7a, 0x9e, 0x48, 0xf1, 0x3a, 0x91, 0xcb, 0x4c, 0xe5, - 0x5c, 0xeb, 0x12, 0x8c, 0x35, 0x9e, 0xa7, 0xd8, 0xfc, 0x67, 0x24, 0xaa, 0x90, 0x4c, 0xb1, 0xd7, - 0x0d, 0x1c, 0x4e, 0x50, 0xc6, 0x6f, 0x85, 0xe4, 0xad, 0xea, 0x91, 0xb7, 0x42, 0xd6, 0xe7, 0x19, - 0x38, 0x9d, 0xb0, 0x37, 0xd4, 0x81, 0x5c, 0x7f, 0x4d, 0xa7, 0xe0, 0x9b, 0x8f, 0xf0, 0x9e, 0x41, - 0x5a, 0xd0, 0xe6, 0x1a, 0xc5, 0x5c, 0x00, 0x7a, 0x2f, 0xca, 0xf6, 0xb3, 0x33, 0x17, 0xff, 0x46, - 0x8c, 0x57, 0x39, 0x57, 0x32, 0xf1, 0xdf, 0x88, 0x16, 0xd9, 0xba, 0xeb, 0x32, 0xa7, 0x87, 0x9e, - 0x80, 0x9c, 0xed, 0x8d, 0x45, 0x1a, 0x50, 0x96, 0xf3, 0xaa, 0x7b, 0x63, 0xcc, 0x61, 0x02, 0x35, - 0x18, 0xa8, 0x3b, 0x4a, 0x89, 0x1a, 0x0c, 0x30, 0x87, 0x59, 0x3f, 0x29, 0xc3, 0x42, 0xca, 0x1f, - 0x4d, 0x71, 0xeb, 0xd9, 0x87, 0x22, 0x15, 0x52, 0xd5, 0x42, 0x67, 0xf7, 0x0c, 0x72, 0x11, 0x6a, - 0xa5, 0xe2, 0x37, 0x56, 0x22, 0x50, 0x57, 0xee, 0x9e, 0xf4, 0x41, 0x5b, 0x33, 0xa9, 0x34, 0x95, - 0xb7, 0xa7, 0xb6, 0xef, 0x83, 0x0c, 0x54, 0x6c, 0xe3, 0xb9, 0xba, 0x0a, 0xbe, 0x37, 0x66, 0xc9, - 0x9e, 0x8f, 0xbc, 0xd4, 0x97, 0xaf, 0xc7, 0x4c, 0x04, 0x4e, 0x08, 0x45, 0x0e, 0xe4, 0x7b, 0x8c, - 0xe9, 0x57, 0xca, 0x1b, 0x8f, 0xe4, 0x96, 0x4f, 0x5e, 0x4c, 0x73, 0x00, 0x16, 0xcc, 0xd1, 0x5d, - 0x28, 0xdb, 0x77, 0xa9, 0xfc, 0x33, 0x8a, 0x7a, 0x9b, 0x3c, 0x4b, 0x91, 0x90, 0xfa, 0x5f, 0x8b, - 0xea, 0x8f, 0x6a, 0x28, 0x8e, 0x65, 0xa1, 0x10, 0x8a, 0x8e, 0x78, 0xa7, 0xa9, 0x6e, 0x4d, 0xaf, - 0x3c, 0xa2, 0xf7, 0x9e, 0x8d, 0xb3, 0x22, 0x93, 0x34, 0x41, 0x58, 0x49, 0x42, 0x5d, 0x28, 0xf4, - 0xed, 0x4e, 0xdf, 0x56, 0xf7, 0x28, 0x33, 0x9c, 0x4a, 0xf3, 0xe6, 0x4c, 0x7a, 0x1e, 0x01, 0xc1, - 0x92, 0x3f, 0xdf, 0x3a, 0xcf, 0x66, 0x54, 0xbc, 0xbf, 0x98, 0x69, 0xeb, 0x8c, 0x9b, 0x0d, 0xb9, - 0x75, 0x1c, 0x80, 0x05, 0x73, 0xbe, 0x1a, 0x51, 0x17, 0xab, 0x37, 0x1c, 0xb3, 0xf8, 0x18, 0xa3, - 0x6f, 0x20, 0x57, 0x23, 0x20, 0x58, 0xf2, 0xe7, 0x36, 0xe2, 0xeb, 0x86, 0x7d, 0x75, 0x7e, 0x56, - 0x1b, 0x49, 0xf7, 0xfe, 0xa5, 0x8d, 0x44, 0x50, 0x1c, 0xcb, 0xb2, 0x1c, 0x98, 0x37, 0x5e, 0xf2, - 0x4f, 0xf1, 0xd8, 0xf4, 0x22, 0xc0, 0x3e, 0x09, 0xdd, 0xce, 0x98, 0x97, 0x1c, 0xea, 0xd1, 0x73, - 0x14, 0xee, 0x6e, 0x47, 0x18, 0x6c, 0x50, 0x35, 0x6a, 0x1f, 0x7f, 0xb6, 0x7c, 0xea, 0x93, 0xcf, - 0x96, 0x4f, 0x7d, 0xfa, 0xd9, 0xf2, 0xa9, 0xef, 0x1d, 0x2e, 0x67, 0x3e, 0x3e, 0x5c, 0xce, 0x7c, - 0x72, 0xb8, 0x9c, 0xf9, 0xf4, 0x70, 0x39, 0xf3, 0xe7, 0xc3, 0xe5, 0xcc, 0x8f, 0x3f, 0x5f, 0x3e, - 0xf5, 0xf5, 0x92, 0x9e, 0xff, 0xbf, 0x02, 0x00, 0x00, 0xff, 0xff, 0xd3, 0x95, 0xb2, 0xdd, 0x77, - 0x37, 0x00, 0x00, + // 3557 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x3b, 0x4d, 0x6f, 0x1b, 0xd7, + 0xb5, 0xe6, 0xa7, 0xc8, 0x23, 0xda, 0x92, 0x6f, 0xec, 0x3c, 0x46, 0x2f, 0x91, 0x8c, 0x09, 0x5e, + 0x5e, 0x12, 0x24, 0x54, 0x62, 0xe7, 0xbd, 0x28, 0x09, 0x90, 0x84, 0xa4, 0xe4, 0x2f, 0xc9, 0x96, + 0x72, 0x47, 0xb6, 0x81, 0x87, 0x87, 0x26, 0xa3, 0xe1, 0x25, 0x39, 0x21, 0x39, 0x33, 0x9d, 0xb9, + 0x94, 0xc3, 0x45, 0x3f, 0x80, 0xa0, 0x8b, 0x06, 0x45, 0xd3, 0xa2, 0xd9, 0xf7, 0x0f, 0x14, 0x5d, + 0xb7, 0x40, 0x81, 0x02, 0x45, 0x0b, 0x64, 0x99, 0x2e, 0x0a, 0x64, 0x25, 0x34, 0xca, 0xa2, 0x8b, + 0x16, 0xe8, 0xa6, 0x2b, 0x6f, 0x5a, 0xdc, 0xaf, 0x99, 0x3b, 0x23, 0xba, 0xa6, 0x3c, 0x8e, 0x52, + 0xa0, 0x3b, 0xce, 0x39, 0xe7, 0x9e, 0x73, 0xef, 0xb9, 0xe7, 0xf3, 0xde, 0x4b, 0xb8, 0xda, 0x73, + 0x68, 0x7f, 0xbc, 0xd7, 0xb0, 0xbd, 0xd1, 0xaa, 0x15, 0xf4, 0x3c, 0x3f, 0xf0, 0xde, 0xe7, 0x3f, + 0x5e, 0x24, 0xfb, 0xc4, 0xa5, 0xe1, 0xaa, 0x3f, 0xe8, 0xad, 0x5a, 0xbe, 0x13, 0xae, 0x86, 0xc4, + 0x0d, 0xbd, 0x60, 0x75, 0xff, 0x65, 0x6b, 0xe8, 0xf7, 0xad, 0x97, 0x57, 0x7b, 0xc4, 0x25, 0x81, + 0x45, 0x49, 0xa7, 0xe1, 0x07, 0x1e, 0xf5, 0xd0, 0x5a, 0xcc, 0xa9, 0xa1, 0x38, 0xf1, 0x1f, 0xef, + 0x0a, 0x4e, 0x0d, 0x7f, 0xd0, 0x6b, 0x30, 0x4e, 0x0d, 0xc1, 0xa9, 0xa1, 0x38, 0x2d, 0xbd, 0x35, + 0xf3, 0x1c, 0x6c, 0x6f, 0x34, 0xf2, 0xdc, 0xb4, 0xe8, 0xa5, 0x17, 0x35, 0x06, 0x3d, 0xaf, 0xe7, + 0xad, 0x72, 0xf0, 0xde, 0xb8, 0xcb, 0xbf, 0xf8, 0x07, 0xff, 0x25, 0xc9, 0x8d, 0xc1, 0x5a, 0xd8, + 0x70, 0x3c, 0xc6, 0x72, 0xd5, 0xf6, 0x02, 0xb2, 0xba, 0x7f, 0x64, 0x35, 0x4b, 0xaf, 0xc4, 0x34, + 0x23, 0xcb, 0xee, 0x3b, 0x2e, 0x09, 0x26, 0xf1, 0x3c, 0x46, 0x84, 0x5a, 0xd3, 0x46, 0xad, 0xde, + 0x6f, 0x54, 0x30, 0x76, 0xa9, 0x33, 0x22, 0x47, 0x06, 0xfc, 0xef, 0x83, 0x06, 0x84, 0x76, 0x9f, + 0x8c, 0xac, 0xf4, 0x38, 0xe3, 0xb7, 0x45, 0x58, 0x6c, 0xde, 0x31, 0xb7, 0xac, 0xd1, 0x5e, 0xc7, + 0xda, 0x0d, 0x9c, 0x5e, 0x8f, 0x04, 0x68, 0x0d, 0x6a, 0xdd, 0xb1, 0x6b, 0x53, 0xc7, 0x73, 0x6f, + 0x5a, 0x23, 0x52, 0xcf, 0x5d, 0xc8, 0x3d, 0x5b, 0x6d, 0x9d, 0xfb, 0xf4, 0x60, 0xe5, 0xd4, 0xe1, + 0xc1, 0x4a, 0xed, 0xb2, 0x86, 0xc3, 0x09, 0x4a, 0x84, 0xa1, 0x6a, 0xd9, 0x36, 0x09, 0xc3, 0x4d, + 0x32, 0xa9, 0xe7, 0x2f, 0xe4, 0x9e, 0x9d, 0xbf, 0xf8, 0x5f, 0x0d, 0x31, 0x35, 0xb6, 0x65, 0x0d, + 0xa6, 0xa5, 0xc6, 0xfe, 0xcb, 0x0d, 0x93, 0xd8, 0x01, 0xa1, 0x9b, 0x64, 0x62, 0x92, 0x21, 0xb1, + 0xa9, 0x17, 0xb4, 0x4e, 0x1f, 0x1e, 0xac, 0x54, 0x9b, 0x6a, 0x2c, 0x8e, 0xd9, 0x30, 0x9e, 0xa1, + 0x22, 0xaf, 0x17, 0x8e, 0xcd, 0x33, 0x02, 0xe3, 0x98, 0x0d, 0x5a, 0x85, 0xaa, 0x6b, 0x8d, 0x48, + 0xe8, 0x5b, 0x36, 0xa9, 0x17, 0xf9, 0xf2, 0xce, 0xca, 0xe5, 0x55, 0x6f, 0x2a, 0x04, 0x8e, 0x69, + 0xd0, 0x33, 0x50, 0x0e, 0x48, 0xcf, 0xf1, 0xdc, 0x7a, 0x89, 0x53, 0x9f, 0x91, 0xd4, 0x65, 0xcc, + 0xa1, 0x58, 0x62, 0xd1, 0x18, 0xe6, 0x7c, 0x6b, 0x32, 0xf4, 0xac, 0x4e, 0xbd, 0x7c, 0xa1, 0xf0, + 0xec, 0xfc, 0xc5, 0xeb, 0x8d, 0x87, 0x35, 0xe7, 0x86, 0xdc, 0x8e, 0x1d, 0x2b, 0xb0, 0x46, 0x84, + 0x92, 0xa0, 0xb5, 0x20, 0x85, 0xce, 0xed, 0x08, 0x11, 0x58, 0xc9, 0x42, 0xdf, 0x06, 0xf0, 0x15, + 0x59, 0x58, 0x9f, 0x7b, 0xe4, 0x92, 0x91, 0x94, 0x0c, 0x11, 0x28, 0xc4, 0x9a, 0x44, 0xe3, 0xa0, + 0x00, 0x8f, 0x35, 0x83, 0x9e, 0x77, 0xc7, 0x0b, 0x06, 0xdd, 0xa1, 0x77, 0x57, 0x59, 0x92, 0x0b, + 0xe5, 0xd0, 0x1b, 0x07, 0xb6, 0xb0, 0xa1, 0x4c, 0x73, 0x6a, 0x06, 0xd4, 0xe9, 0x5a, 0x36, 0xdd, + 0xf2, 0x6c, 0x8b, 0xd9, 0x5b, 0x0b, 0x98, 0xfa, 0x4d, 0xce, 0x1d, 0x4b, 0x29, 0xe8, 0x2a, 0x54, + 0x3d, 0x9f, 0x19, 0x38, 0xdb, 0xa9, 0x3c, 0xdf, 0xa9, 0xe7, 0xd5, 0xbe, 0x6e, 0x2b, 0xc4, 0xbd, + 0x83, 0x95, 0xf3, 0xfa, 0x64, 0x23, 0x04, 0x8e, 0x07, 0xa7, 0x34, 0x5a, 0x38, 0x69, 0x8d, 0xa2, + 0x1f, 0xe4, 0xe0, 0x5c, 0x2f, 0xf0, 0xc6, 0xfe, 0x6d, 0x12, 0x84, 0x6c, 0x6e, 0x44, 0x2a, 0xb2, + 0xc8, 0x15, 0xf9, 0xba, 0xe6, 0x01, 0x91, 0xc3, 0xc7, 0xe2, 0x59, 0x5c, 0x61, 0x3e, 0x71, 0x65, + 0x0a, 0x87, 0xd6, 0x93, 0x52, 0xf4, 0xb9, 0x69, 0x58, 0x3c, 0x55, 0xaa, 0xf1, 0x49, 0x09, 0x16, + 0xd3, 0x3b, 0x80, 0x4c, 0xc8, 0x87, 0x97, 0xe4, 0xce, 0xbe, 0x31, 0xbb, 0x6e, 0x44, 0xf0, 0x6d, + 0x98, 0x97, 0x14, 0xc3, 0x56, 0xf9, 0xf0, 0x60, 0x25, 0x6f, 0x5e, 0xc2, 0xf9, 0xf0, 0x12, 0x32, + 0xa0, 0xec, 0xb8, 0x43, 0xc7, 0x25, 0x72, 0xff, 0xf8, 0x36, 0x5f, 0xe3, 0x10, 0x2c, 0x31, 0xa8, + 0x03, 0xc5, 0xae, 0x33, 0x24, 0x32, 0x1a, 0x5c, 0x7e, 0xf8, 0x6d, 0xb9, 0xec, 0x0c, 0x49, 0x34, + 0x8b, 0xca, 0xe1, 0xc1, 0x4a, 0x91, 0x41, 0x30, 0xe7, 0x8e, 0xde, 0x83, 0xc2, 0x38, 0x18, 0x4a, + 0x85, 0x6f, 0x3c, 0xbc, 0x90, 0x5b, 0x78, 0x2b, 0x92, 0x31, 0x77, 0x78, 0xb0, 0x52, 0xb8, 0x85, + 0xb7, 0x30, 0x63, 0x8d, 0x3e, 0x80, 0xaa, 0xed, 0xb9, 0x5d, 0xa7, 0x37, 0xb2, 0x7c, 0x1e, 0x58, + 0xe6, 0x2f, 0x6e, 0x3e, 0xbc, 0x9c, 0xb6, 0x62, 0x15, 0x49, 0xe3, 0x01, 0x30, 0x02, 0xe3, 0x58, + 0x18, 0x5b, 0x5b, 0xcf, 0xa1, 0xf5, 0x72, 0xd6, 0xb5, 0x5d, 0x71, 0x68, 0x72, 0x6d, 0x57, 0x1c, + 0x8a, 0x19, 0x6b, 0x64, 0x43, 0x25, 0x50, 0x36, 0x3b, 0xc7, 0xc5, 0xbc, 0x76, 0x6c, 0x13, 0x89, + 0x4c, 0xb6, 0x76, 0x78, 0xb0, 0x52, 0x89, 0x4c, 0x34, 0x62, 0x6c, 0x1c, 0xe4, 0xa0, 0xda, 0xb2, + 0x42, 0xc7, 0x6e, 0x8e, 0x69, 0x1f, 0x6d, 0x43, 0x65, 0x1c, 0x92, 0xc0, 0x55, 0x39, 0x6b, 0xe6, + 0x44, 0xc1, 0xd9, 0xdf, 0x92, 0x43, 0x71, 0xc4, 0x84, 0x31, 0xf4, 0xad, 0x30, 0xbc, 0xeb, 0x05, + 0x9d, 0xe3, 0x65, 0x33, 0xce, 0x70, 0x47, 0x0e, 0xc5, 0x11, 0x93, 0x64, 0xde, 0x29, 0x3c, 0x38, + 0xef, 0x18, 0xdf, 0xcb, 0xc1, 0xd9, 0x23, 0xfb, 0x8a, 0x2e, 0x40, 0xd1, 0x8d, 0x13, 0x73, 0x4d, + 0x72, 0x28, 0xf2, 0x84, 0xcc, 0x31, 0x49, 0x41, 0xf9, 0x19, 0x12, 0xdc, 0x53, 0x50, 0x18, 0xc8, + 0xfc, 0x5a, 0x6d, 0xcd, 0x4b, 0xd2, 0x02, 0x4b, 0x9b, 0x0c, 0x6e, 0xfc, 0xa4, 0x04, 0xa7, 0xdb, + 0xe3, 0x90, 0x7a, 0x23, 0x15, 0xda, 0x57, 0x59, 0x5a, 0x0e, 0xf6, 0x49, 0x70, 0x0b, 0x6f, 0xc9, + 0x89, 0x44, 0x12, 0x4c, 0x85, 0xc0, 0x31, 0x0d, 0x4b, 0xa1, 0x21, 0xb1, 0xc7, 0x81, 0x98, 0x4f, + 0x25, 0x4e, 0xa1, 0x26, 0x87, 0x62, 0x89, 0x65, 0xd5, 0x87, 0x4d, 0x02, 0xca, 0x1c, 0x71, 0xc7, + 0xa2, 0x7d, 0x39, 0xa5, 0xa8, 0xfa, 0x68, 0x6b, 0x38, 0x9c, 0xa0, 0x44, 0xd7, 0x01, 0x09, 0x71, + 0x6c, 0x85, 0xdb, 0xfb, 0x24, 0x08, 0x9c, 0x8e, 0x4a, 0xef, 0x4b, 0x72, 0x3c, 0x32, 0x8f, 0x50, + 0xe0, 0x29, 0xa3, 0x50, 0x08, 0xc5, 0xd0, 0x27, 0x76, 0xbd, 0xc4, 0x23, 0xff, 0x3b, 0x19, 0xbc, + 0x52, 0xd7, 0x5a, 0xc3, 0xf4, 0x89, 0xbd, 0xe1, 0xd2, 0x60, 0x12, 0xef, 0x1a, 0x03, 0x61, 0x2e, + 0x2c, 0x95, 0x74, 0xca, 0x27, 0x9e, 0x74, 0xb4, 0xea, 0x65, 0xee, 0xe4, 0xaa, 0x97, 0xa5, 0x57, + 0xa1, 0x1a, 0xe9, 0x05, 0x2d, 0x0a, 0x43, 0xe4, 0x16, 0xc5, 0x6d, 0x0f, 0x9d, 0x83, 0xd2, 0xbe, + 0x35, 0x1c, 0x4b, 0x3b, 0xc6, 0xe2, 0xe3, 0xf5, 0xfc, 0x5a, 0xce, 0xf8, 0x75, 0x0e, 0x60, 0xdd, + 0xa2, 0xd6, 0x65, 0x67, 0x48, 0x49, 0xc0, 0xdc, 0xc2, 0x67, 0x16, 0x93, 0x72, 0x0b, 0x6e, 0x29, + 0x1c, 0x83, 0x5e, 0x80, 0x22, 0x9d, 0xf8, 0xca, 0x23, 0xea, 0x8a, 0x62, 0x77, 0xe2, 0x93, 0x7b, + 0x07, 0x2b, 0x95, 0xeb, 0xe6, 0xf6, 0x4d, 0xf6, 0x1b, 0x73, 0x2a, 0xb4, 0xa2, 0x04, 0xb3, 0xf4, + 0x5f, 0x6d, 0x55, 0x0f, 0x0f, 0x56, 0x4a, 0xb7, 0x19, 0x40, 0xce, 0x01, 0xbd, 0x0d, 0x60, 0x7b, + 0x23, 0xa6, 0x40, 0xea, 0x05, 0xd2, 0xd0, 0x2e, 0x28, 0x1d, 0xb7, 0x23, 0xcc, 0xbd, 0xc4, 0x17, + 0xd6, 0xc6, 0x18, 0x0e, 0x2c, 0xac, 0x13, 0x9f, 0xb8, 0x1d, 0xe2, 0xda, 0x13, 0x9e, 0x8f, 0x67, + 0x70, 0xee, 0x57, 0xa0, 0xd6, 0x51, 0x83, 0x1c, 0x12, 0xd6, 0xf3, 0x7c, 0x7a, 0x8b, 0xcc, 0x3b, + 0xd6, 0x35, 0x38, 0x4e, 0x50, 0x19, 0x9f, 0xe4, 0xa0, 0xb4, 0xc1, 0x36, 0x0d, 0x8d, 0x60, 0xce, + 0xf6, 0x5c, 0x4a, 0x3e, 0xa0, 0x32, 0x4c, 0x66, 0xc8, 0xa0, 0x9c, 0x63, 0x5b, 0x70, 0x6b, 0xcd, + 0xb3, 0xed, 0x95, 0x1f, 0x58, 0xc9, 0x40, 0x4f, 0x42, 0xb1, 0x63, 0x51, 0x8b, 0x2b, 0xbd, 0x26, + 0xb2, 0x2c, 0xdb, 0x34, 0xcc, 0xa1, 0xc6, 0x9f, 0xf2, 0x50, 0xd3, 0x99, 0xa0, 0x25, 0xc8, 0x3b, + 0x1d, 0xb9, 0x7a, 0x90, 0xab, 0xcf, 0x5f, 0x5b, 0xc7, 0x79, 0xa7, 0xc3, 0x63, 0x88, 0x48, 0x29, + 0xf9, 0x64, 0x19, 0x9e, 0xaa, 0x03, 0xff, 0x07, 0xe6, 0x99, 0x43, 0xed, 0x8b, 0x2a, 0x46, 0x86, + 0x90, 0xc7, 0x24, 0xf1, 0x3c, 0x33, 0x36, 0x55, 0xe0, 0xe8, 0x74, 0x4c, 0xf5, 0xdc, 0x3c, 0x8a, + 0x49, 0xd5, 0x6b, 0x26, 0xd1, 0x84, 0x05, 0x36, 0x6b, 0xbe, 0x34, 0x97, 0x72, 0x62, 0xd1, 0x10, + 0xfc, 0x87, 0x24, 0x5e, 0x60, 0x4b, 0x6b, 0x0b, 0x34, 0x1f, 0x97, 0xa6, 0x47, 0xcf, 0xc1, 0x5c, + 0x38, 0xde, 0x7b, 0x9f, 0xd8, 0x22, 0xfd, 0x56, 0x63, 0xc7, 0x30, 0x05, 0x18, 0x2b, 0x3c, 0xda, + 0x82, 0x22, 0x6b, 0xde, 0x64, 0xfe, 0x7c, 0x7e, 0xb6, 0x9a, 0x6f, 0xd7, 0x19, 0x11, 0x6d, 0xee, + 0x0e, 0x33, 0x1b, 0xc6, 0xc5, 0xf8, 0x69, 0x1e, 0x16, 0xb8, 0xa6, 0x63, 0x8b, 0x9b, 0xc1, 0xd8, + 0x9a, 0xb0, 0xc0, 0x6d, 0x40, 0x68, 0x98, 0xf7, 0x83, 0xf9, 0xe4, 0x8a, 0x37, 0x92, 0x68, 0x9c, + 0xa6, 0x67, 0xa9, 0x82, 0x83, 0xf8, 0xe0, 0x54, 0xd6, 0xdb, 0x50, 0x08, 0x1c, 0xd3, 0xa0, 0x7d, + 0x98, 0xeb, 0x72, 0x97, 0x0e, 0x65, 0xf5, 0xb5, 0x9d, 0xd1, 0x40, 0xe3, 0x15, 0x8b, 0x50, 0x21, + 0x2c, 0x55, 0xfc, 0x0e, 0xb1, 0x12, 0x66, 0xfc, 0x2d, 0x0f, 0xe7, 0xa7, 0xd2, 0xcf, 0xa0, 0xa7, + 0x3d, 0xb9, 0x57, 0xa2, 0x4e, 0x58, 0xcf, 0x10, 0x38, 0x9d, 0x11, 0x91, 0xb3, 0xac, 0x24, 0x77, + 0x50, 0x77, 0xdc, 0xc2, 0x09, 0x38, 0x6e, 0x57, 0x3a, 0x6e, 0x91, 0xe7, 0x82, 0x0c, 0x4b, 0x8a, + 0x63, 0x74, 0xac, 0x3a, 0x2d, 0x04, 0xbc, 0x04, 0x35, 0xbd, 0x10, 0x7f, 0x70, 0x1c, 0x37, 0x7e, + 0x59, 0x84, 0x79, 0xad, 0xf4, 0x64, 0xd5, 0x0b, 0x2b, 0xd5, 0x73, 0xc9, 0xea, 0x25, 0xaa, 0xb3, + 0xdf, 0x84, 0x33, 0xf6, 0xd0, 0x73, 0xc9, 0xba, 0x13, 0xf0, 0xfa, 0x6c, 0x22, 0x4d, 0xf8, 0x71, + 0x49, 0x79, 0xa6, 0x9d, 0xc0, 0xe2, 0x14, 0x35, 0xb2, 0xa1, 0x64, 0x07, 0xa4, 0x13, 0x4a, 0xad, + 0xb7, 0x32, 0xd5, 0xcb, 0x6d, 0xc6, 0x49, 0x24, 0x13, 0xfe, 0x13, 0x0b, 0xde, 0xc7, 0x3f, 0x93, + 0xb8, 0x08, 0x10, 0x86, 0xfd, 0x4d, 0x32, 0xe1, 0x65, 0x92, 0x08, 0x43, 0x51, 0x86, 0x37, 0xcd, + 0xab, 0x12, 0x83, 0x35, 0x2a, 0xf4, 0x02, 0x54, 0xba, 0xaa, 0xb0, 0x12, 0xd1, 0x67, 0x51, 0x8e, + 0xa8, 0x44, 0x45, 0x55, 0x44, 0xc1, 0xc2, 0xed, 0x5e, 0x60, 0xb9, 0x76, 0x9f, 0x47, 0x20, 0x2d, + 0xdc, 0xb6, 0x38, 0x14, 0x4b, 0x2c, 0x53, 0x3f, 0xb5, 0x7a, 0xf5, 0x4a, 0x52, 0xfd, 0xbb, 0x56, + 0x0f, 0x33, 0x38, 0x43, 0x07, 0xa4, 0x5b, 0xaf, 0x26, 0xd1, 0x98, 0x74, 0x31, 0x83, 0xa3, 0x11, + 0x94, 0x03, 0x32, 0xf2, 0x28, 0xa9, 0x03, 0x57, 0xef, 0xb5, 0x4c, 0xea, 0xc5, 0x9c, 0x95, 0xa8, + 0x99, 0x45, 0xf3, 0x28, 0x20, 0x58, 0x0a, 0x31, 0x7e, 0x96, 0x83, 0x8a, 0xda, 0x86, 0x7f, 0xfd, + 0x96, 0xc1, 0x78, 0x07, 0x16, 0x52, 0xab, 0x9a, 0x21, 0x18, 0x3d, 0x09, 0xc5, 0x71, 0x30, 0x54, + 0x95, 0x01, 0x0f, 0x23, 0xb7, 0xf0, 0x96, 0x89, 0x39, 0xd4, 0xf8, 0xb0, 0x0c, 0xf3, 0x57, 0x77, + 0x77, 0x77, 0x54, 0x29, 0xff, 0x00, 0xef, 0xd1, 0xaa, 0xc2, 0xfc, 0x09, 0x9e, 0x69, 0x7d, 0x03, + 0x0a, 0x74, 0xa8, 0x5c, 0xae, 0x9d, 0x41, 0xe4, 0x96, 0x29, 0xad, 0x81, 0x37, 0xa8, 0xbb, 0x5b, + 0x26, 0x66, 0x8c, 0x99, 0x71, 0x8f, 0x08, 0xed, 0x7b, 0x1d, 0xe9, 0x6c, 0x91, 0x71, 0xdf, 0xe0, + 0x50, 0x2c, 0xb1, 0xa9, 0xa2, 0xbc, 0x74, 0xe2, 0x45, 0xf9, 0x73, 0x30, 0xc7, 0x82, 0xbf, 0x37, + 0x16, 0xf5, 0x42, 0x21, 0x56, 0xd9, 0xae, 0x00, 0x63, 0x85, 0x47, 0x3e, 0x54, 0xf7, 0x54, 0x37, + 0x2c, 0x8b, 0x86, 0x0c, 0x8a, 0x8b, 0x1a, 0x6b, 0x71, 0x8e, 0x10, 0x7d, 0xe2, 0x58, 0x08, 0xfa, + 0x16, 0xcc, 0xf5, 0x89, 0xd5, 0x61, 0x9a, 0xa9, 0x70, 0xcd, 0xe0, 0x87, 0x97, 0xa7, 0x99, 0x64, + 0xe3, 0xaa, 0x60, 0x2a, 0x5a, 0xa5, 0x68, 0xc1, 0x12, 0x8a, 0x95, 0xcc, 0xa5, 0xd7, 0xa1, 0xa6, + 0x53, 0x1e, 0xab, 0x79, 0xf8, 0x7e, 0x01, 0xce, 0x6e, 0xae, 0x99, 0xea, 0x54, 0x61, 0xc7, 0x1b, + 0x3a, 0xf6, 0x04, 0x7d, 0x07, 0xca, 0x43, 0x6b, 0x8f, 0x0c, 0xc3, 0x7a, 0x8e, 0xaf, 0xe7, 0xce, + 0xc3, 0xaf, 0xe7, 0x08, 0xf3, 0xc6, 0x16, 0xe7, 0x2c, 0x16, 0x15, 0x99, 0x9b, 0x00, 0x62, 0x29, + 0x16, 0xd9, 0x30, 0xb7, 0x67, 0xd9, 0x03, 0xaf, 0xdb, 0x95, 0xf1, 0x63, 0xed, 0xd8, 0xc7, 0x26, + 0x2d, 0x31, 0x3e, 0xd6, 0x9b, 0x04, 0x60, 0xc5, 0x19, 0x99, 0x70, 0x9e, 0x04, 0x81, 0x17, 0x6c, + 0xbb, 0x12, 0x25, 0x4d, 0x89, 0x7b, 0x5b, 0xa5, 0xf5, 0x94, 0x1c, 0x78, 0x7e, 0x63, 0x1a, 0x11, + 0x9e, 0x3e, 0x76, 0xe9, 0x35, 0x98, 0xd7, 0x16, 0x78, 0xac, 0xbd, 0xf8, 0x5d, 0x09, 0x6a, 0x9b, + 0x56, 0x77, 0x60, 0xcd, 0x18, 0x92, 0x9e, 0x86, 0x12, 0xf5, 0x7c, 0xc7, 0x96, 0x79, 0xfc, 0xb4, + 0x24, 0x28, 0xed, 0x32, 0x20, 0x16, 0x38, 0x96, 0x50, 0x7d, 0x2b, 0xa0, 0x0e, 0x55, 0x2d, 0x40, + 0x29, 0x4e, 0xa8, 0x3b, 0x0a, 0x81, 0x63, 0x9a, 0x94, 0xa7, 0x17, 0x4f, 0xdc, 0xd3, 0xd7, 0xa0, + 0x16, 0x90, 0x6f, 0x8e, 0x9d, 0x80, 0x74, 0x9a, 0xf6, 0x20, 0xe4, 0x29, 0xbd, 0x14, 0x9f, 0x7c, + 0x60, 0x0d, 0x87, 0x13, 0x94, 0x2c, 0xad, 0xb3, 0xa6, 0x32, 0x20, 0x61, 0xc8, 0x83, 0x44, 0x25, + 0x4e, 0xeb, 0x6d, 0x09, 0xc7, 0x11, 0x05, 0x2b, 0x87, 0xba, 0xc3, 0x71, 0xd8, 0xbf, 0xcc, 0x78, + 0xb0, 0x22, 0x97, 0xc7, 0x8a, 0x52, 0x5c, 0x0e, 0x5d, 0x4e, 0x60, 0x71, 0x8a, 0x5a, 0x45, 0xe6, + 0xca, 0x57, 0x15, 0x99, 0xb5, 0x84, 0x53, 0x3d, 0xc1, 0x84, 0xd3, 0x84, 0x85, 0xc8, 0x16, 0x1c, + 0xb7, 0xb7, 0x49, 0x26, 0xbc, 0x20, 0xd1, 0x3a, 0x9d, 0x9d, 0x24, 0x1a, 0xa7, 0xe9, 0x8d, 0x8f, + 0x0a, 0x50, 0xb9, 0x41, 0xa8, 0xc5, 0xca, 0x5a, 0xf4, 0x51, 0x0e, 0xe6, 0x2d, 0xd7, 0xf5, 0x28, + 0x3f, 0x2d, 0x57, 0x01, 0xc5, 0x7c, 0xf8, 0xb5, 0x28, 0xce, 0x8d, 0x66, 0xcc, 0x55, 0x04, 0x93, + 0xa8, 0xb5, 0xd5, 0x30, 0x58, 0x17, 0x8e, 0xf6, 0xa3, 0xb8, 0x26, 0x72, 0xf8, 0xcd, 0x47, 0x30, + 0x8d, 0x19, 0xc2, 0xd9, 0xd2, 0x9b, 0xb0, 0x98, 0x9e, 0xed, 0x71, 0x22, 0x43, 0x96, 0xa0, 0xf2, + 0xf3, 0x02, 0xcc, 0xdf, 0x6c, 0xee, 0x9a, 0x33, 0xc6, 0x14, 0xad, 0x2f, 0xcf, 0x3f, 0xa0, 0x2f, + 0xd7, 0x0c, 0xb4, 0xf0, 0xb5, 0xdd, 0xf2, 0x9d, 0x7c, 0x7c, 0x92, 0x7e, 0x5f, 0xfa, 0x8a, 0xfc, + 0xde, 0xf8, 0xb8, 0x08, 0x8b, 0xdb, 0x3e, 0x71, 0xef, 0xf4, 0x9d, 0x70, 0xa0, 0x76, 0xed, 0x02, + 0x14, 0xfb, 0x5e, 0x48, 0xd3, 0xc5, 0xee, 0x55, 0x2f, 0xa4, 0x98, 0x63, 0xd8, 0xc6, 0xa9, 0x83, + 0x9e, 0xd4, 0xc6, 0xa9, 0x43, 0x1e, 0x85, 0x3f, 0xf6, 0xf9, 0x3b, 0xbf, 0xd0, 0x1e, 0xd3, 0xfe, + 0xae, 0x37, 0x20, 0xae, 0x3c, 0x8b, 0x38, 0xd6, 0x85, 0xb6, 0x1a, 0x8b, 0x63, 0x36, 0xac, 0x6f, + 0xb3, 0xe2, 0xcb, 0xf5, 0x54, 0xdf, 0xd6, 0x8c, 0xaf, 0xd6, 0x35, 0xaa, 0x7f, 0xd7, 0x7b, 0xe5, + 0xdf, 0xe4, 0xa1, 0x6c, 0x72, 0x26, 0xe8, 0x3d, 0xa8, 0x8c, 0x64, 0xe0, 0x91, 0x9d, 0xda, 0x4b, + 0xb3, 0x9d, 0x87, 0x6d, 0x73, 0x9f, 0x65, 0x41, 0x2b, 0x16, 0x17, 0xc3, 0x70, 0xc4, 0x15, 0x75, + 0xe5, 0x91, 0x7f, 0xe6, 0x13, 0x1c, 0x31, 0x63, 0xd3, 0x27, 0xf6, 0xd4, 0x53, 0x7e, 0x17, 0xca, + 0x21, 0xb5, 0xe8, 0x38, 0xcc, 0x7e, 0x88, 0x23, 0x25, 0x71, 0x6e, 0xda, 0x61, 0x28, 0xff, 0xc6, + 0x52, 0x8a, 0xf1, 0xfb, 0x1c, 0x80, 0x20, 0xdc, 0x72, 0x42, 0x8a, 0xfe, 0xff, 0x88, 0x22, 0x1b, + 0xb3, 0x29, 0x92, 0x8d, 0xe6, 0x6a, 0x8c, 0x6a, 0x0b, 0x05, 0xd1, 0x94, 0x48, 0xa0, 0xe4, 0x50, + 0x32, 0x52, 0x69, 0xe6, 0xed, 0xac, 0x6b, 0x8b, 0x6b, 0xbb, 0x6b, 0x8c, 0x2d, 0x16, 0xdc, 0x8d, + 0x5f, 0x94, 0xd4, 0x9a, 0x98, 0x62, 0xd1, 0x87, 0xb9, 0xd4, 0x91, 0xb8, 0xc8, 0xb5, 0xd7, 0x1e, + 0xd9, 0xb1, 0x61, 0x5c, 0x85, 0xdd, 0xff, 0x84, 0x1d, 0x79, 0x50, 0xa1, 0xc2, 0xc2, 0xd5, 0xf2, + 0x9b, 0x99, 0x7d, 0x25, 0x56, 0xb6, 0x04, 0x84, 0x38, 0x12, 0x82, 0x7c, 0xa8, 0x50, 0x32, 0xf2, + 0x87, 0x16, 0x25, 0xd9, 0x8f, 0xa6, 0x76, 0x25, 0x27, 0x4d, 0xa2, 0x84, 0xe0, 0x48, 0x0a, 0x8b, + 0xb5, 0xb6, 0x13, 0xd8, 0x63, 0x87, 0xca, 0xae, 0x39, 0x8a, 0x1d, 0x6d, 0x01, 0xc6, 0x0a, 0x8f, + 0x3e, 0xce, 0xc1, 0x62, 0x27, 0x79, 0xb7, 0xa1, 0xda, 0xe7, 0x0c, 0xfb, 0x92, 0xba, 0x2d, 0x89, + 0xee, 0x70, 0x16, 0x53, 0x88, 0x10, 0x1f, 0x11, 0x8e, 0xae, 0x03, 0x92, 0x9d, 0xcb, 0x65, 0xcb, + 0x19, 0x92, 0x0e, 0xf6, 0xc6, 0x6e, 0x47, 0xd6, 0xcb, 0xd1, 0xfd, 0xe0, 0xc6, 0x11, 0x0a, 0x3c, + 0x65, 0x14, 0xab, 0xd5, 0xf9, 0x54, 0x5b, 0xe3, 0x90, 0x87, 0xf1, 0xb9, 0xe4, 0x2d, 0xe5, 0x86, + 0x86, 0xc3, 0x09, 0x4a, 0xc3, 0x83, 0x9a, 0xee, 0xb6, 0xe8, 0xdd, 0x28, 0x1c, 0x08, 0x6f, 0x7c, + 0xf5, 0xf8, 0x2f, 0x29, 0xfe, 0xb9, 0xff, 0xff, 0x25, 0x0f, 0x35, 0x73, 0x68, 0xd9, 0x51, 0x4a, + 0x4d, 0x46, 0xf5, 0xdc, 0x89, 0xd7, 0x11, 0xb7, 0x00, 0x42, 0x3e, 0x1f, 0x9e, 0x55, 0x8f, 0x75, + 0x4a, 0x76, 0x86, 0x9f, 0x6d, 0x46, 0x83, 0xb1, 0xc6, 0xe8, 0xf8, 0xc9, 0x9d, 0x19, 0x73, 0xdf, + 0x72, 0x5d, 0x32, 0x3c, 0x62, 0xcc, 0x02, 0x8c, 0x15, 0x9e, 0x91, 0x8e, 0x48, 0x18, 0x5a, 0x3d, + 0x95, 0xb0, 0x23, 0xd2, 0x1b, 0x02, 0x8c, 0x15, 0xde, 0xf8, 0x7b, 0x11, 0x90, 0x49, 0x2d, 0xb7, + 0x63, 0x05, 0x9d, 0xcd, 0xb5, 0xa8, 0xfa, 0xbc, 0xef, 0x83, 0x9e, 0xdc, 0xd7, 0xf1, 0xa0, 0x47, + 0x7b, 0x99, 0x95, 0x3f, 0x91, 0x97, 0x59, 0x37, 0xf5, 0x97, 0x59, 0x62, 0x73, 0x5e, 0x9a, 0xf6, + 0x32, 0xeb, 0x3f, 0x37, 0xc7, 0x7b, 0x24, 0x70, 0x09, 0x25, 0xa1, 0x9a, 0xeb, 0x0c, 0xef, 0xb3, + 0x4e, 0xbe, 0x16, 0xee, 0xc2, 0x69, 0xdf, 0xa2, 0x76, 0xdf, 0xa4, 0x81, 0x45, 0x49, 0x6f, 0x22, + 0xcd, 0xe2, 0x6d, 0x39, 0xec, 0xf4, 0x8e, 0x8e, 0xbc, 0x77, 0xb0, 0xf2, 0xdf, 0xf7, 0x7b, 0xa0, + 0x49, 0x27, 0x3e, 0x09, 0x1b, 0x9c, 0x9c, 0xdf, 0x17, 0x26, 0xd9, 0xb2, 0x62, 0x71, 0xe8, 0xec, + 0x93, 0xed, 0xf8, 0xc2, 0xb0, 0x12, 0xcf, 0x6d, 0x2b, 0xc2, 0x60, 0x8d, 0xca, 0x58, 0x85, 0x9a, + 0x08, 0x01, 0xf2, 0x4c, 0x6b, 0x05, 0x4a, 0xd6, 0x70, 0xe8, 0xdd, 0xe5, 0xae, 0x5e, 0x12, 0x57, + 0x0f, 0x4d, 0x06, 0xc0, 0x02, 0x6e, 0xfc, 0x2a, 0x07, 0xd5, 0xa8, 0x28, 0x67, 0x22, 0x6d, 0xab, + 0x4d, 0x02, 0xba, 0x13, 0x5f, 0xc2, 0x44, 0x22, 0xdb, 0x4d, 0x85, 0xc1, 0x1a, 0x95, 0xb8, 0x61, + 0x71, 0x88, 0x4b, 0xa3, 0x71, 0x47, 0x6e, 0x58, 0x74, 0x2c, 0x4e, 0x51, 0xa3, 0x37, 0xe0, 0xb4, + 0x80, 0xa8, 0xeb, 0x0c, 0x61, 0x22, 0xe7, 0x95, 0x3a, 0xdb, 0x3a, 0x12, 0x27, 0x69, 0x8d, 0x4f, + 0x4a, 0x10, 0xe5, 0x2a, 0x96, 0x13, 0x53, 0xe5, 0x4d, 0x2b, 0x7b, 0xab, 0x1b, 0xe7, 0x44, 0x05, + 0xd1, 0x4a, 0x1e, 0xf9, 0xec, 0xc4, 0xb1, 0x49, 0xd3, 0xb6, 0xbd, 0xb1, 0xbc, 0xe7, 0xcc, 0x1f, + 0x7d, 0x76, 0x92, 0xa4, 0xc0, 0x53, 0x46, 0xa1, 0xeb, 0xfc, 0x45, 0x18, 0xb5, 0x98, 0x7d, 0xc8, + 0x94, 0xfe, 0xd4, 0xb4, 0xc8, 0xd8, 0x56, 0x44, 0xd1, 0x1b, 0x2f, 0xf1, 0x89, 0xe3, 0xe1, 0x68, + 0x03, 0xe6, 0xf6, 0xbd, 0xe1, 0x78, 0x44, 0x94, 0x7f, 0x2c, 0x4d, 0xe3, 0x74, 0x9b, 0x93, 0x68, + 0x3d, 0x93, 0x18, 0x82, 0xd5, 0x58, 0x44, 0x60, 0x81, 0xbf, 0xcc, 0x71, 0xe8, 0x44, 0xde, 0x10, + 0xca, 0x0e, 0xf0, 0x99, 0x69, 0xec, 0x76, 0xbc, 0x8e, 0x99, 0xa4, 0x6e, 0x3d, 0x76, 0x78, 0xb0, + 0xb2, 0x90, 0x02, 0xe2, 0x34, 0x4f, 0xf4, 0xc3, 0x1c, 0xd4, 0x5c, 0xaf, 0x43, 0x54, 0xa8, 0x97, + 0x7d, 0xce, 0x6e, 0xf6, 0x82, 0xa6, 0x71, 0x53, 0x63, 0x2b, 0x4e, 0x2b, 0xa2, 0x3c, 0xad, 0xa3, + 0x70, 0x42, 0xfe, 0xd2, 0x5b, 0x70, 0xf6, 0xc8, 0xc0, 0x63, 0x9d, 0x3f, 0x98, 0x00, 0xf1, 0x5d, + 0x2e, 0x7a, 0x1a, 0x4a, 0x21, 0xb5, 0x02, 0xd5, 0xc8, 0x46, 0x65, 0xad, 0xc9, 0x80, 0x58, 0xe0, + 0x58, 0xb3, 0x1b, 0x52, 0xcf, 0x97, 0xc6, 0x13, 0x37, 0x0f, 0xd4, 0xf3, 0x31, 0xc7, 0x18, 0x7f, + 0xce, 0xc3, 0x9c, 0x4a, 0x29, 0xa1, 0x56, 0xfe, 0xe5, 0xb2, 0x5e, 0x9d, 0x49, 0xa6, 0x51, 0x15, + 0x58, 0xbb, 0x4f, 0x05, 0x98, 0x0c, 0xbc, 0xf9, 0x13, 0x0f, 0xbc, 0x03, 0x28, 0xfb, 0x3c, 0xac, + 0x49, 0xf7, 0xb8, 0x92, 0x5d, 0x36, 0x67, 0x27, 0xb2, 0x96, 0xf8, 0x8d, 0xa5, 0x08, 0xe3, 0xaf, + 0x39, 0x58, 0x4c, 0xcf, 0x10, 0x0d, 0xa0, 0x10, 0x06, 0xb6, 0xd4, 0xf8, 0xce, 0xa3, 0x5b, 0xba, + 0xc8, 0x98, 0xe2, 0x4c, 0xc4, 0x0c, 0x6c, 0xcc, 0xa4, 0x30, 0x8b, 0xe8, 0x90, 0x90, 0xa6, 0x2d, + 0x62, 0x9d, 0x84, 0x14, 0x73, 0x0c, 0xda, 0x3a, 0x9a, 0x59, 0x1b, 0xd3, 0x32, 0xeb, 0x13, 0x69, + 0x79, 0xd3, 0xf2, 0xaa, 0xf1, 0x87, 0x3c, 0x3c, 0x3e, 0x7d, 0x62, 0x2c, 0xc6, 0xc7, 0x25, 0xb5, + 0xf6, 0xc7, 0x80, 0x28, 0xc6, 0xaf, 0x27, 0xb0, 0x38, 0x45, 0xcd, 0xf3, 0x8a, 0x70, 0x76, 0xf5, + 0xef, 0x00, 0x3d, 0xaf, 0x44, 0x18, 0xac, 0x51, 0xa1, 0x26, 0x2c, 0xc8, 0xaf, 0x5d, 0xbd, 0xd1, + 0xd1, 0xce, 0x64, 0xdb, 0x49, 0x34, 0x4e, 0xd3, 0xb3, 0xd2, 0x8d, 0x85, 0x69, 0x26, 0x33, 0x55, + 0xe5, 0xad, 0x0b, 0x30, 0x56, 0x78, 0x56, 0xd4, 0xb3, 0x9f, 0x91, 0xa8, 0x52, 0xb2, 0xa8, 0x5f, + 0xd7, 0x70, 0x38, 0x41, 0x19, 0x3f, 0x15, 0x13, 0x97, 0xea, 0x47, 0x9e, 0x8a, 0x19, 0x5f, 0xe6, + 0xe0, 0x74, 0xc2, 0xde, 0x50, 0x17, 0x0a, 0x83, 0x35, 0x55, 0xf4, 0x6f, 0x3e, 0xc2, 0x6b, 0x26, + 0x61, 0x41, 0x9b, 0x6b, 0x21, 0x66, 0x02, 0xd0, 0xfb, 0x51, 0x7f, 0x91, 0xcf, 0x7c, 0xdc, 0xa0, + 0x55, 0x15, 0xb2, 0xca, 0x4b, 0xb6, 0x1a, 0x1b, 0xd1, 0x22, 0xcd, 0xbb, 0x0e, 0xb5, 0xfb, 0xe8, + 0x09, 0x28, 0x58, 0xee, 0x84, 0x17, 0x1e, 0x55, 0x31, 0xaf, 0xa6, 0x3b, 0xc1, 0x0c, 0xc6, 0x51, + 0xc3, 0xa1, 0xbc, 0xa2, 0x16, 0xa8, 0xe1, 0x10, 0x33, 0x98, 0xf1, 0xe3, 0x2a, 0x2c, 0xa4, 0xe2, + 0xd1, 0x0c, 0x97, 0xde, 0x03, 0x28, 0x87, 0x5c, 0xaa, 0x5c, 0x68, 0xf6, 0xc8, 0x20, 0x16, 0x21, + 0x57, 0xca, 0x7f, 0x63, 0x29, 0x02, 0xf5, 0xc4, 0xee, 0x89, 0x18, 0xb4, 0x95, 0x49, 0xa5, 0xa9, + 0x4e, 0x21, 0xb5, 0x7d, 0x1f, 0xe6, 0xa0, 0x66, 0x69, 0xff, 0x56, 0x90, 0xa7, 0x90, 0x37, 0xb2, + 0xd4, 0xeb, 0x47, 0xfe, 0xa8, 0x21, 0x1e, 0x0f, 0xea, 0x08, 0x9c, 0x10, 0x8a, 0x6c, 0x28, 0xf6, + 0x29, 0x55, 0x8f, 0xd4, 0x37, 0x1e, 0xc9, 0x25, 0xaf, 0x78, 0x97, 0xc0, 0x00, 0x98, 0x33, 0x47, + 0x77, 0xa1, 0x6a, 0xdd, 0x0d, 0xc5, 0x7f, 0x91, 0xe4, 0xd3, 0xf4, 0x2c, 0x6d, 0x49, 0xea, 0x6f, + 0x4d, 0xf2, 0x44, 0x56, 0x41, 0x71, 0x2c, 0x0b, 0x05, 0x50, 0xb6, 0xf9, 0x33, 0x5d, 0x79, 0x69, + 0x7e, 0xe5, 0x11, 0x3d, 0xf7, 0x6d, 0x9d, 0xe5, 0xb5, 0xab, 0x0e, 0xc2, 0x52, 0x12, 0xea, 0x41, + 0x69, 0x60, 0x75, 0x07, 0x96, 0xbc, 0x46, 0xcb, 0xe0, 0x95, 0xfa, 0xc5, 0xa9, 0x88, 0x3c, 0x1c, + 0x82, 0x05, 0x7f, 0xb6, 0x75, 0xae, 0x45, 0x43, 0xfe, 0xfc, 0x26, 0xd3, 0xd6, 0x69, 0x77, 0x29, + 0x62, 0xeb, 0x18, 0x00, 0x73, 0xe6, 0x6c, 0x35, 0xbc, 0x13, 0x97, 0x4f, 0x78, 0xb2, 0xc4, 0x18, + 0xed, 0xa4, 0x42, 0xac, 0x86, 0x43, 0xb0, 0xe0, 0xcf, 0x6c, 0xc4, 0x53, 0x57, 0x04, 0xf5, 0xf9, + 0xac, 0x36, 0x92, 0xbe, 0x6d, 0x10, 0x36, 0x12, 0x41, 0x71, 0x2c, 0xcb, 0xb0, 0x61, 0x5e, 0xfb, + 0x23, 0xc7, 0x0c, 0x6f, 0x8d, 0x2f, 0x02, 0xec, 0x93, 0xc0, 0xe9, 0x4e, 0x58, 0x93, 0x23, 0xdf, + 0xbc, 0x47, 0xe9, 0xee, 0x76, 0x84, 0xc1, 0x1a, 0x55, 0xab, 0xf1, 0xe9, 0x17, 0xcb, 0xa7, 0x3e, + 0xfb, 0x62, 0xf9, 0xd4, 0xe7, 0x5f, 0x2c, 0x9f, 0xfa, 0xee, 0xe1, 0x72, 0xee, 0xd3, 0xc3, 0xe5, + 0xdc, 0x67, 0x87, 0xcb, 0xb9, 0xcf, 0x0f, 0x97, 0x73, 0x7f, 0x3c, 0x5c, 0xce, 0xfd, 0xe8, 0xcb, + 0xe5, 0x53, 0xff, 0x57, 0x51, 0xf3, 0xff, 0x47, 0x00, 0x00, 0x00, 0xff, 0xff, 0xba, 0x75, 0xbc, + 0xc0, 0x76, 0x39, 0x00, 0x00, } func (m *AWSLambdaTrigger) Marshal() (dAtA []byte, err error) { @@ -2603,6 +2639,77 @@ func (m *KafkaTrigger) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *Metadata) 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 *Metadata) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *Metadata) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + 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] = 0x12 + } + } + 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] = 0xa + } + } + return len(dAtA) - i, nil +} + func (m *NATSTrigger) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -3235,7 +3342,7 @@ func (m *Template) MarshalToSizedBuffer(dAtA []byte) (int, error) { dAtA[i] = 0xa i = encodeVarintGenerated(dAtA, i, uint64(baseI-i)) i-- - dAtA[i] = 0x2a + dAtA[i] = 0x32 } } if m.SecurityContext != nil { @@ -3248,7 +3355,7 @@ func (m *Template) MarshalToSizedBuffer(dAtA []byte) (int, error) { i = encodeVarintGenerated(dAtA, i, uint64(size)) } i-- - dAtA[i] = 0x22 + dAtA[i] = 0x2a } if len(m.Volumes) > 0 { for iNdEx := len(m.Volumes) - 1; iNdEx >= 0; iNdEx-- { @@ -3261,7 +3368,7 @@ func (m *Template) MarshalToSizedBuffer(dAtA []byte) (int, error) { i = encodeVarintGenerated(dAtA, i, uint64(size)) } i-- - dAtA[i] = 0x1a + dAtA[i] = 0x22 } } if m.Container != nil { @@ -3274,12 +3381,22 @@ func (m *Template) MarshalToSizedBuffer(dAtA []byte) (int, error) { i = encodeVarintGenerated(dAtA, i, uint64(size)) } i-- - dAtA[i] = 0x12 + dAtA[i] = 0x1a } i -= len(m.ServiceAccountName) copy(dAtA[i:], m.ServiceAccountName) i = encodeVarintGenerated(dAtA, i, uint64(len(m.ServiceAccountName))) i-- + dAtA[i] = 0x12 + { + size, err := m.Metadata.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintGenerated(dAtA, i, uint64(size)) + } + i-- dAtA[i] = 0xa return len(dAtA) - i, nil } @@ -4223,6 +4340,31 @@ func (m *KafkaTrigger) Size() (n int) { return n } +func (m *Metadata) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + 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)) + } + } + 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)) + } + } + return n +} + func (m *NATSTrigger) Size() (n int) { if m == nil { return 0 @@ -4448,6 +4590,8 @@ func (m *Template) Size() (n int) { } var l int _ = l + l = m.Metadata.Size() + n += 1 + l + sovGenerated(uint64(l)) l = len(m.ServiceAccountName) n += 1 + l + sovGenerated(uint64(l)) if m.Container != nil { @@ -4999,6 +5143,37 @@ func (this *KafkaTrigger) String() string { }, "") return s } +func (this *Metadata) String() string { + if this == nil { + return "nil" + } + 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 += "}" + 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 += "}" + s := strings.Join([]string{`&Metadata{`, + `Annotations:` + mapStringForAnnotations + `,`, + `Labels:` + mapStringForLabels + `,`, + `}`, + }, "") + return s +} func (this *NATSTrigger) String() string { if this == nil { return "nil" @@ -5199,6 +5374,7 @@ func (this *Template) String() string { } mapStringForNodeSelector += "}" s := strings.Join([]string{`&Template{`, + `Metadata:` + strings.Replace(strings.Replace(this.Metadata.String(), "Metadata", "Metadata", 1), `&`, ``, 1) + `,`, `ServiceAccountName:` + fmt.Sprintf("%v", this.ServiceAccountName) + `,`, `Container:` + strings.Replace(fmt.Sprintf("%v", this.Container), "Container", "v1.Container", 1) + `,`, `Volumes:` + repeatedStringForVolumes + `,`, @@ -9522,6 +9698,313 @@ func (m *KafkaTrigger) Unmarshal(dAtA []byte) error { } return nil } +func (m *Metadata) 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: Metadata: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: Metadata: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Annotations", 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.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 { + return ErrInvalidLengthGenerated + } + if (iNdEx + skippy) > postIndex { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + m.Annotations[mapkey] = mapvalue + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Labels", 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.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 { + return ErrInvalidLengthGenerated + } + if (iNdEx + skippy) > postIndex { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + m.Labels[mapkey] = mapvalue + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipGenerated(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthGenerated + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthGenerated + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *NATSTrigger) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -11425,6 +11908,39 @@ func (m *Template) Unmarshal(dAtA []byte) error { } switch fieldNum { case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Metadata", 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.Metadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field ServiceAccountName", wireType) } @@ -11456,7 +11972,7 @@ func (m *Template) Unmarshal(dAtA []byte) error { } m.ServiceAccountName = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex - case 2: + case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Container", wireType) } @@ -11492,7 +12008,7 @@ func (m *Template) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex - case 3: + case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Volumes", wireType) } @@ -11526,7 +12042,7 @@ func (m *Template) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex - case 4: + case 5: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field SecurityContext", wireType) } @@ -11562,7 +12078,7 @@ func (m *Template) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex - case 5: + case 6: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NodeSelector", wireType) } diff --git a/pkg/apis/sensor/v1alpha1/generated.proto b/pkg/apis/sensor/v1alpha1/generated.proto index 2c18490ad3..48f320a4c7 100644 --- a/pkg/apis/sensor/v1alpha1/generated.proto +++ b/pkg/apis/sensor/v1alpha1/generated.proto @@ -392,6 +392,13 @@ message KafkaTrigger { optional string partitioningKey = 10; } +// Metadata holds the annotations and labels of an event source pod +message Metadata { + map annotations = 1; + + map labels = 2; +} + // NATSTrigger refers to the specification of the NATS trigger. message NATSTrigger { // URL of the NATS cluster. @@ -566,31 +573,34 @@ message TLSConfig { // Template holds the information of a sensor deployment template message Template { + // Metdata sets the pods's metadata, i.e. annotations and labels + optional Metadata metadata = 1; + // ServiceAccountName is the name of the ServiceAccount to use to run gateway pod. // More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/ // +optional - optional string serviceAccountName = 1; + optional string serviceAccountName = 2; // Container is the main container image to run in the gateway pod // +optional - optional k8s.io.api.core.v1.Container container = 2; + optional k8s.io.api.core.v1.Container container = 3; // Volumes is a list of volumes that can be mounted by containers in a workflow. // +patchStrategy=merge // +patchMergeKey=name // +optional - repeated k8s.io.api.core.v1.Volume volumes = 3; + repeated k8s.io.api.core.v1.Volume volumes = 4; // SecurityContext holds pod-level security attributes and common container settings. // Optional: Defaults to empty. See type description for default values of each field. // +optional - optional k8s.io.api.core.v1.PodSecurityContext securityContext = 4; + optional k8s.io.api.core.v1.PodSecurityContext securityContext = 5; // NodeSelector is a selector which must be true for the pod to fit on a node. // Selector which must match a node's labels for the pod to be scheduled on that node. // More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/ // +optional - map nodeSelector = 5; + map nodeSelector = 6; } // TimeFilter describes a window in time. diff --git a/pkg/apis/sensor/v1alpha1/openapi_generated.go b/pkg/apis/sensor/v1alpha1/openapi_generated.go index 3f2932194e..c2b52fd406 100644 --- a/pkg/apis/sensor/v1alpha1/openapi_generated.go +++ b/pkg/apis/sensor/v1alpha1/openapi_generated.go @@ -48,6 +48,7 @@ func GetOpenAPIDefinitions(ref common.ReferenceCallback) map[string]common.OpenA "github.com/argoproj/argo-events/pkg/apis/sensor/v1alpha1.HTTPTrigger": schema_pkg_apis_sensor_v1alpha1_HTTPTrigger(ref), "github.com/argoproj/argo-events/pkg/apis/sensor/v1alpha1.K8SResourcePolicy": schema_pkg_apis_sensor_v1alpha1_K8SResourcePolicy(ref), "github.com/argoproj/argo-events/pkg/apis/sensor/v1alpha1.KafkaTrigger": schema_pkg_apis_sensor_v1alpha1_KafkaTrigger(ref), + "github.com/argoproj/argo-events/pkg/apis/sensor/v1alpha1.Metadata": schema_pkg_apis_sensor_v1alpha1_Metadata(ref), "github.com/argoproj/argo-events/pkg/apis/sensor/v1alpha1.NATSTrigger": schema_pkg_apis_sensor_v1alpha1_NATSTrigger(ref), "github.com/argoproj/argo-events/pkg/apis/sensor/v1alpha1.OpenWhiskTrigger": schema_pkg_apis_sensor_v1alpha1_OpenWhiskTrigger(ref), "github.com/argoproj/argo-events/pkg/apis/sensor/v1alpha1.Sensor": schema_pkg_apis_sensor_v1alpha1_Sensor(ref), @@ -1068,6 +1069,47 @@ func schema_pkg_apis_sensor_v1alpha1_KafkaTrigger(ref common.ReferenceCallback) } } +func schema_pkg_apis_sensor_v1alpha1_Metadata(ref common.ReferenceCallback) common.OpenAPIDefinition { + return common.OpenAPIDefinition{ + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Metadata holds the annotations and labels of an event source pod", + Type: []string{"object"}, + Properties: map[string]spec.Schema{ + "annotations": { + SchemaProps: spec.SchemaProps{ + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Allows: true, + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "labels": { + SchemaProps: spec.SchemaProps{ + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Allows: true, + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + }, + }, + }, + } +} + func schema_pkg_apis_sensor_v1alpha1_NATSTrigger(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ @@ -1606,6 +1648,12 @@ func schema_pkg_apis_sensor_v1alpha1_Template(ref common.ReferenceCallback) comm Description: "Template holds the information of a sensor deployment template", Type: []string{"object"}, Properties: map[string]spec.Schema{ + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Metdata sets the pods's metadata, i.e. annotations and labels", + Ref: ref("github.com/argoproj/argo-events/pkg/apis/sensor/v1alpha1.Metadata"), + }, + }, "serviceAccountName": { SchemaProps: spec.SchemaProps{ Description: "ServiceAccountName is the name of the ServiceAccount to use to run gateway pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/", @@ -1663,7 +1711,7 @@ func schema_pkg_apis_sensor_v1alpha1_Template(ref common.ReferenceCallback) comm }, }, Dependencies: []string{ - "k8s.io/api/core/v1.Container", "k8s.io/api/core/v1.PodSecurityContext", "k8s.io/api/core/v1.Volume"}, + "github.com/argoproj/argo-events/pkg/apis/sensor/v1alpha1.Metadata", "k8s.io/api/core/v1.Container", "k8s.io/api/core/v1.PodSecurityContext", "k8s.io/api/core/v1.Volume"}, } } diff --git a/pkg/apis/sensor/v1alpha1/types.go b/pkg/apis/sensor/v1alpha1/types.go index e5b5eb0602..d1b3be1492 100644 --- a/pkg/apis/sensor/v1alpha1/types.go +++ b/pkg/apis/sensor/v1alpha1/types.go @@ -147,27 +147,35 @@ type SensorSpec struct { // Template holds the information of a sensor deployment template type Template struct { + // Metdata sets the pods's metadata, i.e. annotations and labels + Metadata Metadata `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"` // ServiceAccountName is the name of the ServiceAccount to use to run gateway pod. // More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/ // +optional - ServiceAccountName string `json:"serviceAccountName,omitempty" protobuf:"bytes,1,opt,name=serviceAccountName"` + ServiceAccountName string `json:"serviceAccountName,omitempty" protobuf:"bytes,2,opt,name=serviceAccountName"` // Container is the main container image to run in the gateway pod // +optional - Container *corev1.Container `json:"container,omitempty" protobuf:"bytes,2,opt,name=container"` + Container *corev1.Container `json:"container,omitempty" protobuf:"bytes,3,opt,name=container"` // Volumes is a list of volumes that can be mounted by containers in a workflow. // +patchStrategy=merge // +patchMergeKey=name // +optional - Volumes []corev1.Volume `json:"volumes,omitempty" patchStrategy:"merge" patchMergeKey:"name" protobuf:"bytes,3,rep,name=volumes"` + Volumes []corev1.Volume `json:"volumes,omitempty" patchStrategy:"merge" patchMergeKey:"name" protobuf:"bytes,4,rep,name=volumes"` // SecurityContext holds pod-level security attributes and common container settings. // Optional: Defaults to empty. See type description for default values of each field. // +optional - SecurityContext *corev1.PodSecurityContext `json:"securityContext,omitempty" protobuf:"bytes,4,opt,name=securityContext"` + SecurityContext *corev1.PodSecurityContext `json:"securityContext,omitempty" protobuf:"bytes,5,opt,name=securityContext"` // NodeSelector is a selector which must be true for the pod to fit on a node. // Selector which must match a node's labels for the pod to be scheduled on that node. // More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/ // +optional - NodeSelector map[string]string `json:"nodeSelector,omitempty" protobuf:"bytes,5,rep,name=nodeSelector"` + NodeSelector map[string]string `json:"nodeSelector,omitempty" protobuf:"bytes,6,rep,name=nodeSelector"` +} + +// Metadata holds the annotations and labels of an event source pod +type Metadata struct { + Annotations map[string]string `json:"annotations,omitempty" protobuf:"bytes,1,rep,name=annotations"` + Labels map[string]string `json:"labels,omitempty" protobuf:"bytes,2,rep,name=labels"` } // EventDependency describes a dependency diff --git a/pkg/apis/sensor/v1alpha1/zz_generated.deepcopy.go b/pkg/apis/sensor/v1alpha1/zz_generated.deepcopy.go index 0bce213bc9..37a9b11006 100644 --- a/pkg/apis/sensor/v1alpha1/zz_generated.deepcopy.go +++ b/pkg/apis/sensor/v1alpha1/zz_generated.deepcopy.go @@ -559,6 +559,36 @@ func (in *KafkaTrigger) DeepCopy() *KafkaTrigger { return out } +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *Metadata) DeepCopyInto(out *Metadata) { + *out = *in + 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 + } + } + 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 + } + } + return +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Metadata. +func (in *Metadata) DeepCopy() *Metadata { + if in == nil { + return nil + } + out := new(Metadata) + in.DeepCopyInto(out) + return out +} + // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *NATSTrigger) DeepCopyInto(out *NATSTrigger) { *out = *in @@ -842,6 +872,7 @@ func (in *TLSConfig) DeepCopy() *TLSConfig { // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *Template) DeepCopyInto(out *Template) { *out = *in + in.Metadata.DeepCopyInto(&out.Metadata) if in.Container != nil { in, out := &in.Container, &out.Container *out = new(v1.Container)