diff --git a/api/event-source.html b/api/event-source.html
index 3d4999785d..b7b6441905 100644
--- a/api/event-source.html
+++ b/api/event-source.html
@@ -971,7 +971,8 @@
EventSource
- Replica is the event source deployment replicas
+DeprecatedReplica is the event source deployment replicas
+Deprecated: use replicas instead, will be removed in v1.5
|
@@ -1284,6 +1285,17 @@ EventSource
Generic event source
+
+
+replicas
+
+int32
+
+ |
+
+ Replicas is the event source deployment replicas
+ |
+
@@ -1366,7 +1378,8 @@ EventSourceSpec
- Replica is the event source deployment replicas
+DeprecatedReplica is the event source deployment replicas
+Deprecated: use replicas instead, will be removed in v1.5
|
@@ -1679,6 +1692,17 @@ EventSourceSpec
Generic event source
+
+
+replicas
+
+int32
+
+ |
+
+ Replicas is the event source deployment replicas
+ |
+
EventSourceStatus
diff --git a/api/event-source.md b/api/event-source.md
index 85ca3a23c0..74fffa26fb 100644
--- a/api/event-source.md
+++ b/api/event-source.md
@@ -1016,7 +1016,8 @@ Service is the specifications of the service to expose the event source
-Replica is the event source deployment replicas
+DeprecatedReplica is the event source deployment replicas Deprecated:
+use replicas instead, will be removed in v1.5
|
@@ -1331,6 +1332,16 @@ Generic event source
+
+
+replicas int32
+ |
+
+
+Replicas is the event source deployment replicas
+
+ |
+
@@ -1411,7 +1422,8 @@ Service is the specifications of the service to expose the event source
-Replica is the event source deployment replicas
+DeprecatedReplica is the event source deployment replicas Deprecated:
+use replicas instead, will be removed in v1.5
|
@@ -1726,6 +1738,16 @@ Generic event source
+
+
+replicas int32
+ |
+
+
+Replicas is the event source deployment replicas
+
+ |
+
diff --git a/api/openapi-spec/swagger.json b/api/openapi-spec/swagger.json
index b3be25cc56..915c65f51c 100644
--- a/api/openapi-spec/swagger.json
+++ b/api/openapi-spec/swagger.json
@@ -955,7 +955,12 @@
}
},
"replica": {
- "description": "Replica is the event source deployment replicas",
+ "description": "DeprecatedReplica is the event source deployment replicas Deprecated: use replicas instead, will be removed in v1.5",
+ "type": "integer",
+ "format": "int32"
+ },
+ "replicas": {
+ "description": "Replicas is the event source deployment replicas",
"type": "integer",
"format": "int32"
},
@@ -2919,6 +2924,11 @@
"description": "EventBusName references to a EventBus name. By default the value is \"default\"",
"type": "string"
},
+ "replicas": {
+ "description": "Replicas is the sensor deployment replicas",
+ "type": "integer",
+ "format": "int32"
+ },
"template": {
"description": "Template is the pod specification for the sensor",
"$ref": "#/definitions/io.argoproj.sensor.v1alpha1.Template"
diff --git a/api/sensor.html b/api/sensor.html
index 70ee13c1e9..39e2114ae6 100644
--- a/api/sensor.html
+++ b/api/sensor.html
@@ -1843,6 +1843,17 @@ Sensor
Deprecated: will be removed in v1.5, use Switch in triggers instead.
+
+
+replicas
+
+int32
+
+ |
+
+ Replicas is the sensor deployment replicas
+ |
+
@@ -1966,6 +1977,17 @@ SensorSpec
Deprecated: will be removed in v1.5, use Switch in triggers instead.
+
+
+replicas
+
+int32
+
+ |
+
+ Replicas is the sensor deployment replicas
+ |
+
SensorStatus
diff --git a/api/sensor.md b/api/sensor.md
index a6026a16b7..14e0f40c21 100644
--- a/api/sensor.md
+++ b/api/sensor.md
@@ -1887,6 +1887,16 @@ removed in v1.5, use Switch in triggers instead.
+
+
+replicas int32
+ |
+
+
+Replicas is the sensor deployment replicas
+
+ |
+
@@ -2007,6 +2017,16 @@ removed in v1.5, use Switch in triggers instead.
+
+
+replicas int32
+ |
+
+
+Replicas is the sensor deployment replicas
+
+ |
+
diff --git a/controllers/eventsource/controller.go b/controllers/eventsource/controller.go
index 767c177046..4d85b73263 100644
--- a/controllers/eventsource/controller.go
+++ b/controllers/eventsource/controller.go
@@ -4,6 +4,7 @@ import (
"context"
"go.uber.org/zap"
+ coordinationv1 "k8s.io/api/coordination/v1"
"k8s.io/apimachinery/pkg/api/equality"
apierrors "k8s.io/apimachinery/pkg/api/errors"
"k8s.io/apimachinery/pkg/runtime"
@@ -70,6 +71,9 @@ func (r *reconciler) reconcile(ctx context.Context, eventSource *v1alpha1.EventS
log.Info("deleting eventsource")
if controllerutil.ContainsFinalizer(eventSource, finalizerName) {
// Finalizer logic should be added here.
+ if err := r.finalize(ctx, eventSource); err != nil {
+ return err
+ }
controllerutil.RemoveFinalizer(eventSource, finalizerName)
}
return nil
@@ -93,6 +97,16 @@ func (r *reconciler) reconcile(ctx context.Context, eventSource *v1alpha1.EventS
return Reconcile(r.client, args, log)
}
+func (r *reconciler) finalize(ctx context.Context, eventSource *v1alpha1.EventSource) error {
+ // Clean up Lease objects if there's any
+ if err := r.client.DeleteAllOf(ctx, &coordinationv1.Lease{},
+ client.InNamespace(eventSource.Namespace),
+ client.MatchingFields{"metadata.name": "eventsource-" + eventSource.Name}); err != nil {
+ return err
+ }
+ return nil
+}
+
func (r *reconciler) needsUpdate(old, new *v1alpha1.EventSource) bool {
if old == nil {
return true
diff --git a/controllers/eventsource/resource.go b/controllers/eventsource/resource.go
index f3c7740e38..0533a2a961 100644
--- a/controllers/eventsource/resource.go
+++ b/controllers/eventsource/resource.go
@@ -277,14 +277,6 @@ func buildDeployment(args *AdaptorArgs, eventBus *eventbusv1alpha1.EventBus) (*a
}
func buildDeploymentSpec(args *AdaptorArgs) (*appv1.DeploymentSpec, error) {
- singleReplica := int32(1)
- replicas := singleReplica
- if args.EventSource.Spec.Replica != nil {
- replicas = *args.EventSource.Spec.Replica
- }
- if replicas < singleReplica {
- replicas = singleReplica
- }
eventSourceContainer := corev1.Container{
Image: args.Image,
ImagePullPolicy: corev1.PullAlways,
@@ -309,6 +301,7 @@ func buildDeploymentSpec(args *AdaptorArgs) (*appv1.DeploymentSpec, error) {
podTemplateLabels[k] = v
}
+ replicas := args.EventSource.Spec.GetReplicas()
spec := &appv1.DeploymentSpec{
Selector: &metav1.LabelSelector{
MatchLabels: args.Labels,
@@ -351,8 +344,10 @@ func buildDeploymentSpec(args *AdaptorArgs) (*appv1.DeploymentSpec, error) {
break
}
}
- if recreates > 0 {
- spec.Replicas = &singleReplica
+ if recreates > 0 && replicas == 1 {
+ // For those event types, if there's only 1 replica, use recreate strategy.
+ // If replicas > 1, which means HA is available for them, rolling update strategy
+ // is better.
spec.Strategy = appv1.DeploymentStrategy{
Type: appv1.RecreateDeploymentStrategyType,
}
diff --git a/controllers/sensor/controller.go b/controllers/sensor/controller.go
index 93c735c7f2..f563deaf81 100644
--- a/controllers/sensor/controller.go
+++ b/controllers/sensor/controller.go
@@ -20,6 +20,7 @@ import (
"context"
"go.uber.org/zap"
+ coordinationv1 "k8s.io/api/coordination/v1"
"k8s.io/apimachinery/pkg/api/equality"
apierrors "k8s.io/apimachinery/pkg/api/errors"
"k8s.io/apimachinery/pkg/runtime"
@@ -86,6 +87,9 @@ func (r *reconciler) reconcile(ctx context.Context, sensor *v1alpha1.Sensor) err
log.Info("deleting sensor")
if controllerutil.ContainsFinalizer(sensor, finalizerName) {
// Finalizer logic should be added here.
+ if err := r.finalize(ctx, sensor); err != nil {
+ return err
+ }
controllerutil.RemoveFinalizer(sensor, finalizerName)
}
return nil
@@ -109,6 +113,16 @@ func (r *reconciler) reconcile(ctx context.Context, sensor *v1alpha1.Sensor) err
return Reconcile(r.client, args, log)
}
+func (r *reconciler) finalize(ctx context.Context, sensor *v1alpha1.Sensor) error {
+ // Clean up Lease objects if there's any
+ if err := r.client.DeleteAllOf(ctx, &coordinationv1.Lease{},
+ client.InNamespace(sensor.Namespace),
+ client.MatchingFields{"metadata.name": "sensor-" + sensor.Name}); err != nil {
+ return err
+ }
+ return nil
+}
+
func (r *reconciler) needsUpdate(old, new *v1alpha1.Sensor) bool {
if old == nil {
return true
diff --git a/controllers/sensor/resource.go b/controllers/sensor/resource.go
index 4f5809b61c..cd733186f1 100644
--- a/controllers/sensor/resource.go
+++ b/controllers/sensor/resource.go
@@ -153,6 +153,10 @@ func buildDeployment(args *AdaptorArgs, eventBus *eventbusv1alpha1.EventBus) (*a
Name: common.EnvVarEventBusSubject,
Value: fmt.Sprintf("eventbus-%s", args.Sensor.Namespace),
},
+ {
+ Name: "POD_NAME",
+ ValueFrom: &corev1.EnvVarSource{FieldRef: &corev1.ObjectFieldSelector{FieldPath: "metadata.name"}},
+ },
}
busConfigBytes, err := json.Marshal(eventBus.Status.Config)
@@ -237,7 +241,7 @@ func buildDeployment(args *AdaptorArgs, eventBus *eventbusv1alpha1.EventBus) (*a
}
func buildDeploymentSpec(args *AdaptorArgs) (*appv1.DeploymentSpec, error) {
- replicas := int32(1)
+ replicas := args.Sensor.Spec.GetReplicas()
sensorContainer := corev1.Container{
Image: args.Image,
ImagePullPolicy: corev1.PullAlways,
diff --git a/docs/concepts/trigger.md b/docs/concepts/trigger.md
index 27ef7d1288..9ce3818bf7 100644
--- a/docs/concepts/trigger.md
+++ b/docs/concepts/trigger.md
@@ -1,6 +1,7 @@
# Trigger
-A Trigger is the resource/workload executed by the sensor once the event dependencies are resolved.
+A Trigger is the resource/workload executed by the sensor once the event
+dependencies are resolved.
## Trigger Types
@@ -8,11 +9,11 @@ A Trigger is the resource/workload executed by the sensor once the event depende
1. Apache OpenWhisk
1. Argo Rollouts
1. Argo Workflows
-1. Custom - Build Your Own
+1. Custom - Build Your Own
1. HTTP Requests - Serverless Workloads (OpenFaas, Kubeless, KNative etc.)
1. Kafka Messages
-1. Log Message - for debugging
1. NATS Messages
1. Slack Notifications
+1. Azure Event Hubs Messages
1. Create any Kubernetes Objects
1. Log (for debugging event bus messages)
diff --git a/docs/dr_ha_recommendations.md b/docs/dr_ha_recommendations.md
index b8b65c92aa..c8c87e6921 100644
--- a/docs/dr_ha_recommendations.md
+++ b/docs/dr_ha_recommendations.md
@@ -102,17 +102,8 @@ Priority could be set through `spec.nats.native.priorityClassName` or
### Replicas
-For below types of EventSources, `spec.replica` could be set to a number `>1` to
-make them HA, see more detail [here](eventsources/deployment-strategies.md).
-
-- AWS SNS
-- AWS SQS
-- Github
-- Gitlab
-- NetApp Storage GRID
-- Slack
-- Stripe
-- Webhook
+EventSources can run with HA by setting `spec.replicas` to a number `>1`, see
+more detail [here](eventsources/ha.md).
### EventSource POD Node Selection
@@ -127,6 +118,11 @@ Priority could be set through `spec.template.priorityClassName` or
## Sensors
+### Replicas
+
+Sensors can run with HA by setting `spec.replicas` to a number `>1`, see more
+detail [here](sensors/ha.md).
+
### Sensor POD Node Selection
Sensor POD `affinity`, `nodeSelector` and `tolerations` could also be set
diff --git a/docs/eventsources/deployment-strategies.md b/docs/eventsources/deployment-strategies.md
deleted file mode 100644
index bb49e70b87..0000000000
--- a/docs/eventsources/deployment-strategies.md
+++ /dev/null
@@ -1,55 +0,0 @@
-# EventSource Deployment Strategies
-
-EventSource controller creates a k8s deployment for each EventSource object to
-watch the events. Some of the event source types do not allow multiple live
-clients with same attributes (i.e. multiple clients with same `clientID`
-connecting to a NATS server), or multiple event source PODs will generate
-duplicated events to downstream, so the deployment strategy and replica numbers
-are different for different event sources.
-
-## Rolling Update Strategy
-
-`Rolling Update` strategy is applied to the following EventSource types:
-
-- AWS SNS
-- AWS SQS
-- Github
-- Gitlab
-- NetApp Storage GRID
-- Slack
-- Stripe
-- Webhook
-
-### Replicas Of Rolling Update Types
-
-Deployment replica of these event source types respects `spec.replica` in the
-EventSource object, defaults to 1.
-
-## Recreate Strategy
-
-`Recreate` strategy is applied to the following EventSource types:
-
-- AMQP
-- Azure Events Hub
-- Kafka
-- GCP PubSub
-- File
-- HDFS
-- NATS
-- Minio
-- MQTT
-- Emitter
-- NSQ
-- Pulsar
-- Redis
-- Resource
-- Calendar
-- Generic
-
-### Replicas Of Recreate Types
-
-`spec.replica` in the `Recreate` types EventSources is ignored, the deployment
-is always created with `replica=1`.
-
-**Please DO NOT manually scale up the replicas, that will lead to unexpected
-behaviors!**
diff --git a/docs/eventsources/generic.md b/docs/eventsources/generic.md
index ce062e8ebb..7fcde3c1b8 100644
--- a/docs/eventsources/generic.md
+++ b/docs/eventsources/generic.md
@@ -1,26 +1,29 @@
# Generic EventSource
-Generic eventsource extends Argo-Events eventsources via a simple gRPC contract. This is specifically useful when you want to onboard a custom eventsource implementation.
+Generic eventsource extends Argo-Events eventsources via a simple gRPC contract.
+This is specifically useful when you want to onboard a custom eventsource
+implementation.
## Contract
-In order to qualify as generic eventsource, the eventsource server needs to implement following gRPC contract,
+In order to qualify as generic eventsource, the eventsource server needs to
+implement following gRPC contract,
syntax = "proto3";
-
+
package generic;
-
+
service Eventing {
rpc StartEventSource(EventSource) returns (stream Event);
}
-
+
message EventSource {
// The event source name.
string name = 1;
// The event source configuration value.
bytes config = 2;
}
-
+
/**
* Represents an event
*/
@@ -31,17 +34,13 @@ In order to qualify as generic eventsource, the eventsource server needs to impl
bytes payload = 2;
}
-The proto file is available [here](https://github.com/argoproj/argo-events/blob/master/eventsources/sources/generic/generic.proto).
+The proto file is available
+[here](https://github.com/argoproj/argo-events/blob/master/eventsources/sources/generic/generic.proto).
## Architecture
-
-
-
![arch](../assets/generic-eventsource.png)
-
-
Consider a generic eventsource,
apiVersion: argoproj.io/v1alpha1
@@ -57,26 +56,29 @@ Consider a generic eventsource,
key1: value1
key2: value2
-The values placed under `config` field follows a free-form style and Argo-Events eventsource client is not
-opinionated about them. Although, it is expected that the eventsource server implemented by the user is able to parse the configuration.
+The values placed under `config` field follows a free-form style and Argo-Events
+eventsource client is not opinionated about them. Although, it is expected that
+the eventsource server implemented by the user is able to parse the
+configuration.
## Flow
-1. The eventsource client connects to the server via the `url` defined under eventsource `spec` and sends over the configuration defined
-under `config` over an RPC call.
+1. The eventsource client connects to the server via the `url` defined under
+ eventsource `spec` and sends over the configuration defined under `config`
+ over an RPC call.
-2. The eventsource server then parses the configuration and connects to any external source if required to consume the events.
-The eventsource server can produce events without connecting to any external source, e.g. a special implementation of calendar events.
+2. The eventsource server then parses the configuration and connects to any
+ external source if required to consume the events. The eventsource server can
+ produce events without connecting to any external source, e.g. a special
+ implementation of calendar events.
3. The events from eventsource server are streamed back to the client.
-4. Client then writes the events to the eventbus which are read by the sensor to trigger the workflows.
+4. Client then writes the events to the eventbus which are read by the sensor to
+ trigger the workflows.
## Connection Strategy
-The eventsource client performs indefinite retries to connect to the eventsource server and receives events over a stream upon successful
-connection. This also applies when the eventsource server goes down.
-
-## Deployment Strategy
-
-The deployment strategy for the generic eventsource is `Recreate`. More info is available [here](../eventsources/deployment-strategies.md).
+The eventsource client performs indefinite retries to connect to the eventsource
+server and receives events over a stream upon successful connection. This also
+applies when the eventsource server goes down.
diff --git a/docs/eventsources/ha.md b/docs/eventsources/ha.md
new file mode 100644
index 0000000000..a761a14de5
--- /dev/null
+++ b/docs/eventsources/ha.md
@@ -0,0 +1,82 @@
+# EventSource High Availability
+
+EventSource controller creates a k8s deployment (replica number defaults to 1)
+for each EventSource object to watch the events. HA can be achieved by setting
+`spec.replicas` to a number greater than 1.
+
+Some types of the event sources do not allow multiple live clients with same
+attributes (i.e. multiple clients with same `clientID` connecting to a NATS
+server), or multiple event source PODs will generate duplicated events to
+downstream, so the HA strategies are different for different event sources.
+
+**Please DO NOT manually scale up the replicas, that might cause unexpected
+behaviors!**
+
+## Active-Active
+
+`Active-Active` strategy is applied to the following EventSource types.
+
+- AWS SNS
+- AWS SQS
+- Github
+- Gitlab
+- NetApp Storage GRID
+- Resource
+- Slack
+- Stripe
+- Webhook
+
+When `spec.replicas` is set to N (N > 1), all the N Pods serve trafic.
+
+## Active-Passive
+
+If following EventSource types have `spec.replicas > 1`, `Active-Passive`
+strategy is used, which means only one Pod serves traffic and the rest ones
+stand by. One of standby Pods will be automatically elected to be active if the
+old one is gone.
+
+- AMQP
+- Azure Events Hub
+- Kafka
+- GCP PubSub
+- File
+- HDFS
+- NATS
+- Minio
+- MQTT
+- Emitter
+- NSQ
+- Pulsar
+- Redis
+- Calendar
+- Generic
+
+### RBAC
+
+To achieve `Active-Passive` strategy for these EventSources, a Service Account
+with extra RBAC settings is needed. The Service Account needs to be bound to a
+Role like following, and specified in the spec through
+`spec.template.serviceAccountName`.
+
+```yaml
+apiVersion: rbac.authorization.k8s.io/v1
+kind: Role
+metadata:
+ name: lease-role
+rules:
+ - apiGroups:
+ - coordination.k8s.io
+ resources:
+ - leases
+ resourceNames:
+ - eventsource-{event-source-name}
+ verbs:
+ - "*"
+```
+
+**NOTE: This is not requried if `spec.replicas = 1`.**
+
+## More
+
+Check [this](../dr_ha_recommendations.md) out to learn more information about
+DR/HA.
diff --git a/docs/eventsources/multiple-events.md b/docs/eventsources/multiple-events.md
index 0a1dd0738e..046c6c9657 100644
--- a/docs/eventsources/multiple-events.md
+++ b/docs/eventsources/multiple-events.md
@@ -66,8 +66,9 @@ spec:
However, there are some rules need to follow to do it:
-- `Rolling Update` types and `Recreate` types can not be configured together,
- see [EventSource Deployment Strategies](deployment-strategies.md).
+- EventSource types with `Active-Active` HA strategy can not be mixed with types
+ with `Active-Passive` strategy, for EventSource types, see
+ [EventSource High Availability](ha.md) for the detail.
- Event Name (i.e. `webhook-example` and `sns-example` above, refer to
[EventSource Names](naming.md)) needs to be unique in the EventSource, same
diff --git a/docs/sensors/ha.md b/docs/sensors/ha.md
new file mode 100644
index 0000000000..9779517024
--- /dev/null
+++ b/docs/sensors/ha.md
@@ -0,0 +1,39 @@
+# Sensor High Availability
+
+Sensor controller creates a k8s deployment (replica number defaults to 1) for
+each Sensor object. HA with `Active-Passive` strategy can be achieved by setting
+`spec.replicas` to a number greater than 1, which means only one Pod serves
+traffic and the rest ones stand by. One of standby Pods will be automatically
+elected to be active if the old one is gone.
+
+**Please DO NOT manually scale up the replicas, that might cause unexpected
+behaviors!**
+
+## RBAC
+
+To achieve HA for Sensor Pods, a Service Account with extra RBAC settings is
+needed. The Service Account needs to be bound to a Role like following, and
+specified in the spec through `spec.template.serviceAccountName`.
+
+```yaml
+apiVersion: rbac.authorization.k8s.io/v1
+kind: Role
+metadata:
+ name: lease-role
+rules:
+ - apiGroups:
+ - coordination.k8s.io
+ resources:
+ - leases
+ resourceNames:
+ - sensor-{sensor-name)
+ verbs:
+ - "*"
+```
+
+**NOTE: This is not requried if `spec.replicas = 1`.**
+
+## More
+
+Check [this](../dr_ha_recommendations.md) out to learn more information about
+DR/HA.
diff --git a/docs/more-about-sensors-and-triggers.md b/docs/sensors/more-about-sensors-and-triggers.md
similarity index 100%
rename from docs/more-about-sensors-and-triggers.md
rename to docs/sensors/more-about-sensors-and-triggers.md
diff --git a/docs/trigger-conditions.md b/docs/sensors/trigger-conditions.md
similarity index 98%
rename from docs/trigger-conditions.md
rename to docs/sensors/trigger-conditions.md
index 6f60475671..5fcec05dc2 100644
--- a/docs/trigger-conditions.md
+++ b/docs/sensors/trigger-conditions.md
@@ -1,7 +1,5 @@
# Trigger Conditions
-![GA](assets/ga.svg)
-
> v1.0 and after
`Conditions` is a new feature to replace `Circuit` and `Switch`. With
diff --git a/docs/triggers/argo-workflow.md b/docs/sensors/triggers/argo-workflow.md
similarity index 100%
rename from docs/triggers/argo-workflow.md
rename to docs/sensors/triggers/argo-workflow.md
diff --git a/docs/triggers/aws-lambda.md b/docs/sensors/triggers/aws-lambda.md
similarity index 100%
rename from docs/triggers/aws-lambda.md
rename to docs/sensors/triggers/aws-lambda.md
diff --git a/docs/triggers/azure-event-hubs.md b/docs/sensors/triggers/azure-event-hubs.md
similarity index 100%
rename from docs/triggers/azure-event-hubs.md
rename to docs/sensors/triggers/azure-event-hubs.md
diff --git a/docs/triggers/build-your-own-trigger.md b/docs/sensors/triggers/build-your-own-trigger.md
similarity index 100%
rename from docs/triggers/build-your-own-trigger.md
rename to docs/sensors/triggers/build-your-own-trigger.md
diff --git a/docs/triggers/http-trigger.md b/docs/sensors/triggers/http-trigger.md
similarity index 99%
rename from docs/triggers/http-trigger.md
rename to docs/sensors/triggers/http-trigger.md
index 281da0d893..600be615ab 100644
--- a/docs/triggers/http-trigger.md
+++ b/docs/sensors/triggers/http-trigger.md
@@ -83,7 +83,7 @@ We will set up a basic go http server and connect it with the minio events.
### Request Payload
In order to construct a request payload based on the event data, sensor offers
-`payload` field as a part of the HTP trigger.
+`payload` field as a part of the HTTP trigger.
Let's examine a HTTP trigger,
diff --git a/docs/triggers/k8s-object-trigger.md b/docs/sensors/triggers/k8s-object-trigger.md
similarity index 100%
rename from docs/triggers/k8s-object-trigger.md
rename to docs/sensors/triggers/k8s-object-trigger.md
diff --git a/docs/triggers/kafka-trigger.md b/docs/sensors/triggers/kafka-trigger.md
similarity index 100%
rename from docs/triggers/kafka-trigger.md
rename to docs/sensors/triggers/kafka-trigger.md
diff --git a/docs/triggers/log.md b/docs/sensors/triggers/log.md
similarity index 100%
rename from docs/triggers/log.md
rename to docs/sensors/triggers/log.md
diff --git a/docs/triggers/nats-trigger.md b/docs/sensors/triggers/nats-trigger.md
similarity index 100%
rename from docs/triggers/nats-trigger.md
rename to docs/sensors/triggers/nats-trigger.md
diff --git a/docs/triggers/openwhisk-trigger.md b/docs/sensors/triggers/openwhisk-trigger.md
similarity index 100%
rename from docs/triggers/openwhisk-trigger.md
rename to docs/sensors/triggers/openwhisk-trigger.md
diff --git a/docs/triggers/slack-trigger.md b/docs/sensors/triggers/slack-trigger.md
similarity index 100%
rename from docs/triggers/slack-trigger.md
rename to docs/sensors/triggers/slack-trigger.md
diff --git a/docs/service-accounts.md b/docs/service-accounts.md
index 49d13653ff..40a79fb9ed 100644
--- a/docs/service-accounts.md
+++ b/docs/service-accounts.md
@@ -4,9 +4,10 @@
A `Service Account` can be specified in the EventSource object with
`spec.template.serviceAccountName`, however it is not needed for all the
-EventSource types except `resource`. For a `resource` EventSource, you need to
-specify a Service Accout and give it `list` and `watch` permissions for the
-resource being watched.
+EventSource types except `resource`, unless you want to achieve
+[HA](eventsources/ha.md) for some of them. For a `resource` EventSource, you
+need to specify a Service Accout and give it `list` and `watch` permissions for
+the resource being watched.
For example, if you want to watch actions on `Deployment` objects, you need to:
@@ -30,7 +31,8 @@ For example, if you want to watch actions on `Deployment` objects, you need to:
A `Service Account` also can be specified in a Sensor object via
`spec.template.serviceAccountName`, this is only needed when `k8s` trigger or
-`argoWorkflow` trigger is defined in the Sensor object.
+`argoWorkflow` trigger is defined in the Sensor object, or you want to run the
+Sensor with [HA](sensors/ha.md).
The sensor examples provided by us use `argo-events-sa` service account to
execute the triggers, but it has more permissions than needed, and you may want
diff --git a/docs/tutorials/05-trigger-custom-resources.md b/docs/tutorials/05-trigger-custom-resources.md
index d8ce993a19..5c9c02654a 100644
--- a/docs/tutorials/05-trigger-custom-resources.md
+++ b/docs/tutorials/05-trigger-custom-resources.md
@@ -1,3 +1,5 @@
# Trigger Custom Resources
-Take a look at [Build Your Own Trigger](../triggers/build-your-own-trigger.md) to customize the sensor.
\ No newline at end of file
+Take a look at
+[Build Your Own Trigger](../sensors/triggers/build-your-own-trigger.md) to
+customize the sensor.
diff --git a/eventsources/cmd/main.go b/eventsources/cmd/main.go
index b1db9dc6c0..50232338a0 100644
--- a/eventsources/cmd/main.go
+++ b/eventsources/cmd/main.go
@@ -9,6 +9,7 @@ import (
"go.uber.org/zap"
"sigs.k8s.io/controller-runtime/pkg/manager/signals"
+ argoevents "github.com/argoproj/argo-events"
"github.com/argoproj/argo-events/common"
"github.com/argoproj/argo-events/common/logging"
"github.com/argoproj/argo-events/eventsources"
@@ -58,8 +59,10 @@ func main() {
ctx := logging.WithLogger(signals.SetupSignalHandler(), logger)
m := metrics.NewMetrics(eventSource.Namespace)
go m.Run(ctx, fmt.Sprintf(":%d", common.EventSourceMetricsPort))
+
+ logger.Infow("starting eventsource server", "version", argoevents.GetVersion())
adaptor := eventsources.NewEventSourceAdaptor(eventSource, busConfig, ebSubject, hostname, m)
if err := adaptor.Start(ctx); err != nil {
- logger.Desugar().Fatal("failed to start eventsource server", zap.Error(err))
+ logger.Fatalw("failed to start eventsource server", zap.Error(err))
}
}
diff --git a/eventsources/eventing.go b/eventsources/eventing.go
index 607b6b4d77..e2f76c9303 100644
--- a/eventsources/eventing.go
+++ b/eventsources/eventing.go
@@ -5,6 +5,7 @@ import (
"encoding/json"
"fmt"
"math/rand"
+ "os"
"strings"
"sync"
"time"
@@ -13,6 +14,10 @@ import (
"github.com/google/uuid"
"github.com/pkg/errors"
"go.uber.org/zap"
+ metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
+ "k8s.io/client-go/kubernetes"
+ "k8s.io/client-go/tools/leaderelection"
+ "k8s.io/client-go/tools/leaderelection/resourcelock"
"github.com/argoproj/argo-events/common"
"github.com/argoproj/argo-events/common/logging"
@@ -263,20 +268,90 @@ func NewEventSourceAdaptor(eventSource *v1alpha1.EventSource, eventBusConfig *ev
// Start function
func (e *EventSourceAdaptor) Start(ctx context.Context) error {
- logger := logging.FromContext(ctx).Desugar()
- logger.Info("Starting event source server...")
+ log := logging.FromContext(ctx)
+
+ recreateTypes := make(map[apicommon.EventSourceType]bool)
+ for _, esType := range apicommon.RecreateStrategyEventSources {
+ recreateTypes[esType] = true
+ }
+ isRecreatType := false
servers := GetEventingServers(e.eventSource, e.metrics)
+ for k := range servers {
+ if _, ok := recreateTypes[k]; ok {
+ isRecreatType = true
+ }
+ // This is based on the presumption that all the events in one
+ // EventSource object use the same type of deployment strategy
+ break
+ }
+ if !isRecreatType || e.eventSource.Spec.GetReplicas() == 1 {
+ return e.run(ctx, servers)
+ }
+
+ kubeConfig, _ := os.LookupEnv(common.EnvVarKubeConfig)
+ restConfig, err := common.GetClientConfig(kubeConfig)
+ if err != nil {
+ return errors.Wrapf(err, "failed to get a K8s rest config for the event source %s", e.eventSource.Name)
+ }
+ kubeClient := kubernetes.NewForConfigOrDie(restConfig)
+
+ leaseName := "eventsource-" + e.eventSource.Name
+ lock := &resourcelock.LeaseLock{
+ LeaseMeta: metav1.ObjectMeta{
+ Name: leaseName,
+ Namespace: e.eventSource.Namespace,
+ },
+ Client: kubeClient.CoordinationV1(),
+ LockConfig: resourcelock.ResourceLockConfig{
+ Identity: e.hostname,
+ },
+ }
+
+ ctx, cancel := context.WithCancel(ctx)
+ leaderelection.RunOrDie(ctx, leaderelection.LeaderElectionConfig{
+ Lock: lock,
+ ReleaseOnCancel: true,
+ LeaseDuration: 60 * time.Second,
+ RenewDeadline: 15 * time.Second,
+ RetryPeriod: 5 * time.Second,
+ Callbacks: leaderelection.LeaderCallbacks{
+ OnStartedLeading: func(ctx context.Context) {
+ if err := e.run(ctx, servers); err != nil {
+ log.Errorw("failed to start", zap.Error(err))
+ cancel()
+ }
+ },
+ OnStoppedLeading: func() {
+ log.Infof("leader lost: %s", e.hostname)
+ cancel()
+ },
+ OnNewLeader: func(identity string) {
+ if identity == e.hostname {
+ log.Infof("I am the new leader: %s", identity)
+ return
+ }
+ log.Infof("stand by, new leader elected: %s", identity)
+ },
+ },
+ })
+
+ return nil
+}
+
+func (e *EventSourceAdaptor) run(ctx context.Context, servers map[apicommon.EventSourceType][]EventingServer) error {
+ logger := logging.FromContext(ctx)
+ logger.Info("Starting event source server...")
clientID := generateClientID(e.hostname)
driver, err := eventbus.GetDriver(ctx, *e.eventBusConfig, e.eventBusSubject, clientID)
if err != nil {
- logger.Error("failed to get eventbus driver", zap.Error(err))
+ logger.Errorw("failed to get eventbus driver", zap.Error(err))
return err
}
if err = common.Connect(&common.DefaultBackoff, func() error {
e.eventBusConn, err = driver.Connect()
return err
}); err != nil {
- logger.Error("failed to connect to eventbus", zap.Error(err))
+ logger.Errorw("failed to connect to eventbus", zap.Error(err))
return err
}
defer e.eventBusConn.Close()
@@ -302,12 +377,12 @@ func (e *EventSourceAdaptor) Start(ctx context.Context) error {
clientID := generateClientID(e.hostname)
driver, err := eventbus.GetDriver(cctx, *e.eventBusConfig, e.eventBusSubject, clientID)
if err != nil {
- logger.Error("failed to get eventbus driver during reconnection", zap.Error(err))
+ logger.Errorw("failed to get eventbus driver during reconnection", zap.Error(err))
continue
}
e.eventBusConn, err = driver.Connect()
if err != nil {
- logger.Error("failed to reconnect to eventbus", zap.Error(err))
+ logger.Errorw("failed to reconnect to eventbus", zap.Error(err))
continue
}
logger.Info("reconnected to eventbus successfully")
@@ -322,7 +397,7 @@ func (e *EventSourceAdaptor) Start(ctx context.Context) error {
// Validation has been done in eventsource-controller, it's harmless to do it again here.
err := server.ValidateEventSource(cctx)
if err != nil {
- logger.Error("Validation failed", zap.Error(err), zap.Any(logging.LabelEventName,
+ logger.Errorw("Validation failed", zap.Error(err), zap.Any(logging.LabelEventName,
server.GetEventName()), zap.Any(logging.LabelEventSourceType, server.GetEventSourceType()))
// Continue starting other event services instead of failing all of them
continue
@@ -361,18 +436,18 @@ func (e *EventSourceAdaptor) Start(ctx context.Context) error {
return errors.New("failed to publish event, eventbus connection closed")
}
if err = driver.Publish(e.eventBusConn, eventBody); err != nil {
- logger.Error("failed to publish an event", zap.Error(err), zap.String(logging.LabelEventName,
+ logger.Errorw("failed to publish an event", zap.Error(err), zap.String(logging.LabelEventName,
s.GetEventName()), zap.Any(logging.LabelEventSourceType, s.GetEventSourceType()))
e.metrics.EventSentFailed(s.GetEventSourceName(), s.GetEventName())
return err
}
- logger.Info("succeeded to publish an event", zap.String(logging.LabelEventName,
+ logger.Infow("succeeded to publish an event", zap.String(logging.LabelEventName,
s.GetEventName()), zap.Any(logging.LabelEventSourceType, s.GetEventSourceType()), zap.String("eventID", event.ID()))
e.metrics.EventSent(s.GetEventSourceName(), s.GetEventName())
return nil
})
}); err != nil {
- logger.Error("failed to start listening eventsource", zap.Any(logging.LabelEventSourceType,
+ logger.Errorw("failed to start listening eventsource", zap.Any(logging.LabelEventSourceType,
s.GetEventSourceType()), zap.Any(logging.LabelEventName, s.GetEventName()), zap.Error(err))
}
}(server)
diff --git a/manifests/cluster-install/rbac/argo-events-cluster-role.yaml b/manifests/cluster-install/rbac/argo-events-cluster-role.yaml
index fa5e2bfe38..284abfd3a7 100644
--- a/manifests/cluster-install/rbac/argo-events-cluster-role.yaml
+++ b/manifests/cluster-install/rbac/argo-events-cluster-role.yaml
@@ -65,7 +65,7 @@ rules:
- patch
- delete
- apiGroups:
- - "batch"
+ - batch
resources:
- jobs
verbs:
@@ -77,7 +77,7 @@ rules:
- patch
- delete
- apiGroups:
- - "apps"
+ - apps
resources:
- deployments
- statefulsets
@@ -89,3 +89,9 @@ rules:
- update
- patch
- delete
+ - apiGroups:
+ - coordination.k8s.io
+ resources:
+ - leases
+ verbs:
+ - "*"
\ No newline at end of file
diff --git a/manifests/install.yaml b/manifests/install.yaml
index 8ee69bf305..4131108211 100644
--- a/manifests/install.yaml
+++ b/manifests/install.yaml
@@ -297,6 +297,12 @@ rules:
- update
- patch
- delete
+- apiGroups:
+ - coordination.k8s.io
+ resources:
+ - leases
+ verbs:
+ - '*'
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
diff --git a/manifests/namespace-install.yaml b/manifests/namespace-install.yaml
index e0a9983ad2..1ed5d87e99 100644
--- a/manifests/namespace-install.yaml
+++ b/manifests/namespace-install.yaml
@@ -202,6 +202,12 @@ rules:
- update
- patch
- delete
+- apiGroups:
+ - coordination.k8s.io
+ resources:
+ - leases
+ verbs:
+ - '*'
---
apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
diff --git a/manifests/namespace-install/rbac/argo-events-role.yaml b/manifests/namespace-install/rbac/argo-events-role.yaml
index d4999944ba..11542abe65 100644
--- a/manifests/namespace-install/rbac/argo-events-role.yaml
+++ b/manifests/namespace-install/rbac/argo-events-role.yaml
@@ -51,7 +51,7 @@ rules:
- patch
- delete
- apiGroups:
- - "batch"
+ - batch
resources:
- jobs
verbs:
@@ -63,7 +63,7 @@ rules:
- patch
- delete
- apiGroups:
- - "apps"
+ - apps
resources:
- deployments
- statefulsets
@@ -75,3 +75,9 @@ rules:
- update
- patch
- delete
+ - apiGroups:
+ - coordination.k8s.io
+ resources:
+ - leases
+ verbs:
+ - "*"
\ No newline at end of file
diff --git a/metrics/metrics_test.go b/metrics/metrics_test.go
index f0b8a9d47a..16a06dc8cb 100644
--- a/metrics/metrics_test.go
+++ b/metrics/metrics_test.go
@@ -5,6 +5,7 @@ import (
"fmt"
"net/http"
"testing"
+ "time"
"github.com/stretchr/testify/assert"
@@ -15,6 +16,7 @@ func TestRun(t *testing.T) {
port := 9090
m := NewMetrics("test-ns")
go m.Run(logging.WithLogger(context.Background(), logging.NewArgoEventsLogger()), fmt.Sprintf(":%d", port))
+ time.Sleep(1 * time.Second)
resp, err := http.Get(fmt.Sprintf("http://localhost:%d/metrics", port))
assert.Nil(t, err)
assert.Equal(t, resp.StatusCode, 200)
diff --git a/mkdocs.yml b/mkdocs.yml
index cead02fdd4..422b5d6e19 100644
--- a/mkdocs.yml
+++ b/mkdocs.yml
@@ -58,10 +58,10 @@ nav:
- 'eventsources/setup/resource.md'
- 'eventsources/setup/webhook.md'
- 'eventsources/setup/pulsar.md'
- - 'eventsources/deployment-strategies.md'
- 'eventsources/multiple-events.md'
- 'eventsources/naming.md'
- 'eventsources/services.md'
+ - 'eventsources/ha.md'
- 'eventsources/webhook-authentication.md'
- 'eventsources/webhook-health-check.md'
- 'eventsources/calendar-catch-up.md'
@@ -69,18 +69,20 @@ nav:
- 'eventsources/generic.md'
- Sensors:
- Triggers:
- - 'triggers/argo-workflow.md'
- - 'triggers/aws-lambda.md'
- - 'triggers/http-trigger.md'
- - 'triggers/nats-trigger.md'
- - 'triggers/kafka-trigger.md'
- - 'triggers/k8s-object-trigger.md'
- - 'triggers/log.md'
- - 'triggers/openwhisk-trigger.md'
- - 'triggers/slack-trigger.md'
- - 'triggers/build-your-own-trigger.md'
- - 'trigger-conditions.md'
- - More Information: 'more-about-sensors-and-triggers.md'
+ - 'sensors/triggers/argo-workflow.md'
+ - 'sensors/triggers/aws-lambda.md'
+ - 'sensors/triggers/http-trigger.md'
+ - 'sensors/triggers/nats-trigger.md'
+ - 'sensors/triggers/kafka-trigger.md'
+ - 'sensors/triggers/k8s-object-trigger.md'
+ - 'sensors/triggers/log.md'
+ - 'sensors/triggers/openwhisk-trigger.md'
+ - 'sensors/triggers/slack-trigger.md'
+ - 'sensors/triggers/azure-event-hubs.md'
+ - 'sensors/triggers/build-your-own-trigger.md'
+ - 'sensors/trigger-conditions.md'
+ - 'sensors/ha.md'
+ - More Information: 'sensors/more-about-sensors-and-triggers.md'
- 'eventbus.md'
- 'service-accounts.md'
- Operator Guide:
diff --git a/pkg/apis/eventsource/v1alpha1/generated.pb.go b/pkg/apis/eventsource/v1alpha1/generated.pb.go
index 8a4e036543..c0c758b86a 100644
--- a/pkg/apis/eventsource/v1alpha1/generated.pb.go
+++ b/pkg/apis/eventsource/v1alpha1/generated.pb.go
@@ -1320,354 +1320,355 @@ func init() {
}
var fileDescriptor_c9ac5d6cd016403b = []byte{
- // 5547 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x5d, 0x6c, 0x23, 0xd7,
- 0x75, 0xb0, 0x29, 0x52, 0x14, 0x79, 0xf4, 0x7f, 0x77, 0x6d, 0xd3, 0x4a, 0xb2, 0xbb, 0x9f, 0x8c,
- 0x2c, 0x76, 0xbf, 0x38, 0x52, 0xbd, 0x6d, 0x5a, 0xd7, 0x46, 0x1c, 0x88, 0x92, 0x56, 0x2b, 0xeb,
- 0x67, 0xa5, 0x43, 0x69, 0xd7, 0x8e, 0xff, 0x32, 0x1c, 0x5e, 0x92, 0x63, 0x0d, 0x67, 0xa8, 0x99,
- 0xa1, 0x76, 0x65, 0xa0, 0x89, 0x51, 0xa0, 0x3f, 0x89, 0xeb, 0x34, 0x6e, 0xd3, 0x1f, 0xb4, 0x6f,
- 0x7d, 0x09, 0xd0, 0x3e, 0x16, 0xe8, 0x7b, 0xdf, 0x0c, 0xe4, 0xc5, 0x7d, 0x0b, 0x10, 0x60, 0x61,
- 0xab, 0x45, 0xdf, 0xfa, 0xd2, 0xbe, 0xb4, 0x29, 0x0a, 0x14, 0xf7, 0x67, 0xee, 0xdc, 0x19, 0x8e,
- 0xb4, 0xe2, 0x92, 0xd4, 0xbe, 0xf4, 0x69, 0xc5, 0x73, 0xce, 0x3d, 0xe7, 0xcc, 0xcc, 0xf9, 0xb9,
- 0xe7, 0xde, 0x73, 0xef, 0xc2, 0x56, 0xc3, 0x0a, 0x9a, 0x9d, 0xea, 0x82, 0xe9, 0xb6, 0x16, 0x0d,
- 0xaf, 0xe1, 0xb6, 0x3d, 0xf7, 0x03, 0xfe, 0xc7, 0x37, 0xe9, 0x11, 0x75, 0x02, 0x7f, 0xb1, 0x7d,
- 0xd0, 0x58, 0x34, 0xda, 0x96, 0xbf, 0x28, 0x7e, 0xbb, 0x1d, 0xcf, 0xa4, 0x8b, 0x47, 0x2f, 0x1b,
- 0x76, 0xbb, 0x69, 0xbc, 0xbc, 0xd8, 0xa0, 0x0e, 0xf5, 0x8c, 0x80, 0xd6, 0x16, 0xda, 0x9e, 0x1b,
- 0xb8, 0xe4, 0xdb, 0x11, 0xbb, 0x85, 0x90, 0x1d, 0xff, 0xe3, 0x7d, 0x31, 0x7c, 0xa1, 0x7d, 0xd0,
- 0x58, 0x60, 0xec, 0x16, 0x34, 0x76, 0x0b, 0x21, 0xbb, 0xb9, 0xef, 0x9c, 0x5b, 0x1b, 0xd3, 0x6d,
- 0xb5, 0x5c, 0x27, 0x29, 0x7f, 0xee, 0x9b, 0x1a, 0x83, 0x86, 0xdb, 0x70, 0x17, 0x39, 0xb8, 0xda,
- 0xa9, 0xf3, 0x5f, 0xfc, 0x07, 0xff, 0x4b, 0x92, 0xcf, 0x1f, 0xbc, 0xe2, 0x2f, 0x58, 0x2e, 0x63,
- 0xb9, 0x68, 0xba, 0x1e, 0x7b, 0xb0, 0x2e, 0x96, 0xbf, 0x11, 0xd1, 0xb4, 0x0c, 0xb3, 0x69, 0x39,
- 0xd4, 0x3b, 0x8e, 0xf4, 0x68, 0xd1, 0xc0, 0x48, 0x1b, 0xb5, 0x78, 0xda, 0x28, 0xaf, 0xe3, 0x04,
- 0x56, 0x8b, 0x76, 0x0d, 0xf8, 0xcd, 0xc7, 0x0d, 0xf0, 0xcd, 0x26, 0x6d, 0x19, 0xc9, 0x71, 0xf3,
- 0xff, 0x95, 0x81, 0xd9, 0xa5, 0xad, 0xdd, 0x9d, 0x65, 0xd7, 0xf1, 0x3b, 0x2d, 0xba, 0xec, 0x3a,
- 0x75, 0xab, 0x41, 0xbe, 0x05, 0xe3, 0xa6, 0x00, 0x78, 0x7b, 0x46, 0xa3, 0x94, 0xb9, 0x96, 0xb9,
- 0x51, 0x2c, 0x5f, 0xfa, 0xec, 0xd1, 0xd5, 0x67, 0x4e, 0x1e, 0x5d, 0x1d, 0x5f, 0x8e, 0x50, 0xa8,
- 0xd3, 0x91, 0x9b, 0x30, 0x66, 0x74, 0x02, 0x77, 0xc9, 0x3c, 0x28, 0x8d, 0x5c, 0xcb, 0xdc, 0x28,
- 0x94, 0xa7, 0xe5, 0x90, 0xb1, 0x25, 0x01, 0xc6, 0x10, 0x4f, 0x16, 0xa1, 0x48, 0x1f, 0x9a, 0x76,
- 0xc7, 0xb7, 0x8e, 0x68, 0x29, 0xcb, 0x89, 0x67, 0x25, 0x71, 0x71, 0x35, 0x44, 0x60, 0x44, 0xc3,
- 0x78, 0x3b, 0xee, 0xa6, 0x6b, 0x1a, 0x76, 0x29, 0x17, 0xe7, 0xbd, 0x2d, 0xc0, 0x18, 0xe2, 0xc9,
- 0x75, 0xc8, 0x3b, 0xee, 0x7d, 0xc3, 0x0a, 0x4a, 0xa3, 0x9c, 0x72, 0x4a, 0x52, 0xe6, 0xb7, 0x39,
- 0x14, 0x25, 0x76, 0xfe, 0xb3, 0x22, 0x4c, 0xb3, 0x67, 0x5f, 0x65, 0xc6, 0x51, 0xe1, 0xb6, 0x44,
- 0xbe, 0x06, 0xd9, 0x8e, 0x67, 0xcb, 0x27, 0x1e, 0x97, 0x03, 0xb3, 0xfb, 0xb8, 0x89, 0x0c, 0x4e,
- 0x5e, 0x81, 0x09, 0xfa, 0xd0, 0x6c, 0x1a, 0x4e, 0x83, 0x6e, 0x1b, 0x2d, 0xca, 0x1f, 0xb3, 0x58,
- 0xbe, 0x2c, 0xe9, 0x26, 0x56, 0x35, 0x1c, 0xc6, 0x28, 0xf5, 0x91, 0x7b, 0xc7, 0x6d, 0xf1, 0xcc,
- 0x29, 0x23, 0x19, 0x0e, 0x63, 0x94, 0xe4, 0x16, 0x80, 0xe7, 0x76, 0x02, 0xcb, 0x69, 0x6c, 0xd0,
- 0x63, 0xfe, 0xf0, 0xc5, 0x32, 0x91, 0xe3, 0x00, 0x15, 0x06, 0x35, 0x2a, 0xf2, 0x3b, 0x30, 0x6b,
- 0xba, 0x8e, 0x43, 0xcd, 0xc0, 0x72, 0x9d, 0xb2, 0x61, 0x1e, 0xb8, 0xf5, 0x3a, 0x7f, 0x1b, 0xe3,
- 0xb7, 0x5e, 0x59, 0x38, 0xb7, 0x93, 0x09, 0x2f, 0x59, 0x90, 0xe3, 0xcb, 0xcf, 0x9e, 0x3c, 0xba,
- 0x3a, 0xbb, 0x9c, 0x64, 0x8b, 0xdd, 0x92, 0xc8, 0x4b, 0x50, 0xf8, 0xc0, 0x77, 0x9d, 0xb2, 0x5b,
- 0x3b, 0x2e, 0xe5, 0xf9, 0x37, 0x98, 0x91, 0x0a, 0x17, 0xde, 0xa8, 0xdc, 0xdd, 0x66, 0x70, 0x54,
- 0x14, 0x64, 0x1f, 0xb2, 0x81, 0xed, 0x97, 0xc6, 0xb8, 0x7a, 0xaf, 0xf6, 0xac, 0xde, 0xde, 0x66,
- 0x45, 0x98, 0x6d, 0x79, 0x8c, 0x7d, 0xab, 0xbd, 0xcd, 0x0a, 0x32, 0x7e, 0xe4, 0x47, 0x19, 0x28,
- 0x30, 0xff, 0xaa, 0x19, 0x81, 0x51, 0x2a, 0x5c, 0xcb, 0xde, 0x18, 0xbf, 0xf5, 0xce, 0x42, 0x5f,
- 0x01, 0x66, 0x21, 0x61, 0x2d, 0x0b, 0x5b, 0x92, 0xfd, 0xaa, 0x13, 0x78, 0xc7, 0xd1, 0x33, 0x86,
- 0x60, 0x54, 0xf2, 0xc9, 0x5f, 0x64, 0x60, 0x3a, 0xfc, 0xaa, 0x2b, 0xd4, 0xb4, 0x0d, 0x8f, 0x96,
- 0x8a, 0xfc, 0x81, 0xdf, 0x1c, 0x84, 0x4e, 0x71, 0xce, 0xf2, 0x75, 0x5c, 0x3a, 0x79, 0x74, 0x75,
- 0x3a, 0x81, 0xc2, 0xa4, 0x16, 0xe4, 0xe3, 0x0c, 0x4c, 0x1c, 0x76, 0x68, 0x47, 0xa9, 0x05, 0x5c,
- 0xad, 0xfd, 0x01, 0xa8, 0xb5, 0xab, 0xb1, 0x95, 0x3a, 0xcd, 0x30, 0x63, 0xd7, 0xe1, 0x18, 0x13,
- 0x4e, 0x7e, 0x00, 0x45, 0xfe, 0xbb, 0x6c, 0x39, 0xb5, 0xd2, 0x38, 0xd7, 0x04, 0x07, 0xa5, 0x09,
- 0xe3, 0x29, 0xd5, 0x98, 0x64, 0x71, 0x46, 0x01, 0x31, 0x92, 0x49, 0x1e, 0xc0, 0x98, 0x0c, 0x69,
- 0xa5, 0x09, 0x2e, 0x7e, 0x67, 0x00, 0xe2, 0x63, 0xd1, 0xb5, 0x3c, 0xce, 0xa2, 0x96, 0x04, 0x61,
- 0x28, 0x6d, 0xee, 0x35, 0x98, 0x8c, 0x99, 0x13, 0x99, 0x81, 0xec, 0x01, 0x3d, 0x16, 0xa1, 0x08,
- 0xd9, 0x9f, 0xe4, 0x32, 0x8c, 0x1e, 0x19, 0x76, 0x47, 0x86, 0x1d, 0x14, 0x3f, 0x5e, 0x1d, 0x79,
- 0x25, 0x33, 0xff, 0x79, 0x06, 0x5e, 0x38, 0xd5, 0x10, 0x58, 0xec, 0xac, 0x75, 0x3c, 0xa3, 0x6a,
- 0x53, 0xce, 0x4d, 0x8b, 0x9d, 0x2b, 0x02, 0x8c, 0x21, 0x9e, 0x05, 0x1b, 0x16, 0xa2, 0x57, 0xa8,
- 0x4d, 0x03, 0x2a, 0xa3, 0xb8, 0x0a, 0x36, 0x4b, 0x0a, 0x83, 0x1a, 0x15, 0xf3, 0x76, 0xcb, 0x09,
- 0xa8, 0xe7, 0x18, 0xb6, 0x0c, 0xe5, 0xca, 0x13, 0xd6, 0x25, 0x1c, 0x15, 0x85, 0x16, 0x9d, 0x73,
- 0x67, 0x46, 0xe7, 0x6f, 0xc3, 0xa5, 0x94, 0x2f, 0xa7, 0x0d, 0xcf, 0x9c, 0x39, 0xfc, 0xdf, 0x33,
- 0xf0, 0x5c, 0xba, 0x0d, 0x92, 0x6b, 0x90, 0x73, 0x58, 0xf0, 0x16, 0x41, 0x7e, 0x42, 0x32, 0xc8,
- 0xf1, 0xa0, 0xcd, 0x31, 0xfa, 0x0b, 0x1b, 0xe9, 0xe9, 0x85, 0x65, 0xcf, 0xf5, 0xc2, 0x62, 0xc9,
- 0x2f, 0x77, 0x8e, 0xe4, 0x77, 0xde, 0x8c, 0xf6, 0xd3, 0x1c, 0xbc, 0xb0, 0xf4, 0x61, 0xc7, 0xa3,
- 0x3c, 0x48, 0xf9, 0x77, 0x3a, 0x55, 0x3d, 0xb7, 0x5d, 0x83, 0x5c, 0xfd, 0xb0, 0xe6, 0x24, 0x9f,
- 0xfb, 0xf6, 0xee, 0xca, 0x36, 0x72, 0x0c, 0x69, 0xc3, 0x25, 0xbf, 0x69, 0x78, 0xb4, 0xb6, 0x64,
- 0x9a, 0xd4, 0xf7, 0x37, 0xe8, 0xb1, 0xca, 0x72, 0xe3, 0xb7, 0xbe, 0xbe, 0x20, 0xe6, 0x18, 0xcc,
- 0xd6, 0x17, 0xd8, 0x74, 0x67, 0xe1, 0xe8, 0xe5, 0x85, 0x0a, 0x35, 0x3d, 0x1a, 0x6c, 0xd0, 0xe3,
- 0x0a, 0xb5, 0xa9, 0x19, 0xb8, 0x5e, 0xf9, 0xf9, 0x93, 0x47, 0x57, 0x2f, 0x55, 0xba, 0xb9, 0x60,
- 0x1a, 0x6b, 0x52, 0x83, 0xe9, 0x04, 0x98, 0xbf, 0xc3, 0x73, 0x4b, 0xe3, 0x31, 0x2e, 0x21, 0x0d,
- 0x93, 0x2c, 0xd9, 0xf7, 0x6c, 0x76, 0xaa, 0xfc, 0x59, 0x44, 0xfe, 0x54, 0xdf, 0xf3, 0x8e, 0x00,
- 0x63, 0x88, 0x27, 0x3f, 0xd5, 0xb3, 0xc6, 0x28, 0xcf, 0x1a, 0xf5, 0x7e, 0x23, 0xc0, 0x69, 0x5f,
- 0xe4, 0xfc, 0xf9, 0xa3, 0xbf, 0xe8, 0xf0, 0x3f, 0x39, 0xb8, 0xb4, 0x6c, 0xd8, 0xd4, 0xa9, 0x19,
- 0x9e, 0x6e, 0x10, 0x2f, 0x41, 0x81, 0x4d, 0x0b, 0x6b, 0x1d, 0x3b, 0x74, 0x06, 0xa5, 0x42, 0x45,
- 0xc2, 0x51, 0x51, 0x28, 0x37, 0x3f, 0x32, 0x6c, 0x39, 0xef, 0x89, 0xbb, 0xf9, 0x91, 0x72, 0xf3,
- 0x23, 0xc3, 0x26, 0xaf, 0xc2, 0x94, 0xb4, 0x5f, 0xd7, 0x59, 0x31, 0x02, 0xea, 0x97, 0xb2, 0xd7,
- 0xb2, 0x6c, 0xe6, 0x72, 0xf2, 0xe8, 0xea, 0xd4, 0x6a, 0x0c, 0x83, 0x09, 0x4a, 0x26, 0x89, 0xcd,
- 0x59, 0x3f, 0x74, 0x9d, 0xf0, 0x7b, 0x29, 0x49, 0x7b, 0x12, 0x8e, 0x8a, 0x82, 0x6c, 0xc1, 0x78,
- 0xc7, 0xa7, 0xde, 0x8e, 0x71, 0x6c, 0xbb, 0x46, 0x8d, 0x7b, 0xc8, 0x44, 0xf9, 0x1b, 0x6c, 0xa2,
- 0xba, 0x1f, 0x81, 0x7f, 0xf5, 0xe8, 0x6a, 0x89, 0x3a, 0xa6, 0x5b, 0xb3, 0x9c, 0xc6, 0x22, 0x9b,
- 0x79, 0x2c, 0xa0, 0xf1, 0x60, 0x8b, 0xfa, 0xbe, 0xd1, 0xa0, 0xa8, 0x8f, 0x27, 0x3f, 0xd6, 0x0d,
- 0x20, 0xcf, 0x0d, 0xe0, 0x7b, 0x7d, 0x1a, 0x40, 0xca, 0xbb, 0xef, 0x61, 0xea, 0xf0, 0xbb, 0x19,
- 0x18, 0x6f, 0x53, 0xcf, 0xb7, 0xfc, 0x80, 0x3a, 0x26, 0x95, 0xf3, 0xa4, 0xbb, 0x7d, 0xea, 0xc4,
- 0x75, 0xd9, 0x89, 0xd8, 0x96, 0xa7, 0xd9, 0x1b, 0xd3, 0x00, 0xa8, 0x0b, 0xed, 0xcf, 0xfe, 0x1e,
- 0xc2, 0xe5, 0x65, 0x23, 0x30, 0x9b, 0x9d, 0xb6, 0x88, 0xc0, 0x1d, 0xcf, 0x60, 0xb3, 0x45, 0xe6,
- 0x96, 0xd4, 0x61, 0x51, 0xb4, 0x96, 0xcc, 0x4b, 0xab, 0x02, 0x8c, 0x21, 0x9e, 0x55, 0x24, 0x2d,
- 0xe3, 0xe1, 0x8a, 0x1c, 0x29, 0xed, 0x4f, 0x55, 0x24, 0x5b, 0x11, 0x0a, 0x75, 0xba, 0xf9, 0xef,
- 0xc3, 0x65, 0x21, 0x72, 0xcb, 0x68, 0x6b, 0xcf, 0x76, 0x8e, 0x14, 0xb0, 0x02, 0x33, 0xa6, 0x47,
- 0x8d, 0x80, 0xae, 0xd7, 0xb7, 0xdd, 0x60, 0xf5, 0xa1, 0xe5, 0x07, 0x32, 0x17, 0x94, 0x24, 0xf5,
- 0xcc, 0x72, 0x02, 0x8f, 0x5d, 0x23, 0xe6, 0xff, 0x2a, 0x0f, 0x64, 0xb5, 0x65, 0x05, 0x01, 0x8d,
- 0x39, 0xde, 0x75, 0xc8, 0x57, 0x3d, 0xf7, 0x80, 0x7a, 0x52, 0x01, 0x15, 0xcf, 0xcb, 0x1c, 0x8a,
- 0x12, 0xcb, 0x92, 0x0b, 0xcb, 0xe7, 0x0e, 0xb5, 0x59, 0x60, 0x1c, 0x89, 0x4f, 0xfd, 0x97, 0x15,
- 0x06, 0x35, 0x2a, 0x5e, 0xbb, 0x89, 0x5f, 0x3c, 0xde, 0x65, 0x13, 0xb5, 0x5b, 0x84, 0x42, 0x9d,
- 0x8e, 0xdc, 0x85, 0x02, 0xf3, 0x02, 0x27, 0x8c, 0x91, 0xe7, 0x8e, 0xc0, 0x13, 0xcc, 0x6c, 0xf7,
- 0xe5, 0x50, 0x54, 0x4c, 0x18, 0xc3, 0xb6, 0xe1, 0xfb, 0x0f, 0x5c, 0xaf, 0x26, 0x2b, 0x8f, 0x5e,
- 0x18, 0xee, 0xc8, 0xa1, 0xa8, 0x98, 0xa4, 0xd7, 0x34, 0xf9, 0xa7, 0x52, 0xd3, 0x8c, 0x9d, 0xb7,
- 0xa6, 0x29, 0x0c, 0xb8, 0xa6, 0xf9, 0x44, 0x0f, 0x4e, 0x45, 0x1e, 0x9c, 0xde, 0xef, 0x37, 0x10,
- 0x74, 0x99, 0xe7, 0x45, 0xa5, 0xa5, 0x4f, 0x47, 0x60, 0x26, 0x19, 0x86, 0xc8, 0x87, 0x30, 0x66,
- 0x8a, 0x58, 0xc1, 0x99, 0x8c, 0xdf, 0xaa, 0xf4, 0x1d, 0x7c, 0xbb, 0x23, 0x8f, 0x9c, 0x82, 0x0b,
- 0x0c, 0x86, 0x02, 0xc9, 0x47, 0x19, 0x28, 0x9a, 0x61, 0xb8, 0x90, 0xb3, 0x9e, 0xbe, 0xc5, 0xa7,
- 0x84, 0x1f, 0x51, 0x7e, 0x28, 0x0c, 0x46, 0x42, 0xe7, 0x7f, 0x39, 0x02, 0xe3, 0x7a, 0xa4, 0xf8,
- 0x9e, 0xf6, 0xbd, 0xc5, 0xfb, 0xf8, 0x35, 0xcd, 0x8b, 0xd4, 0x52, 0x4f, 0xa4, 0x04, 0xa3, 0x66,
- 0x7e, 0x75, 0xb7, 0xfa, 0x01, 0x35, 0x03, 0xf6, 0x71, 0xa2, 0x88, 0x11, 0xc1, 0xb4, 0xf4, 0xd2,
- 0x86, 0x9c, 0xdf, 0xa6, 0xa6, 0x7c, 0xdc, 0xed, 0x41, 0xa4, 0x15, 0xa1, 0x7b, 0xa5, 0x4d, 0xcd,
- 0x28, 0xb4, 0xb2, 0x5f, 0xc8, 0x25, 0x91, 0x87, 0x90, 0xf7, 0x03, 0x23, 0xe8, 0xf8, 0x72, 0xaa,
- 0xb7, 0x33, 0x40, 0x99, 0x9c, 0x6f, 0x14, 0x4f, 0xc5, 0x6f, 0x94, 0xf2, 0xe6, 0xbf, 0xc8, 0xc0,
- 0xb4, 0x46, 0xbd, 0x69, 0xf9, 0x01, 0x79, 0xa7, 0xeb, 0x0d, 0x2f, 0x9c, 0xef, 0x0d, 0xb3, 0xd1,
- 0xfc, 0xfd, 0x2a, 0x07, 0x09, 0x21, 0xda, 0xdb, 0x75, 0x61, 0xd4, 0x0a, 0x68, 0xcb, 0x2f, 0x8d,
- 0x70, 0x67, 0x7d, 0x63, 0x70, 0x8f, 0x5a, 0x9e, 0x94, 0x62, 0x47, 0xd7, 0x99, 0x00, 0x14, 0x72,
- 0xe6, 0xff, 0xf5, 0x5b, 0xb1, 0x47, 0x64, 0xaf, 0x9d, 0xaf, 0x3d, 0x31, 0x50, 0xb9, 0xe3, 0x6f,
- 0x47, 0x59, 0x2f, 0x5a, 0x7b, 0xd2, 0x70, 0x18, 0xa3, 0x24, 0x87, 0x50, 0x08, 0x68, 0xab, 0x6d,
- 0x1b, 0x41, 0x58, 0x05, 0xac, 0xf5, 0xf9, 0x04, 0x7b, 0x92, 0x9d, 0x08, 0xf3, 0xe1, 0x2f, 0x54,
- 0x62, 0x48, 0x0b, 0xc6, 0x7c, 0xea, 0x1d, 0x59, 0x26, 0x95, 0xe6, 0x71, 0xbb, 0x4f, 0x89, 0x15,
- 0xc1, 0x4d, 0xf8, 0xbc, 0xfc, 0x81, 0xa1, 0x0c, 0xf2, 0x75, 0x18, 0xf3, 0x68, 0xdb, 0xb6, 0x4c,
- 0x83, 0xa7, 0xbd, 0x51, 0x41, 0x86, 0x02, 0x84, 0x21, 0x8e, 0x7c, 0x1f, 0x46, 0x5b, 0x96, 0x63,
- 0xb9, 0xb2, 0x24, 0x78, 0x6b, 0xb0, 0x6e, 0xb2, 0xb0, 0xc5, 0x78, 0x8b, 0x70, 0xab, 0x3e, 0x2b,
- 0x87, 0xa1, 0x10, 0xcb, 0x17, 0xb3, 0x4c, 0x39, 0x8d, 0x94, 0xb3, 0xd2, 0x77, 0x06, 0xac, 0x83,
- 0x9a, 0xa5, 0xc6, 0xa3, 0x7e, 0x08, 0x46, 0x25, 0x9f, 0x7c, 0x08, 0xb9, 0xba, 0x65, 0xb3, 0x99,
- 0x68, 0x76, 0x00, 0x0b, 0x58, 0x49, 0x3d, 0x6e, 0x5b, 0x36, 0x15, 0x3a, 0x44, 0x25, 0xaa, 0x65,
- 0x53, 0xe4, 0x32, 0xf9, 0x8b, 0xf0, 0xa8, 0xe0, 0x31, 0xa0, 0x55, 0xbd, 0xa4, 0x02, 0x28, 0xd9,
- 0x27, 0x5e, 0x44, 0x08, 0x46, 0x25, 0x9f, 0xfc, 0x7e, 0x06, 0xc6, 0x1e, 0xd0, 0x6a, 0xd3, 0x75,
- 0x0f, 0x64, 0x36, 0x7e, 0x7b, 0xc0, 0xba, 0xdc, 0x17, 0xdc, 0x85, 0x2a, 0x6a, 0x7a, 0x2c, 0xa1,
- 0x18, 0x0a, 0x67, 0x5f, 0xc4, 0x68, 0x1d, 0xb6, 0x4b, 0x30, 0x94, 0x2f, 0xb2, 0xd4, 0x3a, 0x6c,
- 0x27, 0xbe, 0xc8, 0xd2, 0xd6, 0xee, 0x0e, 0x72, 0x99, 0xcc, 0x35, 0x0e, 0x8c, 0xfa, 0x81, 0x51,
- 0x1a, 0x1f, 0x8a, 0x6b, 0x6c, 0x30, 0xde, 0x09, 0xd7, 0xe0, 0x30, 0x14, 0x62, 0xd9, 0xb3, 0xb7,
- 0x0e, 0x83, 0xa0, 0x34, 0x31, 0x94, 0x67, 0xdf, 0x3a, 0x0c, 0x82, 0xc4, 0xb3, 0x6f, 0xed, 0xee,
- 0xed, 0x21, 0x97, 0xc9, 0x64, 0x3b, 0x46, 0xe0, 0x97, 0x26, 0x87, 0x22, 0x7b, 0xdb, 0x08, 0xfc,
- 0x84, 0xec, 0xed, 0xa5, 0xbd, 0x0a, 0x72, 0x99, 0xe4, 0x08, 0xb2, 0xbe, 0xe3, 0x97, 0xa6, 0xb8,
- 0xe8, 0xfb, 0x03, 0x16, 0x5d, 0x71, 0xa4, 0x64, 0xb5, 0x07, 0x52, 0xd9, 0xae, 0x20, 0x13, 0xc8,
- 0xe5, 0x1e, 0xfa, 0xa5, 0xe9, 0xe1, 0xc8, 0x3d, 0xec, 0x92, 0xbb, 0xcb, 0xe4, 0x1e, 0xfa, 0xac,
- 0x0e, 0xce, 0xb7, 0x3b, 0xd5, 0x4a, 0xa7, 0x5a, 0x9a, 0xe1, 0xb2, 0xbf, 0x3b, 0x60, 0xd9, 0x3b,
- 0x9c, 0xb9, 0x10, 0xaf, 0x66, 0x10, 0x02, 0x88, 0x52, 0x32, 0x57, 0x42, 0x48, 0x2d, 0xcd, 0x0e,
- 0x45, 0x89, 0x35, 0xce, 0x2d, 0xa1, 0x84, 0x00, 0xa2, 0x94, 0x1c, 0x2a, 0x61, 0x1b, 0xd5, 0x12,
- 0x19, 0x96, 0x12, 0xb6, 0x91, 0xa2, 0x84, 0x6d, 0x08, 0x25, 0x6c, 0xa3, 0xca, 0x4c, 0xbf, 0x59,
- 0xab, 0xfb, 0xa5, 0x4b, 0x43, 0x31, 0xfd, 0x3b, 0xb5, 0x7a, 0xd2, 0xf4, 0xef, 0xac, 0xdc, 0xae,
- 0x20, 0x97, 0xc9, 0x42, 0x8e, 0x6f, 0x1b, 0xe6, 0x41, 0xe9, 0xf2, 0x50, 0x42, 0x4e, 0x85, 0xf1,
- 0x4e, 0x84, 0x1c, 0x0e, 0x43, 0x21, 0x96, 0xfc, 0x79, 0x06, 0xc6, 0xfd, 0xc0, 0xf5, 0x8c, 0x06,
- 0x5d, 0xf3, 0xac, 0x5a, 0xe9, 0xd9, 0xc1, 0x54, 0x62, 0x49, 0x35, 0x22, 0x09, 0x42, 0x19, 0x55,
- 0xc5, 0x6b, 0x18, 0xd4, 0x15, 0x21, 0x7f, 0x93, 0x81, 0x29, 0x23, 0xb6, 0xdc, 0x58, 0x7a, 0x8e,
- 0xeb, 0x56, 0x1d, 0x74, 0x4a, 0x88, 0xaf, 0x69, 0x72, 0xf5, 0x9e, 0x93, 0xea, 0x4d, 0xc5, 0x91,
- 0x98, 0xd0, 0x88, 0x9b, 0xaf, 0x1f, 0x78, 0x56, 0x9b, 0x96, 0x9e, 0x1f, 0x8a, 0xf9, 0x56, 0x38,
- 0xf3, 0x84, 0xf9, 0x0a, 0x20, 0x4a, 0xc9, 0x3c, 0x75, 0x53, 0x51, 0xfa, 0x96, 0x4a, 0x43, 0x49,
- 0xdd, 0x61, 0x61, 0x1d, 0x4f, 0xdd, 0x12, 0x8a, 0xa1, 0x70, 0x66, 0xcb, 0x1e, 0xad, 0x59, 0x7e,
- 0xe9, 0x85, 0xa1, 0xd8, 0x32, 0x32, 0xde, 0x09, 0x5b, 0xe6, 0x30, 0x14, 0x62, 0x59, 0x38, 0x77,
- 0xfc, 0xc3, 0xd2, 0xdc, 0x50, 0xc2, 0xf9, 0xb6, 0x7f, 0x98, 0x08, 0xe7, 0xdb, 0x95, 0x5d, 0x64,
- 0x02, 0x65, 0x38, 0xb7, 0x7d, 0xc3, 0x2b, 0x7d, 0x65, 0x48, 0xe1, 0x9c, 0x31, 0xef, 0x0a, 0xe7,
- 0x0c, 0x88, 0x52, 0x32, 0xb7, 0x02, 0xde, 0x12, 0x61, 0x99, 0xa5, 0xaf, 0x0e, 0xc5, 0x0a, 0xd6,
- 0x04, 0xf7, 0x84, 0x15, 0x48, 0x28, 0x86, 0xc2, 0xe7, 0x3a, 0x00, 0x51, 0x0d, 0x90, 0xb2, 0x8a,
- 0xb2, 0xab, 0xaf, 0xa2, 0x8c, 0xdf, 0x7a, 0xad, 0xe7, 0x15, 0xa5, 0xca, 0xaf, 0x2f, 0x79, 0x81,
- 0x55, 0x37, 0xcc, 0x40, 0x5b, 0x82, 0x99, 0xfb, 0xe3, 0x0c, 0x4c, 0xc6, 0xe6, 0xfd, 0x29, 0xa2,
- 0x9b, 0x71, 0xd1, 0x38, 0xf8, 0xc5, 0x70, 0x5d, 0xa3, 0x3f, 0xc8, 0x40, 0x51, 0x55, 0x00, 0x29,
- 0xda, 0xd4, 0xe2, 0xda, 0xf4, 0xbb, 0x5e, 0xc1, 0x45, 0xa5, 0x6b, 0xc2, 0xde, 0x4d, 0xac, 0x14,
- 0x18, 0xfe, 0xbb, 0x51, 0xe2, 0xd2, 0x35, 0xfa, 0x61, 0x06, 0x26, 0xf4, 0x82, 0x20, 0x45, 0x21,
- 0x33, 0xae, 0xd0, 0x56, 0x9f, 0x0a, 0x49, 0x69, 0xcb, 0xae, 0x13, 0xd0, 0x87, 0x41, 0xf2, 0x3b,
- 0xa9, 0xba, 0x60, 0xf8, 0xdf, 0x29, 0xd1, 0x79, 0x91, 0x78, 0x2b, 0x10, 0x15, 0x09, 0x29, 0xaa,
- 0xd0, 0xb8, 0x2a, 0xfd, 0xee, 0x9c, 0x08, 0x59, 0xa7, 0x5b, 0xaf, 0xaa, 0x18, 0x86, 0xff, 0x56,
- 0x58, 0x25, 0x72, 0x8a, 0x26, 0x7f, 0x98, 0x81, 0xa2, 0xaa, 0x1f, 0x86, 0xff, 0x52, 0x58, 0x5d,
- 0x22, 0x32, 0x7c, 0xb7, 0x2a, 0xbf, 0x97, 0x81, 0x42, 0x58, 0x4f, 0x0c, 0xdf, 0x64, 0x2b, 0xdb,
- 0x95, 0x53, 0x5e, 0x09, 0xd7, 0xe3, 0xf0, 0xc2, 0xf4, 0xd8, 0x3d, 0x4d, 0x8f, 0x8f, 0x33, 0x30,
- 0xae, 0xd5, 0x1a, 0x29, 0xaa, 0xd4, 0xe3, 0xaa, 0xf4, 0xbb, 0x40, 0x2a, 0x85, 0x9d, 0xae, 0x8d,
- 0x56, 0x74, 0x0c, 0x5f, 0x1b, 0x29, 0xec, 0x4c, 0x6d, 0xc2, 0xea, 0xe3, 0x42, 0xb4, 0x61, 0xc2,
- 0x4e, 0x77, 0x67, 0x55, 0x89, 0x0c, 0xdf, 0x9d, 0x59, 0x85, 0x73, 0x46, 0x90, 0x8b, 0xca, 0x92,
- 0xe1, 0xfb, 0xb3, 0x90, 0x95, 0xae, 0xcb, 0x9f, 0x65, 0x60, 0x26, 0x59, 0x9b, 0xa4, 0x68, 0x74,
- 0x10, 0xd7, 0xa8, 0xdf, 0x86, 0x32, 0x5d, 0x62, 0xba, 0x5e, 0x7f, 0x9d, 0x81, 0x4b, 0x29, 0x75,
- 0x49, 0x8a, 0x6a, 0x4e, 0x5c, 0xb5, 0x37, 0x87, 0xd5, 0xe0, 0x91, 0xb4, 0x6c, 0xad, 0x30, 0x19,
- 0xbe, 0x65, 0x4b, 0x61, 0xe9, 0xda, 0x7c, 0x92, 0x81, 0x09, 0xbd, 0x40, 0x49, 0x51, 0xa7, 0x11,
- 0x57, 0x67, 0x77, 0xe0, 0xfb, 0x8c, 0x49, 0xfb, 0x8e, 0x4a, 0x95, 0xe1, 0xdb, 0xb7, 0x90, 0x75,
- 0x7a, 0x9e, 0x08, 0x0b, 0x97, 0xe1, 0xe7, 0x89, 0xed, 0xca, 0xee, 0x99, 0x79, 0x42, 0x15, 0x31,
- 0x17, 0x91, 0x27, 0xb8, 0xb0, 0xd3, 0x2d, 0x46, 0x2f, 0x66, 0x86, 0x6f, 0x31, 0xa1, 0xb4, 0x54,
- 0x7d, 0xe6, 0x03, 0x98, 0xed, 0xda, 0xf8, 0x23, 0xef, 0xab, 0xad, 0x45, 0xb1, 0x95, 0xf7, 0x5b,
- 0xbd, 0xd7, 0x49, 0x67, 0xef, 0x20, 0xfe, 0x3c, 0x0b, 0xd3, 0x89, 0x9a, 0x81, 0xb7, 0xf3, 0xb1,
- 0x9f, 0xbc, 0xaf, 0x5b, 0xec, 0xad, 0x45, 0xed, 0x7c, 0x21, 0x02, 0x23, 0x1a, 0xf2, 0x69, 0x06,
- 0xa6, 0x1f, 0x18, 0x81, 0xd9, 0xdc, 0x31, 0x82, 0xa6, 0xd8, 0x06, 0x1e, 0x50, 0x06, 0xb9, 0x1f,
- 0xe7, 0x5a, 0x7e, 0x5e, 0xea, 0x31, 0x9d, 0x40, 0x60, 0x52, 0x3e, 0xb9, 0x09, 0x63, 0x6d, 0xd7,
- 0xb6, 0x2d, 0xa7, 0x21, 0x9b, 0x18, 0x55, 0xad, 0xba, 0x23, 0xc0, 0x18, 0xe2, 0xe3, 0x8d, 0xd5,
- 0xb9, 0x81, 0x6c, 0xc1, 0x24, 0x5e, 0xe9, 0x45, 0x75, 0x20, 0xfc, 0x32, 0x0b, 0xa4, 0xdb, 0xca,
- 0x1e, 0x77, 0x08, 0xe0, 0x3a, 0xe4, 0xcd, 0xe8, 0xa3, 0x69, 0xdd, 0x3b, 0xf2, 0xdd, 0x4a, 0xac,
- 0x68, 0x98, 0xf3, 0xa9, 0xd9, 0xf1, 0x68, 0x77, 0x5f, 0xac, 0x80, 0xa3, 0xa2, 0x88, 0xf5, 0x97,
- 0xe4, 0x1e, 0xdb, 0x5f, 0xf2, 0x49, 0x77, 0x9b, 0xe2, 0xfb, 0x03, 0x77, 0xb7, 0x1e, 0x9a, 0xd4,
- 0xf6, 0x79, 0x1b, 0x6c, 0x53, 0x74, 0xf3, 0xc8, 0xae, 0x9c, 0x73, 0xf6, 0xfb, 0x4c, 0xc9, 0x4e,
- 0x59, 0x39, 0x18, 0x35, 0x46, 0xfd, 0x7d, 0xdd, 0xff, 0x1c, 0x83, 0xd9, 0xae, 0xc9, 0x26, 0x99,
- 0x83, 0x11, 0x4b, 0xf4, 0x9b, 0x65, 0xcb, 0x20, 0x9f, 0x68, 0x64, 0x7d, 0x05, 0x47, 0xac, 0x1a,
- 0x09, 0xa2, 0xed, 0xbc, 0x61, 0xd4, 0xcf, 0x62, 0x6f, 0xb9, 0x6b, 0xf3, 0xee, 0x45, 0x18, 0x75,
- 0x1f, 0x38, 0xd4, 0x93, 0xbd, 0x5a, 0x6a, 0x99, 0xee, 0x2e, 0x03, 0xa2, 0xc0, 0xf1, 0x53, 0x20,
- 0xb4, 0xed, 0xfa, 0x56, 0xe0, 0x7a, 0xdd, 0xa7, 0x40, 0x14, 0x06, 0x35, 0x2a, 0x32, 0x0f, 0x79,
- 0xa1, 0x15, 0xb7, 0x90, 0x62, 0x19, 0x98, 0x91, 0x8a, 0x79, 0x0a, 0x4a, 0x0c, 0xb9, 0x0b, 0x05,
- 0xa3, 0x6d, 0xed, 0xb9, 0x07, 0xd4, 0xe9, 0xed, 0xb3, 0xf1, 0xfd, 0xfb, 0xa5, 0x9d, 0x75, 0x3e,
- 0x14, 0x15, 0x13, 0xf2, 0x1e, 0x4c, 0xca, 0x07, 0x93, 0xc6, 0x30, 0xd6, 0x0b, 0xd7, 0xd9, 0x93,
- 0x47, 0x57, 0x27, 0xef, 0xeb, 0xe3, 0x31, 0xce, 0x2e, 0xe6, 0x55, 0x85, 0xc7, 0x7a, 0xd5, 0x75,
- 0xc8, 0x1b, 0x66, 0x60, 0x1d, 0x89, 0xd3, 0x16, 0x5a, 0xe7, 0xf4, 0x12, 0x87, 0xa2, 0xc4, 0xca,
- 0x13, 0x4f, 0x41, 0x18, 0xc5, 0xa1, 0xeb, 0xc4, 0x53, 0x88, 0x42, 0x9d, 0x8e, 0xbc, 0x06, 0x93,
- 0xc2, 0x40, 0xca, 0x86, 0x4f, 0xf7, 0x71, 0x93, 0x1f, 0x59, 0x28, 0x96, 0x9f, 0x95, 0x03, 0x27,
- 0xd7, 0x74, 0x24, 0xc6, 0x69, 0xc9, 0x12, 0x4c, 0x0b, 0xc0, 0x7e, 0xdb, 0x76, 0x8d, 0x1a, 0x1b,
- 0x3e, 0xc1, 0x87, 0xab, 0xa8, 0xbd, 0x16, 0x47, 0x63, 0x92, 0x9e, 0xbc, 0x01, 0xa4, 0xc6, 0x7b,
- 0xca, 0xef, 0xb8, 0xee, 0xc1, 0x5d, 0xe7, 0xb6, 0xe5, 0x58, 0x7e, 0xb3, 0x34, 0xc9, 0x1f, 0x75,
- 0x4e, 0x72, 0x21, 0x2b, 0x5d, 0x14, 0x98, 0x32, 0x8a, 0xfc, 0x91, 0x1e, 0x52, 0xc4, 0xae, 0xe2,
- 0x7b, 0x83, 0x2e, 0xf5, 0x2e, 0x2a, 0xb0, 0x9f, 0x8c, 0x72, 0xd7, 0x8f, 0x57, 0x76, 0xba, 0x7b,
- 0x67, 0x2e, 0xce, 0xbd, 0x17, 0xa1, 0xc8, 0xd8, 0x52, 0x33, 0x58, 0x5f, 0x91, 0x19, 0x43, 0x4d,
- 0x0f, 0x76, 0x42, 0x04, 0x46, 0x34, 0x9a, 0xdb, 0x66, 0x4f, 0x75, 0xdb, 0x37, 0x61, 0xdc, 0xe0,
- 0xed, 0xed, 0xc2, 0x73, 0x7b, 0xea, 0xd8, 0xe4, 0x9d, 0xbe, 0x4b, 0xd1, 0x68, 0xd4, 0x59, 0x91,
- 0x0a, 0x3c, 0x2b, 0x9a, 0x6e, 0x2b, 0x95, 0xcd, 0x7b, 0xd4, 0xb3, 0xea, 0x96, 0x29, 0x7a, 0x6e,
- 0xc5, 0xd1, 0x83, 0xaf, 0x49, 0xd5, 0x9f, 0x5d, 0x4d, 0x23, 0xc2, 0xf4, 0xb1, 0xd2, 0x4f, 0x6c,
- 0x43, 0xf9, 0x49, 0xbe, 0xcb, 0x4f, 0x22, 0x24, 0xc6, 0x69, 0x4f, 0x31, 0xf2, 0x42, 0xff, 0x46,
- 0x5e, 0x1c, 0x94, 0x91, 0xc7, 0xed, 0xec, 0xa2, 0x8c, 0xfc, 0x67, 0x05, 0x98, 0x4e, 0x2c, 0x19,
- 0xa4, 0x4e, 0x2d, 0x33, 0x4f, 0x79, 0x6a, 0x79, 0x0d, 0x72, 0x01, 0x0b, 0xaa, 0x23, 0xf1, 0x66,
- 0x6b, 0x1e, 0x4d, 0x39, 0x86, 0x99, 0x87, 0xd9, 0xa4, 0xe6, 0x41, 0x78, 0x8e, 0x40, 0x66, 0x42,
- 0x65, 0x1e, 0xcb, 0x3a, 0x12, 0xe3, 0xb4, 0xe4, 0x1b, 0x50, 0x34, 0x6a, 0x35, 0x8f, 0xfa, 0x3e,
- 0xf5, 0xf9, 0x74, 0xb4, 0x28, 0xfa, 0x2b, 0x97, 0x42, 0x20, 0x46, 0x78, 0x96, 0x3d, 0x9a, 0xb5,
- 0xba, 0xbf, 0xef, 0x53, 0x8f, 0x1b, 0xb4, 0x76, 0xb4, 0x80, 0xbd, 0x4a, 0x06, 0x47, 0x45, 0x41,
- 0x6a, 0x30, 0x7d, 0xe0, 0x55, 0x97, 0x97, 0x0d, 0xb3, 0x49, 0x9f, 0x64, 0x6a, 0xc3, 0x4f, 0xa7,
- 0x6c, 0xc4, 0x39, 0x60, 0x92, 0xa5, 0x94, 0xb2, 0x41, 0x8f, 0x03, 0xa3, 0xfa, 0x24, 0x39, 0x33,
- 0x94, 0xa2, 0x73, 0xc0, 0x24, 0x4b, 0x96, 0xe1, 0x0e, 0xbc, 0x6a, 0xd8, 0xa8, 0xcd, 0xdd, 0x47,
- 0xcb, 0x70, 0x1b, 0x11, 0x0a, 0x75, 0x3a, 0xf6, 0xc2, 0x0e, 0xbc, 0x2a, 0x52, 0xc3, 0x6e, 0xf1,
- 0x14, 0xaa, 0xbd, 0xb0, 0x0d, 0x09, 0x47, 0x45, 0x41, 0xda, 0x40, 0xd8, 0xd3, 0xf1, 0xef, 0xae,
- 0xfa, 0x5b, 0xe5, 0x89, 0xc2, 0x1b, 0x69, 0x4f, 0xa3, 0x88, 0xf4, 0x07, 0x7a, 0x8e, 0x39, 0xf4,
- 0x46, 0x17, 0x1f, 0x4c, 0xe1, 0x4d, 0xde, 0x82, 0xe7, 0x0f, 0xbc, 0xaa, 0x6c, 0xeb, 0xdb, 0xf1,
- 0x2c, 0xc7, 0xb4, 0xda, 0x86, 0x68, 0x7d, 0x17, 0xb9, 0xf8, 0xaa, 0x54, 0xf7, 0xf9, 0x8d, 0x74,
- 0x32, 0x3c, 0x6d, 0x7c, 0xbc, 0xce, 0x99, 0x18, 0x48, 0x9d, 0x93, 0x70, 0xd7, 0x8b, 0x8a, 0x14,
- 0xff, 0x90, 0x01, 0xc2, 0xb7, 0x2d, 0xc2, 0xa3, 0xdb, 0x6b, 0x9e, 0xdb, 0x69, 0xb3, 0xcc, 0xd4,
- 0x60, 0x7f, 0x68, 0x4d, 0xa1, 0x2a, 0x33, 0xad, 0x85, 0x08, 0x8c, 0x68, 0xd8, 0x6c, 0xca, 0xb5,
- 0x6b, 0x54, 0x1d, 0x85, 0x50, 0xb3, 0xa9, 0xbb, 0x1c, 0x8a, 0x12, 0x4b, 0xd6, 0x60, 0xd6, 0xa3,
- 0x55, 0xc3, 0x36, 0x1c, 0x56, 0x99, 0x7b, 0x46, 0x40, 0x1b, 0xc7, 0xd2, 0xa7, 0x5f, 0x90, 0x43,
- 0x66, 0x31, 0x49, 0x80, 0xdd, 0x63, 0xe6, 0xbf, 0xc8, 0xc3, 0x4c, 0x72, 0xbf, 0xe5, 0x71, 0xe5,
- 0x19, 0xcb, 0xb7, 0x86, 0x17, 0x58, 0xda, 0x41, 0x91, 0x28, 0xdf, 0x86, 0x08, 0x8c, 0x68, 0xd8,
- 0xfc, 0x3b, 0x70, 0xdb, 0x96, 0x99, 0x9c, 0x7f, 0xef, 0x31, 0x20, 0x0a, 0x5c, 0xfa, 0xe9, 0x83,
- 0xdc, 0x85, 0x9d, 0x3e, 0x90, 0xe7, 0x09, 0x46, 0x07, 0x7c, 0x9e, 0xa0, 0xb7, 0x83, 0xda, 0x1f,
- 0xeb, 0x0e, 0x21, 0x9a, 0x3f, 0xdf, 0x1d, 0xf0, 0x66, 0x5a, 0x0f, 0x25, 0xe7, 0x8f, 0x32, 0x30,
- 0x69, 0xea, 0xf6, 0x2c, 0x4f, 0x5b, 0xec, 0x0e, 0x42, 0xa5, 0x98, 0xa3, 0x88, 0xaa, 0x24, 0x06,
- 0xc2, 0xb8, 0x68, 0xb2, 0x03, 0x97, 0x6d, 0xab, 0x65, 0x05, 0x62, 0x9a, 0xb6, 0x43, 0xbd, 0x0a,
- 0x35, 0x5d, 0xa7, 0xc6, 0x43, 0x66, 0xb6, 0xfc, 0x55, 0xf9, 0x18, 0x97, 0x37, 0x53, 0x68, 0x30,
- 0x75, 0x24, 0xb9, 0x09, 0x63, 0x47, 0xd4, 0xf3, 0x99, 0x11, 0x43, 0xfc, 0xcc, 0xe2, 0x3d, 0x01,
- 0xc6, 0x10, 0xdf, 0x5f, 0x6c, 0xf8, 0xa7, 0x1c, 0x4c, 0x27, 0xf6, 0x11, 0x1f, 0xe7, 0x61, 0xca,
- 0x61, 0x46, 0xce, 0x70, 0x98, 0x97, 0xa0, 0x60, 0xda, 0x16, 0x75, 0x82, 0xf5, 0x9a, 0x74, 0xac,
- 0xa8, 0xa5, 0x58, 0xc0, 0x57, 0x50, 0x51, 0x3c, 0x6d, 0xf7, 0xd2, 0xfd, 0x60, 0xf4, 0xbc, 0x87,
- 0x7b, 0xf2, 0xc3, 0xbc, 0xb0, 0x60, 0x6c, 0x20, 0xf9, 0x26, 0xf1, 0x61, 0x2f, 0x2a, 0xdf, 0xfc,
- 0x7c, 0x04, 0x0a, 0xdb, 0x4b, 0x7b, 0x95, 0xa5, 0x4e, 0xd0, 0x24, 0x6f, 0xc3, 0x68, 0xd5, 0xf0,
- 0x2d, 0x53, 0xce, 0x43, 0x5f, 0x7d, 0x82, 0xcf, 0xe9, 0x5b, 0x26, 0x63, 0x55, 0x2e, 0x32, 0x2b,
- 0xe3, 0x3f, 0x51, 0xf0, 0x24, 0xb7, 0x99, 0x29, 0xb2, 0x0a, 0xa8, 0xa7, 0x33, 0xca, 0x45, 0x61,
- 0xad, 0xac, 0xf6, 0x11, 0xc3, 0xc9, 0x32, 0xe4, 0x9c, 0x83, 0x5e, 0x0f, 0x1f, 0x17, 0x78, 0x47,
- 0xee, 0x06, 0x3d, 0x46, 0x3e, 0x98, 0xec, 0x03, 0x98, 0x1e, 0xad, 0x51, 0x27, 0xb0, 0xe4, 0x35,
- 0x25, 0xbd, 0x2d, 0x82, 0x2d, 0xab, 0xc1, 0xa8, 0x31, 0x9a, 0xff, 0x93, 0x51, 0x98, 0x49, 0xee,
- 0xaf, 0x3f, 0xce, 0x45, 0x6f, 0xc2, 0x98, 0xdf, 0xe1, 0xc7, 0x7d, 0xa4, 0x93, 0xaa, 0xe8, 0x51,
- 0x11, 0x60, 0x0c, 0xf1, 0xe9, 0xae, 0x97, 0x7d, 0x2a, 0xae, 0x97, 0x3b, 0xaf, 0xeb, 0x0d, 0x3a,
- 0x0f, 0x7e, 0xdc, 0x7d, 0xe8, 0xf7, 0xdd, 0x01, 0x77, 0x44, 0xf4, 0x90, 0xd9, 0x28, 0xe4, 0x8c,
- 0x4e, 0xd0, 0x94, 0x55, 0xc0, 0xda, 0x00, 0x14, 0xe1, 0xde, 0xc3, 0xcd, 0x95, 0xfd, 0x85, 0x9c,
- 0x7d, 0x7f, 0x2e, 0xfe, 0x2f, 0x39, 0x98, 0x8a, 0x6f, 0x5d, 0xb1, 0x0a, 0xa3, 0xe9, 0xfa, 0x81,
- 0xac, 0xbb, 0x92, 0xb7, 0x06, 0xdd, 0x89, 0x50, 0xa8, 0xd3, 0x9d, 0x2f, 0x9b, 0xdc, 0x84, 0x31,
- 0x79, 0x5a, 0x55, 0x26, 0x13, 0x65, 0xcf, 0xf2, 0x44, 0x2b, 0x86, 0xf8, 0xff, 0x4b, 0x25, 0xb6,
- 0x4f, 0x7e, 0xd8, 0x9d, 0x4a, 0xde, 0x1e, 0xe8, 0x3e, 0xe5, 0x85, 0x5d, 0x5d, 0x30, 0x0a, 0xb3,
- 0x5d, 0xed, 0x2b, 0xf1, 0x25, 0xb5, 0xcc, 0x39, 0x96, 0xd4, 0x5e, 0x87, 0x29, 0x6e, 0x47, 0x3b,
- 0x89, 0x85, 0x38, 0xd5, 0xb2, 0xbc, 0x17, 0xc3, 0x62, 0x82, 0xfa, 0x7c, 0x25, 0xc2, 0xeb, 0x30,
- 0xe5, 0x77, 0xaa, 0xbe, 0xe9, 0x59, 0x6d, 0x66, 0x10, 0xeb, 0x2b, 0x72, 0x99, 0x5e, 0x09, 0xa9,
- 0xc4, 0xb0, 0x98, 0xa0, 0x26, 0x0d, 0x7e, 0xe4, 0x5c, 0x46, 0x7d, 0xb9, 0x10, 0xd0, 0xd3, 0xc9,
- 0xe9, 0xcb, 0xf2, 0x54, 0x7a, 0x8c, 0x05, 0x76, 0x31, 0x25, 0x55, 0x98, 0x13, 0x4b, 0x63, 0xba,
- 0x42, 0x6a, 0x61, 0x4d, 0xd4, 0x01, 0xf3, 0x52, 0xe9, 0xb9, 0x95, 0x53, 0x29, 0xf1, 0x0c, 0x2e,
- 0x3d, 0x1e, 0x97, 0xde, 0x80, 0xe9, 0x48, 0x4b, 0xff, 0xb6, 0x65, 0x87, 0x0b, 0x14, 0xff, 0x4f,
- 0x0e, 0x7a, 0x61, 0x85, 0xb6, 0x3d, 0x6a, 0x1a, 0x01, 0xad, 0x2d, 0xc7, 0x09, 0x31, 0x39, 0x72,
- 0x18, 0x6b, 0x7c, 0x5d, 0x26, 0x78, 0x51, 0xf6, 0xff, 0x6f, 0x79, 0x66, 0xff, 0x89, 0x6d, 0x79,
- 0x32, 0x0f, 0x79, 0x6e, 0x72, 0x2c, 0xc8, 0xaa, 0x15, 0x62, 0x6e, 0x8b, 0x3e, 0x4a, 0xcc, 0x39,
- 0x56, 0xdd, 0xe4, 0x14, 0x22, 0x7b, 0xca, 0x14, 0xa2, 0x0d, 0x97, 0x02, 0xdb, 0xdf, 0xf3, 0x3a,
- 0x7e, 0xb0, 0x4c, 0xbd, 0xc0, 0x97, 0x16, 0x99, 0xeb, 0xf9, 0x32, 0x98, 0xbd, 0xcd, 0x4a, 0x92,
- 0x0b, 0xa6, 0xb1, 0x66, 0x76, 0x19, 0xd8, 0xfe, 0x92, 0x6d, 0xbb, 0x0f, 0xc2, 0xad, 0x9c, 0x28,
- 0xe4, 0xca, 0x60, 0xaa, 0xec, 0x72, 0x6f, 0xb3, 0x72, 0x0a, 0x25, 0x9e, 0xc1, 0x85, 0x6c, 0xf1,
- 0xa7, 0xba, 0x67, 0xd8, 0x56, 0xcd, 0x08, 0x28, 0x4b, 0x4a, 0x7c, 0x39, 0x4c, 0x18, 0xfd, 0x57,
- 0x24, 0x73, 0xa6, 0x72, 0x92, 0x04, 0xd3, 0xc6, 0x0d, 0xeb, 0xee, 0xb2, 0xd4, 0x1c, 0x56, 0x78,
- 0x2a, 0x39, 0xac, 0xf8, 0x58, 0xe7, 0x8d, 0xf9, 0x1b, 0x0c, 0xc8, 0xdf, 0x12, 0x26, 0x7f, 0x51,
- 0xfe, 0xf6, 0xf7, 0x39, 0x98, 0x49, 0xf6, 0x06, 0x3d, 0xe9, 0xc4, 0x46, 0xbf, 0x01, 0x63, 0x64,
- 0x10, 0x37, 0x60, 0x2c, 0x42, 0x91, 0x19, 0x9d, 0xdf, 0x36, 0xcc, 0xf0, 0x62, 0x0f, 0x95, 0xf6,
- 0xb6, 0x43, 0x04, 0x46, 0x34, 0x64, 0x0e, 0x46, 0x6a, 0x55, 0x79, 0xae, 0x59, 0xed, 0x75, 0xaf,
- 0x94, 0x71, 0xa4, 0x56, 0x25, 0x37, 0xa0, 0x20, 0x67, 0x4c, 0xe1, 0xf6, 0x30, 0x17, 0x2b, 0xa7,
- 0x53, 0x3e, 0x2a, 0xec, 0xb0, 0xe6, 0x28, 0x43, 0x58, 0x4d, 0x4a, 0x7e, 0xb9, 0x0b, 0xeb, 0x23,
- 0xc9, 0xc1, 0xa5, 0x94, 0xde, 0xfd, 0xf8, 0x07, 0xcb, 0x9c, 0xe3, 0x83, 0x1d, 0x42, 0xbe, 0x6e,
- 0xd9, 0x01, 0xf5, 0x06, 0xd4, 0x7f, 0x10, 0x2a, 0x75, 0x9b, 0x33, 0x15, 0x79, 0x42, 0xfc, 0x8d,
- 0x52, 0x10, 0xf3, 0xde, 0xcb, 0x7c, 0x85, 0x37, 0x5c, 0x56, 0x0a, 0x0f, 0x57, 0x67, 0xe5, 0xf7,
- 0x3e, 0xd7, 0x65, 0x08, 0x6b, 0x29, 0x1c, 0xa2, 0x65, 0xaf, 0x34, 0x2c, 0xa6, 0x4a, 0x25, 0xcb,
- 0x00, 0xaa, 0x51, 0x2a, 0xdc, 0xce, 0x79, 0x91, 0x15, 0xc7, 0xaa, 0x93, 0xca, 0xff, 0x15, 0x5f,
- 0x3d, 0xd6, 0xde, 0x36, 0xcf, 0x69, 0xda, 0xb0, 0xf8, 0x1d, 0x4e, 0xa3, 0x03, 0xb9, 0xc3, 0x29,
- 0xe5, 0xf3, 0x5e, 0x94, 0x75, 0xfd, 0x5d, 0x16, 0xa6, 0xe2, 0x1f, 0x92, 0x5c, 0x87, 0x7c, 0xdb,
- 0xa3, 0x75, 0xeb, 0x61, 0xf2, 0x02, 0xa1, 0x1d, 0x0e, 0x45, 0x89, 0x25, 0x2e, 0xe4, 0x6d, 0xa3,
- 0xca, 0x5c, 0x5c, 0xdc, 0x3f, 0xb1, 0xd6, 0xf7, 0x5d, 0x0a, 0xe1, 0x7a, 0x45, 0x28, 0x70, 0x93,
- 0xb3, 0x47, 0x29, 0x86, 0x09, 0xac, 0x5b, 0xd4, 0xae, 0x89, 0xbd, 0xeb, 0x61, 0x08, 0xbc, 0xcd,
- 0xd9, 0xa3, 0x14, 0x43, 0xde, 0x86, 0xa2, 0xb8, 0x75, 0xa9, 0x56, 0x3e, 0x96, 0x73, 0x93, 0xff,
- 0x7f, 0x3e, 0x93, 0xdd, 0xb3, 0x5a, 0x34, 0x72, 0xc7, 0xe5, 0x90, 0x09, 0x46, 0xfc, 0xf8, 0xe5,
- 0x7e, 0xf5, 0x80, 0x7a, 0x95, 0xc0, 0xf0, 0xc2, 0xbb, 0xf7, 0xa2, 0xcb, 0xfd, 0x14, 0x06, 0x35,
- 0xaa, 0xf9, 0x7f, 0x1c, 0x85, 0xa9, 0xf8, 0x19, 0x84, 0xa7, 0xd4, 0x77, 0xf0, 0x12, 0x14, 0xf8,
- 0x54, 0x70, 0xc9, 0x73, 0x92, 0xf7, 0xb5, 0xed, 0x49, 0x38, 0x2a, 0x0a, 0x82, 0x50, 0x34, 0x9e,
- 0xec, 0x0a, 0x3e, 0xb1, 0xd9, 0xaa, 0x2e, 0xdf, 0x8b, 0xd8, 0x30, 0x9e, 0x7e, 0x48, 0xde, 0xdb,
- 0xbc, 0x91, 0xf3, 0x54, 0x60, 0x8c, 0xd8, 0x30, 0xcb, 0xf7, 0x68, 0x23, 0x9c, 0x0f, 0x6a, 0x96,
- 0x8f, 0x1c, 0x8a, 0x12, 0x4b, 0x6e, 0xc2, 0x98, 0xe7, 0xda, 0x74, 0x09, 0xb7, 0x65, 0xaf, 0x81,
- 0x5a, 0x30, 0x40, 0x01, 0xc6, 0x10, 0x3f, 0x8c, 0x62, 0x39, 0x6e, 0x00, 0x3d, 0x2c, 0xfd, 0xac,
- 0xc1, 0xec, 0x91, 0x9c, 0x63, 0x56, 0xac, 0x86, 0x63, 0x04, 0x51, 0x9b, 0x93, 0xda, 0x39, 0xbb,
- 0x97, 0x24, 0xc0, 0xee, 0x31, 0xfd, 0x45, 0x9c, 0xbf, 0x65, 0x36, 0x1c, 0x3b, 0xbf, 0x12, 0xb7,
- 0x8f, 0xcc, 0x10, 0xec, 0x63, 0x64, 0xd0, 0xf6, 0x91, 0x3d, 0xd3, 0x3e, 0x5e, 0x84, 0x51, 0x7e,
- 0xe9, 0xab, 0xac, 0xd1, 0x55, 0x45, 0xcf, 0xef, 0x0b, 0x45, 0x81, 0x23, 0x4b, 0x30, 0xfd, 0xc0,
- 0xb0, 0x02, 0x16, 0x29, 0xc4, 0xae, 0x8c, 0x58, 0x79, 0xcc, 0xea, 0xcd, 0x0f, 0x31, 0x34, 0x26,
- 0xe9, 0x7b, 0xb1, 0xc3, 0xde, 0x4a, 0xe6, 0xd7, 0x61, 0x8a, 0x2b, 0xb9, 0x64, 0x9a, 0x6e, 0x87,
- 0xef, 0xb2, 0x14, 0xe2, 0xab, 0x0d, 0xbb, 0x3a, 0x76, 0x05, 0x13, 0xd4, 0x71, 0xab, 0x1f, 0xcc,
- 0xe5, 0x25, 0x71, 0x93, 0xb9, 0xa8, 0xf4, 0xf8, 0x03, 0x28, 0x84, 0x76, 0xc1, 0x4a, 0x5a, 0x35,
- 0x2e, 0x2a, 0x69, 0x99, 0x89, 0x70, 0x26, 0x8b, 0x50, 0x74, 0xdb, 0x34, 0x76, 0x87, 0xa0, 0x4a,
- 0x00, 0x77, 0x43, 0x04, 0x46, 0x34, 0xcc, 0x4a, 0x84, 0xd4, 0xc4, 0xba, 0xcf, 0x3d, 0x06, 0x94,
- 0x4a, 0xcc, 0x7f, 0x94, 0x81, 0xf0, 0x5e, 0x21, 0xb2, 0x02, 0xa3, 0x6d, 0xd7, 0x0b, 0x44, 0x61,
- 0x3e, 0x7e, 0xeb, 0x6a, 0xba, 0x39, 0x8b, 0x66, 0x03, 0xd7, 0x0b, 0x22, 0x8e, 0xec, 0x97, 0x8f,
- 0x62, 0x30, 0xd3, 0xd3, 0xb4, 0x3b, 0x7e, 0x40, 0xbd, 0xf5, 0x9d, 0xa4, 0x9e, 0xcb, 0x21, 0x02,
- 0x23, 0x9a, 0xf9, 0xff, 0xce, 0xc2, 0x4c, 0xf2, 0xc8, 0x0e, 0x79, 0x0f, 0x26, 0x7d, 0xab, 0xe1,
- 0x58, 0x4e, 0x43, 0x96, 0xee, 0x99, 0x9e, 0x3b, 0x31, 0x2b, 0xfa, 0x78, 0x8c, 0xb3, 0x1b, 0xd8,
- 0xde, 0x8b, 0x96, 0x1e, 0xb3, 0x17, 0x97, 0x1e, 0x3f, 0xee, 0xee, 0x62, 0x7f, 0x77, 0xc0, 0x87,
- 0xa6, 0x2e, 0xca, 0x03, 0xfe, 0x63, 0x14, 0x9e, 0x4b, 0x3f, 0x1e, 0xf5, 0x94, 0xa6, 0x1e, 0x51,
- 0x07, 0xe3, 0xc8, 0xa9, 0x1d, 0x8c, 0x81, 0x2a, 0x75, 0xb2, 0x03, 0x3a, 0xee, 0xa4, 0x5e, 0xc0,
- 0x19, 0xd5, 0x8e, 0x3e, 0x29, 0xca, 0x3d, 0x76, 0x52, 0x74, 0x1d, 0xf2, 0xd5, 0x8e, 0x79, 0x20,
- 0xd7, 0x61, 0xf5, 0x7b, 0x3a, 0x39, 0x14, 0x25, 0x56, 0x4b, 0x3a, 0xf9, 0x33, 0x93, 0x0e, 0x4b,
- 0xa2, 0x9d, 0xa0, 0x29, 0x7a, 0x36, 0xc7, 0x7a, 0x4f, 0xa2, 0xe1, 0x58, 0x8c, 0xd8, 0xf0, 0x0e,
- 0xe7, 0xb6, 0xb5, 0x8f, 0x9b, 0x32, 0xfe, 0x47, 0x1d, 0xce, 0x3b, 0xeb, 0xfb, 0xb8, 0x89, 0x12,
- 0x4b, 0x3e, 0xed, 0x8e, 0xf7, 0xe6, 0x50, 0x8e, 0xe4, 0x5d, 0x94, 0xd5, 0x9b, 0x30, 0xdb, 0xf5,
- 0xcd, 0xcf, 0x5d, 0x18, 0x5d, 0x87, 0xbc, 0xdf, 0xa9, 0x33, 0xba, 0xc4, 0x19, 0x8e, 0x0a, 0x87,
- 0xa2, 0xc4, 0xce, 0xff, 0x24, 0xc7, 0xa4, 0x24, 0x0e, 0xd2, 0x3d, 0x25, 0xaf, 0x7a, 0x0d, 0x26,
- 0x45, 0x69, 0x72, 0x5f, 0x3b, 0xa3, 0x50, 0xd0, 0xba, 0x24, 0x75, 0x24, 0xc6, 0x69, 0xc9, 0x3a,
- 0x37, 0x93, 0x9e, 0x27, 0xf7, 0x20, 0x2d, 0x89, 0xa5, 0x50, 0xc9, 0x80, 0xbc, 0x0c, 0xe3, 0xfc,
- 0x21, 0xc4, 0x2b, 0x97, 0x35, 0x3a, 0x6f, 0x2a, 0x5e, 0x8d, 0xc0, 0xa8, 0xd3, 0xc4, 0x97, 0x08,
- 0x47, 0x07, 0xb2, 0x44, 0xd8, 0xf5, 0x55, 0x2e, 0xca, 0xee, 0x7e, 0x5c, 0x00, 0x75, 0x6f, 0x21,
- 0x31, 0xbb, 0x6e, 0x8f, 0xfc, 0xed, 0x9e, 0x17, 0xc8, 0x42, 0x55, 0xc4, 0x02, 0x5c, 0x4a, 0x51,
- 0xf0, 0x06, 0x10, 0x79, 0x5d, 0xa1, 0x9c, 0xbe, 0x69, 0xff, 0xf7, 0x88, 0x6a, 0x80, 0xae, 0x74,
- 0x51, 0x60, 0xca, 0x28, 0xf2, 0x06, 0xbf, 0xe2, 0x34, 0x30, 0x2c, 0x47, 0x45, 0xde, 0xaf, 0x9d,
- 0xd2, 0x98, 0x29, 0x88, 0xd4, 0x65, 0xa5, 0xe2, 0x27, 0x46, 0xc3, 0xc9, 0x2a, 0x8c, 0x1d, 0xb9,
- 0x76, 0xa7, 0x25, 0x17, 0x6a, 0xc6, 0x6f, 0xcd, 0xa5, 0x71, 0xba, 0xc7, 0x49, 0xb4, 0xf6, 0x25,
- 0x31, 0x04, 0xc3, 0xb1, 0x84, 0xc2, 0x34, 0x5f, 0xa6, 0xb7, 0x82, 0x63, 0xe9, 0x00, 0x72, 0xdb,
- 0xeb, 0x7a, 0x1a, 0xbb, 0x1d, 0xb7, 0x56, 0x89, 0x53, 0xcb, 0x4b, 0xe0, 0xe3, 0x40, 0x4c, 0xf2,
- 0x24, 0xb7, 0xa1, 0x60, 0xd4, 0xeb, 0x96, 0x63, 0x05, 0xc7, 0x72, 0x2d, 0xf3, 0xab, 0x69, 0xfc,
- 0x97, 0x24, 0x8d, 0x3c, 0xe0, 0x22, 0x7f, 0xa1, 0x1a, 0x4b, 0xf6, 0x61, 0x3c, 0x70, 0x6d, 0x39,
- 0x43, 0xf4, 0x65, 0xc1, 0x78, 0x25, 0x8d, 0xd5, 0x9e, 0x22, 0x8b, 0x56, 0x8b, 0x23, 0x98, 0x8f,
- 0x3a, 0x1f, 0xf2, 0xa7, 0x19, 0x98, 0x70, 0xdc, 0x1a, 0x0d, 0x5d, 0x4f, 0x5e, 0x6e, 0xf8, 0xd6,
- 0x80, 0xee, 0xdb, 0x5c, 0xd8, 0xd6, 0x78, 0x0b, 0x0f, 0x51, 0x17, 0x80, 0xea, 0x28, 0x8c, 0x29,
- 0x41, 0x1c, 0x98, 0xb1, 0x5a, 0x46, 0x83, 0xee, 0x74, 0x6c, 0xb9, 0x7b, 0xe8, 0xcb, 0xe4, 0x91,
- 0xda, 0xce, 0xcb, 0xff, 0x03, 0x1e, 0x71, 0xcd, 0x2c, 0xd2, 0x3a, 0xf5, 0xf8, 0x6d, 0xb7, 0xea,
- 0xc2, 0xec, 0xf5, 0x04, 0x27, 0xec, 0xe2, 0xcd, 0xea, 0xdf, 0xb6, 0x67, 0xb9, 0xfc, 0xbb, 0xd9,
- 0x86, 0x2f, 0xee, 0x2b, 0x85, 0x78, 0xe7, 0xe8, 0x4e, 0x92, 0x00, 0xbb, 0xc7, 0x90, 0x1b, 0x50,
- 0x08, 0x81, 0xbc, 0x11, 0x78, 0x54, 0xae, 0xaa, 0x4b, 0x18, 0x2a, 0xec, 0xdc, 0x77, 0x60, 0xb6,
- 0xeb, 0xdd, 0xf4, 0x14, 0x10, 0xfe, 0x32, 0x03, 0xc9, 0x26, 0x78, 0x36, 0x83, 0xaf, 0x59, 0x1e,
- 0x67, 0x78, 0x9c, 0x5c, 0xf9, 0x5d, 0x09, 0x11, 0x18, 0xd1, 0x90, 0x6b, 0x90, 0x6b, 0x1b, 0x41,
- 0x33, 0xb9, 0x5d, 0xc7, 0x58, 0x22, 0xc7, 0x90, 0x5b, 0x00, 0xec, 0x5f, 0xa4, 0x0d, 0xfa, 0xb0,
- 0x2d, 0x0b, 0x12, 0xb5, 0x18, 0xb5, 0xa3, 0x30, 0xa8, 0x51, 0xcd, 0xff, 0x2c, 0x0f, 0x53, 0xf1,
- 0xdc, 0xc2, 0x66, 0x40, 0xd4, 0xa9, 0xb5, 0x5d, 0xcb, 0x09, 0x92, 0x97, 0xfe, 0xaf, 0x4a, 0x38,
- 0x2a, 0x0a, 0x96, 0x27, 0x5b, 0x34, 0x68, 0xba, 0xb5, 0x64, 0x9e, 0xdc, 0xe2, 0x50, 0x94, 0x58,
- 0xae, 0xbe, 0xeb, 0x05, 0x52, 0xad, 0x48, 0x7d, 0xd7, 0x0b, 0x90, 0x63, 0xc2, 0xdd, 0xc6, 0xdc,
- 0x29, 0xbb, 0x8d, 0x0d, 0x98, 0x61, 0xd1, 0x8a, 0x7a, 0xcb, 0xd4, 0x0b, 0x9e, 0x78, 0xf3, 0xbb,
- 0x92, 0x60, 0x81, 0x5d, 0x4c, 0xf9, 0xff, 0x38, 0xc1, 0x61, 0x7c, 0xf0, 0x13, 0xf6, 0xf4, 0x57,
- 0xe2, 0x1c, 0x30, 0xc9, 0x72, 0x18, 0x6b, 0x4a, 0xf1, 0xef, 0xf8, 0xc4, 0x67, 0x33, 0x0b, 0x03,
- 0x3a, 0x9b, 0x49, 0xee, 0xc0, 0x54, 0xf4, 0x72, 0x99, 0xfd, 0xc9, 0xf3, 0x01, 0xd7, 0xa4, 0x2a,
- 0xa5, 0x68, 0xcb, 0xbe, 0x12, 0xa3, 0xc3, 0xc4, 0x38, 0xb2, 0x0a, 0x93, 0xea, 0xfd, 0x71, 0x46,
- 0x10, 0xef, 0xdc, 0x4f, 0x32, 0x92, 0x64, 0x18, 0x1f, 0xd5, 0x57, 0x56, 0x2f, 0x2f, 0x7c, 0xf6,
- 0xe5, 0x95, 0x67, 0x3e, 0xff, 0xf2, 0xca, 0x33, 0xbf, 0xf8, 0xf2, 0xca, 0x33, 0x1f, 0x9d, 0x5c,
- 0xc9, 0x7c, 0x76, 0x72, 0x25, 0xf3, 0xf9, 0xc9, 0x95, 0xcc, 0x2f, 0x4e, 0xae, 0x64, 0xbe, 0x38,
- 0xb9, 0x92, 0xf9, 0xc9, 0x3f, 0x5f, 0x79, 0xe6, 0xbb, 0x85, 0xf0, 0x6b, 0xfc, 0x6f, 0x00, 0x00,
- 0x00, 0xff, 0xff, 0x46, 0x90, 0xde, 0xbf, 0xfa, 0x6e, 0x00, 0x00,
+ // 5565 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x3d, 0x5b, 0x6c, 0x23, 0xd7,
+ 0x75, 0xa6, 0x48, 0x51, 0xe4, 0xd1, 0xfb, 0xee, 0xda, 0xa6, 0x95, 0x78, 0x77, 0xab, 0xa0, 0x8b,
+ 0xdd, 0xc6, 0x91, 0xea, 0x6d, 0x9b, 0xba, 0x36, 0xe2, 0x40, 0x94, 0xb4, 0x5a, 0x59, 0x8f, 0x95,
+ 0x0e, 0xa5, 0x5d, 0x3b, 0x7e, 0x65, 0x38, 0xbc, 0x24, 0xc7, 0x1a, 0xce, 0x50, 0x33, 0x43, 0xed,
+ 0xca, 0x40, 0x13, 0xa3, 0x40, 0x1f, 0x89, 0xeb, 0x34, 0x6e, 0xd3, 0x07, 0xd2, 0xbf, 0xfe, 0x04,
+ 0x68, 0x3f, 0x0b, 0xf4, 0xbf, 0x7f, 0x06, 0xf2, 0xe3, 0xfe, 0x05, 0x08, 0xb0, 0xb0, 0xd5, 0xfe,
+ 0xf6, 0xa7, 0xfd, 0x69, 0x53, 0x14, 0x28, 0xee, 0x63, 0xee, 0xdc, 0x19, 0x8e, 0xb4, 0xe2, 0x92,
+ 0xd4, 0xfe, 0xf4, 0x6b, 0xc5, 0x73, 0xce, 0x3d, 0xe7, 0xcc, 0xcc, 0x79, 0xdc, 0x73, 0xef, 0xb9,
+ 0x77, 0x61, 0xab, 0x61, 0x05, 0xcd, 0x4e, 0x75, 0xc1, 0x74, 0x5b, 0x8b, 0x86, 0xd7, 0x70, 0xdb,
+ 0x9e, 0xfb, 0x01, 0xff, 0xe3, 0x1b, 0xf4, 0x88, 0x3a, 0x81, 0xbf, 0xd8, 0x3e, 0x68, 0x2c, 0x1a,
+ 0x6d, 0xcb, 0x5f, 0x14, 0xbf, 0xdd, 0x8e, 0x67, 0xd2, 0xc5, 0xa3, 0x97, 0x0d, 0xbb, 0xdd, 0x34,
+ 0x5e, 0x5e, 0x6c, 0x50, 0x87, 0x7a, 0x46, 0x40, 0x6b, 0x0b, 0x6d, 0xcf, 0x0d, 0x5c, 0xf2, 0xad,
+ 0x88, 0xdd, 0x42, 0xc8, 0x8e, 0xff, 0xf1, 0xbe, 0x18, 0xbe, 0xd0, 0x3e, 0x68, 0x2c, 0x30, 0x76,
+ 0x0b, 0x1a, 0xbb, 0x85, 0x90, 0xdd, 0xdc, 0xb7, 0xcf, 0xad, 0x8d, 0xe9, 0xb6, 0x5a, 0xae, 0x93,
+ 0x94, 0x3f, 0xf7, 0x0d, 0x8d, 0x41, 0xc3, 0x6d, 0xb8, 0x8b, 0x1c, 0x5c, 0xed, 0xd4, 0xf9, 0x2f,
+ 0xfe, 0x83, 0xff, 0x25, 0xc9, 0xe7, 0x0f, 0x5e, 0xf1, 0x17, 0x2c, 0x97, 0xb1, 0x5c, 0x34, 0x5d,
+ 0x8f, 0x3d, 0x58, 0x17, 0xcb, 0xdf, 0x8e, 0x68, 0x5a, 0x86, 0xd9, 0xb4, 0x1c, 0xea, 0x1d, 0x47,
+ 0x7a, 0xb4, 0x68, 0x60, 0xa4, 0x8d, 0x5a, 0x3c, 0x6d, 0x94, 0xd7, 0x71, 0x02, 0xab, 0x45, 0xbb,
+ 0x06, 0x7c, 0xf3, 0x71, 0x03, 0x7c, 0xb3, 0x49, 0x5b, 0x46, 0x72, 0xdc, 0xfc, 0x7f, 0x67, 0x60,
+ 0x76, 0x69, 0x6b, 0x77, 0x67, 0xd9, 0x75, 0xfc, 0x4e, 0x8b, 0x2e, 0xbb, 0x4e, 0xdd, 0x6a, 0x90,
+ 0xdf, 0x81, 0x71, 0x53, 0x00, 0xbc, 0x3d, 0xa3, 0x51, 0xca, 0x5c, 0xcb, 0xdc, 0x28, 0x96, 0x2f,
+ 0x7d, 0xf6, 0xe8, 0xea, 0x33, 0x27, 0x8f, 0xae, 0x8e, 0x2f, 0x47, 0x28, 0xd4, 0xe9, 0xc8, 0x4d,
+ 0x18, 0x33, 0x3a, 0x81, 0xbb, 0x64, 0x1e, 0x94, 0x46, 0xae, 0x65, 0x6e, 0x14, 0xca, 0xd3, 0x72,
+ 0xc8, 0xd8, 0x92, 0x00, 0x63, 0x88, 0x27, 0x8b, 0x50, 0xa4, 0x0f, 0x4d, 0xbb, 0xe3, 0x5b, 0x47,
+ 0xb4, 0x94, 0xe5, 0xc4, 0xb3, 0x92, 0xb8, 0xb8, 0x1a, 0x22, 0x30, 0xa2, 0x61, 0xbc, 0x1d, 0x77,
+ 0xd3, 0x35, 0x0d, 0xbb, 0x94, 0x8b, 0xf3, 0xde, 0x16, 0x60, 0x0c, 0xf1, 0xe4, 0x3a, 0xe4, 0x1d,
+ 0xf7, 0xbe, 0x61, 0x05, 0xa5, 0x51, 0x4e, 0x39, 0x25, 0x29, 0xf3, 0xdb, 0x1c, 0x8a, 0x12, 0x3b,
+ 0xff, 0x59, 0x11, 0xa6, 0xd9, 0xb3, 0xaf, 0x32, 0xe3, 0xa8, 0x70, 0x5b, 0x22, 0x2f, 0x42, 0xb6,
+ 0xe3, 0xd9, 0xf2, 0x89, 0xc7, 0xe5, 0xc0, 0xec, 0x3e, 0x6e, 0x22, 0x83, 0x93, 0x57, 0x60, 0x82,
+ 0x3e, 0x34, 0x9b, 0x86, 0xd3, 0xa0, 0xdb, 0x46, 0x8b, 0xf2, 0xc7, 0x2c, 0x96, 0x2f, 0x4b, 0xba,
+ 0x89, 0x55, 0x0d, 0x87, 0x31, 0x4a, 0x7d, 0xe4, 0xde, 0x71, 0x5b, 0x3c, 0x73, 0xca, 0x48, 0x86,
+ 0xc3, 0x18, 0x25, 0xb9, 0x05, 0xe0, 0xb9, 0x9d, 0xc0, 0x72, 0x1a, 0x1b, 0xf4, 0x98, 0x3f, 0x7c,
+ 0xb1, 0x4c, 0xe4, 0x38, 0x40, 0x85, 0x41, 0x8d, 0x8a, 0xfc, 0x3e, 0xcc, 0x9a, 0xae, 0xe3, 0x50,
+ 0x33, 0xb0, 0x5c, 0xa7, 0x6c, 0x98, 0x07, 0x6e, 0xbd, 0xce, 0xdf, 0xc6, 0xf8, 0xad, 0x57, 0x16,
+ 0xce, 0xed, 0x64, 0xc2, 0x4b, 0x16, 0xe4, 0xf8, 0xf2, 0xb3, 0x27, 0x8f, 0xae, 0xce, 0x2e, 0x27,
+ 0xd9, 0x62, 0xb7, 0x24, 0xf2, 0x12, 0x14, 0x3e, 0xf0, 0x5d, 0xa7, 0xec, 0xd6, 0x8e, 0x4b, 0x79,
+ 0xfe, 0x0d, 0x66, 0xa4, 0xc2, 0x85, 0x37, 0x2a, 0x77, 0xb7, 0x19, 0x1c, 0x15, 0x05, 0xd9, 0x87,
+ 0x6c, 0x60, 0xfb, 0xa5, 0x31, 0xae, 0xde, 0xab, 0x3d, 0xab, 0xb7, 0xb7, 0x59, 0x11, 0x66, 0x5b,
+ 0x1e, 0x63, 0xdf, 0x6a, 0x6f, 0xb3, 0x82, 0x8c, 0x1f, 0xf9, 0x61, 0x06, 0x0a, 0xcc, 0xbf, 0x6a,
+ 0x46, 0x60, 0x94, 0x0a, 0xd7, 0xb2, 0x37, 0xc6, 0x6f, 0xbd, 0xb3, 0xd0, 0x57, 0x80, 0x59, 0x48,
+ 0x58, 0xcb, 0xc2, 0x96, 0x64, 0xbf, 0xea, 0x04, 0xde, 0x71, 0xf4, 0x8c, 0x21, 0x18, 0x95, 0x7c,
+ 0xf2, 0xd7, 0x19, 0x98, 0x0e, 0xbf, 0xea, 0x0a, 0x35, 0x6d, 0xc3, 0xa3, 0xa5, 0x22, 0x7f, 0xe0,
+ 0x37, 0x07, 0xa1, 0x53, 0x9c, 0xb3, 0x7c, 0x1d, 0x97, 0x4e, 0x1e, 0x5d, 0x9d, 0x4e, 0xa0, 0x30,
+ 0xa9, 0x05, 0xf9, 0x38, 0x03, 0x13, 0x87, 0x1d, 0xda, 0x51, 0x6a, 0x01, 0x57, 0x6b, 0x7f, 0x00,
+ 0x6a, 0xed, 0x6a, 0x6c, 0xa5, 0x4e, 0x33, 0xcc, 0xd8, 0x75, 0x38, 0xc6, 0x84, 0x93, 0xef, 0x43,
+ 0x91, 0xff, 0x2e, 0x5b, 0x4e, 0xad, 0x34, 0xce, 0x35, 0xc1, 0x41, 0x69, 0xc2, 0x78, 0x4a, 0x35,
+ 0x26, 0x59, 0x9c, 0x51, 0x40, 0x8c, 0x64, 0x92, 0x07, 0x30, 0x26, 0x43, 0x5a, 0x69, 0x82, 0x8b,
+ 0xdf, 0x19, 0x80, 0xf8, 0x58, 0x74, 0x2d, 0x8f, 0xb3, 0xa8, 0x25, 0x41, 0x18, 0x4a, 0x9b, 0x7b,
+ 0x0d, 0x26, 0x63, 0xe6, 0x44, 0x66, 0x20, 0x7b, 0x40, 0x8f, 0x45, 0x28, 0x42, 0xf6, 0x27, 0xb9,
+ 0x0c, 0xa3, 0x47, 0x86, 0xdd, 0x91, 0x61, 0x07, 0xc5, 0x8f, 0x57, 0x47, 0x5e, 0xc9, 0xcc, 0x7f,
+ 0x9e, 0x81, 0x17, 0x4e, 0x35, 0x04, 0x16, 0x3b, 0x6b, 0x1d, 0xcf, 0xa8, 0xda, 0x94, 0x73, 0xd3,
+ 0x62, 0xe7, 0x8a, 0x00, 0x63, 0x88, 0x67, 0xc1, 0x86, 0x85, 0xe8, 0x15, 0x6a, 0xd3, 0x80, 0xca,
+ 0x28, 0xae, 0x82, 0xcd, 0x92, 0xc2, 0xa0, 0x46, 0xc5, 0xbc, 0xdd, 0x72, 0x02, 0xea, 0x39, 0x86,
+ 0x2d, 0x43, 0xb9, 0xf2, 0x84, 0x75, 0x09, 0x47, 0x45, 0xa1, 0x45, 0xe7, 0xdc, 0x99, 0xd1, 0xf9,
+ 0x5b, 0x70, 0x29, 0xe5, 0xcb, 0x69, 0xc3, 0x33, 0x67, 0x0e, 0xff, 0x8f, 0x0c, 0x3c, 0x97, 0x6e,
+ 0x83, 0xe4, 0x1a, 0xe4, 0x1c, 0x16, 0xbc, 0x45, 0x90, 0x9f, 0x90, 0x0c, 0x72, 0x3c, 0x68, 0x73,
+ 0x8c, 0xfe, 0xc2, 0x46, 0x7a, 0x7a, 0x61, 0xd9, 0x73, 0xbd, 0xb0, 0x58, 0xf2, 0xcb, 0x9d, 0x23,
+ 0xf9, 0x9d, 0x37, 0xa3, 0xfd, 0x24, 0x07, 0x2f, 0x2c, 0x7d, 0xd8, 0xf1, 0x28, 0x0f, 0x52, 0xfe,
+ 0x9d, 0x4e, 0x55, 0xcf, 0x6d, 0xd7, 0x20, 0x57, 0x3f, 0xac, 0x39, 0xc9, 0xe7, 0xbe, 0xbd, 0xbb,
+ 0xb2, 0x8d, 0x1c, 0x43, 0xda, 0x70, 0xc9, 0x6f, 0x1a, 0x1e, 0xad, 0x2d, 0x99, 0x26, 0xf5, 0xfd,
+ 0x0d, 0x7a, 0xac, 0xb2, 0xdc, 0xf8, 0xad, 0x5f, 0x5f, 0x10, 0x73, 0x0c, 0x66, 0xeb, 0x0b, 0x6c,
+ 0xba, 0xb3, 0x70, 0xf4, 0xf2, 0x42, 0x85, 0x9a, 0x1e, 0x0d, 0x36, 0xe8, 0x71, 0x85, 0xda, 0xd4,
+ 0x0c, 0x5c, 0xaf, 0xfc, 0xfc, 0xc9, 0xa3, 0xab, 0x97, 0x2a, 0xdd, 0x5c, 0x30, 0x8d, 0x35, 0xa9,
+ 0xc1, 0x74, 0x02, 0xcc, 0xdf, 0xe1, 0xb9, 0xa5, 0xf1, 0x18, 0x97, 0x90, 0x86, 0x49, 0x96, 0xec,
+ 0x7b, 0x36, 0x3b, 0x55, 0xfe, 0x2c, 0x22, 0x7f, 0xaa, 0xef, 0x79, 0x47, 0x80, 0x31, 0xc4, 0x93,
+ 0x9f, 0xe8, 0x59, 0x63, 0x94, 0x67, 0x8d, 0x7a, 0xbf, 0x11, 0xe0, 0xb4, 0x2f, 0x72, 0xfe, 0xfc,
+ 0xd1, 0x5f, 0x74, 0xf8, 0xdf, 0x1c, 0x5c, 0x5a, 0x36, 0x6c, 0xea, 0xd4, 0x0c, 0x4f, 0x37, 0x88,
+ 0x97, 0xa0, 0xc0, 0xa6, 0x85, 0xb5, 0x8e, 0x1d, 0x3a, 0x83, 0x52, 0xa1, 0x22, 0xe1, 0xa8, 0x28,
+ 0x94, 0x9b, 0x1f, 0x19, 0xb6, 0x9c, 0xf7, 0xc4, 0xdd, 0xfc, 0x48, 0xb9, 0xf9, 0x91, 0x61, 0x93,
+ 0x57, 0x61, 0x4a, 0xda, 0xaf, 0xeb, 0xac, 0x18, 0x01, 0xf5, 0x4b, 0xd9, 0x6b, 0x59, 0x36, 0x73,
+ 0x39, 0x79, 0x74, 0x75, 0x6a, 0x35, 0x86, 0xc1, 0x04, 0x25, 0x93, 0xc4, 0xe6, 0xac, 0x1f, 0xba,
+ 0x4e, 0xf8, 0xbd, 0x94, 0xa4, 0x3d, 0x09, 0x47, 0x45, 0x41, 0xb6, 0x60, 0xbc, 0xe3, 0x53, 0x6f,
+ 0xc7, 0x38, 0xb6, 0x5d, 0xa3, 0xc6, 0x3d, 0x64, 0xa2, 0xfc, 0x75, 0x36, 0x51, 0xdd, 0x8f, 0xc0,
+ 0xbf, 0x7a, 0x74, 0xb5, 0x44, 0x1d, 0xd3, 0xad, 0x59, 0x4e, 0x63, 0x91, 0xcd, 0x3c, 0x16, 0xd0,
+ 0x78, 0xb0, 0x45, 0x7d, 0xdf, 0x68, 0x50, 0xd4, 0xc7, 0x93, 0x1f, 0xe9, 0x06, 0x90, 0xe7, 0x06,
+ 0xf0, 0xdd, 0x3e, 0x0d, 0x20, 0xe5, 0xdd, 0xf7, 0x30, 0x75, 0xf8, 0x83, 0x0c, 0x8c, 0xb7, 0xa9,
+ 0xe7, 0x5b, 0x7e, 0x40, 0x1d, 0x93, 0xca, 0x79, 0xd2, 0xdd, 0x3e, 0x75, 0xe2, 0xba, 0xec, 0x44,
+ 0x6c, 0xcb, 0xd3, 0xec, 0x8d, 0x69, 0x00, 0xd4, 0x85, 0xf6, 0x67, 0x7f, 0x0f, 0xe1, 0xf2, 0xb2,
+ 0x11, 0x98, 0xcd, 0x4e, 0x5b, 0x44, 0xe0, 0x8e, 0x67, 0xb0, 0xd9, 0x22, 0x73, 0x4b, 0xea, 0xb0,
+ 0x28, 0x5a, 0x4b, 0xe6, 0xa5, 0x55, 0x01, 0xc6, 0x10, 0xcf, 0x2a, 0x92, 0x96, 0xf1, 0x70, 0x45,
+ 0x8e, 0x94, 0xf6, 0xa7, 0x2a, 0x92, 0xad, 0x08, 0x85, 0x3a, 0xdd, 0xfc, 0xf7, 0xe0, 0xb2, 0x10,
+ 0xb9, 0x65, 0xb4, 0xb5, 0x67, 0x3b, 0x47, 0x0a, 0x58, 0x81, 0x19, 0xd3, 0xa3, 0x46, 0x40, 0xd7,
+ 0xeb, 0xdb, 0x6e, 0xb0, 0xfa, 0xd0, 0xf2, 0x03, 0x99, 0x0b, 0x4a, 0x92, 0x7a, 0x66, 0x39, 0x81,
+ 0xc7, 0xae, 0x11, 0xf3, 0x3f, 0xcd, 0x03, 0x59, 0x6d, 0x59, 0x41, 0x40, 0x63, 0x8e, 0x77, 0x1d,
+ 0xf2, 0x55, 0xcf, 0x3d, 0xa0, 0x9e, 0x54, 0x40, 0xc5, 0xf3, 0x32, 0x87, 0xa2, 0xc4, 0xb2, 0xe4,
+ 0xc2, 0xf2, 0xb9, 0x43, 0x6d, 0x16, 0x18, 0x47, 0xe2, 0x53, 0xff, 0x65, 0x85, 0x41, 0x8d, 0x8a,
+ 0xd7, 0x6e, 0xe2, 0x17, 0x8f, 0x77, 0xd9, 0x44, 0xed, 0x16, 0xa1, 0x50, 0xa7, 0x23, 0x77, 0xa1,
+ 0xc0, 0xbc, 0xc0, 0x09, 0x63, 0xe4, 0xb9, 0x23, 0xf0, 0x04, 0x33, 0xdb, 0x7d, 0x39, 0x14, 0x15,
+ 0x13, 0xc6, 0xb0, 0x6d, 0xf8, 0xfe, 0x03, 0xd7, 0xab, 0xc9, 0xca, 0xa3, 0x17, 0x86, 0x3b, 0x72,
+ 0x28, 0x2a, 0x26, 0xe9, 0x35, 0x4d, 0xfe, 0xa9, 0xd4, 0x34, 0x63, 0xe7, 0xad, 0x69, 0x0a, 0x03,
+ 0xae, 0x69, 0x3e, 0xd1, 0x83, 0x53, 0x91, 0x07, 0xa7, 0xf7, 0xfb, 0x0d, 0x04, 0x5d, 0xe6, 0x79,
+ 0x51, 0x69, 0xe9, 0xd3, 0x11, 0x98, 0x49, 0x86, 0x21, 0xf2, 0x21, 0x8c, 0x99, 0x22, 0x56, 0x70,
+ 0x26, 0xe3, 0xb7, 0x2a, 0x7d, 0x07, 0xdf, 0xee, 0xc8, 0x23, 0xa7, 0xe0, 0x02, 0x83, 0xa1, 0x40,
+ 0xf2, 0x51, 0x06, 0x8a, 0x66, 0x18, 0x2e, 0xe4, 0xac, 0xa7, 0x6f, 0xf1, 0x29, 0xe1, 0x47, 0x94,
+ 0x1f, 0x0a, 0x83, 0x91, 0xd0, 0xf9, 0x5f, 0x8e, 0xc0, 0xb8, 0x1e, 0x29, 0xbe, 0xab, 0x7d, 0x6f,
+ 0xf1, 0x3e, 0x7e, 0x53, 0xf3, 0x22, 0xb5, 0xd4, 0x13, 0x29, 0xc1, 0xa8, 0x99, 0x5f, 0xdd, 0xad,
+ 0x7e, 0x40, 0xcd, 0x80, 0x7d, 0x9c, 0x28, 0x62, 0x44, 0x30, 0x2d, 0xbd, 0xb4, 0x21, 0xe7, 0xb7,
+ 0xa9, 0x29, 0x1f, 0x77, 0x7b, 0x10, 0x69, 0x45, 0xe8, 0x5e, 0x69, 0x53, 0x33, 0x0a, 0xad, 0xec,
+ 0x17, 0x72, 0x49, 0xe4, 0x21, 0xe4, 0xfd, 0xc0, 0x08, 0x3a, 0xbe, 0x9c, 0xea, 0xed, 0x0c, 0x50,
+ 0x26, 0xe7, 0x1b, 0xc5, 0x53, 0xf1, 0x1b, 0xa5, 0xbc, 0xf9, 0x2f, 0x32, 0x30, 0xad, 0x51, 0x6f,
+ 0x5a, 0x7e, 0x40, 0xde, 0xe9, 0x7a, 0xc3, 0x0b, 0xe7, 0x7b, 0xc3, 0x6c, 0x34, 0x7f, 0xbf, 0xca,
+ 0x41, 0x42, 0x88, 0xf6, 0x76, 0x5d, 0x18, 0xb5, 0x02, 0xda, 0xf2, 0x4b, 0x23, 0xdc, 0x59, 0xdf,
+ 0x18, 0xdc, 0xa3, 0x96, 0x27, 0xa5, 0xd8, 0xd1, 0x75, 0x26, 0x00, 0x85, 0x9c, 0xf9, 0x9f, 0x7e,
+ 0x33, 0xf6, 0x88, 0xec, 0xb5, 0xf3, 0xb5, 0x27, 0x06, 0x2a, 0x77, 0xfc, 0xed, 0x28, 0xeb, 0x45,
+ 0x6b, 0x4f, 0x1a, 0x0e, 0x63, 0x94, 0xe4, 0x10, 0x0a, 0x01, 0x6d, 0xb5, 0x6d, 0x23, 0x08, 0xab,
+ 0x80, 0xb5, 0x3e, 0x9f, 0x60, 0x4f, 0xb2, 0x13, 0x61, 0x3e, 0xfc, 0x85, 0x4a, 0x0c, 0x69, 0xc1,
+ 0x98, 0x4f, 0xbd, 0x23, 0xcb, 0xa4, 0xd2, 0x3c, 0x6e, 0xf7, 0x29, 0xb1, 0x22, 0xb8, 0x09, 0x9f,
+ 0x97, 0x3f, 0x30, 0x94, 0x41, 0x16, 0x61, 0xcc, 0xa3, 0x6d, 0xdb, 0x32, 0x0d, 0x9e, 0xf6, 0x46,
+ 0x45, 0x46, 0x58, 0xa1, 0x6d, 0x8f, 0x9a, 0x46, 0x40, 0x6b, 0x28, 0x90, 0x18, 0x52, 0x91, 0xef,
+ 0xc1, 0x68, 0xcb, 0x72, 0x2c, 0x57, 0x16, 0x07, 0x6f, 0x0d, 0xd6, 0x61, 0x16, 0xb6, 0x18, 0x6f,
+ 0x11, 0x78, 0xd5, 0x07, 0xe6, 0x30, 0x14, 0x62, 0xf9, 0xb2, 0x96, 0x29, 0x27, 0x94, 0x72, 0x7e,
+ 0xfa, 0xce, 0x80, 0x75, 0x50, 0xf3, 0xd5, 0x78, 0xfc, 0x0f, 0xc1, 0xa8, 0xe4, 0x93, 0x0f, 0x21,
+ 0x57, 0xb7, 0x6c, 0x36, 0x27, 0xcd, 0x0e, 0x60, 0x29, 0x2b, 0xa9, 0xc7, 0x6d, 0xcb, 0xa6, 0x42,
+ 0x87, 0xa8, 0x58, 0xb5, 0x6c, 0x8a, 0x5c, 0x26, 0x7f, 0x11, 0x1e, 0x15, 0x3c, 0x06, 0xb4, 0xbe,
+ 0x97, 0x54, 0x00, 0x25, 0xfb, 0xc4, 0x8b, 0x08, 0xc1, 0xa8, 0xe4, 0x93, 0x3f, 0xca, 0xc0, 0xd8,
+ 0x03, 0x5a, 0x6d, 0xba, 0xee, 0x81, 0xcc, 0xcb, 0x6f, 0x0f, 0x58, 0x97, 0xfb, 0x82, 0xbb, 0x50,
+ 0x45, 0x4d, 0x94, 0x25, 0x14, 0x43, 0xe1, 0xec, 0x8b, 0x18, 0xad, 0xc3, 0x76, 0x09, 0x86, 0xf2,
+ 0x45, 0x96, 0x5a, 0x87, 0xed, 0xc4, 0x17, 0x59, 0xda, 0xda, 0xdd, 0x41, 0x2e, 0x93, 0xb9, 0xc6,
+ 0x81, 0x51, 0x3f, 0x30, 0x4a, 0xe3, 0x43, 0x71, 0x8d, 0x0d, 0xc6, 0x3b, 0xe1, 0x1a, 0x1c, 0x86,
+ 0x42, 0x2c, 0x7b, 0xf6, 0xd6, 0x61, 0x10, 0x94, 0x26, 0x86, 0xf2, 0xec, 0x5b, 0x87, 0x41, 0x90,
+ 0x78, 0xf6, 0xad, 0xdd, 0xbd, 0x3d, 0xe4, 0x32, 0x99, 0x6c, 0xc7, 0x08, 0xfc, 0xd2, 0xe4, 0x50,
+ 0x64, 0x6f, 0x1b, 0x81, 0x9f, 0x90, 0xbd, 0xbd, 0xb4, 0x57, 0x41, 0x2e, 0x93, 0x1c, 0x41, 0xd6,
+ 0x77, 0xfc, 0xd2, 0x14, 0x17, 0x7d, 0x7f, 0xc0, 0xa2, 0x2b, 0x8e, 0x94, 0xac, 0x76, 0x43, 0x2a,
+ 0xdb, 0x15, 0x64, 0x02, 0xb9, 0xdc, 0x43, 0xbf, 0x34, 0x3d, 0x1c, 0xb9, 0x87, 0x5d, 0x72, 0x77,
+ 0x99, 0xdc, 0x43, 0x9f, 0x55, 0xc4, 0xf9, 0x76, 0xa7, 0x5a, 0xe9, 0x54, 0x4b, 0x33, 0x5c, 0xf6,
+ 0x77, 0x06, 0x2c, 0x7b, 0x87, 0x33, 0x17, 0xe2, 0xd5, 0x5c, 0x42, 0x00, 0x51, 0x4a, 0xe6, 0x4a,
+ 0x08, 0xa9, 0xa5, 0xd9, 0xa1, 0x28, 0xb1, 0xc6, 0xb9, 0x25, 0x94, 0x10, 0x40, 0x94, 0x92, 0x43,
+ 0x25, 0x6c, 0xa3, 0x5a, 0x22, 0xc3, 0x52, 0xc2, 0x36, 0x52, 0x94, 0xb0, 0x0d, 0xa1, 0x84, 0x6d,
+ 0x54, 0x99, 0xe9, 0x37, 0x6b, 0x75, 0xbf, 0x74, 0x69, 0x28, 0xa6, 0x7f, 0xa7, 0x56, 0x4f, 0x9a,
+ 0xfe, 0x9d, 0x95, 0xdb, 0x15, 0xe4, 0x32, 0x59, 0xc8, 0xf1, 0x6d, 0xc3, 0x3c, 0x28, 0x5d, 0x1e,
+ 0x4a, 0xc8, 0xa9, 0x30, 0xde, 0x89, 0x90, 0xc3, 0x61, 0x28, 0xc4, 0x92, 0xbf, 0xca, 0xc0, 0xb8,
+ 0x1f, 0xb8, 0x9e, 0xd1, 0xa0, 0x6b, 0x9e, 0x55, 0x2b, 0x3d, 0x3b, 0x98, 0x9a, 0x2c, 0xa9, 0x46,
+ 0x24, 0x41, 0x28, 0xa3, 0xea, 0x79, 0x0d, 0x83, 0xba, 0x22, 0xe4, 0xef, 0x32, 0x30, 0x65, 0xc4,
+ 0x16, 0x1e, 0x4b, 0xcf, 0x71, 0xdd, 0xaa, 0x83, 0x4e, 0x09, 0xf1, 0xd5, 0x4d, 0xae, 0xde, 0x73,
+ 0x52, 0xbd, 0xa9, 0x38, 0x12, 0x13, 0x1a, 0x71, 0xf3, 0xf5, 0x03, 0xcf, 0x6a, 0xd3, 0xd2, 0xf3,
+ 0x43, 0x31, 0xdf, 0x0a, 0x67, 0x9e, 0x30, 0x5f, 0x01, 0x44, 0x29, 0x99, 0xa7, 0x6e, 0x2a, 0x8a,
+ 0xe0, 0x52, 0x69, 0x28, 0xa9, 0x3b, 0x2c, 0xb1, 0xe3, 0xa9, 0x5b, 0x42, 0x31, 0x14, 0xce, 0x6c,
+ 0xd9, 0xa3, 0x35, 0xcb, 0x2f, 0xbd, 0x30, 0x14, 0x5b, 0x46, 0xc6, 0x3b, 0x61, 0xcb, 0x1c, 0x86,
+ 0x42, 0x2c, 0x0b, 0xe7, 0x8e, 0x7f, 0x58, 0x9a, 0x1b, 0x4a, 0x38, 0xdf, 0xf6, 0x0f, 0x13, 0xe1,
+ 0x7c, 0xbb, 0xb2, 0x8b, 0x4c, 0xa0, 0x0c, 0xe7, 0xb6, 0x6f, 0x78, 0xa5, 0xaf, 0x0c, 0x29, 0x9c,
+ 0x33, 0xe6, 0x5d, 0xe1, 0x9c, 0x01, 0x51, 0x4a, 0xe6, 0x56, 0xc0, 0x9b, 0x23, 0x2c, 0xb3, 0xf4,
+ 0xd5, 0xa1, 0x58, 0xc1, 0x9a, 0xe0, 0x9e, 0xb0, 0x02, 0x09, 0xc5, 0x50, 0x38, 0xb9, 0xc1, 0x66,
+ 0xb5, 0xbc, 0xd4, 0xf0, 0x4b, 0x2f, 0xf2, 0x8a, 0x64, 0x42, 0xcc, 0x39, 0x05, 0x0c, 0x15, 0x76,
+ 0xae, 0x03, 0x10, 0x55, 0x0b, 0x29, 0x2b, 0x2f, 0xbb, 0xfa, 0xca, 0xcb, 0xf8, 0xad, 0xd7, 0x7a,
+ 0x5e, 0x85, 0xaa, 0xfc, 0xd6, 0x92, 0x17, 0x58, 0x75, 0xc3, 0x0c, 0xb4, 0x65, 0x9b, 0xb9, 0x3f,
+ 0xcb, 0xc0, 0x64, 0xac, 0x42, 0x48, 0x11, 0xdd, 0x8c, 0x8b, 0xc6, 0xc1, 0x2f, 0xa0, 0xeb, 0x1a,
+ 0xfd, 0x71, 0x06, 0x8a, 0xaa, 0x56, 0x48, 0xd1, 0xa6, 0x16, 0xd7, 0xa6, 0xdf, 0x35, 0x0e, 0x2e,
+ 0x2a, 0x5d, 0x13, 0xf6, 0x6e, 0x62, 0x45, 0xc3, 0xf0, 0xdf, 0x8d, 0x12, 0x97, 0xae, 0xd1, 0x0f,
+ 0x32, 0x30, 0xa1, 0x97, 0x0e, 0x29, 0x0a, 0x99, 0x71, 0x85, 0xb6, 0xfa, 0x54, 0x48, 0x4a, 0x5b,
+ 0x76, 0x9d, 0x80, 0x3e, 0x0c, 0x92, 0xdf, 0x49, 0x55, 0x10, 0xc3, 0xff, 0x4e, 0x89, 0x6e, 0x8d,
+ 0xc4, 0x5b, 0x81, 0xa8, 0x9c, 0x48, 0x51, 0x85, 0xc6, 0x55, 0xe9, 0x77, 0xb7, 0x45, 0xc8, 0x3a,
+ 0xdd, 0x7a, 0x55, 0x6d, 0x31, 0xfc, 0xb7, 0xc2, 0x6a, 0x96, 0x53, 0x34, 0xf9, 0x93, 0x0c, 0x14,
+ 0x55, 0xa5, 0x31, 0xfc, 0x97, 0xc2, 0x2a, 0x18, 0x31, 0x17, 0xe8, 0x56, 0xe5, 0x0f, 0x33, 0x50,
+ 0x08, 0x2b, 0x8f, 0xe1, 0x9b, 0x6c, 0x65, 0xbb, 0x72, 0xca, 0x2b, 0xe1, 0x7a, 0x1c, 0x5e, 0x98,
+ 0x1e, 0xbb, 0xa7, 0xe9, 0xf1, 0x71, 0x06, 0xc6, 0xb5, 0xaa, 0x24, 0x45, 0x95, 0x7a, 0x5c, 0x95,
+ 0x7e, 0x17, 0x55, 0xa5, 0xb0, 0xd3, 0xb5, 0xd1, 0xca, 0x93, 0xe1, 0x6b, 0x23, 0x85, 0x9d, 0xa9,
+ 0x4d, 0x58, 0xa7, 0x5c, 0x88, 0x36, 0x4c, 0xd8, 0xe9, 0xee, 0xac, 0x6a, 0x96, 0xe1, 0xbb, 0x33,
+ 0xab, 0x85, 0xce, 0x08, 0x72, 0x51, 0x01, 0x33, 0x7c, 0x7f, 0x16, 0xb2, 0xd2, 0x75, 0xf9, 0xcb,
+ 0x0c, 0xcc, 0x24, 0xab, 0x98, 0x14, 0x8d, 0x0e, 0xe2, 0x1a, 0xf5, 0xdb, 0x84, 0xa6, 0x4b, 0x4c,
+ 0xd7, 0xeb, 0x6f, 0x33, 0x70, 0x29, 0xa5, 0x82, 0x49, 0x51, 0xcd, 0x89, 0xab, 0xf6, 0xe6, 0xb0,
+ 0x9a, 0x42, 0x92, 0x96, 0xad, 0x95, 0x30, 0xc3, 0xb7, 0x6c, 0x29, 0x2c, 0x5d, 0x9b, 0x4f, 0x32,
+ 0x30, 0xa1, 0x97, 0x32, 0x29, 0xea, 0x34, 0xe2, 0xea, 0xec, 0x0e, 0x7c, 0x6f, 0x32, 0x69, 0xdf,
+ 0x51, 0x51, 0x33, 0x7c, 0xfb, 0x16, 0xb2, 0x4e, 0xcf, 0x13, 0x61, 0x89, 0x33, 0xfc, 0x3c, 0xb1,
+ 0x5d, 0xd9, 0x3d, 0x33, 0x4f, 0xa8, 0x72, 0xe7, 0x22, 0xf2, 0x04, 0x17, 0x76, 0xba, 0xc5, 0xe8,
+ 0x65, 0xcf, 0xf0, 0x2d, 0x26, 0x94, 0x96, 0xaa, 0xcf, 0x7c, 0x00, 0xb3, 0x5d, 0x9b, 0x85, 0xe4,
+ 0x7d, 0xb5, 0x1d, 0x29, 0xb6, 0xff, 0x7e, 0xb7, 0xf7, 0x3a, 0xe9, 0xec, 0x5d, 0xc7, 0x9f, 0x67,
+ 0x61, 0x3a, 0x51, 0x33, 0xf0, 0x16, 0x40, 0xf6, 0x93, 0xf7, 0x82, 0x8b, 0xfd, 0xb8, 0xa8, 0x05,
+ 0x30, 0x44, 0x60, 0x44, 0x43, 0x3e, 0xcd, 0xc0, 0xf4, 0x03, 0x23, 0x30, 0x9b, 0x3b, 0x46, 0xd0,
+ 0x14, 0x5b, 0xc7, 0x03, 0xca, 0x20, 0xf7, 0xe3, 0x5c, 0xcb, 0xcf, 0x4b, 0x3d, 0xa6, 0x13, 0x08,
+ 0x4c, 0xca, 0x27, 0x37, 0x61, 0xac, 0xed, 0xda, 0xb6, 0xe5, 0x34, 0x64, 0xe3, 0xa3, 0xaa, 0x6a,
+ 0x77, 0x04, 0x18, 0x43, 0x7c, 0xbc, 0x19, 0x3b, 0x37, 0x90, 0xcd, 0x9a, 0xc4, 0x2b, 0xbd, 0xa8,
+ 0xae, 0x85, 0x5f, 0x66, 0x81, 0x74, 0x5b, 0xd9, 0xe3, 0x0e, 0x0e, 0x5c, 0x87, 0xbc, 0x19, 0x7d,
+ 0x34, 0xad, 0xe3, 0x47, 0xbe, 0x5b, 0x89, 0x15, 0x4d, 0x76, 0x3e, 0x35, 0x3b, 0x1e, 0xed, 0xee,
+ 0xa5, 0x15, 0x70, 0x54, 0x14, 0xb1, 0x9e, 0x94, 0xdc, 0x63, 0x7b, 0x52, 0x3e, 0xe9, 0x6e, 0x6d,
+ 0x7c, 0x7f, 0xe0, 0xee, 0xd6, 0x43, 0x63, 0xdb, 0x3e, 0x6f, 0x9d, 0x6d, 0x8a, 0x0e, 0x20, 0xd9,
+ 0xc9, 0x73, 0xce, 0x1e, 0xa1, 0x29, 0xd9, 0x5d, 0x2b, 0x07, 0xa3, 0xc6, 0xa8, 0xbf, 0xaf, 0xfb,
+ 0x5f, 0x63, 0x30, 0xdb, 0x35, 0xd9, 0x24, 0x73, 0x30, 0x62, 0x89, 0x1e, 0xb5, 0x6c, 0x19, 0xe4,
+ 0x13, 0x8d, 0xac, 0xaf, 0xe0, 0x88, 0x55, 0x23, 0x41, 0xb4, 0xf1, 0x37, 0x8c, 0xfa, 0x59, 0x6c,
+ 0x5b, 0x77, 0x6d, 0xf3, 0x7d, 0x0d, 0x46, 0xdd, 0x07, 0x0e, 0xf5, 0x64, 0x7f, 0x97, 0x5a, 0xd0,
+ 0xbb, 0xcb, 0x80, 0x28, 0x70, 0xfc, 0xe4, 0x08, 0x6d, 0xbb, 0xbe, 0x15, 0xb8, 0x5e, 0xf7, 0xc9,
+ 0x11, 0x85, 0x41, 0x8d, 0x8a, 0xcc, 0x43, 0x5e, 0x68, 0xc5, 0x2d, 0xa4, 0x58, 0x06, 0x66, 0xa4,
+ 0x62, 0x9e, 0x82, 0x12, 0x43, 0xee, 0x42, 0xc1, 0x68, 0x5b, 0x7b, 0xee, 0x01, 0x75, 0x7a, 0xfb,
+ 0x6c, 0x7c, 0x25, 0x6b, 0x69, 0x67, 0x9d, 0x0f, 0x45, 0xc5, 0x84, 0xbc, 0x07, 0x93, 0xf2, 0xc1,
+ 0xa4, 0x31, 0x8c, 0xf5, 0xc2, 0x75, 0xf6, 0xe4, 0xd1, 0xd5, 0xc9, 0xfb, 0xfa, 0x78, 0x8c, 0xb3,
+ 0x8b, 0x79, 0x55, 0xe1, 0xb1, 0x5e, 0x75, 0x1d, 0xf2, 0x86, 0x19, 0x58, 0x47, 0xe2, 0x84, 0x86,
+ 0xd6, 0x6d, 0xbd, 0xc4, 0xa1, 0x28, 0xb1, 0xf2, 0x94, 0x54, 0x10, 0x46, 0x71, 0xe8, 0x3a, 0x25,
+ 0x15, 0xa2, 0x50, 0xa7, 0x23, 0xaf, 0xc1, 0xa4, 0x30, 0x90, 0xb2, 0xe1, 0xd3, 0x7d, 0xdc, 0xe4,
+ 0xc7, 0x1c, 0x8a, 0xe5, 0x67, 0xe5, 0xc0, 0xc9, 0x35, 0x1d, 0x89, 0x71, 0x5a, 0xb2, 0x04, 0xd3,
+ 0x02, 0xb0, 0xdf, 0xb6, 0x5d, 0xa3, 0xc6, 0x86, 0x4f, 0xf0, 0xe1, 0x2a, 0x6a, 0xaf, 0xc5, 0xd1,
+ 0x98, 0xa4, 0x27, 0x6f, 0x00, 0xa9, 0xf1, 0x3e, 0xf4, 0x3b, 0xae, 0x7b, 0x70, 0xd7, 0xb9, 0x6d,
+ 0x39, 0x96, 0xdf, 0x2c, 0x4d, 0xf2, 0x47, 0x9d, 0x93, 0x5c, 0xc8, 0x4a, 0x17, 0x05, 0xa6, 0x8c,
+ 0x22, 0x7f, 0xaa, 0x87, 0x14, 0xb1, 0xff, 0xf8, 0xde, 0xa0, 0x4b, 0xbd, 0x8b, 0x0a, 0xec, 0x27,
+ 0xa3, 0xdc, 0xf5, 0xe3, 0x95, 0x9d, 0xee, 0xde, 0x99, 0x8b, 0x73, 0xef, 0x45, 0x28, 0x32, 0xb6,
+ 0xd4, 0x0c, 0xd6, 0x57, 0x64, 0xc6, 0x50, 0xd3, 0x83, 0x9d, 0x10, 0x81, 0x11, 0x8d, 0xe6, 0xb6,
+ 0xd9, 0x53, 0xdd, 0xf6, 0x4d, 0x18, 0x37, 0x78, 0x4b, 0xbc, 0xf0, 0xdc, 0x9e, 0xba, 0x3c, 0x79,
+ 0x77, 0xf0, 0x52, 0x34, 0x1a, 0x75, 0x56, 0xa4, 0x02, 0xcf, 0x8a, 0x46, 0xdd, 0x4a, 0x65, 0xf3,
+ 0x1e, 0xf5, 0xac, 0xba, 0x65, 0x8a, 0x3e, 0x5d, 0x71, 0x5c, 0xe1, 0x45, 0xa9, 0xfa, 0xb3, 0xab,
+ 0x69, 0x44, 0x98, 0x3e, 0x56, 0xfa, 0x89, 0x6d, 0x28, 0x3f, 0xc9, 0x77, 0xf9, 0x49, 0x84, 0xc4,
+ 0x38, 0xed, 0x29, 0x46, 0x5e, 0xe8, 0xdf, 0xc8, 0x8b, 0x83, 0x32, 0xf2, 0xb8, 0x9d, 0x5d, 0x94,
+ 0x91, 0xff, 0xac, 0x00, 0xd3, 0x89, 0x25, 0x83, 0xd4, 0xa9, 0x65, 0xe6, 0x29, 0x4f, 0x2d, 0xaf,
+ 0x41, 0x2e, 0x60, 0x41, 0x75, 0x24, 0xde, 0xa0, 0xcd, 0xa3, 0x29, 0xc7, 0x30, 0xf3, 0x30, 0x9b,
+ 0xd4, 0x3c, 0x08, 0xcf, 0x1e, 0xc8, 0x4c, 0xa8, 0xcc, 0x63, 0x59, 0x47, 0x62, 0x9c, 0x96, 0x7c,
+ 0x1d, 0x8a, 0x46, 0xad, 0xe6, 0x51, 0xdf, 0xa7, 0x3e, 0x9f, 0x8e, 0x16, 0x45, 0x4f, 0xe6, 0x52,
+ 0x08, 0xc4, 0x08, 0xcf, 0xb2, 0x47, 0xb3, 0x56, 0xf7, 0xf7, 0x7d, 0xea, 0x71, 0x83, 0xd6, 0x8e,
+ 0x23, 0xb0, 0x57, 0xc9, 0xe0, 0xa8, 0x28, 0x48, 0x0d, 0xa6, 0x0f, 0xbc, 0xea, 0xf2, 0xb2, 0x61,
+ 0x36, 0xe9, 0x93, 0x4c, 0x6d, 0xf8, 0x89, 0x96, 0x8d, 0x38, 0x07, 0x4c, 0xb2, 0x94, 0x52, 0x36,
+ 0xe8, 0x71, 0x60, 0x54, 0x9f, 0x24, 0x67, 0x86, 0x52, 0x74, 0x0e, 0x98, 0x64, 0xc9, 0x32, 0xdc,
+ 0x81, 0x57, 0x0d, 0x9b, 0xbb, 0xb9, 0xfb, 0x68, 0x19, 0x6e, 0x23, 0x42, 0xa1, 0x4e, 0xc7, 0x5e,
+ 0xd8, 0x81, 0x57, 0x45, 0x6a, 0xd8, 0x2d, 0x9e, 0x42, 0xb5, 0x17, 0xb6, 0x21, 0xe1, 0xa8, 0x28,
+ 0x48, 0x1b, 0x08, 0x7b, 0x3a, 0xfe, 0xdd, 0x55, 0x4f, 0xac, 0x3c, 0x85, 0x78, 0x23, 0xed, 0x69,
+ 0x14, 0x91, 0xfe, 0x40, 0xcf, 0x31, 0x87, 0xde, 0xe8, 0xe2, 0x83, 0x29, 0xbc, 0xc9, 0x5b, 0xf0,
+ 0xfc, 0x81, 0x57, 0x95, 0xad, 0x80, 0x3b, 0x9e, 0xe5, 0x98, 0x56, 0xdb, 0x10, 0xed, 0xf2, 0x22,
+ 0x17, 0x5f, 0x95, 0xea, 0x3e, 0xbf, 0x91, 0x4e, 0x86, 0xa7, 0x8d, 0x8f, 0xd7, 0x39, 0x13, 0x03,
+ 0xa9, 0x73, 0x12, 0xee, 0x7a, 0x51, 0x91, 0xe2, 0x9f, 0x32, 0x40, 0xf8, 0xb6, 0x45, 0x78, 0xdc,
+ 0x7b, 0xcd, 0x73, 0x3b, 0x6d, 0x96, 0x99, 0x1a, 0xec, 0x0f, 0xad, 0x91, 0x54, 0x65, 0xa6, 0xb5,
+ 0x10, 0x81, 0x11, 0x0d, 0x9b, 0x4d, 0xb9, 0x76, 0x8d, 0xaa, 0xe3, 0x13, 0x6a, 0x36, 0x75, 0x97,
+ 0x43, 0x51, 0x62, 0xc9, 0x1a, 0xcc, 0x7a, 0xb4, 0x6a, 0xd8, 0x86, 0xc3, 0x2a, 0x73, 0xcf, 0x08,
+ 0x68, 0xe3, 0x58, 0xfa, 0xf4, 0x0b, 0x72, 0xc8, 0x2c, 0x26, 0x09, 0xb0, 0x7b, 0xcc, 0xfc, 0x17,
+ 0x79, 0x98, 0x49, 0xee, 0xb7, 0x3c, 0xae, 0x3c, 0x63, 0xf9, 0xd6, 0xf0, 0x02, 0x4b, 0x3b, 0x5c,
+ 0x12, 0xe5, 0xdb, 0x10, 0x81, 0x11, 0x0d, 0x9b, 0x7f, 0x07, 0x6e, 0xdb, 0x32, 0x93, 0xf3, 0xef,
+ 0x3d, 0x06, 0x44, 0x81, 0x4b, 0x3f, 0xb1, 0x90, 0xbb, 0xb0, 0x13, 0x0b, 0xf2, 0x0c, 0xc2, 0xe8,
+ 0x80, 0xcf, 0x20, 0xf4, 0x76, 0xb8, 0xfb, 0x63, 0xdd, 0x21, 0x44, 0x9b, 0xe8, 0xbb, 0x03, 0xde,
+ 0x4c, 0xeb, 0xa1, 0xe4, 0xfc, 0x61, 0x06, 0x26, 0x4d, 0xdd, 0x9e, 0xe5, 0x09, 0x8d, 0xdd, 0x41,
+ 0xa8, 0x14, 0x73, 0x14, 0x51, 0x95, 0xc4, 0x40, 0x18, 0x17, 0x4d, 0x76, 0xe0, 0xb2, 0x6d, 0xb5,
+ 0xac, 0x40, 0x4c, 0xd3, 0x76, 0xa8, 0x57, 0xa1, 0xa6, 0xeb, 0xd4, 0x78, 0xc8, 0xcc, 0x96, 0xbf,
+ 0x2a, 0x1f, 0xe3, 0xf2, 0x66, 0x0a, 0x0d, 0xa6, 0x8e, 0x24, 0x37, 0x61, 0xec, 0x88, 0x7a, 0x3e,
+ 0x33, 0x62, 0x88, 0x9f, 0x73, 0xbc, 0x27, 0xc0, 0x18, 0xe2, 0xfb, 0x8b, 0x0d, 0xff, 0x92, 0x83,
+ 0xe9, 0xc4, 0x3e, 0xe2, 0xe3, 0x3c, 0x4c, 0x39, 0xcc, 0xc8, 0x19, 0x0e, 0xf3, 0x12, 0x14, 0x4c,
+ 0xdb, 0xa2, 0x4e, 0xb0, 0x5e, 0x93, 0x8e, 0x15, 0x35, 0x1f, 0x0b, 0xf8, 0x0a, 0x2a, 0x8a, 0xa7,
+ 0xed, 0x5e, 0xba, 0x1f, 0x8c, 0x9e, 0xf7, 0x40, 0x50, 0x7e, 0x98, 0x97, 0x1c, 0x8c, 0x0d, 0x24,
+ 0xdf, 0x24, 0x3e, 0xec, 0x45, 0xe5, 0x9b, 0x9f, 0x8f, 0x40, 0x61, 0x7b, 0x69, 0xaf, 0xb2, 0xd4,
+ 0x09, 0x9a, 0xe4, 0x6d, 0x18, 0xad, 0x1a, 0xbe, 0x65, 0xca, 0x79, 0xe8, 0xab, 0x4f, 0xf0, 0x39,
+ 0x7d, 0xcb, 0x64, 0xac, 0xca, 0x45, 0x66, 0x65, 0xfc, 0x27, 0x0a, 0x9e, 0xe4, 0x36, 0x33, 0x45,
+ 0x56, 0x01, 0xf5, 0x74, 0xae, 0xb9, 0x28, 0xac, 0x95, 0xd5, 0x3e, 0x62, 0x38, 0x59, 0x86, 0x9c,
+ 0x73, 0xd0, 0xeb, 0x81, 0xe5, 0x02, 0xef, 0xdd, 0xdd, 0xa0, 0xc7, 0xc8, 0x07, 0x93, 0x7d, 0x00,
+ 0xd3, 0xa3, 0x35, 0xea, 0x04, 0x96, 0xbc, 0xda, 0xa4, 0xb7, 0x45, 0xb0, 0x65, 0x35, 0x18, 0x35,
+ 0x46, 0xf3, 0x7f, 0x3e, 0x0a, 0x33, 0xc9, 0xfd, 0xf5, 0xc7, 0xb9, 0xe8, 0x4d, 0x18, 0xf3, 0x3b,
+ 0xfc, 0x88, 0x90, 0x74, 0x52, 0x15, 0x3d, 0x2a, 0x02, 0x8c, 0x21, 0x3e, 0xdd, 0xf5, 0xb2, 0x4f,
+ 0xc5, 0xf5, 0x72, 0xe7, 0x75, 0xbd, 0x41, 0xe7, 0xc1, 0x8f, 0xbb, 0x0f, 0x0a, 0xbf, 0x3b, 0xe0,
+ 0x8e, 0x88, 0x1e, 0x32, 0x1b, 0x85, 0x9c, 0xd1, 0x09, 0x9a, 0xb2, 0x0a, 0x58, 0x1b, 0x80, 0x22,
+ 0xdc, 0x7b, 0xb8, 0xb9, 0xb2, 0xbf, 0x90, 0xb3, 0xef, 0xcf, 0xc5, 0xff, 0x2d, 0x07, 0x53, 0xf1,
+ 0xad, 0x2b, 0x56, 0x61, 0x34, 0x5d, 0x3f, 0x90, 0x75, 0x57, 0xf2, 0xa6, 0xa1, 0x3b, 0x11, 0x0a,
+ 0x75, 0xba, 0xf3, 0x65, 0x93, 0x9b, 0x30, 0x26, 0x4f, 0xb8, 0xca, 0x64, 0xa2, 0xec, 0x59, 0x9e,
+ 0x82, 0xc5, 0x10, 0xff, 0xff, 0xa9, 0xc4, 0xf6, 0xc9, 0x0f, 0xba, 0x53, 0xc9, 0xdb, 0x03, 0xdd,
+ 0xa7, 0xbc, 0xb0, 0xeb, 0x0e, 0x46, 0x61, 0xb6, 0xab, 0x7d, 0x25, 0xbe, 0xa4, 0x96, 0x39, 0xc7,
+ 0x92, 0xda, 0xeb, 0x30, 0xc5, 0xed, 0x68, 0x27, 0xb1, 0x10, 0xa7, 0x9a, 0x9b, 0xf7, 0x62, 0x58,
+ 0x4c, 0x50, 0x9f, 0xaf, 0x44, 0x78, 0x1d, 0xa6, 0xfc, 0x4e, 0xd5, 0x37, 0x3d, 0xab, 0xcd, 0x0c,
+ 0x62, 0x7d, 0x45, 0x2e, 0xd3, 0x2b, 0x21, 0x95, 0x18, 0x16, 0x13, 0xd4, 0xa4, 0xc1, 0x8f, 0xa9,
+ 0xcb, 0xa8, 0x2f, 0x17, 0x02, 0x7a, 0x3a, 0x6d, 0x7d, 0x59, 0x9e, 0x64, 0x8f, 0xb1, 0xc0, 0x2e,
+ 0xa6, 0xa4, 0x0a, 0x73, 0x62, 0x69, 0x4c, 0x57, 0x48, 0x2d, 0xac, 0x89, 0x3a, 0x60, 0x5e, 0x2a,
+ 0x3d, 0xb7, 0x72, 0x2a, 0x25, 0x9e, 0xc1, 0xa5, 0xc7, 0x23, 0xd6, 0x1b, 0x30, 0x1d, 0x69, 0xe9,
+ 0xdf, 0xb6, 0xec, 0x70, 0x81, 0xe2, 0xd7, 0xe4, 0xa0, 0x17, 0xa2, 0x53, 0x7c, 0xcb, 0x71, 0x42,
+ 0x4c, 0x8e, 0x1c, 0xc6, 0x1a, 0x5f, 0x97, 0x09, 0x5e, 0x94, 0xfd, 0xff, 0x7b, 0x9e, 0xd9, 0x7f,
+ 0x62, 0x5b, 0x9e, 0xcc, 0x43, 0x9e, 0x9b, 0x1c, 0x0b, 0xb2, 0x6a, 0x85, 0x98, 0xdb, 0xa2, 0x8f,
+ 0x12, 0x73, 0x8e, 0x55, 0x37, 0x39, 0x85, 0xc8, 0x9e, 0x32, 0x85, 0x68, 0xc3, 0xa5, 0xc0, 0xf6,
+ 0xf7, 0xbc, 0x8e, 0x1f, 0x2c, 0x53, 0x2f, 0xf0, 0xa5, 0x45, 0xe6, 0x7a, 0xbe, 0x40, 0x66, 0x6f,
+ 0xb3, 0x92, 0xe4, 0x82, 0x69, 0xac, 0x99, 0x5d, 0x06, 0xb6, 0xbf, 0x64, 0xdb, 0xee, 0x83, 0x70,
+ 0x2b, 0x27, 0x0a, 0xb9, 0x32, 0x98, 0x2a, 0xbb, 0xdc, 0xdb, 0xac, 0x9c, 0x42, 0x89, 0x67, 0x70,
+ 0x21, 0x5b, 0xfc, 0xa9, 0xee, 0x19, 0xb6, 0x55, 0x33, 0x02, 0xca, 0x92, 0x12, 0x5f, 0x0e, 0x13,
+ 0x46, 0xff, 0x15, 0xc9, 0x9c, 0xa9, 0x9c, 0x24, 0xc1, 0xb4, 0x71, 0xc3, 0xba, 0xef, 0x2c, 0x35,
+ 0x87, 0x15, 0x9e, 0x4a, 0x0e, 0x2b, 0x3e, 0xd6, 0x79, 0x63, 0xfe, 0x06, 0x03, 0xf2, 0xb7, 0x84,
+ 0xc9, 0x5f, 0x94, 0xbf, 0xfd, 0x63, 0x0e, 0x66, 0x92, 0xbd, 0x41, 0x4f, 0x3a, 0xb1, 0xd1, 0x6f,
+ 0xcd, 0x18, 0x19, 0xc4, 0xad, 0x19, 0x8b, 0x50, 0x64, 0x46, 0xe7, 0xb7, 0x0d, 0x33, 0xbc, 0x0c,
+ 0x44, 0xa5, 0xbd, 0xed, 0x10, 0x81, 0x11, 0x0d, 0x99, 0x83, 0x91, 0x5a, 0x55, 0x9e, 0x85, 0x56,
+ 0x7b, 0xdd, 0x2b, 0x65, 0x1c, 0xa9, 0x55, 0xc9, 0x0d, 0x28, 0xc8, 0x19, 0x53, 0xb8, 0x3d, 0xcc,
+ 0xc5, 0xca, 0xe9, 0x94, 0x8f, 0x0a, 0x3b, 0xac, 0x39, 0xca, 0x10, 0x56, 0x93, 0x92, 0x5f, 0xee,
+ 0xc2, 0xfa, 0x48, 0x72, 0x70, 0x29, 0xa5, 0x77, 0x3f, 0xfe, 0xc1, 0x32, 0xe7, 0xf8, 0x60, 0x87,
+ 0x90, 0xaf, 0x5b, 0x76, 0x40, 0xbd, 0x01, 0xf5, 0x1f, 0x84, 0x4a, 0xdd, 0xe6, 0x4c, 0x45, 0x9e,
+ 0x10, 0x7f, 0xa3, 0x14, 0xc4, 0xbc, 0xf7, 0x32, 0x5f, 0xe1, 0x0d, 0x97, 0x95, 0xc2, 0x63, 0xd8,
+ 0x59, 0xf9, 0xbd, 0xcf, 0x75, 0x81, 0xc2, 0x5a, 0x0a, 0x87, 0x68, 0xd9, 0x2b, 0x0d, 0x8b, 0xa9,
+ 0x52, 0xc9, 0x32, 0x80, 0x6a, 0x94, 0x0a, 0xb7, 0x73, 0xbe, 0xc6, 0x8a, 0x63, 0xd5, 0x49, 0xe5,
+ 0xff, 0x8a, 0xaf, 0x1e, 0x6b, 0x6f, 0x9b, 0xe7, 0x34, 0x6d, 0x58, 0xfc, 0xde, 0xa7, 0xd1, 0x81,
+ 0xdc, 0xfb, 0x94, 0xf2, 0x79, 0x2f, 0xca, 0xba, 0xfe, 0x21, 0x0b, 0x53, 0xf1, 0x0f, 0x49, 0xae,
+ 0x43, 0xbe, 0xed, 0xd1, 0xba, 0xf5, 0x30, 0x79, 0xe9, 0xd0, 0x0e, 0x87, 0xa2, 0xc4, 0x12, 0x17,
+ 0xf2, 0xb6, 0x51, 0x65, 0x2e, 0x2e, 0xee, 0xac, 0x58, 0xeb, 0xfb, 0xfe, 0x85, 0x70, 0xbd, 0x22,
+ 0x14, 0xb8, 0xc9, 0xd9, 0xa3, 0x14, 0xc3, 0x04, 0xd6, 0x2d, 0x6a, 0xd7, 0xc4, 0xde, 0xf5, 0x30,
+ 0x04, 0xde, 0xe6, 0xec, 0x51, 0x8a, 0x21, 0x6f, 0x43, 0x51, 0xdc, 0xd4, 0x54, 0x2b, 0x1f, 0xcb,
+ 0xb9, 0xc9, 0x6f, 0x9c, 0xcf, 0x64, 0xf7, 0xac, 0x16, 0x8d, 0xdc, 0x71, 0x39, 0x64, 0x82, 0x11,
+ 0x3f, 0x7e, 0x21, 0x60, 0x3d, 0xa0, 0x5e, 0x25, 0x30, 0xbc, 0xf0, 0xbe, 0xbe, 0xe8, 0x42, 0x40,
+ 0x85, 0x41, 0x8d, 0x6a, 0xfe, 0x9f, 0x47, 0x61, 0x2a, 0x7e, 0x06, 0xe1, 0x29, 0xf5, 0x1d, 0xbc,
+ 0x04, 0x05, 0x3e, 0x15, 0x5c, 0xf2, 0x9c, 0xe4, 0x1d, 0x6f, 0x7b, 0x12, 0x8e, 0x8a, 0x82, 0x20,
+ 0x14, 0x8d, 0x27, 0xbb, 0xb6, 0x4f, 0x6c, 0xb6, 0xaa, 0x0b, 0xfb, 0x22, 0x36, 0x8c, 0xa7, 0x1f,
+ 0x92, 0xf7, 0x36, 0x6f, 0xe4, 0x3c, 0x15, 0x18, 0x23, 0x36, 0xcc, 0xf2, 0x3d, 0xda, 0x08, 0xe7,
+ 0x83, 0x9a, 0xe5, 0x23, 0x87, 0xa2, 0xc4, 0x92, 0x9b, 0x30, 0xe6, 0xb9, 0x36, 0x5d, 0xc2, 0x6d,
+ 0xd9, 0x6b, 0xa0, 0x16, 0x0c, 0x50, 0x80, 0x31, 0xc4, 0x0f, 0xa3, 0x58, 0x8e, 0x1b, 0x40, 0x0f,
+ 0x4b, 0x3f, 0x6b, 0x30, 0x7b, 0x24, 0xe7, 0x98, 0x15, 0xab, 0xe1, 0x18, 0x41, 0xd4, 0xe6, 0xa4,
+ 0x76, 0xce, 0xee, 0x25, 0x09, 0xb0, 0x7b, 0x4c, 0x7f, 0x11, 0xe7, 0xef, 0x99, 0x0d, 0xc7, 0xce,
+ 0xaf, 0xc4, 0xed, 0x23, 0x33, 0x04, 0xfb, 0x18, 0x19, 0xb4, 0x7d, 0x64, 0xcf, 0xb4, 0x8f, 0xaf,
+ 0xc1, 0x28, 0xbf, 0x28, 0x56, 0xd6, 0xe8, 0xaa, 0xa2, 0xe7, 0x77, 0x8c, 0xa2, 0xc0, 0x91, 0x25,
+ 0x98, 0x7e, 0x60, 0x58, 0x01, 0x8b, 0x14, 0x62, 0x57, 0x46, 0xac, 0x3c, 0x66, 0xf5, 0xe6, 0x87,
+ 0x18, 0x1a, 0x93, 0xf4, 0xbd, 0xd8, 0x61, 0x6f, 0x25, 0xf3, 0xeb, 0x30, 0xc5, 0x95, 0x5c, 0x32,
+ 0x4d, 0xb7, 0xc3, 0x77, 0x59, 0x0a, 0xf1, 0xd5, 0x86, 0x5d, 0x1d, 0xbb, 0x82, 0x09, 0xea, 0xb8,
+ 0xd5, 0x0f, 0xe6, 0x9a, 0x93, 0xb8, 0xc9, 0x5c, 0x54, 0x7a, 0xfc, 0x3e, 0x14, 0x42, 0xbb, 0x60,
+ 0x25, 0xad, 0x1a, 0x17, 0x95, 0xb4, 0xcc, 0x44, 0x38, 0x93, 0x45, 0x28, 0xba, 0x6d, 0x1a, 0xbb,
+ 0x77, 0x50, 0x25, 0x80, 0xbb, 0x21, 0x02, 0x23, 0x1a, 0x66, 0x25, 0x42, 0x6a, 0x62, 0xdd, 0xe7,
+ 0x1e, 0x03, 0x4a, 0x25, 0xe6, 0x3f, 0xca, 0x40, 0x78, 0x17, 0x11, 0x59, 0x81, 0xd1, 0xb6, 0xeb,
+ 0x05, 0xa2, 0x30, 0x1f, 0xbf, 0x75, 0x35, 0xdd, 0x9c, 0x45, 0xb3, 0x81, 0xeb, 0x05, 0x11, 0x47,
+ 0xf6, 0xcb, 0x47, 0x31, 0x98, 0xe9, 0x69, 0xda, 0x1d, 0x3f, 0xa0, 0xde, 0xfa, 0x4e, 0x52, 0xcf,
+ 0xe5, 0x10, 0x81, 0x11, 0xcd, 0xfc, 0xff, 0x64, 0x61, 0x26, 0x79, 0x64, 0x87, 0xbc, 0x07, 0x93,
+ 0xbe, 0xd5, 0x70, 0x2c, 0xa7, 0x21, 0x4b, 0xf7, 0x4c, 0xcf, 0x9d, 0x98, 0x15, 0x7d, 0x3c, 0xc6,
+ 0xd9, 0x0d, 0x6c, 0xef, 0x45, 0x4b, 0x8f, 0xd9, 0x8b, 0x4b, 0x8f, 0x1f, 0x77, 0x77, 0xb1, 0xbf,
+ 0x3b, 0xe0, 0x43, 0x53, 0x17, 0xe5, 0x01, 0xff, 0x39, 0x0a, 0xcf, 0xa5, 0x1f, 0x8f, 0x7a, 0x4a,
+ 0x53, 0x8f, 0xa8, 0x83, 0x71, 0xe4, 0xd4, 0x0e, 0xc6, 0x40, 0x95, 0x3a, 0xd9, 0x01, 0x1d, 0x77,
+ 0x52, 0x2f, 0xe0, 0x8c, 0x6a, 0x47, 0x9f, 0x14, 0xe5, 0x1e, 0x3b, 0x29, 0xba, 0x0e, 0xf9, 0x6a,
+ 0xc7, 0x3c, 0x90, 0xeb, 0xb0, 0xfa, 0xdd, 0x9e, 0x1c, 0x8a, 0x12, 0xab, 0x25, 0x9d, 0xfc, 0x99,
+ 0x49, 0x87, 0x25, 0xd1, 0x4e, 0xd0, 0x14, 0x3d, 0x9b, 0x63, 0xbd, 0x27, 0xd1, 0x70, 0x2c, 0x46,
+ 0x6c, 0x78, 0x87, 0x73, 0xdb, 0xda, 0xc7, 0x4d, 0x19, 0xff, 0xa3, 0x0e, 0xe7, 0x9d, 0xf5, 0x7d,
+ 0xdc, 0x44, 0x89, 0x25, 0x9f, 0x76, 0xc7, 0x7b, 0x73, 0x28, 0x47, 0xf2, 0x2e, 0xca, 0xea, 0x4d,
+ 0x98, 0xed, 0xfa, 0xe6, 0xe7, 0x2e, 0x8c, 0xae, 0x43, 0xde, 0xef, 0xd4, 0x19, 0x5d, 0xe2, 0x0c,
+ 0x47, 0x85, 0x43, 0x51, 0x62, 0xe7, 0x7f, 0x9c, 0x63, 0x52, 0x12, 0x07, 0xe9, 0x9e, 0x92, 0x57,
+ 0xbd, 0x06, 0x93, 0xa2, 0x34, 0xb9, 0xaf, 0x9d, 0x51, 0x28, 0x68, 0x5d, 0x92, 0x3a, 0x12, 0xe3,
+ 0xb4, 0x64, 0x9d, 0x9b, 0x49, 0xcf, 0x93, 0x7b, 0x90, 0x96, 0xc4, 0x52, 0xa8, 0x64, 0x40, 0x5e,
+ 0x86, 0x71, 0xfe, 0x10, 0xe2, 0x95, 0xcb, 0x1a, 0x9d, 0x37, 0x15, 0xaf, 0x46, 0x60, 0xd4, 0x69,
+ 0xe2, 0x4b, 0x84, 0xa3, 0x03, 0x59, 0x22, 0xec, 0xfa, 0x2a, 0x17, 0x65, 0x77, 0x3f, 0x2a, 0x80,
+ 0xba, 0xeb, 0x90, 0x98, 0x5d, 0x37, 0x4e, 0xfe, 0x5e, 0xcf, 0x0b, 0x64, 0xa1, 0x2a, 0x62, 0x01,
+ 0x2e, 0xa5, 0x28, 0x78, 0x03, 0x88, 0xbc, 0xe2, 0x50, 0x4e, 0xdf, 0xb4, 0xff, 0xaf, 0x44, 0x35,
+ 0x40, 0x57, 0xba, 0x28, 0x30, 0x65, 0x14, 0x79, 0x83, 0x5f, 0x8b, 0x1a, 0x18, 0x96, 0xa3, 0x22,
+ 0xef, 0x8b, 0xa7, 0x34, 0x66, 0x0a, 0x22, 0x75, 0xc1, 0xa9, 0xf8, 0x89, 0xd1, 0x70, 0xb2, 0x0a,
+ 0x63, 0x47, 0xae, 0xdd, 0x69, 0xc9, 0x85, 0x9a, 0xf1, 0x5b, 0x73, 0x69, 0x9c, 0xee, 0x71, 0x12,
+ 0xad, 0x7d, 0x49, 0x0c, 0xc1, 0x70, 0x2c, 0xa1, 0x30, 0xcd, 0x97, 0xe9, 0xad, 0xe0, 0x58, 0x3a,
+ 0x80, 0xdc, 0xf6, 0xba, 0x9e, 0xc6, 0x6e, 0xc7, 0xad, 0x55, 0xe2, 0xd4, 0xf2, 0xe2, 0xf8, 0x38,
+ 0x10, 0x93, 0x3c, 0xc9, 0x6d, 0x28, 0x18, 0xf5, 0xba, 0xe5, 0x58, 0xc1, 0xb1, 0x5c, 0xcb, 0xfc,
+ 0x6a, 0x1a, 0xff, 0x25, 0x49, 0x23, 0x0f, 0xb8, 0xc8, 0x5f, 0xa8, 0xc6, 0x92, 0x7d, 0x18, 0x0f,
+ 0x5c, 0x5b, 0xce, 0x10, 0x7d, 0x59, 0x30, 0x5e, 0x49, 0x63, 0xb5, 0xa7, 0xc8, 0xa2, 0xd5, 0xe2,
+ 0x08, 0xe6, 0xa3, 0xce, 0x87, 0xfc, 0x45, 0x06, 0x26, 0x1c, 0xb7, 0x46, 0x43, 0xd7, 0x93, 0xd7,
+ 0x20, 0xbe, 0x35, 0xa0, 0x3b, 0x3a, 0x17, 0xb6, 0x35, 0xde, 0xc2, 0x43, 0xd4, 0xa5, 0xa1, 0x3a,
+ 0x0a, 0x63, 0x4a, 0x10, 0x07, 0x66, 0xac, 0x96, 0xd1, 0xa0, 0x3b, 0x1d, 0x5b, 0xee, 0x1e, 0xfa,
+ 0x32, 0x79, 0xa4, 0xb6, 0xf3, 0xf2, 0xff, 0xb4, 0x47, 0x5c, 0x4d, 0x8b, 0xb4, 0x4e, 0x3d, 0x7e,
+ 0x43, 0xae, 0xba, 0x64, 0x7b, 0x3d, 0xc1, 0x09, 0xbb, 0x78, 0xb3, 0xfa, 0xb7, 0xed, 0x59, 0x2e,
+ 0xff, 0x6e, 0xb6, 0xe1, 0x8b, 0x3b, 0x4e, 0x21, 0xde, 0x39, 0xba, 0x93, 0x24, 0xc0, 0xee, 0x31,
+ 0xe4, 0x06, 0x14, 0x42, 0x20, 0x6f, 0x04, 0x96, 0x57, 0xef, 0x84, 0x63, 0x51, 0x61, 0xe7, 0xbe,
+ 0x0d, 0xb3, 0x5d, 0xef, 0xa6, 0xa7, 0x80, 0xf0, 0x37, 0x19, 0x48, 0x36, 0xc1, 0xb3, 0x19, 0x7c,
+ 0xcd, 0xf2, 0x38, 0xc3, 0xe3, 0xe4, 0xca, 0xef, 0x4a, 0x88, 0xc0, 0x88, 0x86, 0x5c, 0x83, 0x5c,
+ 0xdb, 0x08, 0x9a, 0xc9, 0xed, 0x3a, 0xc6, 0x12, 0x39, 0x86, 0xdc, 0x02, 0x60, 0xff, 0x22, 0x6d,
+ 0xd0, 0x87, 0x6d, 0x59, 0x90, 0xa8, 0xc5, 0xa8, 0x1d, 0x85, 0x41, 0x8d, 0x6a, 0xfe, 0x67, 0x79,
+ 0x98, 0x8a, 0xe7, 0x16, 0x36, 0x03, 0xa2, 0x4e, 0xad, 0xed, 0x5a, 0x4e, 0x90, 0xfc, 0x8f, 0x02,
+ 0x56, 0x25, 0x1c, 0x15, 0x05, 0xcb, 0x93, 0x2d, 0x1a, 0x34, 0xdd, 0x5a, 0x32, 0x4f, 0x6e, 0x71,
+ 0x28, 0x4a, 0x2c, 0x57, 0xdf, 0xf5, 0x02, 0xa9, 0x56, 0xa4, 0xbe, 0xeb, 0x05, 0xc8, 0x31, 0xe1,
+ 0x6e, 0x63, 0xee, 0x94, 0xdd, 0xc6, 0x06, 0xcc, 0xb0, 0x68, 0x45, 0xbd, 0x65, 0xea, 0x05, 0x4f,
+ 0xbc, 0xf9, 0x5d, 0x49, 0xb0, 0xc0, 0x2e, 0xa6, 0xfc, 0x7f, 0xa9, 0xe0, 0x30, 0x3e, 0xf8, 0x09,
+ 0x7b, 0xfa, 0x2b, 0x71, 0x0e, 0x98, 0x64, 0x39, 0x8c, 0x35, 0xa5, 0xf8, 0x77, 0x7c, 0xe2, 0xb3,
+ 0x99, 0x85, 0x01, 0x9d, 0xcd, 0x24, 0x77, 0x60, 0x2a, 0x7a, 0xb9, 0xcc, 0xfe, 0xe4, 0xf9, 0x80,
+ 0x6b, 0x52, 0x95, 0x52, 0xb4, 0x65, 0x5f, 0x89, 0xd1, 0x61, 0x62, 0x1c, 0x59, 0x85, 0x49, 0xf5,
+ 0xfe, 0x38, 0x23, 0x88, 0x77, 0xee, 0x27, 0x19, 0x49, 0x32, 0x8c, 0x8f, 0xea, 0x2b, 0xab, 0x97,
+ 0x17, 0x3e, 0xfb, 0xf2, 0xca, 0x33, 0x9f, 0x7f, 0x79, 0xe5, 0x99, 0x5f, 0x7c, 0x79, 0xe5, 0x99,
+ 0x8f, 0x4e, 0xae, 0x64, 0x3e, 0x3b, 0xb9, 0x92, 0xf9, 0xfc, 0xe4, 0x4a, 0xe6, 0x17, 0x27, 0x57,
+ 0x32, 0x5f, 0x9c, 0x5c, 0xc9, 0xfc, 0xf8, 0x5f, 0xaf, 0x3c, 0xf3, 0x9d, 0x42, 0xf8, 0x35, 0xfe,
+ 0x2f, 0x00, 0x00, 0xff, 0xff, 0xa8, 0x42, 0x30, 0x92, 0x2e, 0x6f, 0x00, 0x00,
}
func (m *AMQPConsumeConfig) Marshal() (dAtA []byte, err error) {
@@ -2551,6 +2552,13 @@ func (m *EventSourceSpec) MarshalToSizedBuffer(dAtA []byte) (int, error) {
_ = i
var l int
_ = l
+ if m.Replicas != nil {
+ i = encodeVarintGenerated(dAtA, i, uint64(*m.Replicas))
+ i--
+ dAtA[i] = 0x1
+ i--
+ dAtA[i] = 0xe8
+ }
if len(m.Generic) > 0 {
keysForGeneric := make([]string, 0, len(m.Generic))
for k := range m.Generic {
@@ -3273,8 +3281,8 @@ func (m *EventSourceSpec) MarshalToSizedBuffer(dAtA []byte) (int, error) {
dAtA[i] = 0x2a
}
}
- if m.Replica != nil {
- i = encodeVarintGenerated(dAtA, i, uint64(*m.Replica))
+ if m.DeprecatedReplica != nil {
+ i = encodeVarintGenerated(dAtA, i, uint64(*m.DeprecatedReplica))
i--
dAtA[i] = 0x20
}
@@ -6087,8 +6095,8 @@ func (m *EventSourceSpec) Size() (n int) {
l = m.Service.Size()
n += 1 + l + sovGenerated(uint64(l))
}
- if m.Replica != nil {
- n += 1 + sovGenerated(uint64(*m.Replica))
+ if m.DeprecatedReplica != nil {
+ n += 1 + sovGenerated(uint64(*m.DeprecatedReplica))
}
if len(m.Minio) > 0 {
for k, v := range m.Minio {
@@ -6306,6 +6314,9 @@ func (m *EventSourceSpec) Size() (n int) {
n += mapEntrySize + 2 + sovGenerated(uint64(mapEntrySize))
}
}
+ if m.Replicas != nil {
+ n += 2 + sovGenerated(uint64(*m.Replicas))
+ }
return n
}
@@ -7657,7 +7668,7 @@ func (this *EventSourceSpec) String() string {
`EventBusName:` + fmt.Sprintf("%v", this.EventBusName) + `,`,
`Template:` + strings.Replace(this.Template.String(), "Template", "Template", 1) + `,`,
`Service:` + strings.Replace(this.Service.String(), "Service", "Service", 1) + `,`,
- `Replica:` + valueToStringGenerated(this.Replica) + `,`,
+ `DeprecatedReplica:` + valueToStringGenerated(this.DeprecatedReplica) + `,`,
`Minio:` + mapStringForMinio + `,`,
`Calendar:` + mapStringForCalendar + `,`,
`File:` + mapStringForFile + `,`,
@@ -7682,6 +7693,7 @@ func (this *EventSourceSpec) String() string {
`NSQ:` + mapStringForNSQ + `,`,
`Pulsar:` + mapStringForPulsar + `,`,
`Generic:` + mapStringForGeneric + `,`,
+ `Replicas:` + valueToStringGenerated(this.Replicas) + `,`,
`}`,
}, "")
return s
@@ -11278,7 +11290,7 @@ func (m *EventSourceSpec) Unmarshal(dAtA []byte) error {
iNdEx = postIndex
case 4:
if wireType != 0 {
- return fmt.Errorf("proto: wrong wireType = %d for field Replica", wireType)
+ return fmt.Errorf("proto: wrong wireType = %d for field DeprecatedReplica", wireType)
}
var v int32
for shift := uint(0); ; shift += 7 {
@@ -11295,7 +11307,7 @@ func (m *EventSourceSpec) Unmarshal(dAtA []byte) error {
break
}
}
- m.Replica = &v
+ m.DeprecatedReplica = &v
case 5:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Minio", wireType)
@@ -14392,6 +14404,26 @@ func (m *EventSourceSpec) Unmarshal(dAtA []byte) error {
}
m.Generic[mapkey] = *mapvalue
iNdEx = postIndex
+ case 29:
+ if wireType != 0 {
+ return fmt.Errorf("proto: wrong wireType = %d for field Replicas", wireType)
+ }
+ var v int32
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return ErrIntOverflowGenerated
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ v |= int32(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ m.Replicas = &v
default:
iNdEx = preIndex
skippy, err := skipGenerated(dAtA[iNdEx:])
diff --git a/pkg/apis/eventsource/v1alpha1/generated.proto b/pkg/apis/eventsource/v1alpha1/generated.proto
index 04de4468ac..e627a064b8 100644
--- a/pkg/apis/eventsource/v1alpha1/generated.proto
+++ b/pkg/apis/eventsource/v1alpha1/generated.proto
@@ -313,7 +313,8 @@ message EventSourceSpec {
// +optional
optional Service service = 3;
- // Replica is the event source deployment replicas
+ // DeprecatedReplica is the event source deployment replicas
+ // Deprecated: use replicas instead, will be removed in v1.5
optional int32 replica = 4;
// Minio event sources
@@ -387,6 +388,9 @@ message EventSourceSpec {
// Generic event source
map generic = 28;
+
+ // Replicas is the event source deployment replicas
+ optional int32 replicas = 29;
}
// EventSourceStatus holds the status of the event-source resource
diff --git a/pkg/apis/eventsource/v1alpha1/openapi_generated.go b/pkg/apis/eventsource/v1alpha1/openapi_generated.go
index 773531746c..ec480088e4 100644
--- a/pkg/apis/eventsource/v1alpha1/openapi_generated.go
+++ b/pkg/apis/eventsource/v1alpha1/openapi_generated.go
@@ -749,7 +749,7 @@ func schema_pkg_apis_eventsource_v1alpha1_EventSourceSpec(ref common.ReferenceCa
},
"replica": {
SchemaProps: spec.SchemaProps{
- Description: "Replica is the event source deployment replicas",
+ Description: "DeprecatedReplica is the event source deployment replicas Deprecated: use replicas instead, will be removed in v1.5",
Type: []string{"integer"},
Format: "int32",
},
@@ -1090,6 +1090,13 @@ func schema_pkg_apis_eventsource_v1alpha1_EventSourceSpec(ref common.ReferenceCa
},
},
},
+ "replicas": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Replicas is the event source deployment replicas",
+ Type: []string{"integer"},
+ Format: "int32",
+ },
+ },
},
},
},
diff --git a/pkg/apis/eventsource/v1alpha1/types.go b/pkg/apis/eventsource/v1alpha1/types.go
index fdc4743c40..6955b9df59 100644
--- a/pkg/apis/eventsource/v1alpha1/types.go
+++ b/pkg/apis/eventsource/v1alpha1/types.go
@@ -58,8 +58,9 @@ type EventSourceSpec struct {
// Service is the specifications of the service to expose the event source
// +optional
Service *Service `json:"service,omitempty" protobuf:"bytes,3,opt,name=service"`
- // Replica is the event source deployment replicas
- Replica *int32 `json:"replica,omitempty" protobuf:"varint,4,opt,name=replica"`
+ // DeprecatedReplica is the event source deployment replicas
+ // Deprecated: use replicas instead, will be removed in v1.5
+ DeprecatedReplica *int32 `json:"replica,omitempty" protobuf:"varint,4,opt,name=replica"`
// Minio event sources
Minio map[string]apicommon.S3Artifact `json:"minio,omitempty" protobuf:"bytes,5,rep,name=minio"`
@@ -109,6 +110,24 @@ type EventSourceSpec struct {
Pulsar map[string]PulsarEventSource `json:"pulsar,omitempty" protobuf:"bytes,27,opt,name=pulsar"`
// Generic event source
Generic map[string]GenericEventSource `json:"generic,omitempty" protobuf:"bytes,28,rep,name=generic"`
+ // Replicas is the event source deployment replicas
+ Replicas *int32 `json:"replicas,omitempty" protobuf:"varint,29,opt,name=replicas"`
+}
+
+func (e EventSourceSpec) GetReplicas() int32 {
+ if e.Replicas == nil && e.DeprecatedReplica == nil {
+ return 1
+ }
+ var replicas int32
+ if e.Replicas != nil {
+ replicas = *e.Replicas
+ } else {
+ replicas = *e.DeprecatedReplica
+ }
+ if replicas < 1 {
+ replicas = 1
+ }
+ return replicas
}
// Template holds the information of an EventSource deployment template
diff --git a/pkg/apis/eventsource/v1alpha1/zz_generated.deepcopy.go b/pkg/apis/eventsource/v1alpha1/zz_generated.deepcopy.go
index 77d0c0bb93..4a02eb29a9 100644
--- a/pkg/apis/eventsource/v1alpha1/zz_generated.deepcopy.go
+++ b/pkg/apis/eventsource/v1alpha1/zz_generated.deepcopy.go
@@ -391,8 +391,8 @@ func (in *EventSourceSpec) DeepCopyInto(out *EventSourceSpec) {
*out = new(Service)
(*in).DeepCopyInto(*out)
}
- if in.Replica != nil {
- in, out := &in.Replica, &out.Replica
+ if in.DeprecatedReplica != nil {
+ in, out := &in.DeprecatedReplica, &out.DeprecatedReplica
*out = new(int32)
**out = **in
}
@@ -564,6 +564,11 @@ func (in *EventSourceSpec) DeepCopyInto(out *EventSourceSpec) {
(*out)[key] = *val.DeepCopy()
}
}
+ if in.Replicas != nil {
+ in, out := &in.Replicas, &out.Replicas
+ *out = new(int32)
+ **out = **in
+ }
return
}
diff --git a/pkg/apis/sensor/v1alpha1/generated.pb.go b/pkg/apis/sensor/v1alpha1/generated.pb.go
index e2916910b4..372dd7af45 100644
--- a/pkg/apis/sensor/v1alpha1/generated.pb.go
+++ b/pkg/apis/sensor/v1alpha1/generated.pb.go
@@ -1133,244 +1133,245 @@ func init() {
}
var fileDescriptor_6c4bded897df1f16 = []byte{
- // 3790 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x3b, 0x4b, 0x6c, 0x1c, 0xc9,
- 0x75, 0x9a, 0x1f, 0x39, 0xf3, 0x38, 0x12, 0xa9, 0x92, 0xb4, 0xe6, 0x32, 0xbb, 0xa4, 0x30, 0x46,
- 0x1c, 0xd9, 0xb0, 0x87, 0xbb, 0x2b, 0x27, 0xa6, 0x95, 0xc0, 0xde, 0x19, 0x92, 0x12, 0x25, 0x52,
- 0x22, 0xb7, 0x7a, 0xb8, 0x0b, 0x24, 0x01, 0xd6, 0xc5, 0x9e, 0x9a, 0x99, 0x5e, 0xf6, 0x74, 0xf7,
- 0x76, 0xd5, 0x50, 0x99, 0x00, 0x49, 0x0c, 0x18, 0x39, 0x25, 0x88, 0x03, 0xe4, 0x92, 0x53, 0x92,
- 0x4b, 0x6e, 0xb9, 0xe5, 0x18, 0xc0, 0x40, 0x72, 0xda, 0xa3, 0x13, 0x20, 0x80, 0x0f, 0x01, 0x91,
- 0xa5, 0x0f, 0x39, 0x05, 0xc6, 0x02, 0x39, 0xed, 0x25, 0x41, 0xfd, 0xba, 0xab, 0x7b, 0x46, 0x2b,
- 0x52, 0x43, 0x50, 0x87, 0xdc, 0xa6, 0xdf, 0x7b, 0xf5, 0x5e, 0xd5, 0xab, 0x57, 0xef, 0x57, 0x35,
- 0xb0, 0xd3, 0xf7, 0xf8, 0x60, 0x74, 0xd4, 0x74, 0xc3, 0xe1, 0x3a, 0x89, 0xfb, 0x61, 0x14, 0x87,
- 0x9f, 0xc8, 0x1f, 0xdf, 0xa1, 0x27, 0x34, 0xe0, 0x6c, 0x3d, 0x3a, 0xee, 0xaf, 0x93, 0xc8, 0x63,
- 0xeb, 0x8c, 0x06, 0x2c, 0x8c, 0xd7, 0x4f, 0xde, 0x25, 0x7e, 0x34, 0x20, 0xef, 0xae, 0xf7, 0x69,
- 0x40, 0x63, 0xc2, 0x69, 0xb7, 0x19, 0xc5, 0x21, 0x0f, 0xd1, 0x46, 0xca, 0xa9, 0x69, 0x38, 0xc9,
- 0x1f, 0x1f, 0x2b, 0x4e, 0xcd, 0xe8, 0xb8, 0xdf, 0x14, 0x9c, 0x9a, 0x8a, 0x53, 0xd3, 0x70, 0x5a,
- 0xf9, 0xe1, 0xb9, 0xe7, 0xe0, 0x86, 0xc3, 0x61, 0x18, 0xe4, 0x45, 0xaf, 0x7c, 0xc7, 0x62, 0xd0,
- 0x0f, 0xfb, 0xe1, 0xba, 0x04, 0x1f, 0x8d, 0x7a, 0xf2, 0x4b, 0x7e, 0xc8, 0x5f, 0x9a, 0xbc, 0x71,
- 0xbc, 0xc1, 0x9a, 0x5e, 0x28, 0x58, 0xae, 0xbb, 0x61, 0x4c, 0xd7, 0x4f, 0x26, 0x56, 0xb3, 0xf2,
- 0xdd, 0x94, 0x66, 0x48, 0xdc, 0x81, 0x17, 0xd0, 0x78, 0x9c, 0xce, 0x63, 0x48, 0x39, 0x99, 0x36,
- 0x6a, 0xfd, 0x45, 0xa3, 0xe2, 0x51, 0xc0, 0xbd, 0x21, 0x9d, 0x18, 0xf0, 0x5b, 0x2f, 0x1b, 0xc0,
- 0xdc, 0x01, 0x1d, 0x92, 0xfc, 0xb8, 0xc6, 0x5f, 0x95, 0x61, 0xa9, 0xf5, 0x91, 0xb3, 0x47, 0x86,
- 0x47, 0x5d, 0xd2, 0x89, 0xbd, 0x7e, 0x9f, 0xc6, 0x68, 0x03, 0xea, 0xbd, 0x51, 0xe0, 0x72, 0x2f,
- 0x0c, 0x9e, 0x91, 0x21, 0x5d, 0x2e, 0xdc, 0x2d, 0xdc, 0xab, 0xb5, 0x6f, 0x7f, 0x76, 0xba, 0x76,
- 0xed, 0xec, 0x74, 0xad, 0xfe, 0xd0, 0xc2, 0xe1, 0x0c, 0x25, 0xc2, 0x50, 0x23, 0xae, 0x4b, 0x19,
- 0xdb, 0xa5, 0xe3, 0xe5, 0xe2, 0xdd, 0xc2, 0xbd, 0x85, 0xf7, 0x7e, 0xbd, 0xa9, 0xa6, 0x26, 0xb6,
- 0xac, 0x29, 0xb4, 0xd4, 0x3c, 0x79, 0xb7, 0xe9, 0x50, 0x37, 0xa6, 0x7c, 0x97, 0x8e, 0x1d, 0xea,
- 0x53, 0x97, 0x87, 0x71, 0xfb, 0xfa, 0xd9, 0xe9, 0x5a, 0xad, 0x65, 0xc6, 0xe2, 0x94, 0x8d, 0xe0,
- 0xc9, 0x0c, 0xf9, 0x72, 0xe9, 0xc2, 0x3c, 0x13, 0x30, 0x4e, 0xd9, 0xa0, 0x6f, 0xc0, 0x5c, 0x4c,
- 0xfb, 0x5e, 0x18, 0x2c, 0x97, 0xe5, 0xda, 0x6e, 0xe8, 0xb5, 0xcd, 0x61, 0x09, 0xc5, 0x1a, 0x8b,
- 0x46, 0x30, 0x1f, 0x91, 0xb1, 0x1f, 0x92, 0xee, 0x72, 0xe5, 0x6e, 0xe9, 0xde, 0xc2, 0x7b, 0x4f,
- 0x9a, 0xaf, 0x6a, 0x9d, 0x4d, 0xad, 0xdd, 0x03, 0x12, 0x93, 0x21, 0xe5, 0x34, 0x6e, 0x2f, 0x6a,
- 0xa1, 0xf3, 0x07, 0x4a, 0x04, 0x36, 0xb2, 0xd0, 0x1f, 0x03, 0x44, 0x86, 0x8c, 0x2d, 0xcf, 0x5d,
- 0xba, 0x64, 0xa4, 0x25, 0x43, 0x02, 0x62, 0xd8, 0x92, 0xd8, 0x38, 0x2d, 0xc1, 0xad, 0x56, 0xdc,
- 0x0f, 0x3f, 0x0a, 0xe3, 0xe3, 0x9e, 0x1f, 0x3e, 0x37, 0x86, 0x11, 0xc0, 0x1c, 0x0b, 0x47, 0xb1,
- 0xab, 0x4c, 0x62, 0xa6, 0x39, 0xb5, 0x62, 0xee, 0xf5, 0x88, 0xcb, 0xf7, 0x42, 0x97, 0x08, 0xf3,
- 0x69, 0x83, 0x50, 0xbf, 0x23, 0xb9, 0x63, 0x2d, 0x05, 0xed, 0x40, 0x2d, 0x8c, 0x84, 0xbd, 0x8a,
- 0x9d, 0x2a, 0xca, 0x9d, 0xfa, 0x96, 0x9e, 0x7a, 0x6d, 0xdf, 0x20, 0xbe, 0x3c, 0x5d, 0xbb, 0x63,
- 0x4f, 0x36, 0x41, 0xe0, 0x74, 0x70, 0x4e, 0xa3, 0xa5, 0xab, 0xd6, 0x28, 0xfa, 0xf3, 0x02, 0xdc,
- 0xee, 0xc7, 0xe1, 0x28, 0xfa, 0x90, 0xc6, 0x4c, 0xcc, 0x8d, 0x6a, 0x45, 0x96, 0xa5, 0x22, 0x1f,
- 0x58, 0x06, 0x9d, 0x9c, 0xdf, 0x54, 0xbc, 0x70, 0x13, 0xc2, 0xc4, 0x1f, 0x4d, 0xe1, 0xd0, 0x7e,
- 0x4b, 0x8b, 0xbe, 0x3d, 0x0d, 0x8b, 0xa7, 0x4a, 0x6d, 0x7c, 0x21, 0x8e, 0x7d, 0x6e, 0x07, 0x90,
- 0x03, 0x45, 0x76, 0x5f, 0xef, 0xec, 0x6f, 0x9f, 0x5f, 0x37, 0xca, 0x97, 0x36, 0x9d, 0xfb, 0x86,
- 0x61, 0x7b, 0xee, 0xec, 0x74, 0xad, 0xe8, 0xdc, 0xc7, 0x45, 0x76, 0x1f, 0x35, 0x60, 0xce, 0x0b,
- 0x7c, 0x2f, 0xa0, 0x7a, 0xff, 0xe4, 0x36, 0x3f, 0x96, 0x10, 0xac, 0x31, 0xa8, 0x0b, 0xe5, 0x9e,
- 0xe7, 0x53, 0x7d, 0xb8, 0x1f, 0xbe, 0xfa, 0xb6, 0x3c, 0xf4, 0x7c, 0x9a, 0xcc, 0xa2, 0x7a, 0x76,
- 0xba, 0x56, 0x16, 0x10, 0x2c, 0xb9, 0xa3, 0x1f, 0x41, 0x69, 0x14, 0xfb, 0x5a, 0xe1, 0xdb, 0xaf,
- 0x2e, 0xe4, 0x10, 0xef, 0x25, 0x32, 0xe6, 0xcf, 0x4e, 0xd7, 0x4a, 0x87, 0x78, 0x0f, 0x0b, 0xd6,
- 0xe8, 0x10, 0x6a, 0x6e, 0x18, 0xf4, 0xbc, 0xfe, 0x90, 0x44, 0xcb, 0x15, 0x29, 0xe7, 0xde, 0x34,
- 0x4f, 0xb5, 0x29, 0x89, 0x9e, 0x92, 0x68, 0xc2, 0x59, 0x6d, 0x9a, 0xe1, 0x38, 0xe5, 0x24, 0x26,
- 0xde, 0xf7, 0xf8, 0xf2, 0xdc, 0xac, 0x13, 0x7f, 0xe4, 0xf1, 0xec, 0xc4, 0x1f, 0x79, 0x1c, 0x0b,
- 0xd6, 0xc8, 0x85, 0x6a, 0x6c, 0x0c, 0x72, 0x5e, 0x8a, 0xf9, 0xfe, 0x85, 0xf7, 0x3f, 0xb1, 0xc7,
- 0xfa, 0xd9, 0xe9, 0x5a, 0x35, 0xb1, 0xbf, 0x84, 0x71, 0xe3, 0x1f, 0xcb, 0x70, 0xa7, 0xf5, 0x87,
- 0xa3, 0x98, 0x6e, 0x0b, 0x06, 0x3b, 0xa3, 0x23, 0x66, 0xdc, 0xca, 0x5d, 0x28, 0xf7, 0x3e, 0xed,
- 0x06, 0x3a, 0xce, 0xd4, 0xb5, 0x3d, 0x97, 0x1f, 0x7e, 0xb0, 0xf5, 0x0c, 0x4b, 0x0c, 0xfa, 0x26,
- 0xcc, 0x0f, 0x46, 0x47, 0x32, 0x18, 0x29, 0x33, 0x4a, 0x7c, 0xe7, 0x8e, 0x02, 0x63, 0x83, 0x47,
- 0x11, 0xdc, 0x62, 0x03, 0x12, 0xd3, 0x6e, 0x12, 0x4c, 0xe4, 0xb0, 0x0b, 0x05, 0x8e, 0xaf, 0x9d,
- 0x9d, 0xae, 0xdd, 0x72, 0x26, 0xb9, 0xe0, 0x69, 0xac, 0x51, 0x17, 0x16, 0x73, 0x60, 0x6d, 0x64,
- 0xe7, 0x94, 0x76, 0xeb, 0xec, 0x74, 0x6d, 0x31, 0x27, 0x0d, 0xe7, 0x59, 0xfe, 0x7f, 0x0d, 0x45,
- 0xff, 0x53, 0x81, 0xeb, 0x9b, 0x23, 0xc6, 0xc3, 0xa1, 0xb1, 0x96, 0x75, 0x91, 0x0f, 0xc4, 0x27,
- 0x34, 0x3e, 0xc4, 0x7b, 0xda, 0x64, 0x6e, 0x9a, 0xa0, 0xe0, 0x18, 0x04, 0x4e, 0x69, 0x44, 0xb0,
- 0x67, 0xd4, 0x1d, 0xc5, 0xca, 0x76, 0xaa, 0x69, 0xb0, 0x77, 0x24, 0x14, 0x6b, 0x2c, 0x3a, 0x04,
- 0x70, 0x69, 0xcc, 0xd5, 0x06, 0x5d, 0xcc, 0x60, 0x6e, 0x88, 0x15, 0x6c, 0x26, 0x83, 0xb1, 0xc5,
- 0x08, 0x3d, 0x01, 0xa4, 0xe6, 0x22, 0x8c, 0x65, 0xff, 0x84, 0xc6, 0xb1, 0xd7, 0xa5, 0x3a, 0xef,
- 0x58, 0xd1, 0x53, 0x41, 0xce, 0x04, 0x05, 0x9e, 0x32, 0x0a, 0x31, 0x28, 0xb3, 0x88, 0xba, 0xda,
- 0x02, 0x3e, 0x78, 0xf5, 0x7d, 0xc8, 0xa8, 0xb4, 0xe9, 0x44, 0xd4, 0xdd, 0x0e, 0x78, 0x3c, 0x4e,
- 0x0f, 0x9f, 0x00, 0x61, 0x29, 0xec, 0x75, 0x9b, 0x80, 0x6d, 0xf9, 0xf3, 0x57, 0x68, 0xf9, 0x6d,
- 0xa8, 0x8b, 0x5d, 0x14, 0x11, 0xe4, 0x80, 0xf0, 0xc1, 0x72, 0x55, 0xee, 0xd8, 0xaa, 0xa6, 0x7f,
- 0x63, 0x8b, 0x46, 0x31, 0x75, 0x45, 0x2a, 0xbd, 0x69, 0x51, 0xe1, 0xcc, 0x98, 0x95, 0xef, 0x41,
- 0x2d, 0xd1, 0x2d, 0x5a, 0x82, 0xd2, 0x31, 0x1d, 0x2b, 0x93, 0xc5, 0xe2, 0x27, 0xba, 0x0d, 0x95,
- 0x13, 0xe2, 0x8f, 0xb4, 0x53, 0xc3, 0xea, 0xe3, 0x41, 0x71, 0xa3, 0xd0, 0xf8, 0xef, 0x02, 0xc0,
- 0x16, 0xe1, 0xe4, 0xa1, 0xe7, 0x73, 0xe5, 0x21, 0x23, 0x31, 0x87, 0x9c, 0x87, 0x94, 0x12, 0x25,
- 0x06, 0x7d, 0x1b, 0xca, 0x7c, 0x1c, 0x19, 0xf7, 0xb8, 0x6c, 0x28, 0x3a, 0xe3, 0x88, 0x7e, 0x79,
- 0xba, 0x56, 0x7d, 0xe2, 0xec, 0x3f, 0x13, 0xbf, 0xb1, 0xa4, 0x42, 0x6b, 0x46, 0xb0, 0xc8, 0x84,
- 0x6a, 0xed, 0xda, 0xd9, 0xe9, 0x5a, 0xe5, 0x43, 0x01, 0xd0, 0x73, 0x40, 0xef, 0x03, 0xb8, 0xe1,
- 0x50, 0x6c, 0x02, 0x0f, 0x63, 0x6d, 0xac, 0x77, 0xcd, 0x3e, 0x6d, 0x26, 0x98, 0x2f, 0x33, 0x5f,
- 0xd8, 0x1a, 0x83, 0xbe, 0x0d, 0x55, 0x4e, 0x87, 0x91, 0x4f, 0x38, 0x95, 0xb1, 0xb0, 0xd6, 0x5e,
- 0xd2, 0xe3, 0xab, 0x1d, 0x0d, 0xc7, 0x09, 0x45, 0xc3, 0x83, 0xc5, 0x2d, 0x1a, 0xd1, 0xa0, 0x4b,
- 0x03, 0x77, 0x2c, 0x13, 0x19, 0xb1, 0xe6, 0x20, 0xad, 0x3e, 0x92, 0x35, 0x4b, 0x3f, 0x2c, 0x31,
- 0xe8, 0xbb, 0x50, 0xef, 0x9a, 0x41, 0x1e, 0x65, 0xcb, 0x45, 0xb9, 0x98, 0x25, 0x51, 0xa3, 0x6c,
- 0x59, 0x70, 0x9c, 0xa1, 0x6a, 0xfc, 0x4d, 0x01, 0x2a, 0x32, 0x04, 0xa1, 0x21, 0xcc, 0xbb, 0x61,
- 0xc0, 0xe9, 0x1f, 0x70, 0x9d, 0xf5, 0xcc, 0x90, 0x7a, 0x48, 0x8e, 0x9b, 0x8a, 0x5b, 0x7b, 0x41,
- 0x18, 0x94, 0xfe, 0xc0, 0x46, 0x06, 0x7a, 0x0b, 0xca, 0x5d, 0xc2, 0x89, 0xdc, 0xa2, 0xba, 0x4a,
- 0x4f, 0xc4, 0x16, 0x63, 0x09, 0x7d, 0x50, 0xfd, 0xeb, 0xbf, 0x5b, 0xbb, 0xf6, 0xe3, 0xff, 0xb8,
- 0x7b, 0xad, 0xf1, 0x45, 0x11, 0xea, 0x36, 0x3b, 0xb4, 0x02, 0x45, 0xaf, 0xab, 0xf5, 0x00, 0x5a,
- 0x0f, 0xc5, 0xc7, 0x5b, 0xb8, 0xe8, 0x75, 0xa5, 0x73, 0x53, 0x81, 0xbb, 0x98, 0xad, 0x64, 0x72,
- 0xa9, 0xf4, 0x6f, 0xc2, 0x82, 0x38, 0xcc, 0x27, 0x2a, 0x11, 0x94, 0xde, 0xad, 0xd6, 0xbe, 0xa5,
- 0x89, 0x17, 0x84, 0x91, 0x9a, 0x1c, 0xd1, 0xa6, 0x13, 0x9b, 0x20, 0xcd, 0xaa, 0x9c, 0xdd, 0x04,
- 0xcb, 0x94, 0x5a, 0xb0, 0x28, 0xe6, 0x2f, 0x17, 0x19, 0x70, 0x49, 0xac, 0xb6, 0xfb, 0x6b, 0x9a,
- 0x78, 0x51, 0x2c, 0x72, 0x53, 0xa1, 0xe5, 0xb8, 0x3c, 0xbd, 0x88, 0xee, 0x6c, 0x74, 0xf4, 0x09,
- 0x75, 0x55, 0x92, 0x63, 0x45, 0x77, 0x47, 0x81, 0xb1, 0xc1, 0xa3, 0x3d, 0x28, 0x8b, 0x72, 0x56,
- 0x67, 0x29, 0xdf, 0x3a, 0x5f, 0xda, 0xdc, 0xf1, 0x86, 0xd4, 0x9a, 0xbb, 0x27, 0x0c, 0x48, 0x70,
- 0xb1, 0x74, 0xfe, 0xb7, 0x45, 0x58, 0x94, 0x3a, 0x4f, 0xad, 0xf0, 0x1c, 0x06, 0xd8, 0x82, 0x45,
- 0x69, 0x17, 0x4a, 0xd7, 0x56, 0x7a, 0x92, 0xac, 0x7d, 0x3b, 0x8b, 0xc6, 0x79, 0x7a, 0x11, 0xcd,
- 0x24, 0x28, 0x49, 0x52, 0xac, 0x68, 0xb6, 0x6d, 0x10, 0x38, 0xa5, 0x41, 0x27, 0x30, 0xdf, 0x93,
- 0x4e, 0x81, 0xe9, 0x2c, 0x63, 0x7f, 0x46, 0xa3, 0x4d, 0x57, 0xac, 0x9c, 0x8d, 0xb2, 0x5e, 0xf5,
- 0x9b, 0x61, 0x23, 0xac, 0xf1, 0x6f, 0x45, 0xb8, 0x33, 0x95, 0x1e, 0x1d, 0xe9, 0x3d, 0x51, 0x67,
- 0x68, 0x6b, 0x06, 0xe7, 0xec, 0x0d, 0xa9, 0x9e, 0x43, 0x35, 0xbb, 0x53, 0xf6, 0x51, 0x2d, 0x5e,
- 0xc1, 0x51, 0xed, 0xe9, 0xa3, 0xaa, 0x0a, 0xc5, 0x19, 0x96, 0x94, 0xfa, 0xf0, 0xd4, 0x80, 0xd2,
- 0x43, 0xdf, 0x78, 0x07, 0xea, 0x76, 0xcd, 0xf2, 0x72, 0x3f, 0xdf, 0xf8, 0x55, 0x19, 0x16, 0xac,
- 0x44, 0x1e, 0xbd, 0xad, 0xaa, 0x1a, 0x35, 0x60, 0x41, 0x0f, 0x48, 0x4b, 0x92, 0x1f, 0xc0, 0x0d,
- 0xd7, 0x0f, 0x03, 0xba, 0xe5, 0xc5, 0x32, 0x53, 0x19, 0x6b, 0x03, 0x7d, 0x43, 0x53, 0xde, 0xd8,
- 0xcc, 0x60, 0x71, 0x8e, 0x1a, 0xb9, 0x50, 0x71, 0x63, 0xda, 0x65, 0x3a, 0x1d, 0x6a, 0xcf, 0x54,
- 0x7d, 0x6c, 0x0a, 0x4e, 0x2a, 0xd8, 0xc8, 0x9f, 0x58, 0xf1, 0x46, 0xbf, 0x07, 0x75, 0xc6, 0x06,
- 0x32, 0x9f, 0x92, 0xa9, 0xd7, 0x85, 0xb2, 0x67, 0xe9, 0xee, 0x1d, 0x67, 0x27, 0x19, 0x8e, 0x33,
- 0xcc, 0x44, 0x1c, 0xea, 0x99, 0x10, 0x9e, 0x8b, 0x43, 0x49, 0xd0, 0x4e, 0x28, 0x84, 0x3b, 0x3d,
- 0x8a, 0x49, 0xe0, 0x0e, 0xb4, 0x27, 0x4a, 0xdc, 0x69, 0x5b, 0x42, 0xb1, 0xc6, 0x0a, 0xb5, 0x73,
- 0xd2, 0x97, 0x6e, 0xc8, 0x52, 0x7b, 0x87, 0xf4, 0xb1, 0x80, 0x0b, 0x74, 0x4c, 0x7b, 0x3a, 0x65,
- 0x48, 0xd0, 0x98, 0xf6, 0xb0, 0x80, 0xa3, 0x21, 0xcc, 0xc5, 0x74, 0x18, 0x72, 0xba, 0x5c, 0x93,
- 0x4b, 0x7d, 0x3c, 0x93, 0x5a, 0xb1, 0x64, 0xa5, 0x4a, 0x47, 0x55, 0x5f, 0x2b, 0x08, 0xd6, 0x42,
- 0xd0, 0xef, 0x00, 0x28, 0x95, 0x48, 0x25, 0x80, 0x9c, 0x54, 0xd2, 0x35, 0x48, 0xf3, 0x18, 0xa5,
- 0x44, 0xa9, 0x10, 0x8b, 0xbe, 0xf1, 0x0f, 0x05, 0xa8, 0x9a, 0xcd, 0x43, 0xfb, 0x50, 0x1d, 0x31,
- 0x1a, 0x27, 0x7e, 0xf1, 0xdc, 0xdb, 0x24, 0xab, 0xc2, 0x43, 0x3d, 0x14, 0x27, 0x4c, 0x04, 0xc3,
- 0x88, 0x30, 0xf6, 0x3c, 0x8c, 0xbb, 0x17, 0x6b, 0x18, 0x4a, 0x86, 0x07, 0x7a, 0x28, 0x4e, 0x98,
- 0x34, 0x3e, 0x80, 0xc5, 0x9c, 0x4e, 0xce, 0xe1, 0xc8, 0xdf, 0x82, 0xf2, 0x28, 0xf6, 0x4d, 0x06,
- 0x21, 0x9d, 0xcf, 0x21, 0xde, 0x73, 0xb0, 0x84, 0x36, 0xbe, 0xa8, 0xc0, 0xc2, 0x4e, 0xa7, 0x73,
- 0x60, 0x2a, 0x90, 0x97, 0x9c, 0x39, 0x2b, 0x5f, 0x2d, 0x5e, 0x61, 0xbe, 0x7a, 0x08, 0x25, 0xee,
- 0x9b, 0x83, 0xfa, 0xe0, 0xc2, 0xf5, 0x7b, 0x67, 0xcf, 0xd1, 0x26, 0x24, 0x7b, 0x03, 0x9d, 0x3d,
- 0x07, 0x0b, 0x7e, 0xe2, 0x44, 0x0c, 0x29, 0x1f, 0x84, 0xdd, 0x7c, 0xab, 0xf4, 0xa9, 0x84, 0x62,
- 0x8d, 0xcd, 0x55, 0x09, 0x95, 0x2b, 0xaf, 0x12, 0xbe, 0x09, 0xf3, 0x22, 0x52, 0x84, 0x23, 0x95,
- 0x44, 0x94, 0x52, 0x4d, 0x75, 0x14, 0x18, 0x1b, 0x3c, 0xea, 0x43, 0xed, 0x88, 0x30, 0xcf, 0x6d,
- 0x8d, 0xf8, 0x40, 0x67, 0x12, 0x17, 0xd7, 0x57, 0xdb, 0x70, 0x50, 0x9d, 0x9b, 0xe4, 0x13, 0xa7,
- 0xbc, 0xd1, 0x1f, 0xc1, 0xfc, 0x80, 0x92, 0xae, 0x50, 0x48, 0x55, 0x2a, 0x04, 0xbf, 0xba, 0x42,
- 0x2c, 0x03, 0x6c, 0xee, 0x28, 0xa6, 0xaa, 0x64, 0x4b, 0x5b, 0x21, 0x0a, 0x8a, 0x8d, 0xcc, 0x95,
- 0x07, 0x50, 0xb7, 0x29, 0x2f, 0x54, 0x80, 0xfc, 0x69, 0x09, 0x6e, 0xee, 0x6e, 0x38, 0xa6, 0x8f,
- 0x73, 0x10, 0xfa, 0x9e, 0x3b, 0x46, 0x7f, 0x02, 0x73, 0x3e, 0x39, 0xa2, 0x3e, 0x5b, 0x2e, 0xc8,
- 0xf5, 0x7c, 0xf4, 0xea, 0xeb, 0x99, 0x60, 0xde, 0xdc, 0x93, 0x9c, 0xd5, 0xa2, 0x12, 0x2b, 0x53,
- 0x40, 0xac, 0xc5, 0xa2, 0x8f, 0x61, 0xfe, 0x88, 0xb8, 0xc7, 0x61, 0xaf, 0xa7, 0xbd, 0xc5, 0xc6,
- 0x2b, 0x6c, 0x9c, 0x1c, 0xaf, 0x22, 0xbf, 0xfe, 0xc0, 0x86, 0x2b, 0x72, 0xe0, 0x0e, 0x8d, 0xe3,
- 0x30, 0xde, 0x0f, 0x34, 0x4a, 0x5b, 0x8f, 0x3c, 0x57, 0xd5, 0xf6, 0xdb, 0x7a, 0x5e, 0x77, 0xb6,
- 0xa7, 0x11, 0xe1, 0xe9, 0x63, 0x57, 0xbe, 0x0f, 0x0b, 0xd6, 0xe2, 0x2e, 0xb4, 0x0f, 0xff, 0x55,
- 0x81, 0xfa, 0x2e, 0xe9, 0x1d, 0x93, 0x73, 0x3a, 0x9f, 0xaf, 0x43, 0x85, 0x87, 0x91, 0xe7, 0xea,
- 0x38, 0x7f, 0x5d, 0x13, 0x54, 0x3a, 0x02, 0x88, 0x15, 0x4e, 0x24, 0x9d, 0x11, 0x89, 0xb9, 0xc7,
- 0x4d, 0x29, 0x50, 0x49, 0x93, 0xce, 0x03, 0x83, 0xc0, 0x29, 0x4d, 0xee, 0x70, 0x97, 0xaf, 0xfc,
- 0x70, 0x6f, 0x40, 0x3d, 0xa6, 0x9f, 0x8e, 0x3c, 0xd9, 0x11, 0x3b, 0x66, 0x32, 0x90, 0x57, 0xd2,
- 0x1b, 0x29, 0x6c, 0xe1, 0x70, 0x86, 0x52, 0x84, 0x7f, 0x51, 0x94, 0xc6, 0x94, 0x31, 0xe9, 0x17,
- 0xaa, 0x69, 0xf8, 0xdf, 0xd4, 0x70, 0x9c, 0x50, 0x88, 0x74, 0xa9, 0xe7, 0x8f, 0xd8, 0xe0, 0xa1,
- 0xe0, 0x21, 0x52, 0x5c, 0xe9, 0x1e, 0x2a, 0x69, 0xba, 0xf4, 0x30, 0x83, 0xc5, 0x39, 0x6a, 0xe3,
- 0x83, 0xab, 0x97, 0xec, 0x83, 0xad, 0x88, 0x52, 0xbb, 0xc2, 0x88, 0xd2, 0x82, 0xc5, 0xc4, 0x04,
- 0xbc, 0xa0, 0xbf, 0x4b, 0xc7, 0x3a, 0x79, 0x48, 0xca, 0x9b, 0x83, 0x2c, 0x1a, 0xe7, 0xe9, 0x85,
- 0x57, 0x36, 0x25, 0xe7, 0x42, 0xb6, 0xb4, 0x33, 0xe5, 0xa6, 0xc1, 0x37, 0xf6, 0x01, 0xf6, 0xc2,
- 0xbe, 0x31, 0xf3, 0x16, 0x2c, 0x7a, 0x01, 0xa7, 0xf1, 0x09, 0xf1, 0x1d, 0xea, 0x86, 0x41, 0x97,
- 0x49, 0x93, 0x2f, 0xa7, 0xb2, 0x1f, 0x67, 0xd1, 0x38, 0x4f, 0xdf, 0xf8, 0xfb, 0x12, 0x2c, 0x3c,
- 0x6b, 0x75, 0x9c, 0x73, 0x9e, 0x1c, 0xab, 0x0a, 0x2d, 0xbe, 0xa4, 0x0a, 0xb5, 0xf6, 0xa3, 0xf4,
- 0xda, 0x7a, 0xb1, 0x57, 0x7f, 0x0a, 0xb5, 0x75, 0x57, 0x2e, 0xd7, 0xba, 0x1b, 0x3f, 0x2d, 0xc3,
- 0xd2, 0x7e, 0x44, 0x83, 0x8f, 0x06, 0x1e, 0x3b, 0xb6, 0xee, 0x04, 0x06, 0x21, 0xe3, 0xf9, 0x9c,
- 0x6d, 0x27, 0x64, 0x1c, 0x4b, 0x8c, 0x6d, 0x5a, 0xc5, 0xaf, 0x36, 0x2d, 0xe1, 0xef, 0x44, 0x9a,
- 0xc7, 0x22, 0xe2, 0x4e, 0x14, 0xd9, 0xcf, 0x0c, 0x02, 0xa7, 0x34, 0xf2, 0x1e, 0x7b, 0xc4, 0x07,
- 0x9d, 0xf0, 0x98, 0x06, 0x17, 0x2b, 0x47, 0xd4, 0x3d, 0xb6, 0x19, 0x8b, 0x53, 0x36, 0xe8, 0x3d,
- 0x00, 0x92, 0xde, 0xa9, 0xab, 0x52, 0x24, 0xd1, 0x78, 0x2b, 0xbd, 0x51, 0xb7, 0xa8, 0x6c, 0x43,
- 0x9b, 0x7b, 0x6d, 0x86, 0x36, 0x7f, 0xe5, 0x4d, 0xff, 0x7f, 0x29, 0xc2, 0x9c, 0x23, 0x99, 0xa0,
- 0x1f, 0x41, 0x75, 0x48, 0x39, 0x91, 0xd5, 0xb8, 0x2a, 0x38, 0xde, 0x39, 0x5f, 0xd3, 0x67, 0x5f,
- 0x1e, 0xd5, 0xa7, 0x94, 0x93, 0x54, 0x5c, 0x0a, 0xc3, 0x09, 0x57, 0x51, 0xeb, 0xcb, 0x9e, 0x7a,
- 0x71, 0xd6, 0xf6, 0x85, 0x9a, 0xb1, 0x13, 0x51, 0x77, 0x6a, 0x1b, 0x3d, 0x80, 0x39, 0xc6, 0x09,
- 0x1f, 0xb1, 0xd9, 0xef, 0x39, 0xb5, 0x24, 0xc9, 0xcd, 0xea, 0xf8, 0xc9, 0x6f, 0xac, 0xa5, 0x34,
- 0xfe, 0xb5, 0x00, 0xa0, 0x08, 0xf7, 0x3c, 0xc6, 0xd1, 0xef, 0x4f, 0x28, 0xb2, 0x79, 0x3e, 0x45,
- 0x8a, 0xd1, 0x52, 0x8d, 0x49, 0xe0, 0x34, 0x10, 0x4b, 0x89, 0x14, 0x2a, 0x1e, 0xa7, 0x43, 0xa6,
- 0x2b, 0x9e, 0xf7, 0x67, 0x5d, 0x5b, 0x9a, 0xb8, 0x3c, 0x16, 0x6c, 0xb1, 0xe2, 0xde, 0xf8, 0x59,
- 0xc5, 0xac, 0x49, 0x28, 0x16, 0xfd, 0xa4, 0x90, 0xeb, 0x00, 0xab, 0xac, 0xf4, 0xf1, 0xa5, 0x75,
- 0xc4, 0xd2, 0x14, 0xe3, 0xc5, 0x0d, 0x65, 0x14, 0x42, 0x95, 0x2b, 0x0b, 0x37, 0xcb, 0x6f, 0xcd,
- 0x7c, 0x56, 0xac, 0x66, 0xb9, 0x66, 0x8d, 0x13, 0x21, 0xc8, 0xb7, 0x5a, 0xeb, 0x33, 0xf7, 0x65,
- 0x4c, 0x33, 0x5e, 0x15, 0xd4, 0x93, 0xad, 0x79, 0xf4, 0xd3, 0x02, 0x2c, 0x75, 0xb3, 0xbd, 0x79,
- 0x13, 0x7c, 0x66, 0x50, 0x74, 0xae, 0xdb, 0x9f, 0xdc, 0x58, 0x2c, 0xe5, 0x10, 0x0c, 0x4f, 0x08,
- 0x47, 0x4f, 0x00, 0xe9, 0x3c, 0xfb, 0x21, 0xf1, 0x7c, 0xda, 0xc5, 0xe1, 0x28, 0xe8, 0x4a, 0x8f,
- 0x5a, 0x4d, 0x6f, 0xd4, 0xb6, 0x27, 0x28, 0xf0, 0x94, 0x51, 0x22, 0xb3, 0x94, 0x53, 0x6d, 0x8f,
- 0x98, 0xf4, 0xcb, 0x73, 0xd9, 0xb7, 0x4e, 0xdb, 0x16, 0x0e, 0x67, 0x28, 0xd1, 0x7d, 0x98, 0x77,
- 0xbd, 0xd8, 0x1d, 0x79, 0x5c, 0xb7, 0x81, 0xde, 0xd4, 0x83, 0x6e, 0x5a, 0x57, 0x43, 0x8a, 0x00,
- 0x1b, 0xca, 0x46, 0x08, 0x75, 0xfb, 0xf0, 0xa2, 0x8f, 0x13, 0xa7, 0xa0, 0xce, 0xe4, 0xf7, 0x2e,
- 0xfe, 0xee, 0xe2, 0xab, 0xbd, 0xc0, 0x3f, 0x15, 0xa1, 0xee, 0xf8, 0xc4, 0x4d, 0x02, 0x6b, 0xd6,
- 0xb7, 0x17, 0x5e, 0x43, 0x12, 0x01, 0x4c, 0xce, 0x47, 0xc6, 0xd6, 0xe2, 0x85, 0x6f, 0x59, 0x9d,
- 0x64, 0x30, 0xb6, 0x18, 0x89, 0x6c, 0xc0, 0x1d, 0x90, 0x20, 0xa0, 0xbe, 0x0e, 0xf0, 0x49, 0x74,
- 0xdb, 0x54, 0x60, 0x6c, 0xf0, 0x82, 0x74, 0x48, 0x19, 0x23, 0x7d, 0x73, 0xad, 0x91, 0x90, 0x3e,
- 0x55, 0x60, 0x6c, 0xf0, 0x8d, 0xff, 0x2d, 0x03, 0x72, 0x38, 0x09, 0xba, 0x24, 0xee, 0xee, 0x6e,
- 0x24, 0x99, 0xe4, 0x0b, 0x5f, 0xf3, 0x14, 0x5e, 0xc7, 0x6b, 0x1e, 0xeb, 0x59, 0x56, 0xf1, 0x4a,
- 0x9e, 0x65, 0x3d, 0xb3, 0x9f, 0x65, 0x29, 0x6d, 0xbf, 0x33, 0xed, 0x59, 0xd6, 0xaf, 0xed, 0x8e,
- 0x8e, 0x68, 0x1c, 0x50, 0x4e, 0x99, 0x99, 0xeb, 0x39, 0x1e, 0x67, 0x5d, 0x7d, 0x5e, 0xdb, 0x83,
- 0xeb, 0x11, 0xe1, 0xee, 0xc0, 0xe1, 0x31, 0xe1, 0xb4, 0x3f, 0xd6, 0xc9, 0xd9, 0xfb, 0x7a, 0xd8,
- 0xf5, 0x03, 0x1b, 0xf9, 0xe5, 0xe9, 0xda, 0x6f, 0xbc, 0xe8, 0xb1, 0x25, 0x1f, 0x47, 0x94, 0x35,
- 0x25, 0xb9, 0xbc, 0xe9, 0xca, 0xb2, 0x15, 0x19, 0xa0, 0xef, 0x9d, 0xd0, 0xfd, 0xf4, 0xaa, 0xab,
- 0x9a, 0xce, 0x6d, 0x2f, 0xc1, 0x60, 0x8b, 0xaa, 0xb1, 0x0e, 0x75, 0x75, 0xa2, 0x75, 0x07, 0x66,
- 0x0d, 0x2a, 0xc4, 0xf7, 0xc3, 0xe7, 0xf2, 0xe4, 0x56, 0x54, 0x33, 0xbd, 0x25, 0x00, 0x58, 0xc1,
- 0x1b, 0xff, 0x3c, 0x0f, 0x89, 0x17, 0x47, 0xee, 0x44, 0xd0, 0xbf, 0xf8, 0xc3, 0x9e, 0xa7, 0x9a,
- 0x81, 0x0a, 0x10, 0xe6, 0xcb, 0x8a, 0xfd, 0xfa, 0x81, 0x83, 0xe7, 0xd2, 0x96, 0xeb, 0x86, 0x23,
- 0x7d, 0x97, 0x55, 0x9c, 0x7c, 0xe0, 0x90, 0xa5, 0xc0, 0x53, 0x46, 0xa1, 0x27, 0xf2, 0x09, 0x15,
- 0x27, 0x42, 0xa7, 0x3a, 0xb6, 0xbd, 0xfd, 0x82, 0x27, 0x54, 0x8a, 0x28, 0x79, 0x37, 0xa5, 0x3e,
- 0x71, 0x3a, 0x1c, 0x6d, 0xc3, 0xfc, 0x49, 0xe8, 0x8f, 0x86, 0xd4, 0xd8, 0xd4, 0xca, 0x34, 0x4e,
- 0x1f, 0x4a, 0x12, 0xab, 0x78, 0x50, 0x43, 0xb0, 0x19, 0x8b, 0x28, 0x2c, 0xca, 0x07, 0x22, 0x1e,
- 0x1f, 0xeb, 0x7b, 0x22, 0x5d, 0x01, 0x7d, 0x63, 0x1a, 0xbb, 0x83, 0xb0, 0xeb, 0x64, 0xa9, 0xf5,
- 0xfb, 0x9e, 0x2c, 0x10, 0xe7, 0x79, 0xa2, 0xbf, 0x28, 0x40, 0x3d, 0x08, 0xbb, 0xd4, 0x78, 0x3b,
- 0x9d, 0xf0, 0x77, 0x66, 0x8f, 0xec, 0xcd, 0x67, 0x16, 0x5b, 0xd5, 0x5e, 0x4b, 0xe2, 0x9b, 0x8d,
- 0xc2, 0x19, 0xf9, 0xe8, 0x10, 0x16, 0x78, 0xe8, 0xeb, 0x33, 0x6a, 0xaa, 0x80, 0xd5, 0x69, 0x6b,
- 0xee, 0x24, 0x64, 0xe9, 0x8d, 0x72, 0x0a, 0x63, 0xd8, 0xe6, 0x83, 0x02, 0x58, 0xf2, 0x86, 0xa4,
- 0x4f, 0x0f, 0x46, 0xbe, 0xaf, 0x5c, 0xbc, 0x69, 0x8e, 0x4e, 0x7d, 0x2b, 0x27, 0x1c, 0x91, 0xaf,
- 0xcf, 0x05, 0xed, 0xd1, 0x98, 0x06, 0x2e, 0x4d, 0x93, 0x85, 0xc7, 0x39, 0x4e, 0x78, 0x82, 0x37,
- 0x7a, 0x04, 0x37, 0xa3, 0xd8, 0x0b, 0xa5, 0xaa, 0x7d, 0xc2, 0x54, 0x94, 0xaf, 0x65, 0x03, 0xf6,
- 0x41, 0x9e, 0x00, 0x4f, 0x8e, 0x41, 0xf7, 0xa0, 0x6a, 0x80, 0xb2, 0x0d, 0x52, 0xd1, 0x57, 0x10,
- 0x1a, 0x86, 0x13, 0xec, 0xca, 0x0f, 0xe1, 0xe6, 0x84, 0xca, 0x2f, 0xd4, 0xf4, 0x73, 0x00, 0xd2,
- 0xbb, 0x50, 0xf4, 0x75, 0xa8, 0x30, 0x4e, 0x62, 0x53, 0x0b, 0x27, 0x99, 0xb1, 0x23, 0x80, 0x58,
- 0xe1, 0x44, 0xbd, 0xcc, 0x78, 0x18, 0xe9, 0x63, 0x97, 0xd6, 0x1f, 0x3c, 0x8c, 0xb0, 0xc4, 0x34,
- 0x4e, 0x4b, 0x30, 0x6f, 0x02, 0x18, 0xb3, 0x32, 0xc8, 0xc2, 0xac, 0x57, 0x50, 0x9a, 0xe9, 0x4b,
- 0x13, 0xc9, 0xac, 0x9b, 0x2f, 0x5e, 0xb9, 0x9b, 0x3f, 0x86, 0xb9, 0x48, 0x3a, 0x51, 0xed, 0x58,
- 0x1e, 0xcd, 0x2e, 0x5b, 0xb2, 0x53, 0x31, 0x52, 0xfd, 0xc6, 0x5a, 0x04, 0xfa, 0x14, 0xae, 0xc7,
- 0x94, 0xc7, 0xe3, 0x24, 0xa6, 0x94, 0x67, 0x6c, 0x57, 0xdf, 0x14, 0x91, 0x08, 0xdb, 0x2c, 0x71,
- 0x56, 0x42, 0xe3, 0x57, 0x05, 0x58, 0xca, 0x2b, 0x05, 0x1d, 0x43, 0x89, 0xc5, 0xae, 0xde, 0xe4,
- 0x83, 0xcb, 0xd3, 0xb6, 0x4a, 0x09, 0x54, 0x27, 0xc7, 0x89, 0x5d, 0x2c, 0xa4, 0x08, 0x23, 0xec,
- 0x52, 0xc6, 0xf3, 0x46, 0xb8, 0x45, 0x19, 0xc7, 0x12, 0x83, 0xf6, 0x26, 0x53, 0x87, 0xe6, 0xb4,
- 0xd4, 0xe1, 0xcd, 0xbc, 0xbc, 0x69, 0x89, 0x43, 0xe3, 0xdf, 0x8b, 0xf0, 0xc6, 0xf4, 0x89, 0xa1,
- 0x1f, 0xc0, 0x8d, 0xb4, 0x6e, 0xb0, 0xfe, 0xc5, 0x90, 0x74, 0x72, 0xb7, 0x32, 0x58, 0x9c, 0xa3,
- 0x16, 0xb1, 0x5a, 0x3f, 0x06, 0x30, 0x7f, 0x65, 0xb0, 0xba, 0x35, 0x9b, 0x09, 0x06, 0x5b, 0x54,
- 0xa8, 0x05, 0x8b, 0xfa, 0xab, 0x63, 0x97, 0x67, 0x56, 0xbf, 0x74, 0x33, 0x8b, 0xc6, 0x79, 0x7a,
- 0x91, 0x9b, 0x8a, 0x98, 0x6a, 0xde, 0x90, 0x5a, 0xb9, 0xe9, 0x96, 0x02, 0x63, 0x83, 0x17, 0x95,
- 0x8b, 0xf8, 0xd9, 0xc9, 0x3e, 0xb2, 0x4a, 0x0b, 0x56, 0x0b, 0x87, 0x33, 0x94, 0xe9, 0xeb, 0x2f,
- 0x55, 0xec, 0x4c, 0xbc, 0xfe, 0x6a, 0xfc, 0xb2, 0x00, 0xd7, 0x33, 0x26, 0x8e, 0x7a, 0x50, 0x3a,
- 0xde, 0x30, 0x45, 0xca, 0xee, 0x25, 0xde, 0xfa, 0x28, 0x0b, 0xda, 0xdd, 0x60, 0x58, 0x08, 0x40,
- 0x9f, 0x24, 0xf5, 0xd0, 0xcc, 0xcf, 0x3c, 0xec, 0xb4, 0x49, 0xa7, 0xb1, 0xd9, 0xd2, 0x68, 0x3b,
- 0x59, 0xa4, 0xf3, 0xdc, 0xe3, 0xee, 0x00, 0xbd, 0x09, 0x25, 0x12, 0x8c, 0x65, 0x66, 0x55, 0x53,
- 0xf3, 0x6a, 0x05, 0x63, 0x2c, 0x60, 0x12, 0xe5, 0xfb, 0xfa, 0x7e, 0x58, 0xa1, 0x7c, 0x1f, 0x0b,
- 0x58, 0xe3, 0x67, 0x0b, 0xb0, 0x98, 0x73, 0x81, 0xe7, 0xb8, 0x71, 0x56, 0xf6, 0xd5, 0xf5, 0x54,
- 0x70, 0x9d, 0xb4, 0x2f, 0x8d, 0xc1, 0x16, 0x15, 0xea, 0xab, 0x4d, 0x50, 0xde, 0x6b, 0x6f, 0x26,
- 0xcd, 0xe4, 0x2a, 0x9a, 0xdc, 0x2e, 0xfc, 0xa4, 0x00, 0x75, 0x62, 0xfd, 0xa5, 0x42, 0x3b, 0xaf,
- 0xa7, 0xb3, 0xd4, 0x15, 0x13, 0xff, 0x26, 0x51, 0x2f, 0x37, 0x6c, 0x04, 0xce, 0x08, 0x45, 0x2e,
- 0x94, 0x07, 0x9c, 0x9b, 0x97, 0xf4, 0xdb, 0x97, 0x72, 0x75, 0xaa, 0xee, 0xf6, 0x05, 0x00, 0x4b,
- 0xe6, 0xe8, 0x39, 0xd4, 0xc8, 0x73, 0xa6, 0xfe, 0xff, 0xa4, 0x9f, 0xd8, 0xcf, 0x52, 0x3e, 0xe5,
- 0xfe, 0x4a, 0xa5, 0xdb, 0xc1, 0x06, 0x8a, 0x53, 0x59, 0x28, 0x86, 0x39, 0x57, 0x3e, 0xc2, 0xd5,
- 0x37, 0xd0, 0x8f, 0x2e, 0xe9, 0x31, 0xaf, 0x0a, 0x14, 0x19, 0x10, 0xd6, 0x92, 0x50, 0x1f, 0x2a,
- 0xc7, 0xa4, 0x77, 0x4c, 0xf4, 0x05, 0xd5, 0x0c, 0x87, 0xcb, 0xbe, 0x92, 0x54, 0x0e, 0x44, 0x42,
- 0xb0, 0xe2, 0x2f, 0xb6, 0x2e, 0x20, 0x9c, 0xe9, 0xe7, 0x2d, 0x33, 0x6c, 0x9d, 0x75, 0x7f, 0xa3,
- 0xb6, 0x4e, 0x00, 0xb0, 0x64, 0x2e, 0x56, 0x23, 0x1b, 0x00, 0x32, 0x1b, 0x9b, 0xcd, 0x55, 0x58,
- 0x0d, 0x12, 0xb5, 0x1a, 0x09, 0xc1, 0x8a, 0xbf, 0xb0, 0x91, 0xd0, 0xdc, 0x4f, 0xc8, 0x6b, 0xac,
- 0x99, 0x6c, 0x24, 0x7f, 0xd5, 0xa1, 0x6c, 0x24, 0x81, 0xe2, 0x54, 0x16, 0xfa, 0x18, 0x4a, 0x7e,
- 0xd8, 0x5f, 0xbe, 0x3e, 0x6b, 0x67, 0x3a, 0xbd, 0x57, 0x53, 0x07, 0x7d, 0x2f, 0xec, 0x63, 0xc1,
- 0x19, 0x8d, 0x60, 0x8e, 0x49, 0xdf, 0xb7, 0x5c, 0xbf, 0xa4, 0x94, 0x48, 0xb9, 0xd2, 0xf6, 0x6d,
- 0xdd, 0xca, 0x33, 0x4f, 0x8b, 0x24, 0x14, 0x6b, 0x61, 0xe8, 0xcf, 0x0a, 0x70, 0x83, 0x64, 0xfe,
- 0x0a, 0xb2, 0x7c, 0x63, 0xd6, 0xb7, 0x8c, 0x53, 0xff, 0x5a, 0xd2, 0x46, 0x22, 0xd4, 0x67, 0x51,
- 0x38, 0x27, 0xba, 0xe1, 0xc2, 0x82, 0xf5, 0x9f, 0x9e, 0x73, 0xbc, 0xb5, 0x7e, 0x0f, 0xe0, 0x84,
- 0xc6, 0x5e, 0x6f, 0xbc, 0x49, 0x63, 0xae, 0xff, 0x54, 0x90, 0xf8, 0xee, 0x0f, 0x13, 0x0c, 0xb6,
- 0xa8, 0xda, 0xcd, 0xcf, 0x3e, 0x5f, 0xbd, 0xf6, 0xf3, 0xcf, 0x57, 0xaf, 0xfd, 0xe2, 0xf3, 0xd5,
- 0x6b, 0x3f, 0x3e, 0x5b, 0x2d, 0x7c, 0x76, 0xb6, 0x5a, 0xf8, 0xf9, 0xd9, 0x6a, 0xe1, 0x17, 0x67,
- 0xab, 0x85, 0xff, 0x3c, 0x5b, 0x2d, 0xfc, 0xe5, 0x2f, 0x57, 0xaf, 0xfd, 0x6e, 0xd5, 0x2c, 0xe7,
- 0xff, 0x02, 0x00, 0x00, 0xff, 0xff, 0x61, 0x9b, 0xc1, 0x73, 0x50, 0x3b, 0x00, 0x00,
+ // 3807 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x3b, 0x4b, 0x6c, 0x24, 0x49,
+ 0x56, 0x5d, 0x3f, 0xbb, 0xea, 0xb9, 0xba, 0xed, 0x8e, 0xee, 0x9e, 0xf5, 0x98, 0x19, 0xbb, 0x55,
+ 0x2b, 0x96, 0xde, 0xd5, 0x6e, 0x79, 0x66, 0x7a, 0x61, 0xbd, 0x0d, 0xda, 0x9d, 0x2a, 0xdb, 0xdd,
+ 0xee, 0xb6, 0xbb, 0xed, 0x89, 0x2c, 0xcf, 0x48, 0x80, 0x34, 0x1b, 0xce, 0x8a, 0xaa, 0xca, 0x71,
+ 0x56, 0x66, 0x4e, 0x46, 0x94, 0x9b, 0x42, 0x02, 0x56, 0x5a, 0x71, 0x02, 0xb1, 0x48, 0x5c, 0x38,
+ 0x01, 0x17, 0x6e, 0xdc, 0x38, 0x22, 0x21, 0xc1, 0x69, 0x8e, 0x0b, 0x12, 0xd2, 0x1e, 0x90, 0xc5,
+ 0x78, 0x0f, 0x70, 0x41, 0xab, 0x91, 0x38, 0xcd, 0x05, 0x14, 0xbf, 0xcc, 0xc8, 0xac, 0xea, 0x69,
+ 0xbb, 0xcb, 0x72, 0x1f, 0xb8, 0x55, 0xbe, 0xf7, 0xe2, 0xbd, 0x88, 0x17, 0x2f, 0xde, 0x2f, 0xa2,
+ 0x60, 0xa7, 0xef, 0xf1, 0xc1, 0xe8, 0xa8, 0xe9, 0x86, 0xc3, 0x75, 0x12, 0xf7, 0xc3, 0x28, 0x0e,
+ 0x3f, 0x91, 0x3f, 0xbe, 0x43, 0x4f, 0x68, 0xc0, 0xd9, 0x7a, 0x74, 0xdc, 0x5f, 0x27, 0x91, 0xc7,
+ 0xd6, 0x19, 0x0d, 0x58, 0x18, 0xaf, 0x9f, 0xbc, 0x4b, 0xfc, 0x68, 0x40, 0xde, 0x5d, 0xef, 0xd3,
+ 0x80, 0xc6, 0x84, 0xd3, 0x6e, 0x33, 0x8a, 0x43, 0x1e, 0xa2, 0x8d, 0x94, 0x53, 0xd3, 0x70, 0x92,
+ 0x3f, 0x3e, 0x56, 0x9c, 0x9a, 0xd1, 0x71, 0xbf, 0x29, 0x38, 0x35, 0x15, 0xa7, 0xa6, 0xe1, 0xb4,
+ 0xf2, 0xc3, 0x73, 0xcf, 0xc1, 0x0d, 0x87, 0xc3, 0x30, 0xc8, 0x8b, 0x5e, 0xf9, 0x8e, 0xc5, 0xa0,
+ 0x1f, 0xf6, 0xc3, 0x75, 0x09, 0x3e, 0x1a, 0xf5, 0xe4, 0x97, 0xfc, 0x90, 0xbf, 0x34, 0x79, 0xe3,
+ 0x78, 0x83, 0x35, 0xbd, 0x50, 0xb0, 0x5c, 0x77, 0xc3, 0x98, 0xae, 0x9f, 0x4c, 0xac, 0x66, 0xe5,
+ 0xbb, 0x29, 0xcd, 0x90, 0xb8, 0x03, 0x2f, 0xa0, 0xf1, 0x38, 0x9d, 0xc7, 0x90, 0x72, 0x32, 0x6d,
+ 0xd4, 0xfa, 0x8b, 0x46, 0xc5, 0xa3, 0x80, 0x7b, 0x43, 0x3a, 0x31, 0xe0, 0x37, 0x5e, 0x36, 0x80,
+ 0xb9, 0x03, 0x3a, 0x24, 0xf9, 0x71, 0x8d, 0xbf, 0x28, 0xc3, 0x52, 0xeb, 0x23, 0x67, 0x8f, 0x0c,
+ 0x8f, 0xba, 0xa4, 0x13, 0x7b, 0xfd, 0x3e, 0x8d, 0xd1, 0x06, 0xd4, 0x7b, 0xa3, 0xc0, 0xe5, 0x5e,
+ 0x18, 0x3c, 0x23, 0x43, 0xba, 0x5c, 0xb8, 0x5b, 0xb8, 0x57, 0x6b, 0xdf, 0xfe, 0xec, 0x74, 0xed,
+ 0xda, 0xd9, 0xe9, 0x5a, 0xfd, 0xa1, 0x85, 0xc3, 0x19, 0x4a, 0x84, 0xa1, 0x46, 0x5c, 0x97, 0x32,
+ 0xb6, 0x4b, 0xc7, 0xcb, 0xc5, 0xbb, 0x85, 0x7b, 0x0b, 0xef, 0xfd, 0x6a, 0x53, 0x4d, 0x4d, 0x6c,
+ 0x59, 0x53, 0x68, 0xa9, 0x79, 0xf2, 0x6e, 0xd3, 0xa1, 0x6e, 0x4c, 0xf9, 0x2e, 0x1d, 0x3b, 0xd4,
+ 0xa7, 0x2e, 0x0f, 0xe3, 0xf6, 0xf5, 0xb3, 0xd3, 0xb5, 0x5a, 0xcb, 0x8c, 0xc5, 0x29, 0x1b, 0xc1,
+ 0x93, 0x19, 0xf2, 0xe5, 0xd2, 0x85, 0x79, 0x26, 0x60, 0x9c, 0xb2, 0x41, 0xdf, 0x80, 0xb9, 0x98,
+ 0xf6, 0xbd, 0x30, 0x58, 0x2e, 0xcb, 0xb5, 0xdd, 0xd0, 0x6b, 0x9b, 0xc3, 0x12, 0x8a, 0x35, 0x16,
+ 0x8d, 0x60, 0x3e, 0x22, 0x63, 0x3f, 0x24, 0xdd, 0xe5, 0xca, 0xdd, 0xd2, 0xbd, 0x85, 0xf7, 0x9e,
+ 0x34, 0x5f, 0xd5, 0x3a, 0x9b, 0x5a, 0xbb, 0x07, 0x24, 0x26, 0x43, 0xca, 0x69, 0xdc, 0x5e, 0xd4,
+ 0x42, 0xe7, 0x0f, 0x94, 0x08, 0x6c, 0x64, 0xa1, 0x3f, 0x04, 0x88, 0x0c, 0x19, 0x5b, 0x9e, 0xbb,
+ 0x74, 0xc9, 0x48, 0x4b, 0x86, 0x04, 0xc4, 0xb0, 0x25, 0xb1, 0x71, 0x5a, 0x82, 0x5b, 0xad, 0xb8,
+ 0x1f, 0x7e, 0x14, 0xc6, 0xc7, 0x3d, 0x3f, 0x7c, 0x6e, 0x0c, 0x23, 0x80, 0x39, 0x16, 0x8e, 0x62,
+ 0x57, 0x99, 0xc4, 0x4c, 0x73, 0x6a, 0xc5, 0xdc, 0xeb, 0x11, 0x97, 0xef, 0x85, 0x2e, 0x11, 0xe6,
+ 0xd3, 0x06, 0xa1, 0x7e, 0x47, 0x72, 0xc7, 0x5a, 0x0a, 0xda, 0x81, 0x5a, 0x18, 0x09, 0x7b, 0x15,
+ 0x3b, 0x55, 0x94, 0x3b, 0xf5, 0x2d, 0x3d, 0xf5, 0xda, 0xbe, 0x41, 0x7c, 0x79, 0xba, 0x76, 0xc7,
+ 0x9e, 0x6c, 0x82, 0xc0, 0xe9, 0xe0, 0x9c, 0x46, 0x4b, 0x57, 0xad, 0x51, 0xf4, 0xa7, 0x05, 0xb8,
+ 0xdd, 0x8f, 0xc3, 0x51, 0xf4, 0x21, 0x8d, 0x99, 0x98, 0x1b, 0xd5, 0x8a, 0x2c, 0x4b, 0x45, 0x3e,
+ 0xb0, 0x0c, 0x3a, 0x39, 0xbf, 0xa9, 0x78, 0xe1, 0x26, 0x84, 0x89, 0x3f, 0x9a, 0xc2, 0xa1, 0xfd,
+ 0x96, 0x16, 0x7d, 0x7b, 0x1a, 0x16, 0x4f, 0x95, 0xda, 0xf8, 0x42, 0x1c, 0xfb, 0xdc, 0x0e, 0x20,
+ 0x07, 0x8a, 0xec, 0xbe, 0xde, 0xd9, 0xdf, 0x3c, 0xbf, 0x6e, 0x94, 0x2f, 0x6d, 0x3a, 0xf7, 0x0d,
+ 0xc3, 0xf6, 0xdc, 0xd9, 0xe9, 0x5a, 0xd1, 0xb9, 0x8f, 0x8b, 0xec, 0x3e, 0x6a, 0xc0, 0x9c, 0x17,
+ 0xf8, 0x5e, 0x40, 0xf5, 0xfe, 0xc9, 0x6d, 0x7e, 0x2c, 0x21, 0x58, 0x63, 0x50, 0x17, 0xca, 0x3d,
+ 0xcf, 0xa7, 0xfa, 0x70, 0x3f, 0x7c, 0xf5, 0x6d, 0x79, 0xe8, 0xf9, 0x34, 0x99, 0x45, 0xf5, 0xec,
+ 0x74, 0xad, 0x2c, 0x20, 0x58, 0x72, 0x47, 0x3f, 0x82, 0xd2, 0x28, 0xf6, 0xb5, 0xc2, 0xb7, 0x5f,
+ 0x5d, 0xc8, 0x21, 0xde, 0x4b, 0x64, 0xcc, 0x9f, 0x9d, 0xae, 0x95, 0x0e, 0xf1, 0x1e, 0x16, 0xac,
+ 0xd1, 0x21, 0xd4, 0xdc, 0x30, 0xe8, 0x79, 0xfd, 0x21, 0x89, 0x96, 0x2b, 0x52, 0xce, 0xbd, 0x69,
+ 0x9e, 0x6a, 0x53, 0x12, 0x3d, 0x25, 0xd1, 0x84, 0xb3, 0xda, 0x34, 0xc3, 0x71, 0xca, 0x49, 0x4c,
+ 0xbc, 0xef, 0xf1, 0xe5, 0xb9, 0x59, 0x27, 0xfe, 0xc8, 0xe3, 0xd9, 0x89, 0x3f, 0xf2, 0x38, 0x16,
+ 0xac, 0x91, 0x0b, 0xd5, 0xd8, 0x18, 0xe4, 0xbc, 0x14, 0xf3, 0xfd, 0x0b, 0xef, 0x7f, 0x62, 0x8f,
+ 0xf5, 0xb3, 0xd3, 0xb5, 0x6a, 0x62, 0x7f, 0x09, 0xe3, 0xc6, 0xdf, 0x97, 0xe1, 0x4e, 0xeb, 0xf7,
+ 0x47, 0x31, 0xdd, 0x16, 0x0c, 0x76, 0x46, 0x47, 0xcc, 0xb8, 0x95, 0xbb, 0x50, 0xee, 0x7d, 0xda,
+ 0x0d, 0x74, 0x9c, 0xa9, 0x6b, 0x7b, 0x2e, 0x3f, 0xfc, 0x60, 0xeb, 0x19, 0x96, 0x18, 0xf4, 0x4d,
+ 0x98, 0x1f, 0x8c, 0x8e, 0x64, 0x30, 0x52, 0x66, 0x94, 0xf8, 0xce, 0x1d, 0x05, 0xc6, 0x06, 0x8f,
+ 0x22, 0xb8, 0xc5, 0x06, 0x24, 0xa6, 0xdd, 0x24, 0x98, 0xc8, 0x61, 0x17, 0x0a, 0x1c, 0x5f, 0x3b,
+ 0x3b, 0x5d, 0xbb, 0xe5, 0x4c, 0x72, 0xc1, 0xd3, 0x58, 0xa3, 0x2e, 0x2c, 0xe6, 0xc0, 0xda, 0xc8,
+ 0xce, 0x29, 0xed, 0xd6, 0xd9, 0xe9, 0xda, 0x62, 0x4e, 0x1a, 0xce, 0xb3, 0xfc, 0xff, 0x1a, 0x8a,
+ 0xfe, 0xa7, 0x02, 0xd7, 0x37, 0x47, 0x8c, 0x87, 0x43, 0x63, 0x2d, 0xeb, 0x22, 0x1f, 0x88, 0x4f,
+ 0x68, 0x7c, 0x88, 0xf7, 0xb4, 0xc9, 0xdc, 0x34, 0x41, 0xc1, 0x31, 0x08, 0x9c, 0xd2, 0x88, 0x60,
+ 0xcf, 0xa8, 0x3b, 0x8a, 0x95, 0xed, 0x54, 0xd3, 0x60, 0xef, 0x48, 0x28, 0xd6, 0x58, 0x74, 0x08,
+ 0xe0, 0xd2, 0x98, 0xab, 0x0d, 0xba, 0x98, 0xc1, 0xdc, 0x10, 0x2b, 0xd8, 0x4c, 0x06, 0x63, 0x8b,
+ 0x11, 0x7a, 0x02, 0x48, 0xcd, 0x45, 0x18, 0xcb, 0xfe, 0x09, 0x8d, 0x63, 0xaf, 0x4b, 0x75, 0xde,
+ 0xb1, 0xa2, 0xa7, 0x82, 0x9c, 0x09, 0x0a, 0x3c, 0x65, 0x14, 0x62, 0x50, 0x66, 0x11, 0x75, 0xb5,
+ 0x05, 0x7c, 0xf0, 0xea, 0xfb, 0x90, 0x51, 0x69, 0xd3, 0x89, 0xa8, 0xbb, 0x1d, 0xf0, 0x78, 0x9c,
+ 0x1e, 0x3e, 0x01, 0xc2, 0x52, 0xd8, 0xeb, 0x36, 0x01, 0xdb, 0xf2, 0xe7, 0xaf, 0xd0, 0xf2, 0xdb,
+ 0x50, 0x17, 0xbb, 0x28, 0x22, 0xc8, 0x01, 0xe1, 0x83, 0xe5, 0xaa, 0xdc, 0xb1, 0x55, 0x4d, 0xff,
+ 0xc6, 0x16, 0x8d, 0x62, 0xea, 0x8a, 0x54, 0x7a, 0xd3, 0xa2, 0xc2, 0x99, 0x31, 0x2b, 0xdf, 0x83,
+ 0x5a, 0xa2, 0x5b, 0xb4, 0x04, 0xa5, 0x63, 0x3a, 0x56, 0x26, 0x8b, 0xc5, 0x4f, 0x74, 0x1b, 0x2a,
+ 0x27, 0xc4, 0x1f, 0x69, 0xa7, 0x86, 0xd5, 0xc7, 0x83, 0xe2, 0x46, 0xa1, 0xf1, 0xdf, 0x05, 0x80,
+ 0x2d, 0xc2, 0xc9, 0x43, 0xcf, 0xe7, 0xca, 0x43, 0x46, 0x62, 0x0e, 0x39, 0x0f, 0x29, 0x25, 0x4a,
+ 0x0c, 0xfa, 0x36, 0x94, 0xf9, 0x38, 0x32, 0xee, 0x71, 0xd9, 0x50, 0x74, 0xc6, 0x11, 0xfd, 0xf2,
+ 0x74, 0xad, 0xfa, 0xc4, 0xd9, 0x7f, 0x26, 0x7e, 0x63, 0x49, 0x85, 0xd6, 0x8c, 0x60, 0x91, 0x09,
+ 0xd5, 0xda, 0xb5, 0xb3, 0xd3, 0xb5, 0xca, 0x87, 0x02, 0xa0, 0xe7, 0x80, 0xde, 0x07, 0x70, 0xc3,
+ 0xa1, 0xd8, 0x04, 0x1e, 0xc6, 0xda, 0x58, 0xef, 0x9a, 0x7d, 0xda, 0x4c, 0x30, 0x5f, 0x66, 0xbe,
+ 0xb0, 0x35, 0x06, 0x7d, 0x1b, 0xaa, 0x9c, 0x0e, 0x23, 0x9f, 0x70, 0x2a, 0x63, 0x61, 0xad, 0xbd,
+ 0xa4, 0xc7, 0x57, 0x3b, 0x1a, 0x8e, 0x13, 0x8a, 0x86, 0x07, 0x8b, 0x5b, 0x34, 0xa2, 0x41, 0x97,
+ 0x06, 0xee, 0x58, 0x26, 0x32, 0x62, 0xcd, 0x41, 0x5a, 0x7d, 0x24, 0x6b, 0x96, 0x7e, 0x58, 0x62,
+ 0xd0, 0x77, 0xa1, 0xde, 0x35, 0x83, 0x3c, 0xca, 0x96, 0x8b, 0x72, 0x31, 0x4b, 0xa2, 0x46, 0xd9,
+ 0xb2, 0xe0, 0x38, 0x43, 0xd5, 0xf8, 0xab, 0x02, 0x54, 0x64, 0x08, 0x42, 0x43, 0x98, 0x77, 0xc3,
+ 0x80, 0xd3, 0xdf, 0xe3, 0x3a, 0xeb, 0x99, 0x21, 0xf5, 0x90, 0x1c, 0x37, 0x15, 0xb7, 0xf6, 0x82,
+ 0x30, 0x28, 0xfd, 0x81, 0x8d, 0x0c, 0xf4, 0x16, 0x94, 0xbb, 0x84, 0x13, 0xb9, 0x45, 0x75, 0x95,
+ 0x9e, 0x88, 0x2d, 0xc6, 0x12, 0xfa, 0xa0, 0xfa, 0x97, 0x7f, 0xb3, 0x76, 0xed, 0xc7, 0xff, 0x7e,
+ 0xf7, 0x5a, 0xe3, 0x8b, 0x22, 0xd4, 0x6d, 0x76, 0x68, 0x05, 0x8a, 0x5e, 0x57, 0xeb, 0x01, 0xb4,
+ 0x1e, 0x8a, 0x8f, 0xb7, 0x70, 0xd1, 0xeb, 0x4a, 0xe7, 0xa6, 0x02, 0x77, 0x31, 0x5b, 0xc9, 0xe4,
+ 0x52, 0xe9, 0x5f, 0x87, 0x05, 0x71, 0x98, 0x4f, 0x54, 0x22, 0x28, 0xbd, 0x5b, 0xad, 0x7d, 0x4b,
+ 0x13, 0x2f, 0x08, 0x23, 0x35, 0x39, 0xa2, 0x4d, 0x27, 0x36, 0x41, 0x9a, 0x55, 0x39, 0xbb, 0x09,
+ 0x96, 0x29, 0xb5, 0x60, 0x51, 0xcc, 0x5f, 0x2e, 0x32, 0xe0, 0x92, 0x58, 0x6d, 0xf7, 0xd7, 0x34,
+ 0xf1, 0xa2, 0x58, 0xe4, 0xa6, 0x42, 0xcb, 0x71, 0x79, 0x7a, 0x11, 0xdd, 0xd9, 0xe8, 0xe8, 0x13,
+ 0xea, 0xaa, 0x24, 0xc7, 0x8a, 0xee, 0x8e, 0x02, 0x63, 0x83, 0x47, 0x7b, 0x50, 0x16, 0xe5, 0xac,
+ 0xce, 0x52, 0xbe, 0x75, 0xbe, 0xb4, 0xb9, 0xe3, 0x0d, 0xa9, 0x35, 0x77, 0x4f, 0x18, 0x90, 0xe0,
+ 0x62, 0xe9, 0xfc, 0xaf, 0x8b, 0xb0, 0x28, 0x75, 0x9e, 0x5a, 0xe1, 0x39, 0x0c, 0xb0, 0x05, 0x8b,
+ 0xd2, 0x2e, 0x94, 0xae, 0xad, 0xf4, 0x24, 0x59, 0xfb, 0x76, 0x16, 0x8d, 0xf3, 0xf4, 0x22, 0x9a,
+ 0x49, 0x50, 0x92, 0xa4, 0x58, 0xd1, 0x6c, 0xdb, 0x20, 0x70, 0x4a, 0x83, 0x4e, 0x60, 0xbe, 0x27,
+ 0x9d, 0x02, 0xd3, 0x59, 0xc6, 0xfe, 0x8c, 0x46, 0x9b, 0xae, 0x58, 0x39, 0x1b, 0x65, 0xbd, 0xea,
+ 0x37, 0xc3, 0x46, 0x58, 0xe3, 0x5f, 0x8b, 0x70, 0x67, 0x2a, 0x3d, 0x3a, 0xd2, 0x7b, 0xa2, 0xce,
+ 0xd0, 0xd6, 0x0c, 0xce, 0xd9, 0x1b, 0x52, 0x3d, 0x87, 0x6a, 0x76, 0xa7, 0xec, 0xa3, 0x5a, 0xbc,
+ 0x82, 0xa3, 0xda, 0xd3, 0x47, 0x55, 0x15, 0x8a, 0x33, 0x2c, 0x29, 0xf5, 0xe1, 0xa9, 0x01, 0xa5,
+ 0x87, 0xbe, 0xf1, 0x0e, 0xd4, 0xed, 0x9a, 0xe5, 0xe5, 0x7e, 0xbe, 0xf1, 0xcb, 0x32, 0x2c, 0x58,
+ 0x89, 0x3c, 0x7a, 0x5b, 0x55, 0x35, 0x6a, 0xc0, 0x82, 0x1e, 0x90, 0x96, 0x24, 0x3f, 0x80, 0x1b,
+ 0xae, 0x1f, 0x06, 0x74, 0xcb, 0x8b, 0x65, 0xa6, 0x32, 0xd6, 0x06, 0xfa, 0x86, 0xa6, 0xbc, 0xb1,
+ 0x99, 0xc1, 0xe2, 0x1c, 0x35, 0x72, 0xa1, 0xe2, 0xc6, 0xb4, 0xcb, 0x74, 0x3a, 0xd4, 0x9e, 0xa9,
+ 0xfa, 0xd8, 0x14, 0x9c, 0x54, 0xb0, 0x91, 0x3f, 0xb1, 0xe2, 0x8d, 0x7e, 0x07, 0xea, 0x8c, 0x0d,
+ 0x64, 0x3e, 0x25, 0x53, 0xaf, 0x0b, 0x65, 0xcf, 0xd2, 0xdd, 0x3b, 0xce, 0x4e, 0x32, 0x1c, 0x67,
+ 0x98, 0x89, 0x38, 0xd4, 0x33, 0x21, 0x3c, 0x17, 0x87, 0x92, 0xa0, 0x9d, 0x50, 0x08, 0x77, 0x7a,
+ 0x14, 0x93, 0xc0, 0x1d, 0x68, 0x4f, 0x94, 0xb8, 0xd3, 0xb6, 0x84, 0x62, 0x8d, 0x15, 0x6a, 0xe7,
+ 0xa4, 0x2f, 0xdd, 0x90, 0xa5, 0xf6, 0x0e, 0xe9, 0x63, 0x01, 0x17, 0xe8, 0x98, 0xf6, 0x74, 0xca,
+ 0x90, 0xa0, 0x31, 0xed, 0x61, 0x01, 0x47, 0x43, 0x98, 0x8b, 0xe9, 0x30, 0xe4, 0x74, 0xb9, 0x26,
+ 0x97, 0xfa, 0x78, 0x26, 0xb5, 0x62, 0xc9, 0x4a, 0x95, 0x8e, 0xaa, 0xbe, 0x56, 0x10, 0xac, 0x85,
+ 0xa0, 0xdf, 0x02, 0x50, 0x2a, 0x91, 0x4a, 0x00, 0x39, 0xa9, 0xa4, 0x6b, 0x90, 0xe6, 0x31, 0x4a,
+ 0x89, 0x52, 0x21, 0x16, 0x7d, 0xe3, 0xef, 0x0a, 0x50, 0x35, 0x9b, 0x87, 0xf6, 0xa1, 0x3a, 0x62,
+ 0x34, 0x4e, 0xfc, 0xe2, 0xb9, 0xb7, 0x49, 0x56, 0x85, 0x87, 0x7a, 0x28, 0x4e, 0x98, 0x08, 0x86,
+ 0x11, 0x61, 0xec, 0x79, 0x18, 0x77, 0x2f, 0xd6, 0x30, 0x94, 0x0c, 0x0f, 0xf4, 0x50, 0x9c, 0x30,
+ 0x69, 0x7c, 0x00, 0x8b, 0x39, 0x9d, 0x9c, 0xc3, 0x91, 0xbf, 0x05, 0xe5, 0x51, 0xec, 0x9b, 0x0c,
+ 0x42, 0x3a, 0x9f, 0x43, 0xbc, 0xe7, 0x60, 0x09, 0x6d, 0x7c, 0x51, 0x81, 0x85, 0x9d, 0x4e, 0xe7,
+ 0xc0, 0x54, 0x20, 0x2f, 0x39, 0x73, 0x56, 0xbe, 0x5a, 0xbc, 0xc2, 0x7c, 0xf5, 0x10, 0x4a, 0xdc,
+ 0x37, 0x07, 0xf5, 0xc1, 0x85, 0xeb, 0xf7, 0xce, 0x9e, 0xa3, 0x4d, 0x48, 0xf6, 0x06, 0x3a, 0x7b,
+ 0x0e, 0x16, 0xfc, 0xc4, 0x89, 0x18, 0x52, 0x3e, 0x08, 0xbb, 0xf9, 0x56, 0xe9, 0x53, 0x09, 0xc5,
+ 0x1a, 0x9b, 0xab, 0x12, 0x2a, 0x57, 0x5e, 0x25, 0x7c, 0x13, 0xe6, 0x45, 0xa4, 0x08, 0x47, 0x2a,
+ 0x89, 0x28, 0xa5, 0x9a, 0xea, 0x28, 0x30, 0x36, 0x78, 0xd4, 0x87, 0xda, 0x11, 0x61, 0x9e, 0xdb,
+ 0x1a, 0xf1, 0x81, 0xce, 0x24, 0x2e, 0xae, 0xaf, 0xb6, 0xe1, 0xa0, 0x3a, 0x37, 0xc9, 0x27, 0x4e,
+ 0x79, 0xa3, 0x3f, 0x80, 0xf9, 0x01, 0x25, 0x5d, 0xa1, 0x90, 0xaa, 0x54, 0x08, 0x7e, 0x75, 0x85,
+ 0x58, 0x06, 0xd8, 0xdc, 0x51, 0x4c, 0x55, 0xc9, 0x96, 0xb6, 0x42, 0x14, 0x14, 0x1b, 0x99, 0x2b,
+ 0x0f, 0xa0, 0x6e, 0x53, 0x5e, 0xa8, 0x00, 0xf9, 0xe3, 0x12, 0xdc, 0xdc, 0xdd, 0x70, 0x4c, 0x1f,
+ 0xe7, 0x20, 0xf4, 0x3d, 0x77, 0x8c, 0xfe, 0x08, 0xe6, 0x7c, 0x72, 0x44, 0x7d, 0xb6, 0x5c, 0x90,
+ 0xeb, 0xf9, 0xe8, 0xd5, 0xd7, 0x33, 0xc1, 0xbc, 0xb9, 0x27, 0x39, 0xab, 0x45, 0x25, 0x56, 0xa6,
+ 0x80, 0x58, 0x8b, 0x45, 0x1f, 0xc3, 0xfc, 0x11, 0x71, 0x8f, 0xc3, 0x5e, 0x4f, 0x7b, 0x8b, 0x8d,
+ 0x57, 0xd8, 0x38, 0x39, 0x5e, 0x45, 0x7e, 0xfd, 0x81, 0x0d, 0x57, 0xe4, 0xc0, 0x1d, 0x1a, 0xc7,
+ 0x61, 0xbc, 0x1f, 0x68, 0x94, 0xb6, 0x1e, 0x79, 0xae, 0xaa, 0xed, 0xb7, 0xf5, 0xbc, 0xee, 0x6c,
+ 0x4f, 0x23, 0xc2, 0xd3, 0xc7, 0xae, 0x7c, 0x1f, 0x16, 0xac, 0xc5, 0x5d, 0x68, 0x1f, 0xfe, 0xb3,
+ 0x02, 0xf5, 0x5d, 0xd2, 0x3b, 0x26, 0xe7, 0x74, 0x3e, 0x5f, 0x87, 0x0a, 0x0f, 0x23, 0xcf, 0xd5,
+ 0x71, 0xfe, 0xba, 0x26, 0xa8, 0x74, 0x04, 0x10, 0x2b, 0x9c, 0x48, 0x3a, 0x23, 0x12, 0x73, 0x8f,
+ 0x9b, 0x52, 0xa0, 0x92, 0x26, 0x9d, 0x07, 0x06, 0x81, 0x53, 0x9a, 0xdc, 0xe1, 0x2e, 0x5f, 0xf9,
+ 0xe1, 0xde, 0x80, 0x7a, 0x4c, 0x3f, 0x1d, 0x79, 0xb2, 0x23, 0x76, 0xcc, 0x64, 0x20, 0xaf, 0xa4,
+ 0x37, 0x52, 0xd8, 0xc2, 0xe1, 0x0c, 0xa5, 0x08, 0xff, 0xa2, 0x28, 0x8d, 0x29, 0x63, 0xd2, 0x2f,
+ 0x54, 0xd3, 0xf0, 0xbf, 0xa9, 0xe1, 0x38, 0xa1, 0x10, 0xe9, 0x52, 0xcf, 0x1f, 0xb1, 0xc1, 0x43,
+ 0xc1, 0x43, 0xa4, 0xb8, 0xd2, 0x3d, 0x54, 0xd2, 0x74, 0xe9, 0x61, 0x06, 0x8b, 0x73, 0xd4, 0xc6,
+ 0x07, 0x57, 0x2f, 0xd9, 0x07, 0x5b, 0x11, 0xa5, 0x76, 0x85, 0x11, 0xa5, 0x05, 0x8b, 0x89, 0x09,
+ 0x78, 0x41, 0x7f, 0x97, 0x8e, 0x75, 0xf2, 0x90, 0x94, 0x37, 0x07, 0x59, 0x34, 0xce, 0xd3, 0x0b,
+ 0xaf, 0x6c, 0x4a, 0xce, 0x85, 0x6c, 0x69, 0x67, 0xca, 0x4d, 0x83, 0x6f, 0xec, 0x03, 0xec, 0x85,
+ 0x7d, 0x63, 0xe6, 0x2d, 0x58, 0xf4, 0x02, 0x4e, 0xe3, 0x13, 0xe2, 0x3b, 0xd4, 0x0d, 0x83, 0x2e,
+ 0x93, 0x26, 0x5f, 0x4e, 0x65, 0x3f, 0xce, 0xa2, 0x71, 0x9e, 0xbe, 0xf1, 0xb7, 0x25, 0x58, 0x78,
+ 0xd6, 0xea, 0x38, 0xe7, 0x3c, 0x39, 0x56, 0x15, 0x5a, 0x7c, 0x49, 0x15, 0x6a, 0xed, 0x47, 0xe9,
+ 0xb5, 0xf5, 0x62, 0xaf, 0xfe, 0x14, 0x6a, 0xeb, 0xae, 0x5c, 0xae, 0x75, 0x37, 0x7e, 0x5a, 0x86,
+ 0xa5, 0xfd, 0x88, 0x06, 0x1f, 0x0d, 0x3c, 0x76, 0x6c, 0xdd, 0x09, 0x0c, 0x42, 0xc6, 0xf3, 0x39,
+ 0xdb, 0x4e, 0xc8, 0x38, 0x96, 0x18, 0xdb, 0xb4, 0x8a, 0x5f, 0x6d, 0x5a, 0xc2, 0xdf, 0x89, 0x34,
+ 0x8f, 0x45, 0xc4, 0x9d, 0x28, 0xb2, 0x9f, 0x19, 0x04, 0x4e, 0x69, 0xe4, 0x3d, 0xf6, 0x88, 0x0f,
+ 0x3a, 0xe1, 0x31, 0x0d, 0x2e, 0x56, 0x8e, 0xa8, 0x7b, 0x6c, 0x33, 0x16, 0xa7, 0x6c, 0xd0, 0x7b,
+ 0x00, 0x24, 0xbd, 0x53, 0x57, 0xa5, 0x48, 0xa2, 0xf1, 0x56, 0x7a, 0xa3, 0x6e, 0x51, 0xd9, 0x86,
+ 0x36, 0xf7, 0xda, 0x0c, 0x6d, 0xfe, 0xca, 0x9b, 0xfe, 0xff, 0x5c, 0x84, 0x39, 0x47, 0x32, 0x41,
+ 0x3f, 0x82, 0xea, 0x90, 0x72, 0x22, 0xab, 0x71, 0x55, 0x70, 0xbc, 0x73, 0xbe, 0xa6, 0xcf, 0xbe,
+ 0x3c, 0xaa, 0x4f, 0x29, 0x27, 0xa9, 0xb8, 0x14, 0x86, 0x13, 0xae, 0xa2, 0xd6, 0x97, 0x3d, 0xf5,
+ 0xe2, 0xac, 0xed, 0x0b, 0x35, 0x63, 0x27, 0xa2, 0xee, 0xd4, 0x36, 0x7a, 0x00, 0x73, 0x8c, 0x13,
+ 0x3e, 0x62, 0xb3, 0xdf, 0x73, 0x6a, 0x49, 0x92, 0x9b, 0xd5, 0xf1, 0x93, 0xdf, 0x58, 0x4b, 0x69,
+ 0xfc, 0x4b, 0x01, 0x40, 0x11, 0xee, 0x79, 0x8c, 0xa3, 0xdf, 0x9d, 0x50, 0x64, 0xf3, 0x7c, 0x8a,
+ 0x14, 0xa3, 0xa5, 0x1a, 0x93, 0xc0, 0x69, 0x20, 0x96, 0x12, 0x29, 0x54, 0x3c, 0x4e, 0x87, 0x4c,
+ 0x57, 0x3c, 0xef, 0xcf, 0xba, 0xb6, 0x34, 0x71, 0x79, 0x2c, 0xd8, 0x62, 0xc5, 0xbd, 0xf1, 0x5f,
+ 0x15, 0xb3, 0x26, 0xa1, 0x58, 0xf4, 0x93, 0x42, 0xae, 0x03, 0xac, 0xb2, 0xd2, 0xc7, 0x97, 0xd6,
+ 0x11, 0x4b, 0x53, 0x8c, 0x17, 0x37, 0x94, 0x51, 0x08, 0x55, 0xae, 0x2c, 0xdc, 0x2c, 0xbf, 0x35,
+ 0xf3, 0x59, 0xb1, 0x9a, 0xe5, 0x9a, 0x35, 0x4e, 0x84, 0x20, 0xdf, 0x6a, 0xad, 0xcf, 0xdc, 0x97,
+ 0x31, 0xcd, 0x78, 0x55, 0x50, 0x4f, 0xb6, 0xe6, 0xd1, 0x4f, 0x0b, 0xb0, 0xd4, 0xcd, 0xf6, 0xe6,
+ 0x4d, 0xf0, 0x99, 0x41, 0xd1, 0xb9, 0x6e, 0x7f, 0x72, 0x63, 0xb1, 0x94, 0x43, 0x30, 0x3c, 0x21,
+ 0x1c, 0x3d, 0x01, 0xa4, 0xf3, 0xec, 0x87, 0xc4, 0xf3, 0x69, 0x17, 0x87, 0xa3, 0xa0, 0x2b, 0x3d,
+ 0x6a, 0x35, 0xbd, 0x51, 0xdb, 0x9e, 0xa0, 0xc0, 0x53, 0x46, 0x89, 0xcc, 0x52, 0x4e, 0xb5, 0x3d,
+ 0x62, 0xd2, 0x2f, 0xcf, 0x65, 0xdf, 0x3a, 0x6d, 0x5b, 0x38, 0x9c, 0xa1, 0x44, 0xf7, 0x61, 0xde,
+ 0xf5, 0x62, 0x77, 0xe4, 0x71, 0xdd, 0x06, 0x7a, 0x53, 0x0f, 0xba, 0x69, 0x5d, 0x0d, 0x29, 0x02,
+ 0x6c, 0x28, 0xd1, 0x3d, 0xa8, 0xc6, 0x34, 0xf2, 0x3d, 0x97, 0xa8, 0x2c, 0xb1, 0x62, 0xae, 0xcb,
+ 0x15, 0x0c, 0x27, 0xd8, 0x46, 0x08, 0x75, 0xfb, 0x98, 0xa3, 0x8f, 0x13, 0xf7, 0xa1, 0x4e, 0xef,
+ 0xf7, 0x2e, 0xfe, 0x42, 0xe3, 0xab, 0xfd, 0xc5, 0x3f, 0x14, 0xa1, 0xee, 0xf8, 0xc4, 0x4d, 0x42,
+ 0x70, 0x36, 0x0a, 0x14, 0x5e, 0x43, 0xba, 0x01, 0x4c, 0xce, 0x47, 0x46, 0xe1, 0xe2, 0x85, 0xef,
+ 0x63, 0x9d, 0x64, 0x30, 0xb6, 0x18, 0x89, 0xbc, 0xc1, 0x1d, 0x90, 0x20, 0xa0, 0xbe, 0x4e, 0x05,
+ 0x92, 0x38, 0xb8, 0xa9, 0xc0, 0xd8, 0xe0, 0x05, 0xe9, 0x90, 0x32, 0x46, 0xfa, 0xe6, 0x02, 0x24,
+ 0x21, 0x7d, 0xaa, 0xc0, 0xd8, 0xe0, 0x1b, 0xff, 0x5b, 0x06, 0xe4, 0x70, 0x12, 0x74, 0x49, 0xdc,
+ 0xdd, 0xdd, 0x48, 0x72, 0xce, 0x17, 0xbe, 0xfb, 0x29, 0xbc, 0x8e, 0x77, 0x3f, 0xd6, 0x03, 0xae,
+ 0xe2, 0x95, 0x3c, 0xe0, 0x7a, 0x66, 0x3f, 0xe0, 0x52, 0xda, 0x7e, 0x67, 0xda, 0x03, 0xae, 0x5f,
+ 0xd9, 0x1d, 0x1d, 0xd1, 0x38, 0xa0, 0x9c, 0x32, 0x33, 0xd7, 0x73, 0x3c, 0xe3, 0xba, 0xfa, 0x0c,
+ 0xb8, 0x07, 0xd7, 0x23, 0xc2, 0xdd, 0x81, 0xc3, 0x63, 0xc2, 0x69, 0x7f, 0xac, 0xd3, 0xb8, 0xf7,
+ 0xf5, 0xb0, 0xeb, 0x07, 0x36, 0xf2, 0xcb, 0xd3, 0xb5, 0x5f, 0x7b, 0xd1, 0xb3, 0x4c, 0x3e, 0x8e,
+ 0x28, 0x6b, 0x4a, 0x72, 0x79, 0x27, 0x96, 0x65, 0x2b, 0x72, 0x45, 0xdf, 0x3b, 0xa1, 0xfb, 0xe9,
+ 0xa5, 0x58, 0x35, 0x9d, 0xdb, 0x5e, 0x82, 0xc1, 0x16, 0x55, 0x63, 0x1d, 0xea, 0xea, 0x44, 0xeb,
+ 0x5e, 0xcd, 0x1a, 0x54, 0x88, 0xef, 0x87, 0xcf, 0xe5, 0xc9, 0xad, 0xa8, 0xb6, 0x7b, 0x4b, 0x00,
+ 0xb0, 0x82, 0x37, 0xfe, 0x69, 0x1e, 0x12, 0x7f, 0x8f, 0xdc, 0x89, 0xf4, 0xe0, 0xe2, 0x4f, 0x80,
+ 0x9e, 0x6a, 0x06, 0xca, 0xa7, 0x99, 0x2f, 0x2b, 0x4b, 0xd0, 0x4f, 0x21, 0x3c, 0x97, 0xb6, 0x5c,
+ 0x37, 0x1c, 0xe9, 0x5b, 0xaf, 0xe2, 0xe4, 0x53, 0x88, 0x2c, 0x05, 0x9e, 0x32, 0x0a, 0x3d, 0x91,
+ 0x8f, 0xad, 0x38, 0x11, 0x3a, 0xd5, 0x51, 0xf0, 0xed, 0x17, 0x3c, 0xb6, 0x52, 0x44, 0xc9, 0x0b,
+ 0x2b, 0xf5, 0x89, 0xd3, 0xe1, 0x68, 0x1b, 0xe6, 0x4f, 0x42, 0x7f, 0x34, 0xa4, 0xc6, 0xa6, 0x56,
+ 0xa6, 0x71, 0xfa, 0x50, 0x92, 0x58, 0x65, 0x86, 0x1a, 0x82, 0xcd, 0x58, 0x44, 0x61, 0x51, 0x3e,
+ 0x25, 0xf1, 0xf8, 0x58, 0xdf, 0x28, 0xe9, 0x5a, 0xe9, 0x1b, 0xd3, 0xd8, 0x1d, 0x84, 0x5d, 0x27,
+ 0x4b, 0xad, 0x5f, 0x02, 0x65, 0x81, 0x38, 0xcf, 0x13, 0xfd, 0x59, 0x01, 0xea, 0x41, 0xd8, 0xa5,
+ 0xc6, 0xdb, 0xe9, 0xd2, 0xa0, 0x33, 0x7b, 0x0e, 0xd0, 0x7c, 0x66, 0xb1, 0x55, 0x8d, 0xb8, 0x24,
+ 0x12, 0xda, 0x28, 0x9c, 0x91, 0x8f, 0x0e, 0x61, 0x81, 0x87, 0xbe, 0x3e, 0xa3, 0xa6, 0x5e, 0x58,
+ 0x9d, 0xb6, 0xe6, 0x4e, 0x42, 0x96, 0xde, 0x3d, 0xa7, 0x30, 0x86, 0x6d, 0x3e, 0x28, 0x80, 0x25,
+ 0x6f, 0x48, 0xfa, 0xf4, 0x60, 0xe4, 0xfb, 0xca, 0xc5, 0x9b, 0x36, 0xea, 0xd4, 0x57, 0x75, 0xc2,
+ 0x11, 0xf9, 0xfa, 0x5c, 0xd0, 0x1e, 0x8d, 0x69, 0xe0, 0xd2, 0x34, 0xad, 0x78, 0x9c, 0xe3, 0x84,
+ 0x27, 0x78, 0xa3, 0x47, 0x70, 0x33, 0x8a, 0xbd, 0x50, 0xaa, 0xda, 0x27, 0x4c, 0xe5, 0x03, 0xb5,
+ 0x6c, 0x68, 0x3f, 0xc8, 0x13, 0xe0, 0xc9, 0x31, 0x22, 0xc8, 0x1b, 0xa0, 0x6c, 0x98, 0xe8, 0x20,
+ 0x6f, 0xc6, 0xe2, 0x04, 0xbb, 0xf2, 0x43, 0xb8, 0x39, 0xa1, 0xf2, 0x0b, 0xb5, 0x07, 0x1d, 0x80,
+ 0xf4, 0xd6, 0x14, 0x7d, 0x1d, 0x2a, 0x8c, 0x93, 0xd8, 0x54, 0xcd, 0x49, 0x0e, 0xed, 0x08, 0x20,
+ 0x56, 0x38, 0x51, 0x59, 0x33, 0x1e, 0x46, 0xfa, 0xd8, 0xa5, 0x95, 0x0a, 0x0f, 0x23, 0x2c, 0x31,
+ 0x8d, 0xd3, 0x12, 0xcc, 0x9b, 0x00, 0xc6, 0xac, 0x5c, 0xb3, 0x30, 0xeb, 0x65, 0x95, 0x66, 0xfa,
+ 0xd2, 0x94, 0x33, 0xeb, 0xe6, 0x8b, 0x57, 0xee, 0xe6, 0x8f, 0x61, 0x2e, 0x92, 0x4e, 0x54, 0x3b,
+ 0x96, 0x47, 0xb3, 0xcb, 0x96, 0xec, 0x54, 0x8c, 0x54, 0xbf, 0xb1, 0x16, 0x81, 0x3e, 0x85, 0xeb,
+ 0x31, 0xe5, 0xf1, 0x38, 0x89, 0x29, 0xe5, 0x19, 0x1b, 0xdb, 0x37, 0x45, 0x24, 0xc2, 0x36, 0x4b,
+ 0x9c, 0x95, 0xd0, 0xf8, 0x65, 0x01, 0x96, 0xf2, 0x4a, 0x41, 0xc7, 0x50, 0x62, 0xb1, 0xab, 0x37,
+ 0xf9, 0xe0, 0xf2, 0xb4, 0xad, 0x52, 0x02, 0xd5, 0xf3, 0x71, 0x62, 0x17, 0x0b, 0x29, 0xc2, 0x08,
+ 0xbb, 0x94, 0xf1, 0xbc, 0x11, 0x6e, 0x51, 0xc6, 0xb1, 0xc4, 0xa0, 0xbd, 0xc9, 0xd4, 0xa1, 0x39,
+ 0x2d, 0x75, 0x78, 0x33, 0x2f, 0x6f, 0x5a, 0xe2, 0xd0, 0xf8, 0xb7, 0x22, 0xbc, 0x31, 0x7d, 0x62,
+ 0xe8, 0x07, 0x70, 0x23, 0xad, 0x30, 0xac, 0xff, 0x3b, 0x24, 0x3d, 0xdf, 0xad, 0x0c, 0x16, 0xe7,
+ 0xa8, 0x45, 0xac, 0xd6, 0xcf, 0x06, 0xcc, 0x9f, 0x1e, 0xac, 0xbe, 0xce, 0x66, 0x82, 0xc1, 0x16,
+ 0x15, 0x6a, 0xc1, 0xa2, 0xfe, 0xea, 0xd8, 0x85, 0x9c, 0xd5, 0x59, 0xdd, 0xcc, 0xa2, 0x71, 0x9e,
+ 0x5e, 0xe4, 0xa6, 0x22, 0xa6, 0x9a, 0xd7, 0xa6, 0x56, 0x6e, 0xba, 0xa5, 0xc0, 0xd8, 0xe0, 0x45,
+ 0x8d, 0x23, 0x7e, 0x76, 0xb2, 0xcf, 0xb1, 0xd2, 0xd2, 0xd6, 0xc2, 0xe1, 0x0c, 0x65, 0xfa, 0x4e,
+ 0x4c, 0x95, 0x45, 0x13, 0xef, 0xc4, 0x1a, 0xbf, 0x28, 0xc0, 0xf5, 0x8c, 0x89, 0xa3, 0x1e, 0x94,
+ 0x8e, 0x37, 0x4c, 0x91, 0xb2, 0x7b, 0x89, 0xf7, 0x43, 0xca, 0x82, 0x76, 0x37, 0x18, 0x16, 0x02,
+ 0xd0, 0x27, 0x49, 0x3d, 0x34, 0xf3, 0x83, 0x10, 0x3b, 0x6d, 0xd2, 0x69, 0x6c, 0xb6, 0x34, 0xda,
+ 0x4e, 0x16, 0xe9, 0x3c, 0xf7, 0xb8, 0x3b, 0x40, 0x6f, 0x42, 0x89, 0x04, 0x63, 0x99, 0x59, 0xd5,
+ 0xd4, 0xbc, 0x5a, 0xc1, 0x18, 0x0b, 0x98, 0x44, 0xf9, 0xbe, 0xbe, 0x49, 0x56, 0x28, 0xdf, 0xc7,
+ 0x02, 0xd6, 0xf8, 0xc7, 0x05, 0x58, 0xcc, 0xb9, 0xc0, 0x73, 0xdc, 0x4d, 0x2b, 0xfb, 0xea, 0x7a,
+ 0x2a, 0xb8, 0x4e, 0xda, 0x97, 0xc6, 0x60, 0x8b, 0x0a, 0xf5, 0xd5, 0x26, 0x28, 0xef, 0xb5, 0x37,
+ 0x93, 0x66, 0x72, 0x15, 0x4d, 0x6e, 0x17, 0x7e, 0x52, 0x80, 0x3a, 0xb1, 0xfe, 0x7c, 0xa1, 0x9d,
+ 0xd7, 0xd3, 0x59, 0xea, 0x8a, 0x89, 0xff, 0x9d, 0xa8, 0x37, 0x1e, 0x36, 0x02, 0x67, 0x84, 0x22,
+ 0x17, 0xca, 0x03, 0xce, 0xcd, 0x9b, 0xfb, 0xed, 0x4b, 0xb9, 0x64, 0x55, 0xaf, 0x00, 0x04, 0x00,
+ 0x4b, 0xe6, 0xe8, 0x39, 0xd4, 0xc8, 0x73, 0xa6, 0xfe, 0x29, 0xa5, 0x1f, 0xe3, 0xcf, 0x52, 0x3e,
+ 0xe5, 0xfe, 0x74, 0xa5, 0x1b, 0xc7, 0x06, 0x8a, 0x53, 0x59, 0x28, 0x86, 0x39, 0x57, 0x3e, 0xd7,
+ 0xd5, 0x77, 0xd5, 0x8f, 0x2e, 0xe9, 0xd9, 0xaf, 0x0a, 0x14, 0x19, 0x10, 0xd6, 0x92, 0x50, 0x1f,
+ 0x2a, 0xc7, 0xa4, 0x77, 0x4c, 0xf4, 0x55, 0xd6, 0x0c, 0x87, 0xcb, 0xbe, 0xbc, 0x54, 0x0e, 0x44,
+ 0x42, 0xb0, 0xe2, 0x2f, 0xb6, 0x2e, 0x20, 0x9c, 0xe9, 0x87, 0x30, 0x33, 0x6c, 0x9d, 0x75, 0xd3,
+ 0xa3, 0xb6, 0x4e, 0x00, 0xb0, 0x64, 0x2e, 0x56, 0x23, 0x1b, 0x00, 0x32, 0x1b, 0x9b, 0xcd, 0x55,
+ 0x58, 0x0d, 0x12, 0xb5, 0x1a, 0x09, 0xc1, 0x8a, 0xbf, 0xb0, 0x91, 0xd0, 0xdc, 0x64, 0xc8, 0x0b,
+ 0xaf, 0x99, 0x6c, 0x24, 0x7f, 0x29, 0xa2, 0x6c, 0x24, 0x81, 0xe2, 0x54, 0x16, 0xfa, 0x18, 0x4a,
+ 0x7e, 0xd8, 0x5f, 0xbe, 0x3e, 0x6b, 0x0f, 0x3b, 0xbd, 0x81, 0x53, 0x07, 0x7d, 0x2f, 0xec, 0x63,
+ 0xc1, 0x19, 0x8d, 0x60, 0x8e, 0x49, 0xdf, 0xb7, 0x5c, 0xbf, 0xa4, 0x94, 0x48, 0xb9, 0xd2, 0xf6,
+ 0x6d, 0xdd, 0xf4, 0x33, 0x8f, 0x90, 0x24, 0x14, 0x6b, 0x61, 0xe8, 0x4f, 0x0a, 0x70, 0x83, 0x64,
+ 0xfe, 0x34, 0xb2, 0x7c, 0x63, 0xd6, 0x57, 0x8f, 0x53, 0xff, 0x84, 0xd2, 0x46, 0x22, 0xd4, 0x67,
+ 0x51, 0x38, 0x27, 0xba, 0xe1, 0xc2, 0x82, 0xf5, 0xef, 0x9f, 0x73, 0xbc, 0xca, 0x7e, 0x0f, 0xe0,
+ 0x84, 0xc6, 0x5e, 0x6f, 0xbc, 0x49, 0x63, 0xae, 0xff, 0x7e, 0x90, 0xf8, 0xee, 0x0f, 0x13, 0x0c,
+ 0xb6, 0xa8, 0xda, 0xcd, 0xcf, 0x3e, 0x5f, 0xbd, 0xf6, 0xb3, 0xcf, 0x57, 0xaf, 0xfd, 0xfc, 0xf3,
+ 0xd5, 0x6b, 0x3f, 0x3e, 0x5b, 0x2d, 0x7c, 0x76, 0xb6, 0x5a, 0xf8, 0xd9, 0xd9, 0x6a, 0xe1, 0xe7,
+ 0x67, 0xab, 0x85, 0xff, 0x38, 0x5b, 0x2d, 0xfc, 0xf9, 0x2f, 0x56, 0xaf, 0xfd, 0x76, 0xd5, 0x2c,
+ 0xe7, 0xff, 0x02, 0x00, 0x00, 0xff, 0xff, 0x75, 0xfe, 0x2b, 0x82, 0x7a, 0x3b, 0x00, 0x00,
}
func (m *AWSLambdaTrigger) Marshal() (dAtA []byte, err error) {
@@ -2911,6 +2912,11 @@ func (m *SensorSpec) MarshalToSizedBuffer(dAtA []byte) (int, error) {
_ = i
var l int
_ = l
+ if m.Replicas != nil {
+ i = encodeVarintGenerated(dAtA, i, uint64(*m.Replicas))
+ i--
+ dAtA[i] = 0x40
+ }
i -= len(m.DeprecatedCircuit)
copy(dAtA[i:], m.DeprecatedCircuit)
i = encodeVarintGenerated(dAtA, i, uint64(len(m.DeprecatedCircuit)))
@@ -4449,6 +4455,9 @@ func (m *SensorSpec) Size() (n int) {
n += 1 + l + sovGenerated(uint64(l))
l = len(m.DeprecatedCircuit)
n += 1 + l + sovGenerated(uint64(l))
+ if m.Replicas != nil {
+ n += 1 + sovGenerated(uint64(*m.Replicas))
+ }
return n
}
@@ -5208,6 +5217,7 @@ func (this *SensorSpec) String() string {
`ErrorOnFailedRound:` + fmt.Sprintf("%v", this.ErrorOnFailedRound) + `,`,
`EventBusName:` + fmt.Sprintf("%v", this.EventBusName) + `,`,
`DeprecatedCircuit:` + fmt.Sprintf("%v", this.DeprecatedCircuit) + `,`,
+ `Replicas:` + valueToStringGenerated(this.Replicas) + `,`,
`}`,
}, "")
return s
@@ -10658,6 +10668,26 @@ func (m *SensorSpec) Unmarshal(dAtA []byte) error {
}
m.DeprecatedCircuit = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
+ case 8:
+ if wireType != 0 {
+ return fmt.Errorf("proto: wrong wireType = %d for field Replicas", wireType)
+ }
+ var v int32
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return ErrIntOverflowGenerated
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ v |= int32(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ m.Replicas = &v
default:
iNdEx = preIndex
skippy, err := skipGenerated(dAtA[iNdEx:])
diff --git a/pkg/apis/sensor/v1alpha1/generated.proto b/pkg/apis/sensor/v1alpha1/generated.proto
index 75f948b1fe..0197e39b16 100644
--- a/pkg/apis/sensor/v1alpha1/generated.proto
+++ b/pkg/apis/sensor/v1alpha1/generated.proto
@@ -497,6 +497,9 @@ message SensorSpec {
// Circuit is a boolean expression of dependency groups
// Deprecated: will be removed in v1.5, use Switch in triggers instead.
optional string circuit = 7;
+
+ // Replicas is the sensor deployment replicas
+ optional int32 replicas = 8;
}
// SensorStatus contains information about the status of a sensor.
diff --git a/pkg/apis/sensor/v1alpha1/openapi_generated.go b/pkg/apis/sensor/v1alpha1/openapi_generated.go
index 41c04fc35e..12c5161afc 100644
--- a/pkg/apis/sensor/v1alpha1/openapi_generated.go
+++ b/pkg/apis/sensor/v1alpha1/openapi_generated.go
@@ -1388,6 +1388,13 @@ func schema_pkg_apis_sensor_v1alpha1_SensorSpec(ref common.ReferenceCallback) co
Format: "",
},
},
+ "replicas": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Replicas is the sensor deployment replicas",
+ Type: []string{"integer"},
+ Format: "int32",
+ },
+ },
},
Required: []string{"dependencies", "triggers"},
},
diff --git a/pkg/apis/sensor/v1alpha1/types.go b/pkg/apis/sensor/v1alpha1/types.go
index 98faf69cf2..c1d567ad0f 100644
--- a/pkg/apis/sensor/v1alpha1/types.go
+++ b/pkg/apis/sensor/v1alpha1/types.go
@@ -111,6 +111,19 @@ type SensorSpec struct {
// Circuit is a boolean expression of dependency groups
// Deprecated: will be removed in v1.5, use Switch in triggers instead.
DeprecatedCircuit string `json:"circuit,omitempty" protobuf:"bytes,7,opt,name=circuit"`
+ // Replicas is the sensor deployment replicas
+ Replicas *int32 `json:"replicas,omitempty" protobuf:"varint,8,opt,name=replicas"`
+}
+
+func (s SensorSpec) GetReplicas() int32 {
+ if s.Replicas == nil {
+ return 1
+ }
+ replicas := *s.Replicas
+ if replicas < 1 {
+ replicas = 1
+ }
+ return replicas
}
// Template holds the information of a sensor deployment template
diff --git a/pkg/apis/sensor/v1alpha1/zz_generated.deepcopy.go b/pkg/apis/sensor/v1alpha1/zz_generated.deepcopy.go
index a1e93314ad..e0aba45d29 100644
--- a/pkg/apis/sensor/v1alpha1/zz_generated.deepcopy.go
+++ b/pkg/apis/sensor/v1alpha1/zz_generated.deepcopy.go
@@ -747,6 +747,11 @@ func (in *SensorSpec) DeepCopyInto(out *SensorSpec) {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
+ if in.Replicas != nil {
+ in, out := &in.Replicas, &out.Replicas
+ *out = new(int32)
+ **out = **in
+ }
return
}
diff --git a/sensors/cmd/main.go b/sensors/cmd/main.go
index cd4a64eea1..077b7a45d9 100644
--- a/sensors/cmd/main.go
+++ b/sensors/cmd/main.go
@@ -27,6 +27,7 @@ import (
"k8s.io/client-go/kubernetes"
"sigs.k8s.io/controller-runtime/pkg/manager/signals"
+ argoevents "github.com/argoproj/argo-events"
"github.com/argoproj/argo-events/common"
"github.com/argoproj/argo-events/common/logging"
"github.com/argoproj/argo-events/metrics"
@@ -73,14 +74,21 @@ func main() {
logger.Fatalf("required environment variable '%s' not defined", common.EnvVarEventBusSubject)
}
+ hostname, defined := os.LookupEnv("POD_NAME")
+ if !defined {
+ logger.Fatal("required environment variable 'POD_NAME' not defined")
+ }
+
dynamicClient := dynamic.NewForConfigOrDie(restConfig)
logger = logger.With("sensorName", sensor.Name)
ctx := logging.WithLogger(signals.SetupSignalHandler(), logger)
m := metrics.NewMetrics(sensor.Namespace)
go m.Run(ctx, fmt.Sprintf(":%d", common.SensorMetricsPort))
- sensorExecutionCtx := sensors.NewSensorContext(kubeClient, dynamicClient, sensor, busConfig, ebSubject, m)
- if err := sensorExecutionCtx.ListenEvents(ctx); err != nil {
- logger.Desugar().Fatal("failed to listen to events", zap.Error(err))
+
+ logger.Infow("starting sensor server", "version", argoevents.GetVersion())
+ sensorExecutionCtx := sensors.NewSensorContext(kubeClient, dynamicClient, sensor, busConfig, ebSubject, hostname, m)
+ if err := sensorExecutionCtx.Start(ctx); err != nil {
+ logger.Fatalw("failed to listen to events", zap.Error(err))
}
}
diff --git a/sensors/context.go b/sensors/context.go
index 7640174fc0..f296ba6f7a 100644
--- a/sensors/context.go
+++ b/sensors/context.go
@@ -36,16 +36,18 @@ import (
// SensorContext contains execution context for Sensor
type SensorContext struct {
- // KubeClient is the kubernetes client
- KubeClient kubernetes.Interface
- // ClientPool manages a pool of dynamic clients.
- DynamicClient dynamic.Interface
+ // kubeClient is the kubernetes client
+ kubeClient kubernetes.Interface
+ // dynamic clients.
+ dynamicClient dynamic.Interface
// Sensor object
- Sensor *v1alpha1.Sensor
+ sensor *v1alpha1.Sensor
// EventBus config
- EventBusConfig *eventbusv1alpha1.BusConfig
+ eventBusConfig *eventbusv1alpha1.BusConfig
// EventBus subject
- EventBusSubject string
+ eventBusSubject string
+ hostname string
+
// httpClients holds the reference to HTTP clients for HTTP triggers.
httpClients map[string]*http.Client
// customTriggerClients holds the references to the gRPC clients for the custom trigger servers
@@ -66,13 +68,14 @@ type SensorContext struct {
}
// NewSensorContext returns a new sensor execution context.
-func NewSensorContext(kubeClient kubernetes.Interface, dynamicClient dynamic.Interface, sensor *v1alpha1.Sensor, eventBusConfig *eventbusv1alpha1.BusConfig, eventBusSubject string, metrics *sensormetrics.Metrics) *SensorContext {
+func NewSensorContext(kubeClient kubernetes.Interface, dynamicClient dynamic.Interface, sensor *v1alpha1.Sensor, eventBusConfig *eventbusv1alpha1.BusConfig, eventBusSubject, hostname string, metrics *sensormetrics.Metrics) *SensorContext {
return &SensorContext{
- KubeClient: kubeClient,
- DynamicClient: dynamicClient,
- Sensor: sensor,
- EventBusConfig: eventBusConfig,
- EventBusSubject: eventBusSubject,
+ kubeClient: kubeClient,
+ dynamicClient: dynamicClient,
+ sensor: sensor,
+ eventBusConfig: eventBusConfig,
+ eventBusSubject: eventBusSubject,
+ hostname: hostname,
httpClients: make(map[string]*http.Client),
customTriggerClients: make(map[string]*grpc.ClientConn),
slackHTTPClient: &http.Client{
diff --git a/sensors/listener.go b/sensors/listener.go
index 3117d087b9..1ac1e4a6b2 100644
--- a/sensors/listener.go
+++ b/sensors/listener.go
@@ -31,6 +31,8 @@ import (
"github.com/pkg/errors"
"go.uber.org/zap"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
+ "k8s.io/client-go/tools/leaderelection"
+ "k8s.io/client-go/tools/leaderelection/resourcelock"
"github.com/argoproj/argo-events/common"
"github.com/argoproj/argo-events/common/logging"
@@ -53,7 +55,7 @@ func subscribeOnce(subLock *uint32, subscribe func()) {
func (sensorCtx *SensorContext) getGroupAndClientID(depExpression string) (string, string) {
// Generate clientID with hash code
- hashKey := fmt.Sprintf("%s-%s", sensorCtx.Sensor.Name, depExpression)
+ hashKey := fmt.Sprintf("%s-%s", sensorCtx.sensor.Name, depExpression)
s1 := rand.NewSource(time.Now().UnixNano())
r1 := rand.New(s1)
hashVal := common.Hasher(hashKey)
@@ -62,10 +64,59 @@ func (sensorCtx *SensorContext) getGroupAndClientID(depExpression string) (strin
return group, clientID
}
-// ListenEvents watches and handles events received from the gateway.
-func (sensorCtx *SensorContext) ListenEvents(ctx context.Context) error {
+func (sensorCtx *SensorContext) Start(ctx context.Context) error {
+ if sensorCtx.sensor.Spec.GetReplicas() == 1 {
+ return sensorCtx.listenEvents(ctx)
+ }
+
+ leaseName := "sensor-" + sensorCtx.sensor.Name
+ lock := &resourcelock.LeaseLock{
+ LeaseMeta: metav1.ObjectMeta{
+ Name: leaseName,
+ Namespace: sensorCtx.sensor.Namespace,
+ },
+ Client: sensorCtx.kubeClient.CoordinationV1(),
+ LockConfig: resourcelock.ResourceLockConfig{
+ Identity: sensorCtx.hostname,
+ },
+ }
+
+ log := logging.FromContext(ctx)
+ ctx, cancel := context.WithCancel(ctx)
+ leaderelection.RunOrDie(ctx, leaderelection.LeaderElectionConfig{
+ Lock: lock,
+ ReleaseOnCancel: true,
+ LeaseDuration: 60 * time.Second,
+ RenewDeadline: 15 * time.Second,
+ RetryPeriod: 5 * time.Second,
+ Callbacks: leaderelection.LeaderCallbacks{
+ OnStartedLeading: func(ctx context.Context) {
+ if err := sensorCtx.listenEvents(ctx); err != nil {
+ log.Errorw("failed to start", zap.Error(err))
+ cancel()
+ }
+ },
+ OnStoppedLeading: func() {
+ log.Infof("leader lost: %s", sensorCtx.hostname)
+ cancel()
+ },
+ OnNewLeader: func(identity string) {
+ if identity == sensorCtx.hostname {
+ log.Infof("I am the new leader: %s", identity)
+ return
+ }
+ log.Infof("stand by, new leader elected: %s", identity)
+ },
+ },
+ })
+
+ return nil
+}
+
+// listenEvents watches and handles events received from the gateway.
+func (sensorCtx *SensorContext) listenEvents(ctx context.Context) error {
logger := logging.FromContext(ctx)
- sensor := sensorCtx.Sensor
+ sensor := sensorCtx.sensor
// Get a mapping of dependencyExpression: []triggers
triggerMapping := make(map[string][]v1alpha1.Trigger)
for _, trigger := range sensor.Spec.Triggers {
@@ -117,7 +168,7 @@ func (sensorCtx *SensorContext) ListenEvents(ctx context.Context) error {
}
group, clientID := sensorCtx.getGroupAndClientID(depExpression)
- ebDriver, err := eventbus.GetDriver(cctx, *sensorCtx.EventBusConfig, sensorCtx.EventBusSubject, clientID)
+ ebDriver, err := eventbus.GetDriver(cctx, *sensorCtx.eventBusConfig, sensorCtx.eventBusSubject, clientID)
if err != nil {
logger.Errorw("failed to get eventbus driver", zap.Error(err))
return
@@ -198,7 +249,7 @@ func (sensorCtx *SensorContext) ListenEvents(ctx context.Context) error {
logger.Info("NATS connection lost, reconnecting...")
// Regenerate the client ID to avoid the issue that NAT server still thinks the client is alive.
_, clientID := sensorCtx.getGroupAndClientID(depExpression)
- ebDriver, err := eventbus.GetDriver(cctx, *sensorCtx.EventBusConfig, sensorCtx.EventBusSubject, clientID)
+ ebDriver, err := eventbus.GetDriver(cctx, *sensorCtx.eventBusConfig, sensorCtx.eventBusSubject, clientID)
if err != nil {
logger.Errorw("failed to get eventbus driver during reconnection", zap.Error(err))
continue
@@ -246,7 +297,7 @@ func (sensorCtx *SensorContext) triggerActions(ctx context.Context, sensor *v1al
for _, trigger := range triggers {
if err := sensorCtx.triggerOne(ctx, sensor, trigger, eventsMapping, depNames, eventIDs, log); err != nil {
// Log the error, and let it continue
- log.Errorw("failed to trigger action", zap.Error(err), zap.String(logging.LabelTriggerName, trigger.Template.Name),
+ log.Errorw("failed to execute a trigger", zap.Error(err), zap.String(logging.LabelTriggerName, trigger.Template.Name),
zap.Any("triggeredBy", depNames), zap.Any("triggeredByEvents", eventIDs))
sensorCtx.metrics.ActionFailed(sensor.Name, trigger.Template.Name)
} else {
@@ -344,7 +395,7 @@ func (sensorCtx *SensorContext) getDependencyExpression(ctx context.Context, tri
return newExpr, nil
}
- sensor := sensorCtx.Sensor
+ sensor := sensorCtx.sensor
var depExpression string
var err error
switch {
diff --git a/sensors/listener_test.go b/sensors/listener_test.go
index 552aa05c4a..855fff5518 100644
--- a/sensors/listener_test.go
+++ b/sensors/listener_test.go
@@ -64,7 +64,7 @@ func TestGetDependencyExpression(t *testing.T) {
},
}
sensorCtx := &SensorContext{
- Sensor: obj,
+ sensor: obj,
}
expr, err := sensorCtx.getDependencyExpression(context.Background(), *fakeTrigger)
assert.NoError(t, err)
@@ -86,7 +86,7 @@ func TestGetDependencyExpression(t *testing.T) {
},
}
sensorCtx := &SensorContext{
- Sensor: obj,
+ sensor: obj,
}
expr, err := sensorCtx.getDependencyExpression(context.Background(), *fakeTrigger)
assert.NoError(t, err)
@@ -113,7 +113,7 @@ func TestGetDependencyExpression(t *testing.T) {
},
}
sensorCtx := &SensorContext{
- Sensor: obj,
+ sensor: obj,
}
obj.Spec.DependencyGroups = []v1alpha1.DependencyGroup{
{Name: "group-1", Dependencies: []string{"dep1", "dep1a"}},
@@ -154,7 +154,7 @@ func TestGetDependencyExpression(t *testing.T) {
},
}
sensorCtx := &SensorContext{
- Sensor: obj,
+ sensor: obj,
}
obj.Spec.DependencyGroups = []v1alpha1.DependencyGroup{
{Name: "group-1", Dependencies: []string{"dep-1", "dep_1a"}},
diff --git a/sensors/trigger.go b/sensors/trigger.go
index 3303247391..5a73bae826 100644
--- a/sensors/trigger.go
+++ b/sensors/trigger.go
@@ -53,15 +53,15 @@ type Trigger interface {
func (sensorCtx *SensorContext) GetTrigger(ctx context.Context, trigger *v1alpha1.Trigger) Trigger {
log := logging.FromContext(ctx).With(logging.LabelTriggerName, trigger.Template.Name)
if trigger.Template.K8s != nil {
- return standardk8s.NewStandardK8sTrigger(sensorCtx.KubeClient, sensorCtx.DynamicClient, sensorCtx.Sensor, trigger, log)
+ return standardk8s.NewStandardK8sTrigger(sensorCtx.kubeClient, sensorCtx.dynamicClient, sensorCtx.sensor, trigger, log)
}
if trigger.Template.ArgoWorkflow != nil {
- return argoworkflow.NewArgoWorkflowTrigger(sensorCtx.KubeClient, sensorCtx.DynamicClient, sensorCtx.Sensor, trigger, log)
+ return argoworkflow.NewArgoWorkflowTrigger(sensorCtx.kubeClient, sensorCtx.dynamicClient, sensorCtx.sensor, trigger, log)
}
if trigger.Template.HTTP != nil {
- result, err := http.NewHTTPTrigger(sensorCtx.httpClients, sensorCtx.Sensor, trigger, log)
+ result, err := http.NewHTTPTrigger(sensorCtx.httpClients, sensorCtx.sensor, trigger, log)
if err != nil {
log.Errorw("failed to new an HTTP trigger", zap.Error(err))
return nil
@@ -70,7 +70,7 @@ func (sensorCtx *SensorContext) GetTrigger(ctx context.Context, trigger *v1alpha
}
if trigger.Template.AWSLambda != nil {
- result, err := awslambda.NewAWSLambdaTrigger(sensorCtx.awsLambdaClients, sensorCtx.Sensor, trigger, log)
+ result, err := awslambda.NewAWSLambdaTrigger(sensorCtx.awsLambdaClients, sensorCtx.sensor, trigger, log)
if err != nil {
log.Errorw("failed to new a Lambda trigger", zap.Error(err))
return nil
@@ -79,7 +79,7 @@ func (sensorCtx *SensorContext) GetTrigger(ctx context.Context, trigger *v1alpha
}
if trigger.Template.AzureEventHubs != nil {
- result, err := eventhubs.NewAzureEventHubsTrigger(sensorCtx.Sensor, trigger, sensorCtx.azureEventHubsClients, log)
+ result, err := eventhubs.NewAzureEventHubsTrigger(sensorCtx.sensor, trigger, sensorCtx.azureEventHubsClients, log)
if err != nil {
log.Errorw("failed to new an Azure Event Hubs trigger", zap.Error(err))
return nil
@@ -88,7 +88,7 @@ func (sensorCtx *SensorContext) GetTrigger(ctx context.Context, trigger *v1alpha
}
if trigger.Template.Kafka != nil {
- result, err := kafka.NewKafkaTrigger(sensorCtx.Sensor, trigger, sensorCtx.kafkaProducers, log)
+ result, err := kafka.NewKafkaTrigger(sensorCtx.sensor, trigger, sensorCtx.kafkaProducers, log)
if err != nil {
log.Errorw("failed to new a Kafka trigger", zap.Error(err))
return nil
@@ -97,7 +97,7 @@ func (sensorCtx *SensorContext) GetTrigger(ctx context.Context, trigger *v1alpha
}
if trigger.Template.NATS != nil {
- result, err := nats.NewNATSTrigger(sensorCtx.Sensor, trigger, sensorCtx.natsConnections, log)
+ result, err := nats.NewNATSTrigger(sensorCtx.sensor, trigger, sensorCtx.natsConnections, log)
if err != nil {
log.Errorw("failed to new a NATS trigger", zap.Error(err))
return nil
@@ -106,7 +106,7 @@ func (sensorCtx *SensorContext) GetTrigger(ctx context.Context, trigger *v1alpha
}
if trigger.Template.Slack != nil {
- result, err := slack.NewSlackTrigger(sensorCtx.Sensor, trigger, log, sensorCtx.slackHTTPClient)
+ result, err := slack.NewSlackTrigger(sensorCtx.sensor, trigger, log, sensorCtx.slackHTTPClient)
if err != nil {
log.Errorw("failed to new a Slack trigger", zap.Error(err))
return nil
@@ -115,7 +115,7 @@ func (sensorCtx *SensorContext) GetTrigger(ctx context.Context, trigger *v1alpha
}
if trigger.Template.OpenWhisk != nil {
- result, err := openwhisk.NewTriggerImpl(sensorCtx.Sensor, trigger, sensorCtx.openwhiskClients, log)
+ result, err := openwhisk.NewTriggerImpl(sensorCtx.sensor, trigger, sensorCtx.openwhiskClients, log)
if err != nil {
log.Errorw("failed to new an OpenWhisk trigger", zap.Error(err))
return nil
@@ -124,7 +124,7 @@ func (sensorCtx *SensorContext) GetTrigger(ctx context.Context, trigger *v1alpha
}
if trigger.Template.CustomTrigger != nil {
- result, err := customtrigger.NewCustomTrigger(sensorCtx.Sensor, trigger, log, sensorCtx.customTriggerClients)
+ result, err := customtrigger.NewCustomTrigger(sensorCtx.sensor, trigger, log, sensorCtx.customTriggerClients)
if err != nil {
log.Errorw("failed to new a Custom trigger", zap.Error(err))
return nil
@@ -133,7 +133,7 @@ func (sensorCtx *SensorContext) GetTrigger(ctx context.Context, trigger *v1alpha
}
if trigger.Template.Log != nil {
- result, err := logtrigger.NewLogTrigger(sensorCtx.Sensor, trigger, log)
+ result, err := logtrigger.NewLogTrigger(sensorCtx.sensor, trigger, log)
if err != nil {
log.Errorw("failed to new a Log trigger", zap.Error(err))
return nil
diff --git a/test/e2e/functional_test.go b/test/e2e/functional_test.go
index bf215ee04f..c85c12d83a 100644
--- a/test/e2e/functional_test.go
+++ b/test/e2e/functional_test.go
@@ -6,6 +6,7 @@ import (
"crypto/tls"
"net/http"
"testing"
+ "time"
"github.com/argoproj/argo-events/test/e2e/fixtures"
"github.com/gavv/httpexpect/v2"
@@ -21,7 +22,7 @@ const (
LogSensorStarted = "Sensor started."
LogPublishEventSuccessful = "succeeded to publish an event"
LogTriggerActionSuccessful = "successfully processed the trigger"
- LogTriggerActionFailed = "failed to trigger action"
+ LogTriggerActionFailed = "failed to execute a trigger"
)
func (s *FunctionalSuite) e(baseURL string) *httpexpect.Expect {
@@ -58,8 +59,26 @@ func (s *FunctionalSuite) TestCreateCalendarEventSource() {
ExpectSensorPodLogContains(LogTriggerActionSuccessful)
}
+func (s *FunctionalSuite) TestCreateCalendarEventSourceWithHA() {
+ s.Given().EventSource("@testdata/es-calendar-ha.yaml").
+ When().
+ CreateEventSource().
+ WaitForEventSourceReady().
+ Wait(3 * time.Second).
+ Then().
+ ExpectEventSourcePodLogContains(LogPublishEventSuccessful)
+
+ s.Given().Sensor("@testdata/sensor-log-ha.yaml").
+ When().
+ CreateSensor().
+ WaitForSensorReady().
+ Wait(3 * time.Second).
+ Then().
+ ExpectSensorPodLogContains(LogTriggerActionSuccessful)
+}
+
func (s *FunctionalSuite) TestMetricsWithCalendar() {
- t1 := s.Given().EventSource("@testdata/es-calendar.yaml").
+ t1 := s.Given().EventSource("@testdata/es-calendar-metrics.yaml").
When().
CreateEventSource().
WaitForEventSourceReady().
@@ -80,7 +99,7 @@ func (s *FunctionalSuite) TestMetricsWithCalendar() {
Contains("argo_events_events_sent_total").
Contains("argo_events_event_processing_duration_milliseconds")
- t2 := s.Given().Sensor("@testdata/sensor-log.yaml").
+ t2 := s.Given().Sensor("@testdata/sensor-log-metrics.yaml").
When().
CreateSensor().
WaitForSensorReady().
@@ -99,7 +118,6 @@ func (s *FunctionalSuite) TestMetricsWithCalendar() {
Body().
Contains("argo_events_action_triggered_total").
Contains("argo_events_action_duration_milliseconds")
-
}
func (s *FunctionalSuite) TestMetricsWithWebhook() {
diff --git a/test/e2e/testdata/es-calendar-ha.yaml b/test/e2e/testdata/es-calendar-ha.yaml
new file mode 100644
index 0000000000..4098eb32ce
--- /dev/null
+++ b/test/e2e/testdata/es-calendar-ha.yaml
@@ -0,0 +1,11 @@
+apiVersion: argoproj.io/v1alpha1
+kind: EventSource
+metadata:
+ name: e2e-calendar-ha
+spec:
+ replicas: 2
+ template:
+ serviceAccountName: argo-events-sa
+ calendar:
+ example:
+ interval: 2s
diff --git a/test/e2e/testdata/es-calendar-metrics.yaml b/test/e2e/testdata/es-calendar-metrics.yaml
new file mode 100644
index 0000000000..de65f53fca
--- /dev/null
+++ b/test/e2e/testdata/es-calendar-metrics.yaml
@@ -0,0 +1,8 @@
+apiVersion: argoproj.io/v1alpha1
+kind: EventSource
+metadata:
+ name: e2e-calendar-metrics
+spec:
+ calendar:
+ example:
+ interval: 2s
diff --git a/test/e2e/testdata/sensor-log-ha.yaml b/test/e2e/testdata/sensor-log-ha.yaml
new file mode 100644
index 0000000000..4a53a5cfc0
--- /dev/null
+++ b/test/e2e/testdata/sensor-log-ha.yaml
@@ -0,0 +1,16 @@
+apiVersion: argoproj.io/v1alpha1
+kind: Sensor
+metadata:
+ name: e2e-log-ha
+spec:
+ replicas: 2
+ template:
+ serviceAccountName: argo-events-sa
+ dependencies:
+ - name: test-dep
+ eventSourceName: e2e-calendar-ha
+ eventName: example
+ triggers:
+ - template:
+ name: log-trigger
+ log: {}
\ No newline at end of file
diff --git a/test/e2e/testdata/sensor-log-metrics.yaml b/test/e2e/testdata/sensor-log-metrics.yaml
new file mode 100644
index 0000000000..ea8b0c946a
--- /dev/null
+++ b/test/e2e/testdata/sensor-log-metrics.yaml
@@ -0,0 +1,13 @@
+apiVersion: argoproj.io/v1alpha1
+kind: Sensor
+metadata:
+ name: e2e-log-metrics
+spec:
+ dependencies:
+ - name: test-dep
+ eventSourceName: e2e-calendar-metrics
+ eventName: example
+ triggers:
+ - template:
+ name: log-trigger
+ log: {}
\ No newline at end of file
diff --git a/test/stress/main.go b/test/stress/main.go
index 014393c915..23c6a5e792 100644
--- a/test/stress/main.go
+++ b/test/stress/main.go
@@ -60,7 +60,7 @@ const (
logEventSourceStarted = "Eventing server started."
logSensorStarted = "Sensor started."
logTriggerActionSuccessful = "successfully processed the trigger"
- logTriggerActionFailed = "failed to trigger action"
+ logTriggerActionFailed = "failed to execute a trigger"
logEventSuccessful = "succeeded to publish an event"
logEventFailed = "failed to publish an event"
)
diff --git a/test/util/util.go b/test/util/util.go
index f3593b7195..4d287ddbce 100644
--- a/test/util/util.go
+++ b/test/util/util.go
@@ -8,7 +8,9 @@ import (
"time"
appsv1 "k8s.io/api/apps/v1"
+ coordinationv1 "k8s.io/api/coordination/v1"
corev1 "k8s.io/api/core/v1"
+ apierrors "k8s.io/apimachinery/pkg/api/errors"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/client-go/kubernetes"
@@ -252,6 +254,23 @@ func EventSourcePodLogContains(ctx context.Context, kubeClient kubernetes.Interf
return false, fmt.Errorf("error getting event source pod name: %w", err)
}
podName := podList.Items[0].GetName()
+ if len(podList.Items) > 1 {
+ // HA
+ var l *coordinationv1.Lease
+ for {
+ l, err = kubeClient.CoordinationV1().Leases(namespace).Get(ctx, "eventsource-"+eventSourceName, metav1.GetOptions{})
+ if err != nil {
+ if !apierrors.IsNotFound(err) {
+ return false, fmt.Errorf("error getting event source Lease information: %w", err)
+ } else if err != nil && apierrors.IsNotFound(err) {
+ time.Sleep(2 * time.Second)
+ continue
+ }
+ }
+ break
+ }
+ podName = *l.Spec.HolderIdentity
+ }
fmt.Printf("EventSource POD name: %s\n", podName)
cctx, cancel := context.WithTimeout(ctx, timeout)
defer cancel()
@@ -265,7 +284,24 @@ func SensorPodLogContains(ctx context.Context, kubeClient kubernetes.Interface,
return false, fmt.Errorf("error getting sensor pod name: %w", err)
}
podName := podList.Items[0].GetName()
- fmt.Printf("Sensor POD name: %s", podName)
+ if len(podList.Items) > 1 {
+ // HA
+ var l *coordinationv1.Lease
+ for {
+ l, err = kubeClient.CoordinationV1().Leases(namespace).Get(ctx, "sensor-"+sensorName, metav1.GetOptions{})
+ if err != nil {
+ if !apierrors.IsNotFound(err) {
+ return false, fmt.Errorf("error getting sensor Lease information: %w", err)
+ } else if err != nil && apierrors.IsNotFound(err) {
+ time.Sleep(2 * time.Second)
+ continue
+ }
+ }
+ break
+ }
+ podName = *l.Spec.HolderIdentity
+ }
+ fmt.Printf("Sensor POD name: %s\n", podName)
cctx, cancel := context.WithTimeout(ctx, timeout)
defer cancel()
return podLogContains(cctx, kubeClient, namespace, podName, regex)