From 886e30889e4272e39167ab2de320f5eeebc6a0b8 Mon Sep 17 00:00:00 2001 From: Joseph Shearer Date: Thu, 10 Aug 2023 16:26:56 -0400 Subject: [PATCH] feature: Teach the combiner to keep track of a running inferred schema and log whenever it changes. (#1128) * feature: Teach the combiner to keep track of a running inferred schema and log whenever it changes. * fix: Initialize schema as fully constrained instead of fully open * Emit the schema as real JSON, instead of an escaped string. * fix: Only initialize `shape` and `scratch-shape` if this is a brand new Combiner, otherwise keep the schema around to reduce spurious logging * fix: log on error * refactor: remove reference to `Shape::to_serde()` * fix: import ordering * fix: serialization should never fail * Add `collection_name` and `enable_schema_inference` to the combiner's `Config` message, and plumb through the appropriate values. * fix: Some clean-ups after rebase * refactor: Pass a schema in `infer_schema_json` instead of a boolean in `enable_schema_inference` * fix: Actually enforce inferred schema limits * fix: remove unneccesary `shape_from_value` * fix logic error * exercise widening logic in tests * Also exercise real `infer_schema_json` parsing codepath * ops: update tracing snapshot for new debug behavior --------- Co-authored-by: Johnny Graettinger --- crates/derive/src/combine_api.rs | 98 ++++- crates/doc/src/schema.rs | 156 -------- crates/ops/src/tracing.rs | 12 +- crates/proto-flow/src/flow.rs | 7 + crates/proto-flow/src/flow.serde.rs | 36 ++ go/bindings/combine.go | 12 + go/bindings/combine_test.go | 2 + go/protocols/flow/flow.pb.go | 571 ++++++++++++++++------------ go/protocols/flow/flow.proto | 5 + go/runtime/capture.go | 2 + go/runtime/materialize.go | 2 + go/runtime/testing.go | 2 + go/testing/driver.go | 2 + 13 files changed, 509 insertions(+), 398 deletions(-) delete mode 100644 crates/doc/src/schema.rs diff --git a/crates/derive/src/combine_api.rs b/crates/derive/src/combine_api.rs index ed0b46909e..28ac6e47f9 100644 --- a/crates/derive/src/combine_api.rs +++ b/crates/derive/src/combine_api.rs @@ -1,6 +1,7 @@ -use crate::{new_validator, DocCounter, JsonError, StatsAccumulator}; +use crate::{new_validator, DebugJson, DocCounter, JsonError, StatsAccumulator}; use anyhow::Context; use bytes::Buf; +use doc::shape::{limits::enforce_field_count_limits, schema::to_schema}; use prost::Message; use proto_flow::flow::combine_api::{self, Code}; @@ -58,11 +59,18 @@ struct State { fields_ex: Vec, // Document key components over which we're grouping while combining. key_ex: Box<[doc::Extractor]>, + // Inferred shape of drained documents. Some if schema inference + // is confitured to be enabled, otherwise None + shape: Option, + // Keeps track of whether the running inferred shape was widened + // since last being logged. + shape_changed: bool, // Statistics of a current combine operation. stats: CombineStats, // JSON-Pointer into which a UUID placeholder should be set, // or None if a placeholder shouldn't be set. uuid_placeholder_ptr: Option, + collection_name: String, } impl cgo::Service for API { @@ -93,12 +101,16 @@ impl cgo::Service for API { fields, uuid_placeholder_ptr, projections, + collection_name, + infer_schema_json, } = combine_api::Config::decode(data)?; tracing::debug!( %schema_json, ?key_ptrs, ?fields, ?uuid_placeholder_ptr, + ?collection_name, + schema_inference = infer_schema_json.len()>0, "configure", ); @@ -122,12 +134,36 @@ impl cgo::Service for API { validator, )?; + // If `infer_schema_json` is non-empty then enable schema inference + // by setting Shape to Some, and use the schema defined by `infer_schema_json` + // as the default schema to start from. Otherwise, disable schema inference. + // TODO (jshearer): We're special-casing "false" here because at the moment, + // the Go side of things doesn't actually know how to load a useful inferred schema + // and instead always passes the maximally-restrictive "false" value. Once we teach + // it how to fetch useful inferred schemas, we should remove this special case. + let shape = if infer_schema_json.eq("false") { + self.state + .as_ref() + .and_then(|state| state.shape.clone()) + .or(Some(doc::Shape::nothing())) + } else if infer_schema_json.len() > 0 { + let validator = new_validator(infer_schema_json.as_str())?; + Some(doc::Shape::infer( + &validator.schemas()[0], + validator.schema_index(), + )) + } else { + None + }; self.state = Some(State { combiner, + shape, + shape_changed: false, fields_ex, key_ex, uuid_placeholder_ptr, stats: CombineStats::default(), + collection_name, }); Ok(()) } @@ -177,9 +213,26 @@ impl cgo::Service for API { arena, out, &mut state.stats.out, + &mut state.shape, + &mut state.shape_changed, )?; if !more { + if let Some(ref shape) = state.shape { + if state.shape_changed { + state.shape_changed = false; + + let serialized = serde_json::to_value(&to_schema(shape.clone())) + .expect("shape serialization should never fail"); + + tracing::info!( + schema = ?DebugJson(serialized), + collection_name = state.collection_name, + "inferred schema updated" + ); + } + } + // Send a final message with accumulated stats. cgo::send_message(Code::DrainedStats as u32, &state.stats.drain(), arena, out); state.combiner = doc::Combiner::Accumulator(drainer.into_new_accumulator()?); @@ -225,11 +278,23 @@ pub fn drain_chunk( arena: &mut Vec, out: &mut Vec, stats: &mut DocCounter, + shape: &mut Option, + did_change: &mut bool, ) -> Result { // Convert target from a delta to an absolute target length of the arena. let target_length = target_length + arena.len(); drainer.drain_while(|doc, fully_reduced| { + if let Some(ref mut shape) = shape { + let changed = match &doc { + doc::LazyNode::Node(n) => shape.widen(*n), + doc::LazyNode::Heap(h) => shape.widen(h), + }; + if changed { + enforce_field_count_limits(shape, json::Location::Root); + *did_change = true; + } + } // Send serialized document. let begin = arena.len(); let w: &mut Vec = &mut *arena; @@ -313,6 +378,8 @@ pub mod test { ..Default::default() }, ], + collection_name: "test".to_string(), + infer_schema_json: "false".to_string(), }, &mut arena, &mut out, @@ -405,6 +472,33 @@ pub mod test { fields: vec![], uuid_placeholder_ptr: String::new(), projections: vec![], + collection_name: "test".to_string(), + infer_schema_json: "".to_string(), + }, + &mut arena, + &mut out, + ), + Err(Error::EmptyKey) + )); + } + + #[test] + fn test_combine_with_real_schema() { + let mut svc = API::create(); + let mut arena = Vec::new(); + let mut out = Vec::new(); + + assert!(matches!( + svc.invoke_message( + Code::Configure as u32, + combine_api::Config { + schema_json: build_min_max_sum_schema(), + key_ptrs: vec![], + fields: vec![], + uuid_placeholder_ptr: String::new(), + projections: vec![], + collection_name: "test".to_string(), + infer_schema_json: r#"{"type": "object"}"#.to_string(), }, &mut arena, &mut out, @@ -675,6 +769,8 @@ pub mod test { fields: field_ptrs, uuid_placeholder_ptr: String::new(), projections, + collection_name: "test".to_string(), + infer_schema_json: "".to_string(), }, &mut arena, &mut out, diff --git a/crates/doc/src/schema.rs b/crates/doc/src/schema.rs deleted file mode 100644 index 2d33afb848..0000000000 --- a/crates/doc/src/schema.rs +++ /dev/null @@ -1,156 +0,0 @@ -use crate::inference::Shape; -use json::schema::{ - keywords, - types::{self, Set}, -}; -use schemars::{ - gen::SchemaGenerator, - schema::{InstanceType, RootSchema, Schema, SchemaObject, SingleOrVec}, -}; -use serde_json::json; -use std::collections::{BTreeMap, BTreeSet}; - -#[derive(Debug, Default)] -pub struct SchemaBuilder { - shape: Shape, -} - -impl SchemaBuilder { - pub fn new(shape: Shape) -> Self { - Self { shape } - } - - pub fn root_schema(&self) -> RootSchema { - RootSchema { - schema: to_schema(&self.shape).into_object(), - meta_schema: SchemaGenerator::default().settings().meta_schema.clone(), - ..Default::default() - } - } -} - -pub fn to_schema(shape: &Shape) -> Schema { - let mut schema_object = SchemaObject { - instance_type: Some(shape_type_to_schema_type(shape.type_)), - ..Default::default() - }; - - schema_object.metadata().title = shape.title.clone(); - schema_object.metadata().description = shape.description.clone(); - schema_object.metadata().default = shape.default.clone().map(|(d, _)| d); - schema_object.enum_values = shape.enum_.clone(); - - if shape.type_.overlaps(types::OBJECT) { - let mut prop_schemas = BTreeMap::new(); - let mut required = BTreeSet::new(); - for obj_prop in shape.object.properties.iter() { - prop_schemas.insert(obj_prop.name.clone(), to_schema(&obj_prop.shape)); - if obj_prop.is_required { - required.insert(obj_prop.name.clone()); - } - } - let object = &mut schema_object.object(); - object.properties = prop_schemas; - object.required = required; - - if let Some(addl) = &shape.object.additional { - object.additional_properties = Some(Box::new(to_schema(addl))); - } - } - - if shape.type_.overlaps(types::ARRAY) { - let mut array_items = Vec::new(); - for item in shape.array.tuple.iter() { - array_items.push(to_schema(item)); - } - if array_items.len() > 0 { - schema_object.array().items = Some(flatten(array_items)); - } - - if let Some(addl_items) = &shape.array.additional { - schema_object.array().additional_items = Some(Box::new(to_schema(addl_items))); - } - - schema_object.array().max_items = shape.array.max.and_then(|max| u32::try_from(max).ok()); - schema_object.array().min_items = shape.array.min.and_then(|max| u32::try_from(max).ok()); - } - - if shape.type_.overlaps(types::STRING) { - schema_object.format = shape.string.format.map(|f| f.to_string()); - schema_object.string().max_length = shape - .string - .max_length - .and_then(|max| u32::try_from(max).ok()); - - if shape.string.min_length > 0 { - schema_object.string().min_length = shape.string.min_length.try_into().ok(); - } - if let Some(encoding) = &shape.string.content_encoding { - schema_object - .extensions - .insert(keywords::CONTENT_ENCODING.to_string(), json!(encoding)); - } - if let Some(content_type) = &shape.string.content_type { - schema_object.extensions.insert( - keywords::CONTENT_MEDIA_TYPE.to_string(), - json!(content_type), - ); - } - } - - Schema::Object(schema_object) -} - -pub fn shape_type_to_schema_type(type_set: Set) -> SingleOrVec { - let instance_types = type_set - .iter() - .map(parse_instance_type) - .collect::>(); - - flatten(instance_types) -} - -fn parse_instance_type(input: &str) -> InstanceType { - match input { - "array" => InstanceType::Array, - "boolean" => InstanceType::Boolean, - "fractional" => InstanceType::Number, - "integer" => InstanceType::Integer, - "null" => InstanceType::Null, - "number" => InstanceType::Number, - "object" => InstanceType::Object, - "string" => InstanceType::String, - other => panic!("unexpected type: {}", other), - } -} - -fn flatten(mut vec: Vec) -> SingleOrVec { - if vec.len() == 1 { - SingleOrVec::Single(Box::new(vec.pop().unwrap())) - } else { - SingleOrVec::Vec(vec) - } -} - -#[cfg(test)] -mod tests { - use super::*; - - #[test] - fn simple_type_conversions() { - fn assert_equiv(expected: InstanceType, actual: types::Set) { - assert_eq!( - SingleOrVec::Single(Box::new(expected)), - shape_type_to_schema_type(actual) - ); - } - - assert_equiv(InstanceType::Array, types::ARRAY); - assert_equiv(InstanceType::Boolean, types::BOOLEAN); - assert_equiv(InstanceType::Integer, types::INTEGER); - assert_equiv(InstanceType::Null, types::NULL); - assert_equiv(InstanceType::Number, types::INT_OR_FRAC); - assert_equiv(InstanceType::Object, types::OBJECT); - assert_equiv(InstanceType::String, types::STRING); - } -} diff --git a/crates/ops/src/tracing.rs b/crates/ops/src/tracing.rs index 5033a62014..ccf6d2af7f 100644 --- a/crates/ops/src/tracing.rs +++ b/crates/ops/src/tracing.rs @@ -172,7 +172,15 @@ impl<'a> tracing::field::Visit for FieldVisitor<'a> { } fn record_debug(&mut self, field: &tracing::field::Field, value: &dyn std::fmt::Debug) { - self.record_raw(field, format!("{value:?}")) + let stringified = format!("{value:?}"); + match serde_json::from_str::(&stringified) { + Ok(_) => { + self.0 + .fields_json_map + .insert(field.name().to_string(), stringified); + } + Err(_) => self.record_raw(field, stringified), + }; } } @@ -349,7 +357,7 @@ mod test { "level": "debug", "fields": { "module": "ops::tracing::test", - "return": "\"ok\"" + "return": "ok" }, "spans": [ { diff --git a/crates/proto-flow/src/flow.rs b/crates/proto-flow/src/flow.rs index da25adf407..fce4a4aa0a 100644 --- a/crates/proto-flow/src/flow.rs +++ b/crates/proto-flow/src/flow.rs @@ -896,6 +896,13 @@ pub mod combine_api { /// TODO(johnny): This is a kludge as we seek to remove this API. #[prost(message, repeated, tag = "5")] pub projections: ::prost::alloc::vec::Vec, + /// The name of the collection that's being written to. + #[prost(string, tag = "6")] + pub collection_name: ::prost::alloc::string::String, + /// JSON-encoded string representing the JSON schema to start inference + /// from. If empty, do not emit inferred schemas. + #[prost(string, tag = "7")] + pub infer_schema_json: ::prost::alloc::string::String, } /// Stats holds statistics relating to one or more combiner transactions. #[allow(clippy::derive_partial_eq_without_eq)] diff --git a/crates/proto-flow/src/flow.serde.rs b/crates/proto-flow/src/flow.serde.rs index bfb2e0be02..b8d7a5a643 100644 --- a/crates/proto-flow/src/flow.serde.rs +++ b/crates/proto-flow/src/flow.serde.rs @@ -2105,6 +2105,12 @@ impl serde::Serialize for combine_api::Config { if !self.projections.is_empty() { len += 1; } + if !self.collection_name.is_empty() { + len += 1; + } + if !self.infer_schema_json.is_empty() { + len += 1; + } let mut struct_ser = serializer.serialize_struct("flow.CombineAPI.Config", len)?; if !self.schema_json.is_empty() { struct_ser.serialize_field("schemaJson", crate::as_raw_json(&self.schema_json)?)?; @@ -2121,6 +2127,12 @@ impl serde::Serialize for combine_api::Config { if !self.projections.is_empty() { struct_ser.serialize_field("projections", &self.projections)?; } + if !self.collection_name.is_empty() { + struct_ser.serialize_field("collectionName", &self.collection_name)?; + } + if !self.infer_schema_json.is_empty() { + struct_ser.serialize_field("inferSchemaJson", crate::as_raw_json(&self.infer_schema_json)?)?; + } struct_ser.end() } } @@ -2139,6 +2151,10 @@ impl<'de> serde::Deserialize<'de> for combine_api::Config { "uuid_placeholder_ptr", "uuidPlaceholderPtr", "projections", + "collection_name", + "collectionName", + "infer_schema_json", + "inferSchemaJson", ]; #[allow(clippy::enum_variant_names)] @@ -2148,6 +2164,8 @@ impl<'de> serde::Deserialize<'de> for combine_api::Config { Fields, UuidPlaceholderPtr, Projections, + CollectionName, + InferSchemaJson, } impl<'de> serde::Deserialize<'de> for GeneratedField { fn deserialize(deserializer: D) -> std::result::Result @@ -2174,6 +2192,8 @@ impl<'de> serde::Deserialize<'de> for combine_api::Config { "fields" => Ok(GeneratedField::Fields), "uuidPlaceholderPtr" | "uuid_placeholder_ptr" => Ok(GeneratedField::UuidPlaceholderPtr), "projections" => Ok(GeneratedField::Projections), + "collectionName" | "collection_name" => Ok(GeneratedField::CollectionName), + "inferSchemaJson" | "infer_schema_json" => Ok(GeneratedField::InferSchemaJson), _ => Err(serde::de::Error::unknown_field(value, FIELDS)), } } @@ -2198,6 +2218,8 @@ impl<'de> serde::Deserialize<'de> for combine_api::Config { let mut fields__ = None; let mut uuid_placeholder_ptr__ = None; let mut projections__ = None; + let mut collection_name__ = None; + let mut infer_schema_json__ : Option> = None; while let Some(k) = map.next_key()? { match k { GeneratedField::SchemaJson => { @@ -2230,6 +2252,18 @@ impl<'de> serde::Deserialize<'de> for combine_api::Config { } projections__ = Some(map.next_value()?); } + GeneratedField::CollectionName => { + if collection_name__.is_some() { + return Err(serde::de::Error::duplicate_field("collectionName")); + } + collection_name__ = Some(map.next_value()?); + } + GeneratedField::InferSchemaJson => { + if infer_schema_json__.is_some() { + return Err(serde::de::Error::duplicate_field("inferSchemaJson")); + } + infer_schema_json__ = Some(map.next_value()?); + } } } Ok(combine_api::Config { @@ -2238,6 +2272,8 @@ impl<'de> serde::Deserialize<'de> for combine_api::Config { fields: fields__.unwrap_or_default(), uuid_placeholder_ptr: uuid_placeholder_ptr__.unwrap_or_default(), projections: projections__.unwrap_or_default(), + collection_name: collection_name__.unwrap_or_default(), + infer_schema_json: infer_schema_json__.map(|r| Box::::from(r).into()).unwrap_or_default(), }) } } diff --git a/go/bindings/combine.go b/go/bindings/combine.go index 93cde04116..f078228fee 100644 --- a/go/bindings/combine.go +++ b/go/bindings/combine.go @@ -60,10 +60,20 @@ func (c *Combine) Configure( keyPtrs []string, fields []string, projections []pf.Projection, + enableSchemaInference bool, ) error { combineConfigureCounter.WithLabelValues(fqn, collection.String()).Inc() c.metrics = newCombineMetrics(fqn, collection) + // TODO (jshearer): Plumb through existing inferred schemas + // to provide a fleshed-out starting point for schema inference. + // Before that though, if schema inference is desired then start + // out with the maximally restrictive schema, otherwise empty to disable. + var schemaInferenceJson = "" + if enableSchemaInference { + schemaInferenceJson = "false" + } + c.svc.mustSendMessage( uint32(pf.CombineAPI_CONFIGURE), &pf.CombineAPI_Config{ @@ -72,6 +82,8 @@ func (c *Combine) Configure( Fields: fields, UuidPlaceholderPtr: uuidPtr, Projections: projections, + CollectionName: collection.String(), + InferSchemaJson: schemaInferenceJson, }) return pollExpectNoOutput(c.svc) diff --git a/go/bindings/combine_test.go b/go/bindings/combine_test.go index 496a236f82..b02cf93fc4 100644 --- a/go/bindings/combine_test.go +++ b/go/bindings/combine_test.go @@ -54,6 +54,7 @@ func TestValidationFailuresAreLogged(t *testing.T) { collection.Key, nil, collection.Projections, + false, ) require.NoError(t, err) @@ -108,6 +109,7 @@ func TestCombineBindings(t *testing.T) { collection.Key, []string{"part_a", "part_b"}, collection.Projections, + false, ) require.NoError(t, err) } diff --git a/go/protocols/flow/flow.pb.go b/go/protocols/flow/flow.pb.go index 6d0157096c..a98ae556c9 100644 --- a/go/protocols/flow/flow.pb.go +++ b/go/protocols/flow/flow.pb.go @@ -1686,10 +1686,15 @@ type CombineAPI_Config struct { UuidPlaceholderPtr string `protobuf:"bytes,4,opt,name=uuid_placeholder_ptr,json=uuidPlaceholderPtr,proto3" json:"uuid_placeholder_ptr,omitempty"` // A set of Projections which must include `key_ptrs` and `fields`. // TODO(johnny): This is a kludge as we seek to remove this API. - Projections []Projection `protobuf:"bytes,5,rep,name=projections,proto3" json:"projections"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Projections []Projection `protobuf:"bytes,5,rep,name=projections,proto3" json:"projections"` + // The name of the collection that's being written to. + CollectionName string `protobuf:"bytes,6,opt,name=collection_name,json=collectionName,proto3" json:"collection_name,omitempty"` + // JSON-encoded string representing the JSON schema to start inference + // from. If empty, do not emit inferred schemas. + InferSchemaJson string `protobuf:"bytes,7,opt,name=infer_schema_json,json=inferSchemaJson,proto3" json:"infer_schema_json,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *CombineAPI_Config) Reset() { *m = CombineAPI_Config{} } @@ -2430,241 +2435,243 @@ func init() { func init() { proto.RegisterFile("go/protocols/flow/flow.proto", fileDescriptor_d0677502142fec31) } var fileDescriptor_d0677502142fec31 = []byte{ - // 3734 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x3a, 0x4d, 0x6c, 0xe3, 0xd8, - 0x79, 0xa6, 0xfe, 0xf5, 0x49, 0xb2, 0xe9, 0x67, 0xcf, 0x8c, 0x46, 0xbb, 0x63, 0x79, 0xb5, 0x49, - 0xc7, 0xbb, 0x9b, 0xd5, 0xa4, 0x9e, 0x26, 0xd8, 0x9d, 0xc1, 0x34, 0xd0, 0x0f, 0x3d, 0xc3, 0x19, - 0x59, 0x52, 0x29, 0x3a, 0x9b, 0x59, 0xa0, 0x60, 0x69, 0xf2, 0x59, 0xe6, 0x9a, 0x22, 0x55, 0x92, - 0xf2, 0x8c, 0x72, 0x69, 0x51, 0x14, 0x28, 0xb0, 0x68, 0xd1, 0x5c, 0x8a, 0xe4, 0xd6, 0x4d, 0x80, - 0x02, 0x45, 0xcf, 0x45, 0x81, 0x36, 0x97, 0x02, 0xbd, 0x6c, 0x9b, 0x16, 0x08, 0x5a, 0xf4, 0xd2, - 0x02, 0x5e, 0x34, 0x05, 0xda, 0x9c, 0x7a, 0xea, 0x69, 0x4e, 0xc5, 0xfb, 0x21, 0x45, 0x59, 0xf2, - 0xd8, 0x6e, 0x92, 0x43, 0x2e, 0x02, 0xdf, 0xf7, 0xc7, 0xf7, 0xbe, 0xff, 0xf7, 0x51, 0xf0, 0xe6, - 0xd0, 0xbd, 0x37, 0xf6, 0xdc, 0xc0, 0x35, 0x5c, 0xdb, 0xbf, 0x77, 0x64, 0xbb, 0x2f, 0xe8, 0x4f, - 0x9d, 0xc2, 0x50, 0x8a, 0x3c, 0x57, 0xb6, 0x0e, 0x3d, 0xf7, 0x04, 0x7b, 0x11, 0x5d, 0xf4, 0xc0, - 0xa8, 0x2a, 0xdb, 0x86, 0xeb, 0xf8, 0x93, 0xd1, 0x6b, 0x28, 0x36, 0x87, 0xee, 0xd0, 0xa5, 0x8f, - 0xf7, 0xc8, 0x13, 0x83, 0xd6, 0x1e, 0x41, 0x7a, 0x60, 0x5b, 0x06, 0x46, 0x9b, 0x90, 0x3e, 0xc4, - 0x43, 0xcb, 0x29, 0x0b, 0xdb, 0xc2, 0x4e, 0x49, 0x61, 0x0b, 0x24, 0x42, 0x12, 0x3b, 0x66, 0x39, - 0x41, 0x61, 0xe4, 0xf1, 0x41, 0xf1, 0xc7, 0xdf, 0xaf, 0xae, 0x7c, 0xe7, 0x07, 0xd5, 0x95, 0xef, - 0xfd, 0xa0, 0xba, 0x52, 0x73, 0x20, 0x7f, 0x70, 0x20, 0xb7, 0xfb, 0xba, 0x17, 0xf8, 0x08, 0x41, - 0xca, 0x71, 0x4d, 0x4c, 0x25, 0x64, 0x14, 0xfa, 0x8c, 0x1e, 0x42, 0xda, 0xb0, 0x5d, 0xe3, 0x84, - 0x8a, 0xc8, 0x34, 0xbf, 0xfc, 0xea, 0xac, 0xfa, 0xd6, 0xd0, 0xad, 0x0f, 0xf5, 0x6f, 0xe3, 0x20, - 0xc0, 0x75, 0x13, 0x9f, 0xde, 0x33, 0x5c, 0x0f, 0xdf, 0x1b, 0x61, 0xdf, 0xd7, 0x87, 0xb8, 0xde, - 0x22, 0xc4, 0x0a, 0xe3, 0x79, 0x20, 0xfe, 0xf4, 0xb3, 0xaa, 0x30, 0xf7, 0xbe, 0x7f, 0x15, 0x00, - 0xfa, 0x9e, 0xfb, 0x09, 0x36, 0x02, 0xcb, 0xa5, 0xdb, 0x1b, 0x07, 0x1e, 0x7d, 0x61, 0x5e, 0x21, - 0x8f, 0xe4, 0x18, 0x47, 0x16, 0xb6, 0xd9, 0x96, 0xf3, 0x0a, 0x5b, 0xa0, 0x0a, 0xe4, 0xf0, 0xcb, - 0xb1, 0x6d, 0x19, 0x56, 0x50, 0x4e, 0x6e, 0x0b, 0x3b, 0x39, 0x25, 0x5a, 0xa3, 0x1d, 0x10, 0x2d, - 0x5f, 0x1b, 0xeb, 0x5e, 0x60, 0x11, 0x99, 0xda, 0x09, 0x9e, 0x96, 0x53, 0x94, 0x66, 0xd5, 0xf2, - 0xfb, 0x21, 0xf8, 0x19, 0x9e, 0xa2, 0x2f, 0xc1, 0x2a, 0xa1, 0xf4, 0xac, 0x91, 0xee, 0x4d, 0x29, - 0x5d, 0x9a, 0xd2, 0x15, 0x2d, 0xbf, 0xcf, 0x80, 0x84, 0xea, 0x3e, 0xe4, 0x2d, 0xe7, 0x08, 0x7b, - 0xd8, 0x31, 0x70, 0x39, 0xb3, 0x2d, 0xec, 0x14, 0x76, 0xd7, 0xea, 0xd4, 0x9e, 0x72, 0x08, 0x6e, - 0xa6, 0x3e, 0x3f, 0xab, 0xae, 0x28, 0x33, 0xba, 0xda, 0xff, 0x26, 0x21, 0x1f, 0xa1, 0xc9, 0x21, - 0x82, 0xe9, 0x18, 0xfb, 0x65, 0x61, 0x3b, 0x49, 0x0e, 0x41, 0x17, 0xa8, 0x0e, 0x19, 0x3f, 0xf0, - 0x2c, 0x67, 0x48, 0x8f, 0x50, 0xd8, 0xbd, 0x79, 0x4e, 0x6a, 0x7d, 0x40, 0xb1, 0x0a, 0xa7, 0xa2, - 0x52, 0xac, 0xc0, 0xc6, 0xf4, 0x34, 0x44, 0x0a, 0x59, 0xa0, 0x6d, 0x28, 0x98, 0xd8, 0x37, 0x3c, - 0x6b, 0x4c, 0x8e, 0x45, 0x4f, 0x90, 0x57, 0xe2, 0x20, 0xf4, 0x10, 0x8a, 0x26, 0x3e, 0xd2, 0x27, - 0x76, 0xa0, 0x7d, 0xe2, 0xbb, 0x0e, 0x3d, 0x43, 0xbe, 0xf9, 0xe6, 0xab, 0xb3, 0x6a, 0x19, 0x3b, - 0x86, 0x6b, 0x5a, 0xce, 0xf0, 0x1e, 0x41, 0xd4, 0x15, 0xfd, 0xc5, 0x3e, 0x33, 0x9b, 0x92, 0xe5, - 0x1c, 0xe8, 0x26, 0x64, 0x7c, 0x6c, 0x78, 0x38, 0x28, 0x67, 0xa9, 0x6e, 0xf8, 0x8a, 0x6c, 0x1e, - 0xbf, 0xb4, 0xfc, 0xc0, 0x2f, 0xe7, 0xb6, 0x85, 0x9d, 0xd5, 0xc5, 0xcd, 0x4b, 0x14, 0xab, 0x70, - 0xaa, 0xca, 0x9f, 0x0a, 0x90, 0x61, 0xe7, 0x41, 0x6f, 0x41, 0xd1, 0x70, 0x9d, 0x00, 0x3b, 0x81, - 0x46, 0x14, 0x41, 0x4f, 0x9f, 0x57, 0x0a, 0x1c, 0xa6, 0x4e, 0xc7, 0x98, 0xbc, 0xf5, 0xc8, 0xf5, - 0x46, 0x7a, 0xc0, 0xcf, 0xca, 0x57, 0xe8, 0x1d, 0x10, 0x43, 0xd6, 0x70, 0xeb, 0x74, 0x5f, 0x79, - 0x65, 0x8d, 0xc3, 0x25, 0x0e, 0x46, 0x77, 0x00, 0x46, 0xfa, 0x4b, 0xcd, 0xc6, 0xce, 0x30, 0x38, - 0xa6, 0x67, 0x2e, 0x29, 0xf9, 0x91, 0xfe, 0xb2, 0x43, 0x01, 0x4f, 0x53, 0x39, 0x41, 0x4c, 0x3c, - 0x4d, 0xe5, 0x12, 0x62, 0xf2, 0x69, 0x2a, 0x97, 0x16, 0x33, 0xb5, 0x26, 0x64, 0xd8, 0x9e, 0x51, - 0x01, 0xb2, 0x72, 0xf7, 0x9b, 0x8d, 0x8e, 0xdc, 0x16, 0x57, 0x50, 0x0e, 0x52, 0xfb, 0x07, 0x03, - 0x55, 0x14, 0x50, 0x16, 0x92, 0xfb, 0x8d, 0xe7, 0x62, 0x02, 0x15, 0x21, 0x27, 0xef, 0xf7, 0x3b, - 0x72, 0x4b, 0x56, 0xc5, 0x24, 0x02, 0xc8, 0xb4, 0x1a, 0xdd, 0x6e, 0x4f, 0x15, 0x53, 0xb5, 0xe7, - 0x50, 0xe8, 0xe2, 0xe0, 0x85, 0xeb, 0x9d, 0xf4, 0x5d, 0x8f, 0x2a, 0xcf, 0x99, 0x8c, 0x0e, 0xb1, - 0xc7, 0x83, 0x90, 0xaf, 0x88, 0xfb, 0x86, 0xc1, 0xcc, 0xfd, 0x3a, 0x5a, 0x13, 0x9e, 0xf1, 0xe4, - 0xd0, 0xb6, 0x0c, 0xee, 0xd8, 0x7c, 0x55, 0xfb, 0xf7, 0x12, 0xac, 0xb6, 0x5c, 0xdb, 0x66, 0x91, - 0x32, 0x18, 0x63, 0x03, 0xd5, 0x20, 0xe5, 0xe8, 0x23, 0x16, 0x9f, 0xf9, 0xe6, 0xea, 0xab, 0xb3, - 0x2a, 0xcc, 0x28, 0x14, 0x8a, 0x43, 0x6d, 0x58, 0x7f, 0xe1, 0x59, 0x01, 0xd6, 0x7c, 0xe3, 0x18, - 0x8f, 0x74, 0xe6, 0x01, 0xb9, 0x2b, 0x78, 0x40, 0x81, 0xb2, 0x0d, 0x28, 0x17, 0x6a, 0x82, 0xe8, - 0x61, 0xdd, 0x9c, 0x13, 0x52, 0xb8, 0x82, 0x10, 0x20, 0x5c, 0x5c, 0x86, 0x08, 0x49, 0x12, 0x62, - 0x49, 0x1a, 0x02, 0xe4, 0x11, 0xdd, 0x86, 0xdc, 0x64, 0x62, 0x99, 0x1a, 0x09, 0x79, 0x66, 0xe7, - 0x2c, 0x59, 0xf7, 0x03, 0x8f, 0x18, 0x7a, 0x16, 0xc1, 0x34, 0xe6, 0xfd, 0x72, 0x9a, 0x72, 0xae, - 0x45, 0xf0, 0x3d, 0x0a, 0x46, 0x1f, 0x40, 0x61, 0x1c, 0x65, 0x10, 0xbf, 0x9c, 0xd9, 0x4e, 0xee, - 0x14, 0x76, 0x45, 0xe6, 0x8e, 0xb3, 0xd4, 0xc2, 0x43, 0x34, 0x4e, 0x4a, 0x74, 0xa3, 0x1b, 0x27, - 0x5a, 0x80, 0x47, 0x63, 0x5b, 0x0f, 0x30, 0x3b, 0x56, 0xf6, 0x2a, 0xba, 0xd1, 0x8d, 0x13, 0x95, - 0x73, 0xa1, 0x36, 0xa0, 0xd9, 0x56, 0x43, 0x59, 0xe5, 0x3c, 0x0d, 0xe9, 0x1b, 0xf5, 0x28, 0x69, - 0x3f, 0x75, 0x27, 0x9e, 0xa3, 0xdb, 0xc4, 0x70, 0xca, 0x7a, 0xc4, 0x10, 0x49, 0xf9, 0x06, 0x80, - 0x89, 0x3d, 0xeb, 0x54, 0xa7, 0x51, 0x5c, 0xa4, 0xdc, 0x55, 0x76, 0x88, 0x79, 0xab, 0xd7, 0xdb, - 0x11, 0x99, 0x12, 0x63, 0xa9, 0xfc, 0x30, 0x0f, 0x30, 0x43, 0x21, 0x15, 0x56, 0x0d, 0xd7, 0x71, - 0xb0, 0x11, 0xb8, 0x1e, 0x0b, 0x33, 0x81, 0xc6, 0xe9, 0xfb, 0x97, 0xc8, 0xac, 0xb7, 0x42, 0x2e, - 0x12, 0x88, 0x4a, 0xc9, 0x88, 0x2f, 0xd1, 0x87, 0x40, 0xc2, 0xf4, 0xc8, 0x1a, 0x32, 0x5d, 0x25, - 0xae, 0xa0, 0xab, 0x0c, 0x63, 0x40, 0x3d, 0x80, 0xc0, 0xd3, 0x1d, 0x9f, 0x44, 0xb2, 0x4f, 0xbd, - 0xa0, 0xb0, 0xfb, 0xce, 0x65, 0x9b, 0x51, 0x43, 0x0e, 0x6e, 0xbe, 0x98, 0x08, 0xf4, 0x11, 0xac, - 0xfb, 0xc7, 0x93, 0xa3, 0x23, 0x1b, 0x93, 0xd4, 0xad, 0xb1, 0x04, 0x9b, 0xda, 0x4e, 0xee, 0xac, - 0xee, 0xbe, 0x77, 0x99, 0xdc, 0x01, 0x63, 0xa4, 0x47, 0x5c, 0xe3, 0x52, 0x9e, 0xe1, 0xa9, 0x4a, - 0xf3, 0xf2, 0x03, 0x58, 0xf5, 0x8f, 0x75, 0xcf, 0x9c, 0x19, 0x33, 0x4d, 0xcd, 0xb1, 0x51, 0x0f, - 0x6b, 0x72, 0x7d, 0x40, 0xf0, 0xd4, 0x94, 0x25, 0x4a, 0x1a, 0x99, 0x51, 0x86, 0x1b, 0x1e, 0x36, - 0xdc, 0x53, 0xec, 0x4d, 0x35, 0xdb, 0x1d, 0xce, 0x44, 0x64, 0x5e, 0xe7, 0x0f, 0x1b, 0x21, 0x4f, - 0xc7, 0x1d, 0x46, 0xa2, 0xbe, 0x0e, 0x25, 0x87, 0xe5, 0x12, 0x6d, 0xec, 0x7a, 0x81, 0x5f, 0xce, - 0x52, 0x9d, 0xad, 0xb3, 0xb3, 0xc5, 0xd2, 0x8c, 0x52, 0x74, 0x66, 0x0b, 0xbf, 0xf2, 0xc7, 0x29, - 0xc8, 0x47, 0x7a, 0x43, 0x6f, 0xcd, 0xe5, 0x88, 0xd2, 0xab, 0xb3, 0xea, 0x0c, 0xc9, 0x53, 0xc4, - 0x03, 0x00, 0x23, 0xd2, 0x14, 0xb5, 0x69, 0x61, 0x77, 0x73, 0x99, 0x06, 0x43, 0x23, 0xcc, 0xa8, - 0x51, 0x27, 0xee, 0xfc, 0x3e, 0xb6, 0xa9, 0xab, 0xf0, 0x7a, 0x76, 0x6b, 0x76, 0xd8, 0x8e, 0x7e, - 0x88, 0xed, 0x01, 0x47, 0x73, 0x31, 0xb3, 0x20, 0x08, 0x11, 0x2c, 0x2f, 0x5a, 0xae, 0x67, 0x05, - 0xac, 0x64, 0x97, 0x94, 0x68, 0x8d, 0xbe, 0x02, 0x88, 0xa6, 0x20, 0x13, 0xdb, 0xfa, 0x54, 0xf3, - 0xb1, 0xe1, 0x3a, 0x34, 0x27, 0x10, 0x2a, 0x9a, 0x9c, 0xda, 0x04, 0x31, 0x60, 0x70, 0x54, 0x85, - 0x42, 0xcc, 0x39, 0x68, 0x52, 0xc8, 0x2b, 0x30, 0xb3, 0x34, 0x3a, 0x80, 0x4a, 0x48, 0x60, 0xeb, - 0xa3, 0x43, 0x53, 0xd7, 0xe2, 0x8e, 0x7d, 0x95, 0x24, 0xb0, 0xc1, 0xf9, 0x3b, 0x94, 0xbd, 0xc5, - 0xbc, 0x7c, 0x0f, 0xd0, 0x12, 0x71, 0x57, 0xc9, 0xb7, 0x45, 0x3b, 0x2e, 0xe7, 0x0d, 0xc8, 0xd3, - 0xd3, 0xba, 0x8e, 0x3d, 0xa5, 0xb9, 0x24, 0xa7, 0xe4, 0x08, 0xa0, 0xe7, 0xd8, 0x53, 0x54, 0x87, - 0x8d, 0x4f, 0x98, 0xf7, 0x68, 0x2c, 0x2b, 0x4f, 0x8e, 0x8e, 0xac, 0x97, 0x65, 0xa0, 0x29, 0x74, - 0x9d, 0xa3, 0x14, 0x92, 0x79, 0x29, 0xa2, 0xa6, 0x40, 0x69, 0x2e, 0xaa, 0x51, 0x05, 0x6e, 0xf2, - 0x02, 0xa7, 0xb5, 0x7a, 0xdd, 0xae, 0xd4, 0x52, 0x7b, 0x8a, 0xa6, 0x3e, 0xef, 0x4b, 0xe2, 0x0a, - 0x29, 0x67, 0x83, 0xdf, 0xe8, 0xc8, 0xaa, 0x24, 0x0a, 0x68, 0x15, 0x80, 0x40, 0x07, 0x2d, 0x45, - 0xee, 0xab, 0x62, 0x02, 0xe5, 0x21, 0x2d, 0xef, 0x37, 0x1e, 0x4b, 0x62, 0xb2, 0xb6, 0x0f, 0x85, - 0x58, 0x10, 0xa1, 0x32, 0x6c, 0x86, 0x12, 0x07, 0x4f, 0x0e, 0xf6, 0xf6, 0x3a, 0x52, 0x28, 0xaf, - 0x00, 0xd9, 0x66, 0xaf, 0xd7, 0x91, 0x1a, 0x5d, 0x51, 0x60, 0x95, 0x55, 0x95, 0x1e, 0x4b, 0x8a, - 0x98, 0xa0, 0x6f, 0x52, 0x15, 0xb9, 0xfb, 0x58, 0x4c, 0xd6, 0xbe, 0x9b, 0x80, 0x55, 0x9a, 0xcf, - 0x99, 0x2f, 0x10, 0xd7, 0x42, 0x90, 0x3a, 0xc1, 0xd3, 0xb0, 0x67, 0xa2, 0xcf, 0xa4, 0x38, 0x9e, - 0xea, 0xf6, 0x04, 0xfb, 0xe5, 0x04, 0x85, 0xf2, 0x15, 0x71, 0x1c, 0xd3, 0x35, 0x26, 0x23, 0xec, - 0x04, 0xbc, 0x9d, 0x88, 0xd6, 0xe8, 0x14, 0x6e, 0xd0, 0x02, 0x12, 0xb7, 0x88, 0x36, 0xd2, 0xc7, - 0x34, 0x57, 0x14, 0x76, 0xbf, 0xc2, 0x3c, 0x7d, 0xfe, 0xe5, 0x6c, 0xc9, 0x6c, 0xf1, 0xd4, 0x77, - 0x9d, 0x7d, 0x7d, 0x2c, 0x39, 0x81, 0x37, 0x6d, 0xbe, 0xf9, 0xe9, 0x17, 0xaf, 0xab, 0x0b, 0x47, - 0x33, 0xb6, 0x8a, 0x04, 0xb7, 0x2e, 0x90, 0x12, 0x96, 0x42, 0xde, 0xe6, 0x92, 0x52, 0xb8, 0x09, - 0x69, 0x7a, 0x94, 0xb0, 0xcd, 0xa5, 0x8b, 0x07, 0x89, 0x0f, 0x84, 0xda, 0x5f, 0xa6, 0xa1, 0xd0, - 0xd2, 0xc7, 0xc1, 0xc4, 0xc3, 0xb4, 0xe8, 0x57, 0xe7, 0x02, 0xba, 0xf0, 0xea, 0xac, 0x9a, 0xe5, - 0x68, 0x1e, 0xce, 0x7b, 0x0b, 0x99, 0x3f, 0x41, 0x33, 0x7f, 0x58, 0x4d, 0x66, 0xb2, 0xae, 0x95, - 0xeb, 0x93, 0xd7, 0xc8, 0xf5, 0x5f, 0x83, 0xdc, 0xa1, 0xe5, 0x10, 0x12, 0x9f, 0x6b, 0xf9, 0xf6, - 0xe2, 0xcb, 0x9b, 0x8c, 0x42, 0x89, 0x48, 0x49, 0xd1, 0xb7, 0x9c, 0x00, 0x7b, 0xa7, 0xba, 0x7d, - 0x2e, 0xc0, 0xd7, 0x42, 0x78, 0x18, 0xdf, 0x8b, 0x39, 0x3a, 0xf3, 0xb3, 0xe7, 0xe8, 0xec, 0xcf, - 0x9e, 0xa3, 0x73, 0x57, 0xcb, 0xd1, 0x7f, 0x25, 0x40, 0x96, 0x9f, 0x1f, 0x3d, 0x85, 0x4d, 0x0f, - 0xfb, 0xee, 0xc4, 0x33, 0xf0, 0x5c, 0xd2, 0x10, 0xae, 0xa0, 0xf0, 0xd5, 0x90, 0x93, 0xa7, 0x8d, - 0xb7, 0xa1, 0x14, 0xc9, 0x1a, 0xeb, 0xc1, 0x31, 0x0f, 0x93, 0x62, 0x08, 0xec, 0xeb, 0xc1, 0xf1, - 0xb9, 0x7c, 0x9f, 0xbc, 0x4e, 0xbe, 0xaf, 0xdd, 0x3d, 0x9f, 0x4a, 0xe6, 0x7a, 0xe5, 0x28, 0x3f, - 0x64, 0x6b, 0x9f, 0xe5, 0x61, 0x63, 0x5f, 0x0f, 0xb0, 0x67, 0xe9, 0xb6, 0xf5, 0x6d, 0x3d, 0xea, - 0x59, 0xef, 0xce, 0xb9, 0xef, 0xc6, 0xab, 0xb3, 0xea, 0xda, 0x39, 0x32, 0xee, 0xc6, 0xdd, 0x0b, - 0xdc, 0xf8, 0x2e, 0xdb, 0xe9, 0x12, 0xd9, 0xbf, 0x30, 0x77, 0x7e, 0xb4, 0xe0, 0xce, 0x6f, 0x5d, - 0xbc, 0x89, 0x45, 0xb7, 0xfe, 0x25, 0xef, 0x27, 0xbe, 0x9f, 0xfe, 0xe5, 0xf4, 0xd5, 0x0b, 0x7a, - 0x93, 0xec, 0xcf, 0xa1, 0x37, 0xc9, 0x9f, 0xeb, 0x4d, 0x5a, 0xb0, 0xc6, 0x4a, 0x8c, 0x1f, 0x16, - 0x10, 0xda, 0xbe, 0x44, 0x5b, 0x9d, 0x2f, 0x2e, 0xfc, 0x1d, 0xab, 0x47, 0xf3, 0xf5, 0xee, 0x6d, - 0x28, 0x99, 0xd8, 0x0e, 0x74, 0x6d, 0x32, 0x36, 0xf5, 0x00, 0xfb, 0xe1, 0x30, 0x82, 0x02, 0x0f, - 0x18, 0x0c, 0x1d, 0x02, 0x32, 0xf1, 0xd8, 0xc3, 0x86, 0x1e, 0x60, 0x53, 0xe3, 0x1d, 0x08, 0x77, - 0x86, 0xfb, 0x97, 0x3a, 0x65, 0xbd, 0x1d, 0xf1, 0xf2, 0xe2, 0xad, 0xac, 0x9b, 0xe7, 0x41, 0x17, - 0xb5, 0x17, 0xb9, 0x0b, 0xda, 0x8b, 0xca, 0xef, 0x0a, 0xb0, 0xbe, 0x20, 0x98, 0xdc, 0xbf, 0x87, - 0x9e, 0x3b, 0x19, 0x6b, 0xb3, 0x70, 0x57, 0xf2, 0x14, 0xd2, 0x25, 0xe1, 0xfd, 0x73, 0x6d, 0x1c, - 0x6b, 0xf7, 0x5f, 0x9b, 0x96, 0x66, 0x2d, 0x4d, 0xac, 0x85, 0xc9, 0xd5, 0xfe, 0x27, 0x0f, 0x99, - 0x5e, 0x63, 0x12, 0x1c, 0xef, 0xf2, 0x0b, 0xf9, 0xa9, 0x65, 0xe2, 0x70, 0xf8, 0x14, 0xad, 0xd1, - 0xbb, 0xb0, 0xae, 0x4f, 0x82, 0x63, 0x6d, 0xe2, 0xd9, 0xb3, 0xf0, 0x63, 0x65, 0x7a, 0x8d, 0x20, - 0x0e, 0x3c, 0x3b, 0x8a, 0xb1, 0x0f, 0xe1, 0xb6, 0x6e, 0x18, 0xd8, 0xf7, 0xb5, 0xc0, 0x3d, 0xc1, - 0xce, 0x3c, 0x0f, 0x6b, 0x4c, 0x6e, 0x32, 0x02, 0x95, 0xe0, 0xe3, 0xac, 0x75, 0xd8, 0x98, 0x63, - 0x1d, 0xe1, 0xe0, 0xd8, 0x35, 0xd9, 0x2d, 0x5b, 0x59, 0x8f, 0x31, 0xed, 0x53, 0x04, 0xdd, 0x56, - 0x9c, 0xfe, 0xd0, 0x35, 0xa7, 0xfc, 0x16, 0xbd, 0x16, 0xa3, 0x6e, 0xba, 0xe6, 0x14, 0xfd, 0xbe, - 0x00, 0x77, 0xe6, 0x88, 0x8f, 0xb1, 0x6e, 0x62, 0xcf, 0x9f, 0xf5, 0x42, 0x69, 0x9a, 0x0b, 0xf8, - 0xbd, 0x89, 0x29, 0xa5, 0xde, 0x98, 0x49, 0x79, 0xc2, 0xe8, 0xaf, 0xd1, 0x0a, 0x21, 0x7d, 0x81, - 0x1b, 0x7d, 0x2a, 0xc0, 0xd6, 0xdc, 0x36, 0x3c, 0xec, 0x8f, 0x5d, 0xc7, 0xc7, 0xb3, 0x7d, 0x64, - 0xe2, 0x3d, 0xd9, 0xe2, 0x3e, 0x14, 0xce, 0x70, 0x8d, 0x8d, 0xc4, 0xf5, 0x1d, 0xb2, 0xef, 0xeb, - 0x63, 0xf4, 0x10, 0x2a, 0x1e, 0x3e, 0xf2, 0xb0, 0x7f, 0xbc, 0xcc, 0x56, 0x6c, 0xa8, 0x74, 0x8b, - 0x53, 0x2c, 0x18, 0xeb, 0xab, 0x24, 0x0f, 0xc6, 0x99, 0xb9, 0xb5, 0x8a, 0x94, 0x0d, 0xc5, 0xd9, - 0xb8, 0xb9, 0xe8, 0xf5, 0x25, 0xce, 0x41, 0xed, 0xc5, 0x62, 0x4a, 0x8c, 0xd3, 0x53, 0x83, 0xfd, - 0x81, 0x00, 0x5b, 0xf3, 0xe4, 0x0b, 0x16, 0xcb, 0x2f, 0xd1, 0x94, 0x12, 0x93, 0x73, 0x7d, 0x93, - 0x6d, 0x78, 0x8b, 0xec, 0xe8, 0x8f, 0x04, 0xa8, 0xce, 0xef, 0x64, 0xd1, 0x68, 0x40, 0xb7, 0xf2, - 0xfe, 0x85, 0x5b, 0xf9, 0x7f, 0x58, 0x6d, 0x4e, 0xf3, 0x31, 0xb3, 0x55, 0x3a, 0xb0, 0xf5, 0x7a, - 0xbf, 0xbc, 0x4e, 0x73, 0x5d, 0xd9, 0x87, 0xea, 0x25, 0xde, 0x75, 0x5d, 0x71, 0x97, 0x98, 0xe0, - 0x5a, 0xe2, 0xba, 0xb0, 0x7d, 0x99, 0x1a, 0xaf, 0x75, 0x95, 0xf8, 0xeb, 0x24, 0xe4, 0x54, 0xec, - 0x07, 0xb4, 0x11, 0x43, 0xf1, 0x46, 0x8c, 0xf7, 0x5c, 0xf7, 0x20, 0xed, 0x07, 0x78, 0xcc, 0x6e, - 0x57, 0xa4, 0x41, 0xa1, 0x16, 0x0d, 0x59, 0xea, 0x83, 0x00, 0x8f, 0x79, 0x0e, 0x66, 0x74, 0x95, - 0xff, 0x4e, 0x40, 0x8a, 0x40, 0xd1, 0xd7, 0x20, 0x4f, 0x20, 0xf1, 0x49, 0x53, 0x79, 0x09, 0x77, - 0x9d, 0x76, 0x66, 0x39, 0x42, 0x4a, 0xd3, 0xf4, 0x1d, 0x00, 0xca, 0x66, 0x39, 0x26, 0x7e, 0xc9, - 0xbf, 0x4a, 0x50, 0x41, 0x32, 0x01, 0x9c, 0x9f, 0x6d, 0x27, 0x17, 0x67, 0xdb, 0xa1, 0x00, 0xdf, - 0x70, 0xc7, 0xe1, 0x60, 0x9c, 0x0a, 0x18, 0x10, 0x00, 0xaa, 0xcf, 0xb5, 0x0f, 0xe9, 0xa5, 0x73, - 0xd2, 0x78, 0xcb, 0xf0, 0x21, 0x94, 0x4c, 0xd7, 0xe0, 0x51, 0x76, 0x8a, 0x0d, 0x36, 0x38, 0xb8, - 0xa4, 0xb1, 0x49, 0x11, 0x16, 0xf4, 0x08, 0x20, 0xaa, 0x4b, 0xfe, 0xd5, 0xba, 0x8c, 0x18, 0x43, - 0x6d, 0x0b, 0x52, 0x54, 0x23, 0x00, 0x19, 0xb9, 0xfb, 0x58, 0x1a, 0xa8, 0xac, 0x6e, 0x7d, 0x53, - 0x52, 0xe4, 0xbd, 0xe7, 0xa2, 0x50, 0xfb, 0xae, 0x00, 0x79, 0x45, 0x77, 0x86, 0xec, 0x12, 0xf8, - 0x06, 0xe4, 0x4f, 0xf0, 0x54, 0x63, 0x1f, 0x78, 0x88, 0xda, 0xb2, 0x4a, 0xee, 0x04, 0x4f, 0x9b, - 0xf4, 0x1b, 0xcf, 0x2d, 0xc8, 0x12, 0x24, 0x76, 0x4c, 0xaa, 0xb1, 0xac, 0x92, 0x39, 0xc1, 0x53, - 0xc9, 0x31, 0x51, 0x0d, 0x4a, 0x9e, 0x46, 0xbf, 0xc4, 0x70, 0xce, 0x14, 0x45, 0x17, 0x3c, 0xfa, - 0x91, 0x86, 0x31, 0x6f, 0x41, 0x21, 0xa4, 0x21, 0x02, 0xd2, 0x94, 0x22, 0xcf, 0x28, 0x24, 0xc7, - 0x7c, 0x20, 0x7e, 0xef, 0xb3, 0xea, 0xca, 0xb9, 0x4f, 0x46, 0xab, 0x51, 0xed, 0x1d, 0x04, 0x24, - 0x3b, 0x3e, 0x84, 0x22, 0xeb, 0x61, 0xcc, 0xab, 0x77, 0x87, 0x59, 0xce, 0x81, 0xaa, 0x50, 0x18, - 0x61, 0x6f, 0x48, 0x7b, 0x42, 0xe3, 0x98, 0x1e, 0x2e, 0xa7, 0x00, 0x05, 0xf5, 0x09, 0xa4, 0xf6, - 0x67, 0x09, 0x00, 0xe9, 0x65, 0xe0, 0xe9, 0x46, 0xd0, 0xe8, 0xcb, 0x95, 0x1f, 0x0a, 0x90, 0xe1, - 0x1d, 0x65, 0x7c, 0x9e, 0x2c, 0xcc, 0xcf, 0x93, 0x1f, 0x41, 0x21, 0x3e, 0xbb, 0xbe, 0xca, 0xe0, - 0x12, 0x18, 0x03, 0x89, 0x36, 0xe2, 0x66, 0xac, 0xc1, 0x1b, 0x07, 0x9e, 0xcf, 0x47, 0xd8, 0x79, - 0x0a, 0xe9, 0x07, 0xde, 0xc2, 0x08, 0x3a, 0x75, 0xe5, 0x11, 0x74, 0xed, 0x39, 0xa4, 0x5a, 0xae, - 0x79, 0xae, 0x5f, 0x29, 0x41, 0xbe, 0xd5, 0xeb, 0xee, 0xc9, 0x8f, 0x0f, 0x14, 0x89, 0x0d, 0x4d, - 0xa4, 0x6f, 0xa9, 0x4a, 0xa3, 0xa5, 0x8a, 0x09, 0x84, 0x60, 0x95, 0x2f, 0xa4, 0xb6, 0x76, 0x70, - 0x20, 0xb7, 0xc5, 0x24, 0xda, 0x04, 0x71, 0x06, 0xdb, 0x93, 0xa5, 0x4e, 0x7b, 0x20, 0xa6, 0x6a, - 0x3f, 0x4a, 0x01, 0xb4, 0xdc, 0xd1, 0xa1, 0xe5, 0x60, 0xa2, 0xa7, 0xff, 0x9a, 0xe9, 0xe9, 0x9c, - 0x32, 0x84, 0x6b, 0x2a, 0xe3, 0x36, 0x10, 0x5f, 0x63, 0xaa, 0x60, 0x3d, 0x3b, 0xf1, 0x37, 0xaa, - 0x88, 0x9b, 0x90, 0xe1, 0xc3, 0x7a, 0xa6, 0x23, 0xbe, 0x22, 0xf5, 0x92, 0x59, 0xc6, 0xd6, 0x0d, - 0x7c, 0xec, 0xda, 0x26, 0xf6, 0x62, 0x53, 0x7f, 0x44, 0xad, 0x34, 0x43, 0x11, 0x83, 0x9d, 0x53, - 0x69, 0xfa, 0xca, 0x2a, 0xad, 0xfc, 0x0e, 0xa4, 0x89, 0x1b, 0xfa, 0xe8, 0x57, 0x20, 0x65, 0xe3, - 0xa3, 0x80, 0x9e, 0xaf, 0xb0, 0x8b, 0x18, 0x6f, 0xdb, 0x35, 0xfc, 0x86, 0x63, 0x36, 0xa7, 0x01, - 0xf6, 0x15, 0x8a, 0x47, 0x3b, 0x90, 0xf6, 0xac, 0xe1, 0x71, 0xc0, 0x47, 0x9f, 0xcb, 0x08, 0x19, - 0x01, 0xfa, 0x12, 0x24, 0xdd, 0x49, 0xc0, 0xbb, 0xd4, 0x65, 0x74, 0x04, 0x5d, 0xfb, 0x67, 0xe1, - 0x0a, 0x46, 0x5d, 0x83, 0x82, 0x22, 0xb5, 0x0f, 0x5a, 0x92, 0xd6, 0x91, 0xf6, 0x88, 0x61, 0xd7, - 0xa1, 0xd4, 0xea, 0xed, 0x37, 0xe5, 0xae, 0xa4, 0x29, 0xf2, 0xe3, 0x27, 0xaa, 0x98, 0x44, 0x22, - 0x14, 0xda, 0x4a, 0x43, 0xee, 0x6a, 0xad, 0x27, 0x07, 0xdd, 0x67, 0xe2, 0xe7, 0x02, 0xda, 0x82, - 0xdb, 0x14, 0x22, 0xb5, 0x35, 0x4e, 0xdc, 0xd6, 0xda, 0xbd, 0xd6, 0xc1, 0xbe, 0xd4, 0x55, 0xc5, - 0xbf, 0x17, 0xd0, 0x1d, 0x28, 0x87, 0x78, 0x26, 0x3d, 0x86, 0xfe, 0x07, 0x21, 0x12, 0x28, 0xb5, - 0xb5, 0x67, 0xd2, 0x73, 0xf1, 0x47, 0x02, 0xda, 0x80, 0xd5, 0x10, 0xc2, 0x1d, 0xe7, 0x1f, 0x05, - 0x84, 0xa0, 0x14, 0x02, 0x07, 0x6a, 0x43, 0x1d, 0x88, 0xff, 0x24, 0xd4, 0xfe, 0x22, 0x05, 0xb9, - 0xe6, 0xc4, 0xb2, 0x4d, 0xe2, 0x4b, 0xff, 0x36, 0x17, 0x73, 0x87, 0x04, 0xac, 0x59, 0x66, 0x18, - 0x73, 0x74, 0x2d, 0x9b, 0x33, 0x94, 0x79, 0xc8, 0x6b, 0x11, 0x43, 0xb5, 0x0f, 0xe9, 0x57, 0x45, - 0x7a, 0xc9, 0xe3, 0x39, 0x9d, 0xaf, 0xd0, 0x2e, 0x14, 0xf8, 0x8d, 0x90, 0x16, 0x92, 0x14, 0x2d, - 0x24, 0xeb, 0xe1, 0x7d, 0x2f, 0xfa, 0x3e, 0xa8, 0x00, 0xa3, 0xa2, 0x19, 0xf3, 0x3d, 0x58, 0x9f, - 0x0d, 0x0a, 0xf8, 0xcd, 0x95, 0x7f, 0x06, 0x15, 0x23, 0x04, 0xbf, 0xde, 0xa2, 0xb7, 0xa0, 0xc8, - 0x7d, 0x45, 0xf3, 0x5c, 0x37, 0x60, 0xdf, 0x42, 0x23, 0xff, 0x51, 0x5c, 0x37, 0xa8, 0xfc, 0x16, - 0xa4, 0xf7, 0x70, 0x60, 0x1c, 0x13, 0xda, 0xe8, 0x82, 0x3a, 0xf1, 0x6c, 0x7e, 0xbc, 0x42, 0x08, - 0x3b, 0xf0, 0x6c, 0xf4, 0x6b, 0xe7, 0x3e, 0x65, 0x26, 0x2e, 0xda, 0x70, 0xfc, 0xeb, 0x66, 0xed, - 0x2c, 0x74, 0x90, 0x3c, 0xa4, 0x9b, 0xd2, 0x63, 0xb9, 0xcb, 0x3e, 0x33, 0xf6, 0x7b, 0x9d, 0x0e, - 0x1f, 0xba, 0x2a, 0x8d, 0xfd, 0x7e, 0xaf, 0x23, 0x77, 0xc9, 0x8d, 0x65, 0x13, 0xc4, 0xd9, 0x5a, - 0xdb, 0x93, 0xd4, 0xd6, 0x13, 0x31, 0x89, 0xaa, 0xf0, 0x46, 0x0c, 0x4a, 0x9d, 0xac, 0xa1, 0x4a, - 0x5a, 0xab, 0xd1, 0x57, 0x89, 0x83, 0xa5, 0xd0, 0x5d, 0x78, 0x7b, 0x19, 0xc1, 0x7e, 0x43, 0x95, - 0x14, 0xb9, 0xd1, 0x91, 0x3f, 0x6e, 0xa8, 0x72, 0xaf, 0x2b, 0xa6, 0xc9, 0x9b, 0xdb, 0xbd, 0xae, - 0x24, 0x66, 0xc8, 0x9b, 0xc8, 0x93, 0xf6, 0x91, 0xac, 0x3e, 0xd1, 0x24, 0x45, 0xe9, 0x29, 0x03, - 0x31, 0x8b, 0xee, 0xc0, 0xed, 0x98, 0xa0, 0x76, 0xaf, 0xf5, 0x4c, 0x52, 0x34, 0xb9, 0x3b, 0xe8, - 0x4b, 0x2d, 0x55, 0xcc, 0x91, 0x84, 0xd4, 0x6a, 0xa8, 0x8d, 0x4e, 0xef, 0xb1, 0x36, 0x68, 0x3d, - 0x91, 0xf6, 0x1b, 0xa2, 0x59, 0xdb, 0x80, 0x75, 0x05, 0xfb, 0x38, 0xa0, 0xe5, 0x40, 0xc1, 0xbf, - 0x3d, 0xc1, 0x7e, 0x50, 0xdb, 0x04, 0x14, 0x07, 0xb2, 0x5e, 0xa6, 0xf6, 0x08, 0x50, 0xc3, 0x3c, - 0xd5, 0x1d, 0x03, 0xab, 0xd6, 0x28, 0xa4, 0x45, 0x77, 0x61, 0x4d, 0x67, 0xd0, 0x68, 0x10, 0x48, - 0xb4, 0x9f, 0x52, 0x56, 0x39, 0x98, 0xcf, 0x01, 0x6b, 0x37, 0x60, 0x63, 0x8e, 0x9d, 0x4b, 0xfd, - 0x00, 0x8a, 0xf1, 0xb8, 0x24, 0xcd, 0x0e, 0x29, 0xd2, 0xfc, 0x33, 0x2c, 0x2b, 0xd8, 0x9b, 0x90, - 0x3e, 0x24, 0x48, 0x6a, 0xb4, 0x94, 0xc2, 0x16, 0xb5, 0x3f, 0x11, 0xa0, 0x24, 0x3b, 0x43, 0xec, - 0x07, 0xe1, 0x5e, 0xe6, 0x7b, 0x08, 0xe1, 0xd2, 0x1e, 0x22, 0x1e, 0x11, 0x89, 0xf9, 0x88, 0x58, - 0x68, 0x2f, 0x92, 0x57, 0x6d, 0x2f, 0x6a, 0xff, 0x92, 0x80, 0xd5, 0x70, 0x5f, 0xec, 0x90, 0xe8, - 0x6f, 0x84, 0xd9, 0x45, 0x9d, 0x7d, 0xe3, 0x25, 0x97, 0x04, 0x36, 0x30, 0x8f, 0xee, 0x72, 0xf3, - 0x3c, 0xe1, 0x94, 0xe8, 0x23, 0x42, 0x4e, 0xda, 0x53, 0x9f, 0x35, 0xe3, 0xbf, 0xf9, 0x7b, 0x5f, - 0x54, 0xdf, 0x5b, 0xf6, 0x37, 0x8e, 0x73, 0xff, 0x52, 0x09, 0xf9, 0x3f, 0xfd, 0xa2, 0xfa, 0xee, - 0x55, 0xc8, 0x7b, 0x47, 0x47, 0x3e, 0x0e, 0xa2, 0xa1, 0xc1, 0xec, 0xb5, 0xe8, 0xd7, 0xa1, 0x18, - 0xee, 0x1d, 0x07, 0x86, 0xc9, 0x73, 0x6f, 0x6c, 0x9e, 0xc5, 0x9a, 0xe7, 0xba, 0x14, 0x18, 0x66, - 0x98, 0xe5, 0x39, 0x03, 0x01, 0x55, 0xda, 0x70, 0x73, 0xf9, 0x59, 0x2e, 0xeb, 0x88, 0x93, 0xf1, - 0x8e, 0xf8, 0xcf, 0x13, 0x70, 0x4b, 0xd5, 0xfd, 0x93, 0x70, 0xfa, 0xe5, 0xb9, 0x2f, 0xa7, 0xa1, - 0xdd, 0xbf, 0x0e, 0x29, 0x77, 0x8c, 0x1d, 0x5e, 0x3e, 0x6a, 0xbc, 0x9b, 0x5d, 0x4e, 0x5c, 0xef, - 0x8d, 0xb1, 0xa3, 0x50, 0x7a, 0xea, 0x6b, 0x7a, 0xa0, 0xd3, 0x97, 0x15, 0x15, 0xfa, 0x5c, 0xf9, - 0x5b, 0x01, 0x52, 0x84, 0x04, 0xed, 0x40, 0x86, 0xdd, 0xe4, 0xb8, 0x58, 0xf1, 0xfc, 0x81, 0x15, - 0x8e, 0x47, 0x1d, 0xc8, 0xb1, 0xa9, 0x61, 0xe8, 0x46, 0xcd, 0x5f, 0x7d, 0x75, 0x56, 0x7d, 0x7f, - 0x99, 0xd6, 0x17, 0xfe, 0x2a, 0xc4, 0xe6, 0x89, 0x72, 0x5b, 0xc9, 0x52, 0x11, 0x32, 0xed, 0xaa, - 0x02, 0xdd, 0x1b, 0xe2, 0x80, 0xce, 0xfe, 0x68, 0xd6, 0x2d, 0x29, 0xc0, 0x40, 0xf4, 0xaf, 0x0a, - 0x55, 0x28, 0x18, 0xb6, 0x45, 0x12, 0x99, 0x6e, 0x9a, 0x61, 0x61, 0x06, 0x06, 0x6a, 0x98, 0xa6, - 0x57, 0xfb, 0xc3, 0x24, 0x94, 0x17, 0x4f, 0xcf, 0x5d, 0xb1, 0x0f, 0x25, 0x72, 0xf6, 0xe8, 0x6e, - 0xc8, 0x4f, 0xf7, 0xde, 0x45, 0x4a, 0xe3, 0xde, 0x48, 0xb5, 0xc6, 0x17, 0x4a, 0xd1, 0x8d, 0xad, - 0x96, 0x6a, 0xf1, 0x05, 0x14, 0xe3, 0x1c, 0xe8, 0x11, 0x64, 0xfc, 0x40, 0x0f, 0x26, 0x3e, 0xbf, - 0x71, 0x7c, 0xf9, 0x92, 0xd7, 0x0d, 0x28, 0xb1, 0xc2, 0x99, 0x62, 0xb6, 0x48, 0xbc, 0xde, 0x16, - 0xb5, 0xef, 0xd0, 0x3f, 0xaf, 0x50, 0xa6, 0x0c, 0x24, 0x7a, 0xcf, 0xc4, 0x15, 0xb4, 0x01, 0x6b, - 0x83, 0x27, 0x0d, 0xa5, 0xad, 0x75, 0x7b, 0xaa, 0xb6, 0xd7, 0x3b, 0xe8, 0xb6, 0x45, 0x81, 0x24, - 0xd0, 0x6e, 0x4f, 0x63, 0xf0, 0xbe, 0x22, 0xef, 0x37, 0x94, 0xe7, 0x62, 0x02, 0xdd, 0x80, 0x75, - 0x42, 0x34, 0x0f, 0x4e, 0x92, 0xc4, 0x29, 0x77, 0x55, 0x49, 0xe9, 0x36, 0x3a, 0x2c, 0xd9, 0x8a, - 0x29, 0xd2, 0x04, 0x30, 0xb2, 0x81, 0xda, 0xeb, 0xf7, 0xa5, 0xb6, 0x98, 0x46, 0x37, 0x40, 0xec, - 0xf7, 0x14, 0x95, 0xbe, 0xa7, 0xd1, 0xe9, 0xf4, 0x3e, 0x92, 0xda, 0xe2, 0x4f, 0xb3, 0xef, 0x76, - 0xa1, 0x10, 0xab, 0x2f, 0xa4, 0xd5, 0xe0, 0x59, 0x58, 0x5c, 0x21, 0xbd, 0xc5, 0xd3, 0x41, 0xaf, - 0x1b, 0xe6, 0x63, 0x81, 0xfe, 0x45, 0x85, 0xf6, 0x1e, 0x62, 0x8a, 0xec, 0x26, 0x6c, 0x09, 0x06, - 0xda, 0x9e, 0xfc, 0x2d, 0x5a, 0x2e, 0xd2, 0xbb, 0x7f, 0x27, 0x40, 0x96, 0x5c, 0xd5, 0x2c, 0x67, - 0x88, 0xbe, 0x01, 0x30, 0xcb, 0xd4, 0xe8, 0x16, 0xd3, 0xea, 0x42, 0x42, 0xaf, 0x94, 0x17, 0x11, - 0xdc, 0x30, 0x4d, 0x28, 0xc4, 0xb2, 0x32, 0xe2, 0x84, 0x8b, 0x79, 0xbe, 0x72, 0x7b, 0x09, 0x86, - 0xcb, 0xb8, 0x0f, 0x19, 0x96, 0xbb, 0xd0, 0xc6, 0x7c, 0x26, 0x63, 0x9c, 0x9b, 0xcb, 0xd2, 0xdb, - 0xee, 0xc7, 0x50, 0x8c, 0x5b, 0x1e, 0x3d, 0x85, 0x34, 0x7b, 0xb8, 0xf3, 0xda, 0xf0, 0xad, 0x6c, - 0xbd, 0xde, 0x73, 0x76, 0x84, 0xaf, 0x0a, 0xcd, 0x87, 0x9f, 0xff, 0xc7, 0xd6, 0xca, 0xe7, 0x3f, - 0xd9, 0x12, 0x7e, 0xfc, 0x93, 0x2d, 0xe1, 0xb3, 0xff, 0xdc, 0x12, 0x3e, 0x7e, 0x67, 0x68, 0x05, - 0xc7, 0x93, 0xc3, 0xba, 0xe1, 0x8e, 0xee, 0x61, 0x3f, 0x98, 0xe8, 0xde, 0x94, 0xfd, 0xdb, 0x6f, - 0xe1, 0xff, 0x7f, 0x87, 0x19, 0xba, 0xbe, 0xff, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xc8, 0x72, - 0xec, 0xc8, 0x1b, 0x28, 0x00, 0x00, + // 3763 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x3a, 0x4b, 0x6c, 0xdb, 0x68, + 0x7a, 0xa6, 0xde, 0xfa, 0xf4, 0x30, 0xfd, 0xdb, 0x49, 0x14, 0xcd, 0xc4, 0x72, 0x34, 0xbb, 0x8d, + 0x67, 0x66, 0x47, 0xd9, 0x3a, 0xdd, 0xc5, 0x4c, 0x82, 0x74, 0xa1, 0x07, 0x9d, 0x30, 0x91, 0x25, + 0x95, 0xa2, 0x77, 0x36, 0x03, 0x14, 0x2c, 0x4d, 0xfe, 0x96, 0x39, 0xa6, 0x48, 0x95, 0xa4, 0x92, + 0x68, 0x2f, 0x2d, 0x8a, 0x02, 0x05, 0x06, 0x2d, 0xba, 0x97, 0x62, 0xf7, 0xd6, 0xec, 0x02, 0x05, + 0x8a, 0x9e, 0x8b, 0x02, 0xed, 0x5e, 0x0a, 0xf4, 0x32, 0x7d, 0x01, 0x8b, 0x16, 0xbd, 0xb4, 0x80, + 0x07, 0xdd, 0x1e, 0xba, 0xa7, 0x9e, 0x7a, 0xca, 0xa9, 0xf8, 0x1f, 0xa4, 0x28, 0xcb, 0x8e, 0xed, + 0xee, 0xee, 0x61, 0x2e, 0x02, 0xff, 0xef, 0xc5, 0xff, 0xff, 0xde, 0xff, 0x47, 0xc1, 0xdb, 0x23, + 0xf7, 0xee, 0xc4, 0x73, 0x03, 0xd7, 0x70, 0x6d, 0xff, 0xee, 0xa1, 0xed, 0xbe, 0xa0, 0x3f, 0x0d, + 0x0a, 0x43, 0x29, 0xf2, 0x5c, 0xdd, 0x3c, 0xf0, 0xdc, 0x63, 0xec, 0x45, 0x74, 0xd1, 0x03, 0xa3, + 0xaa, 0x6e, 0x19, 0xae, 0xe3, 0x4f, 0xc7, 0x6f, 0xa0, 0xd8, 0x18, 0xb9, 0x23, 0x97, 0x3e, 0xde, + 0x25, 0x4f, 0x0c, 0x5a, 0x7f, 0x08, 0xe9, 0xa1, 0x6d, 0x19, 0x18, 0x6d, 0x40, 0xfa, 0x00, 0x8f, + 0x2c, 0xa7, 0x22, 0x6c, 0x09, 0xdb, 0x25, 0x85, 0x2d, 0x90, 0x08, 0x49, 0xec, 0x98, 0x95, 0x04, + 0x85, 0x91, 0xc7, 0xfb, 0xc5, 0x9f, 0xfc, 0xb0, 0xb6, 0xf2, 0xbd, 0x1f, 0xd5, 0x56, 0x7e, 0xf0, + 0xa3, 0xda, 0x4a, 0xdd, 0x81, 0xfc, 0xfe, 0xbe, 0xdc, 0x19, 0xe8, 0x5e, 0xe0, 0x23, 0x04, 0x29, + 0xc7, 0x35, 0x31, 0x95, 0x90, 0x51, 0xe8, 0x33, 0x7a, 0x00, 0x69, 0xc3, 0x76, 0x8d, 0x63, 0x2a, + 0x22, 0xd3, 0xfa, 0xea, 0xeb, 0x93, 0xda, 0xed, 0x91, 0xdb, 0x18, 0xe9, 0xdf, 0xc5, 0x41, 0x80, + 0x1b, 0x26, 0x7e, 0x7e, 0xd7, 0x70, 0x3d, 0x7c, 0x77, 0x8c, 0x7d, 0x5f, 0x1f, 0xe1, 0x46, 0x9b, + 0x10, 0x2b, 0x8c, 0xe7, 0xbe, 0xf8, 0xb3, 0x57, 0x35, 0x61, 0xe1, 0x7d, 0xff, 0x26, 0x00, 0x0c, + 0x3c, 0xf7, 0x53, 0x6c, 0x04, 0x96, 0x4b, 0xb7, 0x37, 0x09, 0x3c, 0xfa, 0xc2, 0xbc, 0x42, 0x1e, + 0xc9, 0x31, 0x0e, 0x2d, 0x6c, 0xb3, 0x2d, 0xe7, 0x15, 0xb6, 0x40, 0x55, 0xc8, 0xe1, 0x97, 0x13, + 0xdb, 0x32, 0xac, 0xa0, 0x92, 0xdc, 0x12, 0xb6, 0x73, 0x4a, 0xb4, 0x46, 0xdb, 0x20, 0x5a, 0xbe, + 0x36, 0xd1, 0xbd, 0xc0, 0x22, 0x32, 0xb5, 0x63, 0x3c, 0xab, 0xa4, 0x28, 0x4d, 0xd9, 0xf2, 0x07, + 0x21, 0xf8, 0x29, 0x9e, 0xa1, 0xaf, 0x40, 0x99, 0x50, 0x7a, 0xd6, 0x58, 0xf7, 0x66, 0x94, 0x2e, + 0x4d, 0xe9, 0x8a, 0x96, 0x3f, 0x60, 0x40, 0x42, 0x75, 0x0f, 0xf2, 0x96, 0x73, 0x88, 0x3d, 0xec, + 0x18, 0xb8, 0x92, 0xd9, 0x12, 0xb6, 0x0b, 0x3b, 0xab, 0x0d, 0x6a, 0x4f, 0x39, 0x04, 0xb7, 0x52, + 0x9f, 0x9f, 0xd4, 0x56, 0x94, 0x39, 0x5d, 0xfd, 0x7f, 0x93, 0x90, 0x8f, 0xd0, 0xe4, 0x10, 0xc1, + 0x6c, 0x82, 0xfd, 0x8a, 0xb0, 0x95, 0x24, 0x87, 0xa0, 0x0b, 0xd4, 0x80, 0x8c, 0x1f, 0x78, 0x96, + 0x33, 0xa2, 0x47, 0x28, 0xec, 0x5c, 0x3f, 0x25, 0xb5, 0x31, 0xa4, 0x58, 0x85, 0x53, 0x51, 0x29, + 0x56, 0x60, 0x63, 0x7a, 0x1a, 0x22, 0x85, 0x2c, 0xd0, 0x16, 0x14, 0x4c, 0xec, 0x1b, 0x9e, 0x35, + 0x21, 0xc7, 0xa2, 0x27, 0xc8, 0x2b, 0x71, 0x10, 0x7a, 0x00, 0x45, 0x13, 0x1f, 0xea, 0x53, 0x3b, + 0xd0, 0x3e, 0xf5, 0x5d, 0x87, 0x9e, 0x21, 0xdf, 0x7a, 0xfb, 0xf5, 0x49, 0xad, 0x82, 0x1d, 0xc3, + 0x35, 0x2d, 0x67, 0x74, 0x97, 0x20, 0x1a, 0x8a, 0xfe, 0x62, 0x8f, 0x99, 0x4d, 0xc9, 0x72, 0x0e, + 0x74, 0x1d, 0x32, 0x3e, 0x36, 0x3c, 0x1c, 0x54, 0xb2, 0x54, 0x37, 0x7c, 0x45, 0x36, 0x8f, 0x5f, + 0x5a, 0x7e, 0xe0, 0x57, 0x72, 0x5b, 0xc2, 0x76, 0x79, 0x79, 0xf3, 0x12, 0xc5, 0x2a, 0x9c, 0xaa, + 0xfa, 0xa7, 0x02, 0x64, 0xd8, 0x79, 0xd0, 0x6d, 0x28, 0x1a, 0xae, 0x13, 0x60, 0x27, 0xd0, 0x88, + 0x22, 0xe8, 0xe9, 0xf3, 0x4a, 0x81, 0xc3, 0xd4, 0xd9, 0x04, 0x93, 0xb7, 0x1e, 0xba, 0xde, 0x58, + 0x0f, 0xf8, 0x59, 0xf9, 0x0a, 0xbd, 0x0b, 0x62, 0xc8, 0x1a, 0x6e, 0x9d, 0xee, 0x2b, 0xaf, 0xac, + 0x72, 0xb8, 0xc4, 0xc1, 0xe8, 0x16, 0xc0, 0x58, 0x7f, 0xa9, 0xd9, 0xd8, 0x19, 0x05, 0x47, 0xf4, + 0xcc, 0x25, 0x25, 0x3f, 0xd6, 0x5f, 0x76, 0x29, 0xe0, 0x49, 0x2a, 0x27, 0x88, 0x89, 0x27, 0xa9, + 0x5c, 0x42, 0x4c, 0x3e, 0x49, 0xe5, 0xd2, 0x62, 0xa6, 0xde, 0x82, 0x0c, 0xdb, 0x33, 0x2a, 0x40, + 0x56, 0xee, 0x7d, 0xbb, 0xd9, 0x95, 0x3b, 0xe2, 0x0a, 0xca, 0x41, 0x6a, 0x6f, 0x7f, 0xa8, 0x8a, + 0x02, 0xca, 0x42, 0x72, 0xaf, 0xf9, 0x4c, 0x4c, 0xa0, 0x22, 0xe4, 0xe4, 0xbd, 0x41, 0x57, 0x6e, + 0xcb, 0xaa, 0x98, 0x44, 0x00, 0x99, 0x76, 0xb3, 0xd7, 0xeb, 0xab, 0x62, 0xaa, 0xfe, 0x0c, 0x0a, + 0x3d, 0x1c, 0xbc, 0x70, 0xbd, 0xe3, 0x81, 0xeb, 0x51, 0xe5, 0x39, 0xd3, 0xf1, 0x01, 0xf6, 0x78, + 0x10, 0xf2, 0x15, 0x71, 0xdf, 0x30, 0x98, 0xb9, 0x5f, 0x47, 0x6b, 0xc2, 0x33, 0x99, 0x1e, 0xd8, + 0x96, 0xc1, 0x1d, 0x9b, 0xaf, 0xea, 0xff, 0x51, 0x82, 0x72, 0xdb, 0xb5, 0x6d, 0x16, 0x29, 0xc3, + 0x09, 0x36, 0x50, 0x1d, 0x52, 0x8e, 0x3e, 0x66, 0xf1, 0x99, 0x6f, 0x95, 0x5f, 0x9f, 0xd4, 0x60, + 0x4e, 0xa1, 0x50, 0x1c, 0xea, 0xc0, 0xda, 0x0b, 0xcf, 0x0a, 0xb0, 0xe6, 0x1b, 0x47, 0x78, 0xac, + 0x33, 0x0f, 0xc8, 0x5d, 0xc2, 0x03, 0x0a, 0x94, 0x6d, 0x48, 0xb9, 0x50, 0x0b, 0x44, 0x0f, 0xeb, + 0xe6, 0x82, 0x90, 0xc2, 0x25, 0x84, 0x00, 0xe1, 0xe2, 0x32, 0x44, 0x48, 0x92, 0x10, 0x4b, 0xd2, + 0x10, 0x20, 0x8f, 0xe8, 0x26, 0xe4, 0xa6, 0x53, 0xcb, 0xd4, 0x48, 0xc8, 0x33, 0x3b, 0x67, 0xc9, + 0x7a, 0x10, 0x78, 0xc4, 0xd0, 0xf3, 0x08, 0xa6, 0x31, 0xef, 0x57, 0xd2, 0x94, 0x73, 0x35, 0x82, + 0xef, 0x52, 0x30, 0xfa, 0x10, 0x0a, 0x93, 0x28, 0x83, 0xf8, 0x95, 0xcc, 0x56, 0x72, 0xbb, 0xb0, + 0x23, 0x32, 0x77, 0x9c, 0xa7, 0x16, 0x1e, 0xa2, 0x71, 0x52, 0xa2, 0x1b, 0xdd, 0x38, 0xd6, 0x02, + 0x3c, 0x9e, 0xd8, 0x7a, 0x80, 0xd9, 0xb1, 0xb2, 0x97, 0xd1, 0x8d, 0x6e, 0x1c, 0xab, 0x9c, 0x0b, + 0x75, 0x00, 0xcd, 0xb7, 0x1a, 0xca, 0xaa, 0xe4, 0x69, 0x48, 0x5f, 0x6b, 0x44, 0x49, 0xfb, 0x89, + 0x3b, 0xf5, 0x1c, 0xdd, 0x26, 0x86, 0x53, 0xd6, 0x22, 0x86, 0x48, 0xca, 0xb7, 0x00, 0x4c, 0xec, + 0x59, 0xcf, 0x75, 0x1a, 0xc5, 0x45, 0xca, 0x5d, 0x63, 0x87, 0x58, 0xb4, 0x7a, 0xa3, 0x13, 0x91, + 0x29, 0x31, 0x96, 0xea, 0x8f, 0xf3, 0x00, 0x73, 0x14, 0x52, 0xa1, 0x6c, 0xb8, 0x8e, 0x83, 0x8d, + 0xc0, 0xf5, 0x58, 0x98, 0x09, 0x34, 0x4e, 0x3f, 0xb8, 0x40, 0x66, 0xa3, 0x1d, 0x72, 0x91, 0x40, + 0x54, 0x4a, 0x46, 0x7c, 0x89, 0x3e, 0x02, 0x12, 0xa6, 0x87, 0xd6, 0x88, 0xe9, 0x2a, 0x71, 0x09, + 0x5d, 0x65, 0x18, 0x03, 0xea, 0x03, 0x04, 0x9e, 0xee, 0xf8, 0x24, 0x92, 0x7d, 0xea, 0x05, 0x85, + 0x9d, 0x77, 0x2f, 0xda, 0x8c, 0x1a, 0x72, 0x70, 0xf3, 0xc5, 0x44, 0xa0, 0x8f, 0x61, 0xcd, 0x3f, + 0x9a, 0x1e, 0x1e, 0xda, 0x98, 0xa4, 0x6e, 0x8d, 0x25, 0xd8, 0xd4, 0x56, 0x72, 0xbb, 0xbc, 0xf3, + 0xfe, 0x45, 0x72, 0x87, 0x8c, 0x91, 0x1e, 0x71, 0x95, 0x4b, 0x79, 0x8a, 0x67, 0x2a, 0xcd, 0xcb, + 0xf7, 0xa1, 0xec, 0x1f, 0xe9, 0x9e, 0x39, 0x37, 0x66, 0x9a, 0x9a, 0x63, 0xbd, 0x11, 0xd6, 0xe4, + 0xc6, 0x90, 0xe0, 0xa9, 0x29, 0x4b, 0x94, 0x34, 0x32, 0xa3, 0x0c, 0xd7, 0x3c, 0x6c, 0xb8, 0xcf, + 0xb1, 0x37, 0xd3, 0x6c, 0x77, 0x34, 0x17, 0x91, 0x79, 0x93, 0x3f, 0xac, 0x87, 0x3c, 0x5d, 0x77, + 0x14, 0x89, 0xfa, 0x26, 0x94, 0x1c, 0x96, 0x4b, 0xb4, 0x89, 0xeb, 0x05, 0x7e, 0x25, 0x4b, 0x75, + 0xb6, 0xc6, 0xce, 0x16, 0x4b, 0x33, 0x4a, 0xd1, 0x99, 0x2f, 0xfc, 0xea, 0x1f, 0xa7, 0x20, 0x1f, + 0xe9, 0x0d, 0xdd, 0x5e, 0xc8, 0x11, 0xa5, 0xd7, 0x27, 0xb5, 0x39, 0x92, 0xa7, 0x88, 0xfb, 0x00, + 0x46, 0xa4, 0x29, 0x6a, 0xd3, 0xc2, 0xce, 0xc6, 0x59, 0x1a, 0x0c, 0x8d, 0x30, 0xa7, 0x46, 0xdd, + 0xb8, 0xf3, 0xfb, 0xd8, 0xa6, 0xae, 0xc2, 0xeb, 0xd9, 0x8d, 0xf9, 0x61, 0xbb, 0xfa, 0x01, 0xb6, + 0x87, 0x1c, 0xcd, 0xc5, 0xcc, 0x83, 0x20, 0x44, 0xb0, 0xbc, 0x68, 0xb9, 0x9e, 0x15, 0xb0, 0x92, + 0x5d, 0x52, 0xa2, 0x35, 0xfa, 0x1a, 0x20, 0x9a, 0x82, 0x4c, 0x6c, 0xeb, 0x33, 0xcd, 0xc7, 0x86, + 0xeb, 0xd0, 0x9c, 0x40, 0xa8, 0x68, 0x72, 0xea, 0x10, 0xc4, 0x90, 0xc1, 0x51, 0x0d, 0x0a, 0x31, + 0xe7, 0xa0, 0x49, 0x21, 0xaf, 0xc0, 0xdc, 0xd2, 0x68, 0x1f, 0xaa, 0x21, 0x81, 0xad, 0x8f, 0x0f, + 0x4c, 0x5d, 0x8b, 0x3b, 0xf6, 0x65, 0x92, 0xc0, 0x3a, 0xe7, 0xef, 0x52, 0xf6, 0x36, 0xf3, 0xf2, + 0x5d, 0x40, 0x67, 0x88, 0xbb, 0x4c, 0xbe, 0x2d, 0xda, 0x71, 0x39, 0x6f, 0x41, 0x9e, 0x9e, 0xd6, + 0x75, 0xec, 0x19, 0xcd, 0x25, 0x39, 0x25, 0x47, 0x00, 0x7d, 0xc7, 0x9e, 0xa1, 0x06, 0xac, 0x7f, + 0xca, 0xbc, 0x47, 0x63, 0x59, 0x79, 0x7a, 0x78, 0x68, 0xbd, 0xac, 0x00, 0x4d, 0xa1, 0x6b, 0x1c, + 0xa5, 0x90, 0xcc, 0x4b, 0x11, 0x75, 0x05, 0x4a, 0x0b, 0x51, 0x8d, 0xaa, 0x70, 0x9d, 0x17, 0x38, + 0xad, 0xdd, 0xef, 0xf5, 0xa4, 0xb6, 0xda, 0x57, 0x34, 0xf5, 0xd9, 0x40, 0x12, 0x57, 0x48, 0x39, + 0x1b, 0xfe, 0x46, 0x57, 0x56, 0x25, 0x51, 0x40, 0x65, 0x00, 0x02, 0x1d, 0xb6, 0x15, 0x79, 0xa0, + 0x8a, 0x09, 0x94, 0x87, 0xb4, 0xbc, 0xd7, 0x7c, 0x24, 0x89, 0xc9, 0xfa, 0x1e, 0x14, 0x62, 0x41, + 0x84, 0x2a, 0xb0, 0x11, 0x4a, 0x1c, 0x3e, 0xde, 0xdf, 0xdd, 0xed, 0x4a, 0xa1, 0xbc, 0x02, 0x64, + 0x5b, 0xfd, 0x7e, 0x57, 0x6a, 0xf6, 0x44, 0x81, 0x55, 0x56, 0x55, 0x7a, 0x24, 0x29, 0x62, 0x82, + 0xbe, 0x49, 0x55, 0xe4, 0xde, 0x23, 0x31, 0x59, 0xff, 0x7e, 0x02, 0xca, 0x34, 0x9f, 0x33, 0x5f, + 0x20, 0xae, 0x85, 0x20, 0x75, 0x8c, 0x67, 0x61, 0xcf, 0x44, 0x9f, 0x49, 0x71, 0x7c, 0xae, 0xdb, + 0x53, 0xec, 0x57, 0x12, 0x14, 0xca, 0x57, 0xc4, 0x71, 0x4c, 0xd7, 0x98, 0x8e, 0xb1, 0x13, 0xf0, + 0x76, 0x22, 0x5a, 0xa3, 0xe7, 0x70, 0x8d, 0x16, 0x90, 0xb8, 0x45, 0xb4, 0xb1, 0x3e, 0xa1, 0xb9, + 0xa2, 0xb0, 0xf3, 0x35, 0xe6, 0xe9, 0x8b, 0x2f, 0x67, 0x4b, 0x66, 0x8b, 0x27, 0xbe, 0xeb, 0xec, + 0xe9, 0x13, 0xc9, 0x09, 0xbc, 0x59, 0xeb, 0xed, 0xcf, 0xbe, 0x78, 0x53, 0x5d, 0x38, 0x9c, 0xb3, + 0x55, 0x25, 0xb8, 0x71, 0x8e, 0x94, 0xb0, 0x14, 0xf2, 0x36, 0x97, 0x94, 0xc2, 0x0d, 0x48, 0xd3, + 0xa3, 0x84, 0x6d, 0x2e, 0x5d, 0xdc, 0x4f, 0x7c, 0x28, 0xd4, 0xff, 0x32, 0x0d, 0x85, 0xb6, 0x3e, + 0x09, 0xa6, 0x1e, 0xa6, 0x45, 0xbf, 0xb6, 0x10, 0xd0, 0x85, 0xd7, 0x27, 0xb5, 0x2c, 0x47, 0xf3, + 0x70, 0xde, 0x5d, 0xca, 0xfc, 0x09, 0x9a, 0xf9, 0xc3, 0x6a, 0x32, 0x97, 0x75, 0xa5, 0x5c, 0x9f, + 0xbc, 0x42, 0xae, 0xff, 0x06, 0xe4, 0x0e, 0x2c, 0x87, 0x90, 0xf8, 0x5c, 0xcb, 0x37, 0x97, 0x5f, + 0xde, 0x62, 0x14, 0x4a, 0x44, 0x4a, 0x8a, 0xbe, 0xe5, 0x04, 0xd8, 0x7b, 0xae, 0xdb, 0xa7, 0x02, + 0x7c, 0x35, 0x84, 0x87, 0xf1, 0xbd, 0x9c, 0xa3, 0x33, 0x3f, 0x7f, 0x8e, 0xce, 0xfe, 0xfc, 0x39, + 0x3a, 0x77, 0xb9, 0x1c, 0xfd, 0x57, 0x02, 0x64, 0xf9, 0xf9, 0xd1, 0x13, 0xd8, 0xf0, 0xb0, 0xef, + 0x4e, 0x3d, 0x03, 0x2f, 0x24, 0x0d, 0xe1, 0x12, 0x0a, 0x2f, 0x87, 0x9c, 0x3c, 0x6d, 0xbc, 0x03, + 0xa5, 0x48, 0xd6, 0x44, 0x0f, 0x8e, 0x78, 0x98, 0x14, 0x43, 0xe0, 0x40, 0x0f, 0x8e, 0x4e, 0xe5, + 0xfb, 0xe4, 0x55, 0xf2, 0x7d, 0xfd, 0xce, 0xe9, 0x54, 0xb2, 0xd0, 0x2b, 0x47, 0xf9, 0x21, 0x5b, + 0x7f, 0x95, 0x87, 0xf5, 0x3d, 0x3d, 0xc0, 0x9e, 0xa5, 0xdb, 0xd6, 0x77, 0xf5, 0xa8, 0x67, 0xbd, + 0xb3, 0xe0, 0xbe, 0xeb, 0xaf, 0x4f, 0x6a, 0xab, 0xa7, 0xc8, 0xb8, 0x1b, 0xf7, 0xce, 0x71, 0xe3, + 0x3b, 0x6c, 0xa7, 0x67, 0xc8, 0xfe, 0xa5, 0xb9, 0xf3, 0xc3, 0x25, 0x77, 0xbe, 0x7d, 0xfe, 0x26, + 0x96, 0xdd, 0xfa, 0x4b, 0xde, 0x4f, 0xfc, 0x30, 0xfd, 0xe5, 0xf4, 0xd5, 0x73, 0x7a, 0x93, 0xec, + 0x2f, 0xa0, 0x37, 0xc9, 0x9f, 0xea, 0x4d, 0xda, 0xb0, 0xca, 0x4a, 0x8c, 0x1f, 0x16, 0x10, 0xda, + 0xbe, 0x44, 0x5b, 0x5d, 0x2c, 0x2e, 0xfc, 0x1d, 0xe5, 0xc3, 0xc5, 0x7a, 0xf7, 0x0e, 0x94, 0x4c, + 0x6c, 0x07, 0xba, 0x36, 0x9d, 0x98, 0x7a, 0x80, 0xfd, 0x70, 0x18, 0x41, 0x81, 0xfb, 0x0c, 0x86, + 0x0e, 0x00, 0x99, 0x78, 0xe2, 0x61, 0x43, 0x0f, 0xb0, 0xa9, 0xf1, 0x0e, 0x84, 0x3b, 0xc3, 0xbd, + 0x0b, 0x9d, 0xb2, 0xd1, 0x89, 0x78, 0x79, 0xf1, 0x56, 0xd6, 0xcc, 0xd3, 0xa0, 0xf3, 0xda, 0x8b, + 0xdc, 0x39, 0xed, 0x45, 0xf5, 0x77, 0x05, 0x58, 0x5b, 0x12, 0x4c, 0xee, 0xdf, 0x23, 0xcf, 0x9d, + 0x4e, 0xb4, 0x79, 0xb8, 0x2b, 0x79, 0x0a, 0xe9, 0x91, 0xf0, 0xfe, 0x85, 0x36, 0x8e, 0xf5, 0x7b, + 0x6f, 0x4c, 0x4b, 0xf3, 0x96, 0x26, 0xd6, 0xc2, 0xe4, 0xea, 0xff, 0x93, 0x87, 0x4c, 0xbf, 0x39, + 0x0d, 0x8e, 0x76, 0xf8, 0x85, 0xfc, 0xb9, 0x65, 0xe2, 0x70, 0xf8, 0x14, 0xad, 0xd1, 0x7b, 0xb0, + 0xa6, 0x4f, 0x83, 0x23, 0x6d, 0xea, 0xd9, 0xf3, 0xf0, 0x63, 0x65, 0x7a, 0x95, 0x20, 0xf6, 0x3d, + 0x3b, 0x8a, 0xb1, 0x8f, 0xe0, 0xa6, 0x6e, 0x18, 0xd8, 0xf7, 0xb5, 0xc0, 0x3d, 0xc6, 0xce, 0x22, + 0x0f, 0x6b, 0x4c, 0xae, 0x33, 0x02, 0x95, 0xe0, 0xe3, 0xac, 0x0d, 0x58, 0x5f, 0x60, 0x1d, 0xe3, + 0xe0, 0xc8, 0x35, 0xd9, 0x2d, 0x5b, 0x59, 0x8b, 0x31, 0xed, 0x51, 0x04, 0xdd, 0x56, 0x9c, 0xfe, + 0xc0, 0x35, 0x67, 0xfc, 0x16, 0xbd, 0x1a, 0xa3, 0x6e, 0xb9, 0xe6, 0x0c, 0xfd, 0xbe, 0x00, 0xb7, + 0x16, 0x88, 0x8f, 0xb0, 0x6e, 0x62, 0xcf, 0x9f, 0xf7, 0x42, 0x69, 0x9a, 0x0b, 0xf8, 0xbd, 0x89, + 0x29, 0xa5, 0xd1, 0x9c, 0x4b, 0x79, 0xcc, 0xe8, 0xaf, 0xd0, 0x0a, 0x21, 0x7d, 0x89, 0x1b, 0x7d, + 0x26, 0xc0, 0xe6, 0xc2, 0x36, 0x3c, 0xec, 0x4f, 0x5c, 0xc7, 0xc7, 0xf3, 0x7d, 0x64, 0xe2, 0x3d, + 0xd9, 0xf2, 0x3e, 0x14, 0xce, 0x70, 0x85, 0x8d, 0xc4, 0xf5, 0x1d, 0xb2, 0xef, 0xe9, 0x13, 0xf4, + 0x00, 0xaa, 0x1e, 0x3e, 0xf4, 0xb0, 0x7f, 0x74, 0x96, 0xad, 0xd8, 0x50, 0xe9, 0x06, 0xa7, 0x58, + 0x32, 0xd6, 0xd7, 0x49, 0x1e, 0x8c, 0x33, 0x73, 0x6b, 0x15, 0x29, 0x1b, 0x8a, 0xb3, 0x71, 0x73, + 0xd1, 0xeb, 0x4b, 0x9c, 0x83, 0xda, 0x8b, 0xc5, 0x94, 0x18, 0xa7, 0xa7, 0x06, 0xfb, 0x03, 0x01, + 0x36, 0x17, 0xc9, 0x97, 0x2c, 0x96, 0x3f, 0x43, 0x53, 0x4a, 0x4c, 0xce, 0xd5, 0x4d, 0xb6, 0xee, + 0x2d, 0xb3, 0xa3, 0x3f, 0x12, 0xa0, 0xb6, 0xb8, 0x93, 0x65, 0xa3, 0x01, 0xdd, 0xca, 0x07, 0xe7, + 0x6e, 0xe5, 0xff, 0x61, 0xb5, 0x05, 0xcd, 0xc7, 0xcc, 0x56, 0xed, 0xc2, 0xe6, 0x9b, 0xfd, 0xf2, + 0x2a, 0xcd, 0x75, 0x75, 0x0f, 0x6a, 0x17, 0x78, 0xd7, 0x55, 0xc5, 0x5d, 0x60, 0x82, 0x2b, 0x89, + 0xeb, 0xc1, 0xd6, 0x45, 0x6a, 0xbc, 0xd2, 0x55, 0xe2, 0xaf, 0x93, 0x90, 0x53, 0xb1, 0x1f, 0xd0, + 0x46, 0x0c, 0xc5, 0x1b, 0x31, 0xde, 0x73, 0xdd, 0x85, 0xb4, 0x1f, 0xe0, 0x09, 0xbb, 0x5d, 0x91, + 0x06, 0x85, 0x5a, 0x34, 0x64, 0x69, 0x0c, 0x03, 0x3c, 0xe1, 0x39, 0x98, 0xd1, 0x55, 0xff, 0x3b, + 0x01, 0x29, 0x02, 0x45, 0xdf, 0x80, 0x3c, 0x81, 0xc4, 0x27, 0x4d, 0x95, 0x33, 0xb8, 0x1b, 0xb4, + 0x33, 0xcb, 0x11, 0x52, 0x9a, 0xa6, 0x6f, 0x01, 0x50, 0x36, 0xcb, 0x31, 0xf1, 0x4b, 0xfe, 0x55, + 0x82, 0x0a, 0x92, 0x09, 0xe0, 0xf4, 0x6c, 0x3b, 0xb9, 0x3c, 0xdb, 0x0e, 0x05, 0xf8, 0x86, 0x3b, + 0x09, 0x07, 0xe3, 0x54, 0xc0, 0x90, 0x00, 0x50, 0x63, 0xa1, 0x7d, 0x48, 0x9f, 0x39, 0x27, 0x8d, + 0xb7, 0x0c, 0x1f, 0x41, 0xc9, 0x74, 0x0d, 0x1e, 0x65, 0xcf, 0xb1, 0xc1, 0x06, 0x07, 0x17, 0x34, + 0x36, 0x29, 0xc2, 0x82, 0x1e, 0x02, 0x44, 0x75, 0xc9, 0xbf, 0x5c, 0x97, 0x11, 0x63, 0xa8, 0x6f, + 0x42, 0x8a, 0x6a, 0x04, 0x20, 0x23, 0xf7, 0x1e, 0x49, 0x43, 0x95, 0xd5, 0xad, 0x6f, 0x4b, 0x8a, + 0xbc, 0xfb, 0x4c, 0x14, 0xea, 0xdf, 0x17, 0x20, 0xaf, 0xe8, 0xce, 0x88, 0x5d, 0x02, 0xdf, 0x82, + 0xfc, 0x31, 0x9e, 0x69, 0xec, 0x03, 0x0f, 0x51, 0x5b, 0x56, 0xc9, 0x1d, 0xe3, 0x59, 0x8b, 0x7e, + 0xe3, 0xb9, 0x01, 0x59, 0x82, 0xc4, 0x8e, 0x49, 0x35, 0x96, 0x55, 0x32, 0xc7, 0x78, 0x26, 0x39, + 0x26, 0xaa, 0x43, 0xc9, 0xd3, 0xe8, 0x97, 0x18, 0xce, 0x99, 0xa2, 0xe8, 0x82, 0x47, 0x3f, 0xd2, + 0x30, 0xe6, 0x4d, 0x28, 0x84, 0x34, 0x44, 0x40, 0x9a, 0x52, 0xe4, 0x19, 0x85, 0xe4, 0x98, 0xf7, + 0xc5, 0x1f, 0xbc, 0xaa, 0xad, 0x9c, 0xfa, 0x64, 0x54, 0x8e, 0x6a, 0xef, 0x30, 0x20, 0xd9, 0xf1, + 0x01, 0x14, 0x59, 0x0f, 0x63, 0x5e, 0xbe, 0x3b, 0xcc, 0x72, 0x0e, 0x54, 0x83, 0xc2, 0x18, 0x7b, + 0x23, 0xda, 0x13, 0x1a, 0x47, 0xf4, 0x70, 0x39, 0x05, 0x28, 0x68, 0x40, 0x20, 0xf5, 0x3f, 0x4b, + 0x00, 0x48, 0x2f, 0x03, 0x4f, 0x37, 0x82, 0xe6, 0x40, 0xae, 0xfe, 0x58, 0x80, 0x0c, 0xef, 0x28, + 0xe3, 0xf3, 0x64, 0x61, 0x71, 0x9e, 0xfc, 0x10, 0x0a, 0xf1, 0xd9, 0xf5, 0x65, 0x06, 0x97, 0xc0, + 0x18, 0x48, 0xb4, 0x11, 0x37, 0x63, 0x0d, 0xde, 0x24, 0xf0, 0x7c, 0x3e, 0xc2, 0xce, 0x53, 0xc8, + 0x20, 0xf0, 0x96, 0x46, 0xd0, 0xa9, 0x4b, 0x8f, 0xa0, 0xeb, 0xcf, 0x20, 0xd5, 0x76, 0xcd, 0x53, + 0xfd, 0x4a, 0x09, 0xf2, 0xed, 0x7e, 0x6f, 0x57, 0x7e, 0xb4, 0xaf, 0x48, 0x6c, 0x68, 0x22, 0x7d, + 0x47, 0x55, 0x9a, 0x6d, 0x55, 0x4c, 0x20, 0x04, 0x65, 0xbe, 0x90, 0x3a, 0xda, 0xfe, 0xbe, 0xdc, + 0x11, 0x93, 0x68, 0x03, 0xc4, 0x39, 0x6c, 0x57, 0x96, 0xba, 0x9d, 0xa1, 0x98, 0xaa, 0xbf, 0x4a, + 0x03, 0xb4, 0xdd, 0xf1, 0x81, 0xe5, 0x60, 0xaa, 0xa7, 0x44, 0xa4, 0xa7, 0x53, 0xca, 0x10, 0xae, + 0xa8, 0x8c, 0x9b, 0x40, 0x7c, 0x8d, 0xa9, 0x82, 0xf5, 0xec, 0xc4, 0xdf, 0xa8, 0x22, 0xae, 0x43, + 0x86, 0x0f, 0xeb, 0x99, 0x8e, 0xf8, 0x8a, 0xd4, 0x4b, 0x66, 0x19, 0x5b, 0x37, 0xf0, 0x91, 0x6b, + 0x9b, 0xd8, 0x8b, 0x4d, 0xfd, 0x11, 0xb5, 0xd2, 0x1c, 0x45, 0x0c, 0x76, 0x4a, 0xa5, 0xe9, 0xcb, + 0x4f, 0xf5, 0xef, 0xc0, 0xea, 0x3c, 0xa2, 0x59, 0xf7, 0x49, 0xbf, 0x78, 0x29, 0xe5, 0x39, 0x98, + 0xb6, 0xa0, 0xef, 0xc1, 0x1a, 0xfd, 0x60, 0xb7, 0xf0, 0x55, 0x83, 0x7f, 0x4d, 0xa2, 0x88, 0x61, + 0x74, 0xe6, 0xea, 0xef, 0x40, 0x9a, 0xf8, 0xb6, 0x8f, 0x7e, 0x05, 0x52, 0x36, 0x3e, 0x0c, 0xa8, + 0xd2, 0x0a, 0x3b, 0x88, 0x6d, 0xa8, 0xe3, 0x1a, 0x7e, 0xd3, 0x31, 0x5b, 0xb3, 0x00, 0xfb, 0x0a, + 0xc5, 0xa3, 0x6d, 0x48, 0x7b, 0xd6, 0xe8, 0x28, 0xe0, 0xf3, 0xd4, 0xb3, 0x08, 0x19, 0x01, 0xfa, + 0x0a, 0x24, 0xdd, 0x69, 0xc0, 0x5b, 0xdf, 0xb3, 0xe8, 0x08, 0xba, 0xfe, 0x2f, 0xc2, 0x25, 0x3c, + 0x65, 0x15, 0x0a, 0x8a, 0xd4, 0xd9, 0x6f, 0x4b, 0x5a, 0x57, 0xda, 0x25, 0xde, 0xb2, 0x06, 0xa5, + 0x76, 0x7f, 0xaf, 0x25, 0xf7, 0x24, 0x4d, 0x91, 0x1f, 0x3d, 0x56, 0xc5, 0x24, 0x12, 0xa1, 0xd0, + 0x51, 0x9a, 0x72, 0x4f, 0x6b, 0x3f, 0xde, 0xef, 0x3d, 0x15, 0x3f, 0x17, 0xd0, 0x26, 0xdc, 0xa4, + 0x10, 0xa9, 0xa3, 0x71, 0xe2, 0x8e, 0xd6, 0xe9, 0xb7, 0xf7, 0xf7, 0xa4, 0x9e, 0x2a, 0xfe, 0xbd, + 0x80, 0x6e, 0x41, 0x25, 0xc4, 0x33, 0xe9, 0x31, 0xf4, 0x3f, 0x08, 0x91, 0x40, 0xa9, 0xa3, 0x3d, + 0x95, 0x9e, 0x89, 0xff, 0x28, 0xa0, 0x75, 0x28, 0x87, 0x10, 0xee, 0x8d, 0xff, 0x24, 0x20, 0x04, + 0xa5, 0x10, 0x38, 0x54, 0x9b, 0xea, 0x50, 0xfc, 0x67, 0xa1, 0xfe, 0x17, 0x29, 0xc8, 0xb5, 0xa6, + 0x96, 0x6d, 0x12, 0x07, 0xfd, 0xf7, 0x85, 0x40, 0x3e, 0x20, 0x60, 0xcd, 0x32, 0xc3, 0x40, 0xa6, + 0x6b, 0xd9, 0x9c, 0xa3, 0xcc, 0x03, 0x5e, 0xe0, 0x18, 0xaa, 0x73, 0x40, 0x3f, 0x55, 0xd2, 0x9b, + 0x23, 0x2f, 0x14, 0x7c, 0x85, 0x76, 0xa0, 0xc0, 0xaf, 0x99, 0xb4, 0x3a, 0xa5, 0x68, 0x75, 0x5a, + 0x0b, 0x2f, 0x91, 0xd1, 0x47, 0x47, 0x05, 0x18, 0x15, 0x4d, 0xc3, 0xef, 0xc3, 0xda, 0x7c, 0xfa, + 0xc0, 0xaf, 0xc3, 0xfc, 0xdb, 0xaa, 0x18, 0x21, 0xf8, 0x9d, 0x19, 0xdd, 0x86, 0x22, 0x77, 0x40, + 0xcd, 0x73, 0xdd, 0x80, 0xbb, 0x5b, 0xe8, 0x94, 0x8a, 0xeb, 0x06, 0xd5, 0xdf, 0x82, 0xf4, 0x2e, + 0x0e, 0x8c, 0x23, 0x42, 0x1b, 0xdd, 0x7a, 0xa7, 0x9e, 0xcd, 0x8f, 0x57, 0x08, 0x61, 0xfb, 0x9e, + 0x8d, 0x7e, 0xed, 0xd4, 0xf7, 0xd1, 0xc4, 0x79, 0x1b, 0x8e, 0x7f, 0x32, 0xad, 0x9f, 0x84, 0x0e, + 0x92, 0x87, 0x74, 0x4b, 0x7a, 0x24, 0xf7, 0xd8, 0xb7, 0xcb, 0x41, 0xbf, 0xdb, 0xe5, 0x93, 0x5c, + 0xa5, 0xb9, 0x37, 0xe8, 0x77, 0xe5, 0x1e, 0xb9, 0x06, 0x6d, 0x80, 0x38, 0x5f, 0x6b, 0xbb, 0x92, + 0xda, 0x7e, 0x2c, 0x26, 0x51, 0x0d, 0xde, 0x8a, 0x41, 0xa9, 0x93, 0x35, 0x55, 0x49, 0x6b, 0x37, + 0x07, 0x2a, 0x71, 0xb0, 0x14, 0xba, 0x03, 0xef, 0x9c, 0x45, 0xb0, 0xd7, 0x54, 0x25, 0x45, 0x6e, + 0x76, 0xe5, 0x4f, 0x9a, 0xaa, 0xdc, 0xef, 0x89, 0x69, 0xf2, 0xe6, 0x4e, 0xbf, 0x27, 0x89, 0x19, + 0xf2, 0x26, 0xf2, 0xa4, 0x7d, 0x2c, 0xab, 0x8f, 0x35, 0x49, 0x51, 0xfa, 0xca, 0x50, 0xcc, 0xa2, + 0x5b, 0x70, 0x33, 0x26, 0xa8, 0xd3, 0x6f, 0x3f, 0x95, 0x14, 0x4d, 0xee, 0x0d, 0x07, 0x52, 0x5b, + 0x15, 0x73, 0x24, 0xcb, 0xb5, 0x9b, 0x6a, 0xb3, 0xdb, 0x7f, 0xa4, 0x0d, 0xdb, 0x8f, 0xa5, 0xbd, + 0xa6, 0x68, 0xd6, 0xd7, 0x61, 0x4d, 0xc1, 0x3e, 0x0e, 0x68, 0x8d, 0x51, 0xf0, 0x6f, 0x4f, 0xb1, + 0x1f, 0xd4, 0x37, 0x00, 0xc5, 0x81, 0xac, 0x41, 0xaa, 0x3f, 0x04, 0xd4, 0x34, 0x9f, 0xeb, 0x8e, + 0x81, 0x55, 0x6b, 0x1c, 0xd2, 0x92, 0xc4, 0xa0, 0x33, 0x68, 0x34, 0x5d, 0x24, 0xda, 0x4f, 0x29, + 0x65, 0x0e, 0xe6, 0xc3, 0xc5, 0xfa, 0x35, 0x58, 0x5f, 0x60, 0xe7, 0x52, 0x3f, 0x84, 0x62, 0x3c, + 0x2e, 0x49, 0x07, 0x45, 0x2a, 0x3f, 0xff, 0xb6, 0xcb, 0xba, 0x80, 0x0d, 0x48, 0x1f, 0x10, 0x24, + 0x35, 0x5a, 0x4a, 0x61, 0x8b, 0xfa, 0x9f, 0x08, 0x50, 0x92, 0x9d, 0x11, 0xf6, 0x83, 0x70, 0x2f, + 0x8b, 0x8d, 0x89, 0x70, 0x61, 0x63, 0x12, 0x8f, 0x88, 0xc4, 0x62, 0x44, 0x2c, 0xf5, 0x2c, 0xc9, + 0xcb, 0xf6, 0x2c, 0xf5, 0x7f, 0x4d, 0x40, 0x39, 0xdc, 0x17, 0x3b, 0x24, 0xfa, 0x1b, 0x61, 0x7e, + 0xfb, 0x67, 0x1f, 0x8e, 0xc9, 0xcd, 0x83, 0x4d, 0xe1, 0xa3, 0x0b, 0xe2, 0x22, 0x4f, 0x38, 0x7a, + 0xfa, 0x98, 0x90, 0x93, 0x9e, 0xd7, 0x67, 0x1d, 0xfe, 0x6f, 0xfe, 0xde, 0x17, 0xb5, 0xf7, 0xcf, + 0xfa, 0x6f, 0xc8, 0xa9, 0xbf, 0xbe, 0x84, 0xfc, 0x9f, 0x7d, 0x51, 0x7b, 0xef, 0x32, 0xe4, 0xfd, + 0xc3, 0x43, 0x1f, 0x07, 0xd1, 0x24, 0x62, 0xfe, 0x5a, 0xf4, 0xeb, 0x50, 0x0c, 0xf7, 0x8e, 0x03, + 0xc3, 0xe4, 0xb9, 0x37, 0x36, 0x24, 0x63, 0x1d, 0x79, 0x43, 0x0a, 0x0c, 0x33, 0x2c, 0x1d, 0x9c, + 0x81, 0x80, 0xaa, 0x1d, 0xb8, 0x7e, 0xf6, 0x59, 0x2e, 0x6a, 0xb3, 0x93, 0xf1, 0x36, 0xfb, 0xcf, + 0x13, 0x70, 0x43, 0xd5, 0xfd, 0xe3, 0x70, 0xa4, 0xe6, 0xb9, 0x2f, 0x67, 0xa1, 0xdd, 0xbf, 0x09, + 0x29, 0x77, 0x82, 0x1d, 0x5e, 0x3e, 0xea, 0xbc, 0x45, 0x3e, 0x9b, 0xb8, 0xd1, 0x9f, 0x60, 0x47, + 0xa1, 0xf4, 0xd4, 0xd7, 0xf4, 0x40, 0xa7, 0x2f, 0x2b, 0x2a, 0xf4, 0xb9, 0xfa, 0xb7, 0x02, 0xa4, + 0x08, 0x09, 0xda, 0x86, 0x0c, 0xbb, 0x1e, 0x72, 0xb1, 0xe2, 0xe9, 0x03, 0x2b, 0x1c, 0x8f, 0xba, + 0x90, 0x63, 0xa3, 0xc8, 0xd0, 0x8d, 0x5a, 0xbf, 0xfa, 0xfa, 0xa4, 0xf6, 0xc1, 0x59, 0x5a, 0x5f, + 0xfa, 0xff, 0x11, 0x1b, 0x52, 0xca, 0x1d, 0x25, 0x4b, 0x45, 0xc8, 0xb4, 0x55, 0x0b, 0x74, 0x6f, + 0x84, 0x03, 0x3a, 0x50, 0xa4, 0x59, 0xb7, 0xa4, 0x00, 0x03, 0xd1, 0xff, 0x3f, 0xd4, 0xa0, 0x60, + 0xd8, 0x16, 0x49, 0x64, 0xba, 0x69, 0x86, 0xd5, 0x1e, 0x18, 0xa8, 0x69, 0x9a, 0x5e, 0xfd, 0x0f, + 0x93, 0x50, 0x59, 0x3e, 0x3d, 0x77, 0xc5, 0x01, 0x94, 0xc8, 0xd9, 0xa3, 0x0b, 0x27, 0x3f, 0xdd, + 0xfb, 0xe7, 0x29, 0x8d, 0x7b, 0x23, 0xd5, 0x1a, 0x5f, 0x28, 0x45, 0x37, 0xb6, 0x3a, 0x53, 0x8b, + 0x2f, 0xa0, 0x18, 0xe7, 0x40, 0x0f, 0x21, 0xe3, 0x07, 0x7a, 0x30, 0xf5, 0xf9, 0x35, 0xe6, 0xab, + 0x17, 0xbc, 0x6e, 0x48, 0x89, 0x15, 0xce, 0x14, 0xb3, 0x45, 0xe2, 0xcd, 0xb6, 0xa8, 0x7f, 0x8f, + 0xfe, 0x23, 0x86, 0x32, 0x65, 0x20, 0xd1, 0x7f, 0x2a, 0xae, 0xa0, 0x75, 0x58, 0x1d, 0x3e, 0x6e, + 0x2a, 0x1d, 0xad, 0xd7, 0x57, 0xb5, 0xdd, 0xfe, 0x7e, 0xaf, 0x23, 0x0a, 0x24, 0x81, 0xf6, 0xfa, + 0x1a, 0x83, 0x0f, 0x14, 0x79, 0xaf, 0xa9, 0x3c, 0x13, 0x13, 0xe8, 0x1a, 0xac, 0x11, 0xa2, 0x45, + 0x70, 0x92, 0x24, 0x4e, 0xb9, 0xa7, 0x4a, 0x4a, 0xaf, 0xd9, 0x65, 0xc9, 0x56, 0x4c, 0x91, 0x26, + 0x80, 0x91, 0x0d, 0xd5, 0xfe, 0x60, 0x20, 0x75, 0xc4, 0x34, 0xba, 0x06, 0xe2, 0xa0, 0xaf, 0xa8, + 0xf4, 0x3d, 0xcd, 0x6e, 0xb7, 0xff, 0xb1, 0xd4, 0x11, 0x7f, 0x96, 0x7d, 0xaf, 0x07, 0x85, 0x58, + 0x7d, 0x21, 0xad, 0x06, 0xcf, 0xc2, 0xe2, 0x0a, 0xe9, 0x2d, 0x9e, 0x0c, 0xfb, 0xbd, 0x30, 0x1f, + 0x0b, 0xf4, 0x7f, 0x2f, 0xb4, 0xf7, 0x10, 0x53, 0x64, 0x37, 0x61, 0x4b, 0x30, 0xd4, 0x76, 0xe5, + 0xef, 0xd0, 0x72, 0x91, 0xde, 0xf9, 0x3b, 0x01, 0xb2, 0xe4, 0xfe, 0x67, 0x39, 0x23, 0xf4, 0x2d, + 0x80, 0x79, 0xa6, 0x46, 0x37, 0x98, 0x56, 0x97, 0x12, 0x7a, 0xb5, 0xb2, 0x8c, 0xe0, 0x86, 0x69, + 0x41, 0x21, 0x96, 0x95, 0x11, 0x27, 0x5c, 0xce, 0xf3, 0xd5, 0x9b, 0x67, 0x60, 0xb8, 0x8c, 0x7b, + 0x90, 0x61, 0xb9, 0x0b, 0xad, 0x2f, 0x66, 0x32, 0xc6, 0xb9, 0x71, 0x56, 0x7a, 0xdb, 0xf9, 0x04, + 0x8a, 0x71, 0xcb, 0xa3, 0x27, 0x90, 0x66, 0x0f, 0xb7, 0xde, 0x18, 0xbe, 0xd5, 0xcd, 0x37, 0x7b, + 0xce, 0xb6, 0xf0, 0x75, 0xa1, 0xf5, 0xe0, 0xf3, 0xff, 0xdc, 0x5c, 0xf9, 0xfc, 0xa7, 0x9b, 0xc2, + 0x4f, 0x7e, 0xba, 0x29, 0xbc, 0xfa, 0xaf, 0x4d, 0xe1, 0x93, 0x77, 0x47, 0x56, 0x70, 0x34, 0x3d, + 0x68, 0x18, 0xee, 0xf8, 0x2e, 0xf6, 0x83, 0xa9, 0xee, 0xcd, 0xd8, 0x5f, 0x08, 0x97, 0xfe, 0x54, + 0x78, 0x90, 0xa1, 0xeb, 0x7b, 0xff, 0x17, 0x00, 0x00, 0xff, 0xff, 0x1a, 0x33, 0x8d, 0x35, 0x70, + 0x28, 0x00, 0x00, } func (this *UUIDParts) Equal(that interface{}) bool { @@ -4610,6 +4617,20 @@ func (m *CombineAPI_Config) MarshalToSizedBuffer(dAtA []byte) (int, error) { i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } + if len(m.InferSchemaJson) > 0 { + i -= len(m.InferSchemaJson) + copy(dAtA[i:], m.InferSchemaJson) + i = encodeVarintFlow(dAtA, i, uint64(len(m.InferSchemaJson))) + i-- + dAtA[i] = 0x3a + } + if len(m.CollectionName) > 0 { + i -= len(m.CollectionName) + copy(dAtA[i:], m.CollectionName) + i = encodeVarintFlow(dAtA, i, uint64(len(m.CollectionName))) + i-- + dAtA[i] = 0x32 + } if len(m.Projections) > 0 { for iNdEx := len(m.Projections) - 1; iNdEx >= 0; iNdEx-- { { @@ -6088,6 +6109,14 @@ func (m *CombineAPI_Config) ProtoSize() (n int) { n += 1 + l + sovFlow(uint64(l)) } } + l = len(m.CollectionName) + if l > 0 { + n += 1 + l + sovFlow(uint64(l)) + } + l = len(m.InferSchemaJson) + if l > 0 { + n += 1 + l + sovFlow(uint64(l)) + } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } @@ -11603,6 +11632,70 @@ func (m *CombineAPI_Config) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 6: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field CollectionName", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowFlow + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthFlow + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthFlow + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.CollectionName = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 7: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field InferSchemaJson", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowFlow + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthFlow + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthFlow + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.InferSchemaJson = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipFlow(dAtA[iNdEx:]) diff --git a/go/protocols/flow/flow.proto b/go/protocols/flow/flow.proto index d3efaa0d6d..10bda0f404 100644 --- a/go/protocols/flow/flow.proto +++ b/go/protocols/flow/flow.proto @@ -600,6 +600,11 @@ message CombineAPI { // A set of Projections which must include `key_ptrs` and `fields`. // TODO(johnny): This is a kludge as we seek to remove this API. repeated Projection projections = 5 [ (gogoproto.nullable) = false ]; + // The name of the collection that's being written to. + string collection_name = 6; + // JSON-encoded string representing the JSON schema to start inference + // from. If empty, do not emit inferred schemas. + string infer_schema_json = 7; }; // Stats holds statistics relating to one or more combiner transactions. diff --git a/go/runtime/capture.go b/go/runtime/capture.go index adf788e0fa..a8ba8c1080 100644 --- a/go/runtime/capture.go +++ b/go/runtime/capture.go @@ -271,6 +271,8 @@ func (c *Capture) startReadingMessages( binding.Collection.Key, binding.Collection.PartitionFields, binding.Collection.Projections, + // Enable schema inference for captures + true, ) } diff --git a/go/runtime/materialize.go b/go/runtime/materialize.go index 657a68eb41..8943587252 100644 --- a/go/runtime/materialize.go +++ b/go/runtime/materialize.go @@ -138,6 +138,8 @@ func (m *Materialize) RestoreCheckpoint(shard consumer.Shard) (cp pf.Checkpoint, binding.Collection.Key, binding.FieldSelection.Values, binding.Collection.Projections, + // Disable schema inference for materializations + false, ) } diff --git a/go/runtime/testing.go b/go/runtime/testing.go index 8fb2506615..c8655a9eb5 100644 --- a/go/runtime/testing.go +++ b/go/runtime/testing.go @@ -136,6 +136,8 @@ func (f *FlowTesting) Ingest(ctx context.Context, req *pf.IngestRequest) (*pf.In collection.Key, collection.PartitionFields, collection.Projections, + // Enable schema inference in testing + true, ); err != nil { return nil, fmt.Errorf("configuring combiner: %w", err) } diff --git a/go/testing/driver.go b/go/testing/driver.go index 46f5cd4049..943318152e 100644 --- a/go/testing/driver.go +++ b/go/testing/driver.go @@ -401,6 +401,8 @@ func combineDocumentsForVerify( collection.Key, nil, // Don't extract additional fields. collection.Projections, + // Enable schema inference in testing + true, ); err != nil { return nil, fmt.Errorf("configuring combiner: %w", err) }