From 668c6f69d28eefc04c45485ac4aaecd66e2310ad Mon Sep 17 00:00:00 2001 From: lburgazzoli Date: Wed, 29 Jan 2020 18:48:35 +0100 Subject: [PATCH] Remove the option to set the camel version #1229 --- assets/json-schema/CamelCatalog.json | 41 +- assets/json-schema/Integration.json | 28 +- assets/json-schema/IntegrationKit.json | 28 +- build/maven/pom-catalog.xml | 85 +- ...> camel-catalog-1.0.11-SNAPSHOT-main.yaml} | 48 +- ...amel-catalog-1.0.11-SNAPSHOT-quarkus.yaml} | 51 +- deploy/camel-catalog-3.0.0-1.0.10.yaml | 2919 ----------------- ...camel-catalog-quarkus-1.0.0-M1-1.0.10.yaml | 616 ---- .../camel-catalog-quarkus-1.0.0-M1-1.0.9.yaml | 616 ---- deploy/resources.go | 52 +- pkg/apis/camel/v1/build_types.go | 28 +- pkg/apis/camel/v1/camelcatalog_types.go | 14 +- pkg/apis/camel/v1/common_types.go | 18 +- pkg/apis/camel/v1/integration_types.go | 3 +- pkg/apis/camel/v1/integrationkit_types.go | 3 +- .../camel/v1/integrationplatform_types.go | 3 +- pkg/apis/camel/v1/zz_generated.deepcopy.go | 61 +- pkg/builder/builder_steps.go | 34 +- pkg/builder/builder_steps_test.go | 22 +- pkg/builder/builder_test.go | 3 +- pkg/builder/runtime/main.go | 16 +- pkg/builder/runtime/main_test.go | 30 +- pkg/builder/runtime/quarkus.go | 15 +- pkg/cmd/describe_integration.go | 2 +- pkg/cmd/describe_kit.go | 2 +- pkg/cmd/describe_platform.go | 6 +- pkg/cmd/install.go | 4 - pkg/controller/integration/build_kit.go | 6 +- pkg/controller/integration/util.go | 33 +- pkg/platform/defaults.go | 4 - pkg/trait/builder.go | 8 +- pkg/trait/builder_test.go | 3 +- pkg/trait/camel.go | 71 +- pkg/trait/camel_test.go | 14 +- pkg/trait/environment.go | 1 - pkg/trait/quarkus.go | 120 - pkg/trait/quarkus_test.go | 112 - pkg/trait/rest-dsl.go | 9 +- pkg/util/camel/camel_runtime.go | 21 +- pkg/util/camel/camel_runtime_catalog.go | 4 +- pkg/util/camel/camel_types.go | 8 - pkg/util/camel/camel_util.go | 66 +- pkg/util/camel/camel_util_test.go | 146 +- pkg/util/camel/catalog.go | 44 +- pkg/util/camel/catalog_test.go | 7 +- pkg/util/defaults/defaults.go | 11 +- pkg/util/source/inspector.go | 2 +- pkg/util/test/catalog_test.go | 2 +- script/Makefile | 15 +- script/build_catalog.sh | 10 +- 50 files changed, 284 insertions(+), 5181 deletions(-) rename deploy/{camel-catalog-3.0.0-1.0.9.yaml => camel-catalog-1.0.11-SNAPSHOT-main.yaml} (98%) rename deploy/{camel-catalog-quarkus-1.0.0-M2-1.0.10.yaml => camel-catalog-1.0.11-SNAPSHOT-quarkus.yaml} (93%) delete mode 100644 deploy/camel-catalog-3.0.0-1.0.10.yaml delete mode 100644 deploy/camel-catalog-quarkus-1.0.0-M1-1.0.10.yaml delete mode 100644 deploy/camel-catalog-quarkus-1.0.0-M1-1.0.9.yaml diff --git a/assets/json-schema/CamelCatalog.json b/assets/json-schema/CamelCatalog.json index 341c9993c6..6df8e3b137 100644 --- a/assets/json-schema/CamelCatalog.json +++ b/assets/json-schema/CamelCatalog.json @@ -167,8 +167,7 @@ }, "CamelCatalogSpec": { "required": [ - "version", - "runtimeVersion", + "runtime", "artifacts" ], "properties": { @@ -181,15 +180,9 @@ }, "type": "object" }, - "runtimeProvider": { + "runtime": { "$schema": "http://json-schema.org/draft-04/schema#", - "$ref": "#/definitions/RuntimeProvider" - }, - "runtimeVersion": { - "type": "string" - }, - "version": { - "type": "string" + "$ref": "#/definitions/RuntimeSpec" } }, "additionalProperties": false, @@ -278,28 +271,30 @@ "additionalProperties": false, "type": "object" }, - "QuarkusRuntimeProvider": { + "RuntimeSpec": { + "required": [ + "version", + "provider" + ], "properties": { - "camelQuarkusVersion": { + "metadata": { + "patternProperties": { + ".*": { + "type": "string" + } + }, + "type": "object" + }, + "provider": { "type": "string" }, - "quarkusVersion": { + "version": { "type": "string" } }, "additionalProperties": false, "type": "object" }, - "RuntimeProvider": { - "properties": { - "quarkus": { - "$schema": "http://json-schema.org/draft-04/schema#", - "$ref": "#/definitions/QuarkusRuntimeProvider" - } - }, - "additionalProperties": false, - "type": "object" - }, "Time": { "additionalProperties": false, "type": "object" diff --git a/assets/json-schema/Integration.json b/assets/json-schema/Integration.json index 766ec4eef3..71af2579cc 100644 --- a/assets/json-schema/Integration.json +++ b/assets/json-schema/Integration.json @@ -243,9 +243,6 @@ }, "IntegrationStatus": { "properties": { - "camelVersion": { - "type": "string" - }, "conditions": { "items": { "$schema": "http://json-schema.org/draft-04/schema#", @@ -303,8 +300,7 @@ "type": "integer" }, "runtimeProvider": { - "$schema": "http://json-schema.org/draft-04/schema#", - "$ref": "#/definitions/RuntimeProvider" + "type": "string" }, "runtimeVersion": { "type": "string" @@ -371,18 +367,6 @@ "additionalProperties": false, "type": "object" }, - "QuarkusRuntimeProvider": { - "properties": { - "camelQuarkusVersion": { - "type": "string" - }, - "quarkusVersion": { - "type": "string" - } - }, - "additionalProperties": false, - "type": "object" - }, "ResourceSpec": { "properties": { "compression": { @@ -410,16 +394,6 @@ "additionalProperties": false, "type": "object" }, - "RuntimeProvider": { - "properties": { - "quarkus": { - "$schema": "http://json-schema.org/draft-04/schema#", - "$ref": "#/definitions/QuarkusRuntimeProvider" - } - }, - "additionalProperties": false, - "type": "object" - }, "SourceSpec": { "properties": { "compression": { diff --git a/assets/json-schema/IntegrationKit.json b/assets/json-schema/IntegrationKit.json index 73306b9b27..db149f2c6b 100644 --- a/assets/json-schema/IntegrationKit.json +++ b/assets/json-schema/IntegrationKit.json @@ -251,9 +251,6 @@ "baseImage": { "type": "string" }, - "camelVersion": { - "type": "string" - }, "conditions": { "items": { "$schema": "http://json-schema.org/draft-04/schema#", @@ -278,8 +275,7 @@ "type": "string" }, "runtimeProvider": { - "$schema": "http://json-schema.org/draft-04/schema#", - "$ref": "#/definitions/RuntimeProvider" + "type": "string" }, "runtimeVersion": { "type": "string" @@ -346,28 +342,6 @@ "additionalProperties": false, "type": "object" }, - "QuarkusRuntimeProvider": { - "properties": { - "camelQuarkusVersion": { - "type": "string" - }, - "quarkusVersion": { - "type": "string" - } - }, - "additionalProperties": false, - "type": "object" - }, - "RuntimeProvider": { - "properties": { - "quarkus": { - "$schema": "http://json-schema.org/draft-04/schema#", - "$ref": "#/definitions/QuarkusRuntimeProvider" - } - }, - "additionalProperties": false, - "type": "object" - }, "Time": { "additionalProperties": false, "type": "object" diff --git a/build/maven/pom-catalog.xml b/build/maven/pom-catalog.xml index c8a7d8669b..297a1ce585 100644 --- a/build/maven/pom-catalog.xml +++ b/build/maven/pom-catalog.xml @@ -26,73 +26,26 @@ camel-k-catalog-generator 1.0.0 + + generate-resources + + + org.apache.camel.k + camel-k-maven-plugin + ${runtime.version} + + + generate-catalog + + generate-catalog + + + + + + + - - main - - true - - - generate-resources - - - org.apache.camel.k - camel-k-maven-plugin - ${runtime.version} - - - generate-catalog - - generate-catalog - - - - - - org.apache.camel - camel-catalog - ${camel.version} - - - - - - - - quarkus - - generate-resources - - - org.apache.camel.k - camel-k-maven-plugin - ${runtime.version} - - - generate-catalog - - generate-catalog - - - - - - - org.apache.camel.quarkus - camel-catalog-quarkus - ${camel-quarkus.version} - - - - org.apache.camel.quarkus - camel-quarkus-core - ${camel-quarkus.version} - - - - - - staging diff --git a/deploy/camel-catalog-3.0.0-1.0.9.yaml b/deploy/camel-catalog-1.0.11-SNAPSHOT-main.yaml similarity index 98% rename from deploy/camel-catalog-3.0.0-1.0.9.yaml rename to deploy/camel-catalog-1.0.11-SNAPSHOT-main.yaml index 22c3eb82b9..ec992a9252 100644 --- a/deploy/camel-catalog-3.0.0-1.0.9.yaml +++ b/deploy/camel-catalog-1.0.11-SNAPSHOT-main.yaml @@ -18,15 +18,21 @@ apiVersion: camel.apache.org/v1 kind: CamelCatalog metadata: - name: camel-catalog-3.0.0-1.0.9 + name: camel-catalog-1.0.11-snapshot-main labels: app: camel-k camel.apache.org/catalog.version: 3.0.0 camel.apache.org/catalog.loader.version: 3.0.0 - camel.apache.org/runtime.version: 1.0.9 + camel.apache.org/runtime.version: 1.0.11-SNAPSHOT + camel.apache.org/runtime.provider: main spec: - version: 3.0.0 - runtimeVersion: 1.0.9 + runtime: + version: 1.0.11-SNAPSHOT + provider: main + metadata: + camel.version: 3.0.0 + quarkus.version: 1.1.0.Final + camel-quarkus.version: 1.0.0-M2 artifacts: camel-activemq: groupId: org.apache.camel @@ -1558,49 +1564,28 @@ spec: camel-k-loader-groovy: groupId: org.apache.camel.k artifactId: camel-k-loader-groovy - dependencies: - - groupId: org.apache.camel - artifactId: camel-endpointdsl - - groupId: org.apache.camel - artifactId: camel-groovy camel-k-loader-java: groupId: org.apache.camel.k artifactId: camel-k-loader-java - dependencies: - - groupId: org.apache.camel - artifactId: camel-endpointdsl camel-k-loader-js: groupId: org.apache.camel.k artifactId: camel-k-loader-js - dependencies: - - groupId: org.apache.camel - artifactId: camel-endpointdsl camel-k-loader-knative: groupId: org.apache.camel.k artifactId: camel-k-loader-knative camel-k-loader-kotlin: groupId: org.apache.camel.k artifactId: camel-k-loader-kotlin - dependencies: - - groupId: org.apache.camel - artifactId: camel-endpointdsl camel-k-loader-xml: groupId: org.apache.camel.k artifactId: camel-k-loader-xml camel-k-runtime-health: groupId: org.apache.camel.k artifactId: camel-k-runtime-health - dependencies: - - groupId: org.apache.camel - artifactId: camel-servlet - - groupId: org.apache.camel.k - artifactId: camel-k-runtime-servlet camel-k-runtime-knative: groupId: org.apache.camel.k artifactId: camel-k-runtime-knative dependencies: - - groupId: org.apache.camel - artifactId: camel-cloud - groupId: org.apache.camel.k artifactId: camel-k-loader-yaml - groupId: org.apache.camel.k @@ -1614,23 +1599,12 @@ spec: camel-k-runtime-main: groupId: org.apache.camel.k artifactId: camel-k-runtime-main - dependencies: - - groupId: org.apache.camel - artifactId: camel-core-engine - - groupId: org.apache.camel - artifactId: camel-main camel-k-runtime-servlet: groupId: org.apache.camel.k artifactId: camel-k-runtime-servlet - dependencies: - - groupId: org.apache.camel - artifactId: camel-servlet camel-k-runtime-webhook: groupId: org.apache.camel.k artifactId: camel-k-runtime-webhook - dependencies: - - groupId: org.apache.camel - artifactId: camel-webhook camel-kafka: groupId: org.apache.camel artifactId: camel-kafka @@ -1648,8 +1622,6 @@ spec: http: true passive: false dependencies: - - groupId: org.apache.camel - artifactId: camel-cloud - groupId: org.apache.camel.k artifactId: camel-knative-api - groupId: org.apache.camel.k diff --git a/deploy/camel-catalog-quarkus-1.0.0-M2-1.0.10.yaml b/deploy/camel-catalog-1.0.11-SNAPSHOT-quarkus.yaml similarity index 93% rename from deploy/camel-catalog-quarkus-1.0.0-M2-1.0.10.yaml rename to deploy/camel-catalog-1.0.11-SNAPSHOT-quarkus.yaml index fabaf8bb5a..c5528588f2 100644 --- a/deploy/camel-catalog-quarkus-1.0.0-M2-1.0.10.yaml +++ b/deploy/camel-catalog-1.0.11-SNAPSHOT-quarkus.yaml @@ -18,67 +18,47 @@ apiVersion: camel.apache.org/v1 kind: CamelCatalog metadata: - name: camel-catalog-quarkus-1.0.0-m2-1.0.10 + name: camel-catalog-1.0.11-snapshot-quarkus labels: app: camel-k camel.apache.org/catalog.version: 3.0.0 camel.apache.org/catalog.loader.version: 3.0.0 - camel.apache.org/runtime.version: 1.0.10 + camel.apache.org/runtime.version: 1.0.11-SNAPSHOT camel.apache.org/runtime.provider: quarkus spec: - version: 3.0.0 - runtimeVersion: 1.0.10 - runtimeProvider: - quarkus: - camelQuarkusVersion: 1.0.0-M2 - quarkusVersion: 1.1.0.Final + runtime: + version: 1.0.11-SNAPSHOT + provider: quarkus + metadata: + camel.version: 3.0.0 + quarkus.version: 1.1.0.Final + camel-quarkus.version: 1.0.0-M2 artifacts: camel-k-loader-groovy: groupId: org.apache.camel.k artifactId: camel-k-loader-groovy - dependencies: - - groupId: org.apache.camel - artifactId: camel-endpointdsl - - groupId: org.apache.camel - artifactId: camel-groovy camel-k-loader-java: groupId: org.apache.camel.k artifactId: camel-k-loader-java - dependencies: - - groupId: org.apache.camel - artifactId: camel-endpointdsl camel-k-loader-js: groupId: org.apache.camel.k artifactId: camel-k-loader-js - dependencies: - - groupId: org.apache.camel - artifactId: camel-endpointdsl camel-k-loader-knative: groupId: org.apache.camel.k artifactId: camel-k-loader-knative camel-k-loader-kotlin: groupId: org.apache.camel.k artifactId: camel-k-loader-kotlin - dependencies: - - groupId: org.apache.camel - artifactId: camel-endpointdsl camel-k-loader-xml: groupId: org.apache.camel.k artifactId: camel-k-loader-xml camel-k-runtime-health: groupId: org.apache.camel.k artifactId: camel-k-runtime-health - dependencies: - - groupId: org.apache.camel - artifactId: camel-servlet - - groupId: org.apache.camel.k - artifactId: camel-k-runtime-servlet camel-k-runtime-knative: groupId: org.apache.camel.k artifactId: camel-k-runtime-knative dependencies: - - groupId: org.apache.camel - artifactId: camel-cloud - groupId: org.apache.camel.k artifactId: camel-k-loader-yaml - groupId: org.apache.camel.k @@ -92,23 +72,12 @@ spec: camel-k-runtime-main: groupId: org.apache.camel.k artifactId: camel-k-runtime-main - dependencies: - - groupId: org.apache.camel - artifactId: camel-core-engine - - groupId: org.apache.camel - artifactId: camel-main camel-k-runtime-servlet: groupId: org.apache.camel.k artifactId: camel-k-runtime-servlet - dependencies: - - groupId: org.apache.camel - artifactId: camel-servlet camel-k-runtime-webhook: groupId: org.apache.camel.k artifactId: camel-k-runtime-webhook - dependencies: - - groupId: org.apache.camel - artifactId: camel-webhook camel-knative: groupId: org.apache.camel.k artifactId: camel-knative @@ -117,8 +86,6 @@ spec: http: true passive: false dependencies: - - groupId: org.apache.camel - artifactId: camel-cloud - groupId: org.apache.camel.k artifactId: camel-knative-api - groupId: org.apache.camel.k diff --git a/deploy/camel-catalog-3.0.0-1.0.10.yaml b/deploy/camel-catalog-3.0.0-1.0.10.yaml deleted file mode 100644 index d4e36f2964..0000000000 --- a/deploy/camel-catalog-3.0.0-1.0.10.yaml +++ /dev/null @@ -1,2919 +0,0 @@ -# --------------------------------------------------------------------------- -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# --------------------------------------------------------------------------- - -apiVersion: camel.apache.org/v1 -kind: CamelCatalog -metadata: - name: camel-catalog-3.0.0-1.0.10 - labels: - app: camel-k - camel.apache.org/catalog.version: 3.0.0 - camel.apache.org/catalog.loader.version: 3.0.0 - camel.apache.org/runtime.version: 1.0.10 -spec: - version: 3.0.0 - runtimeVersion: 1.0.10 - artifacts: - camel-activemq: - groupId: org.apache.camel - artifactId: camel-activemq - schemes: - - id: activemq - http: false - passive: false - javaTypes: - - org.apache.camel.component.activemq.ActiveMQComponent - camel-ahc: - groupId: org.apache.camel - artifactId: camel-ahc - schemes: - - id: ahc - http: true - passive: false - javaTypes: - - org.apache.camel.component.ahc.AhcComponent - camel-ahc-ws: - groupId: org.apache.camel - artifactId: camel-ahc-ws - schemes: - - id: ahc-ws - http: true - passive: false - - id: ahc-wss - http: false - passive: false - javaTypes: - - org.apache.camel.component.ahc.ws.WsComponent - camel-amqp: - groupId: org.apache.camel - artifactId: camel-amqp - schemes: - - id: amqp - http: false - passive: false - javaTypes: - - org.apache.camel.component.amqp.AMQPComponent - camel-any23: - groupId: org.apache.camel - artifactId: camel-any23 - dataformats: - - any23 - javaTypes: - - org.apache.camel.dataformat.any23.Any23DataFormat - camel-apns: - groupId: org.apache.camel - artifactId: camel-apns - schemes: - - id: apns - http: false - passive: false - javaTypes: - - org.apache.camel.component.apns.ApnsComponent - camel-as2: - groupId: org.apache.camel - artifactId: camel-as2 - schemes: - - id: as2 - http: false - passive: false - javaTypes: - - org.apache.camel.component.as2.AS2Component - camel-asn1: - groupId: org.apache.camel - artifactId: camel-asn1 - dataformats: - - asn1 - javaTypes: - - org.apache.camel.dataformat.asn1.ASN1DataFormat - camel-asterisk: - groupId: org.apache.camel - artifactId: camel-asterisk - schemes: - - id: asterisk - http: false - passive: false - javaTypes: - - org.apache.camel.component.asterisk.AsteriskComponent - camel-atmos: - groupId: org.apache.camel - artifactId: camel-atmos - schemes: - - id: atmos - http: false - passive: false - javaTypes: - - org.apache.camel.component.atmos.AtmosComponent - camel-atmosphere-websocket: - groupId: org.apache.camel - artifactId: camel-atmosphere-websocket - schemes: - - id: atmosphere-websocket - http: true - passive: false - javaTypes: - - org.apache.camel.component.atmosphere.websocket.WebsocketComponent - camel-atom: - groupId: org.apache.camel - artifactId: camel-atom - schemes: - - id: atom - http: false - passive: false - javaTypes: - - org.apache.camel.component.atom.AtomComponent - camel-atomix: - groupId: org.apache.camel - artifactId: camel-atomix - schemes: - - id: atomix-map - http: false - passive: false - - id: atomix-messaging - http: false - passive: false - - id: atomix-multimap - http: false - passive: false - - id: atomix-queue - http: false - passive: false - - id: atomix-set - http: false - passive: false - - id: atomix-value - http: false - passive: false - javaTypes: - - org.apache.camel.component.atomix.client.map.AtomixMapComponent - - org.apache.camel.component.atomix.client.messaging.AtomixMessagingComponent - - org.apache.camel.component.atomix.client.multimap.AtomixMultiMapComponent - - org.apache.camel.component.atomix.client.queue.AtomixQueueComponent - - org.apache.camel.component.atomix.client.set.AtomixSetComponent - - org.apache.camel.component.atomix.client.value.AtomixValueComponent - camel-avro: - groupId: org.apache.camel - artifactId: camel-avro - schemes: - - id: avro - http: false - passive: false - dataformats: - - avro - javaTypes: - - org.apache.camel.component.avro.AvroComponent - - org.apache.camel.dataformat.avro.AvroDataFormat - camel-aws-cw: - groupId: org.apache.camel - artifactId: camel-aws-cw - schemes: - - id: aws-cw - http: false - passive: false - javaTypes: - - org.apache.camel.component.aws.cw.CwComponent - camel-aws-ddb: - groupId: org.apache.camel - artifactId: camel-aws-ddb - schemes: - - id: aws-ddb - http: false - passive: false - - id: aws-ddbstream - http: false - passive: false - javaTypes: - - org.apache.camel.component.aws.ddb.DdbComponent - - org.apache.camel.component.aws.ddbstream.DdbStreamComponent - camel-aws-ec2: - groupId: org.apache.camel - artifactId: camel-aws-ec2 - schemes: - - id: aws-ec2 - http: false - passive: false - javaTypes: - - org.apache.camel.component.aws.ec2.EC2Component - camel-aws-ecs: - groupId: org.apache.camel - artifactId: camel-aws-ecs - schemes: - - id: aws-ecs - http: false - passive: false - javaTypes: - - org.apache.camel.component.aws.ecs.ECSComponent - camel-aws-eks: - groupId: org.apache.camel - artifactId: camel-aws-eks - schemes: - - id: aws-eks - http: false - passive: false - javaTypes: - - org.apache.camel.component.aws.eks.EKSComponent - camel-aws-iam: - groupId: org.apache.camel - artifactId: camel-aws-iam - schemes: - - id: aws-iam - http: false - passive: false - javaTypes: - - org.apache.camel.component.aws.iam.IAMComponent - camel-aws-kinesis: - groupId: org.apache.camel - artifactId: camel-aws-kinesis - schemes: - - id: aws-kinesis - http: false - passive: false - - id: aws-kinesis-firehose - http: false - passive: false - javaTypes: - - org.apache.camel.component.aws.kinesis.KinesisComponent - - org.apache.camel.component.aws.firehose.KinesisFirehoseComponent - camel-aws-kms: - groupId: org.apache.camel - artifactId: camel-aws-kms - schemes: - - id: aws-kms - http: false - passive: false - javaTypes: - - org.apache.camel.component.aws.kms.KMSComponent - camel-aws-lambda: - groupId: org.apache.camel - artifactId: camel-aws-lambda - schemes: - - id: aws-lambda - http: false - passive: false - javaTypes: - - org.apache.camel.component.aws.lambda.LambdaComponent - camel-aws-mq: - groupId: org.apache.camel - artifactId: camel-aws-mq - schemes: - - id: aws-mq - http: false - passive: false - javaTypes: - - org.apache.camel.component.aws.mq.MQComponent - camel-aws-msk: - groupId: org.apache.camel - artifactId: camel-aws-msk - schemes: - - id: aws-msk - http: false - passive: false - javaTypes: - - org.apache.camel.component.aws.msk.MSKComponent - camel-aws-s3: - groupId: org.apache.camel - artifactId: camel-aws-s3 - schemes: - - id: aws-s3 - http: false - passive: false - javaTypes: - - org.apache.camel.component.aws.s3.S3Component - camel-aws-sdb: - groupId: org.apache.camel - artifactId: camel-aws-sdb - schemes: - - id: aws-sdb - http: false - passive: false - javaTypes: - - org.apache.camel.component.aws.sdb.SdbComponent - camel-aws-ses: - groupId: org.apache.camel - artifactId: camel-aws-ses - schemes: - - id: aws-ses - http: false - passive: false - javaTypes: - - org.apache.camel.component.aws.ses.SesComponent - camel-aws-sns: - groupId: org.apache.camel - artifactId: camel-aws-sns - schemes: - - id: aws-sns - http: false - passive: false - javaTypes: - - org.apache.camel.component.aws.sns.SnsComponent - camel-aws-sqs: - groupId: org.apache.camel - artifactId: camel-aws-sqs - schemes: - - id: aws-sqs - http: false - passive: false - javaTypes: - - org.apache.camel.component.aws.sqs.SqsComponent - camel-aws-swf: - groupId: org.apache.camel - artifactId: camel-aws-swf - schemes: - - id: aws-swf - http: false - passive: false - javaTypes: - - org.apache.camel.component.aws.swf.SWFComponent - camel-aws-translate: - groupId: org.apache.camel - artifactId: camel-aws-translate - schemes: - - id: aws-translate - http: false - passive: false - javaTypes: - - org.apache.camel.component.aws.translate.TranslateComponent - camel-azure: - groupId: org.apache.camel - artifactId: camel-azure - schemes: - - id: azure-blob - http: false - passive: false - - id: azure-queue - http: false - passive: false - javaTypes: - - org.apache.camel.component.azure.blob.BlobServiceComponent - - org.apache.camel.component.azure.queue.QueueServiceComponent - camel-barcode: - groupId: org.apache.camel - artifactId: camel-barcode - dataformats: - - barcode - javaTypes: - - org.apache.camel.dataformat.barcode.BarcodeDataFormat - camel-base: - groupId: org.apache.camel - artifactId: camel-base - languages: - - constant - - exchangeProperty - - file - - header - - ref - - simple - - tokenize - javaTypes: - - org.apache.camel.language.constant.ConstantLanguage - - org.apache.camel.language.property.ExchangePropertyLanguage - - org.apache.camel.language.simple.FileLanguage - - org.apache.camel.language.header.HeaderLanguage - - org.apache.camel.language.ref.RefLanguage - - org.apache.camel.language.simple.SimpleLanguage - - org.apache.camel.language.tokenizer.TokenizeLanguage - camel-base64: - groupId: org.apache.camel - artifactId: camel-base64 - dataformats: - - base64 - javaTypes: - - org.apache.camel.dataformat.base64.Base64DataFormat - camel-bean: - groupId: org.apache.camel - artifactId: camel-bean - schemes: - - id: bean - http: false - passive: true - - id: class - http: false - passive: true - languages: - - bean - javaTypes: - - org.apache.camel.component.bean.BeanComponent - - org.apache.camel.component.beanclass.ClassComponent - - org.apache.camel.language.bean.BeanLanguage - camel-bean-validator: - groupId: org.apache.camel - artifactId: camel-bean-validator - schemes: - - id: bean-validator - http: false - passive: false - javaTypes: - - org.apache.camel.component.bean.validator.BeanValidatorComponent - camel-beanio: - groupId: org.apache.camel - artifactId: camel-beanio - dataformats: - - beanio - javaTypes: - - org.apache.camel.dataformat.beanio.BeanIODataFormat - camel-beanstalk: - groupId: org.apache.camel - artifactId: camel-beanstalk - schemes: - - id: beanstalk - http: false - passive: false - javaTypes: - - org.apache.camel.component.beanstalk.BeanstalkComponent - camel-bindy: - groupId: org.apache.camel - artifactId: camel-bindy - dataformats: - - bindy-csv - - bindy-fixed - - bindy-kvp - javaTypes: - - org.apache.camel.dataformat.bindy.csv.BindyCsvDataFormat - - org.apache.camel.dataformat.bindy.fixed.BindyFixedLengthDataFormat - - org.apache.camel.dataformat.bindy.kvp.BindyKeyValuePairDataFormat - camel-bonita: - groupId: org.apache.camel - artifactId: camel-bonita - schemes: - - id: bonita - http: false - passive: false - javaTypes: - - org.apache.camel.component.bonita.BonitaComponent - camel-box: - groupId: org.apache.camel - artifactId: camel-box - schemes: - - id: box - http: false - passive: false - javaTypes: - - org.apache.camel.component.box.BoxComponent - camel-braintree: - groupId: org.apache.camel - artifactId: camel-braintree - schemes: - - id: braintree - http: false - passive: false - javaTypes: - - org.apache.camel.component.braintree.BraintreeComponent - camel-browse: - groupId: org.apache.camel - artifactId: camel-browse - schemes: - - id: browse - http: false - passive: true - javaTypes: - - org.apache.camel.component.browse.BrowseComponent - camel-caffeine: - groupId: org.apache.camel - artifactId: camel-caffeine - schemes: - - id: caffeine-cache - http: false - passive: false - - id: caffeine-loadcache - http: false - passive: false - javaTypes: - - org.apache.camel.component.caffeine.cache.CaffeineCacheComponent - - org.apache.camel.component.caffeine.load.CaffeineLoadCacheComponent - camel-cassandraql: - groupId: org.apache.camel - artifactId: camel-cassandraql - schemes: - - id: cql - http: false - passive: false - javaTypes: - - org.apache.camel.component.cassandra.CassandraComponent - camel-cbor: - groupId: org.apache.camel - artifactId: camel-cbor - dataformats: - - cbor - javaTypes: - - org.apache.camel.component.cbor.CBORDataFormat - camel-chatscript: - groupId: org.apache.camel - artifactId: camel-chatscript - schemes: - - id: chatscript - http: false - passive: false - javaTypes: - - org.apache.camel.component.chatscript.ChatScriptComponent - camel-chunk: - groupId: org.apache.camel - artifactId: camel-chunk - schemes: - - id: chunk - http: false - passive: false - javaTypes: - - org.apache.camel.component.chunk.ChunkComponent - camel-cm-sms: - groupId: org.apache.camel - artifactId: camel-cm-sms - schemes: - - id: cm-sms - http: false - passive: false - javaTypes: - - org.apache.camel.component.cm.CMComponent - camel-cmis: - groupId: org.apache.camel - artifactId: camel-cmis - schemes: - - id: cmis - http: false - passive: false - javaTypes: - - org.apache.camel.component.cmis.CMISComponent - camel-coap: - groupId: org.apache.camel - artifactId: camel-coap - schemes: - - id: coap - http: false - passive: false - - id: coaps - http: false - passive: false - - id: coap+tcp - http: false - passive: false - - id: coaps+tcp - http: false - passive: false - javaTypes: - - org.apache.camel.coap.CoAPComponent - camel-cometd: - groupId: org.apache.camel - artifactId: camel-cometd - schemes: - - id: cometd - http: false - passive: false - - id: cometds - http: false - passive: false - javaTypes: - - org.apache.camel.component.cometd.CometdComponent - camel-consul: - groupId: org.apache.camel - artifactId: camel-consul - schemes: - - id: consul - http: false - passive: false - javaTypes: - - org.apache.camel.component.consul.ConsulComponent - camel-controlbus: - groupId: org.apache.camel - artifactId: camel-controlbus - schemes: - - id: controlbus - http: false - passive: true - javaTypes: - - org.apache.camel.component.controlbus.ControlBusComponent - camel-corda: - groupId: org.apache.camel - artifactId: camel-corda - schemes: - - id: corda - http: false - passive: false - javaTypes: - - org.apache.camel.component.corda.CordaComponent - camel-couchbase: - groupId: org.apache.camel - artifactId: camel-couchbase - schemes: - - id: couchbase - http: false - passive: false - javaTypes: - - org.apache.camel.component.couchbase.CouchbaseComponent - camel-couchdb: - groupId: org.apache.camel - artifactId: camel-couchdb - schemes: - - id: couchdb - http: false - passive: false - javaTypes: - - org.apache.camel.component.couchdb.CouchDbComponent - camel-crypto: - groupId: org.apache.camel - artifactId: camel-crypto - schemes: - - id: crypto - http: false - passive: false - dataformats: - - crypto - - pgp - javaTypes: - - org.apache.camel.component.crypto.DigitalSignatureComponent - - org.apache.camel.converter.crypto.CryptoDataFormat - - org.apache.camel.converter.crypto.PGPDataFormat - camel-crypto-cms: - groupId: org.apache.camel - artifactId: camel-crypto-cms - schemes: - - id: crypto-cms - http: false - passive: false - javaTypes: - - org.apache.camel.component.crypto.cms.CryptoCmsComponent - camel-csv: - groupId: org.apache.camel - artifactId: camel-csv - dataformats: - - csv - javaTypes: - - org.apache.camel.dataformat.csv.CsvDataFormat - camel-cxf: - groupId: org.apache.camel - artifactId: camel-cxf - schemes: - - id: cxf - http: true - passive: false - - id: cxfrs - http: true - passive: false - javaTypes: - - org.apache.camel.component.cxf.CxfComponent - - org.apache.camel.component.cxf.jaxrs.CxfRsComponent - camel-dataformat: - groupId: org.apache.camel - artifactId: camel-dataformat - schemes: - - id: dataformat - http: false - passive: true - javaTypes: - - org.apache.camel.component.dataformat.DataFormatComponent - camel-dataset: - groupId: org.apache.camel - artifactId: camel-dataset - schemes: - - id: dataset - http: false - passive: true - - id: dataset-test - http: false - passive: false - javaTypes: - - org.apache.camel.component.dataset.DataSetComponent - - org.apache.camel.component.dataset.DataSetTestComponent - camel-debezium-mongodb: - groupId: org.apache.camel - artifactId: camel-debezium-mongodb - schemes: - - id: debezium-mongodb - http: false - passive: false - javaTypes: - - org.apache.camel.component.debezium.DebeziumMongodbComponent - camel-debezium-mysql: - groupId: org.apache.camel - artifactId: camel-debezium-mysql - schemes: - - id: debezium-mysql - http: false - passive: false - javaTypes: - - org.apache.camel.component.debezium.DebeziumMySqlComponent - camel-debezium-postgres: - groupId: org.apache.camel - artifactId: camel-debezium-postgres - schemes: - - id: debezium-postgres - http: false - passive: false - javaTypes: - - org.apache.camel.component.debezium.DebeziumPostgresComponent - camel-debezium-sqlserver: - groupId: org.apache.camel - artifactId: camel-debezium-sqlserver - schemes: - - id: debezium-sqlserver - http: false - passive: false - javaTypes: - - org.apache.camel.component.debezium.DebeziumSqlserverComponent - camel-digitalocean: - groupId: org.apache.camel - artifactId: camel-digitalocean - schemes: - - id: digitalocean - http: false - passive: false - javaTypes: - - org.apache.camel.component.digitalocean.DigitalOceanComponent - camel-direct: - groupId: org.apache.camel - artifactId: camel-direct - schemes: - - id: direct - http: false - passive: true - javaTypes: - - org.apache.camel.component.direct.DirectComponent - camel-directvm: - groupId: org.apache.camel - artifactId: camel-directvm - schemes: - - id: direct-vm - http: false - passive: true - javaTypes: - - org.apache.camel.component.directvm.DirectVmComponent - camel-disruptor: - groupId: org.apache.camel - artifactId: camel-disruptor - schemes: - - id: disruptor - http: false - passive: false - - id: disruptor-vm - http: false - passive: false - javaTypes: - - org.apache.camel.component.disruptor.DisruptorComponent - - org.apache.camel.component.disruptor.vm.DisruptorVmComponent - camel-dns: - groupId: org.apache.camel - artifactId: camel-dns - schemes: - - id: dns - http: false - passive: false - javaTypes: - - org.apache.camel.component.dns.DnsComponent - camel-docker: - groupId: org.apache.camel - artifactId: camel-docker - schemes: - - id: docker - http: false - passive: false - javaTypes: - - org.apache.camel.component.docker.DockerComponent - camel-dozer: - groupId: org.apache.camel - artifactId: camel-dozer - schemes: - - id: dozer - http: false - passive: false - javaTypes: - - org.apache.camel.component.dozer.DozerComponent - camel-drill: - groupId: org.apache.camel - artifactId: camel-drill - schemes: - - id: drill - http: false - passive: false - javaTypes: - - org.apache.camel.component.drill.DrillComponent - camel-dropbox: - groupId: org.apache.camel - artifactId: camel-dropbox - schemes: - - id: dropbox - http: false - passive: false - javaTypes: - - org.apache.camel.component.dropbox.DropboxComponent - camel-ehcache: - groupId: org.apache.camel - artifactId: camel-ehcache - schemes: - - id: ehcache - http: false - passive: false - javaTypes: - - org.apache.camel.component.ehcache.EhcacheComponent - camel-elasticsearch-rest: - groupId: org.apache.camel - artifactId: camel-elasticsearch-rest - schemes: - - id: elasticsearch-rest - http: false - passive: false - javaTypes: - - org.apache.camel.component.elasticsearch.ElasticsearchComponent - camel-elsql: - groupId: org.apache.camel - artifactId: camel-elsql - schemes: - - id: elsql - http: false - passive: false - javaTypes: - - org.apache.camel.component.elsql.ElsqlComponent - camel-etcd: - groupId: org.apache.camel - artifactId: camel-etcd - schemes: - - id: etcd - http: false - passive: false - javaTypes: - - org.apache.camel.component.etcd.EtcdComponent - camel-eventadmin: - groupId: org.apache.camel - artifactId: camel-eventadmin - schemes: - - id: eventadmin - http: false - passive: false - javaTypes: - - org.apache.camel.component.eventadmin.EventAdminComponent - camel-exec: - groupId: org.apache.camel - artifactId: camel-exec - schemes: - - id: exec - http: false - passive: false - javaTypes: - - org.apache.camel.component.exec.ExecComponent - camel-facebook: - groupId: org.apache.camel - artifactId: camel-facebook - schemes: - - id: facebook - http: false - passive: false - javaTypes: - - org.apache.camel.component.facebook.FacebookComponent - camel-fastjson: - groupId: org.apache.camel - artifactId: camel-fastjson - dataformats: - - json-fastjson - javaTypes: - - org.apache.camel.component.fastjson.FastjsonDataFormat - camel-fhir: - groupId: org.apache.camel - artifactId: camel-fhir - schemes: - - id: fhir - http: false - passive: false - dataformats: - - fhirJson - - fhirXml - javaTypes: - - org.apache.camel.component.fhir.FhirComponent - - org.apache.camel.component.fhir.FhirJsonDataFormat - - org.apache.camel.component.fhir.FhirXmlDataFormat - camel-file: - groupId: org.apache.camel - artifactId: camel-file - schemes: - - id: file - http: false - passive: false - javaTypes: - - org.apache.camel.component.file.FileComponent - camel-file-watch: - groupId: org.apache.camel - artifactId: camel-file-watch - schemes: - - id: file-watch - http: false - passive: false - javaTypes: - - org.apache.camel.component.file.watch.FileWatchComponent - camel-flatpack: - groupId: org.apache.camel - artifactId: camel-flatpack - schemes: - - id: flatpack - http: false - passive: false - dataformats: - - flatpack - javaTypes: - - org.apache.camel.component.flatpack.FlatpackComponent - - org.apache.camel.dataformat.flatpack.FlatpackDataFormat - camel-flink: - groupId: org.apache.camel - artifactId: camel-flink - schemes: - - id: flink - http: false - passive: false - javaTypes: - - org.apache.camel.component.flink.FlinkComponent - camel-fop: - groupId: org.apache.camel - artifactId: camel-fop - schemes: - - id: fop - http: false - passive: false - javaTypes: - - org.apache.camel.component.fop.FopComponent - camel-freemarker: - groupId: org.apache.camel - artifactId: camel-freemarker - schemes: - - id: freemarker - http: false - passive: false - javaTypes: - - org.apache.camel.component.freemarker.FreemarkerComponent - camel-ftp: - groupId: org.apache.camel - artifactId: camel-ftp - schemes: - - id: ftp - http: false - passive: false - - id: ftps - http: false - passive: false - - id: sftp - http: false - passive: false - javaTypes: - - org.apache.camel.component.file.remote.FtpComponent - - org.apache.camel.component.file.remote.FtpsComponent - - org.apache.camel.component.file.remote.SftpComponent - camel-ganglia: - groupId: org.apache.camel - artifactId: camel-ganglia - schemes: - - id: ganglia - http: false - passive: false - javaTypes: - - org.apache.camel.component.ganglia.GangliaComponent - camel-geocoder: - groupId: org.apache.camel - artifactId: camel-geocoder - schemes: - - id: geocoder - http: false - passive: false - javaTypes: - - org.apache.camel.component.geocoder.GeoCoderComponent - camel-git: - groupId: org.apache.camel - artifactId: camel-git - schemes: - - id: git - http: false - passive: false - javaTypes: - - org.apache.camel.component.git.GitComponent - camel-github: - groupId: org.apache.camel - artifactId: camel-github - schemes: - - id: github - http: false - passive: false - javaTypes: - - org.apache.camel.component.github.GitHubComponent - camel-google-bigquery: - groupId: org.apache.camel - artifactId: camel-google-bigquery - schemes: - - id: google-bigquery - http: false - passive: false - - id: google-bigquery-sql - http: false - passive: false - javaTypes: - - org.apache.camel.component.google.bigquery.GoogleBigQueryComponent - - org.apache.camel.component.google.bigquery.sql.GoogleBigQuerySQLComponent - camel-google-calendar: - groupId: org.apache.camel - artifactId: camel-google-calendar - schemes: - - id: google-calendar - http: false - passive: false - - id: google-calendar-stream - http: false - passive: false - javaTypes: - - org.apache.camel.component.google.calendar.GoogleCalendarComponent - - org.apache.camel.component.google.calendar.stream.GoogleCalendarStreamComponent - camel-google-drive: - groupId: org.apache.camel - artifactId: camel-google-drive - schemes: - - id: google-drive - http: false - passive: false - javaTypes: - - org.apache.camel.component.google.drive.GoogleDriveComponent - camel-google-mail: - groupId: org.apache.camel - artifactId: camel-google-mail - schemes: - - id: google-mail - http: false - passive: false - - id: google-mail-stream - http: false - passive: false - javaTypes: - - org.apache.camel.component.google.mail.GoogleMailComponent - - org.apache.camel.component.google.mail.stream.GoogleMailStreamComponent - camel-google-pubsub: - groupId: org.apache.camel - artifactId: camel-google-pubsub - schemes: - - id: google-pubsub - http: false - passive: false - javaTypes: - - org.apache.camel.component.google.pubsub.GooglePubsubComponent - camel-google-sheets: - groupId: org.apache.camel - artifactId: camel-google-sheets - schemes: - - id: google-sheets - http: false - passive: false - - id: google-sheets-stream - http: false - passive: false - javaTypes: - - org.apache.camel.component.google.sheets.GoogleSheetsComponent - - org.apache.camel.component.google.sheets.stream.GoogleSheetsStreamComponent - camel-gora: - groupId: org.apache.camel - artifactId: camel-gora - schemes: - - id: gora - http: false - passive: false - javaTypes: - - org.apache.camel.component.gora.GoraComponent - camel-grape: - groupId: org.apache.camel - artifactId: camel-grape - schemes: - - id: grape - http: false - passive: false - javaTypes: - - org.apache.camel.component.grape.GrapeComponent - camel-graphql: - groupId: org.apache.camel - artifactId: camel-graphql - schemes: - - id: graphql - http: false - passive: false - javaTypes: - - org.apache.camel.component.graphql.GraphqlComponent - camel-grok: - groupId: org.apache.camel - artifactId: camel-grok - dataformats: - - grok - javaTypes: - - org.apache.camel.component.grok.GrokDataFormat - camel-groovy: - groupId: org.apache.camel - artifactId: camel-groovy - languages: - - groovy - javaTypes: - - org.apache.camel.language.groovy.GroovyLanguage - camel-grpc: - groupId: org.apache.camel - artifactId: camel-grpc - schemes: - - id: grpc - http: true - passive: false - javaTypes: - - org.apache.camel.component.grpc.GrpcComponent - camel-gson: - groupId: org.apache.camel - artifactId: camel-gson - dataformats: - - json-gson - javaTypes: - - org.apache.camel.component.gson.GsonDataFormat - camel-guava-eventbus: - groupId: org.apache.camel - artifactId: camel-guava-eventbus - schemes: - - id: guava-eventbus - http: false - passive: false - javaTypes: - - org.apache.camel.component.guava.eventbus.GuavaEventBusComponent - camel-hazelcast: - groupId: org.apache.camel - artifactId: camel-hazelcast - schemes: - - id: hazelcast-atomicvalue - http: false - passive: false - - id: hazelcast-instance - http: false - passive: false - - id: hazelcast-list - http: false - passive: false - - id: hazelcast-map - http: false - passive: false - - id: hazelcast-multimap - http: false - passive: false - - id: hazelcast-queue - http: false - passive: false - - id: hazelcast-replicatedmap - http: false - passive: false - - id: hazelcast-ringbuffer - http: false - passive: false - - id: hazelcast-seda - http: false - passive: false - - id: hazelcast-set - http: false - passive: false - - id: hazelcast-topic - http: false - passive: false - javaTypes: - - org.apache.camel.component.hazelcast.atomicnumber.HazelcastAtomicnumberComponent - - org.apache.camel.component.hazelcast.instance.HazelcastInstanceComponent - - org.apache.camel.component.hazelcast.list.HazelcastListComponent - - org.apache.camel.component.hazelcast.map.HazelcastMapComponent - - org.apache.camel.component.hazelcast.multimap.HazelcastMultimapComponent - - org.apache.camel.component.hazelcast.queue.HazelcastQueueComponent - - org.apache.camel.component.hazelcast.replicatedmap.HazelcastReplicatedmapComponent - - org.apache.camel.component.hazelcast.ringbuffer.HazelcastRingbufferComponent - - org.apache.camel.component.hazelcast.seda.HazelcastSedaComponent - - org.apache.camel.component.hazelcast.set.HazelcastSetComponent - - org.apache.camel.component.hazelcast.topic.HazelcastTopicComponent - camel-hbase: - groupId: org.apache.camel - artifactId: camel-hbase - schemes: - - id: hbase - http: false - passive: false - javaTypes: - - org.apache.camel.component.hbase.HBaseComponent - camel-hdfs: - groupId: org.apache.camel - artifactId: camel-hdfs - schemes: - - id: hdfs - http: false - passive: false - javaTypes: - - org.apache.camel.component.hdfs.HdfsComponent - camel-hipchat: - groupId: org.apache.camel - artifactId: camel-hipchat - schemes: - - id: hipchat - http: false - passive: false - javaTypes: - - org.apache.camel.component.hipchat.HipchatComponent - camel-hl7: - groupId: org.apache.camel - artifactId: camel-hl7 - languages: - - hl7terser - dataformats: - - hl7 - javaTypes: - - org.apache.camel.component.hl7.Hl7TerserLanguage - - org.apache.camel.component.hl7.HL7DataFormat - camel-http: - groupId: org.apache.camel - artifactId: camel-http - schemes: - - id: http - http: false - passive: false - - id: https - http: false - passive: false - dependencies: - - groupId: org.apache.camel - artifactId: camel-file - javaTypes: - - org.apache.camel.component.http.HttpComponent - camel-ical: - groupId: org.apache.camel - artifactId: camel-ical - dataformats: - - ical - javaTypes: - - org.apache.camel.component.ical.ICalDataFormat - camel-iec60870: - groupId: org.apache.camel - artifactId: camel-iec60870 - schemes: - - id: iec60870-client - http: false - passive: false - - id: iec60870-server - http: false - passive: false - javaTypes: - - org.apache.camel.component.iec60870.client.ClientComponent - - org.apache.camel.component.iec60870.server.ServerComponent - camel-ignite: - groupId: org.apache.camel - artifactId: camel-ignite - schemes: - - id: ignite-cache - http: false - passive: false - - id: ignite-compute - http: false - passive: false - - id: ignite-events - http: false - passive: false - - id: ignite-idgen - http: false - passive: false - - id: ignite-messaging - http: false - passive: false - - id: ignite-queue - http: false - passive: false - - id: ignite-set - http: false - passive: false - javaTypes: - - org.apache.camel.component.ignite.cache.IgniteCacheComponent - - org.apache.camel.component.ignite.compute.IgniteComputeComponent - - org.apache.camel.component.ignite.events.IgniteEventsComponent - - org.apache.camel.component.ignite.idgen.IgniteIdGenComponent - - org.apache.camel.component.ignite.messaging.IgniteMessagingComponent - - org.apache.camel.component.ignite.queue.IgniteQueueComponent - - org.apache.camel.component.ignite.set.IgniteSetComponent - camel-infinispan: - groupId: org.apache.camel - artifactId: camel-infinispan - schemes: - - id: infinispan - http: false - passive: false - javaTypes: - - org.apache.camel.component.infinispan.InfinispanComponent - camel-influxdb: - groupId: org.apache.camel - artifactId: camel-influxdb - schemes: - - id: influxdb - http: false - passive: false - javaTypes: - - org.apache.camel.component.influxdb.InfluxDbComponent - camel-iota: - groupId: org.apache.camel - artifactId: camel-iota - schemes: - - id: iota - http: false - passive: false - javaTypes: - - org.apache.camel.component.iota.IOTAComponent - camel-ipfs: - groupId: org.apache.camel - artifactId: camel-ipfs - schemes: - - id: ipfs - http: false - passive: false - javaTypes: - - org.apache.camel.component.ipfs.IPFSComponent - camel-irc: - groupId: org.apache.camel - artifactId: camel-irc - schemes: - - id: irc - http: false - passive: false - javaTypes: - - org.apache.camel.component.irc.IrcComponent - camel-ironmq: - groupId: org.apache.camel - artifactId: camel-ironmq - schemes: - - id: ironmq - http: false - passive: false - javaTypes: - - org.apache.camel.component.ironmq.IronMQComponent - camel-jackson: - groupId: org.apache.camel - artifactId: camel-jackson - dataformats: - - json-jackson - javaTypes: - - org.apache.camel.component.jackson.JacksonDataFormat - camel-jacksonxml: - groupId: org.apache.camel - artifactId: camel-jacksonxml - dataformats: - - jacksonxml - javaTypes: - - org.apache.camel.component.jacksonxml.JacksonXMLDataFormat - camel-jaxb: - groupId: org.apache.camel - artifactId: camel-jaxb - dataformats: - - jaxb - javaTypes: - - org.apache.camel.converter.jaxb.JaxbDataFormat - camel-jaxp: - groupId: org.apache.camel - artifactId: camel-jaxp - languages: - - xtokenize - javaTypes: - - org.apache.camel.language.xtokenizer.XMLTokenizeLanguage - camel-jbpm: - groupId: org.apache.camel - artifactId: camel-jbpm - schemes: - - id: jbpm - http: false - passive: false - javaTypes: - - org.apache.camel.component.jbpm.JBPMComponent - camel-jcache: - groupId: org.apache.camel - artifactId: camel-jcache - schemes: - - id: jcache - http: false - passive: false - javaTypes: - - org.apache.camel.component.jcache.JCacheComponent - camel-jclouds: - groupId: org.apache.camel - artifactId: camel-jclouds - schemes: - - id: jclouds - http: false - passive: false - javaTypes: - - org.apache.camel.component.jclouds.JcloudsComponent - camel-jcr: - groupId: org.apache.camel - artifactId: camel-jcr - schemes: - - id: jcr - http: false - passive: false - javaTypes: - - org.apache.camel.component.jcr.JcrComponent - camel-jdbc: - groupId: org.apache.camel - artifactId: camel-jdbc - schemes: - - id: jdbc - http: false - passive: false - javaTypes: - - org.apache.camel.component.jdbc.JdbcComponent - camel-jetty: - groupId: org.apache.camel - artifactId: camel-jetty - schemes: - - id: jetty - http: true - passive: false - javaTypes: - - org.apache.camel.component.jetty9.JettyHttpComponent9 - camel-jgroups: - groupId: org.apache.camel - artifactId: camel-jgroups - schemes: - - id: jgroups - http: false - passive: false - javaTypes: - - org.apache.camel.component.jgroups.JGroupsComponent - camel-jgroups-raft: - groupId: org.apache.camel - artifactId: camel-jgroups-raft - schemes: - - id: jgroups-raft - http: false - passive: false - javaTypes: - - org.apache.camel.component.jgroups.raft.JGroupsRaftComponent - camel-jing: - groupId: org.apache.camel - artifactId: camel-jing - schemes: - - id: jing - http: false - passive: false - javaTypes: - - org.apache.camel.component.validator.jing.JingComponent - camel-jira: - groupId: org.apache.camel - artifactId: camel-jira - schemes: - - id: jira - http: false - passive: false - javaTypes: - - org.apache.camel.component.jira.JiraComponent - camel-jms: - groupId: org.apache.camel - artifactId: camel-jms - schemes: - - id: jms - http: false - passive: false - javaTypes: - - org.apache.camel.component.jms.JmsComponent - camel-jmx: - groupId: org.apache.camel - artifactId: camel-jmx - schemes: - - id: jmx - http: false - passive: false - javaTypes: - - org.apache.camel.component.jmx.JMXComponent - camel-johnzon: - groupId: org.apache.camel - artifactId: camel-johnzon - dataformats: - - json-johnzon - javaTypes: - - org.apache.camel.component.johnzon.JohnzonDataFormat - camel-jolt: - groupId: org.apache.camel - artifactId: camel-jolt - schemes: - - id: jolt - http: false - passive: false - javaTypes: - - org.apache.camel.component.jolt.JoltComponent - camel-jooq: - groupId: org.apache.camel - artifactId: camel-jooq - schemes: - - id: jooq - http: false - passive: false - javaTypes: - - org.apache.camel.component.jooq.JooqComponent - camel-jpa: - groupId: org.apache.camel - artifactId: camel-jpa - schemes: - - id: jpa - http: false - passive: false - javaTypes: - - org.apache.camel.component.jpa.JpaComponent - camel-jsch: - groupId: org.apache.camel - artifactId: camel-jsch - schemes: - - id: scp - http: false - passive: false - javaTypes: - - org.apache.camel.component.scp.ScpComponent - camel-json-validator: - groupId: org.apache.camel - artifactId: camel-json-validator - schemes: - - id: json-validator - http: false - passive: false - javaTypes: - - org.apache.camel.component.jsonvalidator.JsonValidatorComponent - camel-jsonapi: - groupId: org.apache.camel - artifactId: camel-jsonapi - dataformats: - - jsonApi - javaTypes: - - org.apache.camel.component.jsonapi.JsonApiDataFormat - camel-jsonpath: - groupId: org.apache.camel - artifactId: camel-jsonpath - languages: - - jsonpath - javaTypes: - - org.apache.camel.jsonpath.JsonPathLanguage - camel-jt400: - groupId: org.apache.camel - artifactId: camel-jt400 - schemes: - - id: jt400 - http: false - passive: false - javaTypes: - - org.apache.camel.component.jt400.Jt400Component - camel-k-loader-groovy: - groupId: org.apache.camel.k - artifactId: camel-k-loader-groovy - dependencies: - - groupId: org.apache.camel - artifactId: camel-endpointdsl - - groupId: org.apache.camel - artifactId: camel-groovy - camel-k-loader-java: - groupId: org.apache.camel.k - artifactId: camel-k-loader-java - dependencies: - - groupId: org.apache.camel - artifactId: camel-endpointdsl - camel-k-loader-js: - groupId: org.apache.camel.k - artifactId: camel-k-loader-js - dependencies: - - groupId: org.apache.camel - artifactId: camel-endpointdsl - camel-k-loader-knative: - groupId: org.apache.camel.k - artifactId: camel-k-loader-knative - camel-k-loader-kotlin: - groupId: org.apache.camel.k - artifactId: camel-k-loader-kotlin - dependencies: - - groupId: org.apache.camel - artifactId: camel-endpointdsl - camel-k-loader-xml: - groupId: org.apache.camel.k - artifactId: camel-k-loader-xml - camel-k-runtime-health: - groupId: org.apache.camel.k - artifactId: camel-k-runtime-health - dependencies: - - groupId: org.apache.camel - artifactId: camel-servlet - - groupId: org.apache.camel.k - artifactId: camel-k-runtime-servlet - camel-k-runtime-knative: - groupId: org.apache.camel.k - artifactId: camel-k-runtime-knative - dependencies: - - groupId: org.apache.camel - artifactId: camel-cloud - - groupId: org.apache.camel.k - artifactId: camel-k-loader-yaml - - groupId: org.apache.camel.k - artifactId: camel-k-loader-knative - - groupId: org.apache.camel.k - artifactId: camel-knative-api - - groupId: org.apache.camel.k - artifactId: camel-knative - - groupId: org.apache.camel.k - artifactId: camel-knative-http - camel-k-runtime-main: - groupId: org.apache.camel.k - artifactId: camel-k-runtime-main - dependencies: - - groupId: org.apache.camel - artifactId: camel-core-engine - - groupId: org.apache.camel - artifactId: camel-main - camel-k-runtime-servlet: - groupId: org.apache.camel.k - artifactId: camel-k-runtime-servlet - dependencies: - - groupId: org.apache.camel - artifactId: camel-servlet - camel-k-runtime-webhook: - groupId: org.apache.camel.k - artifactId: camel-k-runtime-webhook - dependencies: - - groupId: org.apache.camel - artifactId: camel-webhook - camel-kafka: - groupId: org.apache.camel - artifactId: camel-kafka - schemes: - - id: kafka - http: false - passive: false - javaTypes: - - org.apache.camel.component.kafka.KafkaComponent - camel-knative: - groupId: org.apache.camel.k - artifactId: camel-knative - schemes: - - id: knative - http: true - passive: false - dependencies: - - groupId: org.apache.camel - artifactId: camel-cloud - - groupId: org.apache.camel.k - artifactId: camel-knative-api - - groupId: org.apache.camel.k - artifactId: camel-knative-http - camel-kubernetes: - groupId: org.apache.camel - artifactId: camel-kubernetes - schemes: - - id: kubernetes-config-maps - http: false - passive: false - - id: kubernetes-deployments - http: false - passive: false - - id: kubernetes-hpa - http: false - passive: false - - id: kubernetes-job - http: false - passive: false - - id: kubernetes-namespaces - http: false - passive: false - - id: kubernetes-nodes - http: false - passive: false - - id: kubernetes-persistent-volumes - http: false - passive: false - - id: kubernetes-persistent-volumes-claims - http: false - passive: false - - id: kubernetes-pods - http: false - passive: false - - id: kubernetes-replication-controllers - http: false - passive: false - - id: kubernetes-resources-quota - http: false - passive: false - - id: kubernetes-secrets - http: false - passive: false - - id: kubernetes-service-accounts - http: false - passive: false - - id: kubernetes-services - http: false - passive: false - - id: openshift-build-configs - http: false - passive: false - - id: openshift-builds - http: false - passive: false - javaTypes: - - org.apache.camel.component.kubernetes.config_maps.KubernetesConfigMapsComponent - - org.apache.camel.component.kubernetes.deployments.KubernetesDeploymentsComponent - - org.apache.camel.component.kubernetes.hpa.KubernetesHPAComponent - - org.apache.camel.component.kubernetes.job.KubernetesJobComponent - - org.apache.camel.component.kubernetes.namespaces.KubernetesNamespacesComponent - - org.apache.camel.component.kubernetes.nodes.KubernetesNodesComponent - - org.apache.camel.component.kubernetes.persistent_volumes.KubernetesPersistentVolumesComponent - - org.apache.camel.component.kubernetes.persistent_volumes_claims.KubernetesPersistentVolumesClaimsComponent - - org.apache.camel.component.kubernetes.pods.KubernetesPodsComponent - - org.apache.camel.component.kubernetes.replication_controllers.KubernetesReplicationControllersComponent - - org.apache.camel.component.kubernetes.resources_quota.KubernetesResourcesQuotaComponent - - org.apache.camel.component.kubernetes.secrets.KubernetesSecretsComponent - - org.apache.camel.component.kubernetes.service_accounts.KubernetesServiceAccountsComponent - - org.apache.camel.component.kubernetes.services.KubernetesServicesComponent - - org.apache.camel.component.openshift.build_configs.OpenshiftBuildConfigsComponent - - org.apache.camel.component.openshift.builds.OpenshiftBuildsComponent - camel-kudu: - groupId: org.apache.camel - artifactId: camel-kudu - schemes: - - id: kudu - http: false - passive: false - javaTypes: - - org.apache.camel.component.kudu.KuduComponent - camel-language: - groupId: org.apache.camel - artifactId: camel-language - schemes: - - id: language - http: false - passive: true - javaTypes: - - org.apache.camel.component.language.LanguageComponent - camel-ldap: - groupId: org.apache.camel - artifactId: camel-ldap - schemes: - - id: ldap - http: false - passive: false - javaTypes: - - org.apache.camel.component.ldap.LdapComponent - camel-ldif: - groupId: org.apache.camel - artifactId: camel-ldif - schemes: - - id: ldif - http: false - passive: false - javaTypes: - - org.apache.camel.component.ldif.LdifComponent - camel-log: - groupId: org.apache.camel - artifactId: camel-log - schemes: - - id: log - http: false - passive: true - javaTypes: - - org.apache.camel.component.log.LogComponent - camel-lucene: - groupId: org.apache.camel - artifactId: camel-lucene - schemes: - - id: lucene - http: false - passive: false - javaTypes: - - org.apache.camel.component.lucene.LuceneComponent - camel-lumberjack: - groupId: org.apache.camel - artifactId: camel-lumberjack - schemes: - - id: lumberjack - http: false - passive: false - javaTypes: - - org.apache.camel.component.lumberjack.LumberjackComponent - camel-lzf: - groupId: org.apache.camel - artifactId: camel-lzf - dataformats: - - lzf - javaTypes: - - org.apache.camel.dataformat.lzf.LZFDataFormat - camel-mail: - groupId: org.apache.camel - artifactId: camel-mail - schemes: - - id: imap - http: false - passive: false - - id: imaps - http: false - passive: false - - id: pop3 - http: false - passive: false - - id: pop3s - http: false - passive: false - - id: smtp - http: false - passive: false - - id: smtps - http: false - passive: false - dataformats: - - mime-multipart - javaTypes: - - org.apache.camel.component.mail.MailComponent - - org.apache.camel.dataformat.mime.multipart.MimeMultipartDataFormat - camel-master: - groupId: org.apache.camel - artifactId: camel-master - schemes: - - id: master - http: false - passive: false - javaTypes: - - org.apache.camel.component.master.MasterComponent - camel-metrics: - groupId: org.apache.camel - artifactId: camel-metrics - schemes: - - id: metrics - http: false - passive: false - javaTypes: - - org.apache.camel.component.metrics.MetricsComponent - camel-micrometer: - groupId: org.apache.camel - artifactId: camel-micrometer - schemes: - - id: micrometer - http: false - passive: false - javaTypes: - - org.apache.camel.component.micrometer.MicrometerComponent - camel-microprofile-metrics: - groupId: org.apache.camel - artifactId: camel-microprofile-metrics - schemes: - - id: microprofile-metrics - http: false - passive: false - javaTypes: - - org.apache.camel.component.microprofile.metrics.MicroProfileMetricsComponent - camel-milo: - groupId: org.apache.camel - artifactId: camel-milo - schemes: - - id: milo-client - http: false - passive: false - - id: milo-server - http: false - passive: false - javaTypes: - - org.apache.camel.component.milo.client.MiloClientComponent - - org.apache.camel.component.milo.server.MiloServerComponent - camel-mina: - groupId: org.apache.camel - artifactId: camel-mina - schemes: - - id: mina - http: false - passive: false - javaTypes: - - org.apache.camel.component.mina.MinaComponent - camel-mllp: - groupId: org.apache.camel - artifactId: camel-mllp - schemes: - - id: mllp - http: false - passive: false - javaTypes: - - org.apache.camel.component.mllp.MllpComponent - camel-mock: - groupId: org.apache.camel - artifactId: camel-mock - schemes: - - id: mock - http: false - passive: true - javaTypes: - - org.apache.camel.component.mock.MockComponent - camel-mongodb: - groupId: org.apache.camel - artifactId: camel-mongodb - schemes: - - id: mongodb - http: false - passive: false - javaTypes: - - org.apache.camel.component.mongodb.MongoDbComponent - camel-mongodb-gridfs: - groupId: org.apache.camel - artifactId: camel-mongodb-gridfs - schemes: - - id: mongodb-gridfs - http: false - passive: false - javaTypes: - - org.apache.camel.component.mongodb.gridfs.GridFsComponent - camel-msv: - groupId: org.apache.camel - artifactId: camel-msv - schemes: - - id: msv - http: false - passive: false - javaTypes: - - org.apache.camel.component.validator.msv.MsvComponent - camel-mustache: - groupId: org.apache.camel - artifactId: camel-mustache - schemes: - - id: mustache - http: false - passive: false - javaTypes: - - org.apache.camel.component.mustache.MustacheComponent - camel-mvel: - groupId: org.apache.camel - artifactId: camel-mvel - schemes: - - id: mvel - http: false - passive: false - languages: - - mvel - javaTypes: - - org.apache.camel.component.mvel.MvelComponent - - org.apache.camel.language.mvel.MvelLanguage - camel-mybatis: - groupId: org.apache.camel - artifactId: camel-mybatis - schemes: - - id: mybatis - http: false - passive: false - - id: mybatis-bean - http: false - passive: false - javaTypes: - - org.apache.camel.component.mybatis.MyBatisComponent - - org.apache.camel.component.mybatis.MyBatisBeanComponent - camel-nagios: - groupId: org.apache.camel - artifactId: camel-nagios - schemes: - - id: nagios - http: false - passive: false - javaTypes: - - org.apache.camel.component.nagios.NagiosComponent - camel-nats: - groupId: org.apache.camel - artifactId: camel-nats - schemes: - - id: nats - http: false - passive: false - javaTypes: - - org.apache.camel.component.nats.NatsComponent - camel-netty: - groupId: org.apache.camel - artifactId: camel-netty - schemes: - - id: netty - http: false - passive: false - javaTypes: - - org.apache.camel.component.netty.NettyComponent - camel-netty-http: - groupId: org.apache.camel - artifactId: camel-netty-http - schemes: - - id: netty-http - http: true - passive: false - javaTypes: - - org.apache.camel.component.netty.http.NettyHttpComponent - camel-nitrite: - groupId: org.apache.camel - artifactId: camel-nitrite - schemes: - - id: nitrite - http: false - passive: false - javaTypes: - - org.apache.camel.component.nitrite.NitriteComponent - camel-nsq: - groupId: org.apache.camel - artifactId: camel-nsq - schemes: - - id: nsq - http: false - passive: false - javaTypes: - - org.apache.camel.component.nsq.NsqComponent - camel-ognl: - groupId: org.apache.camel - artifactId: camel-ognl - languages: - - ognl - javaTypes: - - org.apache.camel.language.ognl.OgnlLanguage - camel-olingo2: - groupId: org.apache.camel - artifactId: camel-olingo2 - schemes: - - id: olingo2 - http: false - passive: false - javaTypes: - - org.apache.camel.component.olingo2.Olingo2Component - camel-olingo4: - groupId: org.apache.camel - artifactId: camel-olingo4 - schemes: - - id: olingo4 - http: false - passive: false - javaTypes: - - org.apache.camel.component.olingo4.Olingo4Component - camel-openstack: - groupId: org.apache.camel - artifactId: camel-openstack - schemes: - - id: openstack-cinder - http: false - passive: false - - id: openstack-glance - http: false - passive: false - - id: openstack-keystone - http: false - passive: false - - id: openstack-neutron - http: false - passive: false - - id: openstack-nova - http: false - passive: false - - id: openstack-swift - http: false - passive: false - javaTypes: - - org.apache.camel.component.openstack.cinder.CinderComponent - - org.apache.camel.component.openstack.glance.GlanceComponent - - org.apache.camel.component.openstack.keystone.KeystoneComponent - - org.apache.camel.component.openstack.neutron.NeutronComponent - - org.apache.camel.component.openstack.nova.NovaComponent - - org.apache.camel.component.openstack.swift.SwiftComponent - camel-optaplanner: - groupId: org.apache.camel - artifactId: camel-optaplanner - schemes: - - id: optaplanner - http: false - passive: false - javaTypes: - - org.apache.camel.component.optaplanner.OptaPlannerComponent - camel-paho: - groupId: org.apache.camel - artifactId: camel-paho - schemes: - - id: paho - http: false - passive: false - javaTypes: - - org.apache.camel.component.paho.PahoComponent - camel-paxlogging: - groupId: org.apache.camel - artifactId: camel-paxlogging - schemes: - - id: paxlogging - http: false - passive: false - javaTypes: - - org.apache.camel.component.paxlogging.PaxLoggingComponent - camel-pdf: - groupId: org.apache.camel - artifactId: camel-pdf - schemes: - - id: pdf - http: false - passive: false - javaTypes: - - org.apache.camel.component.pdf.PdfComponent - camel-pg-replication-slot: - groupId: org.apache.camel - artifactId: camel-pg-replication-slot - schemes: - - id: pg-replication-slot - http: false - passive: false - javaTypes: - - org.apache.camel.component.pg.replication.slot.PgReplicationSlotComponent - camel-pgevent: - groupId: org.apache.camel - artifactId: camel-pgevent - schemes: - - id: pgevent - http: false - passive: false - javaTypes: - - org.apache.camel.component.pgevent.PgEventComponent - camel-platform-http: - groupId: org.apache.camel - artifactId: camel-platform-http - schemes: - - id: platform-http - http: false - passive: false - javaTypes: - - org.apache.camel.component.platform.http.PlatformHttpComponent - camel-printer: - groupId: org.apache.camel - artifactId: camel-printer - schemes: - - id: lpr - http: false - passive: false - javaTypes: - - org.apache.camel.component.printer.PrinterComponent - camel-protobuf: - groupId: org.apache.camel - artifactId: camel-protobuf - dataformats: - - protobuf - javaTypes: - - org.apache.camel.dataformat.protobuf.ProtobufDataFormat - camel-pubnub: - groupId: org.apache.camel - artifactId: camel-pubnub - schemes: - - id: pubnub - http: false - passive: false - javaTypes: - - org.apache.camel.component.pubnub.PubNubComponent - camel-pulsar: - groupId: org.apache.camel - artifactId: camel-pulsar - schemes: - - id: pulsar - http: false - passive: false - javaTypes: - - org.apache.camel.component.pulsar.PulsarComponent - camel-quartz: - groupId: org.apache.camel - artifactId: camel-quartz - schemes: - - id: quartz - http: false - passive: false - javaTypes: - - org.apache.camel.component.quartz.QuartzComponent - camel-quickfix: - groupId: org.apache.camel - artifactId: camel-quickfix - schemes: - - id: quickfix - http: false - passive: false - javaTypes: - - org.apache.camel.component.quickfixj.QuickfixjComponent - camel-rabbitmq: - groupId: org.apache.camel - artifactId: camel-rabbitmq - schemes: - - id: rabbitmq - http: false - passive: false - javaTypes: - - org.apache.camel.component.rabbitmq.RabbitMQComponent - camel-reactive-streams: - groupId: org.apache.camel - artifactId: camel-reactive-streams - schemes: - - id: reactive-streams - http: false - passive: false - javaTypes: - - org.apache.camel.component.reactive.streams.ReactiveStreamsComponent - camel-ref: - groupId: org.apache.camel - artifactId: camel-ref - schemes: - - id: ref - http: false - passive: true - javaTypes: - - org.apache.camel.component.ref.RefComponent - camel-rest: - groupId: org.apache.camel - artifactId: camel-rest - schemes: - - id: rest - http: true - passive: false - - id: rest-api - http: false - passive: false - javaTypes: - - org.apache.camel.component.rest.RestComponent - - org.apache.camel.component.rest.RestApiComponent - camel-rest-swagger: - groupId: org.apache.camel - artifactId: camel-rest-swagger - schemes: - - id: rest-swagger - http: false - passive: false - javaTypes: - - org.apache.camel.component.rest.swagger.RestSwaggerComponent - camel-robotframework: - groupId: org.apache.camel - artifactId: camel-robotframework - schemes: - - id: robotframework - http: false - passive: false - javaTypes: - - org.apache.camel.component.robotframework.RobotFrameworkComponent - camel-rss: - groupId: org.apache.camel - artifactId: camel-rss - schemes: - - id: rss - http: false - passive: false - dataformats: - - rss - javaTypes: - - org.apache.camel.component.rss.RssComponent - - org.apache.camel.dataformat.rss.RssDataFormat - camel-saga: - groupId: org.apache.camel - artifactId: camel-saga - schemes: - - id: saga - http: false - passive: false - javaTypes: - - org.apache.camel.component.saga.SagaComponent - camel-salesforce: - groupId: org.apache.camel - artifactId: camel-salesforce - schemes: - - id: salesforce - http: false - passive: false - javaTypes: - - org.apache.camel.component.salesforce.SalesforceComponent - camel-sap-netweaver: - groupId: org.apache.camel - artifactId: camel-sap-netweaver - schemes: - - id: sap-netweaver - http: false - passive: false - javaTypes: - - org.apache.camel.component.sap.netweaver.NetWeaverComponent - camel-saxon: - groupId: org.apache.camel - artifactId: camel-saxon - schemes: - - id: xquery - http: false - passive: false - languages: - - xquery - javaTypes: - - org.apache.camel.component.xquery.XQueryComponent - - org.apache.camel.language.xquery.XQueryLanguage - camel-scheduler: - groupId: org.apache.camel - artifactId: camel-scheduler - schemes: - - id: scheduler - http: false - passive: false - javaTypes: - - org.apache.camel.component.scheduler.SchedulerComponent - camel-schematron: - groupId: org.apache.camel - artifactId: camel-schematron - schemes: - - id: schematron - http: false - passive: false - javaTypes: - - org.apache.camel.component.schematron.SchematronComponent - camel-seda: - groupId: org.apache.camel - artifactId: camel-seda - schemes: - - id: seda - http: false - passive: true - javaTypes: - - org.apache.camel.component.seda.SedaComponent - camel-service: - groupId: org.apache.camel - artifactId: camel-service - schemes: - - id: service - http: false - passive: false - javaTypes: - - org.apache.camel.component.service.ServiceComponent - camel-servicenow: - groupId: org.apache.camel - artifactId: camel-servicenow - schemes: - - id: servicenow - http: false - passive: false - javaTypes: - - org.apache.camel.component.servicenow.ServiceNowComponent - camel-servlet: - groupId: org.apache.camel - artifactId: camel-servlet - schemes: - - id: servlet - http: true - passive: false - javaTypes: - - org.apache.camel.component.servlet.ServletComponent - camel-sip: - groupId: org.apache.camel - artifactId: camel-sip - schemes: - - id: sip - http: false - passive: false - - id: sips - http: false - passive: false - javaTypes: - - org.apache.camel.component.sip.SipComponent - camel-sjms: - groupId: org.apache.camel - artifactId: camel-sjms - schemes: - - id: sjms - http: false - passive: false - - id: sjms-batch - http: false - passive: false - javaTypes: - - org.apache.camel.component.sjms.SjmsComponent - - org.apache.camel.component.sjms.batch.SjmsBatchComponent - camel-sjms2: - groupId: org.apache.camel - artifactId: camel-sjms2 - schemes: - - id: sjms2 - http: false - passive: false - javaTypes: - - org.apache.camel.component.sjms2.Sjms2Component - camel-slack: - groupId: org.apache.camel - artifactId: camel-slack - schemes: - - id: slack - http: false - passive: false - javaTypes: - - org.apache.camel.component.slack.SlackComponent - camel-smpp: - groupId: org.apache.camel - artifactId: camel-smpp - schemes: - - id: smpp - http: false - passive: false - - id: smpps - http: false - passive: false - javaTypes: - - org.apache.camel.component.smpp.SmppComponent - camel-snakeyaml: - groupId: org.apache.camel - artifactId: camel-snakeyaml - dataformats: - - yaml-snakeyaml - javaTypes: - - org.apache.camel.component.snakeyaml.SnakeYAMLDataFormat - camel-snmp: - groupId: org.apache.camel - artifactId: camel-snmp - schemes: - - id: snmp - http: false - passive: false - javaTypes: - - org.apache.camel.component.snmp.SnmpComponent - camel-soap: - groupId: org.apache.camel - artifactId: camel-soap - dataformats: - - soapjaxb - javaTypes: - - org.apache.camel.dataformat.soap.SoapJaxbDataFormat - camel-solr: - groupId: org.apache.camel - artifactId: camel-solr - schemes: - - id: solr - http: false - passive: false - - id: solrs - http: false - passive: false - - id: solrCloud - http: false - passive: false - javaTypes: - - org.apache.camel.component.solr.SolrComponent - camel-soroush: - groupId: org.apache.camel - artifactId: camel-soroush - schemes: - - id: soroush - http: false - passive: false - javaTypes: - - org.apache.camel.component.soroushbot.component.SoroushBotComponent - camel-spark: - groupId: org.apache.camel - artifactId: camel-spark - schemes: - - id: spark - http: false - passive: false - javaTypes: - - org.apache.camel.component.spark.SparkComponent - camel-spark-rest: - groupId: org.apache.camel - artifactId: camel-spark-rest - schemes: - - id: spark-rest - http: true - passive: false - javaTypes: - - org.apache.camel.component.sparkrest.SparkComponent - camel-splunk: - groupId: org.apache.camel - artifactId: camel-splunk - schemes: - - id: splunk - http: false - passive: false - javaTypes: - - org.apache.camel.component.splunk.SplunkComponent - camel-spring: - groupId: org.apache.camel - artifactId: camel-spring - schemes: - - id: spring-event - http: false - passive: false - languages: - - spel - javaTypes: - - org.apache.camel.component.event.EventComponent - - org.apache.camel.language.spel.SpelLanguage - camel-spring-batch: - groupId: org.apache.camel - artifactId: camel-spring-batch - schemes: - - id: spring-batch - http: false - passive: false - javaTypes: - - org.apache.camel.component.spring.batch.SpringBatchComponent - camel-spring-integration: - groupId: org.apache.camel - artifactId: camel-spring-integration - schemes: - - id: spring-integration - http: false - passive: false - javaTypes: - - org.apache.camel.component.spring.integration.SpringIntegrationComponent - camel-spring-ldap: - groupId: org.apache.camel - artifactId: camel-spring-ldap - schemes: - - id: spring-ldap - http: false - passive: false - javaTypes: - - org.apache.camel.component.springldap.SpringLdapComponent - camel-spring-redis: - groupId: org.apache.camel - artifactId: camel-spring-redis - schemes: - - id: spring-redis - http: false - passive: false - javaTypes: - - org.apache.camel.component.redis.RedisComponent - camel-spring-ws: - groupId: org.apache.camel - artifactId: camel-spring-ws - schemes: - - id: spring-ws - http: true - passive: false - javaTypes: - - org.apache.camel.component.spring.ws.SpringWebserviceComponent - camel-sql: - groupId: org.apache.camel - artifactId: camel-sql - schemes: - - id: sql - http: false - passive: false - - id: sql-stored - http: false - passive: false - javaTypes: - - org.apache.camel.component.sql.SqlComponent - - org.apache.camel.component.sql.stored.SqlStoredComponent - camel-ssh: - groupId: org.apache.camel - artifactId: camel-ssh - schemes: - - id: ssh - http: false - passive: false - javaTypes: - - org.apache.camel.component.ssh.SshComponent - camel-stax: - groupId: org.apache.camel - artifactId: camel-stax - schemes: - - id: stax - http: false - passive: false - javaTypes: - - org.apache.camel.component.stax.StAXComponent - camel-stomp: - groupId: org.apache.camel - artifactId: camel-stomp - schemes: - - id: stomp - http: false - passive: false - javaTypes: - - org.apache.camel.component.stomp.StompComponent - camel-stream: - groupId: org.apache.camel - artifactId: camel-stream - schemes: - - id: stream - http: false - passive: false - javaTypes: - - org.apache.camel.component.stream.StreamComponent - camel-stringtemplate: - groupId: org.apache.camel - artifactId: camel-stringtemplate - schemes: - - id: string-template - http: false - passive: false - javaTypes: - - org.apache.camel.component.stringtemplate.StringTemplateComponent - camel-stub: - groupId: org.apache.camel - artifactId: camel-stub - schemes: - - id: stub - http: false - passive: true - javaTypes: - - org.apache.camel.component.stub.StubComponent - camel-syslog: - groupId: org.apache.camel - artifactId: camel-syslog - dataformats: - - syslog - javaTypes: - - org.apache.camel.component.syslog.SyslogDataFormat - camel-tagsoup: - groupId: org.apache.camel - artifactId: camel-tagsoup - dataformats: - - tidyMarkup - javaTypes: - - org.apache.camel.dataformat.tagsoup.TidyMarkupDataFormat - camel-tarfile: - groupId: org.apache.camel - artifactId: camel-tarfile - dataformats: - - tarfile - javaTypes: - - org.apache.camel.dataformat.tarfile.TarFileDataFormat - camel-telegram: - groupId: org.apache.camel - artifactId: camel-telegram - schemes: - - id: telegram - http: false - passive: false - javaTypes: - - org.apache.camel.component.telegram.TelegramComponent - camel-thrift: - groupId: org.apache.camel - artifactId: camel-thrift - schemes: - - id: thrift - http: false - passive: false - dataformats: - - thrift - javaTypes: - - org.apache.camel.component.thrift.ThriftComponent - - org.apache.camel.dataformat.thrift.ThriftDataFormat - camel-tika: - groupId: org.apache.camel - artifactId: camel-tika - schemes: - - id: tika - http: false - passive: false - javaTypes: - - org.apache.camel.component.tika.TikaComponent - camel-timer: - groupId: org.apache.camel - artifactId: camel-timer - schemes: - - id: timer - http: false - passive: false - javaTypes: - - org.apache.camel.component.timer.TimerComponent - camel-twilio: - groupId: org.apache.camel - artifactId: camel-twilio - schemes: - - id: twilio - http: false - passive: false - javaTypes: - - org.apache.camel.component.twilio.TwilioComponent - camel-twitter: - groupId: org.apache.camel - artifactId: camel-twitter - schemes: - - id: twitter-directmessage - http: false - passive: false - - id: twitter-search - http: false - passive: false - - id: twitter-timeline - http: false - passive: false - javaTypes: - - org.apache.camel.component.twitter.directmessage.TwitterDirectMessageComponent - - org.apache.camel.component.twitter.search.TwitterSearchComponent - - org.apache.camel.component.twitter.timeline.TwitterTimelineComponent - camel-undertow: - groupId: org.apache.camel - artifactId: camel-undertow - schemes: - - id: undertow - http: true - passive: false - javaTypes: - - org.apache.camel.component.undertow.UndertowComponent - camel-univocity-parsers: - groupId: org.apache.camel - artifactId: camel-univocity-parsers - dataformats: - - univocity-csv - - univocity-fixed - - univocity-tsv - javaTypes: - - org.apache.camel.dataformat.univocity.UniVocityCsvDataFormat - - org.apache.camel.dataformat.univocity.UniVocityFixedWidthDataFormat - - org.apache.camel.dataformat.univocity.UniVocityTsvDataFormat - camel-validator: - groupId: org.apache.camel - artifactId: camel-validator - schemes: - - id: validator - http: false - passive: true - javaTypes: - - org.apache.camel.component.validator.ValidatorComponent - camel-velocity: - groupId: org.apache.camel - artifactId: camel-velocity - schemes: - - id: velocity - http: false - passive: false - javaTypes: - - org.apache.camel.component.velocity.VelocityComponent - camel-vertx: - groupId: org.apache.camel - artifactId: camel-vertx - schemes: - - id: vertx - http: false - passive: false - javaTypes: - - org.apache.camel.component.vertx.VertxComponent - camel-vm: - groupId: org.apache.camel - artifactId: camel-vm - schemes: - - id: vm - http: false - passive: true - javaTypes: - - org.apache.camel.component.vm.VmComponent - camel-weather: - groupId: org.apache.camel - artifactId: camel-weather - schemes: - - id: weather - http: false - passive: false - javaTypes: - - org.apache.camel.component.weather.WeatherComponent - camel-web3j: - groupId: org.apache.camel - artifactId: camel-web3j - schemes: - - id: web3j - http: false - passive: false - javaTypes: - - org.apache.camel.component.web3j.Web3jComponent - camel-webhook: - groupId: org.apache.camel - artifactId: camel-webhook - schemes: - - id: webhook - http: true - passive: false - javaTypes: - - org.apache.camel.component.webhook.WebhookComponent - camel-websocket: - groupId: org.apache.camel - artifactId: camel-websocket - schemes: - - id: websocket - http: true - passive: false - javaTypes: - - org.apache.camel.component.websocket.WebsocketComponent - camel-websocket-jsr356: - groupId: org.apache.camel - artifactId: camel-websocket-jsr356 - schemes: - - id: websocket-jsr356 - http: false - passive: false - javaTypes: - - org.apache.camel.websocket.jsr356.JSR356WebSocketComponent - camel-wordpress: - groupId: org.apache.camel - artifactId: camel-wordpress - schemes: - - id: wordpress - http: false - passive: false - javaTypes: - - org.apache.camel.component.wordpress.WordpressComponent - camel-xchange: - groupId: org.apache.camel - artifactId: camel-xchange - schemes: - - id: xchange - http: false - passive: false - javaTypes: - - org.apache.camel.component.xchange.XChangeComponent - camel-xj: - groupId: org.apache.camel - artifactId: camel-xj - schemes: - - id: xj - http: false - passive: false - javaTypes: - - org.apache.camel.component.xj.XJComponent - camel-xmlsecurity: - groupId: org.apache.camel - artifactId: camel-xmlsecurity - schemes: - - id: xmlsecurity - http: false - passive: false - dataformats: - - secureXML - javaTypes: - - org.apache.camel.component.xmlsecurity.XmlSignatureComponent - - org.apache.camel.dataformat.xmlsecurity.XMLSecurityDataFormat - camel-xmpp: - groupId: org.apache.camel - artifactId: camel-xmpp - schemes: - - id: xmpp - http: false - passive: false - javaTypes: - - org.apache.camel.component.xmpp.XmppComponent - camel-xpath: - groupId: org.apache.camel - artifactId: camel-xpath - languages: - - xpath - javaTypes: - - org.apache.camel.language.xpath.XPathLanguage - camel-xslt: - groupId: org.apache.camel - artifactId: camel-xslt - schemes: - - id: xslt - http: false - passive: false - javaTypes: - - org.apache.camel.component.xslt.XsltComponent - camel-xslt-saxon: - groupId: org.apache.camel - artifactId: camel-xslt-saxon - schemes: - - id: xslt-saxon - http: false - passive: false - javaTypes: - - org.apache.camel.component.xslt.saxon.XsltSaxonComponent - camel-xstream: - groupId: org.apache.camel - artifactId: camel-xstream - dataformats: - - json-xstream - - xstream - javaTypes: - - org.apache.camel.dataformat.xstream.JsonDataFormat - - org.apache.camel.dataformat.xstream.XStreamDataFormat - camel-yammer: - groupId: org.apache.camel - artifactId: camel-yammer - schemes: - - id: yammer - http: false - passive: false - javaTypes: - - org.apache.camel.component.yammer.YammerComponent - camel-zendesk: - groupId: org.apache.camel - artifactId: camel-zendesk - schemes: - - id: zendesk - http: false - passive: false - javaTypes: - - org.apache.camel.component.zendesk.ZendeskComponent - camel-zip-deflater: - groupId: org.apache.camel - artifactId: camel-zip-deflater - dataformats: - - gzipdeflater - - zipdeflater - javaTypes: - - org.apache.camel.dataformat.deflater.GzipDeflaterDataFormat - - org.apache.camel.dataformat.deflater.ZipDeflaterDataFormat - camel-zipfile: - groupId: org.apache.camel - artifactId: camel-zipfile - dataformats: - - zipfile - javaTypes: - - org.apache.camel.dataformat.zipfile.ZipFileDataFormat - camel-zookeeper: - groupId: org.apache.camel - artifactId: camel-zookeeper - schemes: - - id: zookeeper - http: false - passive: false - javaTypes: - - org.apache.camel.component.zookeeper.ZooKeeperComponent - camel-zookeeper-master: - groupId: org.apache.camel - artifactId: camel-zookeeper-master - schemes: - - id: zookeeper-master - http: false - passive: false - javaTypes: - - org.apache.camel.component.zookeepermaster.MasterComponent diff --git a/deploy/camel-catalog-quarkus-1.0.0-M1-1.0.10.yaml b/deploy/camel-catalog-quarkus-1.0.0-M1-1.0.10.yaml deleted file mode 100644 index 00d8f5fc01..0000000000 --- a/deploy/camel-catalog-quarkus-1.0.0-M1-1.0.10.yaml +++ /dev/null @@ -1,616 +0,0 @@ -# --------------------------------------------------------------------------- -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# --------------------------------------------------------------------------- - -apiVersion: camel.apache.org/v1 -kind: CamelCatalog -metadata: - name: camel-catalog-quarkus-1.0.0-m1-1.0.10 - labels: - app: camel-k - camel.apache.org/catalog.version: 3.0.0 - camel.apache.org/catalog.loader.version: 3.0.0 - camel.apache.org/runtime.version: 1.0.10 - camel.apache.org/runtime.provider: quarkus -spec: - version: 3.0.0 - runtimeVersion: 1.0.10 - runtimeProvider: - quarkus: - camelQuarkusVersion: 1.0.0-M1 - quarkusVersion: 1.0.1.Final - artifacts: - camel-k-loader-groovy: - groupId: org.apache.camel.k - artifactId: camel-k-loader-groovy - dependencies: - - groupId: org.apache.camel - artifactId: camel-endpointdsl - - groupId: org.apache.camel - artifactId: camel-groovy - camel-k-loader-java: - groupId: org.apache.camel.k - artifactId: camel-k-loader-java - dependencies: - - groupId: org.apache.camel - artifactId: camel-endpointdsl - camel-k-loader-js: - groupId: org.apache.camel.k - artifactId: camel-k-loader-js - dependencies: - - groupId: org.apache.camel - artifactId: camel-endpointdsl - camel-k-loader-knative: - groupId: org.apache.camel.k - artifactId: camel-k-loader-knative - camel-k-loader-kotlin: - groupId: org.apache.camel.k - artifactId: camel-k-loader-kotlin - dependencies: - - groupId: org.apache.camel - artifactId: camel-endpointdsl - camel-k-loader-xml: - groupId: org.apache.camel.k - artifactId: camel-k-loader-xml - camel-k-runtime-health: - groupId: org.apache.camel.k - artifactId: camel-k-runtime-health - dependencies: - - groupId: org.apache.camel - artifactId: camel-servlet - - groupId: org.apache.camel.k - artifactId: camel-k-runtime-servlet - camel-k-runtime-knative: - groupId: org.apache.camel.k - artifactId: camel-k-runtime-knative - dependencies: - - groupId: org.apache.camel - artifactId: camel-cloud - - groupId: org.apache.camel.k - artifactId: camel-k-loader-yaml - - groupId: org.apache.camel.k - artifactId: camel-k-loader-knative - - groupId: org.apache.camel.k - artifactId: camel-knative-api - - groupId: org.apache.camel.k - artifactId: camel-knative - - groupId: org.apache.camel.k - artifactId: camel-knative-http - camel-k-runtime-main: - groupId: org.apache.camel.k - artifactId: camel-k-runtime-main - dependencies: - - groupId: org.apache.camel - artifactId: camel-core-engine - - groupId: org.apache.camel - artifactId: camel-main - camel-k-runtime-servlet: - groupId: org.apache.camel.k - artifactId: camel-k-runtime-servlet - dependencies: - - groupId: org.apache.camel - artifactId: camel-servlet - camel-k-runtime-webhook: - groupId: org.apache.camel.k - artifactId: camel-k-runtime-webhook - dependencies: - - groupId: org.apache.camel - artifactId: camel-webhook - camel-knative: - groupId: org.apache.camel.k - artifactId: camel-knative - schemes: - - id: knative - http: true - passive: false - dependencies: - - groupId: org.apache.camel - artifactId: camel-cloud - - groupId: org.apache.camel.k - artifactId: camel-knative-api - - groupId: org.apache.camel.k - artifactId: camel-knative-http - camel-quarkus-aws-ecs: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-aws-ecs - schemes: - - id: aws-ecs - http: false - passive: false - javaTypes: - - org.apache.camel.component.aws.ecs.ECSComponent - camel-quarkus-aws-eks: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-aws-eks - schemes: - - id: aws-eks - http: false - passive: false - javaTypes: - - org.apache.camel.component.aws.eks.EKSComponent - camel-quarkus-aws-kms: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-aws-kms - schemes: - - id: aws-kms - http: false - passive: false - javaTypes: - - org.apache.camel.component.aws.kms.KMSComponent - camel-quarkus-aws-s3: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-aws-s3 - schemes: - - id: aws-s3 - http: false - passive: false - javaTypes: - - org.apache.camel.component.aws.s3.S3Component - camel-quarkus-aws-sns: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-aws-sns - schemes: - - id: aws-sns - http: false - passive: false - javaTypes: - - org.apache.camel.component.aws.sns.SnsComponent - camel-quarkus-aws-sqs: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-aws-sqs - schemes: - - id: aws-sqs - http: false - passive: false - javaTypes: - - org.apache.camel.component.aws.sqs.SqsComponent - camel-quarkus-base64: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-base64 - dataformats: - - base64 - javaTypes: - - org.apache.camel.dataformat.base64.Base64DataFormat - camel-quarkus-bean: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-bean - schemes: - - id: bean - http: false - passive: true - - id: class - http: false - passive: true - languages: - - bean - javaTypes: - - org.apache.camel.component.bean.BeanComponent - - org.apache.camel.component.beanclass.ClassComponent - - org.apache.camel.language.bean.BeanLanguage - camel-quarkus-bean-validator: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-bean-validator - schemes: - - id: bean-validator - http: false - passive: false - javaTypes: - - org.apache.camel.component.bean.validator.BeanValidatorComponent - camel-quarkus-controlbus: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-controlbus - schemes: - - id: controlbus - http: false - passive: true - javaTypes: - - org.apache.camel.component.controlbus.ControlBusComponent - camel-quarkus-core: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-core - languages: - - constant - - exchangeProperty - - file - - header - - ref - - simple - - tokenize - javaTypes: - - org.apache.camel.language.constant.ConstantLanguage - - org.apache.camel.language.property.ExchangePropertyLanguage - - org.apache.camel.language.simple.FileLanguage - - org.apache.camel.language.header.HeaderLanguage - - org.apache.camel.language.ref.RefLanguage - - org.apache.camel.language.simple.SimpleLanguage - - org.apache.camel.language.tokenizer.TokenizeLanguage - camel-quarkus-csv: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-csv - dataformats: - - csv - javaTypes: - - org.apache.camel.dataformat.csv.CsvDataFormat - camel-quarkus-dataformat: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-dataformat - schemes: - - id: dataformat - http: false - passive: true - javaTypes: - - org.apache.camel.component.dataformat.DataFormatComponent - camel-quarkus-direct: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-direct - schemes: - - id: direct - http: false - passive: true - javaTypes: - - org.apache.camel.component.direct.DirectComponent - camel-quarkus-dozer: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-dozer - schemes: - - id: dozer - http: false - passive: false - javaTypes: - - org.apache.camel.component.dozer.DozerComponent - camel-quarkus-exec: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-exec - schemes: - - id: exec - http: false - passive: false - javaTypes: - - org.apache.camel.component.exec.ExecComponent - camel-quarkus-fhir: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-fhir - schemes: - - id: fhir - http: false - passive: false - dataformats: - - fhirJson - - fhirXml - javaTypes: - - org.apache.camel.component.fhir.FhirComponent - - org.apache.camel.component.fhir.FhirJsonDataFormat - - org.apache.camel.component.fhir.FhirXmlDataFormat - camel-quarkus-file: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-file - schemes: - - id: file - http: false - passive: false - javaTypes: - - org.apache.camel.component.file.FileComponent - camel-quarkus-ftp: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-ftp - schemes: - - id: ftp - http: false - passive: false - - id: ftps - http: false - passive: false - - id: sftp - http: false - passive: false - javaTypes: - - org.apache.camel.component.file.remote.FtpComponent - - org.apache.camel.component.file.remote.FtpsComponent - - org.apache.camel.component.file.remote.SftpComponent - camel-quarkus-infinispan: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-infinispan - schemes: - - id: infinispan - http: false - passive: false - javaTypes: - - org.apache.camel.component.infinispan.InfinispanComponent - camel-quarkus-jackson: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-jackson - dataformats: - - json-jackson - javaTypes: - - org.apache.camel.component.jackson.JacksonDataFormat - camel-quarkus-jdbc: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-jdbc - schemes: - - id: jdbc - http: false - passive: false - javaTypes: - - org.apache.camel.component.jdbc.JdbcComponent - camel-quarkus-kafka: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-kafka - schemes: - - id: kafka - http: false - passive: false - javaTypes: - - org.apache.camel.component.kafka.KafkaComponent - camel-quarkus-log: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-log - schemes: - - id: log - http: false - passive: true - javaTypes: - - org.apache.camel.component.log.LogComponent - camel-quarkus-mail: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-mail - schemes: - - id: imap - http: false - passive: false - - id: imaps - http: false - passive: false - - id: pop3 - http: false - passive: false - - id: pop3s - http: false - passive: false - - id: smtp - http: false - passive: false - - id: smtps - http: false - passive: false - dataformats: - - mime-multipart - javaTypes: - - org.apache.camel.component.mail.MailComponent - - org.apache.camel.dataformat.mime.multipart.MimeMultipartDataFormat - camel-quarkus-microprofile-metrics: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-microprofile-metrics - schemes: - - id: microprofile-metrics - http: false - passive: false - javaTypes: - - org.apache.camel.component.microprofile.metrics.MicroProfileMetricsComponent - camel-quarkus-mongodb: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-mongodb - schemes: - - id: mongodb - http: false - passive: false - javaTypes: - - org.apache.camel.component.mongodb.MongoDbComponent - camel-quarkus-netty: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-netty - schemes: - - id: netty - http: false - passive: false - javaTypes: - - org.apache.camel.component.netty.NettyComponent - camel-quarkus-netty-http: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-netty-http - schemes: - - id: netty-http - http: true - passive: false - javaTypes: - - org.apache.camel.component.netty.http.NettyHttpComponent - camel-quarkus-paho: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-paho - schemes: - - id: paho - http: false - passive: false - javaTypes: - - org.apache.camel.component.paho.PahoComponent - camel-quarkus-pdf: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-pdf - schemes: - - id: pdf - http: false - passive: false - javaTypes: - - org.apache.camel.component.pdf.PdfComponent - camel-quarkus-platform-http: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-platform-http - schemes: - - id: platform-http - http: false - passive: false - javaTypes: - - org.apache.camel.component.platform.http.PlatformHttpComponent - camel-quarkus-rest: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-rest - schemes: - - id: rest - http: true - passive: false - - id: rest-api - http: false - passive: false - javaTypes: - - org.apache.camel.component.rest.RestComponent - - org.apache.camel.component.rest.RestApiComponent - camel-quarkus-salesforce: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-salesforce - schemes: - - id: salesforce - http: false - passive: false - javaTypes: - - org.apache.camel.component.salesforce.SalesforceComponent - camel-quarkus-scheduler: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-scheduler - schemes: - - id: scheduler - http: false - passive: false - javaTypes: - - org.apache.camel.component.scheduler.SchedulerComponent - camel-quarkus-seda: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-seda - schemes: - - id: seda - http: false - passive: true - javaTypes: - - org.apache.camel.component.seda.SedaComponent - camel-quarkus-servlet: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-servlet - schemes: - - id: servlet - http: true - passive: false - javaTypes: - - org.apache.camel.component.servlet.ServletComponent - camel-quarkus-sjms: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-sjms - schemes: - - id: sjms - http: false - passive: false - - id: sjms-batch - http: false - passive: false - javaTypes: - - org.apache.camel.component.sjms.SjmsComponent - - org.apache.camel.component.sjms.batch.SjmsBatchComponent - camel-quarkus-sjms2: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-sjms2 - schemes: - - id: sjms2 - http: false - passive: false - javaTypes: - - org.apache.camel.component.sjms2.Sjms2Component - camel-quarkus-slack: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-slack - schemes: - - id: slack - http: false - passive: false - javaTypes: - - org.apache.camel.component.slack.SlackComponent - camel-quarkus-snakeyaml: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-snakeyaml - dataformats: - - yaml-snakeyaml - javaTypes: - - org.apache.camel.component.snakeyaml.SnakeYAMLDataFormat - camel-quarkus-tagsoup: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-tagsoup - dataformats: - - tidyMarkup - javaTypes: - - org.apache.camel.dataformat.tagsoup.TidyMarkupDataFormat - camel-quarkus-tarfile: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-tarfile - dataformats: - - tarfile - javaTypes: - - org.apache.camel.dataformat.tarfile.TarFileDataFormat - camel-quarkus-timer: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-timer - schemes: - - id: timer - http: false - passive: false - javaTypes: - - org.apache.camel.component.timer.TimerComponent - camel-quarkus-twitter: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-twitter - schemes: - - id: twitter-directmessage - http: false - passive: false - - id: twitter-search - http: false - passive: false - - id: twitter-timeline - http: false - passive: false - javaTypes: - - org.apache.camel.component.twitter.directmessage.TwitterDirectMessageComponent - - org.apache.camel.component.twitter.search.TwitterSearchComponent - - org.apache.camel.component.twitter.timeline.TwitterTimelineComponent - camel-quarkus-validator: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-validator - schemes: - - id: validator - http: false - passive: true - javaTypes: - - org.apache.camel.component.validator.ValidatorComponent - camel-quarkus-vm: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-vm - schemes: - - id: vm - http: false - passive: true - javaTypes: - - org.apache.camel.component.vm.VmComponent - camel-quarkus-xslt: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-xslt - schemes: - - id: xslt - http: false - passive: false - javaTypes: - - org.apache.camel.component.xslt.XsltComponent - camel-quarkus-zipfile: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-zipfile - dataformats: - - zipfile - javaTypes: - - org.apache.camel.dataformat.zipfile.ZipFileDataFormat diff --git a/deploy/camel-catalog-quarkus-1.0.0-M1-1.0.9.yaml b/deploy/camel-catalog-quarkus-1.0.0-M1-1.0.9.yaml deleted file mode 100644 index 4ffa04fbff..0000000000 --- a/deploy/camel-catalog-quarkus-1.0.0-M1-1.0.9.yaml +++ /dev/null @@ -1,616 +0,0 @@ -# --------------------------------------------------------------------------- -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# --------------------------------------------------------------------------- - -apiVersion: camel.apache.org/v1 -kind: CamelCatalog -metadata: - name: camel-catalog-quarkus-1.0.0-m1-1.0.9 - labels: - app: camel-k - camel.apache.org/catalog.version: 3.0.0 - camel.apache.org/catalog.loader.version: 3.0.0 - camel.apache.org/runtime.version: 1.0.9 - camel.apache.org/runtime.provider: quarkus -spec: - version: 3.0.0 - runtimeVersion: 1.0.9 - runtimeProvider: - quarkus: - camelQuarkusVersion: 1.0.0-M1 - quarkusVersion: 1.0.1.Final - artifacts: - camel-k-loader-groovy: - groupId: org.apache.camel.k - artifactId: camel-k-loader-groovy - dependencies: - - groupId: org.apache.camel - artifactId: camel-endpointdsl - - groupId: org.apache.camel - artifactId: camel-groovy - camel-k-loader-java: - groupId: org.apache.camel.k - artifactId: camel-k-loader-java - dependencies: - - groupId: org.apache.camel - artifactId: camel-endpointdsl - camel-k-loader-js: - groupId: org.apache.camel.k - artifactId: camel-k-loader-js - dependencies: - - groupId: org.apache.camel - artifactId: camel-endpointdsl - camel-k-loader-knative: - groupId: org.apache.camel.k - artifactId: camel-k-loader-knative - camel-k-loader-kotlin: - groupId: org.apache.camel.k - artifactId: camel-k-loader-kotlin - dependencies: - - groupId: org.apache.camel - artifactId: camel-endpointdsl - camel-k-loader-xml: - groupId: org.apache.camel.k - artifactId: camel-k-loader-xml - camel-k-runtime-health: - groupId: org.apache.camel.k - artifactId: camel-k-runtime-health - dependencies: - - groupId: org.apache.camel - artifactId: camel-servlet - - groupId: org.apache.camel.k - artifactId: camel-k-runtime-servlet - camel-k-runtime-knative: - groupId: org.apache.camel.k - artifactId: camel-k-runtime-knative - dependencies: - - groupId: org.apache.camel - artifactId: camel-cloud - - groupId: org.apache.camel.k - artifactId: camel-k-loader-yaml - - groupId: org.apache.camel.k - artifactId: camel-k-loader-knative - - groupId: org.apache.camel.k - artifactId: camel-knative-api - - groupId: org.apache.camel.k - artifactId: camel-knative - - groupId: org.apache.camel.k - artifactId: camel-knative-http - camel-k-runtime-main: - groupId: org.apache.camel.k - artifactId: camel-k-runtime-main - dependencies: - - groupId: org.apache.camel - artifactId: camel-core-engine - - groupId: org.apache.camel - artifactId: camel-main - camel-k-runtime-servlet: - groupId: org.apache.camel.k - artifactId: camel-k-runtime-servlet - dependencies: - - groupId: org.apache.camel - artifactId: camel-servlet - camel-k-runtime-webhook: - groupId: org.apache.camel.k - artifactId: camel-k-runtime-webhook - dependencies: - - groupId: org.apache.camel - artifactId: camel-webhook - camel-knative: - groupId: org.apache.camel.k - artifactId: camel-knative - schemes: - - id: knative - http: true - passive: false - dependencies: - - groupId: org.apache.camel - artifactId: camel-cloud - - groupId: org.apache.camel.k - artifactId: camel-knative-api - - groupId: org.apache.camel.k - artifactId: camel-knative-http - camel-quarkus-aws-ecs: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-aws-ecs - schemes: - - id: aws-ecs - http: false - passive: false - javaTypes: - - org.apache.camel.component.aws.ecs.ECSComponent - camel-quarkus-aws-eks: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-aws-eks - schemes: - - id: aws-eks - http: false - passive: false - javaTypes: - - org.apache.camel.component.aws.eks.EKSComponent - camel-quarkus-aws-kms: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-aws-kms - schemes: - - id: aws-kms - http: false - passive: false - javaTypes: - - org.apache.camel.component.aws.kms.KMSComponent - camel-quarkus-aws-s3: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-aws-s3 - schemes: - - id: aws-s3 - http: false - passive: false - javaTypes: - - org.apache.camel.component.aws.s3.S3Component - camel-quarkus-aws-sns: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-aws-sns - schemes: - - id: aws-sns - http: false - passive: false - javaTypes: - - org.apache.camel.component.aws.sns.SnsComponent - camel-quarkus-aws-sqs: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-aws-sqs - schemes: - - id: aws-sqs - http: false - passive: false - javaTypes: - - org.apache.camel.component.aws.sqs.SqsComponent - camel-quarkus-base64: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-base64 - dataformats: - - base64 - javaTypes: - - org.apache.camel.dataformat.base64.Base64DataFormat - camel-quarkus-bean: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-bean - schemes: - - id: bean - http: false - passive: true - - id: class - http: false - passive: true - languages: - - bean - javaTypes: - - org.apache.camel.component.bean.BeanComponent - - org.apache.camel.component.beanclass.ClassComponent - - org.apache.camel.language.bean.BeanLanguage - camel-quarkus-bean-validator: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-bean-validator - schemes: - - id: bean-validator - http: false - passive: false - javaTypes: - - org.apache.camel.component.bean.validator.BeanValidatorComponent - camel-quarkus-controlbus: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-controlbus - schemes: - - id: controlbus - http: false - passive: true - javaTypes: - - org.apache.camel.component.controlbus.ControlBusComponent - camel-quarkus-core: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-core - languages: - - constant - - exchangeProperty - - file - - header - - ref - - simple - - tokenize - javaTypes: - - org.apache.camel.language.constant.ConstantLanguage - - org.apache.camel.language.property.ExchangePropertyLanguage - - org.apache.camel.language.simple.FileLanguage - - org.apache.camel.language.header.HeaderLanguage - - org.apache.camel.language.ref.RefLanguage - - org.apache.camel.language.simple.SimpleLanguage - - org.apache.camel.language.tokenizer.TokenizeLanguage - camel-quarkus-csv: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-csv - dataformats: - - csv - javaTypes: - - org.apache.camel.dataformat.csv.CsvDataFormat - camel-quarkus-dataformat: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-dataformat - schemes: - - id: dataformat - http: false - passive: true - javaTypes: - - org.apache.camel.component.dataformat.DataFormatComponent - camel-quarkus-direct: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-direct - schemes: - - id: direct - http: false - passive: true - javaTypes: - - org.apache.camel.component.direct.DirectComponent - camel-quarkus-dozer: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-dozer - schemes: - - id: dozer - http: false - passive: false - javaTypes: - - org.apache.camel.component.dozer.DozerComponent - camel-quarkus-exec: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-exec - schemes: - - id: exec - http: false - passive: false - javaTypes: - - org.apache.camel.component.exec.ExecComponent - camel-quarkus-fhir: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-fhir - schemes: - - id: fhir - http: false - passive: false - dataformats: - - fhirJson - - fhirXml - javaTypes: - - org.apache.camel.component.fhir.FhirComponent - - org.apache.camel.component.fhir.FhirJsonDataFormat - - org.apache.camel.component.fhir.FhirXmlDataFormat - camel-quarkus-file: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-file - schemes: - - id: file - http: false - passive: false - javaTypes: - - org.apache.camel.component.file.FileComponent - camel-quarkus-ftp: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-ftp - schemes: - - id: ftp - http: false - passive: false - - id: ftps - http: false - passive: false - - id: sftp - http: false - passive: false - javaTypes: - - org.apache.camel.component.file.remote.FtpComponent - - org.apache.camel.component.file.remote.FtpsComponent - - org.apache.camel.component.file.remote.SftpComponent - camel-quarkus-infinispan: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-infinispan - schemes: - - id: infinispan - http: false - passive: false - javaTypes: - - org.apache.camel.component.infinispan.InfinispanComponent - camel-quarkus-jackson: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-jackson - dataformats: - - json-jackson - javaTypes: - - org.apache.camel.component.jackson.JacksonDataFormat - camel-quarkus-jdbc: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-jdbc - schemes: - - id: jdbc - http: false - passive: false - javaTypes: - - org.apache.camel.component.jdbc.JdbcComponent - camel-quarkus-kafka: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-kafka - schemes: - - id: kafka - http: false - passive: false - javaTypes: - - org.apache.camel.component.kafka.KafkaComponent - camel-quarkus-log: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-log - schemes: - - id: log - http: false - passive: true - javaTypes: - - org.apache.camel.component.log.LogComponent - camel-quarkus-mail: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-mail - schemes: - - id: imap - http: false - passive: false - - id: imaps - http: false - passive: false - - id: pop3 - http: false - passive: false - - id: pop3s - http: false - passive: false - - id: smtp - http: false - passive: false - - id: smtps - http: false - passive: false - dataformats: - - mime-multipart - javaTypes: - - org.apache.camel.component.mail.MailComponent - - org.apache.camel.dataformat.mime.multipart.MimeMultipartDataFormat - camel-quarkus-microprofile-metrics: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-microprofile-metrics - schemes: - - id: microprofile-metrics - http: false - passive: false - javaTypes: - - org.apache.camel.component.microprofile.metrics.MicroProfileMetricsComponent - camel-quarkus-mongodb: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-mongodb - schemes: - - id: mongodb - http: false - passive: false - javaTypes: - - org.apache.camel.component.mongodb.MongoDbComponent - camel-quarkus-netty: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-netty - schemes: - - id: netty - http: false - passive: false - javaTypes: - - org.apache.camel.component.netty.NettyComponent - camel-quarkus-netty-http: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-netty-http - schemes: - - id: netty-http - http: true - passive: false - javaTypes: - - org.apache.camel.component.netty.http.NettyHttpComponent - camel-quarkus-paho: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-paho - schemes: - - id: paho - http: false - passive: false - javaTypes: - - org.apache.camel.component.paho.PahoComponent - camel-quarkus-pdf: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-pdf - schemes: - - id: pdf - http: false - passive: false - javaTypes: - - org.apache.camel.component.pdf.PdfComponent - camel-quarkus-platform-http: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-platform-http - schemes: - - id: platform-http - http: false - passive: false - javaTypes: - - org.apache.camel.component.platform.http.PlatformHttpComponent - camel-quarkus-rest: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-rest - schemes: - - id: rest - http: true - passive: false - - id: rest-api - http: false - passive: false - javaTypes: - - org.apache.camel.component.rest.RestComponent - - org.apache.camel.component.rest.RestApiComponent - camel-quarkus-salesforce: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-salesforce - schemes: - - id: salesforce - http: false - passive: false - javaTypes: - - org.apache.camel.component.salesforce.SalesforceComponent - camel-quarkus-scheduler: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-scheduler - schemes: - - id: scheduler - http: false - passive: false - javaTypes: - - org.apache.camel.component.scheduler.SchedulerComponent - camel-quarkus-seda: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-seda - schemes: - - id: seda - http: false - passive: true - javaTypes: - - org.apache.camel.component.seda.SedaComponent - camel-quarkus-servlet: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-servlet - schemes: - - id: servlet - http: true - passive: false - javaTypes: - - org.apache.camel.component.servlet.ServletComponent - camel-quarkus-sjms: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-sjms - schemes: - - id: sjms - http: false - passive: false - - id: sjms-batch - http: false - passive: false - javaTypes: - - org.apache.camel.component.sjms.SjmsComponent - - org.apache.camel.component.sjms.batch.SjmsBatchComponent - camel-quarkus-sjms2: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-sjms2 - schemes: - - id: sjms2 - http: false - passive: false - javaTypes: - - org.apache.camel.component.sjms2.Sjms2Component - camel-quarkus-slack: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-slack - schemes: - - id: slack - http: false - passive: false - javaTypes: - - org.apache.camel.component.slack.SlackComponent - camel-quarkus-snakeyaml: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-snakeyaml - dataformats: - - yaml-snakeyaml - javaTypes: - - org.apache.camel.component.snakeyaml.SnakeYAMLDataFormat - camel-quarkus-tagsoup: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-tagsoup - dataformats: - - tidyMarkup - javaTypes: - - org.apache.camel.dataformat.tagsoup.TidyMarkupDataFormat - camel-quarkus-tarfile: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-tarfile - dataformats: - - tarfile - javaTypes: - - org.apache.camel.dataformat.tarfile.TarFileDataFormat - camel-quarkus-timer: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-timer - schemes: - - id: timer - http: false - passive: false - javaTypes: - - org.apache.camel.component.timer.TimerComponent - camel-quarkus-twitter: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-twitter - schemes: - - id: twitter-directmessage - http: false - passive: false - - id: twitter-search - http: false - passive: false - - id: twitter-timeline - http: false - passive: false - javaTypes: - - org.apache.camel.component.twitter.directmessage.TwitterDirectMessageComponent - - org.apache.camel.component.twitter.search.TwitterSearchComponent - - org.apache.camel.component.twitter.timeline.TwitterTimelineComponent - camel-quarkus-validator: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-validator - schemes: - - id: validator - http: false - passive: true - javaTypes: - - org.apache.camel.component.validator.ValidatorComponent - camel-quarkus-vm: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-vm - schemes: - - id: vm - http: false - passive: true - javaTypes: - - org.apache.camel.component.vm.VmComponent - camel-quarkus-xslt: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-xslt - schemes: - - id: xslt - http: false - passive: false - javaTypes: - - org.apache.camel.component.xslt.XsltComponent - camel-quarkus-zipfile: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-zipfile - dataformats: - - zipfile - javaTypes: - - org.apache.camel.dataformat.zipfile.ZipFileDataFormat diff --git a/deploy/resources.go b/deploy/resources.go index fc6f5affc6..5d665b33ec 100644 --- a/deploy/resources.go +++ b/deploy/resources.go @@ -66,40 +66,19 @@ var assets = func() http.FileSystem { compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x53\x3d\x6f\xdb\x30\x14\xdc\xf9\x2b\x0e\xd6\x92\x00\xfe\x68\x3b\xba\x93\x9a\xd8\xa8\xd0\xc0\x06\x22\xa7\x41\xc6\x67\xf1\x59\x7a\x08\x45\xaa\x24\x15\xc5\xff\xbe\xa0\x6c\x37\x09\xba\x86\x9b\xa0\xd3\x7d\xf0\x4e\x19\x66\x9f\x77\x54\x86\x3b\xa9\xd8\x06\xd6\x88\x0e\xb1\x61\xe4\x1d\x55\x0d\xa3\x74\x87\x38\x90\x67\xac\x5d\x6f\x35\x45\x71\x16\x57\x79\xb9\xbe\x46\x6f\x35\x7b\x38\xcb\x70\x1e\xad\xf3\xac\x32\x54\xce\x46\x2f\xfb\x3e\x3a\x0f\x73\x22\x04\xd5\x9e\xb9\x65\x1b\xc3\x1c\x28\x99\x47\xf6\xcd\x76\x57\xdc\xac\x70\x10\xc3\xd0\x12\x4e\x1f\xb1\xc6\x20\xb1\x51\x19\x62\x23\x01\x83\xf3\xcf\x38\x38\x0f\xd2\x5a\x92\x30\x19\x88\x3d\x38\xdf\x9e\x6c\x78\xae\xc9\x6b\xb1\x35\x2a\xd7\x1d\xbd\xd4\x4d\x84\x1b\x2c\xfb\xd0\x48\x37\x57\x19\x76\x29\x46\xb9\xbe\x38\x09\x27\xda\x51\x33\x3a\x3c\xb9\xfe\x9c\xe1\x5d\xdc\xf3\x2d\x4c\xf1\x9b\x7d\x48\x22\xdf\xe6\x5f\x54\x86\xab\x04\x99\x9c\x5f\x4e\xae\xbf\xe3\xe8\x7a\xb4\x74\x84\x75\x11\x7d\xe0\x77\xcc\xfc\x5a\x71\x17\x21\x16\x95\x6b\x3b\x23\x64\x2b\x7e\x8b\xf5\x4f\x61\x8e\xd1\x40\xe2\x70\xfb\x48\x62\x41\x63\x0c\xb8\xc3\x7b\x18\x28\xaa\x4c\x65\x18\x4f\x13\x63\xb7\x5c\x2c\x86\x61\x98\xd3\x68\x77\xee\x7c\xbd\xb8\xa4\x5b\xdc\x15\x37\xab\x4d\xb9\x9a\x8d\x96\x55\x86\x07\x6b\x38\x04\x78\xfe\xd3\x8b\x67\x8d\xfd\x11\xd4\x75\x46\x2a\xda\x1b\x86\xa1\x21\x15\x37\xb6\x33\x96\x2e\x16\x83\x97\x28\xb6\x9e\x22\x9c\x5b\x57\xd9\x87\x76\xde\xae\xeb\x62\x4f\xc2\x07\x80\xb3\x20\x8b\x49\x5e\xa2\x28\x27\xf8\x91\x97\x45\x39\x55\x19\x1e\x8b\xdd\xcf\xed\xc3\x0e\x8f\xf9\xfd\x7d\xbe\xd9\x15\xab\x12\xdb\x7b\xdc\x6c\x37\xb7\xc5\xae\xd8\x6e\x4a\x6c\xd7\xc8\x37\x4f\xf8\x55\x6c\x6e\xa7\x60\x89\x0d\x7b\xf0\x6b\xe7\x93\x7f\xe7\x21\xe9\x22\x59\xa7\x4e\x2f\x03\xba\x18\x48\xfb\x48\xcf\xa1\xe3\x4a\x0e\x52\xc1\x90\xad\x7b\xaa\x19\xb5\x7b\x61\x6f\xd3\x3c\x3a\xf6\xad\x84\x54\x67\x00\x59\xad\x32\x18\x69\x25\x8e\x2b\x0a\xff\x87\x4a\x32\x9f\xf9\x6f\x29\xea\xe4\x3c\xa7\x25\x5e\xbe\xaa\x67\xb1\x7a\x89\x92\xfd\x8b\x54\x9c\x57\x95\xeb\x6d\x54\x2d\x47\xd2\x14\x69\xa9\x00\x4b\x2d\x2f\x51\x51\xcb\x66\xf6\x3c\xdb\xf7\x62\x34\x7b\x05\x18\xda\xb3\x09\x09\x81\xd4\xe4\x12\x93\x33\x66\xa2\xfe\x06\x00\x00\xff\xff\x4e\x4d\xa1\x73\x0e\x04\x00\x00"), }, - "/camel-catalog-3.0.0-1.0.10.yaml": &vfsgenÛ°CompressedFileInfo{ - name: "camel-catalog-3.0.0-1.0.10.yaml", + "/camel-catalog-1.0.11-SNAPSHOT-main.yaml": &vfsgenÛ°CompressedFileInfo{ + name: "camel-catalog-1.0.11-SNAPSHOT-main.yaml", modTime: time.Time{}, - uncompressedSize: 81680, + uncompressedSize: 80804, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x7d\x4b\x77\xdb\x38\xb6\xee\x3c\xbf\x82\xab\x33\x39\x67\xdd\x16\xba\xaa\x52\xa7\xea\x76\xdd\x91\x2d\xc7\x89\x1d\xdb\x71\x59\xee\x24\xdd\x93\x5a\x10\x09\x51\xb0\x49\x82\x06\xa0\x87\xfd\xeb\xef\xc2\x83\x4f\x41\x90\xc8\x6d\x78\x1d\x0f\xcc\x07\xf6\xfe\x36\xbe\x0d\x10\xc2\x1b\xef\xa3\xc9\xeb\xfd\xbd\x7b\x1f\x5d\xd1\x98\x14\x82\x24\x91\x64\x91\x5c\x92\xe8\xa4\xc4\xf1\x92\x44\x33\xb6\x90\x1b\xcc\x49\x74\xce\x56\x45\x82\x25\x65\x45\xf4\x5f\x27\xb3\xf3\xff\x8e\x56\x45\x42\x78\xc4\x0a\x12\x31\x1e\xe5\x8c\x93\x77\xef\xa3\x98\x15\x92\xd3\xf9\x4a\x32\x1e\x65\x06\x30\xc2\x29\x27\x24\x27\x85\x14\x28\x8a\x66\x84\x68\xf4\x9b\xaf\xf7\x17\xd3\x8f\xd1\x82\x66\x24\x4a\xa8\x30\x4a\x24\x89\x36\x54\x2e\xdf\xbd\x8f\xe4\x92\x8a\x68\xc3\xf8\x63\xb4\x60\x3c\xc2\x49\x42\x95\x61\x9c\x45\xb4\x58\x30\x9e\x9b\x68\x70\x92\x62\x9e\xd0\x22\x8d\x62\x56\x3e\x73\x9a\x2e\x65\xc4\x36\x05\xe1\x62\x49\x4b\xf4\xee\x7d\x74\xaf\x68\xcc\xce\xab\x98\x08\x03\xab\x6d\x4a\x16\xfd\x9b\xad\x2c\x87\x16\x5d\xeb\x85\xbf\x47\xdf\x08\x17\xca\xc8\x2f\xe8\xa7\x77\xef\xa3\xff\x52\x22\x7f\xb3\x81\x7f\xfb\xef\xff\x17\x3d\xb3\x55\x94\xe3\xe7\xa8\x60\x32\x5a\x09\xd2\x42\x26\xdb\x98\x94\x32\xa2\x45\x14\xb3\xbc\xcc\x28\x2e\x62\xd2\xd0\xaa\x2d\xa0\x48\x47\x40\x61\xb0\xb9\xc4\xb4\x88\xb0\xa6\x11\xb1\x45\x5b\x2c\xc2\xf2\xdd\xfb\x77\xef\x23\xfd\xb7\x94\xb2\xfc\xe3\x1f\xff\xd8\x6c\x36\x08\xeb\xe8\x22\xc6\xd3\x7f\x54\xec\xfe\x71\x75\x31\xfd\x78\x33\xfb\x38\xd1\x51\x7e\xf7\x3e\xfa\x57\x91\x11\x21\x22\x4e\x9e\x56\x94\x93\x24\x9a\x3f\x47\xb8\x2c\x33\x1a\xe3\x79\x46\xa2\x0c\x6f\x54\xc2\xe9\xd4\xd1\x89\x4e\x8b\x68\xc3\xa9\xa4\x45\xfa\xf7\x48\xd8\x54\x7f\xf7\xbe\x93\x3a\x8d\xbb\xaa\xe8\x51\xd1\x11\x60\x45\x84\x8b\xe8\x6f\x27\xb3\xe8\x62\xf6\xb7\xe8\xf4\x64\x76\x31\xfb\xfb\xbb\xf7\xd1\xf7\x8b\xfb\xcf\x5f\xff\x75\x1f\x7d\x3f\xb9\xbb\x3b\xb9\xb9\xbf\xf8\x38\x8b\xbe\xde\x45\xd3\xaf\x37\x67\x17\xf7\x17\x5f\x6f\x66\xd1\xd7\xf3\xe8\xe4\xe6\xdf\xd1\x97\x8b\x9b\xb3\xbf\x47\x84\xca\x25\xe1\x11\xd9\x96\x5c\xc5\x9f\xf1\x88\x2a\x47\x92\x44\xa5\x69\x95\x81\xaa\x08\xa8\xfc\xa1\x9e\x45\x49\x62\xba\xa0\x71\x94\xe1\x22\x5d\xe1\x94\x44\x29\x5b\x13\x5e\xa8\xec\x51\x12\x9e\x53\xa1\x92\x53\x44\xb8\x48\xde\xbd\x8f\x32\x9a\x53\xa9\x73\x91\xd8\x25\xa5\xcc\xbc\xe6\xb7\xf5\x0e\x97\xd4\x66\xa7\x3f\xa2\x18\xe7\x24\x6b\x27\xdf\xfa\xe7\x77\x8f\xb4\x48\xfe\x88\xa6\x2a\x64\x8a\x25\xce\x58\xfa\x2e\x27\x12\x27\x58\xe2\x3f\xde\x45\x51\x81\x73\x62\x15\x27\xb1\x09\x9f\x7c\x40\x3f\xa1\x9f\x26\x3f\xa3\x9f\xd0\xcf\x3f\xbd\x8b\xa2\x0c\xcf\x49\x26\x94\x70\xa4\xd2\xb8\x92\x7e\xd4\x2f\x76\x4c\x5a\x10\xb4\xae\x22\xa5\xd1\xfc\xb2\x19\xc3\x09\xe1\x47\xa9\xf0\x55\x21\x69\x4e\x1a\x59\x1b\x4d\x95\x44\x2a\x8a\x3b\x18\x56\xe1\x5b\x4f\x3e\x8a\x30\x97\x74\x81\x63\x69\x99\x19\x52\x38\x96\x74\x4d\xf2\x27\xf3\x2e\x8a\x52\xce\x56\xe5\x45\xf2\x47\xc4\x78\x5a\x45\x43\x4b\xda\xf0\x0a\x44\x89\x74\x11\xac\x80\x88\x97\x24\x27\xa2\xc2\x9b\x44\x34\xf9\x23\xea\xc9\xd8\x8f\x2f\x5a\xe0\x4c\x90\xfa\x5d\x89\x85\xa0\x6b\xd2\x7d\xfd\x80\xd7\xf8\xfe\xb9\x6c\x03\xf6\x63\x86\x54\xd1\xc0\x0a\x52\x48\x54\xd9\x41\x27\xfa\xe6\xfa\xcf\x69\x15\xd4\xa6\xbc\x8c\x01\x6c\x97\xb1\x97\x68\x1d\x5c\x71\x94\x7c\xf5\xba\x14\x97\x31\x3a\x59\xc6\x7b\x88\x4d\x36\x02\xc4\x6d\xb2\x11\x07\xe8\x35\x12\xc7\x33\x6c\x2b\xf7\xb5\x5f\x3f\x0f\x2c\x63\xb4\x11\xe8\xbb\x70\xba\x28\x7f\x2a\x01\x0e\xca\x9f\x4a\xaf\x7b\x9a\xf0\x70\xf4\xf2\xa7\x12\x9d\x5c\xff\x79\xeb\xa4\x57\x3c\xff\xf2\x01\xc0\x4f\xa9\xdb\x50\x55\x5e\x9a\xda\x41\x2b\x5e\x6d\x81\x63\xa2\xdd\x80\x20\xad\x8a\x4e\xd4\xff\x33\x2c\xf1\xb9\x7e\xdb\x8e\x7a\x59\x40\xb2\x6e\x59\xf8\x33\x6e\x13\x1e\x2e\x65\xca\x42\xa0\x93\xb2\x70\x67\x3c\xf1\x0b\x80\x9d\xf8\xc5\x4b\xae\x0e\x0e\xc7\x4d\xfc\x82\x4e\x66\xbf\xb8\x99\x15\x3f\x43\xa8\x15\x3f\x7b\x73\x5c\x13\x3e\x34\xc3\x89\xe2\x67\x74\x32\xbb\xf9\xd9\x9d\xdd\x84\x24\x9c\x8a\x47\x48\xcc\x0d\x82\x3f\x65\x3a\x32\x01\x93\xc7\xd8\x41\x27\xf6\xc6\x99\x50\x32\x67\x90\x4f\x4c\xa9\x7b\xc9\xb6\x04\xc2\x31\x55\x46\xd0\x89\xfa\xbf\x97\x63\xb9\x24\x9c\x4c\x36\x64\x2e\x58\xfc\x48\x24\x90\x72\x0f\xed\xa0\x07\xdc\xf2\xc1\xaa\x03\xb5\x49\x54\x9b\x44\xdf\xab\x3b\xb7\x8b\x58\x0e\x71\x09\xcb\xfd\x2e\xa8\xc3\x03\xe6\x01\x96\xa3\x13\xc9\xf2\x7d\xf4\xe8\x16\x46\x90\x6e\x0f\x51\xa4\xdb\x49\x8e\x47\xfc\xd6\x77\x11\x88\x10\x38\xa5\x45\x0a\xc5\x59\x65\x92\xc2\xa3\xf3\xb4\x22\xad\xbc\x39\x0e\x43\xec\x64\xf8\xa1\x08\x6b\x9c\x8d\x89\xc5\xf0\x1c\x44\xb7\x28\xce\xa8\x7a\xca\x71\xa9\xb3\x13\xdd\x5e\xe3\xb2\x9b\xa7\x86\xe1\x54\xe9\x59\xa1\x55\xcf\x10\x4c\x9b\xb6\x15\xa4\x7a\x84\xc5\x52\x27\xb3\x85\xfb\x53\xdd\x03\xb0\x04\x91\x16\x69\xd6\x2f\x6c\x06\xe1\xe8\x44\xb7\x48\xdf\xd4\xbd\xf3\xcb\x5e\x73\x06\xf8\xae\xd7\x9c\x79\xbf\xea\x26\x7c\x40\xb6\x73\xd7\x59\x1a\xa8\x81\xd9\x72\xcd\x19\x3a\x59\x73\x76\x84\x2b\xdb\x35\x9d\x4a\xcd\x5d\xd3\xd9\x88\x49\xbc\x01\x38\x4e\xeb\x7b\x5d\xd7\x96\x08\xf7\xcd\x6e\x04\x8a\x37\x68\xba\x71\xe6\x8d\x8d\x98\x24\xc9\x1c\xc6\x32\x49\xe6\x87\x68\x36\x22\xc3\xcb\x37\xa3\x2e\x24\x27\x38\xfc\x4f\xe4\x46\xa0\x24\x99\xa3\xb3\x64\x3e\xec\xb3\x34\x7a\x26\x92\x4a\x7b\xa6\xef\xf6\xb9\x9c\xc4\x90\x56\x8d\x01\x38\xe4\xf2\x46\x24\xa8\xb7\x48\xfc\x0b\xfa\x38\x75\xb7\x70\x74\x2c\x20\x55\x67\x03\x70\x98\x69\xf8\xea\xb3\x66\x2a\xd0\xc7\xe9\x6c\x2f\xd3\x47\x28\xd3\xc7\xc3\x4c\x1f\xdf\x86\xe9\xa3\x40\x1f\xbf\xec\x65\x4a\x31\xa4\x22\x6c\x00\x0e\x31\xa5\x6f\xf3\xad\x53\x9c\xa3\x8b\x93\xeb\x7d\x4c\x1f\x69\x41\x04\x05\xa6\xab\x05\x39\xc4\xb8\x2b\x36\xaa\x98\xb4\x10\x93\x05\xe5\x64\xc9\x44\xf8\xea\xe0\x46\x20\x6b\x13\x7d\x31\xd7\xc1\xa5\x66\x15\xd7\x0a\xe0\xdc\x3e\xef\x4d\x92\x1c\x9a\x1c\xf9\xe1\xa4\xc8\xdf\xe4\x33\x7b\xcc\x05\xfa\x72\xbd\xf7\x33\xcb\x70\x3e\x4f\x30\x8c\xac\xc1\x38\xc4\xb7\x23\x15\x94\xb2\xb1\x84\xae\xf4\x65\x1f\x71\xd0\xa8\x8a\xd6\x3f\x44\xf8\x0d\x46\x54\x36\x02\xe5\x4f\x68\xcf\x48\x8a\x8a\x02\xa8\x0f\xcd\x00\x1c\xa4\xf9\x06\x3d\x68\x8a\xa7\x78\x44\xd7\xb3\x2f\xfb\x98\x0a\x48\xcf\xba\xd6\x3f\xc4\xb3\x96\x08\x4a\x53\x7c\x40\xb3\x0f\x7b\x49\x42\x2b\xd1\xe2\x70\x25\x5a\x8c\xa9\x44\x8f\xe0\x99\xcc\xd1\xac\x5f\xff\x6d\x45\x94\x00\x0b\x60\x41\x0e\x16\xc0\x8d\x48\x58\xa6\x44\xa0\x19\x71\x77\x88\xaa\x58\x80\x46\x56\x0c\xc0\x41\xa6\x6f\x30\xbe\xa2\x98\x16\x02\xcd\xf6\x8c\xb0\xa8\x58\x3c\x41\x99\x3e\x1d\x66\xfa\xf4\x36\x4c\x9f\x04\x9a\x3d\xed\x67\xba\x59\x00\x99\x6e\x16\x07\x99\xd6\x22\x61\x99\x6e\x16\x68\xf6\xfd\x7c\x1f\x53\xc9\x71\x21\x32\x2c\x09\x8c\x6f\x0d\x73\x88\x75\x5f\x30\x28\xf7\xda\x18\xba\xaf\xee\x9c\x7e\x78\x59\x71\x08\x7f\xa5\xee\xe5\xad\x04\x26\xf3\x8c\x8d\xef\xdd\xd0\x08\x23\xbb\x90\x07\xfa\x4d\x99\x42\x2a\xb2\xe8\x34\x63\xf3\x19\xe1\x6b\x1a\x0f\xec\xc5\xd4\x10\xa6\x27\x54\xf7\x81\x3a\x41\x8c\xf3\xe6\x98\xc7\x2c\x01\x78\xdf\x02\xd8\x70\x67\x8f\x61\x57\x64\xe0\x40\xa7\x55\x46\xa7\xe6\xea\xec\x04\x9c\x63\x01\x62\x50\x27\x55\x35\x21\xac\x15\xb7\x98\x15\x42\xe2\x96\xe3\xc9\x36\x5e\xe2\x22\x25\xb7\x9c\x95\x84\xcb\xe7\x3a\x60\x41\xb3\x26\xd7\x2c\x09\x4e\x08\xaf\x1f\x39\x59\xd4\xf7\x82\xe6\x65\x4b\x52\xb2\x47\x52\xd0\x97\x21\xee\xa9\xa2\x89\xaa\xc8\xa1\xa9\xbd\xb9\xb2\x21\x47\xe8\x96\x36\xfe\xe8\x63\x8f\xd0\x00\x0c\x43\x05\x9d\xd3\x8c\x0c\xd0\x32\xbe\x41\x9f\xf5\x65\x80\x1e\x27\x0b\x74\x47\x16\xc3\xe3\x37\xd3\x97\x01\x7a\x55\x9a\x70\x74\x6f\xef\x3a\xca\x4d\xbe\xf9\xed\x57\x58\xbe\xfb\xed\x57\xff\x87\xd3\x92\x18\xfc\xdd\x28\x5d\x74\xaa\x2f\xee\xaf\x86\xe0\x02\x10\x7b\x82\x0b\x5f\xa1\xdb\x0a\x3f\x50\x56\xb6\x06\x8d\x8d\x6a\x9c\xe1\x63\x27\x52\xb5\x74\x1d\xdf\x6e\x2b\x0e\xc3\x0a\x61\xa5\x88\x4e\x09\x2e\x06\x95\xbb\x4a\x4b\xc7\x1d\x4d\xd5\xff\x23\x74\xeb\x0c\x57\x1b\x74\xe5\x33\x82\x8b\xc9\x1a\x67\x34\xc1\x92\x71\x58\x8a\x35\x38\x87\xd2\x6e\x47\x32\xd8\x2f\x9e\xe6\x5e\x5b\xd3\x5e\xf8\x56\x3d\x39\x7f\xb2\x08\x2e\x28\x60\xac\xcc\xe8\x7b\xbf\xbb\xb6\xc4\xd0\xef\x4e\xeb\x6a\x16\x17\x5f\xf7\x7e\x77\x42\xe2\x0c\xd0\xb3\x50\x43\x1c\x4a\xc5\xb6\x50\xd0\x04\xd4\x86\x34\x6b\x7d\xe7\x4c\x37\x5a\x24\xcf\x00\xce\x4a\xdd\x9b\x6a\x4a\x60\x12\x8b\x75\xef\xcd\x82\x6e\x49\xd2\x7b\xf7\xb8\x2e\x47\x26\xaf\x52\x47\xb1\x58\xa3\x53\x75\x37\x15\xeb\x5e\x1a\x1f\x07\xa0\xe3\x64\x20\xce\xd5\xed\x15\x29\x52\xb9\x1c\x05\xf5\xb8\x2e\x0d\xd0\x17\xf2\xac\x47\x97\x6f\x31\xe5\xee\x8c\xc7\x0a\x2a\x01\x5d\x95\x46\xdf\x9b\xe5\xda\x12\xe1\xf2\x9b\xb6\x82\x4e\xf5\xc5\x99\xd3\x18\x60\x8a\xcc\x9c\x79\xe7\xc7\x34\xc1\x01\xf9\x6d\xd1\x29\xdb\x3a\x99\x71\x4c\x0b\xc9\x09\xa4\xba\x5b\x41\x78\x59\xf6\x84\xc2\x71\xad\x0c\xa1\xd3\xea\xce\xcd\x9b\x6d\x40\x75\x7c\xad\xef\x67\xdc\x92\x38\xbe\xd6\x31\x94\xad\x32\x82\x4e\xf5\xc5\xc5\x33\xc6\x8b\x05\xa1\x05\x80\x69\x85\xe0\xe3\x5a\xc9\x4c\x62\x05\x38\x3c\x89\x7b\x28\x19\xc3\xc9\x48\xa4\x61\xee\xab\x2c\x22\x6d\x0d\x4d\xed\xe3\x54\x3d\x0d\xaa\xa9\xd5\x40\x2a\xea\x35\xce\x15\xc3\x89\x03\xab\xf2\xab\x10\xb8\x48\x38\x7e\xca\x20\x89\x53\x83\x78\xd3\xa7\x0e\x0e\xe8\x4a\x1b\x13\x34\xad\xee\x9c\xac\xe7\x90\x1a\xa7\xd2\xf6\xfd\x62\xb7\xc2\x07\xc6\x7e\xce\x38\x9a\x9e\x7e\xbd\x73\xfe\xce\xc5\x4b\x2c\x45\xcc\x69\x09\x98\x1c\xdb\x60\x78\x13\xaa\x2f\x15\x2e\xbd\x6a\x4b\x68\xba\xc4\x72\xa6\x6f\x9d\x29\xb6\x5c\x15\x80\x9a\xa5\x56\xf7\x53\x6e\x04\x02\xb2\x5d\x15\x8f\x68\xaa\xfe\x3b\x39\xe6\x13\x01\x19\x60\x36\xfa\x5e\x96\x6d\x89\x70\x34\x73\x34\x75\xce\x6a\x88\x73\xc8\x74\x06\xa5\xed\x27\x37\x66\x02\xc3\x50\x6a\x54\xa0\xe9\xf5\x85\x73\xdc\x3c\x66\x18\xb0\x4e\x49\x69\x7b\xe9\xb1\xf1\x93\x85\x95\xee\xe8\xc9\x1d\x4a\xf9\xff\xc8\x18\x66\x7c\x1c\xc0\x71\x89\x83\x4b\x34\x65\x27\xce\xb5\x55\x31\xcb\x89\x4c\x20\x89\xa2\xf4\xfd\xc9\xd2\x92\x18\xe1\x1b\xa5\x1d\x3e\xdb\x6a\x33\x68\xaa\x2f\x6e\x3f\x15\x62\x05\xa9\x01\x68\x7d\xbf\x9f\x5a\x12\x01\x89\x2a\x2b\xba\xdf\x78\x95\xed\x21\x2a\x39\xcb\xe6\x2b\x48\x41\x54\x63\x1c\x20\xdc\x95\x0a\x55\xfb\x6e\x0c\x29\xde\xea\xf6\x74\xe5\x1c\x82\x8c\x19\x87\x4c\xe9\xd1\xea\x7e\xc6\x3c\xfc\x44\x1e\x6d\x04\x4d\xd5\x7f\x37\xc7\x55\xbc\x84\x0d\x9c\xd4\x10\x7e\xae\x5d\xa1\x80\x7c\xad\x21\x34\xad\xee\xf6\xf2\x86\x4c\x03\xb1\x00\x07\x39\x87\x9f\x06\x62\xcd\x18\xbe\x67\xce\xa9\x20\x31\x7f\x2e\x25\xa0\xaf\xd4\xe8\x7b\xb9\xb6\x25\xa0\x6b\x0b\x3a\x60\x93\xa8\x4c\x87\xf4\xd2\xb5\x1c\xa3\x61\xd0\x19\x4d\xa9\xc4\xd9\x8c\xa6\x05\x96\x2b\x7e\x5c\x13\xb1\x58\x13\x2e\x09\xaf\x30\xa6\xfa\x72\x4c\xc7\xdc\x8e\xea\xed\xa7\x5b\x77\xf3\x44\x07\x4f\x62\x50\x0d\xb6\xc6\x38\x9c\x36\x2d\xa9\x70\x59\xd1\x50\x8e\x73\x61\x3d\x36\xcd\xdd\x25\xab\x58\x03\x48\xd7\x5d\xbb\xee\xcc\x53\x07\x0f\xec\xd3\x8d\xc5\x1a\xed\x76\xe4\x5a\x9b\x5b\xc0\x4c\x94\x78\xeb\x9d\x85\xd2\x04\x0f\xdd\x6c\x20\xde\x2e\xf8\xf0\x8d\x0a\x06\x26\xe9\x76\x81\xa6\xdb\xc5\xb0\x7e\x95\xed\x02\x3d\xe0\x2d\x17\x4a\xf3\xce\x99\x03\x1a\xbf\x8f\xf7\x6b\x83\xe1\x73\xef\x8e\x54\xa8\x7a\x45\x2b\x2b\x35\x79\x68\x1f\x77\x01\x59\xb2\x6b\x01\x0e\xb1\x3e\x7a\x9d\xe2\xce\xd0\xab\xd5\x9e\x48\x22\x82\x77\x69\x58\x5b\xda\x67\x43\x17\xd8\xf5\x74\xef\x89\x70\x3b\x9c\xcc\xc9\x0b\x5d\xe5\x93\x9c\x15\x29\x83\xfc\xea\xf7\x91\xbc\x49\xe0\x96\x0d\xe7\x48\x6b\x0f\x9d\xd9\x9b\x6b\x63\xd7\xef\x91\x67\x01\xe9\xc9\xec\xe2\x1c\xe7\x8d\x96\xe4\x1b\xfa\xe2\x79\xf6\xe4\x6c\xe0\xd4\xf1\x2a\x99\x90\x29\x87\xcc\x97\xdd\x81\x3a\xca\x1f\x3d\xe1\xb7\x73\xc9\xad\x35\xec\xf5\x8a\x78\xca\x04\xe1\x6b\x02\xe8\xfe\xdd\xc5\x3a\xca\x2f\x7d\xe9\xb7\x73\xcc\xac\xb2\xec\xf4\x8c\xa9\x4d\xb2\x18\x34\x6d\xa6\x8d\xe2\xf5\xc6\xae\x5c\x38\x3f\xb4\x6c\x55\x95\xe6\xaf\xf1\xce\xec\x97\x8a\x00\x27\x31\xe4\x27\x4c\xeb\xfb\xa9\xb7\x24\x82\xfd\x66\x6b\x23\xe8\x4c\x5f\xf6\xf3\x5c\x03\xd6\xd0\x55\x08\x87\xb9\x4e\xd6\x47\x2e\xa3\x03\xd2\x5d\xe7\x96\xf0\x37\xe7\x9a\xd7\x84\x0a\xbe\x2a\x41\x73\x8c\x6a\x08\x3f\xe9\xae\xd0\xe0\xce\xc0\x1a\xe0\x68\xc7\x41\x3e\x0e\x6b\x0b\x9d\x55\x77\xc3\x6a\x2a\xb5\xbe\xf6\xbe\x7d\xd8\x93\x00\x90\xa5\x0c\x89\x7f\x19\x43\x12\x7e\x09\x43\x52\x08\x74\xe6\x5e\xbe\x90\xb0\xf8\x11\xf4\x53\xa2\xf5\xbd\xfc\xda\x12\xe1\x28\x6a\x2b\xe8\x4c\x5f\xdc\x44\x5f\x60\x3c\x5f\x0e\xd1\x7c\x79\x0b\x96\x2f\x9a\xe4\xcb\x1e\x8e\x9c\x66\x90\xaa\xa3\x52\xf7\x72\x6c\x09\x84\xe3\xa8\x8c\xa0\x33\xf5\xdf\xcd\x91\x95\xa0\x69\x44\x16\xc0\xcf\xb3\x2d\x12\x90\xa9\x36\x83\xce\xcc\xd5\xc5\x96\x2c\xf5\x8c\x8a\xf1\x6c\x2d\x80\x8f\x6d\x57\x24\x18\x5b\x6b\x06\x7d\x34\x57\x27\xdb\x0c\x0b\x49\x63\x41\x30\x8f\x97\x13\x4e\x04\xa0\x3a\xb3\x8b\xe5\xf5\xc1\x3e\xe9\x70\xee\x68\x5b\x44\x1f\xdb\x4f\x6e\xd7\x80\x5a\x85\x5a\xdd\xef\x80\x37\x68\x03\x6a\x23\xe8\xa3\xfa\xef\xe4\x28\x63\xc0\x40\xa7\xd2\xf6\x32\x6c\xc2\xc3\x11\x94\x71\x82\x3e\xca\xd8\x39\x42\x49\xd6\xa4\x90\x38\xc9\x29\xa0\x95\xd2\x60\x78\xa9\xf6\xa5\xc2\x11\xae\x2d\xa1\x8f\xea\xf6\x44\xdd\x3a\xc9\x6f\x09\x60\xfb\x5b\xa5\xed\x25\xdc\x84\x87\xa3\xba\x25\x31\xfa\xb8\x25\xce\x3d\x70\x17\x38\x26\x73\xc6\x00\xf3\x7b\x2a\x04\x1f\xcd\x9e\x4c\x30\xaa\x95\x1d\x74\x6e\x6f\xdc\x94\x85\x7c\x10\x0c\x90\x99\x2b\x04\x2b\xe0\x1c\x3b\x50\xe1\x7d\xc1\xa1\x64\x8c\x32\x3a\xb7\x37\xce\xe1\x84\xc5\x92\x02\x6a\x87\x4a\xdb\x9b\x70\x4d\x38\x74\x24\x4e\x41\x5d\x36\xbe\x30\x2f\x7e\xe4\xd9\x38\xdf\x2c\x29\x47\xe7\x4b\x3a\xac\xe5\x54\x6b\x5d\xee\x7a\xf3\x58\xd5\x1f\x79\xe6\x4e\x07\x9a\x01\x6a\x3b\xad\x95\x7e\xee\x74\x68\xc2\xc3\x7d\x3c\xd4\x2e\xbc\x73\x7e\x34\x34\x23\x93\x0d\x96\xf1\x12\x46\xd2\x60\x1c\xa2\xda\x91\x0a\x4b\x58\x5b\xd2\xb4\xbf\xab\x3b\x27\xf7\x0c\xcb\x12\xc7\x90\x32\xd2\x22\x78\x79\x77\x65\xc0\x9f\x5b\x17\x6e\xa0\x67\xac\x32\x3a\xb7\x37\xc3\x36\xd8\xdb\x51\x77\x7f\x31\x19\x85\xcc\x2b\xd5\xea\x7e\x87\xd2\xf0\xf3\x4a\xb5\x11\x74\xae\xfe\x3b\xb3\x0e\x03\x4c\x4b\x5c\x30\xef\xac\xc4\x26\x38\x1c\x3b\x56\xa2\x73\x56\x3a\x99\x71\x42\x72\xcc\x41\x7d\x30\x0d\x86\x97\x67\x5f\x2a\x1c\xdd\xda\x12\x3a\xaf\x6f\x9d\xe4\x25\x24\x59\xa5\x3f\x59\xe5\xe8\xe9\x9e\x0b\x39\x7e\xaa\xa9\x18\x65\x77\x44\x81\xcb\x49\xce\x24\x41\xe7\x72\xd8\xa6\xac\x3d\xdd\x61\x1b\x8e\xb5\x95\x67\x8b\xbe\x65\x93\x2c\x29\x2e\xd2\x8c\x02\x26\xe9\x59\x00\x5f\xda\x76\x45\x82\xf9\xd9\x9a\x41\x9f\xcc\xd5\xc9\x96\xb0\x98\x25\x90\x8f\xb7\x42\xf0\xf2\xed\xca\x84\x23\x6c\xed\xa0\x4f\x84\x4d\xd5\x8d\x93\x32\x05\xf4\xca\xa4\xd4\xdb\x0d\xd3\x04\x87\xe3\x48\x25\xfa\x44\x9d\x23\x4b\x29\x95\xcb\x15\x60\x2a\x82\xd1\x3f\xc0\xaf\x91\x08\x49\x71\xb9\x9a\x2b\x96\x9f\x57\xce\xb9\x06\x29\x63\x69\x46\x26\x73\x9a\x3e\xad\x08\x07\x2c\xfd\xed\x01\x79\xa9\x3b\x45\x07\x97\xaf\x3d\x98\xc9\x1b\xf4\x5a\x19\x93\xa8\x32\x89\x3e\xe9\xe7\x53\x9a\xfe\xa9\x1e\x07\x15\xa0\x7d\x28\xf1\x94\xf5\xe0\x66\x7f\x5e\x79\x52\x2c\xc6\x19\x29\x12\x0c\x29\x6e\xba\x40\x47\xa4\x58\x4f\x74\x6c\x8a\x55\x30\x93\xb7\xd9\x89\xd8\x7a\xba\xb2\x6a\xbd\x3c\xb5\x8f\x63\x12\xad\x86\xb2\xbb\x14\x77\x11\xf7\x6f\x58\x6c\xf9\x27\x5c\x31\x82\xa6\x9b\x46\x39\x22\xd1\xda\x72\xa1\x7d\xac\x6d\x59\x77\x9c\xa9\x7b\x8f\x17\x72\x4c\x01\xbd\xd8\x2d\x90\x23\x7c\xd0\x12\x1b\x9b\x69\x15\xc4\xdb\x66\x58\x65\xd1\xfa\xf2\x1a\xd3\x6c\x4c\x46\xd5\x10\x9d\x4c\xaa\x90\x0e\x66\xd0\x72\x35\x17\xa0\x5f\xbf\x36\xcc\x11\xc9\xd3\x11\x0c\xed\x56\x63\xcc\xba\xe3\x56\x3f\x78\x5c\x21\x96\x84\x48\xc0\x88\x7f\x07\xe6\x08\x57\x74\x04\xc7\xe6\x55\x03\xf2\xb6\xb9\xd5\xd8\xb4\x6e\x9d\xe9\x87\x31\x39\xd6\xc2\x74\xf2\xac\x41\xf3\xe5\x5a\x0e\x69\x64\x30\xee\x6f\x61\x34\xe1\x01\x7d\xc8\x31\xfa\xc4\xdc\xeb\xbb\x53\x8e\x4b\xc8\xcf\x85\x52\xf7\x12\x6c\x09\x84\x63\xa8\x8c\xa0\x4f\xea\xff\x3e\x8e\x4b\xc8\xa8\xa6\x05\x38\xc4\x73\xf9\x06\x75\x44\x63\x46\x73\x5d\xba\x47\x37\x53\x0e\x19\x1e\x52\xda\x36\xd0\xd9\x4f\xd9\x0a\x1f\x1a\x73\xf6\x88\x3e\x71\xe6\xee\x5c\x4c\x39\x63\x6b\x48\x03\x41\xeb\xdb\x60\xc7\x46\x60\x9d\xf0\x41\x3b\xec\x19\x4d\x15\x73\xb6\x7e\x76\x6c\xce\x95\xf2\x12\x30\xe0\xa8\xb4\xfd\xd9\xaa\x0c\x7d\xe2\xa6\x32\x81\x3e\xf1\xd2\x39\xde\x98\x82\x06\xde\xd2\x63\x06\xdd\xd2\xb1\x03\x6e\x4a\x11\x7d\xda\x37\xd0\x96\xae\xf0\x1a\x9b\x71\x6c\xd0\x12\xd6\x2e\x8e\x37\xad\x5c\x92\xe1\x4a\x02\x65\x0d\x55\xd6\xd0\x27\xf5\xa8\x87\xc6\xf7\x2c\x69\x5d\xe2\x17\x92\xc5\x18\x32\xd5\xa5\x86\xf0\x79\xa1\x16\x32\x47\x8d\xc5\x23\x0f\xbc\xea\x83\x51\xbd\xbd\x65\xfc\x0a\x48\x19\x1d\x33\xe9\xa6\x8f\x02\x38\x8f\xac\x05\x02\x3c\xd9\xac\x41\x02\x1d\x6e\xd6\xc0\x70\xa2\x8f\xfc\x96\x24\x79\x95\x58\x71\x5a\xa4\xf3\xd5\x62\x31\xa6\x47\xb1\x8f\x25\xc8\x98\x15\xd3\xbb\x28\xaf\x90\xf6\x92\x95\x34\xf8\x34\x90\xda\x9c\x39\x4b\x2c\x2e\x56\xf9\x9c\x70\xf4\xb9\x7a\x7d\xd2\x7a\x3b\xa8\x2e\xdc\x00\x57\xdf\x54\x03\x7a\x61\xdf\x8c\x04\x54\x9f\x56\x03\x76\x45\xfb\x6b\xb2\x8e\x06\xca\x71\xd9\xe0\x0c\x3d\x0f\xae\x05\x53\x9d\x2e\xd7\x60\xd9\x37\x23\x01\xcd\x96\xca\x35\xda\xf0\xf3\xe5\x1a\xa8\xce\xa7\xd6\x40\xde\xb5\x5f\x8f\x85\xae\x3f\xbb\x16\x6e\xfd\x6e\x24\xa8\xfa\xfe\x1a\xb8\x19\xe9\x6f\x2a\x30\x00\x48\xb6\x71\xc6\x66\x11\xfd\x11\x36\x40\xf7\xea\xd1\xf9\xbb\x07\xdb\xe2\xe0\xe0\xf6\x06\x6f\xb2\xb5\x81\xd9\xd6\xe0\xf3\xe9\x9e\x2d\x0d\x96\xc9\x02\x50\xc3\x51\xda\x5e\x86\x4d\x78\x38\x82\xc9\x42\xa0\xcf\xc9\xc2\x5d\x75\xa1\x65\xbc\x84\x2c\x17\xb6\x00\x5e\x92\x1d\x91\x70\x3c\x8d\x19\xf4\xd9\x5c\x9d\x6c\xb3\xdf\x01\x4c\xb3\xdf\xf7\x37\x82\x96\xd9\xef\x92\x70\x41\xbc\x5b\xb2\x35\x08\x03\x99\x65\xbf\xa3\xcf\xd9\xef\xf7\xda\xc0\xe1\x9d\xb6\x7b\x8a\x57\xbf\x3b\x2b\xf1\x3a\x15\xc6\x3b\x43\xfa\x87\xee\x5b\xe1\xc3\x6b\x03\x72\xd4\xe0\x7d\x42\x4a\x52\x24\xa4\x88\x69\xaf\x75\xea\xa5\x76\x60\x0a\xda\xc0\x84\x92\xb2\x44\x9f\xa5\x7b\x54\x9d\xc6\x18\xd0\x4f\xa2\xb4\x7d\x79\xab\x15\x3e\x2c\xce\x4a\x11\x5d\x4c\xb1\x7b\x2e\x1f\x25\xf1\x6f\x3f\xfd\xdf\xdf\x7f\x02\x44\xdc\x22\xf8\x72\x4b\x25\x33\x31\x87\xba\x8e\xcd\x38\x35\xcc\xdb\x2c\x71\xad\xcc\x55\x47\xd1\x4e\xf5\x65\xd0\x6f\x6e\x0d\x61\x62\x8c\x66\x7b\x57\xc8\xd2\xb4\xa0\x90\x83\x4c\x8c\xbe\x37\x11\xb4\x04\x6c\xdb\xd2\x0a\x83\xe5\xe5\x6a\xcc\x31\x28\x1d\x14\xdd\x00\x1f\xdd\xa5\x6e\x41\x68\x92\x92\x11\x53\xe8\x3b\x18\xe0\xd3\xb6\x2d\x0e\xa8\x25\x69\x31\x46\xb5\xb2\x06\xe6\x6b\x6d\xc9\xee\x03\x7b\xa1\x1f\x86\xef\x02\x5b\x81\x98\x9c\x50\xc1\x98\xa7\x31\x40\x26\x33\x58\x1c\xdd\x19\x33\x6c\x98\xc2\xc2\xe8\xec\x60\x51\x2e\x92\x4f\x64\xd8\x21\x04\x16\xa4\x39\xad\xdb\x00\x8d\x3b\xad\xdb\x82\x99\x76\x8f\x01\x1a\xde\xe8\xb1\x20\xaa\xe2\x6f\x20\x76\x6a\xfd\xf6\xf3\x2f\x16\xb4\xa0\xa2\x84\x2c\xaf\x6f\x30\xbc\xc5\x48\x5f\x2a\x5c\x3e\xad\x2d\xa1\x8b\xfa\x76\x0f\xf9\x6c\xb5\x85\xec\x50\x52\x21\x1c\x20\xde\x96\x09\x49\x5b\xdb\x51\xa4\xb3\xd5\xd6\xbd\x37\x19\x65\x90\xcd\xe8\x95\xb6\x97\x2a\x0b\xbf\x11\xbd\xb2\x81\x2e\xbe\xde\x9f\x38\xe9\x95\x90\x56\x99\xd2\xf6\xd2\x2b\xc3\xb7\xca\x94\x0d\x74\x71\x7b\xee\xdc\xc3\x95\x72\xc0\xb8\x07\xe5\xde\x61\x8f\x26\x38\x1c\x37\x1e\xa3\x0b\xee\xec\x32\xa0\x9c\x15\x90\xc3\x4d\x8d\xbe\x9f\x5f\x4b\x22\x20\x45\x65\x05\x5d\x70\x56\xb8\x0f\x38\x7d\xc0\xf1\x23\x68\x80\xc7\x02\xf8\xea\xfc\x7a\x8c\xa7\x2b\x37\x8c\x85\xd5\x45\x97\xe6\xea\x6c\x01\x58\x99\x6d\x0e\x68\xbc\x34\x18\x5e\x3a\x7d\xa9\x51\x64\xb6\x79\x56\xf1\xf9\x71\x7d\xb5\x87\xd2\x16\xf0\x5b\xa0\xb4\xfd\x34\xea\xf0\xe3\x08\x54\x5b\x1b\x2a\x45\x74\x89\xb7\xf3\x7d\x91\x06\xb4\xd7\x95\xb6\x0d\x74\xf4\x5e\x6c\x21\xe7\xa4\x6d\x9b\x03\xbd\x7e\x5c\x5f\x79\xce\xf4\x7a\x98\x97\x80\x1d\x5f\x94\xb6\xef\xbb\x6f\x85\x07\xfb\xea\x95\x0d\x74\x79\x7a\xeb\xdc\x57\xfc\x01\xb8\xcc\xff\xe1\xe0\x2a\xff\x87\x37\x59\xe4\x6f\xac\xa0\xcb\xbd\xa7\x35\x3c\xc4\x19\x5b\x25\x80\xdf\x5f\x0b\xe0\xa7\xda\x16\x09\xc8\x55\x9b\x41\x97\xe6\xea\x66\x0b\x98\xaa\xfb\x10\x7b\xa7\xe7\x36\xc1\x01\x19\x72\x74\x19\x3b\xbb\x14\x1e\x92\x39\xa0\x9a\xa1\xb4\xbd\xdc\x9a\xf0\x70\xe4\x92\x79\x8c\x2e\x93\xb9\xb3\xaa\xf1\x40\xa4\x04\x4c\x7b\xd1\xea\x5e\x82\x2d\x81\x50\x13\x48\xb4\x8d\x7f\xa2\x4b\x75\xe9\xf4\x2b\xfe\xb3\x4d\x54\x93\x83\x7c\x8f\x06\xc0\x4b\xb6\x23\x12\x2e\x41\x8d\x19\x74\xf9\x49\x5f\x9d\xc9\x6a\x44\x26\x1c\x2f\x00\xc3\x16\x6d\x94\x23\x78\xb7\xe5\x82\x93\x57\xb6\x2a\x0f\xdc\xe1\x85\xb3\x3d\xff\x40\x8b\x14\xc0\xbe\xe9\xcb\x72\xb3\x1e\xd5\xd7\x35\x8c\x6d\x73\x28\xa1\xb2\x86\x2e\x77\xba\x4f\xaa\xa8\x42\xe6\x88\x2a\x6d\x3f\xd1\xf0\x73\x44\x95\x0d\x74\x49\xdd\x73\x44\x1f\x20\x1b\x55\x3f\xf8\x77\xa8\x7e\x08\xbf\x35\xf5\x43\x2e\xd0\xa5\x7b\x37\xea\x87\x1c\xb0\xc1\xd3\x43\xee\xdd\xdc\xa9\x09\x0e\xc8\x6c\x8b\x2e\xaf\x7f\x38\x99\xb1\x65\xf1\x02\x6a\xda\x19\x00\x6f\x23\x42\x37\xed\x3a\x72\x03\xe3\x6f\x74\xd1\xa5\xb9\xba\x9b\x14\x2c\x83\x14\xa1\x2c\xf3\x17\x9d\x4d\x78\xb8\x54\x62\x99\x44\x97\x2c\x73\x97\x91\x8c\x01\x7a\x1a\x94\xb6\x9f\x1e\x0b\xde\xcb\xa0\x6c\xa0\x4b\xc6\x9e\x9c\xf4\x4a\x48\xc1\x58\xfa\xcb\xc5\x32\x7c\xb1\x58\x62\x74\x59\xba\x0b\x45\x01\xd9\x5b\x43\x69\xfb\xb8\x89\x70\x67\x00\x55\xdc\x44\x5c\xa2\x59\xec\x1c\x05\xd6\x1f\xf6\x2b\x1c\x38\xdc\xc5\xf1\xa6\xa5\x4b\x32\x5c\xb2\x0a\x56\x34\x3f\xed\x97\x82\xf9\xcf\x1b\x56\xe2\xb8\xa4\x30\x3f\xe0\x92\x1e\x2a\x4b\x4f\x6a\x91\xe1\x74\x70\x49\x35\x91\x93\x92\xba\x8b\x51\xc1\x8a\x12\x4b\x50\x96\x35\x08\x56\xc0\xd1\x43\xd3\x93\x38\x86\x44\xa5\xa2\xe3\x7e\x8b\xe5\xd2\xd5\x25\x23\x7f\xfd\x09\x30\xb6\xaf\xd5\xbd\x79\xaf\x25\x10\x2e\xcb\x29\x23\xe8\x52\xfd\x77\x65\xb1\x47\x7d\x86\x26\xe1\xc7\x2e\x84\x40\x8f\x7b\xf9\xf6\xa0\xaa\x4c\xf7\x6a\x13\x4f\x48\x91\x94\x8c\x16\x32\x11\x19\x08\xa7\x15\xbd\x5e\xc4\x95\x67\x5f\xc5\x03\x0a\x28\x38\xff\xbe\xcd\xc3\x75\xe5\xa3\xa2\x2e\xde\x3a\xe2\x8f\x05\x96\xc7\x2c\x1d\x3e\x26\xf6\x16\xcb\x69\x86\xc9\xec\x88\x9d\x09\x8f\xb2\xa2\xa1\xde\xda\x4f\xc7\x0c\x32\x1c\x13\xfb\x6a\x08\xa1\x7a\xcd\x57\x85\xa4\x39\x99\x2c\x09\xce\x8e\x28\xa7\xbd\x26\xba\x58\xaf\xee\x21\x41\xf8\x3a\x23\xf2\x30\x06\x7a\xf4\xa0\x34\xd1\x6c\xe3\xf5\xc3\x5e\x25\x5b\xf6\xc0\x5e\xdd\x21\xba\x67\x16\xec\x0e\x9b\x31\x9e\x71\x7e\x44\xc9\x7a\x1c\x56\x97\xf0\x68\x38\x83\x32\x69\xea\x30\x40\xa4\x57\x8a\x4f\x3d\x81\xb3\x9f\xce\x39\x86\x16\x31\x6d\xa4\xd7\xcf\x2e\x8c\x93\x09\x29\xd2\xe6\x94\xee\x71\x38\x75\xe4\xf6\x7c\x50\xaf\xe3\x82\xee\xd7\x1e\xa6\x14\xe9\xdb\xdc\x90\xf9\xf2\x98\x6d\x4e\x8f\x22\x60\xc1\x5e\x9d\x40\x1b\xd7\xda\xc4\x8b\x47\x40\x83\x57\xab\xfb\xaa\xaa\x6d\x81\x60\x55\x55\x6d\x04\x7d\x51\xff\x9d\x55\xd5\x57\x28\x90\x3b\xa5\x80\x9b\x69\x47\xe4\xf8\xa1\x8b\xff\x65\x65\xfa\x6b\x17\x9c\x3b\x45\xde\x6a\x4e\x78\x41\x24\x01\xf4\xd0\x36\x18\xde\x04\xa9\xa5\x26\x31\x2b\x16\x34\x9d\xe4\x80\x93\x92\x5b\x68\x09\x29\x33\xf6\x9c\x43\xa6\xd1\xb6\xd0\x96\x63\x3a\x85\x76\x50\x1e\xd8\x88\x19\x72\x3b\x28\x05\xce\x89\x28\x71\x3c\xe6\x84\xa7\x5d\x30\x96\xbc\x0a\x4e\x49\xb8\xa0\x42\x92\x42\x4e\xd6\x2c\x5b\xe5\x81\x40\x27\x71\x86\xe9\x98\xbe\xfd\x5d\x6c\x36\x66\x88\x7d\x07\xa6\x5a\x6f\x47\x59\x51\x1d\x4b\x9c\x91\x9d\x33\x14\xc7\x21\x0b\xb6\xe2\x31\x11\x93\xa7\xd5\xa8\x39\x87\x3b\x88\x82\xc4\x1c\xb0\x51\x4b\x07\x89\xaf\x69\x4c\x26\x38\x8e\xd9\xea\x75\xbe\x30\x0b\x39\x1a\x8a\x95\xa4\x10\x4b\xba\x90\x93\xf9\x8a\x66\x89\x2d\x4d\x5e\x0b\x2e\xf8\x68\x52\xe3\x09\x64\x62\xfe\x97\x2a\x07\xd1\x97\xfa\xf5\x54\xbf\xbd\xc6\x03\xf7\xbc\x6c\xe1\xb6\x4a\xc4\x16\xee\x59\xf3\x76\x2c\xf0\xb2\xc4\x2d\xc0\xcf\xb7\x27\x63\x81\x1e\xd8\xbc\x05\x74\xc9\xe6\x63\x81\x9a\x22\xb2\x85\x77\x53\xbf\x1c\x0d\xab\x0a\xcb\x36\xa2\x7a\x1e\x0b\xd6\x14\x6e\x7f\xd9\xc2\xad\x85\x7c\x5b\x07\x7e\x33\x61\xaf\x67\xe5\x2f\x53\x84\x7a\x8d\x69\x89\xd1\x26\x59\xd2\x41\x67\xfd\xc9\x45\xc7\x43\xb5\x4a\xd7\xbf\x5a\xa5\x6b\x0b\xfd\xae\x91\x98\x36\x02\xe3\xed\xd9\x32\xf7\x2f\x5d\xe6\x76\xec\xd8\x90\x3f\x55\xc0\x58\x7c\x5b\x02\xb7\x70\x67\xe6\xcd\x78\x40\x5d\x6a\xfe\x55\x15\xc4\x1d\x64\x1d\x74\x62\x43\x80\x16\x1c\xc8\xc3\x20\xeb\x02\x15\xe9\x02\xf5\x2f\x5b\x3e\xa3\xaf\xd5\xfb\x53\xf5\xda\x94\x72\x20\xe4\x3e\xa4\x73\x84\xfe\x71\x95\xac\x20\x55\xdb\x64\xe5\xaf\xd4\xd6\xe1\x01\x7f\x30\x92\x15\xfa\xb2\x4a\x56\x2e\x7a\xd5\x28\xca\x78\x8a\x59\x77\xa9\xad\x93\x66\x4f\x26\xd4\x19\x83\xf5\x6c\xdb\x6a\x10\xc7\xc9\x38\xc1\x80\x29\xc2\x4a\xdb\xcb\x34\x19\xb3\x6f\xc9\x40\x9a\x09\x2e\xd1\x55\xd2\xdf\x9e\xa1\x8a\x20\x05\x9c\x17\xae\xb4\xfd\xf4\x68\xff\xc4\xf0\x00\xf4\xe8\x02\x5d\x25\x74\xe1\xa4\xc7\x00\x33\xba\x32\xe6\x9d\xd0\xd5\x04\x07\xcb\xa0\x2c\x45\x57\xcc\x39\x85\x2b\x5b\xc5\xa4\x80\x7c\x86\x5a\xdf\x4b\xaf\x2d\x11\x2e\xf5\xb4\x15\x74\xa5\x2f\x6e\xa2\xf9\x9c\xf0\x07\xd0\xf9\x18\x0d\x86\x9f\x70\x4f\x2a\x20\xe9\xca\x12\xba\xaa\x6f\x9d\xe4\x5f\x20\x1f\xe7\x4b\xf5\xed\x39\x47\xf0\x9b\xe0\x63\x22\xdf\x3a\x7e\x23\x7b\x59\xa0\xab\xff\x9c\x3b\x87\xed\x61\xfb\xd8\x1e\xda\xc0\x16\xb2\xf7\x14\x85\x74\xff\x94\xac\xfc\x00\xd1\x1d\x7f\x6c\x42\x3e\x7e\xcb\x07\xa5\x3b\x66\xcb\x07\x57\x66\xc9\xf5\xd8\xc2\x2a\x93\xb4\xc4\x5c\x8e\xca\xf4\x7a\xfb\xdd\x23\xf7\xee\x6d\xe5\x36\x65\x19\xd5\x96\xd1\x35\xcd\xc9\x75\xf5\xb4\x27\x0b\x0a\x09\x39\x78\xc0\xe8\xfb\xb2\x61\x47\x22\x58\x21\x61\xac\xa0\x6b\x7d\x71\x15\x0e\x39\x91\x9c\xc6\x80\x8e\x54\x0b\xe0\xa5\xda\x11\x09\xc7\xd5\x98\x41\xd7\xe6\xea\x64\x4b\x63\xce\x72\x02\x4b\xda\x1a\xc3\xcb\xb9\x2f\x15\x8e\x76\x6d\x09\x5d\xd7\xb7\x7b\xc9\x97\x9c\xe9\xc3\xab\xe0\xe9\xee\x40\x3b\xe8\x10\xb7\x7c\x58\xd7\x58\x9b\x4d\xf6\x50\x2f\x6f\xcd\x4b\x6f\x56\xc9\x18\xc4\x3b\x19\xf3\x7b\x23\x63\xc0\x3d\x55\x34\xc4\xdb\xec\xa7\xa2\x4c\x55\x7b\xa9\x5c\xd3\x8c\x8d\xd8\x4f\x45\x43\xd8\xbd\x54\x14\xc4\xfe\xfd\x54\x72\x5a\x00\x46\x13\x95\xb6\xdf\xf1\x45\xf0\xb1\x44\x65\x03\x5d\xd3\xc2\x39\x92\x98\x67\x19\xa0\x29\xa8\xb4\xbd\xf4\x9a\xf0\x70\xf4\xb2\xac\x44\xd7\x59\xe6\x6c\x0a\xe6\x0c\x52\xc7\x56\xda\x5e\x7a\xec\xd8\x7a\xf5\xe8\xe6\x92\x32\x81\xae\x99\xbb\x2a\x9d\xb3\x22\x65\x90\xed\x2a\x2c\x80\x9f\x63\x5b\x24\x5c\x2a\x1a\x33\xe8\x5a\x5d\xdd\x5b\x55\x58\x91\x49\xca\x29\x68\xaf\xbd\x2e\xce\x11\xdc\xbb\x92\xc1\x5d\x60\xac\xa1\x4f\x9c\x26\xe7\xee\xdf\x02\xb1\x06\xb0\x17\x6b\x2f\xe5\x3a\xf8\x0d\x16\x74\xe5\x62\x8d\xae\xc5\xda\xc9\x71\x25\x24\x06\x2d\x93\xae\x10\xbc\x6c\xbb\x32\xe1\x92\xd6\xda\x41\xd7\xf6\xc6\x49\x79\x4d\x20\xed\xcc\x35\xf1\xb6\x33\x5b\xe1\x03\x68\x3a\x66\x98\xb7\x80\x06\x3a\x61\x4d\x32\x74\xbd\x26\xc7\x34\x96\xea\x6e\xcc\x5a\xc9\x31\x29\x3d\x7f\x9e\x63\x49\x21\x25\x81\x01\xf0\xba\xad\x23\x32\xbc\x56\x64\xd4\x27\x73\x12\x7e\x9b\x23\x6b\x0b\x5d\x3f\x9f\xaa\xeb\xb0\xfa\x50\x57\xf7\x94\xb8\x37\x48\x2a\x70\x4a\x19\xc0\xe1\x46\xdf\xe7\xef\x8e\x44\x30\x57\x19\x2b\xe8\x46\x5f\xdc\x44\x21\x67\xc2\x28\x6d\x3f\xc9\x31\xb3\x00\x86\x52\x94\x8a\x60\x7f\x2c\xcb\x46\x10\xb6\xe4\xbd\x38\xb4\xe4\xbd\x70\x2c\x79\x7f\x7d\x86\xca\x08\xba\x51\xff\xf7\x72\x04\xee\x5e\xda\x60\x1c\x64\x3b\x71\xec\x64\xfa\xda\xab\xfc\x0d\x63\xbd\x79\xe8\xcd\xce\x4a\xff\x36\x75\x2a\x39\x68\x13\x48\x0b\xe0\x25\xdd\x11\x09\x97\xc8\xc6\x0c\xba\x31\x57\x27\x5b\x01\x58\xbd\x59\x08\xef\xe2\xcd\x26\x38\x1c\x43\xf1\x84\x6e\x84\x73\xe5\x26\x4b\x0b\x40\x8d\x40\x69\xef\xff\x19\x6f\x85\x0e\xda\xc5\x47\xe9\xa1\xaf\x69\xe1\xfa\x41\x66\x19\x2d\x52\xf6\x0b\x20\xca\x06\xc0\x97\x22\x5d\x91\x60\xa9\x62\xcd\xa0\xaf\xe6\xea\x4c\x1d\x1d\xf4\x2b\x94\xed\xaf\x87\xd9\xfe\xfa\x36\x6c\x7f\xb5\x6c\x7f\x75\xb2\x2d\x49\xa1\xea\xae\x80\xe6\x74\x0d\xe1\x65\x5c\x09\x4d\x62\x5a\x8c\x3a\x07\xb7\x8f\x93\x66\x90\x43\x4b\x1a\x9c\x47\xf2\x2c\x24\x1b\x33\x7c\xd8\x47\x2a\xc8\x4a\x72\x36\x7a\xb7\xd9\x16\x10\x5b\x8f\x9e\xeb\xd8\xa0\x88\x0d\x0d\xbf\x69\x49\x6d\x0e\x99\x74\x45\x53\x7d\x19\x3e\x79\x45\x63\x98\x34\x45\x9f\xb2\xc1\x27\x65\x34\x18\x55\x7a\xa2\x2f\xf6\x66\x24\x8e\x4d\x4d\x74\x63\xae\x63\x51\xd8\x1a\xa3\x1b\xb6\x1e\x36\x5d\xaa\xd1\xd7\x89\x88\x66\xea\xbf\xfb\xf3\x95\xb8\xcc\x70\x51\x40\xc6\x1a\x5a\x20\xfe\x4f\xb8\x2f\x16\x30\x57\xd5\xa6\xd0\xd7\x52\xe2\x5b\x73\xef\xf2\x40\x89\x97\x80\x1e\x74\xa5\xed\xe3\xdc\x0a\x0f\x46\x56\xd9\x40\xb7\x78\xc9\xdc\xf4\xb6\x19\x4b\x53\xd0\x76\x3f\x0d\x86\x9f\x6a\x4f\x2a\x20\xe1\xca\x12\xba\xc5\xdb\x2b\x73\xeb\x24\x9f\x00\xe6\x14\x94\x89\x77\xbe\x4f\x13\x1c\x8e\x67\xb2\x40\xb7\x89\x73\xb2\x4f\x99\x76\x66\xcd\x8b\x8c\x01\x76\x62\x71\x80\x79\x99\xef\x15\x0f\xe7\x89\xb4\x3d\x8d\x15\x29\x93\xe8\x36\x6d\xcd\x5b\x9d\x65\xcc\x59\xbe\x95\xa9\xde\xf8\x1b\xe2\x1b\x0d\xe0\xf7\x47\x5b\x24\xa0\x0f\xb4\x19\x74\x9b\xea\xed\xcb\x9d\x6c\x33\x2c\x17\x8c\xe7\xc0\xe6\x6d\x07\xc6\xcb\xdc\x21\x18\x8e\xbf\x35\x66\x1a\xba\xb7\xf6\x69\x5f\x5b\xb7\xe4\xb4\x00\x0d\xa0\x5b\x00\x1f\xfd\xac\x0c\xfe\x43\x66\x63\x81\x6e\xcd\xd5\xcd\x94\x49\x36\x5f\x41\x4a\x3a\x8b\x60\x05\x9c\xb3\x62\x7a\x32\x03\xe7\x51\x55\xda\xe8\xd6\xde\x38\xa7\xb3\x94\xab\x79\x01\x39\x7e\xda\xe8\x7b\x33\x6c\x5b\x22\x5c\xa2\x69\x2b\xe8\x76\x35\xbf\x71\x9f\x31\x5d\xae\x32\x01\x39\xc1\xdf\xe8\xfb\x89\xb6\x24\x02\x12\x55\x56\xd0\xad\xbe\xb8\x88\x3e\xad\x30\x97\x2f\xe3\x89\x1a\x7d\x1f\xd1\x8e\x44\x30\xa2\xc6\x0a\xfa\x53\x5f\xdc\x44\x69\xfc\xb8\xa0\x80\x2d\xeb\x2a\x04\x3f\xd9\x8e\x4c\x40\xba\xc6\xce\x03\xfa\xb3\xba\x73\x91\xe6\x78\x3e\xa7\x12\xb2\x1d\x7b\x85\xe0\x23\xdd\x93\x09\x46\xba\xb2\x83\xee\xf4\x8d\x7b\x5b\x76\x4e\x70\xac\x17\xfb\x9a\x83\xca\x01\x83\x01\x7d\x24\xaf\x0b\xdc\xb2\xe1\x5c\x61\xed\xd9\xe3\xd8\x05\xba\xb3\x2f\xcc\x59\xec\xce\xb1\x03\x4e\x00\xbf\x40\x9c\x78\xeb\xda\x4d\x70\xa8\xf9\x14\x9c\x2c\xd0\x1d\x71\x56\xb5\x39\x81\x1c\xcc\xab\xb4\xfd\xd4\x76\x8e\xbc\x3d\x3c\x3c\xd0\xa8\xb6\x96\xaf\x07\xcc\x0d\x42\xa2\x3b\x32\xf0\xc4\xd0\x5a\xeb\xa4\xa4\xfb\xdc\x3a\x11\x1b\x9c\xa6\x90\x5a\x5a\x1b\xe5\x90\x9b\x7b\x72\x61\xfd\x65\x6d\x69\x0f\xcc\xcc\xbd\xd3\x0b\x6c\xce\xe4\x82\xe3\x9c\x6c\x18\x07\xf4\xa1\x76\x71\xbc\x9e\x70\x49\x86\xf3\x45\xc7\x1a\xba\x53\x8f\xe7\xd5\xa3\xd3\x21\x02\x52\xa6\x0a\x7f\x31\x2a\x5e\x6b\x8e\x78\x83\x34\xd0\x1d\x42\xa0\x3b\x71\xcc\x18\x7c\xab\xf2\x6c\x95\x9c\x55\x66\x81\x53\xc0\x34\x44\xa5\xed\x73\x58\x2b\x3c\xdc\x5e\x97\x38\xc5\x68\x86\x53\xe7\x34\x44\x81\x33\x22\x16\x8c\xc7\x80\x41\xcb\x06\xc3\x4f\xb5\x27\x15\x90\x70\x65\x09\xcd\xea\x5b\x37\xf9\x72\x52\x10\xb9\x21\x78\x0d\x29\x22\x3b\x30\x7e\x17\xec\x0a\x06\xf4\x42\x89\x6a\x63\xe8\x86\xc8\xef\xfa\xce\xed\x87\x2d\x64\xb7\x64\xad\xee\xe3\xbd\x7d\x5a\x11\x3e\x62\x5a\x82\xeb\x20\x94\x36\xd4\x30\x87\x18\x55\xf4\xe3\x4f\x75\x19\x32\x15\xaa\xa3\xe8\x18\x7d\x55\x9c\x93\x55\x06\xca\x42\x15\x84\x37\xfb\xf4\x84\x02\xee\x8e\x6b\x0d\xa1\x59\x75\xe7\xcc\x36\x2a\x92\x58\x72\x50\xde\xa9\x31\x0e\x31\xef\x48\x05\xa5\x6e\x2c\x69\xee\xe6\xd6\x49\x9e\x24\x90\xdf\x85\xe6\x40\x7f\x37\xe1\xa3\x0f\xfc\x1f\x5d\x21\xd7\x67\x9a\xef\x1e\x65\x5e\xc5\x4f\x2f\x9e\x87\x10\xd4\x00\x7e\x8e\x6d\x91\x70\x29\x6a\xcc\x20\xbb\x1f\x80\x87\x6d\xc1\x36\x60\xc2\x05\xdb\x1c\xc1\xb9\x91\x0a\x4d\xbb\x60\x9b\x8a\xf9\x0d\xdb\xec\x23\x7f\xcc\x76\x79\x5e\xe6\xcd\x16\x79\x7b\x69\x67\x3b\xe7\xa2\xbe\xf6\x2c\x2d\x6b\x45\xf3\xcd\xdc\xa7\x6c\x0a\x0a\xe8\xb5\x17\xd4\xdb\x57\xdf\x04\x0f\x5f\x5d\x49\xc3\x9f\xdc\x22\x68\x89\x66\xd4\xd9\x95\x2f\x40\x87\x5c\x88\x03\xa7\x5c\x88\x51\xc7\x5c\x34\xba\x93\x39\x96\xf5\x86\xf1\xe1\xdc\xf3\x90\x0b\x34\x7b\x18\xb8\xa1\x8c\xd6\xd2\xf1\xd3\xba\xa7\xea\x6e\x9f\x87\x01\xd3\xb3\xb4\xfa\x21\x1f\x07\x9f\x9a\xa5\x8d\x68\x9e\xce\x69\x59\x22\x03\x4d\x52\xd2\xea\x5e\x8e\xd9\x1b\xac\xa6\xd7\x46\xd0\x2c\xdb\xb3\x86\x5e\xe4\x25\xa4\x00\xc9\x4b\x7f\x09\xd2\x84\x8f\x58\xa0\x5d\xbe\x41\x19\x92\x97\x25\x9a\xe5\xa5\xbb\x14\x29\xf0\x23\x79\xc6\x90\x63\x28\x6b\x08\x2b\xe1\xec\x1a\x50\xe1\x3b\x92\x03\x79\x54\xda\x68\xa6\xee\xfe\x7d\xb2\xe7\x1c\x4a\x51\xe4\x90\xe4\x2e\x72\x7f\x72\x37\xe1\xe1\x52\xac\xc8\x4b\x34\x2b\x72\x77\x8a\x31\xc8\x76\x34\x4a\xdb\x97\x4e\x2a\x7c\xe0\x51\x9b\xad\x3e\x19\xa5\x8d\x66\x0c\x97\x7b\xcf\xdb\x14\x2c\x83\xb4\xb8\x58\xe6\x6f\x6c\x35\xe1\xc3\xbf\x45\x96\x8d\xdf\x5c\x51\x29\x4f\x5b\xdb\xaf\x86\xcb\x1a\x2c\xe3\x68\xa6\xac\x39\xb3\x06\x67\x2b\x01\x38\x31\xc3\x02\xf8\x5d\xdc\x16\x09\xc8\x53\x9b\x99\x33\xd9\x7a\x39\x33\x2f\x4f\xdd\x93\x5a\x44\x89\x21\x7d\xc5\x5a\xdd\xcb\xbc\x25\x10\x8e\xb7\x32\x82\x66\xea\xff\x5e\x8e\xc0\xb1\x97\x06\xe3\x20\xdb\xc9\xa8\x71\x98\x11\x8c\xf5\xe0\x80\x87\x75\xb6\x2a\x40\x49\xab\xf4\xfd\x6c\x5b\x12\x01\x13\x57\x59\x41\x33\x7d\x71\x13\xe5\xa0\x29\x89\x46\xdf\x4f\x54\x49\x4c\x46\x4e\xcd\x72\xf4\xed\x89\x72\xe4\x02\x47\x33\x6d\xcb\x31\x69\xcb\xdf\xaf\xa7\xec\xa1\x59\xe9\x5c\xe2\x68\xc9\xe9\xaa\x3d\xd4\x89\x9d\x06\x8c\xcf\x95\x6f\xd3\xd0\xd1\xb6\xaa\x46\x8b\x7e\xd8\xdf\x6c\x31\xf1\xa2\x85\x24\x29\xd7\xd3\x00\xc1\xbe\x68\x61\x1d\xe1\x91\x5d\xe9\xd0\x7e\x69\x59\xb4\xde\xb9\x68\xde\x78\x7c\x04\xdb\xda\xaf\x05\x72\x84\x57\xde\x62\xa3\x3f\x63\x4a\x6f\xf7\x67\xdc\xb0\x6f\xd3\x3f\x1b\x27\x4e\x12\xc8\x8a\xe0\x36\xca\x11\x1e\x68\xcb\x05\x1c\x66\x4e\xa8\x40\x77\xea\xbf\x87\xf8\x06\xce\x7a\x73\x0c\xe5\x4d\x9f\xef\xeb\xff\x7a\xea\x0f\x60\x23\x6c\x82\x7f\x27\x73\xe1\xe9\x33\x7d\x82\xb4\xf3\x9e\xbc\x4b\xe6\x9b\xe0\xe1\xb5\xe7\xa7\x6c\x22\x24\xe3\x24\x7c\xf5\xf9\x29\x43\xb3\xa7\x63\xd6\xd4\x77\x75\x4c\xec\x94\xea\x4c\xdf\x39\x9d\x0b\xaa\x79\x1f\xa8\x75\xbf\x41\x8d\x5b\x2c\xd1\x4c\xb8\x7f\x51\x24\x06\x4c\xe1\x53\xda\x5e\x6e\x4d\x78\x38\x72\x12\x6f\xd1\x4c\x9e\x38\x4f\x9e\x15\x92\x81\x7a\x0c\x94\xba\x9f\x20\x7b\x83\x3e\x03\x65\x04\xcd\xd4\x7f\x37\x47\x4e\x70\x0e\x21\xa9\xf4\xfd\x2c\x5b\x12\x01\x69\x2a\x2b\xc8\xcc\xb8\xdb\x43\x94\x16\xa9\x24\x79\x99\x61\xc8\xa2\xee\x2e\xce\x01\xe2\xaa\xa8\xef\x89\x86\xf4\x40\x2b\x62\xca\x13\xb4\x48\xef\xed\xa3\xdb\x23\x90\xd9\xe3\x4a\xdb\xcf\xfe\xd8\x99\xe3\xe3\x07\x3d\xe5\x6a\x8e\x66\xd2\x3d\x69\x5c\x3c\x0b\xd0\x16\xbf\x46\xdf\x06\xbb\xbb\xc4\xda\x12\x03\x63\xae\x55\xd1\x4c\x5f\x9c\xfd\x61\x12\xa7\x82\xad\x00\xa5\x8f\x05\xf0\x11\x90\x34\x79\xbe\xc6\xfc\xb1\x96\x1a\xd8\xab\x67\x4d\xa0\xfb\x1a\x67\x0f\x15\xbe\xa0\x19\xe0\x93\xb3\x00\x5e\x2a\x1d\x91\xc1\x3c\xb4\x32\xba\xc7\xfc\x9c\x66\xc4\x4d\x82\x64\xaa\xdd\x00\x28\x29\x2b\x04\xdf\x47\xd3\x93\x09\x56\x56\x54\x76\xd0\xbd\xbd\x71\x7d\x41\x72\xc9\xe9\x02\xd0\x9f\x64\xf4\xbd\x74\xdb\x12\xd0\x49\x86\x1d\xb0\x81\xee\xd0\xaa\xe8\x5e\x5f\x86\xcd\x36\xec\xa8\xba\x73\x0e\x85\x1c\xa4\xa6\xb4\xbd\x2e\xa4\xe1\x8f\x51\x53\x36\xd0\x3d\x75\x1f\xa2\x26\x69\x0e\x99\x2b\xa5\xd5\xfd\x04\xf3\xf0\x73\xa4\xb4\x11\x74\xaf\xfe\x3b\x39\x6e\x68\x46\x01\xcb\x9e\x8d\xbe\x97\x65\x5b\x22\x1c\x4d\x6d\x05\xdd\xeb\xcb\x1e\xa2\x12\xb4\x0c\xd0\x02\x1c\xa0\xaa\x44\x26\x09\xe5\x24\x96\x39\x11\xe2\xe8\xf3\x1c\x76\x5b\x88\x15\x98\x20\x98\x8f\xe9\x6d\xeb\xa2\xa8\x6c\x90\xd1\xf0\x5b\xdb\x5b\x7b\xa8\xe3\x02\x95\x2c\xea\xed\x99\x7e\x79\x6d\x5e\x0e\x6a\x90\x56\xb0\xc6\x19\x15\xde\x4c\x3f\x8d\x02\xaa\xfc\x51\x41\xdd\xdb\x67\x57\xd6\x59\x15\x09\xe1\x12\x32\xe9\xaa\x42\xf0\x65\x9e\x9e\x4c\xa8\xde\x93\xca\x0c\xfa\x97\xbd\x71\x33\xa6\x6b\x16\x53\xf9\x3c\x29\x31\x17\x84\x03\xba\x8e\x76\xa0\x7c\x3f\x74\x8d\x70\x5c\x6f\x33\xd9\x7e\xbb\xa0\x5b\x92\x38\xde\xcb\x5a\x7a\x60\xfd\xa8\x86\x40\xff\x2a\xe8\x37\x7d\x37\x15\xeb\xde\x8f\xdd\x08\x90\x73\x15\xd1\xef\x34\x91\x4b\x38\xd6\xfd\x4e\x84\x8c\x67\xeb\x6d\x32\xc7\x27\x4e\x0d\xe1\xcb\x98\x7d\xa1\x50\x6d\x9e\x66\xdb\xcf\x6f\xd5\x9d\x2b\x6f\xae\x49\xa6\xdd\x02\x60\x6d\x11\xbc\xa4\xbb\x32\xe1\xf6\x3a\xb5\x76\xd0\x37\x7b\xe3\xa6\xcc\x25\xa0\x37\x4a\xab\xfb\xc9\x36\x02\x01\x99\x72\xb9\x45\xdf\xd4\x7f\x27\x47\x40\xfb\x63\xed\x6d\x79\xac\x8f\x6c\x73\x8c\xcf\xb8\x39\xfa\xe6\x6c\x66\x6c\x08\x96\x4b\x48\x9d\xc3\x02\xf8\xd8\x75\x45\x82\xa5\x9e\x35\x83\xbe\x9b\xab\x9b\xed\xfc\xc3\x03\x84\xeb\xfc\xc3\x83\x9f\x69\x23\x10\x90\xe7\xfc\xc3\x03\xfa\xae\xfe\xef\xe1\x78\xd4\x91\xd7\x3e\x96\xad\x63\xae\xf7\xf1\x6c\x89\x84\xaa\x07\x58\x2b\x8a\xaa\xba\xee\x21\x2b\x58\xfc\x08\x99\x73\x5d\x43\x1c\x20\xdc\x11\x0a\x48\xd9\xd8\x51\xa4\xcd\x9d\x97\xf6\xe4\x41\xf0\x0f\xff\xf3\xdb\x2b\xb0\xb7\x48\x47\x39\xa1\x2b\xfb\xca\x19\xbd\x71\x81\xb1\x82\x2e\x67\x77\x1f\xfe\xe7\xb7\xef\x64\x3e\xdb\xef\x0f\xc6\x93\x92\x13\xc8\x72\xcc\x1a\xc2\xeb\x81\x9e\x50\xb8\x6f\xbc\x32\x84\xbe\x57\x77\x2e\xde\xdb\x78\x89\x0b\xc8\xa9\x7f\x16\xc0\xc7\xb9\x2b\x12\x8c\xb1\x35\x83\x7e\x4c\xf5\xd5\xc9\x16\x50\x74\x6f\xbd\xe5\xf6\x36\x78\xa1\xbd\x7d\x40\x3f\x2e\x9d\xa4\xf2\x4c\x90\x78\xc5\x41\xd5\xc5\x16\x88\x97\xe6\x8e\x18\xb4\xdb\x4f\xc3\x91\x1f\xd7\x57\xe3\x9c\xd2\xc4\x07\xfd\xc8\xb3\x19\x4d\x0b\x2c\x57\xfc\x98\x76\x77\xab\x3d\xd2\x41\xb9\xbe\x9a\xd9\x7b\x67\x83\x64\x0b\x9a\x74\xbe\x3d\x30\xe9\x7c\x3b\x6a\xd2\xf9\x50\x9f\x95\x25\xfa\xb1\x67\xde\xf8\xb6\xc4\x12\x30\xdc\xad\xd5\x6d\xa8\x6b\xc1\x68\x2b\x78\xd0\x7e\xbb\x5a\x11\xfd\xb8\xc5\x72\xe9\x98\x1f\xb6\x15\x19\xe0\xe7\x5b\x69\x7b\xd3\xa4\x09\x0f\x97\x26\x22\x93\xe8\x87\xc8\x9c\xbf\x4d\x2a\x10\xba\x2c\xb8\xc1\x38\x44\xb5\x23\x15\x96\xb0\xb6\xa4\x69\xcf\xd4\x9d\x9b\x3b\x70\x80\x7b\xdb\x19\xbf\x76\x16\x41\x0f\x82\x15\x3d\xb9\x49\xd4\x7d\x1e\xd8\xe3\x62\x95\xd1\xa5\x60\xc5\xc0\xbe\x91\x4a\xf5\x87\x19\x0a\x77\x96\x41\xcf\x38\x07\x75\xda\x1b\x7d\x5f\x46\xe8\x48\x04\xcb\x04\xc6\x0a\xfa\xb7\xbe\xb8\x52\xff\x85\x14\x09\x11\x80\x96\x88\x05\xf0\x51\xed\x8a\x04\xe3\x6a\xcd\xa0\xff\x98\xab\x93\x2d\x2d\x27\x09\x59\x64\x18\xd4\x85\xdf\x46\xf1\xe5\xfa\xf4\x85\x96\x3d\xb9\x49\xb4\xfb\x6e\x60\xce\xaf\xb4\xd1\xa7\x17\x5a\x9e\xd9\x87\x81\x9f\x40\x8d\xf1\x9f\xbd\x10\x35\x55\xd8\xc8\xb4\x05\xf0\xb9\xa9\x2b\x32\xd0\x1b\x56\x59\x11\xd9\x3b\x32\xfd\xc2\xd8\x23\x21\x25\x28\xc9\x2b\x08\x6f\x3e\xef\x09\x85\xcb\xe9\x95\x21\xf4\x1f\xc6\xbe\xe8\x3b\x67\x6e\xaf\xc4\xc0\xe7\x7a\xf6\x91\x8e\xf2\xc2\xe4\x6d\xce\xfa\xac\xed\xed\x39\xf4\xf3\xff\x07\x00\x00\xff\xff\x0b\xee\x5b\x33\x10\x3f\x01\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x7d\x4b\x77\xdb\x38\xb6\xee\x3c\xbf\x82\xab\x33\x39\x67\xdd\x16\x3a\x95\xd4\xe9\xba\xa7\xee\xc8\x56\xe2\xc4\x8e\xed\x38\x96\x3b\x49\xf7\xa4\x16\x44\x42\x12\x6c\x92\xa0\x01\x50\x92\xfd\xeb\xef\xc2\x83\x4f\x41\x90\xc8\x6d\xd8\x03\x93\x22\xf6\xfe\x36\xbe\x0d\x10\xc4\x1b\x6f\xa3\xc9\xcb\xfd\xbd\x79\x1b\x5d\xd2\x98\xe4\x82\x24\x91\x64\x91\x5c\x91\xe8\xa4\xc0\xf1\x8a\x44\x33\xb6\x90\x1b\xcc\x49\x74\xc6\xca\x3c\xc1\x92\xb2\x3c\xfa\xaf\x93\xd9\xd9\x7f\x47\x65\x9e\x10\x1e\xb1\x9c\x44\x8c\x47\x19\xe3\xe4\xcd\xdb\x28\x66\xb9\xe4\x74\x5e\x4a\xc6\xa3\xd4\x00\x46\x78\xc9\x09\xc9\x48\x2e\x05\x8a\xa2\x19\x21\x1a\xfd\xfa\xdb\xdd\xf9\xf4\x53\xb4\xa0\x29\x89\x12\x2a\x8c\x12\x49\xa2\x0d\x95\xab\x37\x6f\x23\xb9\xa2\x22\xda\x30\xfe\x10\x2d\x18\x8f\x70\x92\x50\x65\x18\xa7\x11\xcd\x17\x8c\x67\x26\x1a\x9c\x2c\x31\x4f\x68\xbe\x8c\x62\x56\x3c\x71\xba\x5c\xc9\x88\x6d\x72\xc2\xc5\x8a\x16\xe8\xcd\xdb\xe8\x4e\xd1\x98\x9d\x55\x31\x11\x06\x56\xdb\x94\x2c\xfa\x37\x2b\x2d\x87\x16\x5d\xeb\x85\xbf\x47\x3f\x08\x17\xca\xc8\x7b\xf4\xee\xcd\xdb\xe8\xbf\x94\xc8\xdf\x6c\xe0\xdf\xfe\xfb\xff\x45\x4f\xac\x8c\x32\xfc\x14\xe5\x4c\x46\xa5\x20\x2d\x64\xb2\x8d\x49\x21\x23\x9a\x47\x31\xcb\x8a\x94\xe2\x3c\x26\x0d\xad\xda\x02\x8a\x74\x04\x14\x06\x9b\x4b\x4c\xf3\x08\x6b\x1a\x11\x5b\xb4\xc5\x22\x2c\xdf\xbc\x7d\xf3\x36\xd2\x7f\x2b\x29\x8b\x3f\xff\xf1\x8f\xcd\x66\x83\xb0\x8e\x2e\x62\x7c\xf9\x8f\x8a\xdd\x3f\x2e\xcf\xa7\x9f\xae\x67\x9f\x26\x3a\xca\x6f\xde\x46\xff\xca\x53\x22\x44\xc4\xc9\x63\x49\x39\x49\xa2\xf9\x53\x84\x8b\x22\xa5\x31\x9e\xa7\x24\x4a\xf1\x46\x25\x9c\x4e\x1d\x9d\xe8\x34\x8f\x36\x9c\x4a\x9a\x2f\xff\x1e\x09\x9b\xea\x6f\xde\x76\x52\xa7\x71\x57\x15\x3d\x2a\x3a\x02\x2c\x8f\x70\x1e\xfd\xed\x64\x16\x9d\xcf\xfe\x16\x9d\x9e\xcc\xce\x67\x7f\x7f\xf3\x36\xfa\x79\x7e\xf7\xe5\xdb\xbf\xee\xa2\x9f\x27\xb7\xb7\x27\xd7\x77\xe7\x9f\x66\xd1\xb7\xdb\x68\xfa\xed\xfa\xe3\xf9\xdd\xf9\xb7\xeb\x59\xf4\xed\x2c\x3a\xb9\xfe\x77\xf4\xf5\xfc\xfa\xe3\xdf\x23\x42\xe5\x8a\xf0\x88\x6c\x0b\xae\xe2\xcf\x78\x44\x95\x23\x49\xa2\xd2\xb4\xca\x40\x55\x04\x54\xfe\x50\xbf\x45\x41\x62\xba\xa0\x71\x94\xe2\x7c\x59\xe2\x25\x89\x96\x6c\x4d\x78\xae\xb2\x47\x41\x78\x46\x85\x4a\x4e\x11\xe1\x3c\x79\xf3\x36\x4a\x69\x46\xa5\xce\x45\x62\x97\x94\x32\xf3\x92\xef\xd6\x1b\x5c\x50\x9b\x9d\xfe\x8c\x62\x9c\x91\xb4\x9d\x7c\xeb\xdf\xde\x3c\xd0\x3c\xf9\x33\x9a\xaa\x90\x29\x96\x38\x65\xcb\x37\x19\x91\x38\xc1\x12\xff\xf9\x26\x8a\x72\x9c\x11\xab\x38\x89\x4d\xf8\xe4\x37\xf4\x0e\xfd\xf6\xdb\x44\xe4\xb8\x10\x2b\x26\x27\x19\xa6\xf9\x9b\x28\x4a\xf1\x9c\xa4\x42\x29\x45\x2a\xad\x2b\xad\x07\xfd\x60\xc7\xb4\x05\x43\xeb\x2a\x72\x1f\xd0\x3b\xf4\xce\x2f\x9b\x32\x9c\x10\x7e\x94\x0a\x2f\x73\x49\x33\xd2\xc8\xda\x48\xcf\xae\x4f\x6e\x66\x5f\xbe\xdd\xf9\xb5\x0a\xce\xd6\x34\x21\xfc\xcf\x48\x73\x53\xe9\xab\x78\xd9\x60\x43\xd1\x8b\xdc\x03\x50\x8f\xda\x5e\x6d\x8c\x3b\xb8\x44\xd1\x63\x89\xf9\x43\x29\xda\x91\x57\x46\xce\x68\x8e\xd3\xb6\xf6\xc4\x21\xf8\x0e\xbd\x9b\x5c\xbd\x7f\x13\x45\x98\x4b\xba\xc0\xb1\xb4\x29\x62\x14\x70\x2c\xe9\x9a\x64\x8f\x55\x24\x96\x9c\x95\xc5\x79\xf2\x67\xc4\xf8\xb2\x72\x84\x96\xb4\xe1\x15\x88\x12\xe9\x22\x58\x01\x11\xaf\x48\x46\x44\x85\x37\x89\x68\xf2\x67\xd4\x93\xb1\x85\x47\xb4\xc0\xa9\x20\xf5\xb3\x02\x0b\x41\xd7\xa4\xfb\xf8\x1e\xaf\xf1\xdd\x53\xd1\x06\xec\xc7\x0c\xa9\xa2\x8d\xe5\x24\x97\xa8\xb2\x83\x4e\xf4\xcd\xd5\xf7\x69\x15\xd4\xa6\xbc\x8a\x01\x6c\x57\xb1\x97\x68\x1d\x5c\x71\x94\xbc\x7c\x59\x8a\xab\x18\x9d\xac\xe2\x3d\xc4\x26\x1b\x01\xe2\x36\xd9\x88\x03\xf4\x1a\x89\xe3\x19\xb6\x95\xfb\xda\x2f\x9f\x07\x56\x31\xda\x08\xf4\x53\x38\x5d\x94\x3d\x16\x00\x07\x65\x8f\x85\xd7\x3d\x4d\x78\x38\x7a\xd9\x63\x81\x4e\xae\xbe\xdf\x38\xe9\xe5\x4f\xef\x3f\x00\xf8\x29\x75\x1b\xaa\x4a\x26\x53\xbb\x69\xc5\xab\x2d\x70\x4c\xb4\x1b\x10\xa4\x55\xd1\x89\xfa\xff\x11\x4b\x7c\xa6\x9f\xb6\xa3\x5e\xe4\x90\xac\x5b\xe4\xfe\x8c\xdb\x84\x87\x4b\x99\x22\x17\xe8\xa4\xc8\xdd\x19\x4f\xbc\x07\xb0\x13\xef\xbd\xe4\xea\xe0\x70\xdc\xc4\x7b\x74\x32\x7b\xef\x66\x96\xff\x06\xa1\x96\xff\xe6\xcd\x71\x4d\xf8\xd0\x0c\x27\xf2\xdf\xd0\xc9\xec\xfa\x37\x77\x76\x13\x92\x70\x2a\x1e\x20\x31\x37\x08\xfe\x94\xe9\xc8\x04\x4c\x1e\x63\x07\x9d\xd8\x1b\x67\x42\xc9\x8c\x41\x5e\x31\xa5\xee\x25\xdb\x12\x08\xc7\x54\x19\x41\x27\xea\xff\x5e\x8e\xc5\x8a\x70\x32\xd9\x90\xb9\x60\xf1\x03\x91\x40\xca\x3d\xb4\x83\x1e\x70\xcb\x07\xab\x0e\xd4\x26\x51\x6d\x12\xfd\xac\xee\xdc\x2e\x62\x19\xc4\x25\x2c\xf3\xbb\xa0\x0e\x0f\x98\x07\x58\x86\x4e\x24\xcb\xf6\xd1\xa3\x5b\x18\x41\xba\x3d\x44\x91\x6e\x27\x19\x1e\xf1\xad\xef\x22\x10\x21\xf0\x92\xe6\x4b\x28\x4e\x99\x4a\x0a\x8f\xce\x63\x49\x5a\x79\x73\x1c\x86\xd8\xc9\xf0\x43\x11\xd6\x38\x1d\x13\x8b\xe1\x39\x88\x6e\x51\x9c\x52\xf5\x2b\xc3\x85\xce\x4e\x74\x7b\x85\x8b\x6e\x9e\x1a\x86\x53\xa5\x67\x85\x56\xfd\x86\x60\xda\xb4\xad\x20\xd5\x4f\x58\x2c\x75\x32\x5b\xb8\xef\xea\x1e\x80\x25\x88\xb4\x48\xb3\x7e\x61\x33\x08\x47\x27\xba\x45\xfa\xa1\xee\x9d\x6f\xf6\x9a\x33\xc0\x7b\xbd\xe6\xcc\xfb\x56\x37\xe1\x03\xb2\x9d\xbb\xce\xd2\x40\x0d\xcc\x96\x6b\xce\xd0\xc9\x9a\xb3\x23\x5c\xd9\xae\xe9\x54\x6a\xee\x9a\xce\x46\x4c\xe2\x0d\xc0\x71\x5a\xdf\xeb\xba\xb6\x44\xb8\x77\x76\x23\x50\xbc\x41\xd3\x8d\x33\x6f\x6c\xc4\x24\x49\xe6\x30\x96\x49\x32\x3f\x44\xb3\x11\x19\x5e\xbe\x19\x75\x21\x39\xc1\xe1\x3f\x91\x1b\x81\x92\x64\x8e\x3e\x26\xf3\x61\xaf\xa5\xd1\x33\x91\x54\xda\x33\x7d\xb7\xcf\xe5\x24\x86\xb4\x6a\x0c\xc0\x21\x97\x37\x22\x41\xbd\x45\xe2\xf7\xe8\xd3\xd4\xdd\xc2\xd1\xb1\x80\x54\x9d\x0d\xc0\x61\xa6\xe1\xab\xcf\x9a\xa9\x40\x9f\xa6\xb3\xbd\x4c\x1f\xa0\x4c\x1f\x0e\x33\x7d\x78\x1d\xa6\x0f\x02\x7d\xfa\xba\x97\x29\xc5\x90\x8a\xb0\x01\x38\xc4\x94\xbe\xce\xbb\x4e\x71\x86\xce\x4f\xae\xf6\x31\x7d\xa0\x39\x11\x14\x98\xae\x16\xe4\x10\xe3\xae\xd8\xa8\x62\xd2\x42\x4c\x16\x94\x93\x15\x13\xe1\xab\x83\x1b\x81\xac\x4d\xf4\xd5\x5c\x07\x97\x9a\x55\x5c\x2b\x80\x33\xfb\x7b\x6f\x92\x64\xd0\xe4\xc8\x0e\x27\x45\xf6\x2a\xaf\xd9\x43\x26\xd0\xd7\xab\xbd\xaf\x59\x8a\xb3\x79\x82\x61\x64\x0d\xc6\x21\xbe\x1d\xa9\xa0\x94\x8d\x25\x74\xa9\x2f\xfb\x88\x83\x46\x55\xb4\xfe\x21\xc2\xaf\x30\xa2\xb2\x11\x28\x7b\x44\x7b\x46\x52\x54\x14\x40\x7d\x68\x06\xe0\x20\xcd\x57\xe8\x41\x53\x3c\xc5\x03\xba\x9a\x7d\xdd\xc7\x54\x40\x7a\xd6\xb5\xfe\x21\x9e\xb5\x44\x50\x9a\xe2\x03\x9a\x7d\xd8\x4b\x12\x5a\x89\x16\x87\x2b\xd1\x62\x4c\x25\x7a\x04\xcf\x64\x8e\x66\xfd\xfa\x6f\x2b\xa2\x04\x58\x00\x0b\x72\xb0\x00\x6e\x44\xc2\x32\x25\x02\xcd\x88\xbb\x43\x54\xc5\x02\x34\xb2\x62\x00\x0e\x32\x7d\x85\xf1\x15\xc5\x34\x17\x68\xb6\x67\x84\x45\xc5\xe2\x11\xca\xf4\xf1\x30\xd3\xc7\xd7\x61\xfa\x28\xd0\xec\x71\x3f\xd3\xcd\x02\xc8\x74\xb3\x38\xc8\xb4\x16\x09\xcb\x74\xb3\x40\xb3\x9f\x67\xfb\x98\x4a\x8e\x73\x91\x62\x49\x60\x7c\x6b\x98\x43\xac\xfb\x82\x41\xb9\xd7\xc6\xd0\x5d\x75\xe7\xf4\xc3\x73\xc9\x21\xfc\x95\xba\x97\xb7\x12\x98\xcc\x53\x36\xbe\x77\x43\x23\x8c\xec\x42\x1e\xe8\x37\x65\x0a\xa9\xc8\xa2\xd3\x94\xcd\x67\x84\xaf\x69\x3c\xb0\x17\x53\x43\x98\x9e\x50\xdd\x07\xea\x04\x31\xce\x9b\x63\x1e\xb3\x04\xe0\x7d\x0b\x60\xc3\x9d\x3d\x86\x5d\x91\x81\x03\x9d\x56\x19\x9d\x9a\xab\xb3\x13\x70\x8e\x05\x88\x41\x9d\x54\xd5\x84\xb6\x56\xdc\x62\x96\x0b\x89\x5b\x8e\x27\xdb\x78\x85\xf3\x25\xb9\xe1\xac\x20\x5c\x3e\xd5\x01\x0b\x9a\x36\xb9\x66\x45\x70\x42\x78\xfd\x93\x93\x45\x7d\x2f\x68\x56\xb4\x24\x25\x7b\x20\x39\x7d\x1e\xe2\x9e\x2a\x9a\xa8\x8a\x1c\x9a\xda\x9b\x4b\x1b\x72\x84\x6e\x61\xe3\x8f\x3e\xf5\x08\x0d\xc0\x30\x54\xd0\x19\x4d\xc9\x00\x2d\xe3\x1b\xf4\x45\x5f\x06\xe8\x71\xb2\x40\xb7\x64\x31\x3c\x7e\x33\x7d\x19\xa0\x57\xa5\x09\x47\x77\xf6\xae\xa3\xdc\xe4\x9b\x7f\xfe\x0e\xcb\x77\xff\xfc\xdd\xff\xe2\xb4\x24\x06\xbf\x37\x4a\x17\x9d\xea\x8b\xfb\xad\x21\x38\x07\xc4\x9e\xe0\xdc\x57\xe8\xb6\xc2\x0f\x94\x95\xad\x41\x63\xa3\x1a\xa7\xf8\xd8\x89\x54\x2d\x5d\xc7\xbb\xdb\x8a\xc3\xb0\x42\x58\x29\xa2\x53\x82\xf3\x41\xe5\xae\xd2\xd2\x71\x47\x53\xf5\xff\x08\xdd\x3a\xc3\xd5\x06\x5d\xf9\x8c\xe0\x7c\xb2\xc6\x29\x4d\xb0\x64\x1c\x96\x62\x0d\xce\xa1\xb4\xdb\x91\x0c\xf6\xc5\xd3\xdc\x6b\x6b\xda\x0b\x3f\xaa\x5f\xce\x4f\x16\xc1\x39\x05\x8c\x95\x19\x7d\xef\x7b\xd7\x96\x18\xfa\xde\x69\x5d\xcd\xe2\xfc\xdb\xde\xf7\x4e\x48\x9c\x02\x7a\x16\x6a\x88\x43\xa9\xd8\x16\x0a\x9a\x80\xda\x90\x66\xad\xef\x9c\xe9\x46\xf3\xe4\x09\xc0\x59\xa9\x7b\x53\x4d\x09\x4c\x62\xb1\xee\x3d\x59\xd0\x2d\x49\x7a\xcf\x1e\xd6\xc5\xc8\xe4\x55\xea\x28\x16\x6b\x74\xaa\xee\xa6\x62\xdd\x4b\xe3\xe3\x00\x74\x9c\x0c\xc4\x99\xba\xbd\x24\xf9\x52\xae\x46\x41\x3d\xac\x0b\x03\xf4\x95\x3c\xe9\xd1\xe5\x1b\x4c\xb9\x3b\xe3\xb1\x9c\x4a\x40\x57\xa5\xd1\xf7\x66\xb9\xb6\x44\xb8\xfc\xa6\xad\xa0\x53\x7d\x71\xe6\x34\x06\x98\x22\x33\x67\xde\xf9\x31\x4d\x70\x40\x7e\x5b\x74\xca\xb6\x4e\x66\x1c\xd3\x5c\x72\x02\xa9\xee\x56\x10\x5e\x96\x3d\xa1\x70\x5c\x2b\x43\xe8\xb4\xba\x73\xf3\x66\x1b\x50\x1d\x5f\xeb\xfb\x19\xb7\x24\x8e\xaf\x75\x0c\x65\xab\x8c\xa0\x53\x7d\x71\xf1\x8c\xf1\x62\x41\x68\x0e\x60\x5a\x21\xf8\xb8\x56\x32\x93\x58\x01\x0e\x4f\xe2\x1e\x4a\xca\x70\x32\x12\x69\x98\xfb\x2a\x8b\x48\x5b\x43\x53\xfb\x73\xaa\x7e\x0d\xaa\xa9\xd5\x40\x2a\xea\x35\xce\x25\xc3\x89\x03\xab\xf2\xab\x10\x38\x4f\x38\x7e\x4c\x21\x89\x53\x83\x78\xd3\xa7\x0e\x0e\xe8\x4a\x1b\x13\x34\xad\xee\x9c\xac\xe7\x90\x1a\xa7\xd2\xf6\x7d\xb1\x5b\xe1\x03\x63\x3f\x67\x1c\x4d\x4f\xbf\xdd\x3a\xbf\x73\xf1\x0a\x4b\x11\x73\x5a\x00\x26\xc7\x36\x18\xde\x84\xea\x4b\x85\x4b\xaf\xda\x12\x9a\xae\xb0\x9c\xe9\x5b\x67\x8a\xad\xca\x1c\x50\xb3\xd4\xea\x7e\xca\x8d\x40\x40\xb6\x65\xfe\x80\xa6\xea\xbf\x93\x63\x36\x11\x90\x01\x66\xa3\xef\x65\xd9\x96\x08\x47\x33\x43\x53\xe7\xac\x86\x38\x83\x4c\x67\x50\xda\x7e\x72\x63\x26\x30\x0c\xa5\x46\x05\x9a\x5e\x9d\x3b\xc7\xcd\x63\x86\x01\xeb\x94\x94\xb6\x97\x1e\x1b\x3f\x59\x58\xe9\x8e\x9e\xdc\xa1\x94\xff\x8f\x8c\x61\xc6\xc7\x01\x1c\x97\x38\xb8\x40\x53\x76\xe2\x5c\x5b\x15\xb3\x8c\xc8\x04\x92\x28\x4a\xdf\x9f\x2c\x2d\x89\x11\xbe\x51\xda\xe1\xb3\xad\x36\x83\xa6\xfa\xe2\xf6\x53\x2e\x4a\x48\x0d\x40\xeb\xfb\xfd\xd4\x92\x08\x48\x54\x59\xd1\xfd\xc6\x65\xba\x87\xa8\xe4\x2c\x9d\x97\x90\x82\xa8\xc6\x38\x40\xb8\x2b\x15\xaa\xf6\xdd\x18\x52\xbc\xd5\xed\x69\xe9\x1c\x82\x8c\x19\x87\x4c\xe9\xd1\xea\x7e\xc6\x3c\xfc\x44\x1e\x6d\x04\x4d\xd5\x7f\x37\xc7\x32\x5e\xc1\x06\x4e\x6a\x08\x3f\xd7\xae\x50\x40\xbe\xd6\x10\x9a\x56\x77\x7b\x79\x43\xa6\x81\x58\x80\x83\x9c\xc3\x4f\x03\xb1\x66\x0c\xdf\x8f\xce\xa9\x20\x31\x7f\x2a\x24\xa0\xaf\xd4\xe8\x7b\xb9\xb6\x25\xa0\x6b\x0b\x3a\x60\x93\xa8\x58\x0e\xe9\xa5\x6b\x39\x46\xc3\xa0\x8f\x74\x49\x25\x4e\x67\x74\x99\x63\x59\xf2\xe3\x9a\x88\xf9\x9a\x70\x49\x78\x85\x31\xd5\x97\x63\x3a\xe6\x76\x54\x6f\x3e\xdf\xb8\x9b\x27\x3a\x78\x12\x83\x6a\xb0\x35\xc6\xe1\xb4\x69\x49\x85\xcb\x8a\x86\x72\x9c\x09\xeb\xb1\x69\xe6\x2e\x59\xc5\x1a\x40\xba\xee\xda\x75\x67\x9e\x3a\x78\x60\x9f\x6e\x2c\xd6\x68\xb7\x23\xd7\xda\xdc\x02\x66\xa2\xc4\x5b\xef\x2c\x94\x26\x78\xe8\x66\x03\xf1\x76\xc1\x87\x6f\x54\x30\x30\x49\xb7\x0b\x34\xdd\x2e\x86\xf5\xab\x6c\x17\xe8\x1e\x6f\xb9\x50\x9a\xb7\xce\x1c\xd0\xf8\x7d\xbc\x5f\x1b\x0c\x9f\x7b\x77\xa4\x42\xd5\x2b\x5a\x59\xa9\xc9\x43\xfb\xb8\x0b\xc8\x92\x5d\x0b\x70\x88\xf5\xd1\xeb\x14\x77\x86\x5e\xad\xf6\x44\x12\x11\xbc\x4b\xc3\xda\xd2\x3e\x1b\xba\xc0\xae\xa7\x7b\x47\x84\xdb\xe1\x64\x4e\x9e\x69\x99\x4d\x32\x96\x2f\x19\xe4\xab\xdf\x47\xf2\x26\x81\x5b\x36\x9c\x23\xad\x3d\xf4\xd1\xde\x5c\x19\xbb\x7e\x8f\x3c\x09\x48\x4f\x66\x17\xe7\x38\x6f\xb4\x24\x5f\xd1\x17\x4f\xb3\x47\x67\x03\xa7\x8e\x57\xc1\x84\x5c\x72\xc8\x7c\xd9\x1d\xa8\xa3\xfc\xd1\x13\x7e\x3d\x97\xdc\x58\xc3\x5e\xaf\x88\xc7\x54\x10\xbe\x26\x80\xee\xdf\x5d\xac\xa3\xfc\xd2\x97\x7e\x3d\xc7\xcc\x2a\xcb\x4e\xcf\x98\xda\x24\x8b\x41\xd3\x66\xda\x28\x5e\x6f\xec\xca\x85\xf3\x43\xcb\x56\x55\x69\xfe\x16\xef\xcc\x7e\xa9\x08\x70\x12\x43\x3e\x61\x5a\xdf\x4f\xbd\x25\x11\xec\x9b\xad\x8d\xa0\x8f\xfa\xb2\x9f\xe7\x1a\xb0\x86\xae\x42\x38\xcc\x75\xb2\x3e\x72\x19\x1d\x90\xee\x3a\xb3\x84\x7f\x38\xd7\xbc\x26\x54\xf0\xb2\x00\xcd\x31\xaa\x21\xfc\xa4\xbb\x42\x83\x3b\x03\x6b\x80\xa3\x1d\x07\x79\x39\xac\x2d\xf4\xb1\xba\x1b\x56\x53\xa9\xf5\xb5\xf7\xed\x8f\x3d\x09\x00\x59\xca\x90\xf8\x97\x31\x24\xe1\x97\x30\x24\xb9\x40\x1f\xdd\xcb\x17\x12\x16\x3f\x80\x3e\x25\x5a\xdf\xcb\xaf\x2d\x11\x8e\xa2\xb6\x82\x3e\xea\x8b\x9b\xe8\x33\x8c\xe7\xf3\x21\x9a\xcf\xaf\xc1\xf2\x59\x93\x7c\xde\xc3\x91\xd3\x14\x52\x75\x54\xea\x5e\x8e\x2d\x81\x70\x1c\x95\x11\xf4\x51\xfd\x77\x73\x64\x05\x68\x1a\x91\x05\xf0\xf3\x6c\x8b\x04\x64\xaa\xcd\xa0\x8f\xe6\xea\x62\x4b\x56\x7a\x46\xc5\x78\xb6\x16\xc0\xc7\xb6\x2b\x12\x8c\xad\x35\x83\x3e\x99\xab\x93\x6d\x8a\x85\xa4\xb1\x20\x98\xc7\xab\x09\x27\x02\x50\x9d\xd9\xc5\xf2\xfa\x60\x9f\x74\x38\x77\xb4\x2d\xa2\x4f\xed\x5f\x6e\xd7\x80\x5a\x85\x5a\xdd\xef\x80\x57\x68\x03\x6a\x23\xe8\x93\xfa\xef\xe4\x28\x63\xc0\x40\xa7\xd2\xf6\x32\x6c\xc2\xc3\x11\x94\x71\x82\x3e\xc9\xd8\x39\x42\x49\xd6\x24\x97\x38\xc9\x28\xa0\x95\xd2\x60\x78\xa9\xf6\xa5\xc2\x11\xae\x2d\xa1\x4f\xea\xf6\x44\xdd\x3a\xc9\x6f\x09\x60\xfb\x5b\xa5\xed\x25\xdc\x84\x87\xa3\xba\x25\x31\xfa\xb4\x25\xce\x3d\x70\x17\x38\x26\x73\xc6\x00\xf3\x7b\x2a\x04\x1f\xcd\x9e\x4c\x30\xaa\x95\x1d\x74\x66\x6f\xdc\x94\x85\xbc\x17\x0c\x90\x99\x2b\x04\x2b\xe0\x1c\x3b\x50\xe1\x7d\xc1\xa1\x64\x8c\x32\x3a\xb3\x37\xce\xe1\x84\xc5\x8a\x02\x6a\x87\x4a\xdb\x9b\x70\x4d\x38\x74\x24\x4e\x41\x5d\x34\xbe\x30\x0f\x7e\x65\xe9\x38\xdf\xac\x28\x47\x67\x2b\x3a\xac\xe5\x54\x6b\x5d\xec\x7a\xf3\x58\xd5\x5f\x59\xea\x4e\x07\x9a\x02\x6a\x3b\xad\x95\x7e\xee\x74\x68\xc2\xc3\xbd\x3c\xd4\x2e\xbc\x73\xbe\x34\x34\x25\x93\x0d\x96\xf1\x0a\x46\xd2\x60\x1c\xa2\xda\x91\x0a\x4b\x58\x5b\xd2\xb4\x7f\xaa\x3b\x27\xf7\x14\xcb\x02\xc7\x90\x32\xd2\x22\x78\x79\x77\x65\xc0\xaf\x5b\x17\x6e\xa0\x67\xac\x32\x3a\xb3\x37\xc3\x36\xd8\xdb\x51\x77\xbf\x31\x29\x85\xcc\x2b\xd5\xea\x7e\x87\xd2\xf0\xf3\x4a\xb5\x11\x74\xa6\xfe\x3b\xb3\x0e\x03\x4c\x4b\x5c\x30\xef\xac\xc4\x26\x38\x1c\x3b\x56\xa0\x33\x56\x38\x99\x71\x42\x32\xcc\x41\x7d\x30\x0d\x86\x97\x67\x5f\x2a\x1c\xdd\xda\x12\x3a\xab\x6f\x9d\xe4\x25\x24\x59\xa5\x3f\x59\xe5\xe8\xe9\x9e\x0b\x39\x7e\xaa\xa9\x18\x65\x77\x44\x81\xcb\x49\xc6\x24\x41\x67\x72\xd8\xa6\xac\x3d\xdd\x61\x1b\x8e\xb5\x95\x67\x8b\xbe\x65\x93\x2c\x4b\x9c\x2f\x53\x0a\x98\xa4\x67\x01\x7c\x69\xdb\x15\x09\xe6\x67\x6b\x06\x7d\x36\x57\x27\x5b\xc2\x62\x96\x40\x5e\xde\x0a\xc1\xcb\xb7\x2b\x13\x8e\xb0\xb5\x83\x3e\x13\x36\x55\x37\x4e\xca\x14\xd0\x2b\xb3\xa4\xde\x6e\x98\x26\x38\x1c\x47\x2a\xd1\x67\xea\x1c\x59\x5a\x52\xb9\x2a\x01\x53\x11\x8c\xfe\x01\x7e\x8d\x44\x48\x8a\xab\x72\xae\x58\x7e\x29\x9d\x73\x0d\x96\x8c\x2d\x53\x32\x99\xd3\xe5\x63\x49\x38\x60\xe9\x6f\x0f\xc8\x4b\xdd\x29\x3a\xb8\x7c\xed\xc1\x4c\x5e\xa1\xd7\xca\x98\x44\x95\x49\xf4\x59\xff\x3e\xa5\xcb\xef\xea\xe7\xa0\x02\xb4\x0f\x25\x1e\xd3\x1e\xdc\xec\xfb\xa5\x27\xc5\x62\x9c\x92\x3c\xc1\x90\xe2\xa6\x0b\x74\x44\x8a\xf5\x44\xc7\xa6\x58\x05\x33\x79\x9d\x9d\x88\xad\xa7\x2b\xab\xd6\xcb\x53\xfb\x73\x4c\xa2\xd5\x50\x76\x97\xe2\x2e\xe2\xfe\x0d\x8b\x2d\xff\x84\x2b\x46\xd0\x74\xd3\x28\x47\x24\x5a\x5b\x2e\xb4\x8f\xb5\x2d\xeb\x8e\x8f\xea\xde\xe3\x85\x0c\x53\x40\x2f\x76\x0b\xe4\x08\x1f\xb4\xc4\xc6\x66\x5a\x05\xf1\xba\x19\x56\x59\xb4\xbe\xbc\xc2\x34\x1d\x93\x51\x35\x44\x27\x93\x2a\xa4\x83\x19\xb4\x28\xe7\x02\xf4\xf5\x6b\xc3\x1c\x91\x3c\x1d\xc1\xd0\x6e\x35\xc6\xac\x3b\x6e\xf4\x0f\x8f\x2b\xc4\x8a\x10\x09\x18\xf1\xef\xc0\x1c\xe1\x8a\x8e\xe0\xd8\xbc\x6a\x40\x5e\x37\xb7\x1a\x9b\xd6\xad\x33\xfd\x63\x4c\x8e\xb5\x30\x9d\x3c\x6b\xd0\x7c\xb9\x96\x43\x1a\x19\x8c\xfb\x5b\x18\x4d\x78\x40\x1f\x72\x8c\x3e\x33\xf7\xfa\xee\x25\xc7\x05\xe4\x73\xa1\xd4\xbd\x04\x5b\x02\xe1\x18\x2a\x23\xe8\xb3\xfa\xbf\x8f\xe3\x0a\x32\xaa\x69\x01\x0e\xf1\x5c\xbd\x42\x1d\xd1\x98\xd1\x5c\x57\xee\xd1\xcd\x25\x87\x0c\x0f\x29\x6d\x1b\xe8\xec\xa7\x6c\x85\x0f\x8d\x39\x7b\x40\x9f\x39\x73\x77\x2e\x2e\x39\x63\x6b\x48\x03\x41\xeb\xdb\x60\xc7\x46\x60\x9d\xf0\x41\x3b\xec\x19\x4d\x15\x73\xb6\x7e\x72\x6c\xce\xb5\xe4\x05\x60\xc0\x51\x69\xfb\xb3\x55\x11\xfa\xc4\x4d\x65\x02\x7d\xe6\x85\x73\xbc\x71\x09\x1a\x78\x5b\x1e\x33\xe8\xb6\x1c\x3b\xe0\xa6\x14\xd1\xe7\x7d\x03\x6d\xcb\x12\xaf\xb1\x19\xc7\x06\x2d\x61\xed\xe2\x78\xd3\xca\x25\x19\xae\x24\x50\xd6\x50\x65\x0d\x7d\x56\x3f\xf5\xd0\xf8\x9e\x25\xad\x2b\xfc\x4c\xd2\x18\x43\xa6\xba\xd4\x10\x3e\x2f\xd4\x42\xe6\xa8\xb1\x78\xe4\x81\x57\x7d\x30\xaa\xb7\xb7\x8c\x5f\x00\x29\xa5\x63\x26\xdd\xf4\x51\x00\xe7\x91\xb5\x40\x80\x27\x9b\x35\x48\xa0\xc3\xcd\x1a\x18\x4e\xf4\x91\xe5\x92\x24\x2f\x12\x2b\x4e\xf3\xe5\xbc\x5c\x2c\xc6\xf4\x28\xf6\xb1\x04\x19\xb3\x62\x7a\x17\xe5\x05\xd2\x5e\xb2\x82\x06\x9f\x06\x52\x9b\x33\x67\x89\xc5\x79\x99\xcd\x09\x47\x5f\xaa\xc7\x27\xad\xa7\x83\xea\xc2\x0d\x70\xf5\x4e\x35\xa0\xe7\xf6\xc9\x48\x40\xf5\x6a\x35\x60\x97\xb4\xbf\x26\xeb\x68\xa0\x0c\x17\x0d\xce\xd0\xf3\xe0\x5a\x30\xd5\xe9\x72\x0d\x96\x7d\x32\x12\xd0\x6c\xa9\x5c\xa3\x0d\x3f\x5f\xae\x81\xea\xbc\x6a\x0d\xe4\x6d\xfb\xf1\x58\xe8\xfa\xb5\x6b\xe1\xd6\xcf\x46\x82\xaa\xf7\xaf\x81\x9b\x91\xfe\xa6\x02\x03\x80\x64\x1b\x67\x6c\x16\xd1\x2f\x61\x03\x74\xa7\x7e\x3a\xbf\x7b\xb0\x2d\x0e\x0e\x6e\x6f\xf0\x2a\x5b\x1b\x98\x6d\x0d\xbe\x9c\xee\xd9\xd2\x60\x95\x2c\x00\x35\x1c\xa5\xed\x65\xd8\x84\x87\x23\x98\x2c\x04\xfa\x92\x2c\xdc\x55\x17\x5a\xc4\x2b\xc8\x72\x61\x0b\xe0\x25\xd9\x11\x09\xc7\xd3\x98\x41\x5f\xcc\xd5\xc9\x36\xfd\x03\xc0\x34\xfd\x63\x7f\x23\x68\x95\xfe\x21\x09\x17\xc4\xbb\x25\x5b\x83\x30\x90\x59\xfa\x07\xfa\x92\xfe\x71\xa7\x0d\x1c\xde\x69\xbb\xa7\x78\xf9\x87\xb3\x12\xaf\x53\x61\xbc\x33\xa4\x7f\xe8\xbe\x15\x3e\xbc\x36\x20\x47\x0d\xde\x27\xa4\x20\x79\x42\xf2\x98\xf6\x5a\xa7\x5e\x6a\x07\xa6\xa0\x0d\x4c\x28\x29\x0b\xf4\x45\xba\x47\xd5\x69\x8c\x01\xfd\x24\x4a\xdb\x97\xb7\x5a\xe1\xc3\xe2\xac\x14\xd1\xf9\x14\xbb\xe7\xf2\x51\x12\xff\xf3\xdd\xff\xfd\xe3\x1d\x20\xe2\x16\xc1\x97\x5b\x2a\x99\x89\x39\xd4\x75\x6c\xc6\xa9\x61\x5e\x67\x89\x6b\x65\xae\x3a\x8a\x76\xaa\x2f\x83\xbe\xb9\x35\x84\x89\x31\x9a\xed\x5d\x21\x4b\x97\x39\x85\x1c\x64\x62\xf4\xbd\x89\xa0\x25\x60\xdb\x96\x56\x18\x2c\x2b\xca\x31\xc7\xa0\x74\x50\x74\x03\x7c\x74\x97\xba\x05\xa1\xc9\x92\x8c\x98\x42\xdf\xc1\x00\x9f\xb6\x6d\x71\x40\x2d\x49\x8b\x31\xaa\x95\x35\x30\x5f\x6b\x4b\x76\x1f\xd8\x73\xfd\x63\xf8\x2e\xb0\x15\x88\xc9\x09\x15\x8c\xf9\x35\x06\xc8\x64\x06\x8b\xa3\x3b\x63\x86\x0d\x53\x58\x18\x9d\x1d\x2c\xca\x79\xf2\x99\x0c\x3b\x84\xc0\x82\x34\xa7\x75\x1b\xa0\x71\xa7\x75\x5b\x30\xd3\xee\x31\x40\xc3\x1b\x3d\x16\x44\x55\xfc\x0d\xc4\x4e\xad\xdf\xbe\xfe\xf9\x82\xe6\x54\x14\x90\xe5\xf5\x0d\x86\xb7\x18\xe9\x4b\x85\xcb\xa7\xb5\x25\x74\x5e\xdf\xee\x21\x9f\x96\x5b\xc8\x0e\x25\x15\xc2\x01\xe2\x6d\x99\x90\xb4\xb5\x1d\x45\x3a\x2d\xb7\xee\xbd\xc9\x28\x83\x6c\x46\xaf\xb4\xbd\x54\x59\xf8\x8d\xe8\x95\x0d\x74\xfe\xed\xee\xc4\x49\xaf\x80\xb4\xca\x94\xb6\x97\x5e\x11\xbe\x55\xa6\x6c\xa0\xf3\x9b\x33\xe7\x1e\xae\x94\x03\xc6\x3d\x28\xf7\x0e\x7b\x34\xc1\xe1\xb8\xf1\x18\x9d\x73\x67\x97\x01\xe5\x2c\x87\x1c\x6e\x6a\xf4\xfd\xfc\x5a\x12\x01\x29\x2a\x2b\xe8\x9c\xb3\xdc\x7d\xc0\xe9\x3d\x8e\x1f\x40\x03\x3c\x16\xc0\x57\xe7\xd7\x63\x3c\x5d\xb9\x61\x2c\xac\x2e\xba\x30\x57\x67\x0b\xc0\xca\x6c\x33\x40\xe3\xa5\xc1\xf0\xd2\xe9\x4b\x8d\x22\xb3\xcd\xd2\x8a\xcf\xaf\xab\xcb\x3d\x94\xb6\x80\x6f\x81\xd2\xf6\xd3\xa8\xc3\x8f\x23\x50\x6d\x6d\xa8\x14\xd1\x05\xde\xce\xf7\x45\x1a\xd0\x5e\x57\xda\x36\xd0\xd1\x7b\xb1\x85\x9c\x93\xb6\x6d\x0e\xf4\xfa\x75\x75\xe9\x39\xd3\xeb\x7e\x5e\x00\x76\x7c\x51\xda\xbe\xf7\xbe\x15\x1e\xec\xad\x57\x36\xd0\xc5\xe9\x8d\x73\x5f\xf1\x7b\xe0\x32\xff\xfb\x83\xab\xfc\xef\x5f\x65\x91\xbf\xb1\x82\x2e\xf6\x9e\xd6\x70\x1f\xa7\xac\x4c\x00\xdf\x5f\x0b\xe0\xa7\xda\x16\x09\xc8\x55\x9b\x41\x17\xe6\xea\x66\x0b\x98\xaa\x7b\x1f\x7b\xa7\xe7\x36\xc1\x01\x19\x72\x74\x11\x3b\xbb\x14\xee\x93\x39\xa0\x9a\xa1\xb4\xbd\xdc\x9a\xf0\x70\xe4\x92\x79\x8c\x2e\x92\xb9\xb3\xaa\x71\x4f\xa4\x04\x4c\x7b\xd1\xea\x5e\x82\x2d\x81\x50\x13\x48\xb4\x8d\xff\x45\x17\xea\xd2\xe9\x57\xfc\xdf\x36\x51\x4d\x0e\xf2\x3e\x1a\x00\x2f\xd9\x8e\x48\xb8\x04\x35\x66\xd0\xc5\x67\x7d\x75\x26\xab\x11\x99\x70\xbc\x00\x0c\x5b\xb4\x51\x8e\xe0\xdd\x96\x0b\x4e\x5e\xd9\xaa\x3c\x70\x8b\x17\xce\xf6\xfc\x3d\xcd\x97\x00\xf6\x4d\x5f\x96\x9b\xf5\xa8\xbe\xae\x61\x6c\x9b\x43\x09\x95\x35\x74\xb1\xd3\x7d\x52\x45\x15\x32\x47\x54\x69\xfb\x89\x86\x9f\x23\xaa\x6c\xa0\x0b\xea\x9e\x23\x7a\x0f\xd9\xa8\xfa\xde\xbf\x43\xf5\x7d\xf8\xad\xa9\xef\x33\x81\x2e\xdc\xbb\x51\xdf\x67\x80\x0d\x9e\xee\x33\xef\xe6\x4e\x4d\x70\x40\x66\x5b\x74\x71\xf5\xcb\xc9\x8c\xad\xf2\x67\x50\xd3\xce\x00\x78\x1b\x11\xba\x69\xd7\x91\x1b\x18\x7f\xa3\x8b\x2e\xcc\xd5\xdd\xa4\x60\x29\xa4\x08\x65\xa9\xbf\xe8\x6c\xc2\xc3\xa5\x12\x4b\x25\xba\x60\xa9\xbb\x8c\x64\x0c\xd0\xd3\xa0\xb4\xfd\xf4\x58\xf0\x5e\x06\x65\x03\x5d\x30\xf6\xe8\xa4\x57\x40\x0a\xc6\xc2\x5f\x2e\x16\xe1\x8b\xc5\x02\xa3\x8b\xc2\x5d\x28\x0a\xc8\xde\x1a\x4a\xdb\xc7\x4d\x84\x3b\x03\xa8\xe2\x26\xe2\x02\xcd\x62\xe7\x28\xb0\x7e\xb1\x5f\xe0\xc0\xe1\x2e\x8e\x37\x2d\x5d\x92\xe1\x92\x55\xb0\xbc\xf9\xb4\x5f\x08\xe6\x3f\x6f\x58\x89\xe3\x82\xc2\xfc\x80\x0b\x7a\xa8\x2c\x3d\xa9\x45\x86\xd3\xc1\x05\xd5\x44\x4e\x0a\xea\x2e\x46\x05\xcb\x0b\x2c\x41\x59\xd6\x20\x58\x01\x47\x0f\x4d\x4f\xe2\x18\x12\x95\x8a\x8e\xfb\x0d\x96\x2b\x57\x97\x8c\xfc\xfd\x1d\x60\x6c\x5f\xab\x7b\xf3\x5e\x4b\x20\x5c\x96\x53\x46\xd0\x85\xfa\xef\xca\x62\x0f\xfa\x0c\x4d\xc2\x8f\x5d\x08\x81\x1e\xf6\xf2\xed\x41\xb9\x8c\xa8\xa8\xbf\x88\x09\x05\xe4\x34\x70\xb8\xc2\x78\x14\xbc\x70\x81\x3f\xe4\x58\x1e\xb3\xc6\xf5\x18\x0b\x16\xcb\x69\x86\xc9\xf4\x88\x2d\xf4\x8e\xb2\xa2\xa1\x5c\x46\x8e\xe9\xb1\x3e\xc6\x42\xd5\x1f\x5d\x3d\xe6\x65\x2e\x69\x46\x26\x2b\x82\xd3\x23\x5e\x7a\xaf\x89\x2e\x96\xd3\xcc\x8b\x24\x49\x0f\xac\x2a\x2d\x87\xcd\x98\x42\xcd\x16\x42\x1e\x77\x3d\xe1\xba\xff\x1e\x8c\xd5\x8d\xee\x68\x38\x83\x32\x69\x3e\x13\x40\xa4\x17\x8a\x4f\x3d\x47\xae\x9f\x4a\x19\x86\xbe\x1c\x6d\x24\xa7\x09\x41\xf8\x3a\x3d\xe2\xb4\x94\xa3\xac\x58\x30\xa7\xa1\x0d\x99\xaf\x8e\xd9\x54\xf1\x28\x43\x16\xac\x6d\x08\x2f\x1e\x00\xd5\x60\xad\xee\xfb\x80\xb5\x05\x82\x7d\xc0\xb4\x11\xf4\x55\xfd\x77\x7e\xc0\x5e\xa0\x04\xe8\x64\x5c\x37\xd3\x8e\xc8\xf1\x1d\x9a\x2f\x5a\x88\xbc\xf4\x9b\xba\xf3\x8e\x95\x73\xc2\x73\x22\x09\xa0\xd7\xa5\xc1\xf0\xba\xb3\x96\x9a\xc4\x2c\x5f\xd0\xe5\x24\x03\x9c\x7e\xda\x42\x4b\x48\x91\xb2\xa7\x0c\x32\x35\xae\x85\xb6\x1a\xd3\xd0\xdb\x41\xb9\x67\x23\x66\xbd\xec\xa0\xe4\x38\x23\xa2\xc0\xf1\x98\x53\x5b\x76\xc1\x58\xf2\x22\x38\x05\xe1\x82\x0a\x49\x72\x39\x59\xb3\xb4\xcc\x02\x81\x4e\xe2\x14\xd3\x31\xfd\x75\xbb\xd8\x6c\xcc\xb0\xd9\x0e\x4c\xb5\x86\x86\xb2\xbc\x3a\x6a\x34\x25\x3b\xe7\xa2\x8d\x43\x16\xac\xe4\x31\x11\x93\xc7\x72\xd4\x3c\xa2\x1d\x44\x41\x62\x0e\xd8\x7c\xa1\x83\xc4\xd7\x34\x26\x13\x1c\xc7\xac\x7c\x99\x37\xcc\x42\x8e\x86\x62\x05\xc9\xc5\x8a\x2e\xe4\x64\x5e\xd2\x34\xb1\xa5\xc9\x4b\xc1\x05\xef\x21\x6e\x3c\x81\x4c\xcc\xff\x52\xe5\x20\xfa\x5a\x3f\x9e\xea\xa7\x57\x78\xe0\x3e\x76\x2d\xdc\x56\x89\xd8\xc2\xfd\xd8\x3c\x1d\x0b\xbc\x2a\x70\x0b\xf0\xcb\xcd\xc9\x58\xa0\x7b\x36\x6f\x01\x5d\xb0\xf9\x58\xa0\xa6\x88\x6c\xe1\x5d\xd7\x0f\x47\xc3\xaa\xc2\xb2\x8d\xa8\x7e\x8f\x05\x6b\x0a\xb7\xbf\x6c\xe1\xd6\x42\xbe\xa9\x03\x7f\x98\xb0\x97\xb3\xf2\x97\x29\x42\xbd\xc6\xb4\xc4\x68\x93\x2c\xe9\xa0\xb3\xfe\x84\x81\xe3\xa1\x5a\xa5\xeb\x5f\xad\xd2\xb5\x85\x7e\xdb\x48\x4c\x1b\x81\xf1\xf6\x6c\x99\xfb\x97\x2e\x73\x3b\x76\x6c\xc8\x77\x15\x30\x16\xdf\x96\xc0\x2d\xdc\x99\x79\x32\x1e\x50\x97\x9a\x7f\x55\x05\x71\x07\x59\x07\x9d\xd8\x10\xa0\x05\x07\xf2\x30\xc8\xba\x40\x45\xba\x40\xfd\xcb\x96\xcf\xe8\x5b\xf5\xfc\x54\x3d\x36\xa5\x1c\x08\xb9\x0f\xe9\x1c\x75\x7b\x28\x93\x12\x52\xb5\x4d\x4a\x7f\xa5\xb6\x0e\x0f\xf8\xc1\x48\x4a\xf4\xb5\x4c\x4a\x17\xbd\xaa\x67\x74\x3c\xc5\xb4\xbb\x7c\xce\x49\xb3\x27\x13\xea\xdc\xb0\x7a\x06\x5d\xd5\x31\xeb\x64\x9c\x60\xc0\xb4\x3f\xa5\xed\x65\x9a\x8c\xd9\x8b\x60\x20\xcd\x04\x17\xe8\x32\xe9\x2f\xb9\xae\x22\x48\x01\x67\x00\x2b\x6d\x3f\x3d\xda\x3f\x05\x38\x00\x3d\xba\x40\x97\x09\x5d\x38\xe9\x31\xc0\x2c\x8d\x94\x79\x27\x69\x34\xc1\xc1\x32\x28\x5b\xa2\x4b\xe6\x9c\x96\x91\x96\x31\xc9\x21\xaf\xa1\xd6\xf7\xd2\x6b\x4b\x84\x4b\x3d\x6d\x05\x5d\xea\x8b\x9b\x68\x36\x27\xfc\x1e\xb4\xe7\x7d\x83\xe1\x27\xdc\x93\x0a\x48\xba\xb2\x84\x2e\xeb\x5b\x27\xf9\x67\xc8\xcb\xf9\x5c\xbd\x7b\xce\x51\xb9\x26\x78\xe0\x89\xe2\xe9\xf3\x02\x5d\xfe\xe7\xcc\x39\x14\x07\xdb\x9b\xf2\xd0\xa6\x94\x90\xfd\x64\x28\xa4\xfb\xa7\x60\xc5\x07\x88\xee\xf8\xad\xd0\xb3\xf1\xcb\xb8\x95\xee\x98\x65\xdc\xae\xcc\x92\xe9\xce\xec\x32\x95\xb4\xc0\x5c\x8e\xca\xf4\x7a\x4b\xcd\x23\xf7\xe3\x6c\xe5\x36\x65\x19\xd5\x96\xd1\x15\xcd\xc8\x55\xf5\x6b\x4f\x16\x14\x12\xb2\x99\xb8\xd1\xf7\x65\xc3\x8e\x44\xb0\x42\xc2\x58\x41\x57\xfa\xe2\x2a\x1c\x32\x22\x39\x8d\x01\x1d\xa9\x16\xc0\x4b\xb5\x23\x12\x8e\xab\x31\x83\xae\xcc\xd5\xc9\x96\xc6\x9c\x65\x04\x96\xb4\x35\x86\x97\x73\x5f\x2a\x1c\xed\xda\x12\xba\xaa\x6f\xf7\x92\x2f\x38\xd3\x07\xd2\xc0\xd3\xdd\x81\x76\xd0\x21\x6e\xf9\xb0\xae\xb1\x36\x9b\xec\xa1\x1e\xde\x98\x87\xde\xac\x92\x32\x88\x77\x52\xe6\xf7\x46\xca\x80\xfb\x24\x68\x88\xd7\xd9\x23\x41\x99\xaa\xf6\x47\xb8\xa2\x29\x1b\xb1\x47\x82\x86\xb0\xfb\x23\x28\x88\xfd\x7b\x24\x64\x34\x07\x8c\x05\x2a\x6d\xbf\xe3\xf3\xe0\x23\x81\xca\x06\xba\xa2\xb9\x73\x1c\x30\x4b\x53\x40\x53\x50\x69\x7b\xe9\x35\xe1\xe1\xe8\xa5\x69\x81\xae\xd2\xd4\xd9\x14\xcc\x18\xa4\x8e\xad\xb4\xbd\xf4\xd8\xb1\xf5\xea\xd1\xcd\x25\x65\x02\x5d\x31\x77\x55\x3a\x63\xf9\x92\x41\x96\xa0\x5b\x00\x3f\xc7\xb6\x48\xb8\x54\x34\x66\xd0\x95\xba\xba\x97\x9f\x5b\x91\xc9\x92\x53\xd0\xfe\x59\x5d\x9c\x23\xb8\x77\x25\x83\xbb\xc0\x58\x43\x9f\x39\x4d\xce\xdc\xdf\x02\xb1\x06\xb0\x17\x6b\x2f\xe5\x3a\xf8\x15\x16\x69\x64\x62\x8d\xae\xc4\xda\xc9\xb1\x14\x12\xb6\xf4\xb1\x42\xf0\xb2\xed\xca\x84\x4b\x5a\x6b\x07\x5d\xd9\x1b\x27\xe5\x35\x81\xb4\x33\xd7\xc4\xdb\xce\x6c\x85\x0f\xa0\xe9\x98\x35\xda\x02\x1a\xe8\x84\x35\x49\xd1\xd5\x9a\x1c\xd3\x58\xaa\xbb\x31\x6b\x25\xc7\x44\xd3\xec\x69\x8e\x25\x85\x94\x04\x06\xc0\xeb\xb6\x8e\xc8\xf0\x5a\x91\x51\x9f\xcc\x49\xf8\xad\x4b\xac\x2d\x74\xf5\x74\xaa\xae\xc3\xea\x43\x5d\xdd\x53\xe2\xde\xf4\x24\xc7\x4b\xca\x00\x0e\x37\xfa\x3e\x7f\x77\x24\x82\xb9\xca\x58\x41\xd7\xfa\xe2\x26\x0a\x39\xe7\x41\x69\xfb\x49\x8e\x99\x05\x30\x94\xa2\x54\x04\xfb\x63\x59\x36\x82\xb0\x65\xac\xf9\xa1\x65\xac\xb9\x63\x19\xeb\xcb\x33\x54\x46\xd0\xb5\xfa\xbf\x97\x23\x70\x47\xc2\x06\xe3\x20\xdb\x89\x63\x77\xc2\x97\x5e\xb9\x6b\x18\xeb\x0d\x01\xaf\x77\x56\xef\xb6\xa9\x53\xc9\x41\x1b\xbb\x59\x00\x2f\xe9\x8e\x48\xb8\x44\x36\x66\xd0\xb5\xb9\x3a\xd9\x0a\xc0\x8a\xac\x5c\x78\x17\x64\x35\xc1\xe1\x18\x8a\x47\x74\x2d\x9c\xab\xb1\xd8\x32\x07\xd4\x08\x94\xf6\xfe\xcf\x78\x2b\x74\xd0\xce\x1c\x4a\x0f\x7d\x5b\xe6\xae\x0f\x32\x4b\x69\xbe\x64\xef\x01\x51\x36\x00\xbe\x14\xe9\x8a\x04\x4b\x15\x6b\x06\x7d\x33\x57\x67\xea\xe8\xa0\xdf\xa1\x6c\x7f\x3f\xcc\xf6\xf7\xd7\x61\xfb\xbb\x65\xfb\xbb\x93\x6d\x41\x72\x55\x77\x05\x34\xa7\x6b\x08\x2f\xe3\x4a\x68\x12\xd3\x7c\xd4\xd9\x96\x7d\x9c\x65\x0a\x39\x88\xa0\xc1\x79\x20\x4f\x42\xb2\x31\xc3\x87\x7d\xa4\x9c\x94\x92\xb3\xd1\x3b\x48\xb6\x80\xd8\x7a\xf4\x5c\xc7\x06\x45\x6c\x68\xf8\x8d\x08\x6a\x73\xc8\xa4\x2b\x9a\xea\xcb\xf0\xc9\x2b\x1a\xc3\xa4\x29\xfa\x9c\x0e\xde\xfd\xbe\xc1\xa8\xd2\x13\x7d\xb5\x37\x23\x71\x6c\x6a\xa2\x6b\x73\x1d\x8b\xc2\xd6\x18\x5d\xb3\xf5\xb0\xe9\x52\x8d\xbe\x4e\x44\x34\x53\xff\xdd\xaf\xaf\xc4\x45\x8a\xf3\x1c\x32\xd6\xd0\x02\xf1\xbf\xc2\x7d\xb1\x80\xb9\xaa\x36\x85\xbe\x15\x12\xdf\x98\x7b\x97\x07\x0a\xbc\x02\xf4\xa0\x2b\x6d\x1f\xe7\x56\x78\x30\xb2\xca\x06\xba\xc1\x2b\xe6\xa6\xb7\x4d\xd9\x72\x09\xda\xc2\xa3\xc1\xf0\x53\xed\x49\x05\x24\x5c\x59\x42\x37\x78\x7b\x69\x6e\x9d\xe4\x13\xc0\x9c\x82\x22\xf1\xce\xf7\x69\x82\xc3\xf1\x4c\x16\xe8\x26\x71\x4e\xf6\x29\x96\x9d\x59\xf3\x22\x65\x80\xdd\x15\x1c\x60\x5e\xe6\x7b\xc5\xc3\x79\x62\xd9\x9e\xc6\x8a\x94\x49\x74\xb3\x6c\xcd\x5b\x9d\xa5\xcc\x59\xbe\x15\x4b\xbd\x99\x2f\xc4\x37\x1a\xc0\xef\x8f\xb6\x48\x40\x1f\x68\x33\xe8\x66\xa9\xb7\x24\x76\xb2\x4d\xb1\x5c\x30\x9e\x01\x9b\xb7\x1d\x18\x2f\x73\x87\x60\x38\xfe\xd6\x98\x69\xe8\xde\xd8\x5f\xfb\xda\xba\x05\xa7\x39\x68\x00\xdd\x02\xf8\xe8\xa7\x45\xf0\x0f\x99\x8d\x05\xba\x31\x57\x37\x53\x26\xd9\xbc\x84\x94\x74\x16\xc1\x0a\x38\x67\xc5\xf4\x64\x06\xce\xa3\xaa\xb4\xd1\x8d\xbd\x71\x4e\x67\x29\xca\x79\x0e\x39\x52\xd6\xe8\x7b\x33\x6c\x5b\x22\x5c\xa2\x69\x2b\xe8\xa6\x9c\x5f\xbb\xcf\x8d\x2d\xca\x54\x40\x4e\xe5\x36\xfa\x7e\xa2\x2d\x89\x80\x44\x95\x15\x74\xa3\x2f\x2e\xa2\x8f\x25\xe6\xf2\x79\x3c\x51\xa3\xef\x23\xda\x91\x08\x46\xd4\x58\x41\xdf\xf5\xc5\x4d\x94\xc6\x0f\x0b\x0a\xd8\x86\xaa\x42\xf0\x93\xed\xc8\x04\xa4\x6b\xec\xdc\xa3\xef\xd5\x9d\x8b\x34\xc7\xf3\x39\x95\x90\x2d\x96\x2b\x04\x1f\xe9\x9e\x4c\x30\xd2\x95\x1d\x74\xab\x6f\xdc\x5b\x2d\x73\x82\x63\xbd\xd8\xd7\x1c\x3e\x0c\x18\x0c\xe8\x23\x79\x5d\xe0\x96\x0d\xe7\x0a\x6b\xcf\x1e\xb1\x2c\xd0\xad\x7d\x60\xce\x57\x76\x8e\x1d\x70\x02\xf8\x02\x71\xe2\xad\x6b\x37\xc1\xa1\xe6\x53\x70\xb2\x40\xb7\xc4\x59\xd5\xe6\x04\x72\xd8\xa6\xd2\xf6\x53\xdb\x39\xc6\xf2\xf0\xf0\x40\xa3\xda\x5a\xbe\x1e\x30\x37\x08\x89\x6e\xc9\xc0\x53\x00\x6b\xad\x93\x82\xee\x73\xeb\x44\x6c\xf0\x72\x09\xa9\xa5\xb5\x51\x0e\xb9\xb9\x27\x17\xd6\x5f\xd6\x96\xf6\xc0\xcc\xdc\x3b\xbd\xc0\xe6\x4c\x2e\x38\xce\xc8\x86\x71\x40\x1f\x6a\x17\xc7\xeb\x09\x97\x64\x38\x5f\x74\xac\xa1\x5b\xf5\xf3\xac\xfa\xe9\x74\x88\x80\x94\xa9\xc2\x5f\x8c\x8a\x97\x9a\x23\xde\x20\x0d\x74\x87\x10\xe8\x56\x1c\x33\x06\xdf\xaa\x3c\x5b\x25\x67\x95\x59\xe0\x25\x60\x1a\xa2\xd2\xf6\x39\xac\x15\x1e\x6e\xff\x3a\xbc\xc4\x68\x86\x97\xce\x69\x88\x02\xa7\x44\x2c\x18\x8f\x01\x83\x96\x0d\x86\x9f\x6a\x4f\x2a\x20\xe1\xca\x12\x9a\xd5\xb7\x6e\xf2\xc5\x24\x27\x72\x43\xf0\x1a\x52\x44\x76\x60\xfc\x2e\xd8\x15\x0c\xe8\x85\x02\xd5\xc6\xd0\x35\x91\x3f\xf5\x9d\xdb\x0f\x5b\xc8\x0e\xa8\x5a\xdd\xc7\x7b\xfb\x58\x12\x3e\x62\x5a\x82\xeb\x70\x83\x36\xd4\x30\x87\x18\x55\xf4\xeb\xbb\xba\x0c\x99\x0a\xd5\x51\x74\x8c\xbe\x2a\xce\x49\x99\x82\xb2\x50\x05\xe1\xcd\x3e\x3d\xa1\x80\x3b\x5e\x5a\x43\x68\x56\xdd\x39\xb3\x8d\x8a\x24\x96\x1c\x94\x77\x6a\x8c\x43\xcc\x3b\x52\x41\xa9\x1b\x4b\x9a\xbb\xb9\x75\x92\x27\x09\xe4\xbb\xd0\x1c\xd2\xed\x26\x7c\xf4\x21\xde\xa3\x2b\xe4\xfa\x9c\xe2\xdd\xe3\x89\xab\xf8\xe9\xc5\xf3\x10\x82\x1a\xc0\xcf\xb1\x2d\x12\x2e\x45\x8d\x19\x64\xf7\x03\xf0\xb0\xcd\xd9\x06\x4c\x38\x67\x9b\x23\x38\x37\x52\xa1\x69\xe7\x6c\x53\x31\xbf\x66\x9b\x7d\xe4\x8f\xd9\x3c\xce\xcb\x3c\x25\xde\x36\x58\x57\x24\xd4\x2c\x2d\x6b\x45\xf3\x4d\xdd\x27\xe7\x09\x0a\xe8\xb5\x17\xd4\xdb\x57\xdf\x04\x0f\x5f\x5d\x49\xc3\x9f\xc6\x20\x68\x81\x66\xd4\xd9\x95\x2f\x40\x1b\xd7\x8b\x03\x3b\xd7\x8b\x51\x5b\xd7\x37\xba\x93\x39\x96\xf5\x26\xd0\xe1\xdc\x73\x9f\x09\x34\xbb\x1f\xb8\xa1\x8c\xd6\xd2\xf1\xd3\xba\xa7\xea\x6e\x9f\x87\x01\xd3\xb3\xb4\xfa\x21\x1f\x07\x9f\x9a\xa5\x8d\x68\x9e\xce\x69\x59\x22\x05\x4d\x52\xd2\xea\x5e\x8e\xe9\x2b\xac\xa6\xd7\x46\xd0\x2c\xdd\xb3\x86\x5e\x64\x05\xa4\x00\xc9\x0a\x7f\x09\xd2\x84\x8f\x58\xa0\x5d\xbc\x42\x19\x92\x15\x05\x9a\x65\x85\xbb\x14\xc9\xf1\x03\x79\xc2\x90\xa3\xe5\x6a\x08\x2b\xe1\xec\x1a\x50\xe1\x3b\x92\x03\x79\x54\xda\x68\xa6\xee\xfe\x7d\xb2\xe7\x6c\x39\x91\x67\x90\xe4\xce\x33\x7f\x72\x37\xe1\xe1\x52\x2c\xcf\x0a\x34\xcb\x33\x77\x8a\x31\xc8\x76\x34\x4a\xdb\x97\x4e\x2a\x7c\xe0\xf1\x79\xad\x3e\x19\xa5\x8d\x66\x0c\x17\x7b\xcf\xd0\x13\x2c\x85\xb4\xb8\x58\xea\x6f\x6c\x35\xe1\xc3\xdf\x45\x96\x8e\xdf\x5c\x51\x29\x4f\x53\x56\x26\xc1\xb3\x06\x4b\x39\x9a\x29\x6b\xce\xac\xc1\x59\x29\x00\xbb\xe0\x5b\x00\xbf\x8b\xdb\x22\x01\x79\x6a\x33\x73\x26\x5b\x0f\x67\xe6\xe1\xa9\x7b\x52\x8b\x28\x30\xa4\xaf\x58\xab\x7b\x99\xb7\x04\xc2\xf1\x56\x46\xd0\x4c\xfd\xdf\xcb\x11\x38\xf6\xd2\x60\x1c\x64\x3b\x19\x35\x0e\x33\x82\xb1\x1e\x1c\xf0\xb0\x4e\xcb\x1c\x94\xb4\x4a\xdf\xcf\xb6\x25\x11\x30\x71\x95\x15\x34\xd3\x17\x37\x51\x0e\x9a\x92\x68\xf4\xfd\x44\x95\xc4\x64\xe4\xd4\x2c\x47\xdf\x9e\x28\x46\x2e\x70\x34\xd3\xb6\x1c\x93\xb6\xfc\xfd\x7a\xca\x1e\x9a\x15\xce\x25\x8e\x96\x9c\xae\xda\x43\x9d\xd8\x69\xc0\xf8\x5c\xf9\x3a\x0d\x1d\x6d\xab\x6a\xb4\xe8\x1f\xfb\x9b\x2d\x26\x5e\x34\x97\x64\xc9\xf5\x34\x40\xb0\x2f\x5a\x58\x47\x78\x64\x57\x3a\xb4\x5f\x5a\x16\xad\x77\xce\x9b\x27\x1e\x1f\xc1\xb6\xf6\x6b\x81\x1c\xe1\x95\xd7\xd8\xe8\xcf\x98\xd2\xdb\xfd\x19\x37\xec\xdb\xf4\xcf\xc6\x89\x93\x04\xb2\x22\xb8\x8d\x72\x84\x07\xda\x72\x01\x87\x99\x13\x2a\xd0\xad\xfa\xef\x21\xbe\x81\xb3\xde\x1c\x43\x79\xd3\xe7\xfb\xf2\x5f\x4f\xfd\x02\x6c\x84\x4d\xf0\x9f\x64\x2e\x3c\x7d\xa6\x8f\x90\x76\xde\xa3\x77\xc9\x7c\x13\x3c\xbc\xf6\xfc\x98\x4e\x84\x64\x9c\x84\xaf\x3e\x3f\xa6\x68\xf6\x78\xcc\x9a\xfa\xae\x8e\x89\x9d\x52\x9d\xe9\x3b\xa7\x73\x41\x35\xef\x03\xb5\xee\x57\xa8\x71\x8b\x15\x9a\x09\xf7\x17\x45\x62\xc0\x14\x3e\xa5\xed\xe5\xd6\x84\x87\x23\x27\xf1\x16\xcd\xe4\x89\xf3\x34\x49\x21\x19\xa8\xc7\x40\xa9\xfb\x09\xb2\x57\xe8\x33\x50\x46\xd0\x4c\xfd\x77\x73\xe4\x04\x03\xce\x7e\x37\xfa\x7e\x96\x2d\x89\x80\x34\x95\x15\x64\x66\xdc\xed\x21\x4a\xf3\xa5\x24\x59\x91\x62\xc8\xa2\xee\x2e\xce\x01\xe2\xaa\xa8\xef\x89\x86\xf4\x40\x2b\x62\xca\x13\x34\x5f\xde\xd9\x9f\x6e\x8f\x40\x66\x8f\x2b\x6d\x3f\xfb\x63\x67\x8e\x8f\x1f\xf4\x94\xe5\x1c\xcd\xa4\x7b\xd2\xb8\x78\x12\xa0\x2d\x7e\x8d\xbe\x0d\x76\x77\x89\xb5\x25\x06\xc6\x5c\xab\xa2\x99\xbe\x38\xfb\xc3\x24\x5e\x0a\x56\x02\x4a\x1f\x0b\xe0\x23\x20\x69\xf2\x74\x85\xf9\x43\x2d\x35\xb0\x57\xcf\x9a\x40\x77\x35\xce\x1e\x2a\x7c\x41\x53\xc0\x2b\x67\x01\xbc\x54\x3a\x22\x83\x79\x68\x65\x74\x87\xf9\x19\x4d\x89\x9b\x04\x49\x55\xbb\x01\x50\x52\x56\x08\xbe\x97\xa6\x27\x13\xac\xac\xa8\xec\xa0\x3b\x7b\xe3\x7a\x83\xe4\x8a\x53\xc8\x41\xee\x46\xdf\x4b\xb7\x2d\x01\x9d\x64\xd8\x01\x1b\xe8\x0e\xad\x8a\xee\xf4\x65\xd8\x6c\xc3\x8e\xaa\x3b\xe7\x50\xc8\x31\x68\x4a\xdb\xeb\x42\x1a\xfe\x10\x34\x65\x03\xdd\x51\xf7\x11\x68\x92\x66\x90\xb9\x52\x5a\xdd\x4f\x30\x0b\x3f\x47\x4a\x1b\x41\x77\xea\xbf\x93\xe3\x86\xa6\x14\xb0\xec\xd9\xe8\x7b\x59\xb6\x25\xc2\xd1\xd4\x56\xd0\x9d\xbe\xec\x21\x2a\x41\xcb\x00\x2d\xc0\x01\xaa\x4a\x64\x92\x50\x4e\x62\x99\x11\x21\x8e\x3e\xcf\x61\xb7\x85\x58\x81\x09\x82\xf9\x98\xde\xb6\x2e\x8a\xca\x06\x29\x0d\xbf\xb5\xbd\xb5\x87\x3a\x2e\x50\xc9\xa2\x9e\x7e\xd4\x0f\xaf\xcc\xc3\x41\x0d\xd2\x0a\xd6\x38\xa3\xc2\x9b\xe9\x5f\xa3\x80\x2a\x7f\x54\x50\x77\xf6\xb7\x2b\xeb\x94\x79\x42\xb8\x84\x4c\xba\xaa\x10\x7c\x99\xa7\x27\x13\xaa\xf7\xa4\x32\x83\xfe\x65\x6f\xdc\x8c\xe9\x9a\xc5\x54\x3e\x4d\x0a\xcc\x05\xe1\x80\xae\xa3\x1d\x28\xdf\x87\xae\x11\x8e\xeb\x6d\x26\xdb\x4f\x17\x74\x5b\x77\x98\xb4\x9f\xcb\x5a\x7a\x60\xfd\xa8\x86\x40\xff\xca\xe9\x0f\x7d\x37\x15\xeb\xde\xc7\x6e\x04\xc8\x99\x8a\xe8\x4f\x9a\xc8\x15\x1c\xeb\x6e\x27\x42\xc6\xb3\x2f\x70\x9e\xfb\x51\x47\xb9\x0f\x3c\xc5\x7d\x74\x9b\xa7\xd9\xf6\xd3\x7b\x78\xfb\x9a\xa4\xda\x2d\x00\xd6\x16\xc1\x4b\xba\x2b\x13\x6e\xaf\x53\x6b\x07\xfd\xb0\x37\x6e\xca\x5c\x02\x7a\xa3\xb4\xba\x9f\x6c\x23\x10\x90\x29\x97\x5b\xf4\x43\xfd\x77\x72\x04\xb4\x3f\xd6\xde\x96\xc7\xfa\xc8\x36\xc7\xf8\x8c\x9b\xa1\x1f\xce\x66\xc6\x86\x60\xb9\x82\xd4\x39\x2c\x80\x8f\x5d\x57\x24\x58\xea\x59\x33\xe8\xa7\xb9\xba\xd9\xce\x3f\xdc\x43\xb8\xce\x3f\xdc\xfb\x99\x36\x02\x01\x79\xce\x3f\xdc\xa3\x9f\xea\xff\x1e\x8e\x47\x1d\x2c\xed\x63\x59\x1f\x26\xbd\x9f\x67\x4b\x24\x54\x3d\xc0\x5a\x51\x54\xd5\x75\x0f\x59\xc1\xe2\x07\xc8\x9c\xeb\x1a\xe2\x00\xe1\x8e\x50\x40\xca\xc6\x8e\x22\x6d\xee\xbc\xb4\x27\xf7\x82\x7f\xf8\x9f\x7f\xbe\x00\x7b\x8b\x74\x94\x13\xba\xb2\x2f\x9c\xd1\x1b\x17\x18\x2b\xe8\x62\x76\xfb\xe1\x7f\xfe\xf9\x93\xcc\x67\xfb\xfd\xc1\x78\x52\x70\x02\x59\x8e\x59\x43\x78\x3d\xd0\x13\x0a\xf7\x8e\x57\x86\xd0\xcf\xea\xce\xc5\x7b\x1b\xaf\x70\x0e\x39\xf5\xcf\x02\xf8\x38\x77\x45\x82\x31\xb6\x66\xd0\xaf\xa9\xbe\x3a\xd9\x02\x8a\xee\xad\xb7\xdc\xde\x06\x2f\xb4\xb7\xf7\xe8\xd7\x85\x93\x54\x96\x0a\x12\x97\x1c\x54\x5d\x6c\x81\x78\x69\xee\x88\x41\xbb\xfd\x34\x1c\xf9\x75\x75\x39\xce\x29\x4d\x7c\xd0\xaf\x2c\x9d\xd1\x65\x8e\x65\xc9\x8f\x69\x77\xb7\xda\x23\x1d\x94\xab\xcb\x99\xbd\x77\x36\x48\xb6\xa0\x49\xe7\xdb\x03\x93\xce\xb7\xa3\x26\x9d\x0f\xf5\x59\x51\xa0\x5f\x7b\xe6\x8d\x6f\x0b\x2c\x01\xc3\xdd\x5a\xdd\x86\xba\x16\x8c\xb6\x82\x07\xed\xb7\xab\x15\xd1\xaf\x1b\x2c\x57\x8e\xf9\x61\x5b\x91\x02\x3e\xdf\x4a\xdb\x9b\x26\x4d\x78\xb8\x34\x11\xa9\x44\xbf\x44\xea\xfc\x36\xa9\x40\xe8\xb2\xe0\x06\xe3\x10\xd5\x8e\x54\x58\xc2\xda\x92\xa6\x3d\x53\x77\x6e\xee\xc0\x01\xee\x6d\x67\xfc\xda\x59\x04\xdd\x0b\x96\xf7\xe4\x26\x51\xf7\xf7\xc0\x1e\x17\xab\x8c\x2e\x04\xcb\x07\xf6\x8d\x54\xaa\xbf\xcc\x50\xb8\xb3\x0c\x7a\xc2\x19\xa8\xd3\xde\xe8\xfb\x32\x42\x47\x22\x58\x26\x30\x56\xd0\xbf\xf5\xc5\x95\xfa\xcf\x24\x4f\x88\x00\xb4\x44\x2c\x80\x8f\x6a\x57\x24\x18\x57\x6b\x06\xfd\xc7\x5c\x9d\x6c\x69\x31\x49\xc8\x22\xc5\xa0\x2e\xfc\x36\x8a\x2f\xd7\x2f\x9f\x69\xd1\x93\x9b\x44\xbb\xcf\x06\xe6\xfc\x4a\x1b\x7d\x7e\xa6\xc5\x47\xfb\x63\xe0\x2b\x50\x63\xfc\x67\x2f\x44\x4d\x15\x36\x32\x6d\x01\x7c\x6e\xea\x8a\x0c\xf4\x86\x55\x56\x44\xf6\x8e\x4c\x3f\x33\xf6\x40\x48\x01\x4a\xf2\x0a\xc2\x9b\xcf\x7b\x42\xe1\x72\x7a\x65\x08\xfd\x87\xb1\xaf\xfa\xce\x99\xdb\x2b\x31\xf0\xb9\x9e\x7d\xa4\xa3\xbc\x30\x79\x9d\xb3\x3e\x6b\x7b\x7b\x0e\xfd\xfc\xff\x01\x00\x00\xff\xff\x69\x27\x02\x67\xa4\x3b\x01\x00"), }, - "/camel-catalog-3.0.0-1.0.9.yaml": &vfsgenÛ°CompressedFileInfo{ - name: "camel-catalog-3.0.0-1.0.9.yaml", + "/camel-catalog-1.0.11-SNAPSHOT-quarkus.yaml": &vfsgenÛ°CompressedFileInfo{ + name: "camel-catalog-1.0.11-SNAPSHOT-quarkus.yaml", modTime: time.Time{}, - uncompressedSize: 81677, + uncompressedSize: 18361, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x7d\x4b\x77\xdb\x38\xb6\xee\x3c\xbf\x82\xab\x33\x39\x67\xdd\x16\xba\xaa\x52\xa7\xea\x76\xdd\x91\x2d\xc7\x89\x1d\xdb\x71\x59\xee\x24\xdd\x93\x5a\x10\x09\x51\xb0\x49\x82\x06\xa0\x87\xfd\xeb\xef\xc2\x83\x4f\x41\x90\xc8\x6d\x78\x1d\x0f\xcc\x07\xf6\xfe\x36\xbe\x0d\x10\xc2\x1b\xef\xa3\xc9\xeb\xfd\xbd\x7b\x1f\x5d\xd1\x98\x14\x82\x24\x91\x64\x91\x5c\x92\xe8\xa4\xc4\xf1\x92\x44\x33\xb6\x90\x1b\xcc\x49\x74\xce\x56\x45\x82\x25\x65\x45\xf4\x5f\x27\xb3\xf3\xff\x8e\x56\x45\x42\x78\xc4\x0a\x12\x31\x1e\xe5\x8c\x93\x77\xef\xa3\x98\x15\x92\xd3\xf9\x4a\x32\x1e\x65\x06\x30\xc2\x29\x27\x24\x27\x85\x14\x28\x8a\x66\x84\x68\xf4\x9b\xaf\xf7\x17\xd3\x8f\xd1\x82\x66\x24\x4a\xa8\x30\x4a\x24\x89\x36\x54\x2e\xdf\xbd\x8f\xe4\x92\x8a\x68\xc3\xf8\x63\xb4\x60\x3c\xc2\x49\x42\x95\x61\x9c\x45\xb4\x58\x30\x9e\x9b\x68\x70\x92\x62\x9e\xd0\x22\x8d\x62\x56\x3e\x73\x9a\x2e\x65\xc4\x36\x05\xe1\x62\x49\x4b\xf4\xee\x7d\x74\xaf\x68\xcc\xce\xab\x98\x08\x03\xab\x6d\x4a\x16\xfd\x9b\xad\x2c\x87\x16\x5d\xeb\x85\xbf\x47\xdf\x08\x17\xca\xc8\x2f\xe8\xa7\x77\xef\xa3\xff\x52\x22\x7f\xb3\x81\x7f\xfb\xef\xff\x17\x3d\xb3\x55\x94\xe3\xe7\xa8\x60\x32\x5a\x09\xd2\x42\x26\xdb\x98\x94\x32\xa2\x45\x14\xb3\xbc\xcc\x28\x2e\x62\xd2\xd0\xaa\x2d\xa0\x48\x47\x40\x61\xb0\xb9\xc4\xb4\x88\xb0\xa6\x11\xb1\x45\x5b\x2c\xc2\xf2\xdd\xfb\x77\xef\x23\xfd\xb7\x94\xb2\xfc\xe3\x1f\xff\xd8\x6c\x36\x08\xeb\xe8\x22\xc6\xd3\x7f\x54\xec\xfe\x71\x75\x31\xfd\x78\x33\xfb\x38\xd1\x51\x7e\xf7\x3e\xfa\x57\x91\x11\x21\x22\x4e\x9e\x56\x94\x93\x24\x9a\x3f\x47\xb8\x2c\x33\x1a\xe3\x79\x46\xa2\x0c\x6f\x54\xc2\xe9\xd4\xd1\x89\x4e\x8b\x68\xc3\xa9\xa4\x45\xfa\xf7\x48\xd8\x54\x7f\xf7\xbe\x93\x3a\x8d\xbb\xaa\xe8\x51\xd1\x11\x60\x45\x84\x8b\xe8\x6f\x27\xb3\xe8\x62\xf6\xb7\xe8\xf4\x64\x76\x31\xfb\xfb\xbb\xf7\xd1\xf7\x8b\xfb\xcf\x5f\xff\x75\x1f\x7d\x3f\xb9\xbb\x3b\xb9\xb9\xbf\xf8\x38\x8b\xbe\xde\x45\xd3\xaf\x37\x67\x17\xf7\x17\x5f\x6f\x66\xd1\xd7\xf3\xe8\xe4\xe6\xdf\xd1\x97\x8b\x9b\xb3\xbf\x47\x84\xca\x25\xe1\x11\xd9\x96\x5c\xc5\x9f\xf1\x88\x2a\x47\x92\x44\xa5\x69\x95\x81\xaa\x08\xa8\xfc\xa1\x9e\x45\x49\x62\xba\xa0\x71\x94\xe1\x22\x5d\xe1\x94\x44\x29\x5b\x13\x5e\xa8\xec\x51\x12\x9e\x53\xa1\x92\x53\x44\xb8\x48\xde\xbd\x8f\x32\x9a\x53\xa9\x73\x91\xd8\x25\xa5\xcc\xbc\xe6\xb7\xf5\x0e\x97\xd4\x66\xa7\x3f\xa2\x18\xe7\x24\x6b\x27\xdf\xfa\xe7\x77\x8f\xb4\x48\xfe\x88\xa6\x2a\x64\x8a\x25\xce\x58\xfa\x2e\x27\x12\x27\x58\xe2\x3f\xde\x45\x51\x81\x73\x62\x15\x27\xb1\x09\x9f\x7c\x40\x3f\xa1\x9f\x26\x3f\xa3\x9f\xd0\x3f\xdf\x45\x51\x86\xe7\x24\x13\x4a\x36\x52\x49\x5c\x09\x3f\xea\x17\x3b\x16\x2d\x06\x5a\x57\x71\xd2\x60\x7e\xd9\x8c\xe1\x84\xf0\xa3\x54\xf8\xaa\x90\x34\x27\x8d\xac\x89\xa5\x4a\x20\x15\xc3\x1d\x08\x2b\xff\xad\x2b\x1e\x45\x98\x4b\xba\xc0\xb1\xb4\xbc\x0c\x25\x1c\x4b\xba\x26\xf9\x93\x79\x17\x45\x29\x67\xab\xf2\x22\xf9\x23\x62\x3c\xad\x22\xa1\x25\x6d\x78\x05\xa2\x44\xba\x08\x56\x40\xc4\x4b\x92\x13\x51\xe1\x4d\x22\x9a\xfc\x11\xf5\x64\xec\x97\x17\x2d\x70\x26\x48\xfd\xae\xc4\x42\xd0\x35\xe9\xbe\x7e\xc0\x6b\x7c\xff\x5c\xb6\x01\xfb\x31\x43\xaa\x5c\x60\x05\x29\x24\xaa\xec\xa0\x13\x7d\x73\xfd\xe7\xb4\x0a\x6a\x53\x5e\xc6\x00\xb6\xcb\xd8\x4b\xb4\x0e\xae\x38\x4a\xbe\x7a\x5d\x8a\xcb\x18\x9d\x2c\xe3\x3d\xc4\x26\x1b\x01\xe2\x36\xd9\x88\x03\xf4\x1a\x89\xe3\x19\xb6\x95\xfb\xda\xaf\x9f\x07\x96\x31\xda\x08\xf4\x5d\x38\x5d\x94\x3f\x95\x00\x07\xe5\x4f\xa5\xd7\x3d\x4d\x78\x38\x7a\xf9\x53\x89\x4e\xae\xff\xbc\x75\xd2\x2b\x9e\x7f\xf9\x00\xe0\xa7\xd4\x6d\xa8\x2a\x2c\x4d\xd5\xa0\x15\xaf\xb6\xc0\x31\xd1\x6e\x40\x90\x56\x45\x27\xea\xff\x19\x96\xf8\x5c\xbf\x6d\x47\xbd\x2c\x20\x59\xb7\x2c\xfc\x19\xb7\x09\x0f\x97\x32\x65\x21\xd0\x49\x59\xb8\x33\x9e\xf8\x05\xc0\x4e\xfc\xe2\x25\x57\x07\x87\xe3\x26\x7e\x41\x27\xb3\x5f\xdc\xcc\x8a\x9f\x21\xd4\x8a\x9f\xbd\x39\xae\x09\x1f\x9a\xe1\x44\xf1\x33\x3a\x99\xdd\xfc\xec\xce\x6e\x42\x12\x4e\xc5\x23\x24\xe6\x06\xc1\x9f\x32\x1d\x99\x80\xc9\x63\xec\xa0\x13\x7b\xe3\x4c\x28\x99\x33\xc8\x27\xa6\xd4\xbd\x64\x5b\x02\xe1\x98\x2a\x23\xe8\x44\xfd\xdf\xcb\xb1\x5c\x12\x4e\x26\x1b\x32\x17\x2c\x7e\x24\x12\x48\xb9\x87\x76\xd0\x03\x6e\xf9\x60\xd5\x81\xda\x24\xaa\x4d\xa2\xef\xd5\x9d\xdb\x45\x2c\x87\xb8\x84\xe5\x7e\x17\xd4\xe1\x01\xf3\x00\xcb\xd1\x89\x64\xf9\x3e\x7a\x74\x0b\x23\x48\xb7\x87\x28\xd2\xed\x24\xc7\x23\x7e\xeb\xbb\x08\x44\x08\x9c\xd2\x22\x85\xe2\xac\x32\x49\xe1\xd1\x79\x5a\x91\x56\xde\x1c\x87\x21\x76\x32\xfc\x50\x84\x35\xce\xc6\xc4\x62\x78\x0e\xa2\x5b\x14\x67\x54\x3d\xe5\xb8\xd4\xd9\x89\x6e\xaf\x71\xd9\xcd\x53\xc3\x70\xaa\xf4\xac\xd0\xaa\x67\x08\xa6\x4d\xdb\x0a\x52\x3d\xc2\x62\xa9\x93\xd9\xc2\xfd\xa9\xee\x01\x58\x82\x48\x8b\x34\xeb\x17\x36\x83\x70\x74\xa2\x5b\xa4\x6f\xea\xde\xf9\x65\xaf\x39\x03\x7c\xd7\x6b\xce\xbc\x5f\x75\x13\x3e\x20\xdb\xb9\xeb\x2c\x0d\xd4\xc0\x6c\xb9\xe6\x0c\x9d\xac\x39\x3b\xc2\x95\xed\x9a\x4e\xa5\xe6\xae\xe9\x6c\xc4\x24\xde\x00\x1c\xa7\xf5\xbd\xae\x6b\x4b\x84\xfb\x66\x37\x02\xc5\x1b\x34\xdd\x38\xf3\xc6\x46\x4c\x92\x64\x0e\x63\x99\x24\xf3\x43\x34\x1b\x91\xe1\xe5\x9b\x51\x17\x92\x13\x1c\xfe\x27\x72\x23\x50\x92\xcc\xd1\x59\x32\x1f\xf6\x59\x1a\x3d\x13\x49\xa5\x3d\xd3\x77\xfb\x5c\x4e\x62\x48\xab\xc6\x00\x1c\x72\x79\x23\x12\xd4\x5b\x24\xfe\x05\x7d\x9c\xba\x5b\x38\x3a\x16\x90\xaa\xb3\x01\x38\xcc\x34\x7c\xf5\x59\x33\x15\xe8\xe3\x74\xb6\x97\xe9\x23\x94\xe9\xe3\x61\xa6\x8f\x6f\xc3\xf4\x51\xa0\x8f\x5f\xf6\x32\xa5\x18\x52\x11\x36\x00\x87\x98\xd2\xb7\xf9\xd6\x29\xce\xd1\xc5\xc9\xf5\x3e\xa6\x8f\xb4\x20\x82\x02\xd3\xd5\x82\x1c\x62\xdc\x15\x1b\x55\x4c\x5a\x88\xc9\x82\x72\xb2\x64\x22\x7c\x75\x70\x23\x90\xb5\x89\xbe\x98\xeb\xe0\x52\xb3\x8a\x6b\x05\x70\x6e\x9f\xf7\x26\x49\x0e\x4d\x8e\xfc\x70\x52\xe4\x6f\xf2\x99\x3d\xe6\x02\x7d\xb9\xde\xfb\x99\x65\x38\x9f\x27\x18\x46\xd6\x60\x1c\xe2\xdb\x91\x0a\x4a\xd9\x58\x42\x57\xfa\xb2\x8f\x38\x68\x54\x45\xeb\x1f\x22\xfc\x06\x23\x2a\x1b\x81\xf2\x27\xb4\x67\x24\x45\x45\x01\xd4\x87\x66\x00\x0e\xd2\x7c\x83\x1e\x34\xc5\x53\x3c\xa2\xeb\xd9\x97\x7d\x4c\x05\xa4\x67\x5d\xeb\x1f\xe2\x59\x4b\x04\xa5\x29\x3e\xa0\xd9\x87\xbd\x24\xa1\x95\x68\x71\xb8\x12\x2d\xc6\x54\xa2\x47\xf0\x4c\xe6\x68\xd6\xaf\xff\xb6\x22\x4a\x80\x05\xb0\x20\x07\x0b\xe0\x46\x24\x2c\x53\x22\xd0\x8c\xb8\x3b\x44\x55\x2c\x40\x23\x2b\x06\xe0\x20\xd3\x37\x18\x5f\x51\x4c\x0b\x81\x66\x7b\x46\x58\x54\x2c\x9e\xa0\x4c\x9f\x0e\x33\x7d\x7a\x1b\xa6\x4f\x02\xcd\x9e\xf6\x33\xdd\x2c\x80\x4c\x37\x8b\x83\x4c\x6b\x91\xb0\x4c\x37\x0b\x34\xfb\x7e\xbe\x8f\xa9\xe4\xb8\x10\x19\x96\x04\xc6\xb7\x86\x39\xc4\xba\x2f\x18\x94\x7b\x6d\x0c\xdd\x57\x77\x4e\x3f\xbc\xac\x38\x84\xbf\x52\xf7\xf2\x56\x02\x93\x79\xc6\xc6\xf7\x6e\x68\x84\x91\x5d\xc8\x03\xfd\xa6\x4c\x21\x15\x59\x74\x9a\xb1\xf9\x8c\xf0\x35\x8d\x07\xf6\x62\x6a\x08\xd3\x13\xaa\xfb\x40\x9d\x20\xc6\x79\x73\xcc\x63\x96\x00\xbc\x6f\x01\x6c\xb8\xb3\xc7\xb0\x2b\x32\x70\xa0\xd3\x2a\xa3\x53\x73\x75\x76\x02\xce\xb1\x00\x31\xa8\x93\xaa\x9a\x0d\xd6\x8a\x5b\xcc\x0a\x21\x71\xcb\xf1\x64\x1b\x2f\x71\x91\x92\x5b\xce\x4a\xc2\xe5\x73\x1d\xb0\xa0\x59\x93\x6b\x96\x04\x27\x84\xd7\x8f\x9c\x2c\xea\x7b\x41\xf3\xb2\x25\x29\xd9\x23\x29\xe8\xcb\x10\xf7\x54\xd1\x44\x55\xe4\xd0\xd4\xde\x5c\xd9\x90\x23\x74\x4b\x1b\x7f\xf4\xb1\x47\x68\x00\x86\xa1\x82\xce\x69\x46\x06\x68\x19\xdf\xa0\xcf\xfa\x32\x40\x8f\x93\x05\xba\x23\x8b\xe1\xf1\x9b\xe9\xcb\x00\xbd\x2a\x4d\x38\xba\xb7\x77\x1d\xe5\x26\xdf\xfc\xf6\x2b\x2c\xdf\xfd\xf6\xab\xff\xc3\x69\x49\x0c\xfe\x6e\x94\x2e\x3a\xd5\x17\xf7\x57\x43\x70\x01\x88\x3d\xc1\x85\xaf\xd0\x6d\x85\x1f\x28\x2b\x5b\x83\xc6\x46\x35\xce\xf0\xb1\x13\xa9\x5a\xba\x8e\x6f\xb7\x15\x87\x61\x85\xb0\x52\x44\xa7\x04\x17\x83\xca\x5d\xa5\xa5\xe3\x8e\xa6\xea\xff\x11\xba\x75\x86\xab\x0d\xba\xf2\x19\xc1\xc5\x64\x8d\x33\x9a\x60\xc9\x38\x2c\xc5\x1a\x9c\x43\x69\xb7\x23\x19\xec\x17\x4f\x73\xaf\xad\x69\x2f\x7c\xab\x9e\x9c\x3f\x59\x04\x17\x14\x30\x56\x66\xf4\xbd\xdf\x5d\x5b\x62\xe8\x77\xa7\x75\x35\x8b\x8b\xaf\x7b\xbf\x3b\x21\x71\x06\xe8\x59\xa8\x21\x0e\xa5\x62\x5b\x28\x68\x02\x6a\x43\x9a\xb5\xbe\x73\xa6\x1b\x2d\x92\x67\x00\x67\xa5\xee\x4d\x35\x25\x30\x89\xc5\xba\xf7\x66\x41\xb7\x24\xe9\xbd\x7b\x5c\x97\x23\x93\x57\xa9\xa3\x58\xac\xd1\xa9\xba\x9b\x8a\x75\x2f\x8d\x8f\x03\xd0\x71\x32\x10\xe7\xea\xf6\x8a\x14\xa9\x5c\x8e\x82\x7a\x5c\x97\x06\xe8\x0b\x79\xd6\xa3\xcb\xb7\x98\x72\x77\xc6\x63\x05\x95\x80\xae\x4a\xa3\xef\xcd\x72\x6d\x89\x70\xf9\x4d\x5b\x41\xa7\xfa\xe2\xcc\x69\x0c\x30\x45\x66\xce\xbc\xf3\x63\x9a\xe0\x80\xfc\xb6\xe8\x94\x6d\x9d\xcc\x38\xa6\x85\xe4\x04\x52\xdd\xad\x20\xbc\x2c\x7b\x42\xe1\xb8\x56\x86\xd0\x69\x75\xe7\xe6\xcd\x36\xa0\x3a\xbe\xd6\xf7\x33\x6e\x49\x1c\x5f\xeb\x18\xca\x56\x19\x41\xa7\xfa\xe2\xe2\x19\xe3\xc5\x82\xd0\x02\xc0\xb4\x42\xf0\x71\xad\x64\x26\xb1\x02\x1c\x9e\xc4\x3d\x94\x8c\xe1\x64\x24\xd2\x30\xf7\x55\x16\x91\xb6\x86\xa6\xf6\x71\xaa\x9e\x06\xd5\xd4\x6a\x20\x15\xf5\x1a\xe7\x8a\xe1\xc4\x81\x55\xf9\x55\x08\x5c\x24\x1c\x3f\x65\x90\xc4\xa9\x41\xbc\xe9\x53\x07\x07\x74\xa5\x8d\x09\x9a\x56\x77\x4e\xd6\x73\x48\x8d\x53\x69\xfb\x7e\xb1\x5b\xe1\x03\x63\x3f\x67\x1c\x4d\x4f\xbf\xde\x39\x7f\xe7\xe2\x25\x96\x22\xe6\xb4\x04\x4c\x8e\x6d\x30\xbc\x09\xd5\x97\x0a\x97\x5e\xb5\x25\x34\x5d\x62\x39\xd3\xb7\xce\x14\x5b\xae\x0a\x40\xcd\x52\xab\xfb\x29\x37\x02\x01\xd9\xae\x8a\x47\x34\x55\xff\x9d\x1c\xf3\x89\x80\x0c\x30\x1b\x7d\x2f\xcb\xb6\x44\x38\x9a\x39\x9a\x3a\x67\x35\xc4\x39\x64\x3a\x83\xd2\xf6\x93\x1b\x33\x81\x61\x28\x35\x2a\xd0\xf4\xfa\xc2\x39\x6e\x1e\x33\x0c\x58\xa7\xa4\xb4\xbd\xf4\xd8\xf8\xc9\xc2\x4a\x77\xf4\xe4\x0e\xa5\xfc\x7f\x64\x0c\x33\x3e\x0e\xe0\xb8\xc4\xc1\x25\x9a\xb2\x13\xe7\xda\xaa\x98\xe5\x44\x26\x90\x44\x51\xfa\xfe\x64\x69\x49\x8c\xf0\x8d\xd2\x0e\x9f\x6d\xb5\x19\x34\xd5\x17\xb7\x9f\x0a\xb1\x82\xd4\x00\xb4\xbe\xdf\x4f\x2d\x89\x80\x44\x95\x15\xdd\x6f\xbc\xca\xf6\x10\x95\x9c\x65\xf3\x15\xa4\x20\xaa\x31\x0e\x10\xee\x4a\x85\xaa\x7d\x37\x86\x14\x6f\x75\x7b\xba\x72\x0e\x41\xc6\x8c\x43\xa6\xf4\x68\x75\x3f\x63\x1e\x7e\x22\x8f\x36\x82\xa6\xea\xbf\x9b\xe3\x2a\x5e\xc2\x06\x4e\x6a\x08\x3f\xd7\xae\x50\x40\xbe\xd6\x10\x9a\x56\x77\x7b\x79\x43\xa6\x81\x58\x80\x83\x9c\xc3\x4f\x03\xb1\x66\x0c\xdf\x33\xe7\x54\x90\x98\x3f\x97\x12\xd0\x57\x6a\xf4\xbd\x5c\xdb\x12\xd0\xb5\x05\x1d\xb0\x49\x54\xa6\x43\x7a\xe9\x5a\x8e\xd1\x30\xe8\x8c\xa6\x54\xe2\x6c\x46\xd3\x02\xcb\x15\x3f\xae\x89\x58\xac\x09\x97\x84\x57\x18\x53\x7d\x39\xa6\x63\x6e\x47\xf5\xf6\xd3\xad\xbb\x79\xa2\x83\x27\x31\xa8\x06\x5b\x63\x1c\x4e\x9b\x96\x54\xb8\xac\x68\x28\xc7\xb9\xb0\x1e\x9b\xe6\xee\x92\x55\xac\x01\xa4\xeb\xae\x5d\x77\xe6\xa9\x83\x07\xf6\xe9\xc6\x62\x8d\x76\x3b\x72\xad\xcd\x2d\x60\x26\x4a\xbc\xf5\xce\x42\x69\x82\x87\x6e\x36\x10\x6f\x17\x7c\xf8\x46\x05\x03\x93\x74\xbb\x40\xd3\xed\x62\x58\xbf\xca\x76\x81\x1e\xf0\x96\x0b\xa5\x79\xe7\xcc\x01\x8d\xdf\xc7\xfb\xb5\xc1\xf0\xb9\x77\x47\x2a\x54\xbd\xa2\x95\x95\x9a\x3c\xb4\x8f\xbb\x80\x2c\xd9\xb5\x00\x87\x58\x1f\xbd\x4e\x71\x67\xe8\xd5\x6a\x4f\x24\x11\xc1\xbb\x34\xac\x2d\xed\xb3\xa1\x0b\xec\x7a\xba\xf7\x44\xb8\x1d\x4e\xe6\xe4\x85\xae\xf2\x49\xce\x8a\x94\x41\x7e\xf5\xfb\x48\xde\x24\x70\xcb\x86\x73\xa4\xb5\x87\xce\xec\xcd\xb5\xb1\xeb\xf7\xc8\xb3\x80\xf4\x64\x76\x71\x8e\xf3\x46\x4b\xf2\x0d\x7d\xf1\x3c\x7b\x72\x36\x70\xea\x78\x95\x4c\xc8\x94\x43\xe6\xcb\xee\x40\x1d\xe5\x8f\x9e\xf0\xdb\xb9\xe4\xd6\x1a\xf6\x7a\x45\x3c\x65\x82\xf0\x35\x01\x74\xff\xee\x62\x1d\xe5\x97\xbe\xf4\xdb\x39\x66\x56\x59\x76\x7a\xc6\xd4\x26\x59\x0c\x9a\x36\xd3\x46\xf1\x7a\x63\x57\x2e\x9c\x1f\x5a\xb6\xaa\x4a\xf3\xd7\x78\x67\xf6\x4b\x45\x80\x93\x18\xf2\x13\xa6\xf5\xfd\xd4\x5b\x12\xc1\x7e\xb3\xb5\x11\x74\xa6\x2f\xfb\x79\xae\x01\x6b\xe8\x2a\x84\xc3\x5c\x27\xeb\x23\x97\xd1\x01\xe9\xae\x73\x4b\xf8\x9b\x73\xcd\x6b\x42\x05\x5f\x95\xa0\x39\x46\x35\x84\x9f\x74\x57\x68\x70\x67\x60\x0d\x70\xb4\xe3\x20\x1f\x87\xb5\x85\xce\xaa\xbb\x61\x35\x95\x5a\x5f\x7b\xdf\x3e\xec\x49\x00\xc8\x52\x86\xc4\xbf\x8c\x21\x09\xbf\x84\x21\x29\x04\x3a\x73\x2f\x5f\x48\x58\xfc\x08\xfa\x29\xd1\xfa\x5e\x7e\x6d\x89\x70\x14\xb5\x15\x74\xa6\x2f\x6e\xa2\x2f\x30\x9e\x2f\x87\x68\xbe\xbc\x05\xcb\x17\x4d\xf2\x65\x0f\x47\x4e\x33\x48\xd5\x51\xa9\x7b\x39\xb6\x04\xc2\x71\x54\x46\xd0\x99\xfa\xef\xe6\xc8\x4a\xd0\x34\x22\x0b\xe0\xe7\xd9\x16\x09\xc8\x54\x9b\x41\x67\xe6\xea\x62\x4b\x96\x7a\x46\xc5\x78\xb6\x16\xc0\xc7\xb6\x2b\x12\x8c\xad\x35\x83\x3e\x9a\xab\x93\x6d\x86\x85\xa4\xb1\x20\x98\xc7\xcb\x09\x27\x02\x50\x9d\xd9\xc5\xf2\xfa\x60\x9f\x74\x38\x77\xb4\x2d\xa2\x8f\xed\x27\xb7\x6b\x40\xad\x42\xad\xee\x77\xc0\x1b\xb4\x01\xb5\x11\xf4\x51\xfd\x77\x72\x94\x31\x60\xa0\x53\x69\x7b\x19\x36\xe1\xe1\x08\xca\x38\x41\x1f\x65\xec\x1c\xa1\x24\x6b\x52\x48\x9c\xe4\x14\xd0\x4a\x69\x30\xbc\x54\xfb\x52\xe1\x08\xd7\x96\xd0\x47\x75\x7b\xa2\x6e\x9d\xe4\xb7\x04\xb0\xfd\xad\xd2\xf6\x12\x6e\xc2\xc3\x51\xdd\x92\x18\x7d\xdc\x12\xe7\x1e\xb8\x0b\x1c\x93\x39\x63\x80\xf9\x3d\x15\x82\x8f\x66\x4f\x26\x18\xd5\xca\x0e\x3a\xb7\x37\x6e\xca\x42\x3e\x08\x06\xc8\xcc\x15\x82\x15\x70\x8e\x1d\xa8\xf0\xbe\xe0\x50\x32\x46\x19\x9d\xdb\x1b\xe7\x70\xc2\x62\x49\x01\xb5\x43\xa5\xed\x4d\xb8\x26\x1c\x3a\x12\xa7\xa0\x2e\x1b\x5f\x98\x17\x3f\xf2\x6c\x9c\x6f\x96\x94\xa3\xf3\x25\x1d\xd6\x72\xaa\xb5\x2e\x77\xbd\x79\xac\xea\x8f\x3c\x73\xa7\x03\xcd\x00\xb5\x9d\xd6\x4a\x3f\x77\x3a\x34\xe1\xe1\x3e\x1e\x6a\x17\xde\x39\x3f\x1a\x9a\x91\xc9\x06\xcb\x78\x09\x23\x69\x30\x0e\x51\xed\x48\x85\x25\xac\x2d\x69\xda\xdf\xd5\x9d\x93\x7b\x86\x65\x89\x63\x48\x19\x69\x11\xbc\xbc\xbb\x32\xe0\xcf\xad\x0b\x37\xd0\x33\x56\x19\x9d\xdb\x9b\x61\x1b\xec\xed\xa8\xbb\xbf\x98\x8c\x42\xe6\x95\x6a\x75\xbf\x43\x69\xf8\x79\xa5\xda\x08\x3a\x57\xff\x9d\x59\x87\x01\xa6\x25\x2e\x98\x77\x56\x62\x13\x1c\x8e\x1d\x2b\xd1\x39\x2b\x9d\xcc\x38\x21\x39\xe6\xa0\x3e\x98\x06\xc3\xcb\xb3\x2f\x15\x8e\x6e\x6d\x09\x9d\xd7\xb7\x4e\xf2\x12\x92\xac\xd2\x9f\xac\x72\xf4\x74\xcf\x85\x1c\x3f\xd5\x54\x8c\xb2\x3b\xa2\xc0\xe5\x24\x67\x92\xa0\x73\x39\x6c\x53\xd6\x9e\xee\xb0\x0d\xc7\xda\xca\xb3\x45\xdf\xb2\x49\x96\x14\x17\x69\x46\x01\x93\xf4\x2c\x80\x2f\x6d\xbb\x22\xc1\xfc\x6c\xcd\xa0\x4f\xe6\xea\x64\x4b\x58\xcc\x12\xc8\xc7\x5b\x21\x78\xf9\x76\x65\xc2\x11\xb6\x76\xd0\x27\xc2\xa6\xea\xc6\x49\x99\x02\x7a\x65\x52\xea\xed\x86\x69\x82\xc3\x71\xa4\x12\x7d\xa2\xce\x91\xa5\x94\xca\xe5\x0a\x30\x15\xc1\xe8\x1f\xe0\xd7\x48\x84\xa4\xb8\x5c\xcd\x15\xcb\xcf\x2b\xe7\x5c\x83\x94\xb1\x34\x23\x93\x39\x4d\x9f\x56\x84\x03\x96\xfe\xf6\x80\xbc\xd4\x9d\xa2\x83\xcb\xd7\x1e\xcc\xe4\x0d\x7a\xad\x8c\x49\x54\x99\x44\x9f\xf4\xf3\x29\x4d\xff\x54\x8f\x83\x0a\xd0\x3e\x94\x78\xca\x7a\x70\xb3\x3f\xaf\x3c\x29\x16\xe3\x8c\x14\x09\x86\x14\x37\x5d\xa0\x23\x52\xac\x27\x3a\x36\xc5\x2a\x98\xc9\xdb\xec\x44\x6c\x3d\x5d\x59\xb5\x5e\x9e\xda\xc7\x31\x89\x56\x43\xd9\x5d\x8a\xbb\x88\xfb\x37\x2c\xb6\xfc\x13\xae\x18\x41\xd3\x4d\xa3\x1c\x91\x68\x6d\xb9\xd0\x3e\xd6\xb6\xac\x3b\xce\xd4\xbd\xc7\x0b\x39\xa6\x80\x5e\xec\x16\xc8\x11\x3e\x68\x89\x8d\xcd\xb4\x0a\xe2\x6d\x33\xac\xb2\x68\x7d\x79\x8d\x69\x36\x26\xa3\x6a\x88\x4e\x26\x55\x48\x07\x33\x68\xb9\x9a\x0b\xd0\xaf\x5f\x1b\xe6\x88\xe4\xe9\x08\x86\x76\xab\x31\x66\xdd\x71\xab\x1f\x3c\xae\x10\x4b\x42\x24\x60\xc4\xbf\x03\x73\x84\x2b\x3a\x82\x63\xf3\xaa\x01\x79\xdb\xdc\x6a\x6c\x5a\xb7\xce\xf4\xc3\x98\x1c\x6b\x61\x3a\x79\xd6\xa0\xf9\x72\x2d\x87\x34\x32\x18\xf7\xb7\x30\x9a\xf0\x80\x3e\xe4\x18\x7d\x62\xee\xf5\xdd\x29\xc7\x25\xe4\xe7\x42\xa9\x7b\x09\xb6\x04\xc2\x31\x54\x46\xd0\x27\xf5\x7f\x1f\xc7\x25\x64\x54\xd3\x02\x1c\xe2\xb9\x7c\x83\x3a\xa2\x31\xa3\xb9\x2e\xdd\xa3\x9b\x29\x87\x0c\x0f\x29\x6d\x1b\xe8\xec\xa7\x6c\x85\x0f\x8d\x39\x7b\x44\x9f\x38\x73\x77\x2e\xa6\x9c\xb1\x35\xa4\x81\xa0\xf5\x6d\xb0\x63\x23\xb0\x4e\xf8\xa0\x1d\xf6\x8c\xa6\x8a\x39\x5b\x3f\x3b\x36\xe7\x4a\x79\x09\x18\x70\x54\xda\xfe\x6c\x55\x86\x3e\x71\x53\x99\x40\x9f\x78\xe9\x1c\x6f\x4c\x41\x03\x6f\xe9\x31\x83\x6e\xe9\xd8\x01\x37\xa5\x88\x3e\xed\x1b\x68\x4b\x57\x78\x8d\xcd\x38\x36\x68\x09\x6b\x17\xc7\x9b\x56\x2e\xc9\x70\x25\x81\xb2\x86\x2a\x6b\xe8\x93\x7a\xd4\x43\xe3\x7b\x96\xb4\x2e\xf1\x0b\xc9\x62\x0c\x99\xea\x52\x43\xf8\xbc\x50\x0b\x99\xa3\xc6\xe2\x91\x07\x5e\xf5\xc1\xa8\xde\xde\x32\x7e\x05\xa4\x8c\x8e\x99\x74\xd3\x47\x01\x9c\x47\xd6\x02\x01\x9e\x6c\xd6\x20\x81\x0e\x37\x6b\x60\x38\xd1\xe7\x7d\x4b\x92\xbc\x4a\xac\x38\x2d\xd2\xf9\x6a\xb1\x18\xd3\xa3\xd8\xc7\x12\x64\xcc\x8a\xe9\x5d\x94\x57\x48\x7b\xc9\x4a\x1a\x7c\x1a\x48\x6d\xce\x9c\x25\x16\x17\xab\x7c\x4e\x38\xfa\x5c\xbd\x3e\x69\xbd\x1d\x54\x17\x6e\x80\xab\x6f\xaa\x01\xbd\xb0\x6f\x46\x02\xaa\x4f\xab\x01\xbb\xa2\xfd\x35\x59\x47\x03\xe5\xb8\x6c\x70\x86\x9e\x07\xd7\x82\xa9\x4e\x97\x6b\xb0\xec\x9b\x91\x80\x66\x4b\xe5\x1a\x6d\xf8\xf9\x72\x0d\x54\xe7\x53\x6b\x20\xef\xda\xaf\xc7\x42\xd7\x9f\x5d\x0b\xb7\x7e\x37\x12\x54\x7d\x7f\x0d\xdc\x8c\xf4\x37\x15\x18\x00\x24\xdb\x38\x63\xb3\x88\xfe\x08\x1b\xa0\x7b\xf5\xe8\xfc\xdd\x83\x6d\x71\x70\x70\x7b\x83\x37\xd9\xda\xc0\x6c\x6b\xf0\xf9\x74\xcf\x96\x06\xcb\x64\x01\xa8\xe1\x28\x6d\x2f\xc3\x26\x3c\x1c\xc1\x64\x21\xd0\xe7\x64\xe1\xae\xba\xd0\x32\x5e\x42\x96\x0b\x5b\x00\x2f\xc9\x8e\x48\x38\x9e\xc6\x0c\xfa\x6c\xae\x4e\xb6\xd9\xef\x00\xa6\xd9\xef\xfb\x1b\x41\xcb\xec\x77\x49\xb8\x20\xde\x2d\xd9\x1a\x84\x81\xcc\xb2\xdf\xd1\xe7\xec\xf7\x7b\x6d\xe0\xf0\x4e\xdb\x3d\xc5\xab\xdf\x9d\x95\x78\x9d\x0a\xe3\x9d\x21\xfd\x43\xf7\xad\xf0\xe1\xb5\x01\x39\x6a\xf0\x3e\x21\x25\x29\x12\x52\xc4\xb4\xd7\x3a\xf5\x52\x3b\x30\x05\x6d\x60\x42\x49\x59\xa2\xcf\xd2\x3d\xaa\x4e\x63\x0c\xe8\x27\x51\xda\xbe\xbc\xd5\x0a\x1f\x16\x67\xa5\x88\x2e\xa6\xd8\x3d\x97\x8f\x92\xf8\xb7\x9f\xfe\xef\xef\x3f\x01\x22\x6e\x11\x7c\xb9\xa5\x92\x99\x98\x43\x5d\xc7\x66\x9c\x1a\xe6\x6d\x96\xb8\x56\xe6\xaa\xa3\x68\xa7\xfa\x32\xe8\x37\xb7\x86\x30\x31\x46\xb3\xbd\x2b\x64\x69\x5a\x50\xc8\x41\x26\x46\xdf\x9b\x08\x5a\x02\xb6\x6d\x69\x85\xc1\xf2\x72\x35\xe6\x18\x94\x0e\x8a\x6e\x80\x8f\xee\x52\xb7\x20\x34\x49\xc9\x88\x29\xf4\x1d\x0c\xf0\x69\xdb\x16\x07\xd4\x92\xb4\x18\xa3\x5a\x59\x03\xf3\xb5\xb6\x64\xf7\x81\xbd\xd0\x0f\xc3\x77\x81\xad\x40\x4c\x4e\xa8\x60\xcc\xd3\x18\x20\x93\x19\x2c\x8e\xee\x8c\x19\x36\x4c\x61\x61\x74\x76\xb0\x28\x17\xc9\x27\x32\xec\x10\x02\x0b\xd2\x9c\xd6\x6d\x80\xc6\x9d\xd6\x6d\xc1\x4c\xbb\xc7\x00\x0d\x6f\xf4\x58\x10\x55\xf1\x37\x10\x3b\xb5\x7e\xfb\xf9\x17\x0b\x5a\x50\x51\x42\x96\xd7\x37\x18\xde\x62\xa4\x2f\x15\x2e\x9f\xd6\x96\xd0\x45\x7d\xbb\x87\x7c\xb6\xda\x42\x76\x28\xa9\x10\x0e\x10\x6f\xcb\x84\xa4\xad\xed\x28\xd2\xd9\x6a\xeb\xde\x9b\x8c\x32\xc8\x66\xf4\x4a\xdb\x4b\x95\x85\xdf\x88\x5e\xd9\x40\x17\x5f\xef\x4f\x9c\xf4\x4a\x48\xab\x4c\x69\x7b\xe9\x95\xe1\x5b\x65\xca\x06\xba\xb8\x3d\x77\xee\xe1\x4a\x39\x60\xdc\x83\x72\xef\xb0\x47\x13\x1c\x8e\x1b\x8f\xd1\x05\x77\x76\x19\x50\xce\x0a\xc8\xe1\xa6\x46\xdf\xcf\xaf\x25\x11\x90\xa2\xb2\x82\x2e\x38\x2b\xdc\x07\x9c\x3e\xe0\xf8\x11\x34\xc0\x63\x01\x7c\x75\x7e\x3d\xc6\xd3\x95\x1b\xc6\xc2\xea\xa2\x4b\x73\x75\xb6\x00\xac\xcc\x36\x07\x34\x5e\x1a\x0c\x2f\x9d\xbe\xd4\x28\x32\xdb\x3c\xab\xf8\xfc\xb8\xbe\xda\x43\x69\x0b\xf8\x2d\x50\xda\x7e\x1a\x75\xf8\x71\x04\xaa\xad\x0d\x95\x22\xba\xc4\xdb\xf9\xbe\x48\x03\xda\xeb\x4a\xdb\x06\x3a\x7a\x2f\xb6\x90\x73\xd2\xb6\xcd\x81\x5e\x3f\xae\xaf\x3c\x67\x7a\x3d\xcc\x4b\xc0\x8e\x2f\x4a\xdb\xf7\xdd\xb7\xc2\x83\x7d\xf5\xca\x06\xba\x3c\xbd\x75\xee\x2b\xfe\x00\x5c\xe6\xff\x70\x70\x95\xff\xc3\x9b\x2c\xf2\x37\x56\xd0\xe5\xde\xd3\x1a\x1e\xe2\x8c\xad\x12\xc0\xef\xaf\x05\xf0\x53\x6d\x8b\x04\xe4\xaa\xcd\xa0\x4b\x73\x75\xb3\x05\x4c\xd5\x7d\x88\xbd\xd3\x73\x9b\xe0\x80\x0c\x39\xba\x8c\x9d\x5d\x0a\x0f\xc9\x1c\x50\xcd\x50\xda\x5e\x6e\x4d\x78\x38\x72\xc9\x3c\x46\x97\xc9\xdc\x59\xd5\x78\x20\x52\x02\xa6\xbd\x68\x75\x2f\xc1\x96\x40\xa8\x09\x24\xda\xc6\x3f\xd1\xa5\xba\x74\xfa\x15\xff\xd9\x26\xaa\xc9\x41\xbe\x47\x03\xe0\x25\xdb\x11\x09\x97\xa0\xc6\x0c\xba\xfc\xa4\xaf\xce\x64\x35\x22\x13\x8e\x17\x80\x61\x8b\x36\xca\x11\xbc\xdb\x72\xc1\xc9\x2b\x5b\x95\x07\xee\xf0\xc2\xd9\x9e\x7f\xa0\x45\x0a\x60\xdf\xf4\x65\xb9\x59\x8f\xea\xeb\x1a\xc6\xb6\x39\x94\x50\x59\x43\x97\x3b\xdd\x27\x55\x54\x21\x73\x44\x95\xb6\x9f\x68\xf8\x39\xa2\xca\x06\xba\xa4\xee\x39\xa2\x0f\x90\x8d\xaa\x1f\xfc\x3b\x54\x3f\x84\xdf\x9a\xfa\x21\x17\xe8\xd2\xbd\x1b\xf5\x43\x0e\xd8\xe0\xe9\x21\xf7\x6e\xee\xd4\x04\x07\x64\xb6\x45\x97\xd7\x3f\x9c\xcc\xd8\xb2\x78\x01\x35\xed\x0c\x80\xb7\x11\xa1\x9b\x76\x1d\xb9\x81\xf1\x37\xba\xe8\xd2\x5c\xdd\x4d\x0a\x96\x41\x8a\x50\x96\xf9\x8b\xce\x26\x3c\x5c\x2a\xb1\x4c\xa2\x4b\x96\xb9\xcb\x48\xc6\x00\x3d\x0d\x4a\xdb\x4f\x8f\x05\xef\x65\x50\x36\xd0\x25\x63\x4f\x4e\x7a\x25\xa4\x60\x2c\xfd\xe5\x62\x19\xbe\x58\x2c\x31\xba\x2c\xdd\x85\xa2\x80\xec\xad\xa1\xb4\x7d\xdc\x44\xb8\x33\x80\x2a\x6e\x22\x2e\xd1\x2c\x76\x8e\x02\xeb\x0f\xfb\x15\x0e\x1c\xee\xe2\x78\xd3\xd2\x25\x19\x2e\x59\x05\x2b\x9a\x9f\xf6\x4b\xc1\xfc\xe7\x0d\x2b\x71\x5c\x52\x98\x1f\x70\x49\x0f\x95\xa5\x27\xb5\xc8\x70\x3a\xb8\xa4\x9a\xc8\x49\x49\xdd\xc5\xa8\x60\x45\x89\x25\x28\xcb\x1a\x04\x2b\xe0\xe8\xa1\xe9\x49\x1c\x43\xa2\x52\xd1\x71\xbf\xc5\x72\xe9\xea\x92\x91\xbf\xfe\x04\x18\xdb\xd7\xea\xde\xbc\xd7\x12\x08\x97\xe5\x94\x11\x74\xa9\xfe\xbb\xb2\xd8\xa3\x3e\x43\x93\xf0\x63\x17\x42\xa0\xc7\xbd\x7c\x7b\x50\x55\xa6\x7b\xb5\x89\x27\xa4\x48\x4a\x46\x0b\x99\x88\x0c\x84\xd3\x8a\x5e\x2f\xe2\xca\xb3\xaf\xe2\x01\x05\x14\x9c\x7f\xdf\xe6\xe1\xba\xf2\x51\x51\x17\x6f\x1d\xf1\xc7\x02\xcb\x63\x96\x0e\x1f\x13\x7b\x8b\xe5\x34\xc3\x64\x76\xc4\xce\x84\x47\x59\xd1\x50\x6f\xed\xa7\x63\x06\x19\x8e\x89\x7d\x35\x84\x50\xbd\xe6\xab\x42\xd2\x9c\x4c\x96\x04\x67\x47\x94\xd3\x5e\x13\x5d\xac\x57\xf7\x90\x20\x7c\x9d\x11\x79\x18\x03\x3d\x7a\x50\x9a\x68\xb6\xf1\xfa\x61\xaf\x92\x2d\x7b\x60\xaf\xee\x10\xdd\x33\x0b\x76\x87\xcd\x18\xcf\x38\x3f\xa2\x64\x3d\x0e\xab\x4b\x78\x34\x9c\x41\x99\x34\x75\x18\x20\xd2\x2b\xc5\xa7\x9e\xc0\xd9\x4f\xe7\x1c\x43\x8b\x98\x36\xd2\xeb\x67\x17\xc6\xc9\x84\x14\x69\x73\x4a\xf7\x38\x9c\x3a\x72\x7b\x3e\xa8\xd7\x71\x41\xf7\x6b\x0f\x53\x8a\xf4\x6d\x6e\xc8\x7c\x79\xcc\x36\xa7\x47\x11\xb0\x60\xaf\x4e\xa0\x8d\x6b\x6d\xe2\xc5\x23\xa0\xc1\xab\xd5\x7d\x55\xd5\xb6\x40\xb0\xaa\xaa\x36\x82\xbe\xa8\xff\xce\xaa\xea\x2b\x14\xc8\x9d\x52\xc0\xcd\xb4\x23\x72\xfc\xd0\xc5\xff\xb2\x32\xfd\xb5\x0b\xce\x9d\x22\x6f\x35\x27\xbc\x20\x92\x00\x7a\x68\x1b\x0c\x6f\x82\xd4\x52\x93\x98\x15\x0b\x9a\x4e\x72\xc0\x49\xc9\x2d\xb4\x84\x94\x19\x7b\xce\x21\xd3\x68\x5b\x68\xcb\x31\x9d\x42\x3b\x28\x0f\x6c\xc4\x0c\xb9\x1d\x94\x02\xe7\x44\x94\x38\x1e\x73\xc2\xd3\x2e\x18\x4b\x5e\x05\xa7\x24\x5c\x50\x21\x49\x21\x27\x6b\x96\xad\xf2\x40\xa0\x93\x38\xc3\x74\x4c\xdf\xfe\x2e\x36\x1b\x33\xc4\xbe\x03\x53\xad\xb7\xa3\xac\xa8\x8e\x25\xce\xc8\xce\x19\x8a\xe3\x90\x05\x5b\xf1\x98\x88\xc9\xd3\x6a\xd4\x9c\xc3\x1d\x44\x41\x62\x0e\xd8\xa8\xa5\x83\xc4\xd7\x34\x26\x13\x1c\xc7\x6c\xf5\x3a\x5f\x98\x85\x1c\x0d\xc5\x4a\x52\x88\x25\x5d\xc8\xc9\x7c\x45\xb3\xc4\x96\x26\xaf\x05\x17\x7c\x34\xa9\xf1\x04\x32\x31\xff\x4b\x95\x83\xe8\x4b\xfd\x7a\xaa\xdf\x5e\xe3\x81\x7b\x5e\xb6\x70\x5b\x25\x62\x0b\xf7\xac\x79\x3b\x16\x78\x59\xe2\x16\xe0\xe7\xdb\x93\xb1\x40\x0f\x6c\xde\x02\xba\x64\xf3\xb1\x40\x4d\x11\xd9\xc2\xbb\xa9\x5f\x8e\x86\x55\x85\x65\x1b\x51\x3d\x8f\x05\x6b\x0a\xb7\xbf\x6c\xe1\xd6\x42\xbe\xad\x03\xbf\x99\xb0\xd7\xb3\xf2\x97\x29\x42\xbd\xc6\xb4\xc4\x68\x93\x2c\xe9\xa0\xb3\xfe\xe4\xa2\xe3\xa1\x5a\xa5\xeb\x5f\xad\xd2\xb5\x85\x7e\xd7\x48\x4c\x1b\x81\xf1\xf6\x6c\x99\xfb\x97\x2e\x73\x3b\x76\x6c\xc8\x9f\x2a\x60\x2c\xbe\x2d\x81\x5b\xb8\x33\xf3\x66\x3c\xa0\x2e\x35\xff\xaa\x0a\xe2\x0e\xb2\x0e\x3a\xb1\x21\x40\x0b\x0e\xe4\x61\x90\x75\x81\x8a\x74\x81\xfa\x97\x2d\x9f\xd1\xd7\xea\xfd\xa9\x7a\x6d\x4a\x39\x10\x72\x1f\xd2\x39\x42\xff\xb8\x4a\x56\x90\xaa\x6d\xb2\xf2\x57\x6a\xeb\xf0\x80\x3f\x18\xc9\x0a\x7d\x59\x25\x2b\x17\xbd\x6a\x14\x65\x3c\xc5\xac\xbb\xd4\xd6\x49\xb3\x27\x13\xea\x8c\xc1\x7a\xb6\x6d\x35\x88\xe3\x64\x9c\x60\xc0\x14\x61\xa5\xed\x65\x9a\x8c\xd9\xb7\x64\x20\xcd\x04\x97\xe8\x2a\xe9\x6f\xcf\x50\x45\x90\x02\xce\x0b\x57\xda\x7e\x7a\xb4\x7f\x62\x78\x00\x7a\x74\x81\xae\x12\xba\x70\xd2\x63\x80\x19\x5d\x19\xf3\x4e\xe8\x6a\x82\x83\x65\x50\x96\xa2\x2b\xe6\x9c\xc2\x95\xad\x62\x52\x40\x3e\x43\xad\xef\xa5\xd7\x96\x08\x97\x7a\xda\x0a\xba\xd2\x17\x37\xd1\x7c\x4e\xf8\x03\xe8\x7c\x8c\x06\xc3\x4f\xb8\x27\x15\x90\x74\x65\x09\x5d\xd5\xb7\x4e\xf2\x2f\x90\x8f\xf3\xa5\xfa\xf6\x9c\x23\xf8\x4d\xf0\x31\x91\x6f\x1d\xbf\x91\xbd\x2c\xd0\xd5\x7f\xce\x9d\xc3\xf6\xb0\x7d\x6c\x0f\x6d\x60\x0b\xd9\x7b\x8a\x42\xba\x7f\x4a\x56\x7e\x80\xe8\x8e\x3f\x36\x21\x1f\xbf\xe5\x83\xd2\x1d\xb3\xe5\x83\x2b\xb3\xe4\x7a\x6c\x61\x95\x49\x5a\x62\x2e\x47\x65\x7a\xbd\xfd\xee\x91\x7b\xf7\xb6\x72\x9b\xb2\x8c\x6a\xcb\xe8\x9a\xe6\xe4\xba\x7a\xda\x93\x05\x85\x84\x1c\x3c\x60\xf4\x7d\xd9\xb0\x23\x11\xac\x90\x30\x56\xd0\xb5\xbe\xb8\x0a\x87\x9c\x48\x4e\x63\x40\x47\xaa\x05\xf0\x52\xed\x88\x84\xe3\x6a\xcc\xa0\x6b\x73\x75\xb2\xa5\x31\x67\x39\x81\x25\x6d\x8d\xe1\xe5\xdc\x97\x0a\x47\xbb\xb6\x84\xae\xeb\xdb\xbd\xe4\x4b\xce\xf4\xe1\x55\xf0\x74\x77\xa0\x1d\x74\x88\x5b\x3e\xac\x6b\xac\xcd\x26\x7b\xa8\x97\xb7\xe6\xa5\x37\xab\x64\x0c\xe2\x9d\x8c\xf9\xbd\x91\x31\xe0\x9e\x2a\x1a\xe2\x6d\xf6\x53\x51\xa6\xaa\xbd\x54\xae\x69\xc6\x46\xec\xa7\xa2\x21\xec\x5e\x2a\x0a\x62\xff\x7e\x2a\x39\x2d\x00\xa3\x89\x4a\xdb\xef\xf8\x22\xf8\x58\xa2\xb2\x81\xae\x69\xe1\x1c\x49\xcc\xb3\x0c\xd0\x14\x54\xda\x5e\x7a\x4d\x78\x38\x7a\x59\x56\xa2\xeb\x2c\x73\x36\x05\x73\x06\xa9\x63\x2b\x6d\x2f\x3d\x76\x6c\xbd\x7a\x74\x73\x49\x99\x40\xd7\xcc\x5d\x95\xce\x59\x91\x32\xc8\x76\x15\x16\xc0\xcf\xb1\x2d\x12\x2e\x15\x8d\x19\x74\xad\xae\xee\xad\x2a\xac\xc8\x24\xe5\x14\xb4\xd7\x5e\x17\xe7\x08\xee\x5d\xc9\xe0\x2e\x30\xd6\xd0\x27\x4e\x93\x73\xf7\x6f\x81\x58\x03\xd8\x8b\xb5\x97\x72\x1d\xfc\x06\x0b\xba\x72\xb1\x46\xd7\x62\xed\xe4\xb8\x12\x12\x83\x96\x49\x57\x08\x5e\xb6\x5d\x99\x70\x49\x6b\xed\xa0\x6b\x7b\xe3\xa4\xbc\x26\x90\x76\xe6\x9a\x78\xdb\x99\xad\xf0\x01\x34\x1d\x33\xcc\x5b\x40\x03\x9d\xb0\x26\x19\xba\x5e\x93\x63\x1a\x4b\x75\x37\x66\xad\xe4\x98\x94\x9e\x3f\xcf\xb1\xa4\x90\x92\xc0\x00\x78\xdd\xd6\x11\x19\x5e\x2b\x32\xea\x93\x39\x09\xbf\xcd\x91\xb5\x85\xae\x9f\x4f\xd5\x75\x58\x7d\xa8\xab\x7b\x4a\xdc\x1b\x24\x15\x38\xa5\x0c\xe0\x70\xa3\xef\xf3\x77\x47\x22\x98\xab\x8c\x15\x74\xa3\x2f\x6e\xa2\x90\x33\x61\x94\xb6\x9f\xe4\x98\x59\x00\x43\x29\x4a\x45\xb0\x3f\x96\x65\x23\x08\x5b\xf2\x5e\x1c\x5a\xf2\x5e\x38\x96\xbc\xbf\x3e\x43\x65\x04\xdd\xa8\xff\x7b\x39\x02\x77\x2f\x6d\x30\x0e\xb2\x9d\x38\x76\x32\x7d\xed\x55\xfe\x86\xb1\xde\x3c\xf4\x66\x67\xa5\x7f\x9b\x3a\x95\x1c\xb4\x09\xa4\x05\xf0\x92\xee\x88\x84\x4b\x64\x63\x06\xdd\x98\xab\x93\xad\x00\xac\xde\x2c\x84\x77\xf1\x66\x13\x1c\x8e\xa1\x78\x42\x37\xc2\xb9\x72\x93\xa5\x05\xa0\x46\xa0\xb4\xf7\xff\x8c\xb7\x42\x07\xed\xe2\xa3\xf4\xd0\xd7\xb4\x70\xfd\x20\xb3\x8c\x16\x29\xfb\x05\x10\x65\x03\xe0\x4b\x91\xae\x48\xb0\x54\xb1\x66\xd0\x57\x73\x75\xa6\x8e\x0e\xfa\x15\xca\xf6\xd7\xc3\x6c\x7f\x7d\x1b\xb6\xbf\x5a\xb6\xbf\x3a\xd9\x96\xa4\x50\x75\x57\x40\x73\xba\x86\xf0\x32\xae\x84\x26\x31\x2d\x46\x9d\x83\xdb\xc7\x49\x33\xc8\xa1\x25\x0d\xce\x23\x79\x16\x92\x8d\x19\x3e\xec\x23\x15\x64\x25\x39\x1b\xbd\xdb\x6c\x0b\x88\xad\x47\xcf\x75\x6c\x50\xc4\x86\x86\xdf\xb4\xa4\x36\x87\x4c\xba\xa2\xa9\xbe\x0c\x9f\xbc\xa2\x31\x4c\x9a\xa2\x4f\xd9\xe0\x93\x32\x1a\x8c\x2a\x3d\xd1\x17\x7b\x33\x12\xc7\xa6\x26\xba\x31\xd7\xb1\x28\x6c\x8d\xd1\x0d\x5b\x0f\x9b\x2e\xd5\xe8\xeb\x44\x44\x33\xf5\xdf\xfd\xf9\x4a\x5c\x66\xb8\x28\x20\x63\x0d\x2d\x10\xff\x27\xdc\x17\x0b\x98\xab\x6a\x53\xe8\x6b\x29\xf1\xad\xb9\x77\x79\xa0\xc4\x4b\x40\x0f\xba\xd2\xf6\x71\x6e\x85\x07\x23\xab\x6c\xa0\x5b\xbc\x64\x6e\x7a\xdb\x8c\xa5\x29\x68\xbb\x9f\x06\xc3\x4f\xb5\x27\x15\x90\x70\x65\x09\xdd\xe2\xed\x95\xb9\x75\x92\x4f\x00\x73\x0a\xca\xc4\x3b\xdf\xa7\x09\x0e\xc7\x33\x59\xa0\xdb\xc4\x39\xd9\xa7\x4c\x3b\xb3\xe6\x45\xc6\x00\x3b\xb1\x38\xc0\xbc\xcc\xf7\x8a\x87\xf3\x44\xda\x9e\xc6\x8a\x94\x49\x74\x9b\xb6\xe6\xad\xce\x32\xe6\x2c\xdf\xca\x54\x6f\xfc\x0d\xf1\x8d\x06\xf0\xfb\xa3\x2d\x12\xd0\x07\xda\x0c\xba\x4d\xf5\xf6\xe5\x4e\xb6\x19\x96\x0b\xc6\x73\x60\xf3\xb6\x03\xe3\x65\xee\x10\x0c\xc7\xdf\x1a\x33\x0d\xdd\x5b\xfb\xb4\xaf\xad\x5b\x72\x5a\x80\x06\xd0\x2d\x80\x8f\x7e\x56\x06\xff\x21\xb3\xb1\x40\xb7\xe6\xea\x66\xca\x24\x9b\xaf\x20\x25\x9d\x45\xb0\x02\xce\x59\x31\x3d\x99\x81\xf3\xa8\x2a\x6d\x74\x6b\x6f\x9c\xd3\x59\xca\xd5\xbc\x80\x1c\x3f\x6d\xf4\xbd\x19\xb6\x2d\x11\x2e\xd1\xb4\x15\x74\xbb\x9a\xdf\xb8\xcf\x98\x2e\x57\x99\x80\x9c\xe0\x6f\xf4\xfd\x44\x5b\x12\x01\x89\x2a\x2b\xe8\x56\x5f\x5c\x44\x9f\x56\x98\xcb\x97\xf1\x44\x8d\xbe\x8f\x68\x47\x22\x18\x51\x63\x05\xfd\xa9\x2f\x6e\xa2\x34\x7e\x5c\x50\xc0\x96\x75\x15\x82\x9f\x6c\x47\x26\x20\x5d\x63\xe7\x01\xfd\x59\xdd\xb9\x48\x73\x3c\x9f\x53\x09\xd9\x8e\xbd\x42\xf0\x91\xee\xc9\x04\x23\x5d\xd9\x41\x77\xfa\xc6\xbd\x2d\x3b\x27\x38\xd6\x8b\x7d\xcd\x41\xe5\x80\xc1\x80\x3e\x92\xd7\x05\x6e\xd9\x70\xae\xb0\xf6\xec\x71\xec\x02\xdd\xd9\x17\xe6\x2c\x76\xe7\xd8\x01\x27\x80\x5f\x20\x4e\xbc\x75\xed\x26\x38\xd4\x7c\x0a\x4e\x16\xe8\x8e\x38\xab\xda\x9c\x40\x0e\xe6\x55\xda\x7e\x6a\x3b\x47\xde\x1e\x1e\x1e\x68\x54\x5b\xcb\xd7\x03\xe6\x06\x21\xd1\x1d\x19\x78\x62\x68\xad\x75\x52\xd2\x7d\x6e\x9d\x88\x0d\x4e\x53\x48\x2d\xad\x8d\x72\xc8\xcd\x3d\xb9\xb0\xfe\xb2\xb6\xb4\x07\x66\xe6\xde\xe9\x05\x36\x67\x72\xc1\x71\x4e\x36\x8c\x03\xfa\x50\xbb\x38\x5e\x4f\xb8\x24\xc3\xf9\xa2\x63\x0d\xdd\xa9\xc7\xf3\xea\xd1\xe9\x10\x01\x29\x53\x85\xbf\x18\x15\xaf\x35\x47\xbc\x41\x1a\xe8\x0e\x21\xd0\x9d\x38\x66\x0c\xbe\x55\x79\xb6\x4a\xce\x2a\xb3\xc0\x29\x60\x1a\xa2\xd2\xf6\x39\xac\x15\x1e\x6e\xaf\x4b\x9c\x62\x34\xc3\xa9\x73\x1a\xa2\xc0\x19\x11\x0b\xc6\x63\xc0\xa0\x65\x83\xe1\xa7\xda\x93\x0a\x48\xb8\xb2\x84\x66\xf5\xad\x9b\x7c\x39\x29\x88\xdc\x10\xbc\x86\x14\x91\x1d\x18\xbf\x0b\x76\x05\x03\x7a\xa1\x44\xb5\x31\x74\x43\xe4\x77\x7d\xe7\xf6\xc3\x16\xb2\x5b\xb2\x56\xf7\xf1\xde\x3e\xad\x08\x1f\x31\x2d\xc1\x75\x10\x4a\x1b\x6a\x98\x43\x8c\x2a\xfa\xf1\xa7\xba\x0c\x99\x0a\xd5\x51\x74\x8c\xbe\x2a\xce\xc9\x2a\x03\x65\xa1\x0a\xc2\x9b\x7d\x7a\x42\x01\x77\xc7\xb5\x86\xd0\xac\xba\x73\x66\x1b\x15\x49\x2c\x39\x28\xef\xd4\x18\x87\x98\x77\xa4\x82\x52\x37\x96\x34\x77\x73\xeb\x24\x4f\x12\xc8\xef\x42\x73\xa0\xbf\x9b\xf0\xd1\x07\xfe\x8f\xae\x90\xeb\x33\xcd\x77\x8f\x32\xaf\xe2\xa7\x17\xcf\x43\x08\x6a\x00\x3f\xc7\xb6\x48\xb8\x14\x35\x66\x90\xdd\x0f\xc0\xc3\xb6\x60\x1b\x30\xe1\x82\x6d\x8e\xe0\xdc\x48\x85\xa6\x5d\xb0\x4d\xc5\xfc\x86\x6d\xf6\x91\x3f\x66\xbb\x3c\x2f\xf3\x66\x8b\xbc\xbd\xb4\xb3\x9d\x73\x51\x5f\x7b\x96\x96\xb5\xa2\xf9\x66\xee\x53\x36\x05\x05\xf4\xda\x0b\xea\xed\xab\x6f\x82\x87\xaf\xae\xa4\xe1\x4f\x6e\x11\xb4\x44\x33\xea\xec\xca\x17\xa0\x43\x2e\xc4\x81\x53\x2e\xc4\xa8\x63\x2e\x1a\xdd\xc9\x1c\xcb\x7a\xc3\xf8\x70\xee\x79\xc8\x05\x9a\x3d\x0c\xdc\x50\x46\x6b\xe9\xf8\x69\xdd\x53\x75\xb7\xcf\xc3\x80\xe9\x59\x5a\xfd\x90\x8f\x83\x4f\xcd\xd2\x46\x34\x4f\xe7\xb4\x2c\x91\x81\x26\x29\x69\x75\x2f\xc7\xec\x0d\x56\xd3\x6b\x23\x68\x96\xed\x59\x43\x2f\xf2\x12\x52\x80\xe4\xa5\xbf\x04\x69\xc2\x47\x2c\xd0\x2e\xdf\xa0\x0c\xc9\xcb\x12\xcd\xf2\xd2\x5d\x8a\x14\xf8\x91\x3c\x63\xc8\x31\x94\x35\x84\x95\x70\x76\x0d\xa8\xf0\x1d\xc9\x81\x3c\x2a\x6d\x34\x53\x77\xff\x3e\xd9\x73\x0e\xa5\x28\x72\x48\x72\x17\xb9\x3f\xb9\x9b\xf0\x70\x29\x56\xe4\x25\x9a\x15\xb9\x3b\xc5\x18\x64\x3b\x1a\xa5\xed\x4b\x27\x15\x3e\xf0\xa8\xcd\x56\x9f\x8c\xd2\x46\x33\x86\xcb\xbd\xe7\x6d\x0a\x96\x41\x5a\x5c\x2c\xf3\x37\xb6\x9a\xf0\xe1\xdf\x22\xcb\xc6\x6f\xae\xa8\x94\xa7\xad\xed\x57\xc3\x65\x0d\x96\x71\x34\x53\xd6\x9c\x59\x83\xb3\x95\x00\x9c\x98\x61\x01\xfc\x2e\x6e\x8b\x04\xe4\xa9\xcd\xcc\x99\x6c\xbd\x9c\x99\x97\xa7\xee\x49\x2d\xa2\xc4\x90\xbe\x62\xad\xee\x65\xde\x12\x08\xc7\x5b\x19\x41\x33\xf5\x7f\x2f\x47\xe0\xd8\x4b\x83\x71\x90\xed\x64\xd4\x38\xcc\x08\xc6\x7a\x70\xc0\xc3\x3a\x5b\x15\xa0\xa4\x55\xfa\x7e\xb6\x2d\x89\x80\x89\xab\xac\xa0\x99\xbe\xb8\x89\x72\xd0\x94\x44\xa3\xef\x27\xaa\x24\x26\x23\xa7\x66\x39\xfa\xf6\x44\x39\x72\x81\xa3\x99\xb6\xe5\x98\xb4\xe5\xef\xd7\x53\xf6\xd0\xac\x74\x2e\x71\xb4\xe4\x74\xd5\x1e\xea\xc4\x4e\x03\xc6\xe7\xca\xb7\x69\xe8\x68\x5b\x55\xa3\x45\x3f\xec\x6f\xb6\x98\x78\xd1\x42\x92\x94\xeb\x69\x80\x60\x5f\xb4\xb0\x8e\xf0\xc8\xae\x74\x68\xbf\xb4\x2c\x5a\xef\x5c\x34\x6f\x3c\x3e\x82\x6d\xed\xd7\x02\x39\xc2\x2b\x6f\xb1\xd1\x9f\x31\xa5\xb7\xfb\x33\x6e\xd8\xb7\xe9\x9f\x8d\x13\x27\x09\x64\x45\x70\x1b\xe5\x08\x0f\xb4\xe5\x02\x0e\x33\x27\x54\xa0\x3b\xf5\xdf\x43\x7c\x03\x67\xbd\x39\x86\xf2\xa6\xcf\xf7\xf5\x7f\x3d\xf5\x07\xb0\x11\x36\xc1\xbf\x93\xb9\xf0\xf4\x99\x3e\x41\xda\x79\x4f\xde\x25\xf3\x4d\xf0\xf0\xda\xf3\x53\x36\x11\x92\x71\x12\xbe\xfa\xfc\x94\xa1\xd9\xd3\x31\x6b\xea\xbb\x3a\x26\x76\x4a\x75\xa6\xef\x9c\xce\x05\xd5\xbc\x0f\xd4\xba\xdf\xa0\xc6\x2d\x96\x68\x26\xdc\xbf\x28\x12\x03\xa6\xf0\x29\x6d\x2f\xb7\x26\x3c\x1c\x39\x89\xb7\x68\x26\x4f\x9c\x27\xcf\x0a\xc9\x40\x3d\x06\x4a\xdd\x4f\x90\xbd\x41\x9f\x81\x32\x82\x66\xea\xbf\x9b\x23\x27\x38\x87\x90\x54\xfa\x7e\x96\x2d\x89\x80\x34\x95\x15\x64\x66\xdc\xed\x21\x4a\x8b\x54\x92\xbc\xcc\x30\x64\x51\x77\x17\xe7\x00\x71\x55\xd4\xf7\x44\x43\x7a\xa0\x15\x31\xe5\x09\x5a\xa4\xf7\xf6\xd1\xed\x11\xc8\xec\x71\xa5\xed\x67\x7f\xec\xcc\xf1\xf1\x83\x9e\x72\x35\x47\x33\xe9\x9e\x34\x2e\x9e\x05\x68\x8b\x5f\xa3\x6f\x83\xdd\x5d\x62\x6d\x89\x81\x31\xd7\xaa\x68\xa6\x2f\xce\xfe\x30\x89\x53\xc1\x56\x80\xd2\xc7\x02\xf8\x08\x48\x9a\x3c\x5f\x63\xfe\x58\x4b\x0d\xec\xd5\xb3\x26\xd0\x7d\x8d\xb3\x87\x0a\x5f\xd0\x0c\xf0\xc9\x59\x00\x2f\x95\x8e\xc8\x60\x1e\x5a\x19\xdd\x63\x7e\x4e\x33\xe2\x26\x41\x32\xd5\x6e\x00\x94\x94\x15\x82\xef\xa3\xe9\xc9\x04\x2b\x2b\x2a\x3b\xe8\xde\xde\xb8\xbe\x20\xb9\xe4\x74\x01\xe8\x4f\x32\xfa\x5e\xba\x6d\x09\xe8\x24\xc3\x0e\xd8\x40\x77\x68\x55\x74\xaf\x2f\xc3\x66\x1b\x76\x54\xdd\x39\x87\x42\x0e\x52\x53\xda\x5e\x17\xd2\xf0\xc7\xa8\x29\x1b\xe8\x9e\xba\x0f\x51\x93\x34\x87\xcc\x95\xd2\xea\x7e\x82\x79\xf8\x39\x52\xda\x08\xba\x57\xff\x9d\x1c\x37\x34\xa3\x80\x65\xcf\x46\xdf\xcb\xb2\x2d\x11\x8e\xa6\xb6\x82\xee\xf5\x65\x0f\x51\x09\x5a\x06\x68\x01\x0e\x50\x55\x22\x93\x84\x72\x12\xcb\x9c\x08\x71\xf4\x79\x0e\xbb\x2d\xc4\x0a\x4c\x10\xcc\xc7\xf4\xb6\x75\x51\x54\x36\xc8\x68\xf8\xad\xed\xad\x3d\xd4\x71\x81\x4a\x16\xf5\xf6\x4c\xbf\xbc\x36\x2f\x07\x35\x48\x2b\x58\xe3\x8c\x0a\x6f\xa6\x9f\x46\x01\x55\xfe\xa8\xa0\xee\xed\xb3\x2b\xeb\xac\x8a\x84\x70\x09\x99\x74\x55\x21\xf8\x32\x4f\x4f\x26\x54\xef\x49\x65\x06\xfd\xcb\xde\xb8\x19\xd3\x35\x8b\xa9\x7c\x9e\x94\x98\x0b\xc2\x01\x5d\x47\x3b\x50\xbe\x1f\xba\x46\x38\xae\xb7\x99\x6c\xbf\x5d\xd0\x2d\x49\x1c\xef\x65\x2d\x3d\xb0\x7e\x54\x43\xa0\x7f\x15\xf4\x9b\xbe\x9b\x8a\x75\xef\xc7\x6e\x04\xc8\xb9\x8a\xe8\x77\x9a\xc8\x25\x1c\xeb\x7e\x27\x42\xc6\xb3\xf5\x36\x99\xe3\x13\xa7\x86\xf0\x65\xcc\xbe\x50\xa8\x36\x4f\xb3\xed\xe7\xb7\xea\xce\x95\x37\xd7\x24\xd3\x6e\x01\xb0\xb6\x08\x5e\xd2\x5d\x99\x70\x7b\x9d\x5a\x3b\xe8\x9b\xbd\x71\x53\xe6\x12\xd0\x1b\xa5\xd5\xfd\x64\x1b\x81\x80\x4c\xb9\xdc\xa2\x6f\xea\xbf\x93\x23\xa0\xfd\xb1\xf6\xb6\x3c\xd6\x47\xb6\x39\xc6\x67\xdc\x1c\x7d\x73\x36\x33\x36\x04\xcb\x25\xa4\xce\x61\x01\x7c\xec\xba\x22\xc1\x52\xcf\x9a\x41\xdf\xcd\xd5\xcd\x76\xfe\xe1\x01\xc2\x75\xfe\xe1\xc1\xcf\xb4\x11\x08\xc8\x73\xfe\xe1\x01\x7d\x57\xff\xf7\x70\x3c\xea\xc8\x6b\x1f\xcb\xd6\x31\xd7\xfb\x78\xb6\x44\x42\xd5\x03\xac\x15\x45\x55\x5d\xf7\x90\x15\x2c\x7e\x84\xcc\xb9\xae\x21\x0e\x10\xee\x08\x05\xa4\x6c\xec\x28\xd2\xe6\xce\x4b\x7b\xf2\x20\xf8\x87\xff\xf9\xed\x15\xd8\x5b\xa4\xa3\x9c\xd0\x95\x7d\xe5\x8c\xde\xb8\xc0\x58\x41\x97\xb3\xbb\x0f\xff\xf3\xdb\x77\x32\x9f\xed\xf7\x07\xe3\x49\xc9\x09\x64\x39\x66\x0d\xe1\xf5\x40\x4f\x28\xdc\x37\x5e\x19\x42\xdf\xab\x3b\x17\xef\x6d\xbc\xc4\x05\xe4\xd4\x3f\x0b\xe0\xe3\xdc\x15\x09\xc6\xd8\x9a\x41\x3f\xa6\xfa\xea\x64\x0b\x28\xba\xb7\xde\x72\x7b\x1b\xbc\xd0\xde\x3e\xa0\x1f\x97\x4e\x52\x79\x26\x48\xbc\xe2\xa0\xea\x62\x0b\xc4\x4b\x73\x47\x0c\xda\xed\xa7\xe1\xc8\x8f\xeb\xab\x71\x4e\x69\xe2\x83\x7e\xe4\xd9\x8c\xa6\x05\x96\x2b\x7e\x4c\xbb\xbb\xd5\x1e\xe9\xa0\x5c\x5f\xcd\xec\xbd\xb3\x41\xb2\x05\x4d\x3a\xdf\x1e\x98\x74\xbe\x1d\x35\xe9\x7c\xa8\xcf\xca\x12\xfd\xd8\x33\x6f\x7c\x5b\x62\x09\x18\xee\xd6\xea\x36\xd4\xb5\x60\xb4\x15\x3c\x68\xbf\x5d\xad\x88\x7e\xdc\x62\xb9\x74\xcc\x0f\xdb\x8a\x0c\xf0\xf3\xad\xb4\xbd\x69\xd2\x84\x87\x4b\x13\x91\x49\xf4\x43\x64\xce\xdf\x26\x15\x08\x5d\x16\xdc\x60\x1c\xa2\xda\x91\x0a\x4b\x58\x5b\xd2\xb4\x67\xea\xce\xcd\x1d\x38\xc0\xbd\xed\x8c\x5f\x3b\x8b\xa0\x07\xc1\x8a\x9e\xdc\x24\xea\x3e\x0f\xec\x71\xb1\xca\xe8\x52\xb0\x62\x60\xdf\x48\xa5\xfa\xc3\x0c\x85\x3b\xcb\xa0\x67\x9c\x83\x3a\xed\x8d\xbe\x2f\x23\x74\x24\x82\x65\x02\x63\x05\xfd\x5b\x5f\x5c\xa9\xff\x42\x8a\x84\x08\x40\x4b\xc4\x02\xf8\xa8\x76\x45\x82\x71\xb5\x66\xd0\x7f\xcc\xd5\xc9\x96\x96\x93\x84\x2c\x32\x0c\xea\xc2\x6f\xa3\xf8\x72\x7d\xfa\x42\xcb\x9e\xdc\x24\xda\x7d\x37\x30\xe7\x57\xda\xe8\xd3\x0b\x2d\xcf\xec\xc3\xc0\x4f\xa0\xc6\xf8\xcf\x5e\x88\x9a\x2a\x6c\x64\xda\x02\xf8\xdc\xd4\x15\x19\xe8\x0d\xab\xac\x88\xec\x1d\x99\x7e\x61\xec\x91\x90\x12\x94\xe4\x15\x84\x37\x9f\xf7\x84\xc2\xe5\xf4\xca\x10\xfa\x0f\x63\x5f\xf4\x9d\x33\xb7\x57\x62\xe0\x73\x3d\xfb\x48\x47\x79\x61\xf2\x36\x67\x7d\xd6\xf6\xf6\x1c\xfa\xf9\xff\x03\x00\x00\xff\xff\x95\xf0\x5d\x3a\x0d\x3f\x01\x00"), - }, - "/camel-catalog-quarkus-1.0.0-M1-1.0.10.yaml": &vfsgenÛ°CompressedFileInfo{ - name: "camel-catalog-quarkus-1.0.0-M1-1.0.10.yaml", - modTime: time.Time{}, - uncompressedSize: 18757, - - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x5b\x4b\x73\xdb\x3a\xd2\xdd\xeb\x57\xa0\xa2\xcd\xbd\x55\x11\x12\x3b\x5f\x7d\x0b\xcf\xca\xf1\xa3\xae\x92\xc8\xf6\x84\xba\xb9\xc9\xec\x20\xb2\x49\xc1\x02\x01\x1a\x80\x24\x3b\xbf\x7e\x0a\xe0\x5b\x92\x21\x52\x01\x53\xe3\x85\x44\x12\xdd\xa7\xfb\x9c\xc6\x83\xa4\xe0\x31\x9a\xf8\xfb\x1b\x8d\xd1\x17\x1a\x02\x57\x10\x21\x2d\x90\x5e\x02\xba\xcc\x48\xb8\x04\x14\x88\x58\x6f\x89\x04\x74\x2b\xd6\x3c\x22\x9a\x0a\x8e\xfe\xb8\x0c\x6e\xff\x44\x6b\x1e\x81\x44\x82\x03\x12\x12\xa5\x42\xc2\x68\x8c\x42\xc1\xb5\xa4\x8b\xb5\x16\x12\xb1\x1c\x10\x91\x44\x02\xa4\xc0\xb5\xc2\x08\x05\x00\x16\xfd\xee\x7e\x3e\xbd\xba\x41\x31\x65\x80\x22\xaa\x72\x27\x88\xd0\x96\xea\xe5\x68\x8c\xf4\x92\x2a\xb4\x15\x72\x85\x62\x21\x11\x89\x22\x6a\x02\x13\x86\x28\x8f\x85\x4c\xf3\x34\x24\x24\x44\x46\x94\x27\x28\x14\xd9\x8b\xa4\xc9\x52\x23\xb1\xe5\x20\xd5\x92\x66\x78\x34\x46\x73\x43\x23\xb8\x2d\x33\x51\x39\xac\x8d\xa9\x05\xfa\x21\xd6\x05\x87\x06\xdd\x42\x85\xb7\xe8\x1b\x48\x65\x82\x9c\xe3\xf7\xa3\x31\xfa\xc3\x98\xbc\x29\x1a\xdf\xfc\xf9\x2f\xf4\x22\xd6\x28\x25\x2f\x88\x0b\x8d\xd6\x0a\x1a\xc8\xf0\x1c\x42\xa6\x11\xe5\x28\x14\x69\xc6\x28\xe1\x21\xd4\xb4\xaa\x08\x18\xd9\x04\x0c\x86\x58\x68\x42\x39\x22\x96\x06\x12\x71\xd3\x0c\x11\x3d\x1a\x8f\xc6\xc8\xfe\x2d\xb5\xce\x2e\xde\xbd\xdb\x6e\xb7\x98\xd8\x74\xb1\x90\xc9\xbb\x92\xdd\xbb\x2f\xd3\xab\x9b\xbb\xe0\x66\x62\x53\x1e\x8d\xd1\xdf\x9c\x81\x52\x48\xc2\xd3\x9a\x4a\x88\xd0\xe2\x05\x91\x2c\x63\x34\x24\x0b\x06\x88\x91\xad\x29\x9c\xad\x8e\x2d\x3a\xe5\x68\x2b\xa9\xa6\x3c\x79\x8b\x54\x51\xf5\xd1\xb8\x55\x9d\x5a\xae\x32\x3d\xaa\x5a\x06\x82\x23\xc2\xd1\x9b\xcb\x00\x4d\x83\x37\xe8\xe3\x65\x30\x0d\xde\x8e\xc6\xe8\x9f\xe9\xfc\xaf\xfb\xbf\xe7\xe8\x9f\xcb\xaf\x5f\x2f\xef\xe6\xd3\x9b\x00\xdd\x7f\x45\x57\xf7\x77\xd7\xd3\xf9\xf4\xfe\x2e\x40\xf7\xb7\xe8\xf2\xee\x07\xfa\x3c\xbd\xbb\x7e\x8b\x80\xea\x25\x48\x04\xcf\x99\x34\xf9\x0b\x89\xa8\x11\x12\x22\x53\xd3\xb2\x03\x95\x09\x98\xfe\x61\xce\x55\x06\x21\x8d\x69\x88\x18\xe1\xc9\x9a\x24\x80\x12\xb1\x01\xc9\x4d\xf7\xc8\x40\xa6\x54\x99\x72\x2a\x44\x78\x34\x1a\x23\x46\x53\xaa\x6d\x2f\x52\xfb\xa4\x4c\x18\x9f\x63\x6b\x44\x32\x5a\x74\xa7\x0b\x14\x92\x14\x58\xb3\x7c\x9b\xb3\xd1\x8a\xf2\xe8\x02\x5d\x99\x96\x2b\xa2\x09\x13\xc9\x28\x05\x4d\x22\xa2\xc9\xc5\x08\x21\x4e\x52\x28\x1c\x27\x61\xde\x3e\x79\x5a\x13\xb9\x5a\xab\xc9\x19\x7e\x8f\xdf\x4f\xd2\x33\x7b\x70\xf6\x7e\x84\x10\x23\x0b\x60\xca\xf8\x21\x53\xee\xd2\x71\x65\x2f\xec\x45\x2f\xf0\xf0\xa6\xcc\xef\x83\x01\x74\xdb\x32\x41\x22\x90\x9d\x5c\xe4\x9a\x6b\x9a\x42\x6d\x5b\xa5\xe9\x30\xce\xa4\xd8\xd0\x08\xe4\x05\x2a\x58\x8e\x4c\x71\x0d\xa3\xbd\x90\x85\xcb\xb7\x3d\xf8\xa2\xe1\xa1\x84\xb2\x11\x0b\xb8\xfc\xa4\x48\xe0\xdf\xf9\xb5\x16\xc2\xfb\xc9\xec\xac\xb0\x79\x3a\xd0\x7c\x86\x6f\x29\x27\x6c\x84\x10\x91\x9a\xc6\x24\xd4\x05\x64\xa1\xf4\x24\x17\x68\x92\x48\x21\x36\x2f\x65\xb4\x44\x8a\x75\x36\x8d\x2e\x90\x90\x49\xc9\x3a\x97\x60\x55\x58\x94\x68\xc6\xe8\x20\x54\x61\x17\x41\x06\x3c\x02\x1e\x52\xa8\xb8\x4c\x5e\xc7\x2f\x2c\x0e\xe1\x03\x8f\x32\x41\xb9\x8e\x14\xfb\x25\x9c\x46\x7a\x3b\x89\x3f\x92\x0d\xf1\xa2\x80\x01\x1a\x9c\xff\x6e\x4c\xe5\x27\x75\xf5\xbb\x13\x5f\x71\xa2\xe9\x06\xbc\x64\x5f\x60\x1d\x0c\x23\x34\xa3\xdc\x4f\x14\x0b\xf5\xbb\x75\x7a\x4e\x99\x97\xec\x9f\xd3\x36\x7c\x31\xfb\x4c\x96\x40\x98\x5e\xfe\x5a\x88\x36\x96\x77\x85\x14\xc8\x0d\x03\x7d\x1c\xa3\x4a\xd2\x9d\x66\x13\x6f\xb7\xcd\x4b\xb7\xdc\x01\xf3\x2e\x48\xc8\xc4\x3a\xfa\x65\x39\x8a\x8e\xf1\x42\xd2\x0e\x33\x6b\x37\xac\x36\xe1\x93\xe1\x72\x94\x09\xc9\xa8\x1f\x24\x4f\xf9\x98\x7b\xdb\x83\x9d\x26\x25\xbf\x3a\xc5\x34\x91\xfc\x77\x17\x21\x61\x02\x3c\xa1\xbc\x83\x12\x0e\x9c\x2a\xb9\x57\x06\x94\x1f\x09\xda\xa3\x7d\x98\x59\x64\x37\xe6\x16\x16\x4b\x21\x56\x7e\x08\x14\x60\xde\x09\x34\x71\x5b\x1d\xf3\x97\xd2\x6e\x8d\x10\x15\x2e\x21\x6d\xe6\x49\xa3\x0b\xd4\x36\x29\x1e\xf1\x90\x96\xeb\xfa\x52\x46\x94\x32\x89\xa0\x98\x30\xf5\x3f\x3a\xdf\xf9\x9e\x54\x76\xa7\x83\xf2\x71\x87\x6c\xd5\x04\xc2\x0e\xb7\x65\xe5\x93\xc3\x6b\x71\x76\x00\x5d\x25\x6a\x9b\x94\x25\x6a\x16\xe3\x95\x1a\x99\x5b\xd6\xf9\x4b\xd6\xc4\xdb\xcb\x33\x14\x69\x26\x38\x70\x8d\xc9\x56\x61\x08\x15\xbe\xb9\x0a\xae\xca\x8b\xaf\x29\xb0\xf2\xad\xc0\xea\xb8\x02\xab\xdf\xa3\xc0\x4a\xe1\x9b\xcf\x47\x15\x58\xa5\x9e\x15\x58\xa5\x47\x15\xa8\x4d\x06\x55\x60\x95\x2a\xfc\x79\x76\x54\x01\xf5\xc1\xaf\x00\xea\xc3\x31\xfe\x95\xc5\xa0\xf4\xd5\x07\x1c\x7c\x38\x4a\x9e\x7b\x2e\xbf\xe2\x47\xcb\x5f\x9b\x0c\xcb\x9f\x2b\x1c\x70\x75\x54\x81\x27\xdf\x0a\x3c\x1d\x57\xe0\xe9\xf7\x28\xf0\xa4\x70\xf0\xe4\x54\x60\x41\x14\xfc\xff\xff\xf9\x13\x20\xc7\x2b\x97\x56\xa2\x49\xfe\x92\xb9\x91\x73\xcb\xa2\x0b\xa7\x1a\x05\xe7\xbe\xf8\xa3\xfd\xba\x26\x9a\xdc\xda\xeb\x87\x78\x01\xe9\x70\xaf\xdb\x99\x15\x10\xee\xaa\x69\xa3\xfd\x48\x41\x1b\xf7\x23\xb9\x6b\xc8\x88\xea\xd8\x19\x1a\xbe\xe5\xab\xd9\xa6\xae\x75\x0e\xfd\x7a\x8a\x71\xc4\x1f\x81\xf0\x76\x3f\xe9\xe0\x65\x73\xc7\x57\xe6\xb3\x83\x6f\x99\x73\x1d\xf0\x4b\x71\xe5\x95\xfa\x4d\x36\x84\xd1\x88\x68\x21\xfd\x56\xb2\xc6\x3d\x56\xd3\x3d\xcb\xc1\x86\xab\xd5\xa4\x8a\x66\xd5\xf9\x56\x9e\xb9\xc6\xaf\xfd\x99\x48\xb0\xc5\xda\xe3\x24\x56\x63\xba\xf4\xd9\xb3\xea\xde\x7b\xfb\x49\x53\x07\xc2\x57\xf9\xe1\xc7\xb5\x73\x4e\x33\x0f\x92\x3e\xd5\x90\x8e\x51\x17\x0a\xae\x34\x69\x74\x7b\x78\x0e\x97\x84\x27\xf0\x20\x45\x06\x52\xbf\x54\x0d\x31\x65\xf5\xc8\x5f\x02\x89\x40\x56\xa7\x12\xe2\xea\x58\xd1\x34\x6b\x58\x6a\xb1\x02\x4e\x7f\xf6\x91\xae\x1a\x68\x65\x72\x46\x37\x7b\xd0\x1a\x70\x6e\xdf\xac\xc8\x1f\xdf\xec\x10\xea\x81\x91\x53\xc1\xb7\x94\x41\x0f\xaf\x5c\x1b\xfc\x97\xfd\xea\xe1\x27\x21\xc6\x5f\x21\xee\x9f\x5f\x60\xbf\x7a\xf8\x95\x35\x91\x78\x5e\x1c\x39\x66\xb2\x50\x6d\x3c\x76\x46\xb5\x71\xad\xad\x75\x73\xcf\x85\x35\x54\x1b\x7c\xa5\x36\xce\x25\xb5\x36\xf7\xc7\xa7\xc6\x74\x4d\x35\x7b\x56\x43\x4d\x35\x0d\x45\x6a\x29\x5c\x53\x4d\x44\x25\x84\x3e\xf5\xb0\x78\x4e\x2d\x9a\x16\x83\xe9\x60\x83\xe0\x6b\xfb\xe5\xe4\x2f\x7e\x82\xc7\xd5\xd9\xc2\x39\xd9\x37\x0c\x06\x5b\x8b\x6d\x10\x7c\x6d\x3e\x5d\xdc\xe1\x39\xff\x29\xd5\x0f\x75\x83\xe6\x62\xde\x68\x1f\x8c\xb8\x89\x81\x6f\x9e\x21\x74\xd1\x8e\x97\xd4\x63\xc5\x0d\x9a\x8b\x76\xa3\xbd\x07\xed\x83\x93\xa3\x81\xfa\xa4\x04\x6f\x5d\xf8\x5e\xfd\xaa\xd0\x4f\x2a\xe3\x8b\x6f\x97\x54\xf6\xba\x69\xae\xbc\x4c\x1e\x3b\x93\x6d\x57\xd7\xef\x29\x73\x4e\xd3\xe6\x3e\xc3\x63\x7d\xea\xbb\x96\xc3\xf5\xa9\xdb\x07\xeb\x96\x26\x86\xbd\x89\x70\x76\x4b\x9d\x79\x64\x5d\xbc\x32\x7d\x8d\x74\xd5\xdc\x83\x73\xe5\x7a\xc2\xa3\x7f\xee\xab\x4e\x8a\x7b\x82\xd6\x12\x52\xa1\x01\xdf\xea\xac\x5f\xef\x6e\xfb\x76\x79\x26\x3c\xec\x1c\xc4\xbb\x91\xdb\xe5\xa1\x3c\xa6\x9c\xaa\xcc\xe7\x23\x7e\x8d\xe9\xaa\xfc\x9e\xd5\x60\x85\xa8\x23\xe1\x69\x75\xe8\x12\xe5\x91\x84\x2b\x25\x3c\x2a\x52\x00\xba\xa6\xd4\x47\x25\xf8\x8e\x5d\x3f\x96\x85\x2f\xfe\x94\x7f\x3b\x27\xb6\xc7\x68\xe1\x71\xbd\x35\x68\xae\x4a\x37\xda\x07\xab\xb1\x89\x81\x3f\x45\x0b\xe7\x7a\xbb\x22\xf1\xaa\xc3\xc6\x9f\xae\xbc\x2d\x9c\x8b\x78\xd3\x60\x30\xe6\x36\x08\xfe\x6c\x3e\x5d\xdc\x99\x48\xfc\x31\x67\x22\x71\xf1\xae\x9b\x87\xba\xab\x66\x22\xc1\x5f\x44\xe2\x22\x9c\x12\xda\x61\x1f\x4d\x57\xc6\x06\xcd\x39\x9b\xa5\xe4\xe4\x85\xcc\xf8\x9e\xbc\x92\x65\x22\x3b\xe1\x27\x90\xda\xf7\xf4\x25\x34\x3d\x7d\xe9\x36\xbe\x27\x04\x3e\x38\x71\xa6\x76\x17\xc5\x9a\x69\x9a\x11\xa9\x4f\xea\x4d\xa6\xb8\x78\x46\x28\xeb\xb0\xcc\x36\x9e\x6b\x4d\x64\x5c\x45\xc6\x33\x9a\xc2\xac\x3c\x73\x4e\xbf\x29\x0d\xa5\xc8\xa4\x30\x0b\xf5\x24\x05\x2d\xa9\xcf\x5f\x8f\x0f\xa1\xbb\xba\xae\xc3\x7e\xb0\x49\xab\x19\x13\x17\x31\xf1\xcc\x5c\x7c\xc8\x2f\xce\xf2\x6b\xce\x01\x2e\x78\x22\xa2\x85\x47\xe1\x72\x40\xa7\x56\x2d\x93\xe1\xe4\xc9\xc3\xe0\x99\xf9\xbe\x5e\xb8\x54\xe0\xa0\x75\x87\xed\xbc\x5d\x35\xb0\x70\x2e\x05\x9a\x06\x83\xf1\xb7\x41\xf0\x9d\xf9\x3c\xca\xdd\xee\xca\xf0\x2c\x40\xbd\xd3\xc3\xa5\x42\xd3\xaa\xfb\x26\x99\x53\x94\x30\xd8\xb9\x1c\x7f\x69\xf7\xfd\x7c\x46\x96\xc2\x9f\x18\x06\xcd\x25\x43\xa3\x7d\xb0\xbe\x60\x62\xe0\x07\xb2\x14\x4e\xda\x51\xec\x91\x75\x14\x3b\x49\x57\xcd\xc3\x71\x8e\x62\xfc\x10\xc5\x4e\xc6\x8c\x68\xb3\x0e\x79\xee\xfe\x2d\x58\xa7\x0a\x07\x0c\x87\xd3\xa3\x08\x96\x0f\x84\x87\xe2\xec\xd8\x58\x90\xa0\x3c\xbe\x4f\x36\x68\x2e\x41\x1a\xed\xdd\x27\x83\xda\xb5\xb1\x4d\x6d\x30\x19\x4d\x1c\xfc\x15\x94\xee\xf5\x3a\xa1\xf2\xba\xcc\xa8\x4b\x6e\x45\x18\xa8\x58\xc8\xd0\xe3\x3b\xb3\x1a\xd3\x25\xfd\x9e\xd5\x60\x0a\xd6\x91\x70\x50\x1d\x3a\x45\x09\x97\x10\xad\x99\xcf\x37\xfb\x15\xa4\x53\x92\x1d\xa3\xe1\x14\x29\x03\xe1\xa0\x3c\x72\xea\x01\x91\xc7\x27\x70\x83\xe6\x54\xa1\x6e\x1f\xea\x49\xd4\x84\xc0\x01\x44\xce\x87\xef\xce\xdb\xa5\xbb\x13\x6f\x6e\x99\x7e\x85\x7b\xd3\x64\xa8\xfb\x93\x22\x0a\x0e\xf2\x6f\xa7\x08\x8f\x3e\xf7\x47\x1a\x34\x27\xfd\xc7\x53\x76\x46\xd6\xbe\x93\x05\xd1\xe1\x72\xf0\xd1\xf3\x98\x2a\x1c\x3c\xa6\xfd\x5e\xf0\x5a\x2f\x9b\x9f\xf5\xfd\x68\x8e\x8e\x29\x7f\xee\x57\xfa\xf3\x63\xda\x9f\xff\x0e\xe9\xce\x2d\xff\x73\x27\x77\x46\xc2\x0e\xdb\xfc\x3b\x73\x37\x70\x4e\xee\x0d\x83\xe1\xb8\x9b\x20\x38\x30\x9f\x4e\xee\x9c\xac\xe0\x85\x74\xf9\x7f\xb2\xce\xfc\x4b\xc8\xc2\xf2\xe0\x2b\x19\xd3\xbe\x67\xd9\x93\x61\xe9\x8d\x03\x73\xf4\xe3\x72\xf6\xc5\xf9\x4a\x45\x93\x44\x89\xb5\xc7\x1b\xe1\x02\xd0\x45\x53\xd3\xe8\x65\x66\xac\xb3\x1e\x14\x1b\xef\x8f\x8a\x10\x78\x5e\xe1\x1c\xa1\x28\xfd\xfe\x20\x59\x00\x3a\x29\xb6\x4c\x7a\xf3\xb3\xce\x78\x4e\xe4\x2d\x65\xe0\x26\x47\x53\x9f\xf7\x48\x16\xce\x35\x4c\x9b\x06\x83\x0d\x53\x1b\x04\xcf\xcd\xa7\x6b\x98\xea\x2d\xd5\xda\x2b\xfb\x1c\xd0\xc9\x3f\x37\x29\x76\xc9\xa4\xa0\x54\xbd\x5f\xab\xf7\x7a\x59\x82\x29\x20\xf2\x94\x35\xb3\x8d\x62\x54\x63\xf5\x7f\xae\x0d\x57\x9d\x3c\x1e\x6e\x49\x80\xe7\xf9\xd5\x7c\xbf\xce\x2c\xbf\xd8\x6b\x71\x2e\x61\x73\x31\x4a\xbc\xc0\x9e\x9d\x04\x54\xea\x51\x42\xcd\x8b\x73\x57\x97\x1a\x60\xbb\x6f\xa7\x9d\xbe\x3d\x37\xf9\x9e\x7c\xd7\x5d\x6f\xef\xed\xb4\xb5\x77\x93\x7a\xd4\x21\x75\x0a\x90\x0e\xcd\x3c\xc5\xdf\x52\x17\xd7\x67\xc5\x3c\x3e\x68\x18\x34\x17\xdf\x46\xfb\x60\x03\xd5\xc4\xc0\xdf\x15\x73\x3e\x5d\xfc\xa4\x99\xdf\xd5\xb1\x00\x74\xad\x8e\x6d\x93\x9e\xab\x63\xe1\x8c\xff\x43\xb3\x9d\xd5\xf1\xbf\x01\x00\x00\xff\xff\x2c\x7a\x10\xf6\x45\x49\x00\x00"), - }, - "/camel-catalog-quarkus-1.0.0-M1-1.0.9.yaml": &vfsgenÛ°CompressedFileInfo{ - name: "camel-catalog-quarkus-1.0.0-M1-1.0.9.yaml", - modTime: time.Time{}, - uncompressedSize: 18754, - - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x5b\xcb\x72\xdb\x3a\x12\xdd\xeb\x2b\x50\xd1\xe6\xde\xaa\x08\x49\x9c\xa9\xa9\x1a\xcf\xca\xf1\xa3\xa2\x24\xb2\x3d\xa1\x6e\x6e\x32\x3b\x88\x6c\x52\xb0\x40\x80\x06\x20\xc9\xce\xd7\x4f\x01\x7c\x4b\x32\x44\x2a\x60\x6a\xbc\x90\x48\xa2\xfb\x74\x9f\xd3\x78\x90\x14\x3c\x46\x13\x7f\x7f\xa3\x31\xfa\x42\x43\xe0\x0a\x22\xa4\x05\xd2\x4b\x40\x17\x19\x09\x97\x80\x02\x11\xeb\x2d\x91\x80\x6e\xc4\x9a\x47\x44\x53\xc1\xd1\x1f\x17\xc1\xcd\x9f\x68\xcd\x23\x90\x48\x70\x40\x42\xa2\x54\x48\x18\x8d\x51\x28\xb8\x96\x74\xb1\xd6\x42\x22\x96\x03\x22\x92\x48\x80\x14\xb8\x56\x18\xa1\x00\xc0\xa2\xdf\xde\xcd\xa7\x97\xd7\x28\xa6\x0c\x50\x44\x55\xee\x04\x11\xda\x52\xbd\x1c\x8d\x91\x5e\x52\x85\xb6\x42\xae\x50\x2c\x24\x22\x51\x44\x4d\x60\xc2\x10\xe5\xb1\x90\x69\x9e\x86\x84\x84\xc8\x88\xf2\x04\x85\x22\x7b\x96\x34\x59\x6a\x24\xb6\x1c\xa4\x5a\xd2\x0c\x8f\xc6\x68\x6e\x68\x04\x37\x65\x26\x2a\x87\xb5\x31\xb5\x40\x3f\xc4\xba\xe0\xd0\xa0\x5b\xa8\xf0\x1a\x7d\x03\xa9\x4c\x90\x33\xfc\x76\x34\x46\x7f\x18\x93\x57\x45\xe3\xab\x3f\xff\x8d\x9e\xc5\x1a\xa5\xe4\x19\x71\xa1\xd1\x5a\x41\x03\x19\x9e\x42\xc8\x34\xa2\x1c\x85\x22\xcd\x18\x25\x3c\x84\x9a\x56\x15\x01\x23\x9b\x80\xc1\x10\x0b\x4d\x28\x47\xc4\xd2\x40\x22\x6e\x9a\x21\xa2\x47\xe3\xd1\x18\xd9\xbf\xa5\xd6\xd9\xf9\x9b\x37\xdb\xed\x16\x13\x9b\x2e\x16\x32\x79\x53\xb2\x7b\xf3\x65\x7a\x79\x7d\x1b\x5c\x4f\x6c\xca\xa3\x31\xfa\x8b\x33\x50\x0a\x49\x78\x5c\x53\x09\x11\x5a\x3c\x23\x92\x65\x8c\x86\x64\xc1\x00\x31\xb2\x35\x85\xb3\xd5\xb1\x45\xa7\x1c\x6d\x25\xd5\x94\x27\xaf\x91\x2a\xaa\x3e\x1a\xb7\xaa\x53\xcb\x55\xa6\x47\x55\xcb\x40\x70\x44\x38\x7a\x75\x11\xa0\x69\xf0\x0a\x7d\xb8\x08\xa6\xc1\xeb\xd1\x18\xfd\x3d\x9d\x7f\xbc\xfb\x6b\x8e\xfe\xbe\xf8\xfa\xf5\xe2\x76\x3e\xbd\x0e\xd0\xdd\x57\x74\x79\x77\x7b\x35\x9d\x4f\xef\x6e\x03\x74\x77\x83\x2e\x6e\x7f\xa0\xcf\xd3\xdb\xab\xd7\x08\xa8\x5e\x82\x44\xf0\x94\x49\x93\xbf\x90\x88\x1a\x21\x21\x32\x35\x2d\x3b\x50\x99\x80\xe9\x1f\xe6\x5c\x65\x10\xd2\x98\x86\x88\x11\x9e\xac\x49\x02\x28\x11\x1b\x90\xdc\x74\x8f\x0c\x64\x4a\x95\x29\xa7\x42\x84\x47\xa3\x31\x62\x34\xa5\xda\xf6\x22\xb5\x4f\xca\x84\xf1\x39\xb6\x46\x24\xa3\x45\x77\x3a\x47\x21\x49\x81\x35\xcb\xb7\x79\x37\x5a\x51\x1e\x9d\xa3\x4b\xd3\x72\x49\x34\x61\x22\x19\xa5\xa0\x49\x44\x34\x39\x1f\x21\xc4\x49\x0a\x85\xe3\x24\xcc\xdb\x27\x8f\x6b\x22\x57\x6b\x35\x79\x87\xdf\xe2\xb7\x93\xf4\x9d\x3d\xf8\xd7\x08\x21\x46\x16\xc0\x94\x71\x43\xa6\xda\xa5\xdf\xca\x5e\xd8\x0b\x5e\xc0\xe1\x4d\x99\xde\x7b\x83\xe7\xb6\x65\x82\x44\x20\x3b\xb9\xc8\x35\xd7\x34\x85\xda\xb6\xcc\xd2\x61\x9b\x49\xb1\xa1\x11\xc8\x73\x54\x70\x1c\x99\xd2\x1a\x42\x7b\x11\x0b\x97\x6f\xbb\xe8\xc5\xf5\xfb\x12\xc9\x06\x2c\xd0\xf2\x93\x22\xfe\x7f\xf2\x6b\x2d\x80\xb7\x93\xd9\xbb\xc2\xe6\xf1\x40\xf3\x3b\x7c\x43\x39\x61\x23\x84\x88\xd4\x34\x26\xa1\x2e\x20\x0b\x9d\x27\xb9\x3c\x93\x44\x0a\xb1\x79\x2e\xa3\x25\x52\xac\xb3\x69\x74\x8e\x84\x4c\x4a\xd2\xb9\x02\xab\xc2\xa2\x44\x33\x46\x07\xa1\x0a\xbb\x08\x32\xe0\x11\xf0\x90\x42\xc5\x65\xf2\x32\x7e\x61\x71\x08\x1f\x78\x94\x09\xca\x75\xa4\xd8\x2f\xe1\x34\xd2\xdb\x49\xfc\x81\x6c\x88\x17\x05\x0c\xd0\xe0\xfc\x77\x63\x2a\x3f\xa9\xab\xdf\x9d\xf8\x8a\x13\x4d\x37\xe0\x25\xfb\x02\xeb\x60\x18\xa1\x19\xe5\x7e\xa2\x58\xa8\xdf\xad\xd3\x53\xca\xbc\x64\xff\x94\xb6\xe1\x8b\xd9\x67\xb2\x04\xc2\xf4\xf2\xd7\x42\xb4\xb1\xbc\x2b\xa4\x40\x6e\x18\xe8\xe3\x18\x55\x92\xee\x34\x9b\x78\xbb\x6d\x5e\xba\xe5\x0e\x98\x77\x41\x42\x26\xd6\xd1\x2f\xcb\x51\x74\x8c\x67\x92\x76\x98\x59\xbb\x61\xb5\x09\x9f\x0c\x97\xa3\x4c\x48\x46\xfd\x20\x79\xca\xc7\xdc\xd8\x1e\xec\x34\x29\xf9\xd5\x29\xa6\x89\xe4\xbf\xbb\x08\x09\x13\xe0\x09\xe5\x1d\x94\x70\xe0\x54\xc9\xbd\x30\xa0\xfc\x48\xd0\x1e\xed\xc3\xcc\x22\xbb\x31\xb7\xb0\x58\x0a\xb1\xf2\x43\xa0\x00\xf3\x4e\xa0\x89\xdb\xea\x98\xbf\x94\x76\x6b\x84\xa8\x70\x09\x69\x33\x4f\x1a\x9d\xa3\xb6\x49\xf1\x7c\x87\xb4\x5c\xd7\x97\x32\xa2\x94\x49\x04\xc5\x84\xa9\xff\xd3\xf9\xce\xf7\xa4\xb2\x3b\x1d\x94\xcf\x3a\x64\xab\x26\x10\x76\xb8\x2d\x2b\x1f\x1c\x5e\x8a\xb3\x03\xe8\x2a\x51\xdb\xa4\x2c\x51\xb3\x18\x2f\xd4\xc8\xdc\xb2\xce\x9f\xb3\x26\xde\x5e\x9e\xa1\x48\x33\xc1\x81\x6b\x4c\xb6\x0a\x43\xa8\xf0\xf5\x65\x70\x59\x5e\x7c\x49\x81\x95\x6f\x05\x56\xc7\x15\x58\xfd\x1e\x05\x56\x0a\x5f\x7f\x3e\xaa\xc0\x2a\xf5\xac\xc0\x2a\x3d\xaa\x40\x6d\x32\xa8\x02\xab\x54\xe1\xcf\xb3\xa3\x0a\xa8\xf7\x7e\x05\x50\xef\x8f\xf1\xaf\x2c\x06\xa5\xaf\xde\xe3\xe0\xfd\x51\xf2\xdc\x73\xf9\x15\x3f\x5a\xfe\xda\x64\x58\xfe\x5c\xe1\x80\xab\xa3\x0a\x3c\xfa\x56\xe0\xf1\xb8\x02\x8f\xbf\x47\x81\x47\x85\x83\x47\xa7\x02\x0b\xa2\xe0\x9f\xff\xf0\x27\x40\x8e\x57\x2e\xad\x44\x93\xfc\x0d\x73\x23\xe7\x96\x45\x17\x4e\x35\x0a\xce\x7d\xf1\x07\xfb\x75\x45\x34\xb9\xb1\xd7\x0f\xf1\x02\xd2\xe1\x5e\xb7\x33\x2b\x20\xdc\x55\xd3\x46\xfb\x91\x82\x36\xee\x47\x72\xd7\x90\x11\xd5\xb1\x33\x34\x7c\xcb\xf7\xb2\x4d\x5d\xeb\x1c\xfa\xf5\x14\xe3\x88\x3f\x00\xe1\xed\x7e\xd2\xc1\xcb\xe6\x8e\x2f\xcd\x67\x07\xdf\x32\xe7\x3a\xe0\x97\xe2\xca\x0b\xf5\x9b\x6c\x08\xa3\x11\xd1\x42\xfa\xad\x64\x8d\x7b\xac\xa6\x7b\x96\x83\x0d\x57\xab\x49\x15\xcd\xaa\xf3\xad\x3c\x73\x8d\x5f\xfb\x1b\x91\x60\x8b\xb5\xc7\x49\xac\xc6\x74\xe9\xb3\x67\xd5\xbd\xf7\xf6\x93\xa6\x0e\x84\x2f\xf3\xc3\x0f\x6b\xe7\x9c\x66\x1e\x24\x7d\xaa\x21\x1d\xa3\x2e\x14\x5c\x69\xd2\xe8\xf6\xf0\x14\x2e\x09\x4f\xe0\x5e\x8a\x0c\xa4\x7e\xae\x1a\x62\xca\xea\x91\xbf\x04\x12\x81\xac\x4e\x25\xc4\xd5\xb1\xa2\x69\xd6\xb0\xd4\x62\x05\x9c\xfe\xec\x23\x5d\x35\xd0\xca\xe4\x8c\x6e\xf6\xa0\x35\xe0\xdc\xbe\x59\x91\x3f\xbe\xde\x21\xd4\x03\x23\xa7\x82\x6f\x28\x83\x1e\x5e\xb9\x36\xf8\xa3\xfd\xea\xe1\x27\x21\xc6\x5f\x21\xee\x9f\x5f\x60\xbf\x7a\xf8\x95\x35\x91\x78\x5e\x1c\x39\x66\xb2\x50\x6d\x3c\x76\x46\xb5\x71\xad\xad\x75\x73\xcf\x85\x35\x54\x1b\x7c\xa9\x36\xce\x25\xb5\x36\xf7\xc7\xa7\xc6\x74\x4d\x35\x7b\x56\x43\x4d\x35\x0d\x45\x6a\x29\x5c\x53\x4d\x44\x25\x84\x3e\xf5\xb0\x78\x4e\x2d\x9a\x16\x83\xe9\x60\x83\xe0\x2b\xfb\xe5\xe4\x2f\x7e\x82\xc7\xd5\xd9\xc2\x39\xd9\x37\x0c\x06\x5b\x8b\x6d\x10\x7c\x65\x3e\x5d\xdc\xe1\x29\xff\x25\xd5\x0f\x75\x83\xe6\x62\xde\x68\x1f\x8c\xb8\x89\x81\xaf\x9f\x20\x74\xd1\x8e\x97\xd4\x63\xc5\x0d\x9a\x8b\x76\xa3\xbd\x07\xed\x83\x93\xa3\x81\xfa\xa4\x04\x6f\x5d\xf8\x5e\xfd\xaa\xd0\x4f\x2a\xe3\x8b\x6f\x96\x54\xf6\xba\x69\xae\xbc\x4c\x1e\x3b\x93\x6d\x57\xd7\xef\x29\x73\x4e\xd3\xe6\x3e\xc3\x63\x7d\xea\xbb\x96\xc3\xf5\xa9\xdb\x07\xeb\x96\x26\x86\xbd\x89\x70\x76\x4b\x9d\x79\x64\x5d\xbc\x32\x7d\x89\x74\xd5\xdc\x83\x73\xe5\x7a\xc2\xa3\x7f\xee\xab\x4e\x8a\x7b\x82\xd6\x12\x52\xa1\x01\xdf\xe8\xac\x5f\xef\x6e\xfb\x76\x79\x26\x3c\xec\x1c\xc4\xbb\x91\xdb\xe5\xa1\x3c\xa6\x9c\xaa\xcc\xe7\x23\x7e\x8d\xe9\xaa\xfc\x9e\xd5\x60\x85\xa8\x23\xe1\x69\x75\xe8\x12\xe5\x81\x84\x2b\x25\x3c\x2a\x52\x00\xba\xa6\xd4\x07\x25\xf8\x8e\x5d\x3f\x96\x85\x2f\xfe\x94\x7f\x3b\x27\xb6\x87\x68\xe1\x71\xbd\x35\x68\xae\x4a\x37\xda\x07\xab\xb1\x89\x81\x3f\x45\x0b\xe7\x7a\xbb\x22\xf1\xaa\xc3\xc6\x9f\xae\xbc\x2d\x9c\x8b\x78\xd3\x60\x30\xe6\x36\x08\xfe\x6c\x3e\x5d\xdc\x99\x48\xfc\x31\x67\x22\x71\xf1\xae\x9b\x87\xba\xab\x66\x22\xc1\x5f\x44\xe2\x22\x9c\x12\xda\x61\x1f\x4d\x57\xc6\x06\xcd\x39\x9b\xa5\xe4\xe4\x85\xcc\xf8\x9e\xbc\x92\x65\x22\x3b\xe1\x27\x90\xda\xf7\xf4\x25\x34\x3d\x7d\xe9\x36\xbe\x27\x04\x3e\x38\x71\xa6\x76\x17\xc5\x9a\x69\x9a\x11\xa9\x4f\xea\x4d\xa6\xb8\x78\x46\x28\xeb\xb0\xcc\x36\x9e\x6b\x4d\x64\x5c\x45\xc6\x33\x9a\xc2\xac\x3c\x73\x4e\xbf\x29\x0d\xa5\xc8\xa4\x30\x0b\xf5\x24\x05\x2d\xa9\xcf\x5f\x8f\x0f\xa1\xbb\xba\xae\xc3\x7e\xb0\x49\xab\x19\x13\x17\x31\xf1\xcc\x5c\xbc\xcf\x2f\xce\xf2\x6b\xce\x01\x2e\x78\x22\xa2\x85\x47\xe1\x72\x40\xa7\x56\x2d\x93\xe1\xe4\xc9\xc3\xe0\x99\xf9\xbe\x5a\xb8\x54\xe0\xa0\x75\x87\xed\xbc\x5d\x35\xb0\x70\x2e\x05\x9a\x06\x83\xf1\xb7\x41\xf0\xad\xf9\x3c\xca\xdd\xee\xca\xf0\x2c\x40\xbd\xd3\xc3\xa5\x42\xd3\xaa\xfb\x26\x99\x53\x94\x30\xd8\xb9\x1c\x1f\xb5\xfb\x7e\x3e\x23\x4b\xe1\x4f\x0c\x83\xe6\x92\xa1\xd1\x3e\x58\x5f\x30\x31\xf0\x3d\x59\x0a\x27\xed\x28\xf6\xc8\x3a\x8a\x9d\xa4\xab\xe6\xe1\x38\x47\x31\xbe\x8f\x62\x27\x63\x46\xb4\x59\x87\x3c\x77\xff\x16\xac\x53\x85\x03\x86\xc3\xe9\x51\x04\xcb\x07\xc2\x7d\x71\x76\x6c\x2c\x48\x50\x1e\xdf\x27\x1b\x34\x97\x20\x8d\xf6\xee\x93\x41\xed\xda\xd8\xa6\x36\x98\x8c\x26\x0e\xfe\x0a\x4a\xf7\x7a\x9d\x50\x79\x5d\x64\xd4\x25\xb7\x22\x0c\x54\x2c\x64\xe8\xf1\x9d\x59\x8d\xe9\x92\x7e\xcf\x6a\x30\x05\xeb\x48\x38\xa8\x0e\x9d\xa2\x84\x4b\x88\xd6\xcc\xe7\x9b\xfd\x0a\xd2\x29\xc9\x8e\xd1\x70\x8a\x94\x81\x70\x50\x1e\x39\xf5\x80\xc8\xe3\x13\xb8\x41\x73\xaa\x50\xb7\x0f\xf5\x24\x6a\x42\xe0\x00\x22\xe7\xc3\x77\xe7\xed\xd2\xdd\x89\x37\xb7\x4c\xbf\xc0\xbd\x69\x32\xd4\xfd\x49\x11\x05\x07\xf9\xb7\x53\x84\x07\x9f\xfb\x23\x0d\x9a\x93\xfe\xc3\x29\x3b\x23\x6b\xdf\xc9\x82\xe8\x70\x39\xf8\xe8\x79\x48\x15\x0e\x1e\xd2\x7e\x2f\x78\xad\x97\xcd\xcf\xfa\x7e\x30\x47\xc7\x94\x3f\xf3\x2b\xfd\xd9\x31\xed\xcf\x7e\x87\x74\x67\x96\xff\x99\x93\x3b\x23\x61\x87\x6d\xfe\x9d\xb9\x1b\x38\x27\xf7\x86\xc1\x70\xdc\x4d\x10\x1c\x98\x4f\x27\x77\x4e\x56\xf0\x4c\xba\xfc\x3f\x59\x67\xfe\x25\x64\x61\x79\xf0\x95\x8c\x69\xdf\xb3\xec\xc9\xb0\xf4\xc6\x81\x39\xfa\x71\x31\xfb\xe2\x7c\xa5\xa2\x49\xa2\xc4\xda\xe3\x8d\x70\x01\xe8\xa2\xa9\x69\xf4\x3c\x33\xd6\x59\x0f\x8a\x8d\xf7\x47\x45\x08\x3c\xaf\x70\x8e\x50\x94\x7e\x7f\x90\x2c\x00\x9d\x14\x5b\x26\xbd\xf9\x59\x67\x3c\x27\xf2\x86\x32\x70\x93\xa3\xa9\xcf\x7b\x24\x0b\xe7\x1a\xa6\x4d\x83\xc1\x86\xa9\x0d\x82\xe7\xe6\xd3\x35\x4c\xf5\x96\x6a\xed\x95\x7d\x0e\xe8\xe4\x9f\x9b\x14\xbb\x64\x52\x50\xaa\xde\xaf\xd5\x7b\xbd\x2c\xc1\x14\x10\x79\xca\x9a\xd9\x46\x31\xaa\xb1\xfa\x3f\xd7\x86\xab\x4e\x1e\x0f\xb7\x24\xc0\xf3\xfc\x6a\xbe\x5f\x67\x96\x5f\xec\xb5\x38\x97\xb0\xb9\x18\x25\x5e\x60\xcf\x4e\x02\x2a\xf5\x28\xa1\xe6\xc5\xb9\xab\x4b\x0d\xb0\xdd\xb7\xd3\x4e\xdf\x9e\x9b\x7c\x4f\xbe\xeb\xae\xb7\xf7\x76\xda\xda\xbb\x49\x3d\xea\x90\x3a\x05\x48\x87\x66\x9e\xe2\x6f\xa9\x8b\xeb\x93\x62\x1e\x1f\x34\x0c\x9a\x8b\x6f\xa3\x7d\xb0\x81\x6a\x62\xe0\xef\x8a\x39\x9f\x2e\x7e\xd2\xcc\xef\xea\x58\x00\xba\x56\xc7\xb6\x49\xcf\xd5\xb1\x70\xc6\xff\xa5\xd9\xce\xea\xf8\xbf\x00\x00\x00\xff\xff\x57\x92\x92\x81\x42\x49\x00\x00"), - }, - "/camel-catalog-quarkus-1.0.0-M2-1.0.10.yaml": &vfsgenÛ°CompressedFileInfo{ - name: "camel-catalog-quarkus-1.0.0-M2-1.0.10.yaml", - modTime: time.Time{}, - uncompressedSize: 19388, - - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x5b\x5d\x73\xda\xba\x16\x7d\xe7\x57\x68\xca\xcb\x39\x33\x45\x6d\xd3\x3b\xf7\x21\xf7\x29\xcd\xc7\x94\xb6\x24\xb9\x35\xa7\xa7\xbd\x6f\xc2\xde\x18\x05\x59\x32\x92\x80\xd0\x5f\x7f\x47\xf2\x37\x10\x61\x53\xb9\x73\xf2\x10\x6c\x6b\xef\xb5\xf7\x5a\xda\x92\x6c\x23\x86\x68\xe4\xef\x6f\x30\x44\x5f\x68\x08\x5c\x41\x84\xb4\x40\x7a\x01\xe8\x2a\x25\xe1\x02\x50\x20\xe6\x7a\x4b\x24\xa0\x3b\xb1\xe6\x11\xd1\x54\x70\xf4\xc7\x55\x70\xf7\x27\x5a\xf3\x08\x24\x12\x1c\x90\x90\x28\x11\x12\x06\x43\x14\x0a\xae\x25\x9d\xad\xb5\x90\x88\x65\x80\x88\xc4\x12\x20\x01\xae\x15\x46\x28\x00\xb0\xe8\xf7\x0f\xd3\xf1\xf5\x2d\x9a\x53\x06\x28\xa2\x2a\x73\x82\x08\x6d\xa9\x5e\x0c\x86\x48\x2f\xa8\x42\x5b\x21\x97\x68\x2e\x24\x22\x51\x44\x4d\x60\xc2\x10\xe5\x73\x21\x93\x2c\x0d\x09\x31\x91\x11\xe5\x31\x0a\x45\xba\x93\x34\x5e\x68\x24\xb6\x1c\xa4\x5a\xd0\x14\x0f\x86\x68\x6a\x68\x04\x77\x45\x26\x2a\x83\xb5\x31\xb5\x40\x3f\xc4\x3a\xe7\x50\xa3\x9b\xab\xf0\x1a\x7d\x03\xa9\x4c\x90\x0b\xfc\x76\x30\x44\x7f\x18\x93\x57\x79\xe3\xab\x3f\xff\x83\x76\x62\x8d\x12\xb2\x43\x5c\x68\xb4\x56\x50\x43\x86\xe7\x10\x52\x8d\x28\x47\xa1\x48\x52\x46\x09\x0f\xa1\xa2\x55\x46\xc0\xc8\x26\x60\x30\xc4\x4c\x13\xca\x11\xb1\x34\x90\x98\xd7\xcd\x10\xd1\x83\xe1\x60\x88\xec\xdf\x42\xeb\xf4\xf2\xcd\x9b\xed\x76\x8b\x89\x4d\x17\x0b\x19\xbf\x29\xd8\xbd\xf9\x32\xbe\xbe\xbd\x0f\x6e\x47\x36\xe5\xc1\x10\xfd\xc5\x19\x28\x85\x24\xac\xd6\x54\x42\x84\x66\x3b\x44\xd2\x94\xd1\x90\xcc\x18\x20\x46\xb6\xa6\xe3\x6c\xef\xd8\x4e\xa7\x1c\x6d\x25\xd5\x94\xc7\xaf\x91\xca\x7b\x7d\x30\x6c\xf4\x4e\x25\x57\x91\x1e\x55\x0d\x03\xc1\x11\xe1\xe8\xd5\x55\x80\xc6\xc1\x2b\xf4\xe1\x2a\x18\x07\xaf\x07\x43\xf4\xf7\x78\xfa\xf1\xe1\xaf\x29\xfa\xfb\xea\xeb\xd7\xab\xfb\xe9\xf8\x36\x40\x0f\x5f\xd1\xf5\xc3\xfd\xcd\x78\x3a\x7e\xb8\x0f\xd0\xc3\x1d\xba\xba\xff\x81\x3e\x8f\xef\x6f\x5e\x23\xa0\x7a\x01\x12\xc1\x73\x2a\x4d\xfe\x42\x22\x6a\x84\x84\xc8\xf4\x69\x51\x40\x45\x02\xa6\x3e\xcc\xb9\x4a\x21\xa4\x73\x1a\x22\x46\x78\xbc\x26\x31\xa0\x58\x6c\x40\x72\x53\x1e\x29\xc8\x84\x2a\xd3\x9d\x0a\x11\x1e\x0d\x86\x88\xd1\x84\x6a\x5b\x45\xea\x90\x94\x09\xe3\x73\x6c\x0d\x48\x4a\xf3\x72\xba\x44\x21\x49\x80\xd5\xbb\x6f\xf3\x6e\xb0\xa4\x3c\xba\x44\xd7\xa6\xe5\x9a\x68\xc2\x44\x3c\x48\x40\x93\x88\x68\x72\x39\x40\x88\x93\x04\x72\xc7\x51\x98\xb5\x8f\x56\x6b\x22\x97\x6b\x35\x7a\x87\xdf\xe2\xb7\xa3\xe4\xc2\x1e\xbc\x7b\x3b\x40\x88\x91\x19\x30\x65\xfc\x90\xe9\xee\xc2\x71\x69\x2f\x1c\x44\xcf\xf1\xf0\xa6\xc8\xef\xbd\x01\x74\xdb\x32\x41\x22\x90\xad\x5c\xe4\x9a\x6b\x9a\x40\x65\x5b\xa6\xe9\x30\x4e\xa5\xd8\xd0\x08\xe4\x25\xca\x59\x0e\x4c\xe7\x1a\x46\x07\x21\x73\x97\x6f\x07\xf0\x79\xc3\x63\x01\x65\x23\xe6\x70\xd9\x49\x9e\xc0\x7f\xb3\x6b\x0d\x84\xb7\xa3\xc9\x45\x6e\xb3\x3a\x68\x36\x06\x77\x94\x13\x36\x40\x88\x48\x4d\xe7\x24\xd4\x39\x64\xae\xf4\x28\x13\x68\x14\x4b\x21\x36\xbb\x22\x5a\x2c\xc5\x3a\x1d\x47\x97\x48\xc8\xb8\x60\x9d\x49\xb0\xcc\x2d\x0a\x34\x63\x74\x14\x2a\xb7\x8b\x20\x05\x1e\x01\x0f\x29\x94\x5c\x46\x2f\xe3\xe7\x16\xc7\xf0\x81\x47\xa9\xa0\x5c\x47\x8a\xfd\x12\x4e\x2d\xbd\xbd\xc4\x9f\xc8\x86\x78\x51\xc0\x00\xf5\xce\x7f\x3f\xa6\xf2\x93\xba\xfa\xdd\x89\x2f\x39\xd1\x74\x03\x5e\xb2\xcf\xb1\x8e\x86\x11\x9a\x51\xee\x27\x8a\x85\xfa\xdd\x3a\x3d\x27\xcc\x4b\xf6\xcf\x49\x13\x3e\x9f\x7d\x46\x0b\x20\x4c\x2f\x7e\x2d\x44\x13\xcb\xbb\x42\x0a\xe4\x86\x81\x3e\x8d\x51\x26\xe9\x4e\xb3\x8e\xb7\xdf\xe6\xa5\x2c\xf7\xc0\xbc\x0b\x12\x32\xb1\x8e\x7e\x59\x8e\xbc\x30\x76\x24\x69\x31\xb3\xb6\xc3\x6a\x12\x3e\x1b\x2e\x43\x19\x91\x94\xfa\x41\xf2\x94\x8f\xb9\xb7\x3d\x5a\x34\x09\xf9\xd5\x29\xa6\x8e\xe4\xbf\x5c\x84\x84\x11\xf0\x98\xf2\x16\x4a\x38\x70\xca\xe4\x5e\x18\x50\x7e\x24\x68\x8e\xf6\x7e\x66\x91\xfd\x98\x5b\x98\x2d\x84\x58\xfa\x21\x90\x83\x79\x27\x50\xc7\x6d\x14\xe6\x2f\xa5\xdd\x18\x21\x2a\x5c\x40\x52\xcf\x93\x46\x97\xa8\x69\x92\x3f\xe2\x21\x2d\xd7\xd5\xa5\x94\x28\x65\x12\x41\x73\xc2\xd4\x3f\x74\xbe\xf3\x3d\xa9\xec\x4f\x07\xc5\xe3\x0e\xd9\xaa\x11\x84\x2d\x6e\xcb\x8a\x27\x87\x97\xe2\xec\x01\xba\xba\xa8\x69\x52\x74\x51\xbd\x33\x5e\xe8\x23\x73\xcb\x3a\xdd\xa5\x75\xbc\x83\x3c\x43\x91\xa4\x82\x03\xd7\x98\x6c\x15\x86\x50\xe1\xdb\xeb\xe0\xba\xb8\xf8\x92\x02\x4b\xdf\x0a\x2c\x4f\x2b\xb0\xfc\x3d\x0a\x2c\x15\xbe\xfd\x7c\x52\x01\x4a\x12\xbf\x0a\x50\x92\x9c\x52\xa0\x32\xe9\x55\x01\x4a\x12\x3c\xbe\x9a\x9c\x52\x60\x99\x78\xae\x81\x65\x72\xb2\x06\x2a\x93\x5e\x15\x58\x26\x0a\x7f\x9e\x9c\xac\x01\xf5\xde\xaf\x00\xea\xfd\x29\xfe\xa5\x45\xaf\xf4\xd5\x7b\x1c\xbc\x3f\x49\x9e\x7b\xee\x7e\xc5\x4f\x76\x7f\x65\xd2\x2f\x7f\xae\x70\xc0\xd5\x49\x05\x56\xbe\x15\x58\x9d\x56\x60\xf5\x7b\x14\x58\x29\x1c\xac\x9c\x0a\xcc\x88\x82\x7f\xff\xcb\x9f\x00\x19\x5e\x71\x73\x41\x34\xc9\x5e\xb3\xd7\x72\x6e\x58\xb4\xe1\x54\xa1\xe0\xcc\x17\x7f\xb0\x1f\x37\x44\x93\x3b\x7b\xfd\x18\x2f\x20\x2d\xee\xf6\x5b\xb3\x02\xc2\x5d\x7d\x5a\x6b\x3f\xd1\xa1\xb5\x3b\xb2\xcc\x35\x64\x44\xb5\x2c\x86\x9a\x6f\xf1\x72\xba\xae\x6b\x95\x43\xb7\x4a\x31\x8e\xf8\x03\x10\xde\xac\x93\x16\x5e\x36\x77\x7c\x6d\xfe\xb7\xf0\x2d\x72\xae\x02\x7e\xc9\xaf\xbc\xd0\x7f\xa3\x0d\x61\x34\x22\x5a\x48\xbf\x3d\x59\xe1\x9e\xea\xd3\x03\xcb\xde\x86\xab\xd5\xa4\x8c\x66\xd5\xf9\x56\x9c\xb9\xc6\xaf\xfd\xa2\x4c\xb0\xd9\xda\xe3\x24\x56\x61\xba\xf4\x39\xb0\x6a\x5f\xbd\xdd\xa4\xa9\x02\xe1\xeb\xec\xf0\xc3\xda\x39\xa7\x99\x47\x69\x9f\x6a\x48\xc7\xa8\x0b\x05\x57\x9a\xd4\xca\x1e\x9e\xc3\x05\xe1\x31\x3c\x4a\x91\x82\xd4\xbb\xb2\x61\x4e\x59\x35\xf2\x17\x40\x22\x90\xe5\xa9\x84\x79\x79\xac\x68\x92\xd6\x2c\xb5\x58\x02\xa7\x3f\xbb\x48\x57\x0e\xb4\x22\x39\xa3\x9b\x3d\x68\x0c\x38\xb7\x6f\x9a\xe7\x8f\x6f\xf7\x08\x75\xc0\xc8\xa8\xe0\x3b\xca\xa0\x83\x57\xa6\x0d\xfe\x68\x3f\x3a\xf8\x49\x98\xe3\xaf\x30\xef\x9e\x5f\x60\x3f\x3a\xf8\x15\x7d\x22\xf1\x34\x3f\x72\xcc\x64\xa1\xda\x78\x2c\x46\xb5\x71\xad\xad\x55\x73\xc7\x85\x35\x54\x1b\x7c\xad\x36\xce\x25\xb5\x32\xf7\xc7\xa7\xc2\x74\x4d\x35\x07\x56\x7d\x4d\x35\x35\x45\x2a\x29\x5c\x53\x4d\x44\x25\x84\x3e\xf5\xb0\x78\x4e\x2d\xea\x16\xbd\xe9\x60\x83\xe0\x1b\xfb\xe1\xe4\x2f\x7e\x82\xc7\xd5\xd9\xc2\x39\xd9\xd7\x0c\x7a\x5b\x8b\x6d\x10\x7c\x63\xfe\xbb\xb8\xc3\x73\xf6\x65\xb2\x1f\xea\x06\xcd\xc5\xbc\xd6\xde\x1b\x71\x13\x03\xdf\x3e\x43\xe8\xa2\x3d\x5f\x50\x8f\x3d\x6e\xd0\x5c\xb4\x6b\xed\x1d\x68\x1f\x9d\x1c\x0d\xd4\x27\x25\x78\xe3\xc2\xf7\xf2\x7b\x95\x6e\x52\x19\x5f\x7c\xb7\xa0\xb2\xd3\x4d\x73\xe9\x65\xf2\xd8\x9b\x6c\xdb\xba\x7e\x4f\x98\x73\x9a\x36\xf7\x19\x1e\xfb\xa7\xba\x6b\x39\xde\x3f\x55\x7b\x6f\x65\x69\x62\xd8\x9b\x08\x67\x59\xea\xd4\x23\xeb\xfc\xa5\xf1\x4b\xa4\xcb\xe6\x0e\x9c\x4b\xd7\x33\x1e\xfd\x33\x5f\x75\x56\xdc\x33\xb4\x96\x90\x08\x0d\xf8\x4e\xa7\xdd\xaa\xbb\xe9\xdb\xe6\x99\xf0\xb8\x73\x30\xdf\x8f\xdc\xec\x1e\xca\xe7\x94\x53\x95\xfa\x7c\xc4\xaf\x30\x5d\x3d\x7f\x60\xd5\x5b\x47\x54\x91\xf0\xb8\x3c\x74\x89\xf2\x44\xc2\xa5\x12\x1e\x15\xc9\x01\x5d\x53\xea\x93\x12\x7c\xcf\xae\x1b\xcb\xdc\x17\x7f\xca\x3e\x9d\x13\xdb\x53\x34\xf3\xb8\xde\x1a\x34\x57\x4f\xd7\xda\x7b\xeb\x63\x13\x03\x7f\x8a\x66\xce\xf5\x76\x49\xe6\xcb\x16\x5b\x9f\xda\xf2\xb6\x70\x2e\xe2\x75\x83\xde\x98\xdb\x20\xf8\xb3\xf9\xef\xe2\xce\x44\xec\x8f\x39\x13\xb1\x8b\x77\xd5\xdc\xd7\x5d\x35\x13\x31\xfe\x22\x62\x17\xe1\x84\xd0\x16\x3b\x89\xda\x32\x36\x68\xce\xd9\x2c\x21\x67\x2f\x64\xc6\xf7\xec\x95\x2c\x15\xe9\x19\x5f\x81\x54\xbe\xe7\x2f\xa1\xc9\xf9\x4b\xb7\xf1\x3d\x23\xf0\xd1\x89\x33\xb1\xfb\x48\xd6\x4c\xd3\x94\x48\x7d\x56\x35\x99\xce\xc5\x13\x42\x59\x8b\x65\xb6\xf6\x5c\x6b\x22\xe3\x32\x32\x9e\xd0\x04\x26\xc5\x99\x73\xfa\x4d\x68\x28\x45\x2a\x85\x59\xa8\x47\x09\x68\x49\x7d\x7e\x7f\x7e\x0c\xdd\x55\xba\x0e\xfb\xde\x26\xad\x7a\x4c\x9c\xc7\xc4\x13\x73\xf1\x31\xbb\x38\xc9\xae\x39\x07\xb8\xe0\xb1\x88\x66\x1e\x85\xcb\x00\x9d\x5a\x35\x4c\xfa\x93\x27\x0b\x83\x27\xe6\xf3\x66\xe6\x52\x81\x83\xd6\x2d\x36\x34\xb7\xd5\xc0\xc2\xb9\x14\xa8\x1b\xf4\xc6\xdf\x06\xc1\xf7\xe6\xff\x49\xee\x76\x5f\x8a\x67\x01\xaa\xbd\x2e\x2e\x15\xea\x56\xed\xb7\x09\x9d\xa3\x84\xc1\xce\xe4\xf8\xa8\xdd\xf7\xf3\x29\x59\x08\x7f\x62\x18\x34\x97\x0c\xb5\xf6\xde\x6a\xc1\xc4\xc0\x8f\x64\x21\x9c\xb4\xa3\xb9\x47\xd6\xd1\xdc\x49\xba\x6c\xee\x8f\x73\x34\xc7\x8f\xd1\xdc\xc9\x98\x11\x6d\xd6\x21\xcf\xe5\xdf\x80\x75\xaa\x70\xc4\xb0\x3f\x3d\xf2\x60\xd9\x40\x78\xcc\xcf\x4e\x8d\x05\x09\xca\xe3\xfb\x64\x83\xe6\x12\xa4\xd6\xde\x7e\x32\xa8\x5c\x6b\x1b\xf5\x7a\x93\xd1\xc4\xc1\x5f\x41\xe9\x4e\xaf\x13\x4a\xaf\xab\x94\xba\xe4\x56\x84\x81\x9a\x0b\x19\x7a\x7c\x67\x56\x61\xba\xa4\x3f\xb0\xea\x4d\xc1\x2a\x12\x0e\xca\x43\xa7\x28\xe1\x02\xa2\x35\xf3\xf9\x66\xbf\x84\x74\x4a\xb2\x67\xd4\x9f\x22\x45\x20\x1c\x14\x47\x4e\x3d\x20\xf2\xf8\x04\x6e\xd0\x9c\x2a\x54\xed\x7d\x3d\x89\x9a\x10\x38\x80\xc8\xf9\xf0\xdd\x7a\xc3\x78\x7b\xe2\xf5\x4d\xe3\x2f\x70\xaf\x9b\xf4\x75\x7f\x92\x47\xc1\x41\xf6\xe9\x14\xe1\xc9\xe7\xfe\x48\x83\xe6\xa4\xff\x74\xce\xce\xc8\xca\x77\x34\x23\x3a\x5c\xf4\x3e\x7a\x9e\x12\x85\x83\xa7\xa4\xdb\x0b\x5e\xeb\x65\xf3\xb3\xbe\x1f\xcc\xd1\x29\xe5\x2f\xfc\x4a\x7f\x71\x4a\xfb\x8b\xdf\x21\xdd\x85\xe5\x7f\xe1\xe4\xce\x48\xd8\xe2\x87\x0e\xad\xb9\x1b\x38\x27\xf7\x9a\x41\x7f\xdc\x4d\x10\x1c\x98\xff\x4e\xee\x9c\x2c\x61\x47\xda\xfc\xa2\xae\x35\xff\x02\x32\xb7\x3c\xfa\x4a\xc6\xb4\x1f\x58\x76\x64\x58\x78\xe3\xc0\x1c\xfd\xb8\x9a\x7c\x71\xbe\x52\x51\x2b\x9f\x24\x57\xce\x77\x7d\x55\x73\xf7\x99\x65\xc5\x46\x4a\x0b\x09\x51\xef\x25\xb2\x62\x38\x58\xb5\x79\xa3\xd5\xf4\xc9\xb2\x33\xae\x81\x3d\x72\xd5\x97\x26\xb1\x12\x6b\x8f\x4f\x1f\x39\xa0\xab\xb6\x34\x8d\x76\x13\x63\x9d\x76\x90\xa5\xf6\xd2\x2e\x0f\x81\xa7\x25\x8e\xb3\xae\x34\x91\x7e\xbf\x05\xce\x01\x9d\x14\x1b\x26\x9d\xf9\x59\x67\x3c\x25\xf2\x8e\x32\x70\x93\xa3\x89\xcf\x1b\x53\x0b\xe7\x1a\x38\x75\x83\xde\x0a\xdf\x06\xc1\x53\xf3\xdf\x59\xbb\x5b\xaa\xb5\x57\xf6\x19\xa0\x93\x7f\x66\x92\x6f\x4d\x4a\x40\xa9\x6a\x93\x5c\xe7\xa9\xa4\x00\x53\x40\xe4\x39\x37\x2a\x4d\x14\xa3\x1a\xab\x7e\x30\xd9\x5f\xef\x64\xf1\x70\x43\x02\x3c\xcd\xae\x66\x9b\xa4\x26\xd9\xc5\x4e\x33\x57\x01\x9b\x89\x51\xe0\x05\xf6\xec\x2c\xa0\x42\x8f\x02\x6a\x9a\x9f\xbb\x4a\xaa\x87\x3d\xd6\xad\xb6\x57\x77\xdc\x59\x7d\xf6\xa3\x4e\xb5\xa7\xba\xd5\x7e\xea\x8d\xc7\xdf\x83\x6d\x9c\x3f\x05\xdb\xb4\xfc\x15\xd8\xf9\xcc\x13\xfc\x2d\x71\x71\x7d\x56\xcc\xe3\xd3\x9d\x41\x73\xf1\xad\xb5\xf7\x36\x50\x4d\x0c\xfc\x5d\x31\xe7\x23\xdd\x4f\x9a\xfa\x5d\x1d\x73\x40\xd7\xea\xd8\x34\xe9\xb8\x3a\xe6\xce\xf8\x7f\x34\xdd\x5b\x1d\xff\x1f\x00\x00\xff\xff\x8f\xa3\x5c\x9d\xbc\x4b\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x5b\xcf\x73\x9b\xba\x16\xde\xfb\xaf\xd0\xd4\x9b\x7b\x67\x6a\x35\x4d\xdf\xbc\x45\xde\xca\xcd\x8f\xa9\xdb\x3a\xc9\x14\xdf\xde\xf6\xed\x64\x38\x18\xc5\x42\xc2\x92\x6c\x27\xfd\xeb\xef\x48\x80\x81\x84\xc8\xe0\x2b\x9a\x85\x0d\xe8\x9c\xef\xe8\xfb\xce\x91\x04\x44\x1e\xa3\x89\xbf\xbf\xd1\x18\x7d\xa5\x21\x70\x05\x11\xd2\x02\xe9\x04\xd0\x34\x23\x61\x02\x28\x10\xb1\xde\x13\x09\xe8\x46\x6c\x79\x44\x34\x15\x1c\xfd\x31\x0d\x6e\xfe\x44\x5b\x1e\x81\x44\x82\x03\x12\x12\xa5\x42\xc2\x68\x8c\x42\xc1\xb5\xa4\xcb\xad\x16\x12\xb1\x1c\x10\x91\x95\x04\x48\x81\x6b\x85\x11\x0a\x00\x2c\xfa\xed\xdd\x62\x76\x79\x8d\x62\xca\x00\x45\x54\xe5\x4e\x10\xa1\x3d\xd5\xc9\x68\x8c\x74\x42\x15\xda\x0b\xb9\x46\xb1\x90\x88\x44\x11\x35\x81\x09\x43\x94\xc7\x42\xa6\x79\x37\x24\xac\x88\x8c\x28\x5f\xa1\x50\x64\x4f\x92\xae\x12\x8d\xc4\x9e\x83\x54\x09\xcd\xf0\x68\x8c\x16\x86\x46\x70\x53\xf6\x44\xe5\xb0\x36\xa6\x16\xe8\xa7\xd8\x16\x1c\x6a\x74\x0b\x15\xde\xa2\xef\x20\x95\x09\x72\x8e\xcf\x46\x63\xf4\x87\x31\x79\x53\x34\xbe\xf9\xf3\x7f\xe8\x49\x6c\x51\x4a\x9e\x10\x17\x1a\x6d\x15\xd4\x90\xe1\x31\x84\x4c\x23\xca\x51\x28\xd2\x8c\x51\xc2\x43\xa8\x68\x1d\x22\x60\x64\x3b\x60\x30\xc4\x52\x13\xca\x11\xb1\x34\x90\x88\xeb\x66\x88\xe8\xd1\x78\x34\x46\xf6\x2f\xd1\x3a\xbb\x78\xf7\x6e\xbf\xdf\x63\x62\xbb\x8b\x85\x5c\xbd\x2b\xd9\xbd\xfb\x3a\xbb\xbc\xbe\x0d\xae\x27\xb6\xcb\xa3\x31\xfa\x8b\x33\x50\x0a\x49\xd8\x6c\xa9\x84\x08\x2d\x9f\x10\xc9\x32\x46\x43\xb2\x64\x80\x18\xd9\x9b\xc4\xd9\xec\xd8\xa4\x53\x8e\xf6\x92\x6a\xca\x57\x6f\x91\x2a\xb2\x3e\x1a\x37\xb2\x53\xc9\x55\x76\x8f\xaa\x86\x81\xe0\x88\x70\xf4\x66\x1a\xa0\x59\xf0\x06\x7d\x9c\x06\xb3\xe0\xed\x68\x8c\xfe\x9e\x2d\x3e\xdd\xfd\xb5\x40\x7f\x4f\xbf\x7d\x9b\xde\x2e\x66\xd7\x01\xba\xfb\x86\x2e\xef\x6e\xaf\x66\x8b\xd9\xdd\x6d\x80\xee\x6e\xd0\xf4\xf6\x27\xfa\x32\xbb\xbd\x7a\x8b\x80\xea\x04\x24\x82\xc7\x4c\x9a\xfe\x0b\x89\xa8\x11\x12\x22\x93\xd3\xb2\x80\xca\x0e\x98\xfa\x30\xe7\x2a\x83\x90\xc6\x34\x44\x8c\xf0\xd5\x96\xac\x00\xad\xc4\x0e\x24\x37\xe5\x91\x81\x4c\xa9\x32\xe9\x54\x88\xf0\x68\x34\x46\x8c\xa6\x54\xdb\x2a\x52\x2f\x49\x99\x30\x3e\xc7\xd6\x88\x64\xb4\x28\xa7\x0b\x14\x92\x14\x58\x3d\x7d\xbb\xf7\xa3\x35\xe5\xd1\x05\xba\x34\x2d\x97\x44\x13\x26\x56\xa3\x14\x34\x89\x88\x26\x17\x23\x84\x38\x49\xa1\x70\x9c\x84\x79\xfb\xe4\x3d\x3e\xc3\xef\xdf\x4f\x14\x27\x99\x4a\x84\x9e\x6c\xb6\x44\xae\xb7\x6a\x84\x10\x23\x4b\x60\xca\xf8\x21\x93\xee\xd2\x71\x6d\x2f\xbc\x88\x5e\xe0\xe1\x5d\xd9\xbf\x0f\xf8\x0c\x9f\xb9\x6d\x99\x20\x11\xc8\x4e\x2e\x72\xcb\x35\x4d\xa1\xb2\x2d\xfa\x1d\xdc\x4e\xef\x83\x4f\x77\x0b\xb7\x57\x26\xc5\x8e\x46\x20\x2f\x50\x49\xcf\x64\xd9\x50\x2b\x2c\x72\x96\x4e\xf0\x97\x18\xe6\x6a\x5d\xde\xaa\x0b\x2d\x8c\x50\xe9\x56\xa7\x60\xe2\xdc\x50\x4e\x58\xdd\x7b\xd2\x62\x78\x86\xcf\x26\xf3\xf3\x11\x42\x44\x6a\x1a\x93\x50\x17\x79\x29\x52\x32\xc9\x95\x9c\xac\xa4\x10\xbb\xa7\xb2\x2f\x2b\x29\xb6\xd9\x2c\xba\x40\x42\xae\x4a\x55\xf2\xfe\xad\x0b\x8b\x12\xcd\x18\xb5\x42\xb5\x05\x79\x20\x3b\xe2\x25\x84\x01\x6a\x0d\xa0\xfc\xc0\xab\x36\xf0\x35\x27\x9a\xee\xc0\x4b\x84\x02\xab\x35\x8c\xd0\x8c\x72\x3f\x51\x2c\x54\x5b\x90\xc7\x94\x79\x89\xf0\x98\xb2\x06\x7c\x31\x28\x26\x09\x10\xa6\x93\x7f\x17\xa2\x89\xd5\x1a\xc6\x4b\x4a\x9e\x81\x15\x96\x11\x64\xc0\x23\xe0\x21\x85\x43\x51\x4d\x3a\x44\x70\xca\xf5\x44\x52\xe6\x0b\xab\xd9\xdd\x93\xe1\x72\x94\x09\xc9\xa8\x1f\x24\x4f\xfd\x31\xf7\x19\xad\x29\x4f\xc9\xbf\x1d\x1c\x75\xa4\xd6\x10\x0a\xe4\x8e\x81\xf6\x13\xa5\x00\x6b\x0d\xb4\x87\x65\x22\xc4\xda\x4f\xa0\x02\xac\x1e\xc8\xc3\xe8\x68\x24\x55\x85\x09\xa4\xf5\xe1\x40\xa3\x0b\xd4\x34\x29\xee\x10\x91\x96\xdb\xea\x52\x46\x94\x32\x1d\x41\x31\x61\x6a\x90\x01\xe6\xbb\x8a\x9f\xd7\x5f\xb1\xb0\x4e\xc8\x5e\x4d\x20\xec\xb0\xca\xd4\x57\xfa\xb6\x38\xcf\x00\x5d\x02\x37\x4d\x4a\x81\xeb\x52\xbe\xa2\xb0\x59\x25\x17\x4f\x59\x1d\xef\x45\x3f\xcd\x03\x82\xe0\xc0\x35\x26\x7b\x85\x21\x54\xf8\xfa\x32\xb8\x2c\x2f\xbe\xa6\xc0\xda\xb7\x02\xeb\xe3\x0a\xac\x7f\x8f\x02\x6b\x85\xaf\xbf\x1c\x55\x80\x92\xd4\xaf\x02\x94\xa4\xc7\x14\xa8\x4c\x06\x55\x80\x92\x14\xcf\xa6\xf3\x63\x0a\xac\x53\xcf\x35\xb0\x4e\x8f\xd6\x40\x65\x32\xa8\x02\xeb\x54\xe1\x2f\xf3\xa3\x35\xa0\x3e\xf8\x15\x40\x7d\x38\xc6\xff\x60\x31\x28\x7d\xf5\x01\x07\x1f\x8e\x92\xe7\x9e\xd3\xaf\xf8\xd1\xf4\x57\x26\xc3\xf2\xe7\x0a\x07\x5c\x1d\x55\x60\xe3\x5b\x81\xcd\x71\x05\x36\xbf\x47\x81\x8d\xc2\xc1\xc6\xa9\xc0\x92\x28\xf8\xef\x7f\xfc\x09\x90\xe3\x95\xb7\x06\x44\x93\xfc\x1d\x5b\xad\xcf\x0d\x8b\x2e\x9c\x2a\x14\x9c\xfb\xe2\x8f\xf6\xeb\x8a\x68\x72\x63\xaf\xb7\xf1\x02\xd2\xe1\xf6\xb2\x33\x2b\x20\xdc\x95\xd3\x5a\xfb\x91\x84\xd6\xee\xa7\x72\xd7\x90\x11\xd5\xb1\x18\x6a\xbe\xe5\x9b\xa9\xba\xae\x55\x1f\xfa\x55\x8a\x71\xc4\x1f\x81\xf0\x66\x9d\x74\xf0\xb2\x7d\xc7\x97\xe6\xb3\x83\x6f\xd9\xe7\x2a\xe0\xd7\xe2\xca\x2b\xf9\x9b\xec\x08\xa3\x11\xd1\x42\xfa\xcd\x64\x85\x7b\x2c\xa7\x2f\x2c\x07\x1b\xae\x56\x93\x43\x34\xab\xce\xf7\xf2\xcc\x35\x7e\xed\x5b\x72\xc1\x96\x5b\x8f\x93\x58\x85\xe9\xd2\xe7\x85\x55\xf7\xea\xed\x27\x4d\x15\x08\x5f\xe6\x87\x1f\xb7\xce\x39\x2d\x14\xb2\xc3\xc3\x52\x77\x35\xa4\x63\xd4\x85\x82\x2b\x4d\x6a\x65\x0f\x8f\x61\x42\xf8\x0a\xee\xa5\xc8\x40\xea\xa7\x43\x43\x4c\x59\x35\xf2\x13\x30\xcf\xfe\x87\x53\x09\xf1\xe1\x58\xd1\x34\xab\x59\x6a\xb1\x06\x4e\x7f\xf5\x91\xee\x30\xd0\xca\xce\x19\xdd\xec\x41\x63\xc0\xb9\x7d\xb3\xa2\xff\xf8\xfa\x19\xa1\x1e\x18\x39\x15\x7c\x43\x19\xf4\xf0\xca\xb5\xc1\x9f\xec\x57\x0f\x3f\x09\x31\xfe\x06\x71\xff\xfe\x05\xf6\xab\x87\x5f\x99\x13\x89\x17\xc5\x91\x63\x26\x0b\xd5\xce\x63\x31\xaa\x9d\x6b\x6d\xad\x9a\x7b\x2e\xac\xa1\xda\xe1\x4b\xb5\x73\x2e\xa9\x95\xb9\x3f\x3e\x15\xa6\x6b\xaa\x79\x61\x35\xd4\x54\x53\x53\xa4\x92\xc2\x35\xd5\x44\x54\x42\xe8\x53\x0f\x8b\xe7\xd4\xa2\x6e\x31\x98\x0e\x36\x08\xbe\xb2\x5f\x4e\xfe\xe2\x17\x78\x5c\x9d\x2d\x9c\x93\x7d\xcd\x60\xb0\xb5\xd8\x06\xc1\x57\xe6\xd3\xc5\x1d\x1e\xf3\x7f\x20\xf9\xa1\x6e\xd0\x5c\xcc\x6b\xed\x83\x11\x37\x31\xf0\xf5\x23\x84\x2e\xda\x71\x42\x3d\x66\xdc\xa0\xb9\x68\xd7\xda\x7b\xd0\x6e\x9d\x1c\x0d\xd4\x67\x25\x78\xe3\xc2\x8f\xc3\x8b\xfc\x7e\x52\x19\x5f\x7c\x93\x50\xd9\xeb\xa6\xf9\xe0\x65\xfa\xf1\x6c\xb2\xed\xea\xfa\x23\x65\xce\x69\xda\xdc\x67\x78\xcc\x4f\x75\xd7\xd2\x9e\x9f\xaa\x7d\xb0\xb2\x34\x31\xec\x4d\x84\xb3\x2c\x75\xe6\x91\x75\xf1\xd2\xf8\x35\xd2\x87\xe6\x1e\x9c\x0f\xae\x27\x3c\xfa\xe7\xbe\xea\xa4\xb8\x27\x68\x2d\x21\x15\x1a\xf0\x8d\xce\xfa\x55\x77\xd3\xb7\xcb\x33\x61\xbb\x73\x10\x3f\x8f\xdc\x4c\x0f\xe5\x31\xe5\x54\x65\x3e\x1f\xf1\x2b\x4c\x57\xe6\x5f\x58\x0d\x96\x88\x2a\x12\x9e\x1d\x0e\x5d\xa2\x3c\x90\x70\xad\x84\x47\x45\x0a\x40\xd7\x94\xfa\xa0\x04\x7f\x66\xd7\x8f\x65\xe1\x8b\x3f\xe7\xdf\xce\x89\xed\x21\x5a\x7a\x5c\x6f\x0d\x9a\x2b\xd3\xb5\xf6\xc1\x72\x6c\x62\xe0\xcf\xd1\xd2\xb9\xde\xae\x49\xbc\xee\xb0\xdb\xa2\x2b\x6f\x0b\xe7\x22\x5e\x37\x18\x8c\xb9\x0d\x82\xbf\x98\x4f\x17\x77\x26\x56\xfe\x98\x33\xb1\x72\xf1\xae\x9a\x87\xba\xab\x66\x62\x85\xbf\x8a\x95\x8b\x70\x4a\x68\x87\x0d\x1d\x5d\x19\x1b\x34\xe7\x6c\x96\x92\x93\x17\x32\xe3\x7b\xf2\x4a\x96\x89\xec\x84\x7f\x81\x54\xbe\xa7\x2f\xa1\xe9\xe9\x4b\xb7\xf1\x3d\x21\x70\xeb\xc4\x99\xda\x8d\x0b\x5b\xa6\x69\x46\xa4\x3e\xa9\x9a\x4c\x72\xf1\x9c\x50\xd6\x61\x99\xad\x3d\xd7\x9a\xc8\xf8\x10\x19\xcf\x69\x0a\xf3\xf2\xcc\x39\xfd\xa6\x34\x94\x22\x93\xc2\x2c\xd4\x93\x14\xb4\xa4\x3e\xff\x7f\xde\x86\xee\x2a\x5d\x87\xfd\x60\x93\x56\x3d\x26\x2e\x62\xe2\xb9\xb9\x78\x9f\x5f\x9c\xe7\xd7\x9c\x03\x5c\xf0\x95\x88\x96\x1e\x85\xcb\x01\x9d\x5a\x35\x4c\x86\x93\x27\x0f\x83\xe7\xe6\xfb\x6a\xe9\x52\x81\x83\xd6\x1d\x36\x29\x76\xd5\xc0\xc2\xb9\x14\xa8\x1b\x0c\xc6\xdf\x06\xc1\xb7\xe6\xf3\x28\x77\xbb\x2f\xc5\xb3\x00\xd5\x5e\x17\x97\x0a\x75\xab\xee\x9b\x7c\x4e\x51\xc2\x60\xe7\x72\x7c\xd2\xee\xfb\xf9\x8c\x24\xc2\x9f\x18\x06\xcd\x25\x43\xad\x7d\xb0\x5a\x30\x31\xf0\x3d\x49\x84\x93\x76\x14\x7b\x64\x1d\xc5\x4e\xd2\x87\xe6\xe1\x38\x47\x31\xbe\x8f\x62\x27\x63\x46\xb4\x59\x87\x3c\x97\x7f\x03\xd6\xa9\x42\x8b\xe1\x70\x7a\x14\xc1\xf2\x81\x70\x5f\x9c\x1d\x1b\x0b\x12\x94\xc7\xf7\xc9\x06\xcd\x25\x48\xad\xbd\xfb\x64\x50\xb9\xd6\x36\xea\x0d\x26\xa3\x89\x83\xbf\x81\xd2\xbd\x5e\x27\x1c\xbc\xa6\x19\x75\xc9\xad\x08\x03\x15\x0b\x19\x7a\x7c\x67\x56\x61\xba\xa4\x7f\x61\x35\x98\x82\x55\x24\x1c\x1c\x0e\x9d\xa2\x84\x09\x44\x5b\xe6\xf3\xcd\xfe\x01\xd2\x29\xc9\x33\xa3\xe1\x14\x29\x03\xe1\xa0\x3c\x72\xea\x01\x91\xc7\x27\x70\x83\xe6\x54\xa1\x6a\x1f\xea\x49\xd4\x84\xc0\x01\x44\xce\x87\xef\xce\xdb\xa7\xbb\x13\xaf\xb6\x50\xbf\xca\xbd\x6e\x32\xd4\xfd\x49\x11\x05\x07\xf9\xb7\x53\x84\x07\x9f\xfb\x23\x0d\x9a\x93\xfe\xc3\x29\x3b\x23\x2b\xdf\xc9\x92\xe8\x30\x19\x7c\xf4\x3c\xa4\x0a\x07\x0f\x69\xbf\x17\xbc\xd6\xcb\xf6\xcf\xfa\x7e\x34\x47\xc7\x94\x3f\xf7\x2b\xfd\xf9\x31\xed\xcf\x7f\x87\x74\xe7\x96\xff\xb9\x93\x3b\x23\x61\x87\x9f\x13\x74\xe6\x6e\xe0\x9c\xdc\x6b\x06\xc3\x71\x37\x41\x70\x60\x3e\x9d\xdc\x39\x59\xc3\x13\xe9\xf2\xc3\xa6\xce\xfc\x4b\xc8\xc2\xb2\xf5\x95\x8c\x69\x7f\x61\xd9\x93\x61\xe9\x8d\x03\x73\xf4\x73\x3a\xff\xea\x7c\xa5\xa2\x36\x3e\x49\x6e\x9c\xef\xfa\xaa\xe6\xfe\x33\xcb\x86\x4d\x94\x16\x12\xa2\xc1\x4b\x64\xc3\x70\xb0\xe9\xf2\x46\xab\xe9\x93\xf7\xce\xb8\x06\xf6\xc8\x55\x5f\x9a\xac\x94\xd8\x7a\x7c\xfa\x28\x00\x5d\xb5\xa5\x69\xf4\x34\x37\xd6\x59\x0f\x59\x6a\x2f\xed\x8a\x10\x78\x71\xc0\x71\xd6\x95\x26\xd2\xef\x7f\x81\x0b\x40\x27\xc5\x86\x49\x6f\x7e\xd6\x19\x2f\x88\xbc\xa1\x0c\xdc\xe4\x68\xea\xf3\xc6\xd4\xc2\xb9\x06\x4e\xdd\x60\xb0\xc2\xb7\x41\xf0\xc2\x7c\x3a\x6b\x77\x4f\xb5\xf6\xca\x3e\x07\x74\xf2\xcf\x4d\x8a\xad\x49\x29\x28\x55\x6d\x92\xeb\x3d\x95\x94\x60\x0a\x88\x3c\xe5\x46\xa5\x89\x62\x54\x63\x94\x0f\xfe\x00\x55\xc4\xc3\x0d\x09\xf0\x22\xbf\x9a\x6f\x92\x9a\xe7\x17\x7b\xcd\x5c\x25\x6c\x2e\x46\x89\x17\xd8\xb3\x93\x80\x4a\x3d\x4a\xa8\x45\x71\xee\x2a\xa9\x01\xf6\x58\x77\xda\x5e\xdd\x73\x67\xf5\xc9\x8f\x3a\xd5\x9e\xea\x4e\xfb\xa9\x77\x1e\x7f\x0f\xb6\x73\xfe\x14\x6c\xd7\xf1\x57\x60\xa7\x33\x4f\xf1\xf7\xd4\xc5\xf5\x51\x31\x8f\x4f\x77\x06\xcd\xc5\xb7\xd6\x3e\xd8\x40\x35\x31\xf0\x0f\xc5\x9c\x8f\x74\xbf\x68\xe6\x77\x75\x2c\x00\x5d\xab\x63\xd3\xa4\xe7\xea\x58\x38\xe3\xff\xd3\xec\xd9\xea\xf8\x4f\x00\x00\x00\xff\xff\xfb\x43\xdf\x0d\xb9\x47\x00\x00"), }, "/cr-example.yaml": &vfsgenÛ°CompressedFileInfo{ name: "cr-example.yaml", @@ -199,13 +178,6 @@ var assets = func() http.FileSystem { compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x53\x4d\x6f\x9b\x40\x14\xbc\xef\xaf\x18\x99\x4b\x22\xf9\xa3\xed\xd1\x3d\xd1\xc4\x56\x51\x23\x5b\x0a\x4e\xa3\x1c\x9f\xe1\x19\x9e\x02\xfb\xe8\xee\x12\xe2\x7f\x5f\x2d\xb6\x9b\x44\xbd\x66\x6f\x88\x61\x3e\x76\x86\x04\xb3\xcf\x3b\x26\xc1\x9d\x14\x6c\x3d\x97\x08\x8a\x50\x33\xd2\x8e\x8a\x9a\x91\xeb\x21\x0c\xe4\x18\x6b\xed\x6d\x49\x41\xd4\xe2\x2a\xcd\xd7\xd7\xe8\x6d\xc9\x0e\x6a\x19\xea\xd0\xaa\x63\x93\xa0\x50\x1b\x9c\xec\xfb\xa0\x0e\xcd\x89\x10\x54\x39\xe6\x96\x6d\xf0\x73\x20\x67\x1e\xd9\x37\xdb\x5d\x76\xb3\xc2\x41\x1a\x46\x29\xfe\xf4\x11\x97\x18\x24\xd4\x26\x41\xa8\xc5\x63\x50\xf7\x8c\x83\x3a\x50\x59\x4a\x14\xa6\x06\x62\x0f\xea\xda\x93\x0d\xc7\x15\xb9\x52\x6c\x85\x42\xbb\xa3\x93\xaa\x0e\xd0\xc1\xb2\xf3\xb5\x74\x73\x93\x60\x17\x63\xe4\xeb\x8b\x13\x7f\xa2\x1d\x35\x83\xe2\x49\xfb\x73\x86\x77\x71\xcf\xb7\x30\xc5\x6f\x76\x3e\x8a\x7c\x9b\x7f\x31\x09\xae\x22\x64\x72\x7e\x39\xb9\xfe\x8e\xa3\xf6\x68\xe9\x08\xab\x01\xbd\xe7\x77\xcc\xfc\x5a\x70\x17\x20\x16\x85\xb6\x5d\x23\x64\x0b\x7e\x8b\xf5\x4f\x61\x8e\xd1\x40\xe4\xd0\x7d\x20\xb1\xa0\x31\x06\xf4\xf0\x1e\x06\x0a\x26\x31\x09\xc6\x53\x87\xd0\x2d\x17\x8b\x61\x18\xe6\x34\xda\x9d\xab\xab\x16\x97\x74\x8b\xbb\xec\x66\xb5\xc9\x57\xb3\xd1\xb2\x49\xf0\x60\x1b\xf6\x1e\x8e\xff\xf4\xe2\xb8\xc4\xfe\x08\xea\xba\x46\x0a\xda\x37\x8c\x86\x86\x58\xdc\xd8\xce\x58\xba\x58\x0c\x4e\x82\xd8\x6a\x0a\x7f\x6e\xdd\x24\x1f\xda\x79\xbb\xae\x8b\x3d\xf1\x1f\x00\x6a\x41\x16\x93\x34\x47\x96\x4f\xf0\x23\xcd\xb3\x7c\x6a\x12\x3c\x66\xbb\x9f\xdb\x87\x1d\x1e\xd3\xfb\xfb\x74\xb3\xcb\x56\x39\xb6\xf7\xb8\xd9\x6e\x6e\xb3\x5d\xb6\xdd\xe4\xd8\xae\x91\x6e\x9e\xf0\x2b\xdb\xdc\x4e\xc1\x12\x6a\x76\xe0\xd7\xce\x45\xff\xea\x20\xf1\x22\xb9\x8c\x9d\x5e\x06\x74\x31\x10\xf7\x11\x9f\x7d\xc7\x85\x1c\xa4\x40\x43\xb6\xea\xa9\x62\x54\xfa\xc2\xce\xc6\x79\x74\xec\x5a\xf1\xb1\x4e\x0f\xb2\xa5\x49\xd0\x48\x2b\x61\x5c\x91\xff\x3f\x54\x94\xf9\xcc\x7f\xcb\x50\x27\xe7\x39\x2d\xf1\xf2\xd5\x3c\x8b\x2d\x97\xc8\xd9\xbd\x48\xc1\x69\x51\x68\x6f\x83\x69\x39\x50\x49\x81\x96\x06\xb0\xd4\xf2\x12\x05\xb5\xdc\xcc\x9e\x67\xda\xb1\xa3\xa0\xce\x00\x0d\xed\xb9\xf1\x11\x82\x58\xe5\x12\x93\x33\x68\x62\xfe\x06\x00\x00\xff\xff\xaf\x8c\x67\xdd\x0f\x04\x00\x00"), }, - "/operator.yaml": &vfsgenÛ°CompressedFileInfo{ - name: "operator.yaml", - modTime: time.Time{}, - uncompressedSize: 2110, - - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x54\xc1\x6e\xe3\x36\x10\xbd\xeb\x2b\x1e\xac\xcb\x2e\x10\xdb\xc9\x1e\xd5\x93\xea\x38\x88\xd1\x54\x32\x2c\x6f\x83\x3d\x15\x13\x6a\x24\x11\xa1\x48\x95\xa4\xa2\xd5\xdf\x17\x94\xed\xc4\xc9\x6e\xd3\x1e\x82\xf2\x24\x69\x66\xde\xbc\x37\xf3\xc4\x18\xf3\x8f\x3b\x51\x8c\x3b\x29\x58\x3b\x2e\xe1\x0d\x7c\xc3\x48\x3b\x12\x0d\xa3\x30\x95\x1f\xc8\x32\x6e\x4c\xaf\x4b\xf2\xd2\x68\x7c\x4a\x8b\x9b\xcf\xe8\x75\xc9\x16\x46\x33\x8c\x45\x6b\x2c\x47\x31\x84\xd1\xde\xca\x87\xde\x1b\x0b\x75\x00\x04\xd5\x96\xb9\x65\xed\xdd\x02\x28\x98\x27\xf4\x2c\xdf\x6f\x56\x6b\x54\x52\x31\x4a\xe9\x0e\x45\x5c\x62\x90\xbe\x89\x62\xf8\x46\x3a\x0c\xc6\x3e\xa2\x32\x16\x54\x96\x32\x34\x26\x05\xa9\x2b\x63\xdb\x03\x0d\xcb\x35\xd9\x52\xea\x1a\xc2\x74\xa3\x95\x75\xe3\x61\x06\xcd\xd6\x35\xb2\x5b\x44\x31\xf6\x41\x46\x71\x73\x62\xe2\x0e\xb0\x53\x4f\x6f\xf0\xcd\xf4\x47\x0d\x67\x72\x8f\x53\xb8\xc0\x1f\x6c\x5d\x68\xf2\x65\x71\x19\xc5\xf8\x14\x52\x66\xc7\xe0\xec\xf3\x2f\x18\x4d\x8f\x96\x46\x68\xe3\xd1\x3b\x3e\x43\xe6\xef\x82\x3b\x0f\xa9\x21\x4c\xdb\x29\x49\x5a\xf0\x8b\xac\xe7\x0e\x0b\x4c\x04\x02\x86\x79\xf0\x24\x35\x68\x92\x01\x53\x9d\xa7\x81\x7c\x14\x47\x31\xa6\xd3\x78\xdf\x25\xcb\xe5\x30\x0c\x0b\x9a\xe8\x2e\x8c\xad\x97\x27\x75\xcb\xbb\xcd\x6a\x9d\x15\xeb\xf9\x44\x39\x8a\xf1\x55\x2b\x76\x0e\x96\xff\xea\xa5\xe5\x12\x0f\x23\xa8\xeb\x94\x14\xf4\xa0\x18\x8a\x86\xb0\xb8\x69\x3b\xd3\xd2\xa5\xc6\x60\xa5\x97\xba\xbe\x80\x3b\x6e\x3d\x8a\x5f\x6d\xe7\x65\x5c\x27\x7a\xd2\xbd\x4a\x30\x1a\xa4\x31\x4b\x0b\x6c\x8a\x19\x7e\x4d\x8b\x4d\x71\x11\xc5\xb8\xdf\xec\x6f\xf3\xaf\x7b\xdc\xa7\xbb\x5d\x9a\xed\x37\xeb\x02\xf9\x0e\xab\x3c\xbb\xde\xec\x37\x79\x56\x20\xbf\x41\x9a\x7d\xc3\x6f\x9b\xec\xfa\x02\x2c\x7d\xc3\x16\xfc\xbd\xb3\x81\xbf\xb1\x90\x61\x90\x5c\x86\x9d\x9e\x0c\x74\x22\x10\xfc\x11\xde\x5d\xc7\x42\x56\x52\x40\x91\xae\x7b\xaa\x19\xb5\x79\x62\xab\x83\x3d\x3a\xb6\xad\x74\x61\x9d\x0e\xa4\xcb\x28\x86\x92\xad\xf4\x93\x8b\xdc\x8f\xa2\x42\x9b\x8f\xfc\xb7\x22\xea\xe4\xd1\x4e\x49\xd8\x80\x5b\x3e\x5d\x45\x8f\x52\x97\x09\xae\xb9\x53\x66\x0c\x3f\x47\xd4\xb2\xa7\x92\x3c\x25\x11\xa0\xa9\xe5\x04\x82\x5a\x56\xf3\xc7\xb9\xe9\xd8\x92\x37\x36\x02\x14\x3d\xb0\x72\x21\x05\x01\x29\xc1\xec\x98\x34\x9b\x3e\x4d\x2f\xe7\xde\x08\x16\x34\x9a\xb5\x4f\xf0\x8c\x12\x26\x15\x10\x2c\x4f\x5e\x70\x09\xae\x22\xc0\x79\x4b\x9e\xeb\xf1\x80\xed\xc7\x8e\x13\xec\x58\x58\x26\xcf\x21\xcc\x8a\x85\x37\xf6\x10\x6e\xc9\x8b\xe6\xee\x8c\xcb\x3b\x94\x3d\xb7\x9d\x22\xcf\xc7\xca\x33\x95\xe1\xa8\x57\x20\xef\xc0\x1c\xce\x7f\x12\x18\x12\x4f\x22\xa7\x67\xb6\x4f\x52\x70\x2a\x84\xe9\xb5\xcf\xde\xeb\x10\xee\x2f\x92\xe1\x0a\x79\xa1\x34\xff\x37\x52\x80\x6c\xa9\xe6\x04\xa5\x11\x8f\x6c\x17\xd2\x2c\x0f\x0c\x97\xc7\x92\xe4\x6a\x71\xb9\xb8\x9c\xef\x56\x5f\xe6\x45\x96\x6e\x8b\xdb\x7c\x7f\x56\x2c\x4c\xdb\x92\x2e\x93\xb3\x4f\xf3\x53\xb3\xb7\x3d\xb6\xbd\x52\x5b\xa3\xa4\x18\x13\x6c\xaa\xcc\xf8\xad\x65\x17\xdc\xf3\x92\xc7\xfa\xe9\x1c\xea\x85\xff\x7d\xba\x5f\xdd\xfe\x99\xa5\xbf\xaf\x8b\x6d\xba\x5a\xbf\xca\x01\x9e\x48\xf5\x7c\x63\x4d\x9b\xbc\x09\x00\x95\x64\x55\xee\xb8\xfa\x31\x72\x8c\x6d\xc9\x37\xc9\xf3\x6a\x17\xa1\x9d\xeb\x48\xf0\x4f\x69\xe4\xdb\xf5\x2e\xdd\xe7\xbb\x89\xc9\xcf\x48\xbc\x35\xf5\x5b\x80\x6d\x7e\xfd\x8f\xb5\x1f\x27\xe0\x55\x6a\x8c\xe7\xb1\x85\x1b\x8f\xd4\x40\xa3\x9b\xae\x8c\x93\x19\xf0\x2c\xfa\x02\x52\x97\xdc\xb1\x2e\x59\x7b\x35\xa2\xb2\xa6\x7d\x77\xf6\x27\x5d\xff\xeb\x66\xfe\x0e\x00\x00\xff\xff\xa9\x6b\x79\x49\x3e\x08\x00\x00"), - }, "/platform-cr.yaml": &vfsgenÛ°CompressedFileInfo{ name: "platform-cr.yaml", modTime: time.Time{}, @@ -335,11 +307,8 @@ var assets = func() http.FileSystem { fs["/builder-role-kubernetes.yaml"].(os.FileInfo), fs["/builder-role-openshift.yaml"].(os.FileInfo), fs["/builder-service-account.yaml"].(os.FileInfo), - fs["/camel-catalog-3.0.0-1.0.10.yaml"].(os.FileInfo), - fs["/camel-catalog-3.0.0-1.0.9.yaml"].(os.FileInfo), - fs["/camel-catalog-quarkus-1.0.0-M1-1.0.10.yaml"].(os.FileInfo), - fs["/camel-catalog-quarkus-1.0.0-M1-1.0.9.yaml"].(os.FileInfo), - fs["/camel-catalog-quarkus-1.0.0-M2-1.0.10.yaml"].(os.FileInfo), + fs["/camel-catalog-1.0.11-SNAPSHOT-main.yaml"].(os.FileInfo), + fs["/camel-catalog-1.0.11-SNAPSHOT-quarkus.yaml"].(os.FileInfo), fs["/cr-example.yaml"].(os.FileInfo), fs["/crd-build.yaml"].(os.FileInfo), fs["/crd-camel-catalog.yaml"].(os.FileInfo), @@ -354,7 +323,6 @@ var assets = func() http.FileSystem { fs["/operator-role-olm.yaml"].(os.FileInfo), fs["/operator-role-openshift.yaml"].(os.FileInfo), fs["/operator-service-account.yaml"].(os.FileInfo), - fs["/operator.yaml"].(os.FileInfo), fs["/platform-cr.yaml"].(os.FileInfo), fs["/platform-integration-kit-groovy.yaml"].(os.FileInfo), fs["/platform-integration-kit-java.yaml"].(os.FileInfo), diff --git a/pkg/apis/camel/v1/build_types.go b/pkg/apis/camel/v1/build_types.go index c2d2756bca..d27177fb6e 100644 --- a/pkg/apis/camel/v1/build_types.go +++ b/pkg/apis/camel/v1/build_types.go @@ -62,21 +62,19 @@ type KanikoTask struct { // BuilderTask -- type BuilderTask struct { - BaseTask `json:",inline"` - Meta metav1.ObjectMeta `json:"meta,omitempty"` - Image string `json:"image,omitempty"` - BaseImage string `json:"baseImage,omitempty"` - CamelVersion string `json:"camelVersion,omitempty"` - RuntimeVersion string `json:"runtimeVersion,omitempty"` - RuntimeProvider *RuntimeProvider `json:"runtimeProvider,omitempty"` - Sources []SourceSpec `json:"sources,omitempty"` - Resources []ResourceSpec `json:"resources,omitempty"` - Dependencies []string `json:"dependencies,omitempty"` - Steps []string `json:"steps,omitempty"` - Maven MavenSpec `json:"maven,omitempty"` - BuildDir string `json:"buildDir,omitempty"` - Properties map[string]string `json:"properties,omitempty"` - Timeout metav1.Duration `json:"timeout,omitempty"` + BaseTask `json:",inline"` + Meta metav1.ObjectMeta `json:"meta,omitempty"` + Image string `json:"image,omitempty"` + BaseImage string `json:"baseImage,omitempty"` + Runtime RuntimeSpec `json:"runtime,omitempty"` + Sources []SourceSpec `json:"sources,omitempty"` + Resources []ResourceSpec `json:"resources,omitempty"` + Dependencies []string `json:"dependencies,omitempty"` + Steps []string `json:"steps,omitempty"` + Maven MavenSpec `json:"maven,omitempty"` + BuildDir string `json:"buildDir,omitempty"` + Properties map[string]string `json:"properties,omitempty"` + Timeout metav1.Duration `json:"timeout,omitempty"` } // BuildStatus defines the observed state of Build diff --git a/pkg/apis/camel/v1/camelcatalog_types.go b/pkg/apis/camel/v1/camelcatalog_types.go index 27b38447da..6c483bcb65 100644 --- a/pkg/apis/camel/v1/camelcatalog_types.go +++ b/pkg/apis/camel/v1/camelcatalog_types.go @@ -54,10 +54,8 @@ type CamelArtifact struct { // CamelCatalogSpec defines the desired state of CamelCatalog type CamelCatalogSpec struct { - Version string `json:"version" yaml:"version"` - RuntimeVersion string `json:"runtimeVersion" yaml:"runtimeVersion"` - RuntimeProvider *RuntimeProvider `json:"runtimeProvider,omitempty" yaml:"runtimeProvider"` - Artifacts map[string]CamelArtifact `json:"artifacts" yaml:"artifacts"` + Runtime RuntimeSpec `json:"runtime" yaml:"runtime"` + Artifacts map[string]CamelArtifact `json:"artifacts" yaml:"artifacts"` } // CamelCatalogStatus defines the observed state of CamelCatalog @@ -85,9 +83,17 @@ type CamelCatalogList struct { Items []CamelCatalog `json:"items"` } +// RuntimeProvider -- +type RuntimeProvider string + const ( // CamelCatalogKind -- CamelCatalogKind string = "CamelCatalog" + + // RuntimeProviderMain -- + RuntimeProviderMain RuntimeProvider = "main" + // RuntimeProviderQuarkus -- + RuntimeProviderQuarkus RuntimeProvider = "quarkus" ) func init() { diff --git a/pkg/apis/camel/v1/common_types.go b/pkg/apis/camel/v1/common_types.go index 661a57f8ab..6bbe84249d 100644 --- a/pkg/apis/camel/v1/common_types.go +++ b/pkg/apis/camel/v1/common_types.go @@ -22,17 +22,6 @@ import ( metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" ) -// RuntimeProvider -- -type RuntimeProvider struct { - Quarkus *QuarkusRuntimeProvider `json:"quarkus,omitempty"` -} - -// QuarkusRuntimeProvider -- -type QuarkusRuntimeProvider struct { - CamelQuarkusVersion string `json:"camelQuarkusVersion,omitempty" yaml:"camelQuarkusVersion"` - QuarkusVersion string `json:"quarkusVersion,omitempty" yaml:"quarkusVersion"` -} - // ConfigurationSpec -- type ConfigurationSpec struct { Type string `json:"type"` @@ -90,6 +79,13 @@ type ValueSource struct { SecretKeyRef *corev1.SecretKeySelector `json:"secretKeyRef,omitempty"` } +// RuntimeSpec -- +type RuntimeSpec struct { + Version string `json:"version"` + Provider RuntimeProvider `json:"provider"` + Metadata map[string]string `json:"metadata,omitempty"` +} + const ( // ServiceTypeUser -- ServiceTypeUser = "user" diff --git a/pkg/apis/camel/v1/integration_types.go b/pkg/apis/camel/v1/integration_types.go index e62710c525..a818587126 100644 --- a/pkg/apis/camel/v1/integration_types.go +++ b/pkg/apis/camel/v1/integration_types.go @@ -50,9 +50,8 @@ type IntegrationStatus struct { GeneratedSources []SourceSpec `json:"generatedSources,omitempty"` GeneratedResources []ResourceSpec `json:"generatedResources,omitempty"` Failure *Failure `json:"failure,omitempty"` - CamelVersion string `json:"camelVersion,omitempty"` RuntimeVersion string `json:"runtimeVersion,omitempty"` - RuntimeProvider *RuntimeProvider `json:"runtimeProvider,omitempty"` + RuntimeProvider RuntimeProvider `json:"runtimeProvider,omitempty"` Configuration []ConfigurationSpec `json:"configuration,omitempty"` Conditions []IntegrationCondition `json:"conditions,omitempty"` Version string `json:"version,omitempty"` diff --git a/pkg/apis/camel/v1/integrationkit_types.go b/pkg/apis/camel/v1/integrationkit_types.go index e80cc89f1f..767cd6f4e9 100644 --- a/pkg/apis/camel/v1/integrationkit_types.go +++ b/pkg/apis/camel/v1/integrationkit_types.go @@ -42,9 +42,8 @@ type IntegrationKitStatus struct { Digest string `json:"digest,omitempty"` Artifacts []Artifact `json:"artifacts,omitempty"` Failure *Failure `json:"failure,omitempty"` - CamelVersion string `json:"camelVersion,omitempty"` RuntimeVersion string `json:"runtimeVersion,omitempty"` - RuntimeProvider *RuntimeProvider `json:"runtimeProvider,omitempty"` + RuntimeProvider RuntimeProvider `json:"runtimeProvider,omitempty"` Platform string `json:"platform,omitempty"` Conditions []IntegrationKitCondition `json:"conditions,omitempty"` Version string `json:"version,omitempty"` diff --git a/pkg/apis/camel/v1/integrationplatform_types.go b/pkg/apis/camel/v1/integrationplatform_types.go index f0e0212165..dcda3fa41f 100644 --- a/pkg/apis/camel/v1/integrationplatform_types.go +++ b/pkg/apis/camel/v1/integrationplatform_types.go @@ -104,9 +104,8 @@ var AllTraitProfiles = []TraitProfile{TraitProfileKubernetes, TraitProfileKnativ type IntegrationPlatformBuildSpec struct { BuildStrategy IntegrationPlatformBuildStrategy `json:"buildStrategy,omitempty"` PublishStrategy IntegrationPlatformBuildPublishStrategy `json:"publishStrategy,omitempty"` - CamelVersion string `json:"camelVersion,omitempty"` RuntimeVersion string `json:"runtimeVersion,omitempty"` - RuntimeProvider *RuntimeProvider `json:"runtimeProvider,omitempty"` + RuntimeProvider RuntimeProvider `json:"runtimeProvider,omitempty"` BaseImage string `json:"baseImage,omitempty"` Properties map[string]string `json:"properties,omitempty"` Registry IntegrationPlatformRegistrySpec `json:"registry,omitempty"` diff --git a/pkg/apis/camel/v1/zz_generated.deepcopy.go b/pkg/apis/camel/v1/zz_generated.deepcopy.go index 0427675970..6c22953d69 100644 --- a/pkg/apis/camel/v1/zz_generated.deepcopy.go +++ b/pkg/apis/camel/v1/zz_generated.deepcopy.go @@ -202,11 +202,7 @@ func (in *BuilderTask) DeepCopyInto(out *BuilderTask) { *out = *in in.BaseTask.DeepCopyInto(&out.BaseTask) in.Meta.DeepCopyInto(&out.Meta) - if in.RuntimeProvider != nil { - in, out := &in.RuntimeProvider, &out.RuntimeProvider - *out = new(RuntimeProvider) - (*in).DeepCopyInto(*out) - } + in.Runtime.DeepCopyInto(&out.Runtime) if in.Sources != nil { in, out := &in.Sources, &out.Sources *out = make([]SourceSpec, len(*in)) @@ -394,11 +390,7 @@ func (in *CamelCatalogList) DeepCopyObject() runtime.Object { // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *CamelCatalogSpec) DeepCopyInto(out *CamelCatalogSpec) { *out = *in - if in.RuntimeProvider != nil { - in, out := &in.RuntimeProvider, &out.RuntimeProvider - *out = new(RuntimeProvider) - (*in).DeepCopyInto(*out) - } + in.Runtime.DeepCopyInto(&out.Runtime) if in.Artifacts != nil { in, out := &in.Artifacts, &out.Artifacts *out = make(map[string]CamelArtifact, len(*in)) @@ -723,11 +715,6 @@ func (in *IntegrationKitStatus) DeepCopyInto(out *IntegrationKitStatus) { *out = new(Failure) (*in).DeepCopyInto(*out) } - if in.RuntimeProvider != nil { - in, out := &in.RuntimeProvider, &out.RuntimeProvider - *out = new(RuntimeProvider) - (*in).DeepCopyInto(*out) - } if in.Conditions != nil { in, out := &in.Conditions, &out.Conditions *out = make([]IntegrationKitCondition, len(*in)) @@ -812,11 +799,6 @@ func (in *IntegrationPlatform) DeepCopyObject() runtime.Object { // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *IntegrationPlatformBuildSpec) DeepCopyInto(out *IntegrationPlatformBuildSpec) { *out = *in - if in.RuntimeProvider != nil { - in, out := &in.RuntimeProvider, &out.RuntimeProvider - *out = new(RuntimeProvider) - (*in).DeepCopyInto(*out) - } if in.Properties != nil { in, out := &in.Properties, &out.Properties *out = make(map[string]string, len(*in)) @@ -1067,11 +1049,6 @@ func (in *IntegrationStatus) DeepCopyInto(out *IntegrationStatus) { *out = new(Failure) (*in).DeepCopyInto(*out) } - if in.RuntimeProvider != nil { - in, out := &in.RuntimeProvider, &out.RuntimeProvider - *out = new(RuntimeProvider) - (*in).DeepCopyInto(*out) - } if in.Configuration != nil { in, out := &in.Configuration, &out.Configuration *out = make([]ConfigurationSpec, len(*in)) @@ -1141,22 +1118,6 @@ func (in *MavenSpec) DeepCopy() *MavenSpec { return out } -// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. -func (in *QuarkusRuntimeProvider) DeepCopyInto(out *QuarkusRuntimeProvider) { - *out = *in - return -} - -// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new QuarkusRuntimeProvider. -func (in *QuarkusRuntimeProvider) DeepCopy() *QuarkusRuntimeProvider { - if in == nil { - return nil - } - out := new(QuarkusRuntimeProvider) - in.DeepCopyInto(out) - return out -} - // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ResourceSpec) DeepCopyInto(out *ResourceSpec) { *out = *in @@ -1175,22 +1136,24 @@ func (in *ResourceSpec) DeepCopy() *ResourceSpec { } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. -func (in *RuntimeProvider) DeepCopyInto(out *RuntimeProvider) { +func (in *RuntimeSpec) DeepCopyInto(out *RuntimeSpec) { *out = *in - if in.Quarkus != nil { - in, out := &in.Quarkus, &out.Quarkus - *out = new(QuarkusRuntimeProvider) - **out = **in + if in.Metadata != nil { + in, out := &in.Metadata, &out.Metadata + *out = make(map[string]string, len(*in)) + for key, val := range *in { + (*out)[key] = val + } } return } -// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RuntimeProvider. -func (in *RuntimeProvider) DeepCopy() *RuntimeProvider { +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RuntimeSpec. +func (in *RuntimeSpec) DeepCopy() *RuntimeSpec { if in == nil { return nil } - out := new(RuntimeProvider) + out := new(RuntimeSpec) in.DeepCopyInto(out) return out } diff --git a/pkg/builder/builder_steps.go b/pkg/builder/builder_steps.go index 0edccf888e..5cb0d30fff 100644 --- a/pkg/builder/builder_steps.go +++ b/pkg/builder/builder_steps.go @@ -24,13 +24,9 @@ import ( "reflect" "strings" - "k8s.io/apimachinery/pkg/labels" - "k8s.io/apimachinery/pkg/selection" - k8sclient "sigs.k8s.io/controller-runtime/pkg/client" v1 "github.com/apache/camel-k/pkg/apis/camel/v1" - "github.com/apache/camel-k/pkg/util/controller" "github.com/apache/camel-k/pkg/util/kubernetes" "github.com/apache/camel-k/pkg/util/maven" "github.com/apache/camel-k/pkg/util/tar" @@ -348,16 +344,11 @@ func packager(ctx *Context, selector artifactsSelector) error { func listPublishedImages(context *Context) ([]publishedImage, error) { options := []k8sclient.ListOption{ k8sclient.InNamespace(context.Namespace), - } - - if context.Catalog.RuntimeProvider != nil && context.Catalog.RuntimeProvider.Quarkus != nil { - options = append(options, k8sclient.MatchingLabels{ - "camel.apache.org/runtime.provider": "quarkus", - }) - } else { - provider, _ := labels.NewRequirement("camel.apache.org/runtime.provider", selection.DoesNotExist, []string{}) - selector := labels.NewSelector().Add(*provider) - options = append(options, controller.MatchingSelector{Selector: selector}) + // TODO: we can probably use labels to filter kits but we need to apply + // them consistently + //k8sclient.MatchingLabels{ + // "camel.apache.org/runtime.provider": string(context.Catalog.Runtime.Provider), + //}, } list := v1.NewIntegrationKitList() @@ -373,23 +364,12 @@ func listPublishedImages(context *Context) ([]publishedImage, error) { if kit.Status.Phase != v1.IntegrationKitPhaseReady { continue } - if kit.Status.CamelVersion != context.Catalog.Version { + if kit.Status.RuntimeVersion != context.Catalog.Runtime.Version { continue } - if kit.Status.RuntimeVersion != context.Catalog.RuntimeVersion { + if kit.Status.RuntimeProvider != context.Catalog.Runtime.Provider { continue } - - // TODO: should ideally be made generic from the runtime providers - if kit.Status.RuntimeProvider == nil && context.Catalog.RuntimeProvider != nil || - kit.Status.RuntimeProvider != nil && context.Catalog.RuntimeProvider == nil || - kit.Status.RuntimeProvider != nil && context.Catalog.RuntimeProvider != nil && - (kit.Status.RuntimeProvider.Quarkus != nil && context.Catalog.RuntimeProvider.Quarkus == nil || - kit.Status.RuntimeProvider.Quarkus == nil && context.Catalog.RuntimeProvider.Quarkus != nil || - *kit.Status.RuntimeProvider.Quarkus != *context.Catalog.RuntimeProvider.Quarkus) { - continue - } - if kit.Status.Phase != v1.IntegrationKitPhaseReady || kit.Labels == nil { continue } diff --git a/pkg/builder/builder_steps_test.go b/pkg/builder/builder_steps_test.go index a60744d49d..386c86c5c0 100644 --- a/pkg/builder/builder_steps_test.go +++ b/pkg/builder/builder_steps_test.go @@ -77,8 +77,7 @@ func TestMavenSettingsFromConfigMap(t *testing.T) { Client: c, Namespace: "ns", Build: v1.BuilderTask{ - RuntimeVersion: catalog.RuntimeVersion, - CamelVersion: catalog.Version, + Runtime: catalog.Runtime, Maven: v1.MavenSpec{ Settings: v1.ValueSource{ ConfigMapKeyRef: &corev1.ConfigMapKeySelector{ @@ -125,8 +124,7 @@ func TestMavenSettingsFromSecret(t *testing.T) { Client: c, Namespace: "ns", Build: v1.BuilderTask{ - RuntimeVersion: catalog.RuntimeVersion, - CamelVersion: catalog.Version, + Runtime: catalog.Runtime, Maven: v1.MavenSpec{ Settings: v1.ValueSource{ SecretKeyRef: &corev1.SecretKeySelector{ @@ -164,10 +162,10 @@ func TestListPublishedImages(t *testing.T) { }, }, Status: v1.IntegrationKitStatus{ - Phase: v1.IntegrationKitPhaseError, - Image: "image-1", - CamelVersion: catalog.Version, - RuntimeVersion: catalog.RuntimeVersion, + Phase: v1.IntegrationKitPhaseError, + Image: "image-1", + RuntimeVersion: catalog.Runtime.Version, + RuntimeProvider: catalog.Runtime.Provider, }, }, &v1.IntegrationKit{ @@ -183,10 +181,10 @@ func TestListPublishedImages(t *testing.T) { }, }, Status: v1.IntegrationKitStatus{ - Phase: v1.IntegrationKitPhaseReady, - Image: "image-2", - CamelVersion: catalog.Version, - RuntimeVersion: catalog.RuntimeVersion, + Phase: v1.IntegrationKitPhaseReady, + Image: "image-2", + RuntimeVersion: catalog.Runtime.Version, + RuntimeProvider: catalog.Runtime.Provider, }, }, ) diff --git a/pkg/builder/builder_test.go b/pkg/builder/builder_test.go index be28d2cadc..a911277826 100644 --- a/pkg/builder/builder_test.go +++ b/pkg/builder/builder_test.go @@ -58,8 +58,7 @@ func TestFailure(t *testing.T) { steps.Step1, steps.Step2, ), - RuntimeVersion: catalog.RuntimeVersion, - CamelVersion: catalog.Version, + Runtime: catalog.Runtime, } status := b.Run(r) diff --git a/pkg/builder/runtime/main.go b/pkg/builder/runtime/main.go index 6c9321ba61..cf75eaf319 100644 --- a/pkg/builder/runtime/main.go +++ b/pkg/builder/runtime/main.go @@ -41,14 +41,15 @@ var MainSteps = []builder.Step{ } func loadCamelCatalog(ctx *builder.Context) error { - catalog, err := camel.LoadCatalog(ctx.C, ctx.Client, ctx.Build.Meta.Namespace, ctx.Build.CamelVersion, ctx.Build.RuntimeVersion, nil) + catalog, err := camel.LoadCatalog(ctx.C, ctx.Client, ctx.Build.Meta.Namespace, ctx.Build.Runtime) if err != nil { return err } if catalog == nil { - return fmt.Errorf("unable to find catalog matching version requirement: camel=%s, runtime=%s", - ctx.Build.CamelVersion, ctx.Build.RuntimeVersion) + return fmt.Errorf("unable to find catalog matching version requirement: runtime=%s, provider=%s", + ctx.Build.Runtime.Version, + ctx.Build.Runtime.Provider) } ctx.Catalog = catalog @@ -59,21 +60,20 @@ func loadCamelCatalog(ctx *builder.Context) error { func generateProject(ctx *builder.Context) error { p := maven.NewProjectWithGAV("org.apache.camel.k.integration", "camel-k-integration", defaults.Version) p.Properties = ctx.Build.Properties - p.DependencyManagement = &maven.DependencyManagement{Dependencies: make([]maven.Dependency, 0)} p.Dependencies = make([]maven.Dependency, 0) + p.DependencyManagement = &maven.DependencyManagement{Dependencies: make([]maven.Dependency, 0)} - // DependencyManagement p.DependencyManagement.Dependencies = append(p.DependencyManagement.Dependencies, maven.Dependency{ GroupID: "org.apache.camel", ArtifactID: "camel-bom", - Version: ctx.Build.CamelVersion, + Version: ctx.Build.Runtime.Metadata["camel.version"], Type: "pom", Scope: "import", }) p.DependencyManagement.Dependencies = append(p.DependencyManagement.Dependencies, maven.Dependency{ GroupID: "org.apache.camel.k", ArtifactID: "camel-k-runtime-bom", - Version: ctx.Build.RuntimeVersion, + Version: ctx.Build.Runtime.Version, Type: "pom", Scope: "import", }) @@ -88,7 +88,7 @@ func computeDependencies(ctx *builder.Context) error { mc.SettingsContent = ctx.Maven.SettingsData mc.LocalRepository = ctx.Build.Maven.LocalRepository mc.Timeout = ctx.Build.Maven.GetTimeout().Duration - mc.AddArgumentf("org.apache.camel.k:camel-k-maven-plugin:%s:generate-dependency-list", ctx.Catalog.RuntimeVersion) + mc.AddArgumentf("org.apache.camel.k:camel-k-maven-plugin:%s:generate-dependency-list", ctx.Catalog.Runtime.Version) if err := maven.Run(mc); err != nil { return errors.Wrap(err, "failure while determining classpath") diff --git a/pkg/builder/runtime/main_test.go b/pkg/builder/runtime/main_test.go index d0f6a2eb41..4ff2e31789 100644 --- a/pkg/builder/runtime/main_test.go +++ b/pkg/builder/runtime/main_test.go @@ -35,8 +35,7 @@ func TestNewProject(t *testing.T) { ctx := builder.Context{ Catalog: catalog, Build: v1.BuilderTask{ - CamelVersion: catalog.Version, - RuntimeVersion: catalog.RuntimeVersion, + Runtime: catalog.Runtime, Dependencies: []string{ "camel-k:runtime-main", "bom:my.company/my-artifact-1/1.0.0", @@ -57,14 +56,14 @@ func TestNewProject(t *testing.T) { { GroupID: "org.apache.camel", ArtifactID: "camel-bom", - Version: ctx.Catalog.Version, + Version: ctx.Catalog.Runtime.Metadata["camel.version"], Type: "pom", Scope: "import", }, { GroupID: "org.apache.camel.k", ArtifactID: "camel-k-runtime-bom", - Version: catalog.RuntimeVersion, + Version: ctx.Catalog.Runtime.Version, Type: "pom", Scope: "import", }, @@ -93,8 +92,7 @@ func TestGenerateJvmProject(t *testing.T) { ctx := builder.Context{ Catalog: catalog, Build: v1.BuilderTask{ - CamelVersion: catalog.Version, - RuntimeVersion: catalog.RuntimeVersion, + Runtime: catalog.Runtime, Dependencies: []string{ "camel-k:runtime-main", }, @@ -113,14 +111,14 @@ func TestGenerateJvmProject(t *testing.T) { { GroupID: "org.apache.camel", ArtifactID: "camel-bom", - Version: catalog.Version, + Version: ctx.Catalog.Runtime.Metadata["camel.version"], Type: "pom", Scope: "import", }, { GroupID: "org.apache.camel.k", ArtifactID: "camel-k-runtime-bom", - Version: catalog.RuntimeVersion, + Version: ctx.Catalog.Runtime.Version, Type: "pom", Scope: "import", }, @@ -132,8 +130,6 @@ func TestGenerateJvmProject(t *testing.T) { ctx.Maven.Project.Dependencies, []maven.Dependency{ {GroupID: "org.apache.camel.k", ArtifactID: "camel-k-runtime-main"}, - {GroupID: "org.apache.camel", ArtifactID: "camel-core-engine"}, - {GroupID: "org.apache.camel", ArtifactID: "camel-main"}, }, ) } @@ -145,8 +141,7 @@ func TestGenerateGroovyProject(t *testing.T) { ctx := builder.Context{ Catalog: catalog, Build: v1.BuilderTask{ - CamelVersion: catalog.Version, - RuntimeVersion: catalog.RuntimeVersion, + Runtime: catalog.Runtime, Dependencies: []string{ "camel-k:runtime-main", "camel-k:loader-groovy", @@ -166,14 +161,14 @@ func TestGenerateGroovyProject(t *testing.T) { { GroupID: "org.apache.camel", ArtifactID: "camel-bom", - Version: catalog.Version, + Version: ctx.Catalog.Runtime.Metadata["camel.version"], Type: "pom", Scope: "import", }, { GroupID: "org.apache.camel.k", ArtifactID: "camel-k-runtime-bom", - Version: catalog.RuntimeVersion, + Version: ctx.Catalog.Runtime.Version, Type: "pom", Scope: "import", }, @@ -186,10 +181,6 @@ func TestGenerateGroovyProject(t *testing.T) { []maven.Dependency{ {GroupID: "org.apache.camel.k", ArtifactID: "camel-k-runtime-main"}, {GroupID: "org.apache.camel.k", ArtifactID: "camel-k-loader-groovy"}, - {GroupID: "org.apache.camel", ArtifactID: "camel-core-engine"}, - {GroupID: "org.apache.camel", ArtifactID: "camel-main"}, - {GroupID: "org.apache.camel", ArtifactID: "camel-groovy"}, - {GroupID: "org.apache.camel", ArtifactID: "camel-endpointdsl"}, }, ) } @@ -201,8 +192,7 @@ func TestSanitizeDependencies(t *testing.T) { ctx := builder.Context{ Catalog: catalog, Build: v1.BuilderTask{ - CamelVersion: catalog.Version, - RuntimeVersion: catalog.RuntimeVersion, + Runtime: catalog.Runtime, Dependencies: []string{ "camel:undertow", "mvn:org.apache.camel/camel-core/2.18.0", diff --git a/pkg/builder/runtime/quarkus.go b/pkg/builder/runtime/quarkus.go index 216f2c7fc8..6287f57ae0 100644 --- a/pkg/builder/runtime/quarkus.go +++ b/pkg/builder/runtime/quarkus.go @@ -42,14 +42,15 @@ var QuarkusSteps = []builder.Step{ } func loadCamelQuarkusCatalog(ctx *builder.Context) error { - catalog, err := camel.LoadCatalog(ctx.C, ctx.Client, ctx.Build.Meta.Namespace, ctx.Build.CamelVersion, ctx.Build.RuntimeVersion, ctx.Build.RuntimeProvider.Quarkus) + catalog, err := camel.LoadCatalog(ctx.C, ctx.Client, ctx.Build.Meta.Namespace, ctx.Build.Runtime) if err != nil { return err } if catalog == nil { - return fmt.Errorf("unable to find catalog matching version requirement: camel=%s, runtime=%s, camel-quarkus=%s, quarkus=%s", - ctx.Build.CamelVersion, ctx.Build.RuntimeVersion, ctx.Build.RuntimeProvider.Quarkus.CamelQuarkusVersion, ctx.Build.RuntimeProvider.Quarkus.QuarkusVersion) + return fmt.Errorf("unable to find catalog matching version requirement: runtime=%s, provider=%s", + ctx.Build.Runtime.Version, + ctx.Build.Runtime.Provider) } ctx.Catalog = catalog @@ -79,14 +80,14 @@ func generateQuarkusProject(ctx *builder.Context) error { maven.Dependency{ GroupID: "org.apache.camel.quarkus", ArtifactID: "camel-quarkus-bom", - Version: ctx.Build.RuntimeProvider.Quarkus.CamelQuarkusVersion, + Version: ctx.Build.Runtime.Metadata["camel-quarkus.version"], Type: "pom", Scope: "import", }, maven.Dependency{ GroupID: "org.apache.camel.k", ArtifactID: "camel-k-runtime-bom", - Version: ctx.Build.RuntimeVersion, + Version: ctx.Build.Runtime.Version, Type: "pom", Scope: "import", }, @@ -97,7 +98,7 @@ func generateQuarkusProject(ctx *builder.Context) error { maven.Plugin{ GroupID: "io.quarkus", ArtifactID: "quarkus-maven-plugin", - Version: ctx.Build.RuntimeProvider.Quarkus.QuarkusVersion, + Version: ctx.Build.Runtime.Metadata["quarkus.version"], Executions: []maven.Execution{ { Goals: []string{ @@ -127,7 +128,7 @@ func computeQuarkusDependencies(ctx *builder.Context) error { // Retrieve the runtime dependencies mc.AdditionalArguments = nil - mc.AddArgumentf("org.apache.camel.k:camel-k-maven-plugin:%s:generate-dependency-list", ctx.Catalog.RuntimeVersion) + mc.AddArgumentf("org.apache.camel.k:camel-k-maven-plugin:%s:generate-dependency-list", ctx.Catalog.Runtime.Version) if err := maven.Run(mc); err != nil { return errors.Wrap(err, "failure while determining classpath") } diff --git a/pkg/cmd/describe_integration.go b/pkg/cmd/describe_integration.go index 5438d94816..c7396e450c 100644 --- a/pkg/cmd/describe_integration.go +++ b/pkg/cmd/describe_integration.go @@ -100,7 +100,7 @@ func (command *describeIntegrationCommandOptions) describeIntegration(i v1.Integ describeObjectMeta(w, i.ObjectMeta) w.Write(0, "Phase:\t%s\n", i.Status.Phase) - w.Write(0, "Camel Version:\t%s\n", i.Status.CamelVersion) + w.Write(0, "Runtime Version:\t%s\n", i.Status.RuntimeVersion) w.Write(0, "Kit:\t%s\n", i.Status.Kit) w.Write(0, "Image:\t%s\n", i.Status.Image) w.Write(0, "Version:\t%s\n", i.Status.Version) diff --git a/pkg/cmd/describe_kit.go b/pkg/cmd/describe_kit.go index d0e4c19bac..8d7fb186d3 100644 --- a/pkg/cmd/describe_kit.go +++ b/pkg/cmd/describe_kit.go @@ -93,7 +93,7 @@ func (command *describeKitCommandOptions) describeIntegrationKit(kit v1.Integrat describeObjectMeta(w, kit.ObjectMeta) w.Write(0, "Phase:\t%s\n", kit.Status.Phase) - w.Write(0, "Camel Version:\t%s\n", kit.Status.CamelVersion) + w.Write(0, "Runtime Version:\t%s\n", kit.Status.RuntimeVersion) w.Write(0, "Image:\t%s\n", kit.Status.Image) w.Write(0, "Version:\t%s\n", kit.Status.Version) diff --git a/pkg/cmd/describe_platform.go b/pkg/cmd/describe_platform.go index 5021422d76..4bee518214 100644 --- a/pkg/cmd/describe_platform.go +++ b/pkg/cmd/describe_platform.go @@ -93,7 +93,7 @@ func (command *describePlatformCommandOptions) describeIntegrationPlatform(platf w.Write(0, "Phase:\t%s\n", platform.Status.Phase) w.Write(0, "Version:\t%s\n", platform.Status.Version) w.Write(0, "Base Image:\t%s\n", platform.GetActualValue(getPlatformBaseImage)) - w.Write(0, "Camel Version:\t%s\n", platform.GetActualValue(getPlatformCamelVersion)) + w.Write(0, "Runtime Version:\t%s\n", platform.GetActualValue(getPlatformRuntimeVersion)) w.Write(0, "Local Repository:\t%s\n", platform.GetActualValue(getPlatformMavenLocalRepository)) w.Write(0, "Publish Strategy:\t%s\n", platform.GetActualValue(getPlatformPublishStrategy)) @@ -115,8 +115,8 @@ func getPlatformBaseImage(spec v1.IntegrationPlatformSpec) string { return spec.Build.BaseImage } -func getPlatformCamelVersion(spec v1.IntegrationPlatformSpec) string { - return spec.Build.CamelVersion +func getPlatformRuntimeVersion(spec v1.IntegrationPlatformSpec) string { + return spec.Build.RuntimeVersion } func getPlatformMavenLocalRepository(spec v1.IntegrationPlatformSpec) string { diff --git a/pkg/cmd/install.go b/pkg/cmd/install.go index b35530e8a7..f9a3481c74 100644 --- a/pkg/cmd/install.go +++ b/pkg/cmd/install.go @@ -125,7 +125,6 @@ type installCmdOptions struct { Save bool `mapstructure:"save"` ClusterType string `mapstructure:"cluster-type"` OutputFormat string `mapstructure:"output"` - CamelVersion string `mapstructure:"camel-version"` RuntimeVersion string `mapstructure:"runtime-version"` BaseImage string `mapstructure:"base-image"` OperatorImage string `mapstructure:"operator-image"` @@ -225,9 +224,6 @@ func (o *installCmdOptions) install(cobraCmd *cobra.Command, _ []string) error { if o.LocalRepository != "" { platform.Spec.Build.Maven.LocalRepository = o.LocalRepository } - if o.CamelVersion != "" { - platform.Spec.Build.CamelVersion = o.CamelVersion - } if o.RuntimeVersion != "" { platform.Spec.Build.RuntimeVersion = o.RuntimeVersion } diff --git a/pkg/controller/integration/build_kit.go b/pkg/controller/integration/build_kit.go index e8f7078536..2dc84bae99 100644 --- a/pkg/controller/integration/build_kit.go +++ b/pkg/controller/integration/build_kit.go @@ -111,10 +111,8 @@ func (action *buildKitAction) Handle(ctx context.Context, integration *v1.Integr "camel.apache.org/kit.created.by.kind": v1.IntegrationKind, "camel.apache.org/kit.created.by.name": integration.Name, "camel.apache.org/kit.created.by.version": integration.ResourceVersion, - } - - if integration.Status.RuntimeProvider != nil && integration.Status.RuntimeProvider.Quarkus != nil { - platformKit.Labels["camel.apache.org/runtime.provider"] = "quarkus" + "camel.apache.org/runtime.version": string(integration.Status.RuntimeVersion), + "camel.apache.org/runtime.provider": string(integration.Status.RuntimeProvider), } // Set the kit to have the same characteristics as the integrations diff --git a/pkg/controller/integration/util.go b/pkg/controller/integration/util.go index bcdbd482fc..d0c3cac9e7 100644 --- a/pkg/controller/integration/util.go +++ b/pkg/controller/integration/util.go @@ -22,14 +22,10 @@ import ( "github.com/pkg/errors" - "k8s.io/apimachinery/pkg/labels" - "k8s.io/apimachinery/pkg/selection" - k8sclient "sigs.k8s.io/controller-runtime/pkg/client" v1 "github.com/apache/camel-k/pkg/apis/camel/v1" "github.com/apache/camel-k/pkg/util" - "github.com/apache/camel-k/pkg/util/controller" "github.com/apache/camel-k/pkg/util/kubernetes" ) @@ -51,16 +47,11 @@ func LookupKitForIntegration(ctx context.Context, c k8sclient.Reader, integratio options := []k8sclient.ListOption{ k8sclient.InNamespace(integration.Namespace), - } - - if integration.Status.RuntimeProvider != nil && integration.Status.RuntimeProvider.Quarkus != nil { - options = append(options, k8sclient.MatchingLabels{ - "camel.apache.org/runtime.provider": "quarkus", - }) - } else { - provider, _ := labels.NewRequirement("camel.apache.org/runtime.provider", selection.DoesNotExist, []string{}) - selector := labels.NewSelector().Add(*provider) - options = append(options, controller.MatchingSelector{Selector: selector}) + // TODO: we can probably use labels to filter kits but we need to apply + // them consistently + //k8sclient.MatchingLabels{ + // "camel.apache.org/runtime.provider": string(integration.Status.RuntimeProvider), + //}, } kits := v1.NewIntegrationKitList() @@ -74,23 +65,13 @@ func LookupKitForIntegration(ctx context.Context, c k8sclient.Reader, integratio if kit.Status.Phase == v1.IntegrationKitPhaseError { continue } - if kit.Status.CamelVersion != integration.Status.CamelVersion { - continue - } if kit.Status.RuntimeVersion != integration.Status.RuntimeVersion { continue } - if kit.Status.Version != integration.Status.Version { + if kit.Status.RuntimeProvider != integration.Status.RuntimeProvider { continue } - - // TODO: should ideally be made generic from the runtime providers - if integration.Status.RuntimeProvider == nil && kit.Status.RuntimeProvider != nil || - integration.Status.RuntimeProvider != nil && kit.Status.RuntimeProvider == nil || - integration.Status.RuntimeProvider != nil && kit.Status.RuntimeProvider != nil && - (integration.Status.RuntimeProvider.Quarkus != nil && kit.Status.RuntimeProvider.Quarkus == nil || - integration.Status.RuntimeProvider.Quarkus == nil && kit.Status.RuntimeProvider.Quarkus != nil || - *integration.Status.RuntimeProvider.Quarkus != *kit.Status.RuntimeProvider.Quarkus) { + if kit.Status.Version != integration.Status.Version { continue } diff --git a/pkg/platform/defaults.go b/pkg/platform/defaults.go index ca8d7c72cc..28cd001687 100644 --- a/pkg/platform/defaults.go +++ b/pkg/platform/defaults.go @@ -93,9 +93,6 @@ func ConfigureDefaults(ctx context.Context, c client.Client, p *v1.IntegrationPl } func setPlatformDefaults(ctx context.Context, c client.Client, p *v1.IntegrationPlatform, verbose bool) error { - if p.Status.Build.CamelVersion == "" { - p.Status.Build.CamelVersion = defaults.DefaultCamelVersion - } if p.Status.Build.RuntimeVersion == "" { p.Status.Build.RuntimeVersion = defaults.DefaultRuntimeVersion } @@ -183,7 +180,6 @@ func setPlatformDefaults(ctx context.Context, c client.Client, p *v1.Integration } if verbose { - log.Log.Infof("CamelVersion set to %s", p.Status.Build.CamelVersion) log.Log.Infof("RuntimeVersion set to %s", p.Status.Build.RuntimeVersion) log.Log.Infof("BaseImage set to %s", p.Status.Build.BaseImage) log.Log.Infof("LocalRepository set to %s", p.Status.Build.Maven.LocalRepository) diff --git a/pkg/trait/builder.go b/pkg/trait/builder.go index 62ac80d2c0..b6c38b9a66 100644 --- a/pkg/trait/builder.go +++ b/pkg/trait/builder.go @@ -162,11 +162,9 @@ func (t *builderTrait) builderTask(e *Environment) *v1.BuilderTask { BaseTask: v1.BaseTask{ Name: "builder", }, - Meta: e.IntegrationKit.ObjectMeta, - BaseImage: e.Platform.Status.Build.BaseImage, - CamelVersion: e.CamelCatalog.Version, - RuntimeVersion: e.CamelCatalog.RuntimeVersion, - RuntimeProvider: e.CamelCatalog.RuntimeProvider, + Meta: e.IntegrationKit.ObjectMeta, + BaseImage: e.Platform.Status.Build.BaseImage, + Runtime: e.CamelCatalog.Runtime, //Sources: e.Integration.Spec.Sources, //Resources: e.Integration.Spec.Resources, Dependencies: e.IntegrationKit.Spec.Dependencies, diff --git a/pkg/trait/builder_test.go b/pkg/trait/builder_test.go index 22e7849062..acd8bac81f 100644 --- a/pkg/trait/builder_test.go +++ b/pkg/trait/builder_test.go @@ -150,7 +150,8 @@ func createBuilderTestEnv(cluster v1.IntegrationPlatformCluster, strategy v1.Int Build: v1.IntegrationPlatformBuildSpec{ PublishStrategy: strategy, Registry: v1.IntegrationPlatformRegistrySpec{Address: "registry"}, - CamelVersion: defaults.DefaultCamelVersion, + RuntimeVersion: defaults.DefaultRuntimeVersion, + RuntimeProvider: v1.RuntimeProviderMain, KanikoBuildCache: &kanikoCache, }, }, diff --git a/pkg/trait/camel.go b/pkg/trait/camel.go index 836cb6c4c7..17c85379d5 100644 --- a/pkg/trait/camel.go +++ b/pkg/trait/camel.go @@ -27,6 +27,7 @@ import ( v1 "github.com/apache/camel-k/pkg/apis/camel/v1" "github.com/apache/camel-k/pkg/util/camel" + "github.com/apache/camel-k/pkg/util/maven" ) // The Camel trait can be used to configure versions of Apache Camel and related libraries. @@ -34,8 +35,6 @@ import ( // +camel-k:trait=camel type camelTrait struct { BaseTrait `property:",squash"` - // The camel version to use for the integration. It overrides the default version set in the Integration Platform. - Version string `property:"version"` // The camel-k-runtime version to use for the integration. It overrides the default version set in the Integration Platform. RuntimeVersion string `property:"runtime-version"` } @@ -55,47 +54,46 @@ func (t *camelTrait) Configure(e *Environment) (bool, error) { } func (t *camelTrait) Apply(e *Environment) error { - cv := t.determineCamelVersion(e) rv := t.determineRuntimeVersion(e) if e.CamelCatalog == nil { - quarkus := e.Catalog.GetTrait("quarkus").(*quarkusTrait) - if quarkus.isEnabled() { - err := quarkus.loadOrCreateCatalog(e, cv, rv) - if err != nil { - return err - } - } else { - err := t.loadOrCreateCatalog(e, cv, rv) - if err != nil { - return err - } + err := t.loadOrCreateCatalog(e, rv) + if err != nil { + return err } } e.RuntimeVersion = rv if e.Integration != nil { - e.Integration.Status.CamelVersion = e.CamelCatalog.Version - e.Integration.Status.RuntimeVersion = e.CamelCatalog.RuntimeVersion - e.Integration.Status.RuntimeProvider = e.CamelCatalog.RuntimeProvider + e.Integration.Status.RuntimeVersion = e.CamelCatalog.Runtime.Version + e.Integration.Status.RuntimeProvider = e.CamelCatalog.Runtime.Provider } if e.IntegrationKit != nil { - e.IntegrationKit.Status.CamelVersion = e.CamelCatalog.Version - e.IntegrationKit.Status.RuntimeVersion = e.CamelCatalog.RuntimeVersion - e.IntegrationKit.Status.RuntimeProvider = e.CamelCatalog.RuntimeProvider + e.IntegrationKit.Status.RuntimeVersion = e.CamelCatalog.Runtime.Version + e.IntegrationKit.Status.RuntimeProvider = e.CamelCatalog.Runtime.Provider } return nil } -func (t *camelTrait) loadOrCreateCatalog(e *Environment, camelVersion string, runtimeVersion string) error { +func (t *camelTrait) loadOrCreateCatalog(e *Environment, runtimeVersion string) error { ns := e.DetermineNamespace() if ns == "" { return errors.New("unable to determine namespace") } - catalog, err := camel.LoadCatalog(e.C, e.Client, ns, camelVersion, runtimeVersion, nil) + runtime := v1.RuntimeSpec{ + Version: runtimeVersion, + Provider: v1.RuntimeProviderMain, + } + + quarkus := e.Catalog.GetTrait("quarkus").(*quarkusTrait) + if quarkus.isEnabled() { + runtime.Provider = v1.RuntimeProviderQuarkus + } + + catalog, err := camel.LoadCatalog(e.C, e.Client, ns, runtime) if err != nil { return err } @@ -104,21 +102,20 @@ func (t *camelTrait) loadOrCreateCatalog(e *Environment, camelVersion string, ru // if the catalog is not found in the cluster, try to create it if // the required versions (camel and runtime) are not expressed as // semver constraints - if exactVersionRegexp.MatchString(camelVersion) && exactVersionRegexp.MatchString(runtimeVersion) { - catalog, err = camel.GenerateCatalog(e.C, e.Client, ns, e.Platform.Status.Build.Maven, camelVersion, runtimeVersion) + if exactVersionRegexp.MatchString(runtimeVersion) { + catalog, err = camel.GenerateCatalog(e.C, e.Client, ns, e.Platform.Status.Build.Maven, runtime, []maven.Dependency{}) if err != nil { return err } // sanitize catalog name - catalogName := "camel-catalog-" + strings.ToLower(camelVersion+"-"+runtimeVersion) + catalogName := "camel-catalog-" + strings.ToLower(runtimeVersion) + "-main" cx := v1.NewCamelCatalogWithSpecs(ns, catalogName, catalog.CamelCatalogSpec) cx.Labels = make(map[string]string) cx.Labels["app"] = "camel-k" - cx.Labels["camel.apache.org/catalog.version"] = camelVersion - cx.Labels["camel.apache.org/catalog.loader.version"] = camelVersion - cx.Labels["camel.apache.org/runtime.version"] = runtimeVersion + cx.Labels["camel.apache.org/runtime.version"] = runtime.Version + cx.Labels["camel.apache.org/runtime.provider"] = string(runtime.Provider) cx.Labels["camel.apache.org/catalog.generated"] = True err = e.Client.Create(e.C, &cx) @@ -129,8 +126,9 @@ func (t *camelTrait) loadOrCreateCatalog(e *Environment, camelVersion string, ru } if catalog == nil { - return fmt.Errorf("unable to find catalog matching version requirement: camel=%s, runtime=%s", - camelVersion, runtimeVersion) + return fmt.Errorf("unable to find catalog matching version requirement: runtime=%s, provider=%s", + runtime.Version, + runtime.Provider) } e.CamelCatalog = catalog @@ -138,19 +136,6 @@ func (t *camelTrait) loadOrCreateCatalog(e *Environment, camelVersion string, ru return nil } -func (t *camelTrait) determineCamelVersion(e *Environment) string { - if t.Version != "" { - return t.Version - } - if e.Integration != nil && e.Integration.Status.CamelVersion != "" { - return e.Integration.Status.CamelVersion - } - if e.IntegrationKit != nil && e.IntegrationKit.Status.CamelVersion != "" { - return e.IntegrationKit.Status.CamelVersion - } - return e.Platform.Status.Build.CamelVersion -} - func (t *camelTrait) determineRuntimeVersion(e *Environment) string { if t.RuntimeVersion != "" { return t.RuntimeVersion diff --git a/pkg/trait/camel_test.go b/pkg/trait/camel_test.go index 8e20b645ea..e97b4d6707 100644 --- a/pkg/trait/camel_test.go +++ b/pkg/trait/camel_test.go @@ -53,20 +53,19 @@ func TestApplyCamelTraitSucceeds(t *testing.T) { err := trait.Apply(environment) assert.Nil(t, err) assert.Equal(t, "0.0.1", environment.RuntimeVersion) - assert.Equal(t, "1.23.0", environment.Integration.Status.CamelVersion) assert.Equal(t, "0.0.1", environment.Integration.Status.RuntimeVersion) - assert.Equal(t, "1.23.0", environment.IntegrationKit.Status.CamelVersion) assert.Equal(t, "0.0.1", environment.IntegrationKit.Status.RuntimeVersion) } func TestApplyCamelTraitWithoutEnvironmentCatalogAndUnmatchableVersionFails(t *testing.T) { trait, environment := createNominalCamelTest() environment.CamelCatalog = nil - environment.Integration.Status.CamelVersion = "Unmatchable version" + environment.Integration.Status.RuntimeVersion = "Unmatchable version" + environment.Integration.Status.RuntimeProvider = v1.RuntimeProviderMain err := trait.Apply(environment) assert.NotNil(t, err) - assert.Equal(t, "unable to find catalog matching version requirement: camel=Unmatchable version, runtime=0.0.1", err.Error()) + assert.Equal(t, "unable to find catalog matching version requirement: runtime=Unmatchable version, provider=main", err.Error()) } func createNominalCamelTest() (*camelTrait, *Environment) { @@ -79,8 +78,10 @@ func createNominalCamelTest() (*camelTrait, *Environment) { environment := &Environment{ CamelCatalog: &camel.RuntimeCatalog{ CamelCatalogSpec: v1.CamelCatalogSpec{ - Version: "1.23.0", - RuntimeVersion: "0.0.1", + Runtime: v1.RuntimeSpec{ + Version: "0.0.1", + Provider: v1.RuntimeProviderMain, + }, }, }, Catalog: NewEnvironmentTestCatalog(), @@ -91,7 +92,6 @@ func createNominalCamelTest() (*camelTrait, *Environment) { Namespace: "namespace", }, Status: v1.IntegrationStatus{ - CamelVersion: "1.23.0", RuntimeVersion: "0.0.1", }, }, diff --git a/pkg/trait/environment.go b/pkg/trait/environment.go index b9d095eaac..28e8420d36 100644 --- a/pkg/trait/environment.go +++ b/pkg/trait/environment.go @@ -59,7 +59,6 @@ func (t *environmentTrait) Configure(e *Environment) (bool, error) { func (t *environmentTrait) Apply(e *Environment) error { envvar.SetVal(&e.EnvVars, envVarCamelKVersion, defaults.Version) envvar.SetVal(&e.EnvVars, envVarCamelKRuntimeVersion, e.RuntimeVersion) - envvar.SetVal(&e.EnvVars, envVarCamelVersion, e.CamelCatalog.Version) if t.ContainerMeta { envvar.SetValFrom(&e.EnvVars, envVarNamespace, "metadata.namespace") diff --git a/pkg/trait/quarkus.go b/pkg/trait/quarkus.go index 50e9c1fe97..484dd5f617 100644 --- a/pkg/trait/quarkus.go +++ b/pkg/trait/quarkus.go @@ -21,18 +21,11 @@ import ( "fmt" "strings" - "github.com/pkg/errors" - - k8serrors "k8s.io/apimachinery/pkg/api/errors" - v1 "github.com/apache/camel-k/pkg/apis/camel/v1" "github.com/apache/camel-k/pkg/builder" "github.com/apache/camel-k/pkg/builder/runtime" "github.com/apache/camel-k/pkg/metadata" "github.com/apache/camel-k/pkg/util" - "github.com/apache/camel-k/pkg/util/camel" - "github.com/apache/camel-k/pkg/util/defaults" - "github.com/apache/camel-k/pkg/util/maven" ) // The Quarkus trait activates the Quarkus runtime. @@ -42,10 +35,6 @@ import ( // +camel-k:trait=quarkus type quarkusTrait struct { BaseTrait `property:",squash"` - // The Quarkus version to use for the integration - QuarkusVersion string `property:"quarkus-version"` - // The Camel-Quarkus version to use for the integration - CamelQuarkusVersion string `property:"camel-quarkus-version"` // The Quarkus runtime type (reserved for future use) Native bool `property:"native"` } @@ -73,77 +62,6 @@ func (t *quarkusTrait) InfluencesKit() bool { return true } -func (t *quarkusTrait) loadOrCreateCatalog(e *Environment, camelVersion string, runtimeVersion string) error { - ns := e.DetermineNamespace() - if ns == "" { - return errors.New("unable to determine namespace") - } - - camelQuarkusVersion := t.determineCamelQuarkusVersion(e) - quarkusVersion := t.determineQuarkusVersion(e) - - catalog, err := camel.LoadCatalog(e.C, e.Client, ns, camelVersion, runtimeVersion, v1.QuarkusRuntimeProvider{ - CamelQuarkusVersion: camelQuarkusVersion, - QuarkusVersion: quarkusVersion, - }) - if err != nil { - return err - } - - if catalog == nil { - // if the catalog is not found in the cluster, try to create it if - // the required versions (camel, runtime and provider) are not expressed as - // semver constraints - if exactVersionRegexp.MatchString(camelVersion) && exactVersionRegexp.MatchString(runtimeVersion) && - exactVersionRegexp.MatchString(camelQuarkusVersion) && exactVersionRegexp.MatchString(quarkusVersion) { - catalog, err = camel.GenerateCatalogWithProvider(e.C, e.Client, ns, e.Platform.Status.Build.Maven, camelVersion, runtimeVersion, - "quarkus", - []maven.Dependency{ - { - GroupID: "org.apache.camel.quarkus", - ArtifactID: "camel-catalog-quarkus", - Version: camelQuarkusVersion, - }, - // This is required to retrieve the Quarkus dependency version - { - GroupID: "org.apache.camel.quarkus", - ArtifactID: "camel-quarkus-core", - Version: camelQuarkusVersion, - }, - }) - if err != nil { - return err - } - - // sanitize catalog name - catalogName := "camel-catalog-quarkus-" + strings.ToLower(camelVersion+"-"+runtimeVersion) - - cx := v1.NewCamelCatalogWithSpecs(ns, catalogName, catalog.CamelCatalogSpec) - cx.Labels = make(map[string]string) - cx.Labels["app"] = "camel-k" - cx.Labels["camel.apache.org/catalog.version"] = camelVersion - cx.Labels["camel.apache.org/catalog.loader.version"] = camelVersion - cx.Labels["camel.apache.org/runtime.version"] = runtimeVersion - cx.Labels["camel.apache.org/runtime.provider"] = "quarkus" - cx.Labels["camel.apache.org/catalog.generated"] = True - - err = e.Client.Create(e.C, &cx) - if err != nil && !k8serrors.IsAlreadyExists(err) { - return err - } - } - } - - if catalog == nil { - return fmt.Errorf("unable to find catalog matching version requirement: camel=%s, runtime=%s, camel-quarkus=%s, quarkus=%s", - camelVersion, runtimeVersion, camelQuarkusVersion, quarkusVersion) - } - - e.CamelCatalog = catalog - - return nil -} - func (t *quarkusTrait) addBuildSteps(task *v1.BuilderTask) { task.Steps = append(task.Steps, builder.StepIDsFor(runtime.QuarkusSteps...)...) } @@ -189,41 +107,3 @@ func (t *quarkusTrait) addRuntimeDependencies(e *Environment) error { func addRuntimeDependency(dependency string, dependencies *[]string) { util.StringSliceUniqueAdd(dependencies, fmt.Sprintf("mvn:org.apache.camel.k/%s", dependency)) } - -func (t *quarkusTrait) determineQuarkusVersion(e *Environment) string { - if t.QuarkusVersion != "" { - return t.QuarkusVersion - } - if e.Integration != nil && e.Integration.Status.RuntimeProvider != nil && e.Integration.Status.RuntimeProvider.Quarkus != nil && - e.Integration.Status.RuntimeProvider.Quarkus.QuarkusVersion != "" { - return e.Integration.Status.RuntimeProvider.Quarkus.QuarkusVersion - } - if e.IntegrationKit != nil && e.IntegrationKit.Status.RuntimeProvider != nil && e.IntegrationKit.Status.RuntimeProvider.Quarkus != nil && - e.IntegrationKit.Status.RuntimeProvider.Quarkus.QuarkusVersion != "" { - return e.IntegrationKit.Status.RuntimeProvider.Quarkus.QuarkusVersion - } - if e.Platform.Status.Build.RuntimeProvider != nil && e.Platform.Status.Build.RuntimeProvider.Quarkus != nil && - e.Platform.Status.Build.RuntimeProvider.Quarkus.QuarkusVersion != "" { - return e.Platform.Status.Build.RuntimeProvider.Quarkus.QuarkusVersion - } - return defaults.DefaultQuarkusVersion -} - -func (t *quarkusTrait) determineCamelQuarkusVersion(e *Environment) string { - if t.CamelQuarkusVersion != "" { - return t.CamelQuarkusVersion - } - if e.Integration != nil && e.Integration.Status.RuntimeProvider != nil && e.Integration.Status.RuntimeProvider.Quarkus != nil && - e.Integration.Status.RuntimeProvider.Quarkus.CamelQuarkusVersion != "" { - return e.Integration.Status.RuntimeProvider.Quarkus.CamelQuarkusVersion - } - if e.IntegrationKit != nil && e.IntegrationKit.Status.RuntimeProvider != nil && e.IntegrationKit.Status.RuntimeProvider.Quarkus != nil && - e.IntegrationKit.Status.RuntimeProvider.Quarkus.CamelQuarkusVersion != "" { - return e.IntegrationKit.Status.RuntimeProvider.Quarkus.CamelQuarkusVersion - } - if e.Platform.Status.Build.RuntimeProvider != nil && e.Platform.Status.Build.RuntimeProvider.Quarkus != nil && - e.Platform.Status.Build.RuntimeProvider.Quarkus.CamelQuarkusVersion != "" { - return e.Platform.Status.Build.RuntimeProvider.Quarkus.CamelQuarkusVersion - } - return defaults.DefaultCamelQuarkusVersion -} diff --git a/pkg/trait/quarkus_test.go b/pkg/trait/quarkus_test.go index c368d7e19e..6171401719 100644 --- a/pkg/trait/quarkus_test.go +++ b/pkg/trait/quarkus_test.go @@ -114,119 +114,7 @@ func TestQuarkusTraitAddRuntimeDependencyShouldSucceed(t *testing.T) { assert.Equal(t, "mvn:org.apache.camel.k/depA", dependencies[0]) } -func TestQuarkusTraitDetermineQuarkusVersionShouldReturnDefaultVersion(t *testing.T) { - quarkusTrait, environment := createNominalQuarkusTest() - - version := quarkusTrait.determineQuarkusVersion(environment) - - assert.NotNil(t, version) -} - -func TestQuarkusTraitDetermineQuarkusVersionShouldReturnTraitVersion(t *testing.T) { - quarkusTrait, environment := createNominalQuarkusTest() - quarkusTrait.QuarkusVersion = "0.0.5-from-trait" - - version := quarkusTrait.determineQuarkusVersion(environment) - - assert.Equal(t, "0.0.5-from-trait", version) -} - -func TestQuarkusTraitDetermineQuarkusVersionShouldReturnIntegrationVersion(t *testing.T) { - quarkusTrait, environment := createNominalQuarkusTest() - environment.Integration.Status.RuntimeProvider = &v1.RuntimeProvider{ - Quarkus: &v1.QuarkusRuntimeProvider{ - QuarkusVersion: "0.0.5-from-integration", - }, - } - - version := quarkusTrait.determineQuarkusVersion(environment) - - assert.Equal(t, "0.0.5-from-integration", version) -} - -func TestQuarkusTraitDetermineQuarkusVersionShouldReturnIntegrationKitVersion(t *testing.T) { - quarkusTrait, environment := createNominalQuarkusTest() - environment.IntegrationKit = &v1.IntegrationKit{ - Status: v1.IntegrationKitStatus{ - RuntimeProvider: &v1.RuntimeProvider{ - Quarkus: &v1.QuarkusRuntimeProvider{ - QuarkusVersion: "0.0.5-from-integration-kit", - }, - }, - }, - } - - version := quarkusTrait.determineQuarkusVersion(environment) - - assert.Equal(t, "0.0.5-from-integration-kit", version) -} - -func TestQuarkusTraitDetermineQuarkusVersionShouldReturnPlatformVersion(t *testing.T) { - quarkusTrait, environment := createNominalQuarkusTest() - environment.Platform.Status.Build.RuntimeProvider = &v1.RuntimeProvider{ - Quarkus: &v1.QuarkusRuntimeProvider{ - QuarkusVersion: "0.0.5-from-platform", - }, - } - - version := quarkusTrait.determineQuarkusVersion(environment) - - assert.Equal(t, "0.0.5-from-platform", version) -} - -func TestQuarkusTraitDetermineCamelQuarkusVersionShouldReturnDefaultVersion(t *testing.T) { - quarkusTrait, environment := createNominalQuarkusTest() - - version := quarkusTrait.determineCamelQuarkusVersion(environment) - - assert.NotNil(t, version) -} - -func TestQuarkusTraitDetermineCamelQuarkusVersionShouldReturnIntegrationVersion(t *testing.T) { - quarkusTrait, environment := createNominalQuarkusTest() - environment.Integration.Status.RuntimeProvider = &v1.RuntimeProvider{ - Quarkus: &v1.QuarkusRuntimeProvider{ - CamelQuarkusVersion: "1.0.5-from-integration", - }, - } - - version := quarkusTrait.determineCamelQuarkusVersion(environment) - - assert.Equal(t, "1.0.5-from-integration", version) -} - -func TestQuarkusTraitDetermineCamelQuarkusVersionShouldReturnIntegrationKitVersion(t *testing.T) { - quarkusTrait, environment := createNominalQuarkusTest() - environment.IntegrationKit = &v1.IntegrationKit{ - Status: v1.IntegrationKitStatus{ - RuntimeProvider: &v1.RuntimeProvider{ - Quarkus: &v1.QuarkusRuntimeProvider{ - CamelQuarkusVersion: "1.0.5-from-integration-kit", - }, - }, - }, - } - - version := quarkusTrait.determineCamelQuarkusVersion(environment) - - assert.Equal(t, "1.0.5-from-integration-kit", version) -} - -func TestQuarkusTraitDetermineCamelQuarkusVersionShouldReturnPlatformVersion(t *testing.T) { - quarkusTrait, environment := createNominalQuarkusTest() - environment.Platform.Status.Build.RuntimeProvider = &v1.RuntimeProvider{ - Quarkus: &v1.QuarkusRuntimeProvider{ - CamelQuarkusVersion: "1.0.5-from-platform", - }, - } - - version := quarkusTrait.determineCamelQuarkusVersion(environment) - - assert.Equal(t, "1.0.5-from-platform", version) -} - func createNominalQuarkusTest() (*quarkusTrait, *Environment) { - trait := newQuarkusTrait() enabled := true trait.Enabled = &enabled diff --git a/pkg/trait/rest-dsl.go b/pkg/trait/rest-dsl.go index dd33722fc3..3dd59f66e0 100644 --- a/pkg/trait/rest-dsl.go +++ b/pkg/trait/rest-dsl.go @@ -225,7 +225,7 @@ func (t *restDslTrait) generateMavenProject(e *Environment) (maven.Project, erro { GroupID: "org.apache.camel.k", ArtifactID: "camel-k-maven-plugin", - Version: e.CamelCatalog.RuntimeVersion, + Version: e.CamelCatalog.Runtime.Version, Executions: []maven.Execution{ { Phase: "generate-resources", @@ -234,13 +234,6 @@ func (t *restDslTrait) generateMavenProject(e *Environment) (maven.Project, erro }, }, }, - Dependencies: []maven.Dependency{ - { - GroupID: "org.apache.camel", - ArtifactID: "camel-swagger-rest-dsl-generator", - Version: e.CamelCatalog.Version, - }, - }, }, }, } diff --git a/pkg/util/camel/camel_runtime.go b/pkg/util/camel/camel_runtime.go index a9b91ff209..2d6a34503b 100644 --- a/pkg/util/camel/camel_runtime.go +++ b/pkg/util/camel/camel_runtime.go @@ -20,30 +20,19 @@ package camel import ( "context" - "k8s.io/apimachinery/pkg/labels" - "k8s.io/apimachinery/pkg/selection" - k8sclient "sigs.k8s.io/controller-runtime/pkg/client" v1 "github.com/apache/camel-k/pkg/apis/camel/v1" "github.com/apache/camel-k/pkg/client" - "github.com/apache/camel-k/pkg/util/controller" ) // LoadCatalog -- -func LoadCatalog(ctx context.Context, client client.Client, namespace string, camelVersion string, runtimeVersion string, provider interface{}) (*RuntimeCatalog, error) { +func LoadCatalog(ctx context.Context, client client.Client, namespace string, runtime v1.RuntimeSpec) (*RuntimeCatalog, error) { options := []k8sclient.ListOption{ k8sclient.InNamespace(namespace), - } - - if provider == nil { - requirement, _ := labels.NewRequirement("camel.apache.org/runtime.provider", selection.DoesNotExist, []string{}) - selector := labels.NewSelector().Add(*requirement) - options = append(options, controller.MatchingSelector{Selector: selector}) - } else if _, ok := provider.(v1.QuarkusRuntimeProvider); ok { - options = append(options, k8sclient.MatchingLabels{ - "camel.apache.org/runtime.provider": "quarkus", - }) + k8sclient.MatchingLabels{ + "camel.apache.org/runtime.provider": string(runtime.Provider), + }, } list := v1.NewCamelCatalogList() @@ -52,7 +41,7 @@ func LoadCatalog(ctx context.Context, client client.Client, namespace string, ca return nil, err } - catalog, err := findBestMatch(list.Items, camelVersion, runtimeVersion, provider) + catalog, err := findBestMatch(list.Items, runtime) if err != nil { return nil, err } diff --git a/pkg/util/camel/camel_runtime_catalog.go b/pkg/util/camel/camel_runtime_catalog.go index b0d4a677e1..81532999e4 100644 --- a/pkg/util/camel/camel_runtime_catalog.go +++ b/pkg/util/camel/camel_runtime_catalog.go @@ -41,13 +41,13 @@ func NewRuntimeCatalog(spec v1.CamelCatalogSpec) *RuntimeCatalog { for _, language := range artifact.Languages { // Skip languages in common dependencies since they are always available to integrations if artifact.ArtifactID != "camel-base" { - catalog.languageDependencies[language] = getDependency(artifact, catalog.RuntimeProvider) + catalog.languageDependencies[language] = getDependency(artifact, catalog.Runtime.Provider) } } for _, javaType := range artifact.JavaTypes { // Skip types in common dependencies since they are always available to integrations if artifact.ArtifactID != "camel-base" { - catalog.javaTypeDependencies[javaType] = getDependency(artifact, catalog.RuntimeProvider) + catalog.javaTypeDependencies[javaType] = getDependency(artifact, catalog.Runtime.Provider) } } } diff --git a/pkg/util/camel/camel_types.go b/pkg/util/camel/camel_types.go index 60524efe56..7dd776a131 100644 --- a/pkg/util/camel/camel_types.go +++ b/pkg/util/camel/camel_types.go @@ -24,7 +24,6 @@ import ( // CatalogVersion -- type CatalogVersion struct { - Version *semver.Version RuntimeVersion *semver.Version Catalog *v1.CamelCatalog } @@ -41,13 +40,6 @@ func (c CatalogVersionCollection) Len() int { // Less is needed for the sort interface to compare two CatalogVersion objects on the // slice. If checks if one is less than the other. func (c CatalogVersionCollection) Less(i, j int) bool { - if c[i].Version.LessThan(c[j].Version) { - return true - } - if c[i].Version.GreaterThan(c[j].Version) { - return false - } - return c[i].RuntimeVersion.LessThan(c[j].RuntimeVersion) } diff --git a/pkg/util/camel/camel_util.go b/pkg/util/camel/camel_util.go index a9a7055fb2..055eefe2bb 100644 --- a/pkg/util/camel/camel_util.go +++ b/pkg/util/camel/camel_util.go @@ -27,59 +27,22 @@ import ( "github.com/apache/camel-k/pkg/util/log" ) -func findBestMatch(catalogs []v1.CamelCatalog, camelVersion string, runtimeVersion string, provider interface{}) (*RuntimeCatalog, error) { - // TODO: generic exact matching logic independent of the runtime provider +func findBestMatch(catalogs []v1.CamelCatalog, runtime v1.RuntimeSpec) (*RuntimeCatalog, error) { for _, catalog := range catalogs { - if catalog.Spec.Version == camelVersion && catalog.Spec.RuntimeVersion == runtimeVersion { - if provider == nil && catalog.Spec.RuntimeProvider == nil { - return NewRuntimeCatalog(catalog.Spec), nil - } else if provider, ok := provider.(v1.QuarkusRuntimeProvider); ok && - catalog.Spec.RuntimeProvider != nil && catalog.Spec.RuntimeProvider.Quarkus != nil && - provider == *catalog.Spec.RuntimeProvider.Quarkus { - return NewRuntimeCatalog(catalog.Spec), nil - } + if catalog.Spec.Runtime.Version == runtime.Version && catalog.Spec.Runtime.Provider == runtime.Provider { + return NewRuntimeCatalog(catalog.Spec), nil } } - vc := newSemVerConstraint(camelVersion) - rc := newSemVerConstraint(runtimeVersion) - if vc == nil || rc == nil { + rc := newSemVerConstraint(runtime.Version) + if rc == nil { return nil, nil } cc := newCatalogVersionCollection(catalogs) - - switch provider := provider.(type) { - case v1.QuarkusRuntimeProvider: - qc := newSemVerConstraint(provider.QuarkusVersion) - cqc := newSemVerConstraint(provider.CamelQuarkusVersion) - if qc == nil || cqc == nil { - return nil, nil - } - for _, c := range cc { - if c.Catalog.Spec.RuntimeProvider == nil || c.Catalog.Spec.RuntimeProvider.Quarkus == nil { - continue - } - qv, err := semver.NewVersion(c.Catalog.Spec.RuntimeProvider.Quarkus.QuarkusVersion) - if err != nil { - log.Debugf("Invalid semver version (quarkus) %s", qv) - continue - } - cqv, err := semver.NewVersion(c.Catalog.Spec.RuntimeProvider.Quarkus.CamelQuarkusVersion) - if err != nil { - log.Debugf("Invalid semver version (camel quarkus) %s", cqv) - continue - } - if vc.Check(c.Version) && rc.Check(c.RuntimeVersion) && qc.Check(qv) && cqc.Check(cqv) { - return NewRuntimeCatalog(c.Catalog.Spec), nil - } - } - - default: - for _, c := range cc { - if vc.Check(c.Version) && rc.Check(c.RuntimeVersion) { - return NewRuntimeCatalog(c.Catalog.Spec), nil - } + for _, c := range cc { + if rc.Check(c.RuntimeVersion) { + return NewRuntimeCatalog(c.Catalog.Spec), nil } } @@ -104,20 +67,13 @@ func newCatalogVersionCollection(catalogs []v1.CamelCatalog) CatalogVersionColle versions := make([]CatalogVersion, 0, len(catalogs)) for i := range catalogs { - cv, err := semver.NewVersion(catalogs[i].Spec.Version) - if err != nil { - log.Debugf("Invalid semver version (camel) %s", cv) - continue - } - - rv, err := semver.NewVersion(catalogs[i].Spec.RuntimeVersion) + rv, err := semver.NewVersion(catalogs[i].Spec.Runtime.Version) if err != nil { log.Debugf("Invalid semver version (runtime) %s", rv) continue } versions = append(versions, CatalogVersion{ - Version: cv, RuntimeVersion: rv, Catalog: &catalogs[i], }) @@ -132,8 +88,8 @@ func newCatalogVersionCollection(catalogs []v1.CamelCatalog) CatalogVersionColle return answer } -func getDependency(artifact v1.CamelArtifact, runtimeProvider *v1.RuntimeProvider) string { - if runtimeProvider != nil && runtimeProvider.Quarkus != nil { +func getDependency(artifact v1.CamelArtifact, runtimeProvider v1.RuntimeProvider) string { + if runtimeProvider == v1.RuntimeProviderQuarkus { return strings.Replace(artifact.ArtifactID, "camel-quarkus-", "camel-quarkus:", 1) } return strings.Replace(artifact.ArtifactID, "camel-", "camel:", 1) diff --git a/pkg/util/camel/camel_util_test.go b/pkg/util/camel/camel_util_test.go index 64a1592618..2caec8079a 100644 --- a/pkg/util/camel/camel_util_test.go +++ b/pkg/util/camel/camel_util_test.go @@ -25,147 +25,49 @@ import ( v1 "github.com/apache/camel-k/pkg/apis/camel/v1" ) -func TestFindBestMatch_Camel(t *testing.T) { - catalogs := []v1.CamelCatalog{ - {Spec: v1.CamelCatalogSpec{Version: "2.23.0", RuntimeVersion: "1.0.0"}}, - {Spec: v1.CamelCatalogSpec{Version: "2.23.1", RuntimeVersion: "1.0.0"}}, - {Spec: v1.CamelCatalogSpec{Version: "2.22.1", RuntimeVersion: "1.0.0"}}, - } - - c, err := findBestMatch(catalogs, "~2.23.x", "1.0.0", nil) - assert.Nil(t, err) - assert.NotNil(t, c) - assert.Equal(t, "2.23.1", c.Version) -} - -func TestFindBestMatch_Runtime(t *testing.T) { - catalogs := []v1.CamelCatalog{ - {Spec: v1.CamelCatalogSpec{Version: "2.23.0", RuntimeVersion: "1.0.0"}}, - {Spec: v1.CamelCatalogSpec{Version: "2.23.0", RuntimeVersion: "1.0.1"}}, - {Spec: v1.CamelCatalogSpec{Version: "2.22.1", RuntimeVersion: "1.0.0"}}, - } - - c, err := findBestMatch(catalogs, "2.23.0", "~1.0.x", nil) - assert.Nil(t, err) - assert.NotNil(t, c) - assert.Equal(t, "2.23.0", c.Version) - assert.Equal(t, "1.0.1", c.RuntimeVersion) -} - func TestFindBestMatch(t *testing.T) { catalogs := []v1.CamelCatalog{ - {Spec: v1.CamelCatalogSpec{Version: "2.23.0", RuntimeVersion: "1.0.0"}}, - {Spec: v1.CamelCatalogSpec{Version: "2.23.1", RuntimeVersion: "1.0.0"}}, - {Spec: v1.CamelCatalogSpec{Version: "2.23.1", RuntimeVersion: "1.0.1"}}, - {Spec: v1.CamelCatalogSpec{Version: "2.22.1", RuntimeVersion: "1.0.0"}}, - } - - c, err := findBestMatch(catalogs, "~2.23.x", "~1.0.x", nil) - assert.Nil(t, err) - assert.NotNil(t, c) - assert.Equal(t, "2.23.1", c.Version) - assert.Equal(t, "1.0.1", c.RuntimeVersion) -} - -func TestFindExactSemVerMatch_Camel(t *testing.T) { - catalogs := []v1.CamelCatalog{ - {Spec: v1.CamelCatalogSpec{Version: "2.23.0", RuntimeVersion: "1.0.0"}}, - {Spec: v1.CamelCatalogSpec{Version: "2.23.1", RuntimeVersion: "1.0.0"}}, - {Spec: v1.CamelCatalogSpec{Version: "2.22.1", RuntimeVersion: "1.0.0"}}, - } - - c, err := findBestMatch(catalogs, "2.23.0", "1.0.0", nil) - assert.Nil(t, err) - assert.NotNil(t, c) - assert.Equal(t, "2.23.0", c.Version) -} - -func TestFindExactSemVerMatch_Runtime(t *testing.T) { - catalogs := []v1.CamelCatalog{ - {Spec: v1.CamelCatalogSpec{Version: "2.23.0", RuntimeVersion: "1.0.0"}}, - {Spec: v1.CamelCatalogSpec{Version: "2.23.1", RuntimeVersion: "1.0.1"}}, - {Spec: v1.CamelCatalogSpec{Version: "2.22.1", RuntimeVersion: "1.0.0"}}, - } - - c, err := findBestMatch(catalogs, "2.23.0", "1.0.0", nil) - assert.Nil(t, err) - assert.NotNil(t, c) - assert.Equal(t, "2.23.0", c.Version) - assert.Equal(t, "1.0.0", c.RuntimeVersion) -} - -func TestFindExactMatch_Camel(t *testing.T) { - catalogs := []v1.CamelCatalog{ - {Spec: v1.CamelCatalogSpec{Version: "2.23.1", RuntimeVersion: "1.0.0"}}, - {Spec: v1.CamelCatalogSpec{Version: "2.23.1-tag-00001", RuntimeVersion: "1.0.0"}}, - {Spec: v1.CamelCatalogSpec{Version: "2.23.1-tag-00002", RuntimeVersion: "1.0.0"}}, - {Spec: v1.CamelCatalogSpec{Version: "2.22.1", RuntimeVersion: "1.0.0"}}, - } - - c, err := findBestMatch(catalogs, "2.23.1-tag-00001", "1.0.0", nil) - assert.Nil(t, err) - assert.NotNil(t, c) - assert.Equal(t, "2.23.1-tag-00001", c.Version) -} - -func TestFindExactMatch_Runtime(t *testing.T) { - catalogs := []v1.CamelCatalog{ - {Spec: v1.CamelCatalogSpec{Version: "2.23.1", RuntimeVersion: "1.0.0"}}, - {Spec: v1.CamelCatalogSpec{Version: "2.23.1-tag-00001", RuntimeVersion: "1.0.1"}}, - {Spec: v1.CamelCatalogSpec{Version: "2.23.1-tag-00002", RuntimeVersion: "1.0.0"}}, - {Spec: v1.CamelCatalogSpec{Version: "2.22.1", RuntimeVersion: "1.0.0"}}, - } - - c, err := findBestMatch(catalogs, "2.23.1-tag-00001", "1.0.1", nil) - assert.Nil(t, err) - assert.NotNil(t, c) - assert.Equal(t, "2.23.1-tag-00001", c.Version) - assert.Equal(t, "1.0.1", c.RuntimeVersion) -} - -func TestFindRangeMatch_Camel(t *testing.T) { - catalogs := []v1.CamelCatalog{ - {Spec: v1.CamelCatalogSpec{Version: "2.23.0", RuntimeVersion: "1.0.0"}}, - {Spec: v1.CamelCatalogSpec{Version: "2.23.1", RuntimeVersion: "1.0.0"}}, - {Spec: v1.CamelCatalogSpec{Version: "2.23.2", RuntimeVersion: "1.0.0"}}, - {Spec: v1.CamelCatalogSpec{Version: "2.22.1", RuntimeVersion: "1.0.0"}}, + {Spec: v1.CamelCatalogSpec{Runtime: v1.RuntimeSpec{Version: "1.0.0", Provider: v1.RuntimeProviderMain}}}, + {Spec: v1.CamelCatalogSpec{Runtime: v1.RuntimeSpec{Version: "1.0.1", Provider: v1.RuntimeProviderMain}}}, + {Spec: v1.CamelCatalogSpec{Runtime: v1.RuntimeSpec{Version: "1.0.0", Provider: v1.RuntimeProviderQuarkus}}}, + {Spec: v1.CamelCatalogSpec{Runtime: v1.RuntimeSpec{Version: "1.0.1", Provider: v1.RuntimeProviderQuarkus}}}, } - c, err := findBestMatch(catalogs, ">= 2.23.0, < 2.23.2", "1.0.0", nil) + c, err := findBestMatch(catalogs, v1.RuntimeSpec{Version: "~1.0.x", Provider: v1.RuntimeProviderMain}) assert.Nil(t, err) assert.NotNil(t, c) - assert.Equal(t, "2.23.1", c.Version) + assert.Equal(t, "1.0.1", c.Runtime.Version) + assert.Equal(t, v1.RuntimeProviderMain, c.Runtime.Provider) } -func TestFindRangeMatch_Runtime(t *testing.T) { +func TestFindExactSemVerMatch(t *testing.T) { catalogs := []v1.CamelCatalog{ - {Spec: v1.CamelCatalogSpec{Version: "2.23.0", RuntimeVersion: "1.0.0"}}, - {Spec: v1.CamelCatalogSpec{Version: "2.23.1", RuntimeVersion: "1.0.0"}}, - {Spec: v1.CamelCatalogSpec{Version: "2.23.2", RuntimeVersion: "1.0.0"}}, - {Spec: v1.CamelCatalogSpec{Version: "2.23.0", RuntimeVersion: "1.0.2"}}, - {Spec: v1.CamelCatalogSpec{Version: "2.22.1", RuntimeVersion: "1.0.0"}}, + {Spec: v1.CamelCatalogSpec{Runtime: v1.RuntimeSpec{Version: "1.0.0", Provider: v1.RuntimeProviderMain}}}, + {Spec: v1.CamelCatalogSpec{Runtime: v1.RuntimeSpec{Version: "1.0.1", Provider: v1.RuntimeProviderMain}}}, + {Spec: v1.CamelCatalogSpec{Runtime: v1.RuntimeSpec{Version: "1.0.0", Provider: v1.RuntimeProviderQuarkus}}}, + {Spec: v1.CamelCatalogSpec{Runtime: v1.RuntimeSpec{Version: "1.0.1", Provider: v1.RuntimeProviderQuarkus}}}, } - c, err := findBestMatch(catalogs, "2.23.0", "> 1.0.1, < 1.0.3", nil) + c, err := findBestMatch(catalogs, v1.RuntimeSpec{Version: "1.0.0", Provider: v1.RuntimeProviderMain}) assert.Nil(t, err) assert.NotNil(t, c) - assert.Equal(t, "2.23.0", c.Version) - assert.Equal(t, "1.0.2", c.RuntimeVersion) + assert.Equal(t, "1.0.0", c.Runtime.Version) + assert.Equal(t, v1.RuntimeProviderMain, c.Runtime.Provider) } func TestFindRangeMatch(t *testing.T) { catalogs := []v1.CamelCatalog{ - {Spec: v1.CamelCatalogSpec{Version: "2.23.0", RuntimeVersion: "1.0.0"}}, - {Spec: v1.CamelCatalogSpec{Version: "2.23.1", RuntimeVersion: "1.0.0"}}, - {Spec: v1.CamelCatalogSpec{Version: "2.23.2", RuntimeVersion: "1.0.0"}}, - {Spec: v1.CamelCatalogSpec{Version: "2.23.0", RuntimeVersion: "1.0.2"}}, - {Spec: v1.CamelCatalogSpec{Version: "2.23.1", RuntimeVersion: "1.0.2"}}, - {Spec: v1.CamelCatalogSpec{Version: "2.22.1", RuntimeVersion: "1.0.0"}}, + {Spec: v1.CamelCatalogSpec{Runtime: v1.RuntimeSpec{Version: "1.0.0", Provider: v1.RuntimeProviderMain}}}, + {Spec: v1.CamelCatalogSpec{Runtime: v1.RuntimeSpec{Version: "1.0.1", Provider: v1.RuntimeProviderMain}}}, + {Spec: v1.CamelCatalogSpec{Runtime: v1.RuntimeSpec{Version: "1.0.2", Provider: v1.RuntimeProviderMain}}}, + {Spec: v1.CamelCatalogSpec{Runtime: v1.RuntimeSpec{Version: "1.0.0", Provider: v1.RuntimeProviderQuarkus}}}, + {Spec: v1.CamelCatalogSpec{Runtime: v1.RuntimeSpec{Version: "1.0.1", Provider: v1.RuntimeProviderQuarkus}}}, + {Spec: v1.CamelCatalogSpec{Runtime: v1.RuntimeSpec{Version: "1.0.2", Provider: v1.RuntimeProviderQuarkus}}}, } - c, err := findBestMatch(catalogs, ">= 2.23.0, < 2.23.2", "> 1.0.1, < 1.0.3", nil) + c, err := findBestMatch(catalogs, v1.RuntimeSpec{Version: "> 1.0.1, < 1.0.3", Provider: v1.RuntimeProviderMain}) assert.Nil(t, err) assert.NotNil(t, c) - assert.Equal(t, "2.23.1", c.Version) - assert.Equal(t, "1.0.2", c.RuntimeVersion) + assert.Equal(t, "1.0.2", c.Runtime.Version) + assert.Equal(t, v1.RuntimeProviderMain, c.Runtime.Provider) } diff --git a/pkg/util/camel/catalog.go b/pkg/util/camel/catalog.go index 427c7d08d3..c78d1e8e26 100644 --- a/pkg/util/camel/catalog.go +++ b/pkg/util/camel/catalog.go @@ -37,18 +37,15 @@ import ( // DefaultCatalog -- func DefaultCatalog() (*RuntimeCatalog, error) { - return catalogForRuntimeProvider(nil) + return catalogForRuntimeProvider(v1.RuntimeProviderMain) } // QuarkusCatalog -- func QuarkusCatalog() (*RuntimeCatalog, error) { - return catalogForRuntimeProvider(v1.QuarkusRuntimeProvider{ - CamelQuarkusVersion: defaults.DefaultCamelQuarkusVersion, - QuarkusVersion: defaults.DefaultQuarkusVersion, - }) + return catalogForRuntimeProvider(v1.RuntimeProviderQuarkus) } -func catalogForRuntimeProvider(provider interface{}) (*RuntimeCatalog, error) { +func catalogForRuntimeProvider(provider v1.RuntimeProvider) (*RuntimeCatalog, error) { catalogs := make([]v1.CamelCatalog, 0) for _, name := range deploy.Resources("/") { @@ -62,18 +59,22 @@ func catalogForRuntimeProvider(provider interface{}) (*RuntimeCatalog, error) { } } - return findBestMatch(catalogs, defaults.DefaultCamelVersion, defaults.DefaultRuntimeVersion, provider) + return findBestMatch(catalogs, v1.RuntimeSpec{ + Version: defaults.DefaultRuntimeVersion, + Provider: provider, + Metadata: make(map[string]string), + }) } // GenerateCatalog -- -func GenerateCatalog(ctx context.Context, client k8sclient.Reader, namespace string, mvn v1.MavenSpec, - camelVersion string, runtimeVersion string) (*RuntimeCatalog, error) { - return GenerateCatalogWithProvider(ctx, client, namespace, mvn, camelVersion, runtimeVersion, "", []maven.Dependency{}) -} +func GenerateCatalog( + ctx context.Context, + client k8sclient.Reader, + namespace string, + mvn v1.MavenSpec, + runtime v1.RuntimeSpec, + providerDependencies []maven.Dependency) (*RuntimeCatalog, error) { -// GenerateCatalogWithProvider -- -func GenerateCatalogWithProvider(ctx context.Context, client k8sclient.Reader, namespace string, mvn v1.MavenSpec, - camelVersion string, runtimeVersion string, providerName string, providerDependencies []maven.Dependency) (*RuntimeCatalog, error) { root := os.TempDir() tmpDir, err := ioutil.TempDir(root, "camel-catalog") if err != nil { @@ -86,16 +87,14 @@ func GenerateCatalogWithProvider(ctx context.Context, client k8sclient.Reader, n return nil, err } - project := generateMavenProject(camelVersion, runtimeVersion, providerDependencies) + project := generateMavenProject(runtime.Version, providerDependencies) mc := maven.NewContext(tmpDir, project) mc.LocalRepository = mvn.LocalRepository mc.Timeout = mvn.GetTimeout().Duration mc.AddSystemProperty("catalog.path", tmpDir) mc.AddSystemProperty("catalog.file", "catalog.yaml") - if providerName != "" { - mc.AddSystemProperty("catalog.runtime", providerName) - } + mc.AddSystemProperty("catalog.runtime", string(runtime.Provider)) settings, err := kubernetes.ResolveValueSource(ctx, client, namespace, &mvn.Settings) if err != nil { @@ -123,7 +122,7 @@ func GenerateCatalogWithProvider(ctx context.Context, client k8sclient.Reader, n return NewRuntimeCatalog(catalog.Spec), nil } -func generateMavenProject(camelVersion string, runtimeVersion string, providerDependencies []maven.Dependency) maven.Project { +func generateMavenProject(runtimeVersion string, providerDependencies []maven.Dependency) maven.Project { p := maven.NewProjectWithGAV("org.apache.camel.k.integration", "camel-k-catalog-generator", defaults.Version) plugin := maven.Plugin{ @@ -138,13 +137,6 @@ func generateMavenProject(camelVersion string, runtimeVersion string, providerDe }, }, }, - Dependencies: []maven.Dependency{ - { - GroupID: "org.apache.camel", - ArtifactID: "camel-catalog", - Version: camelVersion, - }, - }, } plugin.Dependencies = append(plugin.Dependencies, providerDependencies...) diff --git a/pkg/util/camel/catalog_test.go b/pkg/util/camel/catalog_test.go index 47ab71fad0..9470d020d3 100644 --- a/pkg/util/camel/catalog_test.go +++ b/pkg/util/camel/catalog_test.go @@ -24,7 +24,7 @@ import ( ) func TestCamelTraitGenerateMavenProjectSucceeds(t *testing.T) { - mvnProject := generateMavenProject("1.23.0", "1.0.0", nil) + mvnProject := generateMavenProject("1.0.1", nil) assert.NotNil(t, mvnProject) assert.Equal(t, "org.apache.camel.k.integration", mvnProject.GroupID) assert.Equal(t, "camel-k-catalog-generator", mvnProject.ArtifactID) @@ -40,8 +40,5 @@ func TestCamelTraitGenerateMavenProjectSucceeds(t *testing.T) { assert.NotNil(t, mvnProject.Build.Plugins[0].Executions[0].Goals) assert.Len(t, mvnProject.Build.Plugins[0].Executions[0].Goals, 1) assert.Equal(t, "generate-catalog", mvnProject.Build.Plugins[0].Executions[0].Goals[0]) - assert.NotNil(t, mvnProject.Build.Plugins[0].Dependencies) - assert.Len(t, mvnProject.Build.Plugins[0].Dependencies, 1) - assert.Equal(t, "org.apache.camel", mvnProject.Build.Plugins[0].Dependencies[0].GroupID) - assert.Equal(t, "camel-catalog", mvnProject.Build.Plugins[0].Dependencies[0].ArtifactID) + assert.Nil(t, mvnProject.Build.Plugins[0].Dependencies) } diff --git a/pkg/util/defaults/defaults.go b/pkg/util/defaults/defaults.go index 68e4813a30..e061c0163c 100644 --- a/pkg/util/defaults/defaults.go +++ b/pkg/util/defaults/defaults.go @@ -25,17 +25,8 @@ const ( // Version -- Version = "1.0.0-RC2-SNAPSHOT" - // DefaultCamelVersion -- - DefaultCamelVersion = "3.0.0" - // DefaultRuntimeVersion -- - DefaultRuntimeVersion = "1.0.10" - - // DefaultCamelQuarkusVersion -- - DefaultCamelQuarkusVersion = "1.0.0-M2" - - // DefaultQuarkusVersion -- - DefaultQuarkusVersion = "1.1.0.Final" + DefaultRuntimeVersion = "1.0.11-SNAPSHOT" // KanikoVersion -- KanikoVersion = "0.14.0" diff --git a/pkg/util/source/inspector.go b/pkg/util/source/inspector.go index 2faac01ac5..427984953a 100644 --- a/pkg/util/source/inspector.go +++ b/pkg/util/source/inspector.go @@ -135,7 +135,7 @@ func (i *baseInspector) discoverDependencies(source v1.SourceSpec, meta *Metadat } var additionalDependencies map[string]string - if i.catalog.RuntimeProvider != nil && i.catalog.RuntimeProvider.Quarkus != nil { + if i.catalog.Runtime.Provider == v1.RuntimeProviderQuarkus { additionalDependencies = sourceDependencies.quarkus } else { additionalDependencies = sourceDependencies.main diff --git a/pkg/util/test/catalog_test.go b/pkg/util/test/catalog_test.go index 5e3e420111..9e483f4fa1 100644 --- a/pkg/util/test/catalog_test.go +++ b/pkg/util/test/catalog_test.go @@ -30,7 +30,7 @@ func TestRuntimeContainsEmbeddedArtifacts(t *testing.T) { catalog, err := camel.DefaultCatalog() assert.Nil(t, err) - assert.Equal(t, defaults.DefaultCamelVersion, catalog.Version) + assert.Equal(t, defaults.DefaultRuntimeVersion, catalog.Runtime.Version) artifact := catalog.GetArtifactByScheme("knative") assert.Equal(t, 1, len(artifact.Schemes)) diff --git a/script/Makefile b/script/Makefile index dbb617a0ab..2517bfd39f 100644 --- a/script/Makefile +++ b/script/Makefile @@ -16,9 +16,7 @@ VERSIONFILE := pkg/util/defaults/defaults.go VERSION := 1.0.0-RC2-SNAPSHOT LAST_RELEASED_VERSION := 1.0.0-M4 -RUNTIME_VERSION := 1.0.10 -CAMEL_VERSION := 3.0.0 -CAMEL_QUARKUS_VERSION := 1.0.0-M2 +RUNTIME_VERSION := 1.0.11-SNAPSHOT QUARKUS_VERSION := 1.1.0.Final KANIKO_VERSION := 0.14.0 BASE_IMAGE := adoptopenjdk/openjdk8:slim @@ -79,17 +77,10 @@ codegen: @echo " // Version -- " >> $(VERSIONFILE) @echo " Version = \"$(VERSION)\"" >> $(VERSIONFILE) @echo "" >> $(VERSIONFILE) - @echo " // DefaultCamelVersion -- " >> $(VERSIONFILE) - @echo " DefaultCamelVersion = \"$(CAMEL_VERSION)\"" >> $(VERSIONFILE) @echo "" >> $(VERSIONFILE) @echo " // DefaultRuntimeVersion -- " >> $(VERSIONFILE) @echo " DefaultRuntimeVersion = \"$(RUNTIME_VERSION)\"" >> $(VERSIONFILE) @echo "" >> $(VERSIONFILE) - @echo " // DefaultCamelQuarkusVersion -- " >> $(VERSIONFILE) - @echo " DefaultCamelQuarkusVersion = \"$(CAMEL_QUARKUS_VERSION)\"" >> $(VERSIONFILE) - @echo "" >> $(VERSIONFILE) - @echo " // DefaultQuarkusVersion -- " >> $(VERSIONFILE) - @echo " DefaultQuarkusVersion = \"$(QUARKUS_VERSION)\"" >> $(VERSIONFILE) @echo "" >> $(VERSIONFILE) @echo " // KanikoVersion -- " >> $(VERSIONFILE) @echo " KanikoVersion = \"$(KANIKO_VERSION)\"" >> $(VERSIONFILE) @@ -132,11 +123,11 @@ build-kamel: go build $(GOFLAGS) -o kamel ./cmd/kamel/*.go build-resources: build-vfs - ./script/build_catalog.sh $(CAMEL_VERSION) $(RUNTIME_VERSION) -Dstaging.repo=$(STAGING_RUNTIME_REPO) -Pmain -Dcatalog.file=camel-catalog-$(CAMEL_VERSION)-$(RUNTIME_VERSION).yaml - ./script/build_catalog.sh $(CAMEL_VERSION) $(RUNTIME_VERSION) -Dstaging.repo=$(STAGING_RUNTIME_REPO) -Pquarkus -Dcatalog.runtime=quarkus -Dcamel-quarkus.version=$(CAMEL_QUARKUS_VERSION) -Dcatalog.file=camel-catalog-quarkus-$(CAMEL_QUARKUS_VERSION)-$(RUNTIME_VERSION).yaml go run cmd/util/json-schema-gen/jsonschemagen.go --out=./assets/json-schema build-vfs: + ./script/build_catalog.sh $(RUNTIME_VERSION) -Dstaging.repo=$(STAGING_RUNTIME_REPO) -Dcatalog.file=camel-catalog-$(RUNTIME_VERSION)-main.yaml + ./script/build_catalog.sh $(RUNTIME_VERSION) -Dstaging.repo=$(STAGING_RUNTIME_REPO) -Dcatalog.file=camel-catalog-$(RUNTIME_VERSION)-quarkus.yaml -Dcatalog.runtime=quarkus ./script/embed_resources.sh deploy build-olm: diff --git a/script/build_catalog.sh b/script/build_catalog.sh index f4b2ae492e..a3af6ba508 100755 --- a/script/build_catalog.sh +++ b/script/build_catalog.sh @@ -18,17 +18,15 @@ location=$(dirname $0) rootdir=$location/../ -if [ "$#" -ge 2 ]; then - camelVersion="$1" - runtimeVersion="$2" - shift 2 +if [ "$#" -ge 1 ]; then + runtimeVersion="$1" + shift 1 $rootdir/mvnw -q \ -f ${rootdir}/build/maven/pom-catalog.xml \ -Dcatalog.path=${rootdir}/deploy \ - -Dcamel.version=$camelVersion \ -Druntime.version=$runtimeVersion \ "$@" else - echo "usage: $0 catalog.version runtime.version catalog.runtime [staging.repo]" + echo "usage: $0 runtime.version catalog.runtime [staging.repo]" exit 1 fi