From 51d1aad4bc668a3d577d7e4fec4ccaf94b02a3be Mon Sep 17 00:00:00 2001 From: Rohan Yadav Date: Tue, 19 May 2020 23:30:07 -0400 Subject: [PATCH] sql: add support for virtual schema qualified types Fixes #16395. Release note (sql change): Allows for referencing static data types under the `pg_catalog` qualification like `pg_catalog.int`. --- pkg/sql/execinfrapb/data.go | 2 + pkg/sql/logical_schema_accessors.go | 34 + pkg/sql/logictest/testdata/logic_test/enums | 5 - pkg/sql/logictest/testdata/logic_test/typing | 15 + pkg/sql/pg_catalog.go | 1 + pkg/sql/resolver.go | 2 + pkg/sql/sem/tree/type_name.go | 11 + pkg/sql/sqlbase/structured.go | 17 + pkg/sql/sqlbase/structured.pb.go | 676 ++++++++++--------- pkg/sql/sqlbase/structured.proto | 8 + pkg/sql/virtual_schema.go | 4 + 11 files changed, 465 insertions(+), 310 deletions(-) diff --git a/pkg/sql/execinfrapb/data.go b/pkg/sql/execinfrapb/data.go index bb797524fde5..5cceeb5f21e8 100644 --- a/pkg/sql/execinfrapb/data.go +++ b/pkg/sql/execinfrapb/data.go @@ -102,6 +102,8 @@ func (tr *DistSQLTypeResolver) ResolveTypeByID(id uint32) (*types.T, error) { switch t := typDesc.Kind; t { case sqlbase.TypeDescriptor_ENUM: typ = types.MakeEnum(id) + case sqlbase.TypeDescriptor_ALIAS: + return typDesc.Alias, nil default: return nil, errors.AssertionFailedf("unknown type kind %s", t) } diff --git a/pkg/sql/logical_schema_accessors.go b/pkg/sql/logical_schema_accessors.go index d1a80b4c5d91..017281294129 100644 --- a/pkg/sql/logical_schema_accessors.go +++ b/pkg/sql/logical_schema_accessors.go @@ -16,6 +16,7 @@ import ( "github.com/cockroachdb/cockroach/pkg/keys" "github.com/cockroachdb/cockroach/pkg/kv" "github.com/cockroachdb/cockroach/pkg/settings/cluster" + "github.com/cockroachdb/cockroach/pkg/sql/parser" "github.com/cockroachdb/cockroach/pkg/sql/sem/tree" "github.com/cockroachdb/cockroach/pkg/sql/sqlbase" "github.com/cockroachdb/cockroach/pkg/util/errorutil/unimplemented" @@ -85,6 +86,39 @@ func (l *LogicalSchemaAccessor) GetObjectDesc( ) (ObjectDescriptor, error) { switch flags.DesiredObjectKind { case tree.TypeObject: + // If the input schema matches a virtual schema, look into it. + if scEntry, ok := l.vt.getVirtualSchemaEntry(schema); ok { + var result ObjectDescriptor + // If the virtual schema actually contains types, then try to find the + // requested type. + if scEntry.containsTypes { + // Currently, we don't allow creation of types in virtual schemas, so + // the only types present in the virtual schemas that have types (i.e. + // pg_catalog) are types that are known at parse time. So, attempt to + // parse the input object as a statically known type. Note that an + // invalid input type like "notatype" will be parsed successfully as + // a ResolvableTypeReference, so the error here does not need to be + // intercepted and inspected. + typRef, err := parser.ParseType(object) + if err != nil { + return nil, err + } + // If the parsed reference is actually a statically known type, then + // we can return it. We return a simple wrapping of this type as + // TypeDescriptor that represents an alias of the result type. + typ, ok := tree.GetStaticallyKnownType(typRef) + if ok { + result = sqlbase.MakeSimpleAliasTypeDescriptor(typ) + } + } + if result == nil { + if flags.Required { + name := tree.MakeNewQualifiedTypeName(db, schema, object) + return nil, sqlbase.NewUndefinedTypeError(&name) + } + } + return result, nil + } return (UncachedPhysicalAccessor{}).GetObjectDesc(ctx, txn, settings, codec, db, schema, object, flags) case tree.TableObject: l.tn = tree.MakeTableNameWithSchema(tree.Name(db), tree.Name(schema), tree.Name(object)) diff --git a/pkg/sql/logictest/testdata/logic_test/enums b/pkg/sql/logictest/testdata/logic_test/enums index d42f84d023a3..2f46ad6fb726 100644 --- a/pkg/sql/logictest/testdata/logic_test/enums +++ b/pkg/sql/logictest/testdata/logic_test/enums @@ -56,11 +56,6 @@ SELECT 'Z'::public.int ---- Z -query T -SELECT 'Z'::"int" ----- -Z - statement ok CREATE TYPE greeting AS ENUM ('hello', 'howdy', 'hi') diff --git a/pkg/sql/logictest/testdata/logic_test/typing b/pkg/sql/logictest/testdata/logic_test/typing index 64c5cbf29c28..ed33e642ee54 100644 --- a/pkg/sql/logictest/testdata/logic_test/typing +++ b/pkg/sql/logictest/testdata/logic_test/typing @@ -232,3 +232,18 @@ query T SELECT max(NULL) FROM (VALUES (NULL), (NULL)) t0(c0) ---- NULL + +# Test qualified type references. +query IITR +SELECT 1::pg_catalog.int4, 1::pg_catalog.int8, 'aa'::pg_catalog.text, 4.2::pg_catalog.float4 +---- +1 1 aa 4.2 + +# Test that we error out referencing unknown types in pg_catalog. +query error pq: type "pg_catalog.special_int" does not exist +SELECT 1::pg_catalog.special_int + +# Test that we error out trying to reference types in schemas that +# don't have types. +query error pq: type "crdb_internal.mytype" does not exist +SELECT 1::crdb_internal.mytype diff --git a/pkg/sql/pg_catalog.go b/pkg/sql/pg_catalog.go index ae906fdba9f5..36996e053b0f 100644 --- a/pkg/sql/pg_catalog.go +++ b/pkg/sql/pg_catalog.go @@ -251,6 +251,7 @@ var pgCatalog = virtualSchema{ // database set. Simply reject any attempts to use them in that // case. validWithNoDatabaseContext: false, + containsTypes: true, } // The catalog pg_am stores information about relation access methods. diff --git a/pkg/sql/resolver.go b/pkg/sql/resolver.go index 440d4c321b41..3eb2b9df607d 100644 --- a/pkg/sql/resolver.go +++ b/pkg/sql/resolver.go @@ -165,6 +165,8 @@ func (p *planner) ResolveType(name *tree.UnresolvedObjectName) (*types.T, error) // Override the hydrated name with the fully resolved type name. typ.TypeMeta.Name = &tn return typ, nil + case sqlbase.TypeDescriptor_ALIAS: + return tdesc.Alias, nil default: return nil, errors.AssertionFailedf("unknown type kind %s", t.String()) } diff --git a/pkg/sql/sem/tree/type_name.go b/pkg/sql/sem/tree/type_name.go index a2d648ac2d70..3e3aa9f7d069 100644 --- a/pkg/sql/sem/tree/type_name.go +++ b/pkg/sql/sem/tree/type_name.go @@ -92,6 +92,17 @@ func MakeTypeNameFromPrefix(prefix ObjectNamePrefix, object Name) TypeName { }} } +// MakeNewQualifiedTypeName creates a fully qualified type name. +func MakeNewQualifiedTypeName(db, schema, typ string) TypeName { + return TypeName{objName{ + ObjectNamePrefix: ObjectNamePrefix{ + CatalogName: Name(db), + SchemaName: Name(schema), + }, + ObjectName: Name(typ), + }} +} + // TypeReferenceResolver is the interface that will provide the ability // to actually look up type metadata and transform references into // *types.T's. diff --git a/pkg/sql/sqlbase/structured.go b/pkg/sql/sqlbase/structured.go index d69d104ed856..57fef4c33a76 100644 --- a/pkg/sql/sqlbase/structured.go +++ b/pkg/sql/sqlbase/structured.go @@ -4169,11 +4169,28 @@ func (desc *TypeDescriptor) HydrateTypeInfo(typ *types.T) error { PhysicalRepresentations: physical, } return nil + case TypeDescriptor_ALIAS: + // This is a noop until we possibly allow aliases to user defined types. + return nil default: return errors.AssertionFailedf("unknown type descriptor kind %s", desc.Kind) } } +// MakeSimpleAliasTypeDescriptor creates a type descriptor that is an alias +// for the input type. It is intended to be used as an intermediate for name +// resolution, and should not be serialized and stored on disk. +func MakeSimpleAliasTypeDescriptor(typ *types.T) *TypeDescriptor { + return &TypeDescriptor{ + ParentID: InvalidID, + ParentSchemaID: InvalidID, + Name: typ.Name(), + ID: InvalidID, + Kind: TypeDescriptor_ALIAS, + Alias: typ, + } +} + // NameResolutionResult implements the NameResolutionResult interface. func (desc *TypeDescriptor) NameResolutionResult() {} diff --git a/pkg/sql/sqlbase/structured.pb.go b/pkg/sql/sqlbase/structured.pb.go index 1abbecc0e06e..f6fd827636b7 100644 --- a/pkg/sql/sqlbase/structured.pb.go +++ b/pkg/sql/sqlbase/structured.pb.go @@ -74,7 +74,7 @@ func (x *ConstraintValidity) UnmarshalJSON(data []byte) error { return nil } func (ConstraintValidity) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_e99babb77d2e3eaf, []int{0} + return fileDescriptor_structured_5501c86eb6427e1c, []int{0} } type ForeignKeyReference_Action int32 @@ -119,7 +119,7 @@ func (x *ForeignKeyReference_Action) UnmarshalJSON(data []byte) error { return nil } func (ForeignKeyReference_Action) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_e99babb77d2e3eaf, []int{0, 0} + return fileDescriptor_structured_5501c86eb6427e1c, []int{0, 0} } // Match is the algorithm used to compare composite keys. @@ -159,7 +159,7 @@ func (x *ForeignKeyReference_Match) UnmarshalJSON(data []byte) error { return nil } func (ForeignKeyReference_Match) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_e99babb77d2e3eaf, []int{0, 1} + return fileDescriptor_structured_5501c86eb6427e1c, []int{0, 1} } // The direction of a column in the index. @@ -196,7 +196,7 @@ func (x *IndexDescriptor_Direction) UnmarshalJSON(data []byte) error { return nil } func (IndexDescriptor_Direction) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_e99babb77d2e3eaf, []int{7, 0} + return fileDescriptor_structured_5501c86eb6427e1c, []int{7, 0} } // The type of the index. @@ -233,7 +233,7 @@ func (x *IndexDescriptor_Type) UnmarshalJSON(data []byte) error { return nil } func (IndexDescriptor_Type) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_e99babb77d2e3eaf, []int{7, 1} + return fileDescriptor_structured_5501c86eb6427e1c, []int{7, 1} } type ConstraintToUpdate_ConstraintType int32 @@ -276,7 +276,7 @@ func (x *ConstraintToUpdate_ConstraintType) UnmarshalJSON(data []byte) error { return nil } func (ConstraintToUpdate_ConstraintType) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_e99babb77d2e3eaf, []int{8, 0} + return fileDescriptor_structured_5501c86eb6427e1c, []int{8, 0} } // A descriptor within a mutation is unavailable for reads, writes @@ -341,7 +341,7 @@ func (x *DescriptorMutation_State) UnmarshalJSON(data []byte) error { return nil } func (DescriptorMutation_State) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_e99babb77d2e3eaf, []int{10, 0} + return fileDescriptor_structured_5501c86eb6427e1c, []int{10, 0} } // Direction of mutation. @@ -384,7 +384,7 @@ func (x *DescriptorMutation_Direction) UnmarshalJSON(data []byte) error { return nil } func (DescriptorMutation_Direction) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_e99babb77d2e3eaf, []int{10, 1} + return fileDescriptor_structured_5501c86eb6427e1c, []int{10, 1} } // State is set if this TableDescriptor is in the process of being added or deleted. @@ -435,7 +435,7 @@ func (x *TableDescriptor_State) UnmarshalJSON(data []byte) error { return nil } func (TableDescriptor_State) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_e99babb77d2e3eaf, []int{11, 0} + return fileDescriptor_structured_5501c86eb6427e1c, []int{11, 0} } // AuditMode indicates which auditing actions to take when this table is used. @@ -472,7 +472,7 @@ func (x *TableDescriptor_AuditMode) UnmarshalJSON(data []byte) error { return nil } func (TableDescriptor_AuditMode) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_e99babb77d2e3eaf, []int{11, 1} + return fileDescriptor_structured_5501c86eb6427e1c, []int{11, 1} } // Represents the kind of type that this type descriptor represents. @@ -481,13 +481,18 @@ type TypeDescriptor_Kind int32 const ( // Represents a user defined enum type. TypeDescriptor_ENUM TypeDescriptor_Kind = 0 + // Represents a user defined type that is just an alias for another type. + // As of now, it is used only internally. + TypeDescriptor_ALIAS TypeDescriptor_Kind = 1 ) var TypeDescriptor_Kind_name = map[int32]string{ 0: "ENUM", + 1: "ALIAS", } var TypeDescriptor_Kind_value = map[string]int32{ - "ENUM": 0, + "ENUM": 0, + "ALIAS": 1, } func (x TypeDescriptor_Kind) Enum() *TypeDescriptor_Kind { @@ -507,7 +512,7 @@ func (x *TypeDescriptor_Kind) UnmarshalJSON(data []byte) error { return nil } func (TypeDescriptor_Kind) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_e99babb77d2e3eaf, []int{13, 0} + return fileDescriptor_structured_5501c86eb6427e1c, []int{13, 0} } // ForeignKeyReference is deprecated, replaced by ForeignKeyConstraint in v19.2 @@ -537,7 +542,7 @@ func (m *ForeignKeyReference) Reset() { *m = ForeignKeyReference{} } func (m *ForeignKeyReference) String() string { return proto.CompactTextString(m) } func (*ForeignKeyReference) ProtoMessage() {} func (*ForeignKeyReference) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_e99babb77d2e3eaf, []int{0} + return fileDescriptor_structured_5501c86eb6427e1c, []int{0} } func (m *ForeignKeyReference) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -599,7 +604,7 @@ func (m *ForeignKeyConstraint) Reset() { *m = ForeignKeyConstraint{} } func (m *ForeignKeyConstraint) String() string { return proto.CompactTextString(m) } func (*ForeignKeyConstraint) ProtoMessage() {} func (*ForeignKeyConstraint) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_e99babb77d2e3eaf, []int{1} + return fileDescriptor_structured_5501c86eb6427e1c, []int{1} } func (m *ForeignKeyConstraint) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -653,7 +658,7 @@ func (m *ColumnDescriptor) Reset() { *m = ColumnDescriptor{} } func (m *ColumnDescriptor) String() string { return proto.CompactTextString(m) } func (*ColumnDescriptor) ProtoMessage() {} func (*ColumnDescriptor) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_e99babb77d2e3eaf, []int{2} + return fileDescriptor_structured_5501c86eb6427e1c, []int{2} } func (m *ColumnDescriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -709,7 +714,7 @@ func (m *ColumnFamilyDescriptor) Reset() { *m = ColumnFamilyDescriptor{} func (m *ColumnFamilyDescriptor) String() string { return proto.CompactTextString(m) } func (*ColumnFamilyDescriptor) ProtoMessage() {} func (*ColumnFamilyDescriptor) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_e99babb77d2e3eaf, []int{3} + return fileDescriptor_structured_5501c86eb6427e1c, []int{3} } func (m *ColumnFamilyDescriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -755,7 +760,7 @@ func (m *InterleaveDescriptor) Reset() { *m = InterleaveDescriptor{} } func (m *InterleaveDescriptor) String() string { return proto.CompactTextString(m) } func (*InterleaveDescriptor) ProtoMessage() {} func (*InterleaveDescriptor) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_e99babb77d2e3eaf, []int{4} + return fileDescriptor_structured_5501c86eb6427e1c, []int{4} } func (m *InterleaveDescriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -799,7 +804,7 @@ func (m *InterleaveDescriptor_Ancestor) Reset() { *m = InterleaveDescrip func (m *InterleaveDescriptor_Ancestor) String() string { return proto.CompactTextString(m) } func (*InterleaveDescriptor_Ancestor) ProtoMessage() {} func (*InterleaveDescriptor_Ancestor) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_e99babb77d2e3eaf, []int{4, 0} + return fileDescriptor_structured_5501c86eb6427e1c, []int{4, 0} } func (m *InterleaveDescriptor_Ancestor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -854,7 +859,7 @@ func (m *ShardedDescriptor) Reset() { *m = ShardedDescriptor{} } func (m *ShardedDescriptor) String() string { return proto.CompactTextString(m) } func (*ShardedDescriptor) ProtoMessage() {} func (*ShardedDescriptor) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_e99babb77d2e3eaf, []int{5} + return fileDescriptor_structured_5501c86eb6427e1c, []int{5} } func (m *ShardedDescriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -899,7 +904,7 @@ func (m *PartitioningDescriptor) Reset() { *m = PartitioningDescriptor{} func (m *PartitioningDescriptor) String() string { return proto.CompactTextString(m) } func (*PartitioningDescriptor) ProtoMessage() {} func (*PartitioningDescriptor) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_e99babb77d2e3eaf, []int{6} + return fileDescriptor_structured_5501c86eb6427e1c, []int{6} } func (m *PartitioningDescriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -942,7 +947,7 @@ func (m *PartitioningDescriptor_List) Reset() { *m = PartitioningDescrip func (m *PartitioningDescriptor_List) String() string { return proto.CompactTextString(m) } func (*PartitioningDescriptor_List) ProtoMessage() {} func (*PartitioningDescriptor_List) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_e99babb77d2e3eaf, []int{6, 0} + return fileDescriptor_structured_5501c86eb6427e1c, []int{6, 0} } func (m *PartitioningDescriptor_List) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -987,7 +992,7 @@ func (m *PartitioningDescriptor_Range) Reset() { *m = PartitioningDescri func (m *PartitioningDescriptor_Range) String() string { return proto.CompactTextString(m) } func (*PartitioningDescriptor_Range) ProtoMessage() {} func (*PartitioningDescriptor_Range) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_e99babb77d2e3eaf, []int{6, 1} + return fileDescriptor_structured_5501c86eb6427e1c, []int{6, 1} } func (m *PartitioningDescriptor_Range) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1145,7 +1150,7 @@ func (m *IndexDescriptor) Reset() { *m = IndexDescriptor{} } func (m *IndexDescriptor) String() string { return proto.CompactTextString(m) } func (*IndexDescriptor) ProtoMessage() {} func (*IndexDescriptor) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_e99babb77d2e3eaf, []int{7} + return fileDescriptor_structured_5501c86eb6427e1c, []int{7} } func (m *IndexDescriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1196,7 +1201,7 @@ func (m *ConstraintToUpdate) Reset() { *m = ConstraintToUpdate{} } func (m *ConstraintToUpdate) String() string { return proto.CompactTextString(m) } func (*ConstraintToUpdate) ProtoMessage() {} func (*ConstraintToUpdate) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_e99babb77d2e3eaf, []int{8} + return fileDescriptor_structured_5501c86eb6427e1c, []int{8} } func (m *ConstraintToUpdate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1239,7 +1244,7 @@ func (m *PrimaryKeySwap) Reset() { *m = PrimaryKeySwap{} } func (m *PrimaryKeySwap) String() string { return proto.CompactTextString(m) } func (*PrimaryKeySwap) ProtoMessage() {} func (*PrimaryKeySwap) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_e99babb77d2e3eaf, []int{9} + return fileDescriptor_structured_5501c86eb6427e1c, []int{9} } func (m *PrimaryKeySwap) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1294,7 +1299,7 @@ func (m *DescriptorMutation) Reset() { *m = DescriptorMutation{} } func (m *DescriptorMutation) String() string { return proto.CompactTextString(m) } func (*DescriptorMutation) ProtoMessage() {} func (*DescriptorMutation) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_e99babb77d2e3eaf, []int{10} + return fileDescriptor_structured_5501c86eb6427e1c, []int{10} } func (m *DescriptorMutation) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1643,7 +1648,7 @@ func (m *TableDescriptor) Reset() { *m = TableDescriptor{} } func (m *TableDescriptor) String() string { return proto.CompactTextString(m) } func (*TableDescriptor) ProtoMessage() {} func (*TableDescriptor) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_e99babb77d2e3eaf, []int{11} + return fileDescriptor_structured_5501c86eb6427e1c, []int{11} } func (m *TableDescriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1943,7 +1948,7 @@ func (m *TableDescriptor_SchemaChangeLease) Reset() { *m = TableDescript func (m *TableDescriptor_SchemaChangeLease) String() string { return proto.CompactTextString(m) } func (*TableDescriptor_SchemaChangeLease) ProtoMessage() {} func (*TableDescriptor_SchemaChangeLease) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_e99babb77d2e3eaf, []int{11, 0} + return fileDescriptor_structured_5501c86eb6427e1c, []int{11, 0} } func (m *TableDescriptor_SchemaChangeLease) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1984,7 +1989,7 @@ func (m *TableDescriptor_CheckConstraint) Reset() { *m = TableDescriptor func (m *TableDescriptor_CheckConstraint) String() string { return proto.CompactTextString(m) } func (*TableDescriptor_CheckConstraint) ProtoMessage() {} func (*TableDescriptor_CheckConstraint) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_e99babb77d2e3eaf, []int{11, 1} + return fileDescriptor_structured_5501c86eb6427e1c, []int{11, 1} } func (m *TableDescriptor_CheckConstraint) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2090,7 +2095,7 @@ func (m *TableDescriptor_NameInfo) Reset() { *m = TableDescriptor_NameIn func (m *TableDescriptor_NameInfo) String() string { return proto.CompactTextString(m) } func (*TableDescriptor_NameInfo) ProtoMessage() {} func (*TableDescriptor_NameInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_e99babb77d2e3eaf, []int{11, 2} + return fileDescriptor_structured_5501c86eb6427e1c, []int{11, 2} } func (m *TableDescriptor_NameInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2130,7 +2135,7 @@ func (m *TableDescriptor_Reference) Reset() { *m = TableDescriptor_Refer func (m *TableDescriptor_Reference) String() string { return proto.CompactTextString(m) } func (*TableDescriptor_Reference) ProtoMessage() {} func (*TableDescriptor_Reference) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_e99babb77d2e3eaf, []int{11, 3} + return fileDescriptor_structured_5501c86eb6427e1c, []int{11, 3} } func (m *TableDescriptor_Reference) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2167,7 +2172,7 @@ func (m *TableDescriptor_MutationJob) Reset() { *m = TableDescriptor_Mut func (m *TableDescriptor_MutationJob) String() string { return proto.CompactTextString(m) } func (*TableDescriptor_MutationJob) ProtoMessage() {} func (*TableDescriptor_MutationJob) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_e99babb77d2e3eaf, []int{11, 4} + return fileDescriptor_structured_5501c86eb6427e1c, []int{11, 4} } func (m *TableDescriptor_MutationJob) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2210,7 +2215,7 @@ func (m *TableDescriptor_SequenceOpts) Reset() { *m = TableDescriptor_Se func (m *TableDescriptor_SequenceOpts) String() string { return proto.CompactTextString(m) } func (*TableDescriptor_SequenceOpts) ProtoMessage() {} func (*TableDescriptor_SequenceOpts) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_e99babb77d2e3eaf, []int{11, 5} + return fileDescriptor_structured_5501c86eb6427e1c, []int{11, 5} } func (m *TableDescriptor_SequenceOpts) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2250,7 +2255,7 @@ func (m *TableDescriptor_SequenceOpts_SequenceOwner) String() string { } func (*TableDescriptor_SequenceOpts_SequenceOwner) ProtoMessage() {} func (*TableDescriptor_SequenceOpts_SequenceOwner) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_e99babb77d2e3eaf, []int{11, 5, 0} + return fileDescriptor_structured_5501c86eb6427e1c, []int{11, 5, 0} } func (m *TableDescriptor_SequenceOpts_SequenceOwner) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2290,7 +2295,7 @@ func (m *TableDescriptor_Replacement) Reset() { *m = TableDescriptor_Rep func (m *TableDescriptor_Replacement) String() string { return proto.CompactTextString(m) } func (*TableDescriptor_Replacement) ProtoMessage() {} func (*TableDescriptor_Replacement) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_e99babb77d2e3eaf, []int{11, 6} + return fileDescriptor_structured_5501c86eb6427e1c, []int{11, 6} } func (m *TableDescriptor_Replacement) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2327,7 +2332,7 @@ func (m *TableDescriptor_GCDescriptorMutation) Reset() { *m = TableDescr func (m *TableDescriptor_GCDescriptorMutation) String() string { return proto.CompactTextString(m) } func (*TableDescriptor_GCDescriptorMutation) ProtoMessage() {} func (*TableDescriptor_GCDescriptorMutation) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_e99babb77d2e3eaf, []int{11, 7} + return fileDescriptor_structured_5501c86eb6427e1c, []int{11, 7} } func (m *TableDescriptor_GCDescriptorMutation) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2366,7 +2371,7 @@ func (m *DatabaseDescriptor) Reset() { *m = DatabaseDescriptor{} } func (m *DatabaseDescriptor) String() string { return proto.CompactTextString(m) } func (*DatabaseDescriptor) ProtoMessage() {} func (*DatabaseDescriptor) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_e99babb77d2e3eaf, []int{12} + return fileDescriptor_structured_5501c86eb6427e1c, []int{12} } func (m *DatabaseDescriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2427,13 +2432,15 @@ type TypeDescriptor struct { Kind TypeDescriptor_Kind `protobuf:"varint,5,opt,name=kind,enum=cockroach.sql.sqlbase.TypeDescriptor_Kind" json:"kind"` // enum_members is the set of values in an enum. EnumMembers []TypeDescriptor_EnumMember `protobuf:"bytes,6,rep,name=enum_members,json=enumMembers" json:"enum_members"` + // alias is the types.T that this descriptor is an alias for. + Alias *types.T `protobuf:"bytes,7,opt,name=alias" json:"alias,omitempty"` } func (m *TypeDescriptor) Reset() { *m = TypeDescriptor{} } func (m *TypeDescriptor) String() string { return proto.CompactTextString(m) } func (*TypeDescriptor) ProtoMessage() {} func (*TypeDescriptor) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_e99babb77d2e3eaf, []int{13} + return fileDescriptor_structured_5501c86eb6427e1c, []int{13} } func (m *TypeDescriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2500,6 +2507,13 @@ func (m *TypeDescriptor) GetEnumMembers() []TypeDescriptor_EnumMember { return nil } +func (m *TypeDescriptor) GetAlias() *types.T { + if m != nil { + return m.Alias + } + return nil +} + // EnumMember represents a value in an enum. type TypeDescriptor_EnumMember struct { PhysicalRepresentation []byte `protobuf:"bytes,1,opt,name=physical_representation,json=physicalRepresentation" json:"physical_representation,omitempty"` @@ -2510,7 +2524,7 @@ func (m *TypeDescriptor_EnumMember) Reset() { *m = TypeDescriptor_EnumMe func (m *TypeDescriptor_EnumMember) String() string { return proto.CompactTextString(m) } func (*TypeDescriptor_EnumMember) ProtoMessage() {} func (*TypeDescriptor_EnumMember) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_e99babb77d2e3eaf, []int{13, 0} + return fileDescriptor_structured_5501c86eb6427e1c, []int{13, 0} } func (m *TypeDescriptor_EnumMember) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2552,7 +2566,7 @@ func (m *SchemaDescriptor) Reset() { *m = SchemaDescriptor{} } func (m *SchemaDescriptor) String() string { return proto.CompactTextString(m) } func (*SchemaDescriptor) ProtoMessage() {} func (*SchemaDescriptor) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_e99babb77d2e3eaf, []int{14} + return fileDescriptor_structured_5501c86eb6427e1c, []int{14} } func (m *SchemaDescriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2620,7 +2634,7 @@ func (m *Descriptor) Reset() { *m = Descriptor{} } func (m *Descriptor) String() string { return proto.CompactTextString(m) } func (*Descriptor) ProtoMessage() {} func (*Descriptor) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_e99babb77d2e3eaf, []int{15} + return fileDescriptor_structured_5501c86eb6427e1c, []int{15} } func (m *Descriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4188,6 +4202,9 @@ func (this *TypeDescriptor) Equal(that interface{}) bool { return false } } + if !this.Alias.Equal(that1.Alias) { + return false + } return true } func (this *TypeDescriptor_EnumMember) Equal(that interface{}) bool { @@ -5905,6 +5922,16 @@ func (m *TypeDescriptor) MarshalTo(dAtA []byte) (int, error) { i += n } } + if m.Alias != nil { + dAtA[i] = 0x3a + i++ + i = encodeVarintStructured(dAtA, i, uint64(m.Alias.Size())) + n25, err := m.Alias.MarshalTo(dAtA[i:]) + if err != nil { + return 0, err + } + i += n25 + } return i, nil } @@ -5965,11 +5992,11 @@ func (m *SchemaDescriptor) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x22 i++ i = encodeVarintStructured(dAtA, i, uint64(m.Privileges.Size())) - n25, err := m.Privileges.MarshalTo(dAtA[i:]) + n26, err := m.Privileges.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n25 + i += n26 } return i, nil } @@ -5990,11 +6017,11 @@ func (m *Descriptor) MarshalTo(dAtA []byte) (int, error) { var l int _ = l if m.Union != nil { - nn26, err := m.Union.MarshalTo(dAtA[i:]) + nn27, err := m.Union.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += nn26 + i += nn27 } return i, nil } @@ -6005,11 +6032,11 @@ func (m *Descriptor_Table) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintStructured(dAtA, i, uint64(m.Table.Size())) - n27, err := m.Table.MarshalTo(dAtA[i:]) + n28, err := m.Table.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n27 + i += n28 } return i, nil } @@ -6019,11 +6046,11 @@ func (m *Descriptor_Database) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x12 i++ i = encodeVarintStructured(dAtA, i, uint64(m.Database.Size())) - n28, err := m.Database.MarshalTo(dAtA[i:]) + n29, err := m.Database.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n28 + i += n29 } return i, nil } @@ -6033,11 +6060,11 @@ func (m *Descriptor_Type) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1a i++ i = encodeVarintStructured(dAtA, i, uint64(m.Type.Size())) - n29, err := m.Type.MarshalTo(dAtA[i:]) + n30, err := m.Type.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n29 + i += n30 } return i, nil } @@ -6047,11 +6074,11 @@ func (m *Descriptor_Schema) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x22 i++ i = encodeVarintStructured(dAtA, i, uint64(m.Schema.Size())) - n30, err := m.Schema.MarshalTo(dAtA[i:]) + n31, err := m.Schema.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n30 + i += n31 } return i, nil } @@ -6736,6 +6763,10 @@ func (m *TypeDescriptor) Size() (n int) { n += 1 + l + sovStructured(uint64(l)) } } + if m.Alias != nil { + l = m.Alias.Size() + n += 1 + l + sovStructured(uint64(l)) + } return n } @@ -12838,6 +12869,39 @@ func (m *TypeDescriptor) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 7: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Alias", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowStructured + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthStructured + } + postIndex := iNdEx + msglen + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Alias == nil { + m.Alias = &types.T{} + } + if err := m.Alias.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipStructured(dAtA[iNdEx:]) @@ -13403,261 +13467,263 @@ var ( ) func init() { - proto.RegisterFile("sql/sqlbase/structured.proto", fileDescriptor_structured_e99babb77d2e3eaf) + proto.RegisterFile("sql/sqlbase/structured.proto", fileDescriptor_structured_5501c86eb6427e1c) } -var fileDescriptor_structured_e99babb77d2e3eaf = []byte{ - // 4027 bytes of a gzipped FileDescriptorProto +var fileDescriptor_structured_5501c86eb6427e1c = []byte{ + // 4050 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x3a, 0xcd, 0x6f, 0x1b, 0x57, - 0x7e, 0x1a, 0x7e, 0xf3, 0xc7, 0xaf, 0xe1, 0xd3, 0x87, 0x69, 0xc5, 0x2b, 0xc9, 0x74, 0x9c, 0x68, + 0x7e, 0x1a, 0x7e, 0xf3, 0xc7, 0xaf, 0xe1, 0xd3, 0x87, 0x19, 0xd9, 0x2b, 0xc9, 0x74, 0x9c, 0x68, 0x37, 0x89, 0xe4, 0xc8, 0x6d, 0xd7, 0x9b, 0x14, 0x8b, 0x50, 0x24, 0x65, 0xd1, 0x92, 0x49, 0x65, 0x24, 0xc7, 0xbb, 0xc5, 0xb6, 0xd3, 0x11, 0xe7, 0x91, 0x9a, 0x78, 0x38, 0x43, 0xcf, 0x0c, 0x6d, - 0x11, 0xe8, 0xa9, 0xbd, 0xec, 0xa9, 0x68, 0xff, 0x80, 0x02, 0x41, 0x11, 0xb4, 0x7b, 0xed, 0xa5, - 0xbd, 0x15, 0xe8, 0xa5, 0xc8, 0xa9, 0x5d, 0xa0, 0x97, 0xed, 0x45, 0x68, 0x95, 0x4b, 0xaf, 0xbd, - 0xb4, 0x40, 0x4e, 0xc5, 0xfb, 0x9a, 0x0f, 0x8a, 0xd4, 0x52, 0x76, 0x7a, 0x11, 0x34, 0xbf, 0xaf, - 0xf7, 0xde, 0xef, 0xfd, 0xbe, 0x1f, 0xe1, 0x8e, 0xfb, 0xd2, 0xdc, 0x76, 0x5f, 0x9a, 0xa7, 0x9a, - 0x8b, 0xb7, 0x5d, 0xcf, 0x19, 0x75, 0xbd, 0x91, 0x83, 0xf5, 0xad, 0xa1, 0x63, 0x7b, 0x36, 0x5a, - 0xee, 0xda, 0xdd, 0x17, 0x8e, 0xad, 0x75, 0xcf, 0xb6, 0xdc, 0x97, 0xe6, 0x16, 0xa7, 0x5b, 0xad, - 0x8c, 0x3c, 0xc3, 0xdc, 0x3e, 0x33, 0xbb, 0xdb, 0x9e, 0x31, 0xc0, 0xae, 0xa7, 0x0d, 0x86, 0x8c, - 0x61, 0xf5, 0x9d, 0xb0, 0xb8, 0xa1, 0x63, 0xbc, 0x32, 0x4c, 0xdc, 0xc7, 0x1c, 0xb9, 0x4c, 0x90, - 0xde, 0x78, 0x88, 0x5d, 0xf6, 0x97, 0x83, 0x6f, 0xf7, 0xb1, 0xbd, 0xdd, 0xc7, 0xb6, 0x61, 0xe9, - 0xf8, 0x7c, 0xbb, 0x6b, 0x5b, 0x3d, 0xa3, 0xcf, 0x51, 0x4b, 0x7d, 0xbb, 0x6f, 0xd3, 0x7f, 0xb7, - 0xc9, 0x7f, 0x0c, 0x5a, 0xfd, 0xd3, 0x24, 0x2c, 0xee, 0xd9, 0x0e, 0x36, 0xfa, 0xd6, 0x01, 0x1e, - 0x2b, 0xb8, 0x87, 0x1d, 0x6c, 0x75, 0x31, 0xda, 0x80, 0xa4, 0xa7, 0x9d, 0x9a, 0xb8, 0x22, 0x6d, - 0x48, 0x9b, 0x85, 0x5d, 0xf8, 0xe6, 0x62, 0x7d, 0xe1, 0xbb, 0x8b, 0xf5, 0x58, 0xab, 0xa1, 0x30, - 0x04, 0xba, 0x0f, 0x49, 0xba, 0x4a, 0x25, 0x46, 0x29, 0x4a, 0x9c, 0x22, 0xdd, 0x22, 0x40, 0x42, - 0x46, 0xb1, 0xa8, 0x02, 0x09, 0x4b, 0x1b, 0xe0, 0x4a, 0x7c, 0x43, 0xda, 0xcc, 0xee, 0x26, 0x08, - 0x95, 0x42, 0x21, 0xe8, 0x00, 0x32, 0xaf, 0x34, 0xd3, 0xd0, 0x0d, 0x6f, 0x5c, 0x49, 0x6c, 0x48, - 0x9b, 0xc5, 0x9d, 0x1f, 0x6e, 0x4d, 0xd5, 0xd1, 0x56, 0xdd, 0xb6, 0x5c, 0xcf, 0xd1, 0x0c, 0xcb, - 0xfb, 0x82, 0x33, 0x70, 0x41, 0xbe, 0x00, 0xf4, 0x00, 0xca, 0xee, 0x99, 0xe6, 0x60, 0x5d, 0x1d, - 0x3a, 0xb8, 0x67, 0x9c, 0xab, 0x26, 0xb6, 0x2a, 0xc9, 0x0d, 0x69, 0x33, 0xc9, 0x49, 0x4b, 0x0c, - 0x7d, 0x44, 0xb1, 0x87, 0xd8, 0x42, 0x27, 0x90, 0xb5, 0x2d, 0x55, 0xc7, 0x26, 0xf6, 0x70, 0x25, - 0x45, 0xd7, 0xff, 0x78, 0xc6, 0xfa, 0x53, 0x14, 0xb4, 0x55, 0xeb, 0x7a, 0x86, 0x6d, 0x89, 0x7d, - 0xd8, 0x56, 0x83, 0x0a, 0xe2, 0x52, 0x47, 0x43, 0x5d, 0xf3, 0x70, 0x25, 0xfd, 0xd6, 0x52, 0x9f, - 0x51, 0x41, 0xe8, 0x10, 0x92, 0x03, 0xcd, 0xeb, 0x9e, 0x55, 0x32, 0x54, 0xe2, 0x83, 0x1b, 0x48, - 0x7c, 0x4a, 0xf8, 0xb8, 0x40, 0x26, 0xa4, 0xfa, 0x1c, 0x52, 0x6c, 0x1d, 0x54, 0x80, 0x6c, 0xbb, - 0xa3, 0xd6, 0xea, 0x27, 0xad, 0x4e, 0x5b, 0x5e, 0x40, 0x79, 0xc8, 0x28, 0xcd, 0xe3, 0x13, 0xa5, - 0x55, 0x3f, 0x91, 0x25, 0xf2, 0x75, 0xdc, 0x3c, 0x51, 0xdb, 0xcf, 0x0e, 0x0f, 0xe5, 0x18, 0x2a, - 0x41, 0x8e, 0x7c, 0x35, 0x9a, 0x7b, 0xb5, 0x67, 0x87, 0x27, 0x72, 0x1c, 0xe5, 0x20, 0x5d, 0xaf, - 0x1d, 0xd7, 0x6b, 0x8d, 0xa6, 0x9c, 0x58, 0x4d, 0xfc, 0xea, 0xeb, 0xb5, 0x85, 0xea, 0x03, 0x48, - 0xd2, 0xe5, 0x10, 0x40, 0xea, 0xb8, 0xf5, 0xf4, 0xe8, 0xb0, 0x29, 0x2f, 0xa0, 0x0c, 0x24, 0xf6, - 0x88, 0x08, 0x89, 0x70, 0x1c, 0xd5, 0x94, 0x93, 0x56, 0xed, 0x50, 0x8e, 0x31, 0x8e, 0x4f, 0x12, - 0xff, 0xf5, 0xd5, 0xba, 0x54, 0xfd, 0xb7, 0x14, 0x2c, 0x05, 0x7b, 0x0f, 0x6e, 0x1b, 0xd5, 0xa1, - 0x64, 0x3b, 0x46, 0xdf, 0xb0, 0x54, 0x6a, 0x73, 0xaa, 0xa1, 0x73, 0x7b, 0x7c, 0x87, 0x9c, 0xe7, - 0xf2, 0x62, 0xbd, 0xd0, 0xa1, 0xe8, 0x13, 0x82, 0x6d, 0x35, 0xb8, 0x81, 0x16, 0xec, 0x10, 0x50, - 0x47, 0x07, 0x50, 0xe6, 0x42, 0xba, 0xb6, 0x39, 0x1a, 0x58, 0xaa, 0xa1, 0xbb, 0x95, 0xd8, 0x46, - 0x7c, 0xb3, 0xb0, 0xbb, 0x7e, 0x79, 0xb1, 0x5e, 0x62, 0x22, 0xea, 0x14, 0xd7, 0x6a, 0xb8, 0xdf, - 0x5d, 0xac, 0x67, 0xc4, 0x87, 0xc2, 0x97, 0xe7, 0xdf, 0xba, 0x8b, 0x9e, 0xc3, 0xb2, 0x23, 0x74, - 0xab, 0x87, 0x05, 0xc6, 0xa9, 0xc0, 0x7b, 0x97, 0x17, 0xeb, 0x8b, 0xbe, 0xf2, 0xf5, 0xe9, 0x42, - 0x17, 0x9d, 0x49, 0x02, 0xdd, 0x45, 0x1d, 0x08, 0x81, 0x83, 0xe3, 0x26, 0xe8, 0x71, 0xd7, 0xf9, - 0x71, 0xcb, 0x81, 0xe8, 0xe8, 0x91, 0xcb, 0xce, 0x04, 0x42, 0xf7, 0x1d, 0x2f, 0x79, 0xad, 0xe3, - 0xa5, 0xde, 0xd6, 0xf1, 0x22, 0x6e, 0x94, 0xfe, 0x7f, 0x71, 0xa3, 0xcc, 0xf7, 0xee, 0x46, 0xd9, - 0xef, 0xc1, 0x8d, 0x50, 0x0d, 0x16, 0x4d, 0xdc, 0xd7, 0xba, 0x63, 0x95, 0x9b, 0x17, 0x0b, 0x87, - 0x40, 0x6f, 0xac, 0x3c, 0x11, 0x0e, 0x2b, 0x92, 0x52, 0x66, 0xd4, 0xcc, 0xdc, 0x28, 0x18, 0xb5, - 0xe0, 0x16, 0x17, 0x11, 0xba, 0x7b, 0x26, 0x26, 0x37, 0x4b, 0xcc, 0x32, 0xe3, 0x08, 0x2c, 0x81, - 0xa2, 0x98, 0x27, 0x3d, 0x49, 0x64, 0xf2, 0x72, 0xe1, 0x49, 0x22, 0x53, 0x90, 0x8b, 0xd5, 0x7f, - 0x89, 0x83, 0xcc, 0xec, 0xab, 0x81, 0xdd, 0xae, 0x63, 0x0c, 0x3d, 0xdb, 0xf1, 0xad, 0x42, 0xba, - 0x62, 0x15, 0xef, 0x41, 0xcc, 0xd0, 0x79, 0x30, 0x5f, 0xe1, 0xf6, 0x16, 0xa3, 0x06, 0x16, 0x58, - 0x6e, 0xcc, 0xd0, 0xd1, 0x16, 0x24, 0x48, 0xc6, 0xa1, 0x01, 0x3d, 0xb7, 0xb3, 0x3a, 0xa9, 0x43, - 0x3c, 0xd8, 0x62, 0x09, 0xe9, 0x44, 0xa1, 0x74, 0x68, 0x03, 0x32, 0xd6, 0xc8, 0x34, 0x69, 0x32, - 0x21, 0xd6, 0x9c, 0x11, 0xd7, 0x22, 0xa0, 0xe8, 0x2e, 0xe4, 0x75, 0xdc, 0xd3, 0x46, 0xa6, 0xa7, - 0xe2, 0xf3, 0xa1, 0xc3, 0x2c, 0x56, 0xc9, 0x71, 0x58, 0xf3, 0x7c, 0xe8, 0xa0, 0x3b, 0x90, 0x3a, - 0x33, 0x74, 0x1d, 0x5b, 0xd4, 0x60, 0x85, 0x08, 0x0e, 0x43, 0x3b, 0x50, 0x1e, 0xb9, 0xd8, 0x55, - 0x5d, 0xfc, 0x72, 0x44, 0x54, 0x42, 0x1d, 0x12, 0xa8, 0x43, 0xa6, 0xb8, 0x83, 0x94, 0x08, 0xc1, - 0x31, 0xc7, 0x13, 0x7f, 0xbb, 0x0b, 0xf9, 0xae, 0x3d, 0x18, 0x8e, 0x3c, 0xcc, 0x16, 0xcd, 0xb1, - 0x45, 0x39, 0x8c, 0x2e, 0xba, 0x03, 0x65, 0xfb, 0xb5, 0x35, 0x21, 0x36, 0x1f, 0x15, 0x4b, 0x08, - 0xc2, 0x62, 0x77, 0x01, 0x4c, 0xbb, 0x6f, 0x74, 0x35, 0x93, 0x78, 0x6f, 0x81, 0x6a, 0xf3, 0x1e, - 0xd7, 0x66, 0xe9, 0x90, 0x61, 0x84, 0x3a, 0x23, 0xaa, 0xcd, 0x72, 0xb6, 0x96, 0xee, 0x5f, 0x65, - 0x46, 0xce, 0x3e, 0x49, 0x64, 0xb2, 0x32, 0x3c, 0x49, 0x64, 0xd2, 0x72, 0xa6, 0xfa, 0xe7, 0x31, - 0x58, 0x61, 0xf4, 0x7b, 0xda, 0xc0, 0x30, 0xc7, 0x6f, 0x7b, 0xad, 0x4c, 0x0a, 0xbf, 0x56, 0xaa, - 0x0f, 0x1a, 0xcd, 0x08, 0x1b, 0x8b, 0x67, 0x54, 0x1f, 0x04, 0xd6, 0x26, 0x20, 0xf4, 0x08, 0x20, - 0x14, 0xf0, 0x12, 0x54, 0x11, 0xb7, 0x2f, 0x2f, 0xd6, 0xb3, 0xd3, 0xc3, 0x5c, 0xb6, 0x1b, 0x0a, - 0x6e, 0x65, 0x71, 0xc3, 0xbe, 0x04, 0x7a, 0xcd, 0x21, 0xe5, 0x34, 0x18, 0xc1, 0x54, 0xe5, 0x94, - 0xf4, 0x08, 0x92, 0xab, 0xa8, 0xfa, 0x0f, 0x31, 0x58, 0x6a, 0x59, 0x1e, 0x76, 0x4c, 0xac, 0xbd, - 0xc2, 0x21, 0x75, 0xfc, 0x0c, 0xb2, 0x9a, 0xd5, 0xc5, 0xae, 0x67, 0x3b, 0x6e, 0x45, 0xda, 0x88, - 0x6f, 0xe6, 0x76, 0x7e, 0x67, 0x86, 0xb3, 0x4f, 0xe3, 0xdf, 0xaa, 0x71, 0x66, 0xae, 0xc9, 0x40, - 0xd8, 0xea, 0x3f, 0x4a, 0x90, 0x11, 0x58, 0xf4, 0x00, 0x32, 0x13, 0x79, 0x69, 0x99, 0x9f, 0x26, - 0x1d, 0x0d, 0xcf, 0x69, 0x8f, 0x07, 0xe5, 0xdf, 0x85, 0x0c, 0x75, 0x6f, 0xd5, 0xbf, 0x93, 0x55, - 0xc1, 0xc1, 0x3d, 0x3c, 0x5c, 0x42, 0xa5, 0x29, 0x6d, 0x4b, 0x47, 0xf5, 0x69, 0xd5, 0x4d, 0x9c, - 0xf2, 0xdf, 0x12, 0xfa, 0x3b, 0x8e, 0xd6, 0x37, 0x57, 0x0a, 0x1e, 0xa6, 0x33, 0xae, 0xb9, 0xbf, - 0x97, 0xa0, 0x4c, 0x18, 0x74, 0xac, 0x87, 0xd4, 0x76, 0x0f, 0xc0, 0x70, 0x55, 0x97, 0xc1, 0xe9, - 0x89, 0x84, 0xa7, 0x65, 0x0d, 0x97, 0x93, 0xfb, 0xa6, 0x16, 0xbb, 0x62, 0x6a, 0x3f, 0x81, 0x02, - 0xe5, 0x55, 0x4f, 0x47, 0xdd, 0x17, 0xd8, 0x73, 0xe9, 0x0e, 0x93, 0xbb, 0x4b, 0x7c, 0x87, 0x79, - 0x2a, 0x61, 0x97, 0xe1, 0x94, 0xbc, 0x1b, 0xfa, 0xba, 0x62, 0x7d, 0x89, 0x2b, 0xd6, 0xc7, 0x37, - 0xfe, 0xbf, 0x71, 0x58, 0x39, 0xd2, 0x1c, 0xcf, 0x20, 0x01, 0xde, 0xb0, 0xfa, 0xa1, 0xdd, 0xdf, - 0x87, 0x9c, 0x35, 0x1a, 0x70, 0x03, 0x73, 0xf9, 0x85, 0xb0, 0xfd, 0x81, 0x35, 0x1a, 0x30, 0xdb, - 0x71, 0xd1, 0x21, 0x24, 0x4c, 0xc3, 0xf5, 0x68, 0x05, 0x90, 0xdb, 0xd9, 0x99, 0x61, 0x16, 0xd3, - 0xd7, 0xd8, 0x3a, 0x34, 0x5c, 0x4f, 0x9c, 0x99, 0x48, 0x41, 0x1d, 0x48, 0x3a, 0x9a, 0xd5, 0xc7, - 0xd4, 0x5f, 0x72, 0x3b, 0x0f, 0x6f, 0x26, 0x4e, 0x21, 0xac, 0x22, 0xab, 0x50, 0x39, 0xab, 0x7f, - 0x25, 0x41, 0x82, 0xac, 0x72, 0x8d, 0x4b, 0xaf, 0x40, 0xea, 0x95, 0x66, 0x8e, 0x30, 0xab, 0x62, - 0xf2, 0x0a, 0xff, 0x42, 0x7f, 0x08, 0x25, 0x77, 0x74, 0x3a, 0x0c, 0x2d, 0xc5, 0x83, 0xf4, 0x47, - 0x37, 0xda, 0x95, 0x5f, 0x30, 0x47, 0x65, 0xb1, 0x0b, 0x58, 0x7d, 0x09, 0x49, 0xba, 0xeb, 0x6b, - 0xf6, 0x77, 0x17, 0xf2, 0x9e, 0xad, 0xe2, 0xf3, 0xae, 0x39, 0x72, 0x8d, 0x57, 0xcc, 0x52, 0xf2, - 0x4a, 0xce, 0xb3, 0x9b, 0x02, 0x84, 0xee, 0x43, 0xb1, 0xe7, 0xd8, 0x03, 0xd5, 0xb0, 0x04, 0x51, - 0x9c, 0x12, 0x15, 0x08, 0xb4, 0x25, 0x80, 0x11, 0x93, 0xfd, 0xef, 0x1c, 0x94, 0xa8, 0x63, 0xcc, - 0x15, 0xf6, 0xee, 0x87, 0xc2, 0xde, 0x72, 0x24, 0xec, 0xf9, 0xde, 0x45, 0xa2, 0xde, 0x1d, 0x48, - 0x8d, 0x2c, 0xe3, 0xe5, 0x88, 0xad, 0xef, 0xe7, 0x15, 0x06, 0x9b, 0xc3, 0x2a, 0xd1, 0x87, 0x80, - 0x48, 0x28, 0xc0, 0x6a, 0x84, 0x30, 0x49, 0x09, 0x65, 0x8a, 0xa9, 0xcf, 0x8c, 0xa0, 0xa9, 0x1b, - 0x44, 0xd0, 0x7d, 0x90, 0xf1, 0xb9, 0xe7, 0x68, 0xe1, 0x92, 0x33, 0x4d, 0xf9, 0xd7, 0x2e, 0x2f, - 0xd6, 0x8b, 0x4d, 0x82, 0x9b, 0x2e, 0xa4, 0x88, 0x43, 0x38, 0x9d, 0x58, 0x49, 0x99, 0xcb, 0xd0, - 0x0d, 0x07, 0xd3, 0x42, 0xc9, 0xad, 0x64, 0x36, 0xe2, 0xd7, 0x14, 0x44, 0x13, 0x6a, 0xdf, 0x6a, - 0x08, 0x46, 0x45, 0x66, 0xa2, 0x7c, 0x80, 0x8b, 0x8e, 0x21, 0xd7, 0x63, 0xf5, 0x93, 0xfa, 0x02, - 0x8f, 0x69, 0xa5, 0x95, 0xdb, 0xf9, 0xd1, 0xfc, 0x95, 0xd6, 0x6e, 0x8a, 0x5c, 0x41, 0x45, 0x52, - 0xa0, 0xe7, 0x23, 0xd1, 0x73, 0x28, 0x84, 0x0a, 0xa4, 0xd3, 0x31, 0x4d, 0xee, 0x6f, 0x26, 0x36, - 0x1f, 0x08, 0xda, 0x1d, 0xa3, 0xcf, 0x01, 0x0c, 0x3f, 0x01, 0xd0, 0x1a, 0x20, 0xb7, 0xf3, 0xc1, - 0x0d, 0x32, 0x85, 0x88, 0x2f, 0x81, 0x10, 0xf4, 0x1c, 0x8a, 0xc1, 0x17, 0xdd, 0x6c, 0xfe, 0xc6, - 0x9b, 0x65, 0x52, 0x0b, 0x21, 0x39, 0xbb, 0xa4, 0xd2, 0x5e, 0x22, 0xd5, 0x89, 0xed, 0x1a, 0x1e, - 0x0e, 0x9b, 0x41, 0x81, 0x9a, 0x41, 0xf5, 0xf2, 0x62, 0x1d, 0xd5, 0x05, 0x7e, 0xba, 0x29, 0xa0, - 0xee, 0x04, 0x9e, 0x19, 0x56, 0xc4, 0x80, 0x89, 0xc4, 0x62, 0x60, 0x58, 0xc7, 0x81, 0x09, 0x5f, - 0x31, 0xac, 0x90, 0x79, 0xb3, 0xd6, 0x28, 0x1f, 0x89, 0x3d, 0xa5, 0x37, 0x8f, 0x3d, 0x11, 0x41, - 0xa8, 0xc9, 0x2b, 0x4e, 0x99, 0x56, 0xed, 0x1f, 0xcc, 0x69, 0xa4, 0x27, 0xe3, 0xa1, 0x50, 0x24, - 0x2b, 0x44, 0x1f, 0x02, 0xea, 0x3a, 0x58, 0xf3, 0xb0, 0x4e, 0x2a, 0x3e, 0xd3, 0xe8, 0x1a, 0x9e, - 0x39, 0xae, 0x94, 0x43, 0x7e, 0x5f, 0xe6, 0xf8, 0xa6, 0x8f, 0x46, 0x8f, 0x20, 0xfd, 0x0a, 0x3b, - 0xae, 0x61, 0x5b, 0x15, 0x44, 0x83, 0xc9, 0x1a, 0xaf, 0xc8, 0x57, 0x26, 0xd6, 0xfb, 0x82, 0x51, - 0x29, 0x82, 0x1c, 0xed, 0x43, 0x01, 0x5b, 0x5d, 0x5b, 0x37, 0xac, 0xbe, 0x4a, 0xb7, 0xbf, 0x18, - 0xd4, 0x3b, 0xdf, 0x5d, 0xac, 0xbf, 0x33, 0xc1, 0xdf, 0xe4, 0xb4, 0x64, 0xdb, 0x4a, 0x1e, 0x87, - 0xbe, 0xd0, 0x3e, 0xa4, 0x45, 0x4e, 0x5e, 0xa2, 0x3a, 0xdd, 0x9c, 0xa1, 0x82, 0x2b, 0x19, 0x9d, - 0x9f, 0x4b, 0xb0, 0x93, 0x5a, 0x5c, 0x37, 0x5c, 0x52, 0x8b, 0xe8, 0x95, 0xe5, 0x70, 0x2d, 0x2e, - 0xa0, 0xa8, 0x0e, 0xd0, 0xc7, 0xb6, 0xca, 0x26, 0x47, 0x95, 0x15, 0xba, 0xdc, 0x5a, 0x68, 0xb9, - 0x3e, 0xb6, 0xb7, 0xc4, 0x7c, 0x89, 0xb4, 0x87, 0x3d, 0xa3, 0x2f, 0x4a, 0x84, 0x3e, 0xb6, 0x19, - 0xa0, 0xba, 0x06, 0x59, 0x3f, 0x22, 0xa0, 0x34, 0xc4, 0x6b, 0xc7, 0x75, 0x36, 0x08, 0x68, 0x34, - 0x8f, 0xeb, 0xb2, 0x54, 0xbd, 0x0b, 0x09, 0x7a, 0xb0, 0x1c, 0xa4, 0xf7, 0x3a, 0xca, 0xf3, 0x9a, - 0xd2, 0x60, 0xc3, 0x87, 0x56, 0xfb, 0x8b, 0xa6, 0x72, 0xd2, 0x6c, 0xc8, 0x22, 0xe6, 0xff, 0x53, - 0x1c, 0x50, 0xd0, 0x83, 0x9e, 0xd8, 0xbc, 0x8f, 0xeb, 0x43, 0xa9, 0xeb, 0x43, 0x99, 0x72, 0xa5, - 0x8d, 0xd8, 0x66, 0x71, 0xe7, 0xd1, 0x6f, 0xed, 0x63, 0x85, 0x8c, 0x30, 0x28, 0x30, 0x94, 0x62, - 0x37, 0x02, 0x0d, 0xd5, 0x3a, 0xb1, 0x89, 0xfc, 0xa2, 0x40, 0xb2, 0x7b, 0x86, 0xbb, 0x2f, 0x78, - 0x86, 0xfd, 0xbd, 0x19, 0x0b, 0xd3, 0x32, 0x30, 0x64, 0x94, 0x75, 0xc2, 0x13, 0x2c, 0x2d, 0x52, - 0x3f, 0x15, 0x85, 0x94, 0x68, 0xe8, 0x4c, 0x5c, 0x1b, 0x8d, 0xa6, 0xcd, 0x4b, 0x44, 0x34, 0x0a, - 0x45, 0xce, 0x47, 0x50, 0xb2, 0x6c, 0x4f, 0x25, 0xbd, 0x16, 0xf7, 0x70, 0xda, 0x41, 0x15, 0x76, - 0x65, 0x6e, 0x87, 0x81, 0x3f, 0x17, 0x2c, 0xdb, 0x6b, 0x8f, 0x4c, 0xde, 0x9e, 0x54, 0x3f, 0x81, - 0x62, 0x54, 0x47, 0x28, 0x0b, 0xc9, 0xfa, 0x7e, 0xb3, 0x7e, 0x20, 0x2f, 0xa0, 0x12, 0xe4, 0xf6, - 0x3a, 0x4a, 0xb3, 0xf5, 0xb8, 0xad, 0x1e, 0x34, 0x7f, 0xce, 0x86, 0x45, 0xed, 0x8e, 0x18, 0x16, - 0xf9, 0x1d, 0x4c, 0x52, 0x4e, 0x55, 0xff, 0x47, 0x82, 0xe2, 0x91, 0x63, 0x0c, 0x34, 0x67, 0x7c, - 0x80, 0xc7, 0xc7, 0xaf, 0xb5, 0x21, 0xfa, 0x0c, 0x96, 0x2c, 0xfc, 0x5a, 0x1d, 0x32, 0xa8, 0xea, - 0x57, 0xc4, 0xd2, 0xf4, 0x49, 0x62, 0xd9, 0xc2, 0xaf, 0xb9, 0x84, 0x16, 0x2f, 0x88, 0x3f, 0x84, - 0x9c, 0x6d, 0xf2, 0x56, 0x19, 0x8b, 0x69, 0x4e, 0x2e, 0xcc, 0x04, 0xb6, 0xc9, 0x3a, 0x63, 0x9a, - 0xa4, 0x73, 0x64, 0x3d, 0x41, 0x1d, 0x9f, 0x42, 0x6d, 0xe1, 0xd7, 0x82, 0xfa, 0x33, 0x58, 0x22, - 0xb2, 0xaf, 0xec, 0x2e, 0x31, 0x63, 0x77, 0xb6, 0xa9, 0x47, 0x77, 0xc7, 0x8d, 0xf7, 0x9f, 0x93, - 0x80, 0x82, 0xab, 0x7f, 0x3a, 0xf2, 0x34, 0xea, 0x0f, 0x35, 0x48, 0xf1, 0x8b, 0x90, 0xe8, 0x05, - 0xbf, 0x3f, 0xd3, 0x66, 0xa3, 0xad, 0xfb, 0xfe, 0x82, 0xc2, 0x19, 0xd1, 0x4f, 0xc3, 0xa3, 0xd7, - 0xdc, 0xce, 0x7b, 0xf3, 0x45, 0xc4, 0xfd, 0x05, 0x31, 0x93, 0x3d, 0x80, 0xa4, 0xeb, 0x69, 0x1e, - 0x2b, 0x7a, 0x8a, 0x3b, 0xdb, 0x33, 0xf8, 0xaf, 0x6e, 0x7e, 0xeb, 0x98, 0xb0, 0x09, 0xab, 0xa5, - 0x32, 0xd0, 0x73, 0xc8, 0xfa, 0x85, 0x04, 0x9f, 0xe3, 0x3e, 0x9c, 0x5f, 0xa0, 0x1f, 0x27, 0x44, - 0x14, 0xf1, 0x65, 0xa1, 0x1a, 0xe4, 0x06, 0x9c, 0x2c, 0x68, 0x17, 0x37, 0x78, 0x2d, 0x07, 0x42, - 0x02, 0xad, 0xe9, 0x42, 0x5f, 0x0a, 0x08, 0xa6, 0x16, 0x8d, 0x77, 0x8e, 0x6d, 0x9a, 0xa7, 0x5a, - 0xf7, 0x05, 0x9d, 0x4d, 0xf9, 0xf1, 0x4e, 0x40, 0xd1, 0x01, 0xa9, 0xc8, 0x84, 0x95, 0xd3, 0x49, - 0x53, 0x6e, 0x8e, 0x69, 0x98, 0x88, 0x22, 0xfb, 0x0b, 0x4a, 0x88, 0x1d, 0x75, 0xa0, 0x38, 0x8c, - 0x58, 0x3a, 0x2f, 0x7f, 0xee, 0xcf, 0xca, 0x81, 0x11, 0xe2, 0xfd, 0x05, 0x65, 0x82, 0xbd, 0xfa, - 0x19, 0x24, 0xa9, 0xc6, 0x49, 0xa4, 0x7c, 0xd6, 0x3e, 0x68, 0x77, 0x9e, 0xb7, 0x99, 0xf3, 0x35, - 0x9a, 0x87, 0xcd, 0x93, 0xa6, 0xda, 0x69, 0x1f, 0x12, 0xe7, 0xbb, 0x0d, 0xcb, 0x1c, 0x50, 0x6b, - 0x37, 0xd4, 0xe7, 0x4a, 0x4b, 0xa0, 0x62, 0xd5, 0xcd, 0x70, 0x28, 0xce, 0x40, 0xa2, 0xdd, 0x69, - 0x37, 0xe5, 0x05, 0x1a, 0x94, 0x1b, 0x0d, 0x59, 0xa2, 0x41, 0x59, 0xe9, 0x1c, 0x09, 0x9f, 0xdd, - 0xcd, 0x03, 0xe8, 0xfe, 0x2d, 0x3d, 0x49, 0x64, 0x52, 0x72, 0xba, 0xfa, 0x67, 0xf7, 0xa0, 0x34, - 0x11, 0xc8, 0xae, 0xa9, 0xbc, 0x37, 0x68, 0xe5, 0x1d, 0x0f, 0x82, 0x8c, 0x5f, 0x79, 0xc7, 0x78, - 0xd1, 0xfd, 0x10, 0xb2, 0x43, 0xcd, 0xc1, 0x96, 0x17, 0x78, 0x95, 0x98, 0x4c, 0x64, 0x8e, 0x28, - 0xc2, 0x27, 0xcf, 0x30, 0xc2, 0x16, 0x61, 0xf2, 0x13, 0x31, 0xb3, 0x84, 0xdb, 0xdc, 0x11, 0xcb, - 0xd7, 0xe4, 0xe0, 0x23, 0x28, 0x0f, 0x6c, 0xdd, 0xe8, 0x19, 0x5d, 0x66, 0x46, 0x9e, 0x31, 0x60, - 0x43, 0xca, 0xdc, 0xce, 0x0f, 0x42, 0x77, 0x32, 0xf2, 0x0c, 0x73, 0xeb, 0xcc, 0xec, 0x6e, 0x9d, - 0x88, 0x27, 0x18, 0x7e, 0x22, 0x39, 0xcc, 0x4d, 0x90, 0xe8, 0x31, 0xa4, 0x45, 0x83, 0x99, 0xa1, - 0x65, 0xdd, 0xbc, 0xee, 0x2b, 0x52, 0x31, 0xe7, 0x46, 0x7b, 0x50, 0xb4, 0xf0, 0x79, 0x78, 0x1e, - 0x92, 0x8d, 0x18, 0x78, 0xbe, 0x8d, 0xcf, 0xa7, 0x0f, 0x43, 0xf2, 0x56, 0x80, 0xd1, 0xd1, 0xe7, - 0x50, 0x88, 0x44, 0x2a, 0x3a, 0x7f, 0x9c, 0x3b, 0x26, 0xf8, 0xf5, 0x56, 0x28, 0x80, 0xa1, 0x3d, - 0x48, 0x8b, 0x50, 0x99, 0xa3, 0x67, 0xbc, 0x99, 0x30, 0xc1, 0x8c, 0x76, 0xa1, 0x40, 0x8f, 0xe8, - 0x47, 0xd0, 0x7c, 0x50, 0x41, 0x5d, 0x5e, 0xac, 0xe7, 0xc8, 0x09, 0xa7, 0x4c, 0x3d, 0x72, 0x96, - 0x0f, 0xd7, 0xd1, 0x13, 0x00, 0xff, 0xe9, 0xcb, 0xa5, 0xf3, 0xb4, 0xd9, 0x95, 0xf4, 0x91, 0x20, - 0x0c, 0xb6, 0xa4, 0x84, 0xb8, 0xd1, 0x53, 0xc8, 0x8a, 0xd8, 0xc0, 0x6a, 0xdc, 0xd9, 0xae, 0x7e, - 0x35, 0x52, 0x89, 0xf8, 0xe4, 0x4b, 0x20, 0x25, 0x80, 0x89, 0x35, 0x17, 0xf3, 0x42, 0xf7, 0xd1, - 0x9c, 0x25, 0xc0, 0x71, 0xf7, 0x0c, 0x0f, 0xb4, 0xfa, 0x19, 0x69, 0xa2, 0x0f, 0x09, 0xff, 0x6e, - 0xac, 0x22, 0x29, 0x4c, 0x14, 0x6a, 0x83, 0x4c, 0x55, 0x16, 0x0e, 0x7c, 0x32, 0xd5, 0xda, 0xbb, - 0x5c, 0x6b, 0x45, 0xa2, 0xb5, 0x99, 0xc1, 0x8f, 0xda, 0xd4, 0xd3, 0x20, 0x00, 0xfe, 0x3e, 0x14, - 0x7b, 0xb6, 0x33, 0xd0, 0x3c, 0x55, 0x38, 0x4f, 0x39, 0x68, 0x89, 0xbf, 0xbb, 0x58, 0x2f, 0xec, - 0x51, 0xac, 0x70, 0x9c, 0x42, 0x2f, 0xfc, 0x89, 0xf6, 0x45, 0x9e, 0x58, 0xa4, 0x61, 0xfd, 0xc3, - 0x79, 0x4f, 0x78, 0x35, 0x49, 0xb4, 0x21, 0x45, 0x6b, 0x1c, 0xb7, 0xb2, 0x44, 0xf5, 0xfe, 0x86, - 0xf5, 0x92, 0xc2, 0xa5, 0xa0, 0x5f, 0x40, 0x51, 0x27, 0x10, 0x52, 0x5c, 0xb3, 0x96, 0x7b, 0x99, - 0xca, 0xdd, 0x9e, 0x53, 0x2e, 0x69, 0xc7, 0x5b, 0x56, 0xcf, 0x16, 0x9d, 0x96, 0x10, 0xc6, 0xda, - 0xf4, 0x0e, 0x64, 0x7a, 0xda, 0xc0, 0x30, 0x0d, 0xec, 0x56, 0x56, 0xa8, 0xdc, 0x8f, 0xae, 0xf5, - 0xf2, 0xc9, 0x71, 0xac, 0xc8, 0x32, 0x42, 0x88, 0xef, 0xec, 0x14, 0x30, 0x26, 0x97, 0x7a, 0xeb, - 0xaa, 0xb3, 0x8b, 0x71, 0x6c, 0x64, 0x34, 0x4b, 0x9d, 0x9d, 0x7f, 0xe9, 0xe8, 0x1e, 0xc0, 0x2b, - 0x03, 0xbf, 0x56, 0x5f, 0x8e, 0xb0, 0x33, 0xae, 0x54, 0x42, 0xb1, 0x37, 0x4b, 0xe0, 0x9f, 0x13, - 0x30, 0xfa, 0x18, 0xb2, 0x3a, 0x1e, 0x62, 0x4b, 0x77, 0x3b, 0x56, 0xe5, 0x36, 0xad, 0x75, 0x16, - 0x2f, 0x2f, 0xd6, 0xb3, 0x0d, 0x01, 0xe4, 0xb1, 0x35, 0xa0, 0x42, 0x5f, 0x42, 0x9e, 0x7d, 0x60, - 0xbd, 0x63, 0xed, 0x8e, 0x2b, 0xab, 0xf4, 0xd0, 0x0f, 0xe6, 0x54, 0x66, 0xd0, 0xb7, 0xfa, 0xa3, - 0xbe, 0x46, 0x48, 0x9a, 0x12, 0x91, 0x8d, 0x7e, 0x01, 0x79, 0x61, 0xdd, 0x4f, 0xec, 0x53, 0xb7, - 0xf2, 0xce, 0xb5, 0x73, 0xb8, 0xc9, 0xb5, 0x9e, 0x06, 0xac, 0x22, 0x76, 0x85, 0xa5, 0xa1, 0x9f, - 0x41, 0xc1, 0x1f, 0xd7, 0xdb, 0x43, 0xcf, 0xad, 0xdc, 0xa1, 0xce, 0xf9, 0x70, 0x5e, 0xd3, 0xe5, - 0xbc, 0x9d, 0x21, 0x1d, 0x51, 0x86, 0xbe, 0xd0, 0x5d, 0xc8, 0xea, 0x8e, 0x3d, 0x64, 0x39, 0xe4, - 0x07, 0x1b, 0xd2, 0x66, 0xdc, 0x6f, 0x9e, 0x1c, 0x7b, 0x48, 0x93, 0x83, 0x0a, 0x45, 0x07, 0x0f, - 0x4d, 0xad, 0x8b, 0x07, 0x24, 0xbb, 0xd9, 0xbd, 0xca, 0x1a, 0x5d, 0x7d, 0x67, 0x6e, 0x45, 0xfa, - 0xcc, 0xc2, 0x30, 0x43, 0xf2, 0x3a, 0x3d, 0xf4, 0x0c, 0x40, 0x1b, 0xe9, 0x86, 0xa7, 0x0e, 0x6c, - 0x1d, 0x57, 0xd6, 0xaf, 0x7d, 0xc5, 0x9a, 0x14, 0x5e, 0x23, 0x8c, 0x4f, 0x6d, 0x1d, 0xfb, 0x43, - 0x6d, 0x01, 0x40, 0x1f, 0x43, 0x8e, 0x1e, 0xed, 0x4b, 0xfb, 0x94, 0xd8, 0xe6, 0x06, 0x3d, 0x5c, - 0x99, 0xdf, 0x65, 0xb6, 0xe1, 0xd8, 0xc3, 0x27, 0xf6, 0x29, 0xb5, 0x18, 0xfe, 0xaf, 0x8e, 0x5c, - 0xc8, 0xf7, 0xbb, 0x6a, 0x10, 0x4e, 0xef, 0xd2, 0x5b, 0xfc, 0x74, 0xce, 0xbd, 0x3c, 0xae, 0x4f, - 0x09, 0xb0, 0x8b, 0x22, 0x2f, 0x3c, 0xae, 0x0b, 0x98, 0xab, 0xe4, 0xfa, 0x5d, 0xff, 0x03, 0xbd, - 0x0f, 0x79, 0xd6, 0xa1, 0x73, 0x07, 0xa8, 0x86, 0x1c, 0x20, 0xc7, 0x30, 0xcc, 0x05, 0xda, 0xc0, - 0x5b, 0x79, 0x55, 0x73, 0x55, 0xbb, 0xc7, 0xee, 0xec, 0xde, 0xfc, 0x79, 0xbf, 0xc8, 0xb8, 0x6b, - 0x6e, 0xa7, 0x47, 0x2f, 0xb6, 0x0b, 0x79, 0x7b, 0xe4, 0x9d, 0xda, 0x23, 0x4b, 0x57, 0x7b, 0x2f, - 0xdc, 0xca, 0xbb, 0xf4, 0xb4, 0x37, 0x6a, 0xcd, 0xfc, 0xd3, 0x75, 0xb8, 0xa0, 0xbd, 0x03, 0x57, - 0xc9, 0x09, 0xa9, 0x7b, 0x2f, 0x5c, 0xf4, 0xc7, 0x90, 0x33, 0xac, 0x60, 0x8d, 0xfb, 0x37, 0x5f, - 0x03, 0x89, 0xe2, 0xb8, 0x65, 0xf9, 0x4b, 0x00, 0x97, 0x49, 0x56, 0xf8, 0x00, 0x8a, 0x76, 0xaf, - 0x67, 0x1a, 0x16, 0x56, 0x1d, 0xac, 0xb9, 0xb6, 0x55, 0x79, 0x2f, 0xa4, 0xc1, 0x02, 0xc7, 0x29, - 0x14, 0x85, 0xaa, 0x90, 0xf5, 0xf0, 0x60, 0x68, 0x3b, 0x9a, 0x33, 0xae, 0xbc, 0x1f, 0x7e, 0x0b, - 0xf0, 0xc1, 0xe8, 0x14, 0x56, 0x47, 0x16, 0x3e, 0x1f, 0xda, 0x2e, 0xd6, 0x55, 0x5e, 0xd3, 0xb9, - 0x34, 0xbf, 0x11, 0x3b, 0xda, 0xa4, 0x31, 0xee, 0x3e, 0xdf, 0xd4, 0xad, 0x67, 0x82, 0x92, 0xd5, - 0x78, 0x2c, 0x0f, 0xfa, 0x95, 0xde, 0xad, 0xd1, 0x54, 0xb4, 0xbe, 0xfa, 0x2b, 0x09, 0xca, 0x57, - 0x72, 0x26, 0xfa, 0x23, 0x48, 0x5b, 0xb6, 0x1e, 0x7a, 0x79, 0x69, 0xf2, 0x65, 0x52, 0x6d, 0x5b, - 0x67, 0x0f, 0x2f, 0x0f, 0xfb, 0x86, 0x77, 0x36, 0x3a, 0xdd, 0xea, 0xda, 0x83, 0x6d, 0x5f, 0x89, - 0xfa, 0x69, 0xf0, 0xff, 0xf6, 0xf0, 0x45, 0x7f, 0x9b, 0xfe, 0x37, 0x3c, 0xdd, 0x62, 0x6c, 0x4a, - 0x8a, 0x48, 0x6d, 0xe9, 0xe8, 0x23, 0x28, 0xe1, 0xf3, 0xa1, 0xe1, 0x84, 0xea, 0xc6, 0x58, 0xc8, - 0xe7, 0x8b, 0x01, 0x92, 0x18, 0x08, 0x9f, 0x8d, 0xff, 0x5d, 0x0c, 0x4a, 0x13, 0x19, 0x8b, 0x14, - 0xca, 0xf4, 0x7d, 0x31, 0x52, 0x28, 0x13, 0xc8, 0x35, 0x0f, 0x29, 0xe1, 0x07, 0xfa, 0xf8, 0xdb, - 0x3e, 0xd0, 0x47, 0x67, 0xce, 0xc9, 0x1b, 0xcc, 0x9c, 0x7f, 0x02, 0x2b, 0x86, 0xab, 0x5a, 0xb6, - 0x25, 0xc6, 0x07, 0x7e, 0x9f, 0x14, 0x7e, 0x84, 0x5d, 0x34, 0xdc, 0xb6, 0x6d, 0xb1, 0xc1, 0x81, - 0x7f, 0xea, 0xe0, 0xbd, 0x36, 0x7d, 0xf5, 0xbd, 0xd6, 0x1f, 0x0f, 0x24, 0xe4, 0xe4, 0xea, 0xdf, - 0x4a, 0x90, 0x11, 0xd9, 0x38, 0xda, 0x19, 0x48, 0x73, 0x76, 0x06, 0xb3, 0xf5, 0xb8, 0x07, 0xf2, - 0x15, 0xa3, 0x64, 0x8d, 0xc9, 0x1d, 0x51, 0x4d, 0x4d, 0xb5, 0xc5, 0xe2, 0x30, 0x62, 0x82, 0xfc, - 0x76, 0xbf, 0x96, 0x20, 0x1b, 0xfe, 0x81, 0x54, 0xcc, 0xdf, 0xe3, 0xf4, 0x36, 0xe7, 0x0d, 0xdf, - 0xfa, 0xa2, 0xf7, 0x15, 0x9f, 0xff, 0xbe, 0xf8, 0x36, 0xff, 0x04, 0x72, 0xa1, 0x24, 0x39, 0xd9, - 0x45, 0x4b, 0x6f, 0xd0, 0x45, 0xbf, 0x0b, 0x29, 0x9e, 0x19, 0x98, 0x0b, 0x14, 0x38, 0x77, 0x92, - 0x65, 0x85, 0xe4, 0x97, 0x24, 0x23, 0xf0, 0xd5, 0xff, 0x35, 0x0e, 0xf9, 0x70, 0x12, 0x25, 0x61, - 0xc4, 0xb0, 0xba, 0x0e, 0xcd, 0x60, 0x74, 0xf5, 0xb8, 0xff, 0xa4, 0x28, 0xc0, 0x24, 0xb5, 0x0e, - 0x0c, 0x4b, 0xa5, 0xcf, 0x58, 0x11, 0x37, 0xcb, 0x0c, 0x0c, 0xeb, 0x0b, 0x02, 0xa5, 0x24, 0xda, - 0x39, 0x27, 0x89, 0x47, 0x48, 0xb4, 0x73, 0x46, 0xb2, 0x4a, 0xab, 0x55, 0xc7, 0xa3, 0x2d, 0x65, - 0x3c, 0x54, 0x7f, 0x3a, 0x1e, 0x5a, 0x83, 0xf4, 0x2b, 0xc3, 0xf1, 0x46, 0x9a, 0x49, 0xbb, 0x47, - 0x61, 0x90, 0x02, 0x88, 0x2c, 0x28, 0x06, 0x65, 0xc3, 0x6b, 0x0b, 0x3b, 0xd4, 0xc4, 0x73, 0x3b, - 0xb5, 0x37, 0xa8, 0x1b, 0x82, 0x0f, 0x22, 0x48, 0x04, 0x57, 0x37, 0x0c, 0x5c, 0xfd, 0x6b, 0x09, - 0x0a, 0x11, 0x32, 0xd4, 0x82, 0x12, 0x5d, 0x38, 0xd4, 0x10, 0xb2, 0xbb, 0xba, 0xeb, 0xff, 0xd4, - 0x89, 0xa0, 0xa7, 0x76, 0x84, 0x05, 0x3b, 0x84, 0xd2, 0xd1, 0x67, 0x50, 0x64, 0xa2, 0xfc, 0xc7, - 0xe9, 0xa8, 0xf9, 0xe5, 0xa9, 0xa4, 0xe8, 0x0b, 0x75, 0xde, 0x0e, 0x60, 0x7a, 0xf8, 0xdd, 0x6d, - 0xd5, 0x82, 0x5c, 0xa8, 0x2e, 0x99, 0xc3, 0xee, 0x7f, 0x0c, 0x09, 0x3f, 0x5e, 0xce, 0x99, 0x6f, - 0x29, 0x03, 0x5f, 0xef, 0x2b, 0x09, 0x96, 0xa6, 0xd5, 0x07, 0x11, 0x7f, 0x62, 0x86, 0x34, 0x97, - 0x3f, 0xdd, 0x0b, 0xd7, 0x6d, 0xcc, 0xb8, 0xc4, 0x5b, 0x50, 0x50, 0xb9, 0xbd, 0xe7, 0x9b, 0x38, - 0xb3, 0xad, 0x52, 0xc4, 0xc4, 0x49, 0x7f, 0x16, 0x32, 0xf2, 0xea, 0x43, 0x31, 0x96, 0x01, 0x48, - 0x1d, 0x3d, 0xdb, 0x3d, 0x6c, 0xd5, 0xa7, 0x8e, 0x54, 0x50, 0x0e, 0xd2, 0x9d, 0xbd, 0xbd, 0xc3, - 0x56, 0xbb, 0x29, 0xc7, 0xab, 0x9b, 0x90, 0xf5, 0x4b, 0x30, 0x94, 0x87, 0x4c, 0xa3, 0x75, 0x5c, - 0xdb, 0x3d, 0x6c, 0x36, 0xe4, 0x05, 0x54, 0x80, 0xac, 0xd2, 0xac, 0x35, 0xe8, 0xe0, 0x46, 0x96, - 0x3e, 0xc9, 0xfc, 0xf2, 0xab, 0x75, 0x89, 0x87, 0xc8, 0x94, 0x9c, 0x7e, 0x92, 0xc8, 0x20, 0x79, - 0xb1, 0xfa, 0x37, 0x12, 0xa0, 0x86, 0xe6, 0x69, 0xc4, 0xfe, 0x6e, 0x30, 0x88, 0x89, 0x5d, 0x73, - 0x53, 0xd1, 0xe6, 0x3a, 0xfe, 0x36, 0xcd, 0x75, 0xb0, 0xe9, 0xea, 0x5f, 0x26, 0xa0, 0x78, 0x32, - 0x1e, 0x86, 0x37, 0xf9, 0x46, 0x71, 0x7d, 0x5a, 0xf4, 0x8e, 0xdd, 0x3c, 0x7a, 0x5f, 0xf3, 0x0b, - 0x54, 0xa6, 0xa1, 0xc4, 0x35, 0x1a, 0x6a, 0x40, 0xe2, 0x85, 0x61, 0xb1, 0xe1, 0x63, 0x71, 0xa6, - 0x6e, 0xa2, 0xa7, 0xdd, 0x3a, 0x30, 0x2c, 0x5d, 0xac, 0x43, 0xb8, 0xd1, 0xcf, 0x21, 0x8f, 0xad, - 0xd1, 0x40, 0x1d, 0xe0, 0xc1, 0x29, 0x76, 0xd8, 0xc3, 0xef, 0x35, 0xed, 0x55, 0x54, 0x5a, 0xd3, - 0x1a, 0x0d, 0x9e, 0x52, 0x46, 0x51, 0xe9, 0x62, 0x1f, 0xe2, 0xae, 0xfe, 0x52, 0x02, 0x08, 0x28, - 0xd0, 0x8f, 0xe1, 0xd6, 0xf0, 0x6c, 0xec, 0xd2, 0xdf, 0x1f, 0x39, 0x78, 0xe8, 0x60, 0x17, 0x5b, - 0xcc, 0x7d, 0xa8, 0xda, 0xf3, 0xca, 0x8a, 0x40, 0x2b, 0x11, 0x2c, 0xfa, 0x14, 0x56, 0xc4, 0xef, - 0x96, 0x26, 0xf8, 0xc2, 0x69, 0x75, 0x99, 0xd3, 0x44, 0x99, 0xb9, 0x57, 0xc8, 0x90, 0x20, 0x27, - 0x27, 0xf6, 0xdf, 0x6c, 0x3f, 0x7b, 0x2a, 0x2f, 0x84, 0x6c, 0xe2, 0xdf, 0x25, 0x90, 0xd9, 0x85, - 0xbc, 0xad, 0x55, 0xcc, 0xce, 0xf6, 0xbf, 0x7d, 0xf0, 0x18, 0xb5, 0xf7, 0xc4, 0xf7, 0x64, 0xef, - 0x5f, 0xc7, 0x00, 0x42, 0xa7, 0xfa, 0x69, 0xf8, 0x97, 0xd3, 0xb3, 0x67, 0x67, 0x13, 0x19, 0x64, - 0x7f, 0x41, 0xfc, 0xae, 0xfa, 0x31, 0x64, 0x74, 0xee, 0xe6, 0x3c, 0x84, 0xce, 0x1c, 0x52, 0x5d, - 0x89, 0x06, 0xfb, 0xa4, 0x1b, 0xe5, 0x50, 0xf4, 0x69, 0xe4, 0x87, 0x7a, 0xf7, 0xe7, 0xb2, 0xb6, - 0x7d, 0xf1, 0x58, 0x5a, 0x83, 0x14, 0xf3, 0x3a, 0xae, 0xa6, 0x59, 0x63, 0xce, 0xc9, 0x4b, 0xdd, - 0x5f, 0x50, 0x38, 0x23, 0x1f, 0x28, 0xa7, 0x21, 0x39, 0xb2, 0x0c, 0xdb, 0xfa, 0x91, 0x12, 0x7e, - 0xca, 0x13, 0xd5, 0x2a, 0x09, 0x7d, 0xf4, 0x7f, 0xcd, 0xc3, 0x3a, 0x1b, 0x6d, 0x3f, 0xb3, 0x5e, - 0xf9, 0x00, 0x09, 0x15, 0x01, 0x38, 0xde, 0xb0, 0xfa, 0x72, 0x8c, 0x06, 0x4e, 0xc7, 0x1e, 0x0e, - 0xc9, 0x57, 0x7c, 0xf7, 0x87, 0xdf, 0xfc, 0xe7, 0xda, 0xc2, 0x37, 0x97, 0x6b, 0xd2, 0xaf, 0x2f, - 0xd7, 0xa4, 0xdf, 0x5c, 0xae, 0x49, 0xff, 0x71, 0xb9, 0x26, 0xfd, 0xc5, 0xb7, 0x6b, 0x0b, 0xbf, - 0xfe, 0x76, 0x6d, 0xe1, 0x37, 0xdf, 0xae, 0x2d, 0xfc, 0x41, 0x9a, 0x6f, 0xf4, 0xff, 0x02, 0x00, - 0x00, 0xff, 0xff, 0x57, 0x73, 0x69, 0x2b, 0x9d, 0x2f, 0x00, 0x00, + 0x11, 0xe8, 0xa9, 0xbd, 0xec, 0xa9, 0xe8, 0x3f, 0x50, 0x20, 0x28, 0x82, 0x76, 0xaf, 0xbd, 0xb4, + 0xb7, 0x02, 0xbd, 0x14, 0x39, 0x6d, 0x17, 0xe8, 0x65, 0x7b, 0x11, 0x5a, 0xe5, 0xd2, 0x6b, 0x2f, + 0x2d, 0x90, 0x53, 0xf1, 0xbe, 0xe6, 0x83, 0x22, 0xb5, 0x94, 0x9d, 0x5e, 0x04, 0xcd, 0xef, 0xeb, + 0xbd, 0xf7, 0x7b, 0xbf, 0xef, 0x47, 0xb8, 0xe3, 0xbe, 0x34, 0xb7, 0xdd, 0x97, 0xe6, 0xa9, 0xe6, + 0xe2, 0x6d, 0xd7, 0x73, 0x46, 0x5d, 0x6f, 0xe4, 0x60, 0x7d, 0x6b, 0xe8, 0xd8, 0x9e, 0x8d, 0x96, + 0xbb, 0x76, 0xf7, 0x85, 0x63, 0x6b, 0xdd, 0xb3, 0x2d, 0xf7, 0xa5, 0xb9, 0xc5, 0xe9, 0x56, 0x2b, + 0x23, 0xcf, 0x30, 0xb7, 0xcf, 0xcc, 0xee, 0xb6, 0x67, 0x0c, 0xb0, 0xeb, 0x69, 0x83, 0x21, 0x63, + 0x58, 0xbd, 0x1d, 0x16, 0x37, 0x74, 0x8c, 0x57, 0x86, 0x89, 0xfb, 0x98, 0x23, 0x97, 0x09, 0xd2, + 0x1b, 0x0f, 0xb1, 0xcb, 0xfe, 0x72, 0xf0, 0x3b, 0x7d, 0x6c, 0x6f, 0xf7, 0xb1, 0x6d, 0x58, 0x3a, + 0x3e, 0xdf, 0xee, 0xda, 0x56, 0xcf, 0xe8, 0x73, 0xd4, 0x52, 0xdf, 0xee, 0xdb, 0xf4, 0xdf, 0x6d, + 0xf2, 0x1f, 0x83, 0x56, 0xff, 0x3c, 0x09, 0x8b, 0x7b, 0xb6, 0x83, 0x8d, 0xbe, 0x75, 0x80, 0xc7, + 0x0a, 0xee, 0x61, 0x07, 0x5b, 0x5d, 0x8c, 0x36, 0x20, 0xe9, 0x69, 0xa7, 0x26, 0xae, 0x48, 0x1b, + 0xd2, 0x66, 0x61, 0x17, 0xbe, 0xb9, 0x58, 0x5f, 0xf8, 0xee, 0x62, 0x3d, 0xd6, 0x6a, 0x28, 0x0c, + 0x81, 0xee, 0x43, 0x92, 0xae, 0x52, 0x89, 0x51, 0x8a, 0x12, 0xa7, 0x48, 0xb7, 0x08, 0x90, 0x90, + 0x51, 0x2c, 0xaa, 0x40, 0xc2, 0xd2, 0x06, 0xb8, 0x12, 0xdf, 0x90, 0x36, 0xb3, 0xbb, 0x09, 0x42, + 0xa5, 0x50, 0x08, 0x3a, 0x80, 0xcc, 0x2b, 0xcd, 0x34, 0x74, 0xc3, 0x1b, 0x57, 0x12, 0x1b, 0xd2, + 0x66, 0x71, 0xe7, 0x87, 0x5b, 0x53, 0x75, 0xb4, 0x55, 0xb7, 0x2d, 0xd7, 0x73, 0x34, 0xc3, 0xf2, + 0xbe, 0xe0, 0x0c, 0x5c, 0x90, 0x2f, 0x00, 0x3d, 0x80, 0xb2, 0x7b, 0xa6, 0x39, 0x58, 0x57, 0x87, + 0x0e, 0xee, 0x19, 0xe7, 0xaa, 0x89, 0xad, 0x4a, 0x72, 0x43, 0xda, 0x4c, 0x72, 0xd2, 0x12, 0x43, + 0x1f, 0x51, 0xec, 0x21, 0xb6, 0xd0, 0x09, 0x64, 0x6d, 0x4b, 0xd5, 0xb1, 0x89, 0x3d, 0x5c, 0x49, + 0xd1, 0xf5, 0x3f, 0x9e, 0xb1, 0xfe, 0x14, 0x05, 0x6d, 0xd5, 0xba, 0x9e, 0x61, 0x5b, 0x62, 0x1f, + 0xb6, 0xd5, 0xa0, 0x82, 0xb8, 0xd4, 0xd1, 0x50, 0xd7, 0x3c, 0x5c, 0x49, 0xbf, 0xb5, 0xd4, 0x67, + 0x54, 0x10, 0x3a, 0x84, 0xe4, 0x40, 0xf3, 0xba, 0x67, 0x95, 0x0c, 0x95, 0xf8, 0xe0, 0x06, 0x12, + 0x9f, 0x12, 0x3e, 0x2e, 0x90, 0x09, 0xa9, 0x3e, 0x87, 0x14, 0x5b, 0x07, 0x15, 0x20, 0xdb, 0xee, + 0xa8, 0xb5, 0xfa, 0x49, 0xab, 0xd3, 0x96, 0x17, 0x50, 0x1e, 0x32, 0x4a, 0xf3, 0xf8, 0x44, 0x69, + 0xd5, 0x4f, 0x64, 0x89, 0x7c, 0x1d, 0x37, 0x4f, 0xd4, 0xf6, 0xb3, 0xc3, 0x43, 0x39, 0x86, 0x4a, + 0x90, 0x23, 0x5f, 0x8d, 0xe6, 0x5e, 0xed, 0xd9, 0xe1, 0x89, 0x1c, 0x47, 0x39, 0x48, 0xd7, 0x6b, + 0xc7, 0xf5, 0x5a, 0xa3, 0x29, 0x27, 0x56, 0x13, 0xbf, 0xfa, 0x7a, 0x6d, 0xa1, 0xfa, 0x00, 0x92, + 0x74, 0x39, 0x04, 0x90, 0x3a, 0x6e, 0x3d, 0x3d, 0x3a, 0x6c, 0xca, 0x0b, 0x28, 0x03, 0x89, 0x3d, + 0x22, 0x42, 0x22, 0x1c, 0x47, 0x35, 0xe5, 0xa4, 0x55, 0x3b, 0x94, 0x63, 0x8c, 0xe3, 0x93, 0xc4, + 0x7f, 0x7d, 0xb5, 0x2e, 0x55, 0xff, 0x2d, 0x05, 0x4b, 0xc1, 0xde, 0x83, 0xdb, 0x46, 0x75, 0x28, + 0xd9, 0x8e, 0xd1, 0x37, 0x2c, 0x95, 0xda, 0x9c, 0x6a, 0xe8, 0xdc, 0x1e, 0x6f, 0x93, 0xf3, 0x5c, + 0x5e, 0xac, 0x17, 0x3a, 0x14, 0x7d, 0x42, 0xb0, 0xad, 0x06, 0x37, 0xd0, 0x82, 0x1d, 0x02, 0xea, + 0xe8, 0x00, 0xca, 0x5c, 0x48, 0xd7, 0x36, 0x47, 0x03, 0x4b, 0x35, 0x74, 0xb7, 0x12, 0xdb, 0x88, + 0x6f, 0x16, 0x76, 0xd7, 0x2f, 0x2f, 0xd6, 0x4b, 0x4c, 0x44, 0x9d, 0xe2, 0x5a, 0x0d, 0xf7, 0xbb, + 0x8b, 0xf5, 0x8c, 0xf8, 0x50, 0xf8, 0xf2, 0xfc, 0x5b, 0x77, 0xd1, 0x73, 0x58, 0x76, 0x84, 0x6e, + 0xf5, 0xb0, 0xc0, 0x38, 0x15, 0x78, 0xef, 0xf2, 0x62, 0x7d, 0xd1, 0x57, 0xbe, 0x3e, 0x5d, 0xe8, + 0xa2, 0x33, 0x49, 0xa0, 0xbb, 0xa8, 0x03, 0x21, 0x70, 0x70, 0xdc, 0x04, 0x3d, 0xee, 0x3a, 0x3f, + 0x6e, 0x39, 0x10, 0x1d, 0x3d, 0x72, 0xd9, 0x99, 0x40, 0xe8, 0xbe, 0xe3, 0x25, 0xaf, 0x75, 0xbc, + 0xd4, 0xdb, 0x3a, 0x5e, 0xc4, 0x8d, 0xd2, 0xff, 0x2f, 0x6e, 0x94, 0xf9, 0xde, 0xdd, 0x28, 0xfb, + 0x3d, 0xb8, 0x11, 0xaa, 0xc1, 0xa2, 0x89, 0xfb, 0x5a, 0x77, 0xac, 0x72, 0xf3, 0x62, 0xe1, 0x10, + 0xe8, 0x8d, 0x95, 0x27, 0xc2, 0x61, 0x45, 0x52, 0xca, 0x8c, 0x9a, 0x99, 0x1b, 0x05, 0xa3, 0x16, + 0xdc, 0xe2, 0x22, 0x42, 0x77, 0xcf, 0xc4, 0xe4, 0x66, 0x89, 0x59, 0x66, 0x1c, 0x81, 0x25, 0x50, + 0x14, 0xf3, 0xa4, 0x27, 0x89, 0x4c, 0x5e, 0x2e, 0x3c, 0x49, 0x64, 0x0a, 0x72, 0xb1, 0xfa, 0xeb, + 0x38, 0xc8, 0xcc, 0xbe, 0x1a, 0xd8, 0xed, 0x3a, 0xc6, 0xd0, 0xb3, 0x1d, 0xdf, 0x2a, 0xa4, 0x2b, + 0x56, 0xf1, 0x1e, 0xc4, 0x0c, 0x9d, 0x07, 0xf3, 0x15, 0x6e, 0x6f, 0x31, 0x6a, 0x60, 0x81, 0xe5, + 0xc6, 0x0c, 0x1d, 0x6d, 0x41, 0x82, 0x64, 0x1c, 0x1a, 0xd0, 0x73, 0x3b, 0xab, 0x93, 0x3a, 0xc4, + 0x83, 0x2d, 0x96, 0x90, 0x4e, 0x14, 0x4a, 0x87, 0x36, 0x20, 0x63, 0x8d, 0x4c, 0x93, 0x26, 0x13, + 0x62, 0xcd, 0x19, 0x71, 0x2d, 0x02, 0x8a, 0xee, 0x42, 0x5e, 0xc7, 0x3d, 0x6d, 0x64, 0x7a, 0x2a, + 0x3e, 0x1f, 0x3a, 0xcc, 0x62, 0x95, 0x1c, 0x87, 0x35, 0xcf, 0x87, 0x0e, 0xba, 0x03, 0xa9, 0x33, + 0x43, 0xd7, 0xb1, 0x45, 0x0d, 0x56, 0x88, 0xe0, 0x30, 0xb4, 0x03, 0xe5, 0x91, 0x8b, 0x5d, 0xd5, + 0xc5, 0x2f, 0x47, 0x44, 0x25, 0xd4, 0x21, 0x81, 0x3a, 0x64, 0x8a, 0x3b, 0x48, 0x89, 0x10, 0x1c, + 0x73, 0x3c, 0xf1, 0xb7, 0xbb, 0x90, 0xef, 0xda, 0x83, 0xe1, 0xc8, 0xc3, 0x6c, 0xd1, 0x1c, 0x5b, + 0x94, 0xc3, 0xe8, 0xa2, 0x3b, 0x50, 0xb6, 0x5f, 0x5b, 0x13, 0x62, 0xf3, 0x51, 0xb1, 0x84, 0x20, + 0x2c, 0x76, 0x17, 0xc0, 0xb4, 0xfb, 0x46, 0x57, 0x33, 0x89, 0xf7, 0x16, 0xa8, 0x36, 0xef, 0x71, + 0x6d, 0x96, 0x0e, 0x19, 0x46, 0xa8, 0x33, 0xa2, 0xda, 0x2c, 0x67, 0x6b, 0xe9, 0xfe, 0x55, 0x66, + 0xe4, 0xec, 0x93, 0x44, 0x26, 0x2b, 0xc3, 0x93, 0x44, 0x26, 0x2d, 0x67, 0xaa, 0x7f, 0x19, 0x83, + 0x15, 0x46, 0xbf, 0xa7, 0x0d, 0x0c, 0x73, 0xfc, 0xb6, 0xd7, 0xca, 0xa4, 0xf0, 0x6b, 0xa5, 0xfa, + 0xa0, 0xd1, 0x8c, 0xb0, 0xb1, 0x78, 0x46, 0xf5, 0x41, 0x60, 0x6d, 0x02, 0x42, 0x8f, 0x00, 0x42, + 0x01, 0x2f, 0x41, 0x15, 0xf1, 0xce, 0xe5, 0xc5, 0x7a, 0x76, 0x7a, 0x98, 0xcb, 0x76, 0x43, 0xc1, + 0xad, 0x2c, 0x6e, 0xd8, 0x97, 0x40, 0xaf, 0x39, 0xa4, 0x9c, 0x06, 0x23, 0x98, 0xaa, 0x9c, 0x92, + 0x1e, 0x41, 0x72, 0x15, 0x55, 0xff, 0x31, 0x06, 0x4b, 0x2d, 0xcb, 0xc3, 0x8e, 0x89, 0xb5, 0x57, + 0x38, 0xa4, 0x8e, 0x9f, 0x41, 0x56, 0xb3, 0xba, 0xd8, 0xf5, 0x6c, 0xc7, 0xad, 0x48, 0x1b, 0xf1, + 0xcd, 0xdc, 0xce, 0xef, 0xcd, 0x70, 0xf6, 0x69, 0xfc, 0x5b, 0x35, 0xce, 0xcc, 0x35, 0x19, 0x08, + 0x5b, 0xfd, 0x27, 0x09, 0x32, 0x02, 0x8b, 0x1e, 0x40, 0x66, 0x22, 0x2f, 0x2d, 0xf3, 0xd3, 0xa4, + 0xa3, 0xe1, 0x39, 0xed, 0xf1, 0xa0, 0xfc, 0xfb, 0x90, 0xa1, 0xee, 0xad, 0xfa, 0x77, 0xb2, 0x2a, + 0x38, 0xb8, 0x87, 0x87, 0x4b, 0xa8, 0x34, 0xa5, 0x6d, 0xe9, 0xa8, 0x3e, 0xad, 0xba, 0x89, 0x53, + 0xfe, 0x5b, 0x42, 0x7f, 0xc7, 0xd1, 0xfa, 0xe6, 0x4a, 0xc1, 0xc3, 0x74, 0xc6, 0x35, 0xf7, 0x0f, + 0x12, 0x94, 0x09, 0x83, 0x8e, 0xf5, 0x90, 0xda, 0xee, 0x01, 0x18, 0xae, 0xea, 0x32, 0x38, 0x3d, + 0x91, 0xf0, 0xb4, 0xac, 0xe1, 0x72, 0x72, 0xdf, 0xd4, 0x62, 0x57, 0x4c, 0xed, 0x27, 0x50, 0xa0, + 0xbc, 0xea, 0xe9, 0xa8, 0xfb, 0x02, 0x7b, 0x2e, 0xdd, 0x61, 0x72, 0x77, 0x89, 0xef, 0x30, 0x4f, + 0x25, 0xec, 0x32, 0x9c, 0x92, 0x77, 0x43, 0x5f, 0x57, 0xac, 0x2f, 0x71, 0xc5, 0xfa, 0xf8, 0xc6, + 0xff, 0x37, 0x0e, 0x2b, 0x47, 0x9a, 0xe3, 0x19, 0x24, 0xc0, 0x1b, 0x56, 0x3f, 0xb4, 0xfb, 0xfb, + 0x90, 0xb3, 0x46, 0x03, 0x6e, 0x60, 0x2e, 0xbf, 0x10, 0xb6, 0x3f, 0xb0, 0x46, 0x03, 0x66, 0x3b, + 0x2e, 0x3a, 0x84, 0x84, 0x69, 0xb8, 0x1e, 0xad, 0x00, 0x72, 0x3b, 0x3b, 0x33, 0xcc, 0x62, 0xfa, + 0x1a, 0x5b, 0x87, 0x86, 0xeb, 0x89, 0x33, 0x13, 0x29, 0xa8, 0x03, 0x49, 0x47, 0xb3, 0xfa, 0x98, + 0xfa, 0x4b, 0x6e, 0xe7, 0xe1, 0xcd, 0xc4, 0x29, 0x84, 0x55, 0x64, 0x15, 0x2a, 0x67, 0xf5, 0xaf, + 0x25, 0x48, 0x90, 0x55, 0xae, 0x71, 0xe9, 0x15, 0x48, 0xbd, 0xd2, 0xcc, 0x11, 0x66, 0x55, 0x4c, + 0x5e, 0xe1, 0x5f, 0xe8, 0x8f, 0xa1, 0xe4, 0x8e, 0x4e, 0x87, 0xa1, 0xa5, 0x78, 0x90, 0xfe, 0xe8, + 0x46, 0xbb, 0xf2, 0x0b, 0xe6, 0xa8, 0x2c, 0x76, 0x01, 0xab, 0x2f, 0x21, 0x49, 0x77, 0x7d, 0xcd, + 0xfe, 0xee, 0x42, 0xde, 0xb3, 0x55, 0x7c, 0xde, 0x35, 0x47, 0xae, 0xf1, 0x8a, 0x59, 0x4a, 0x5e, + 0xc9, 0x79, 0x76, 0x53, 0x80, 0xd0, 0x7d, 0x28, 0xf6, 0x1c, 0x7b, 0xa0, 0x1a, 0x96, 0x20, 0x8a, + 0x53, 0xa2, 0x02, 0x81, 0xb6, 0x04, 0x30, 0x62, 0xb2, 0xff, 0x9d, 0x83, 0x12, 0x75, 0x8c, 0xb9, + 0xc2, 0xde, 0xfd, 0x50, 0xd8, 0x5b, 0x8e, 0x84, 0x3d, 0xdf, 0xbb, 0x48, 0xd4, 0xbb, 0x03, 0xa9, + 0x91, 0x65, 0xbc, 0x1c, 0xb1, 0xf5, 0xfd, 0xbc, 0xc2, 0x60, 0x73, 0x58, 0x25, 0xfa, 0x10, 0x10, + 0x09, 0x05, 0x58, 0x8d, 0x10, 0x26, 0x29, 0xa1, 0x4c, 0x31, 0xf5, 0x99, 0x11, 0x34, 0x75, 0x83, + 0x08, 0xba, 0x0f, 0x32, 0x3e, 0xf7, 0x1c, 0x2d, 0x5c, 0x72, 0xa6, 0x29, 0xff, 0xda, 0xe5, 0xc5, + 0x7a, 0xb1, 0x49, 0x70, 0xd3, 0x85, 0x14, 0x71, 0x08, 0xa7, 0x13, 0x2b, 0x29, 0x73, 0x19, 0xba, + 0xe1, 0x60, 0x5a, 0x28, 0xb9, 0x95, 0xcc, 0x46, 0xfc, 0x9a, 0x82, 0x68, 0x42, 0xed, 0x5b, 0x0d, + 0xc1, 0xa8, 0xc8, 0x4c, 0x94, 0x0f, 0x70, 0xd1, 0x31, 0xe4, 0x7a, 0xac, 0x7e, 0x52, 0x5f, 0xe0, + 0x31, 0xad, 0xb4, 0x72, 0x3b, 0x3f, 0x9a, 0xbf, 0xd2, 0xda, 0x4d, 0x91, 0x2b, 0xa8, 0x48, 0x0a, + 0xf4, 0x7c, 0x24, 0x7a, 0x0e, 0x85, 0x50, 0x81, 0x74, 0x3a, 0xa6, 0xc9, 0xfd, 0xcd, 0xc4, 0xe6, + 0x03, 0x41, 0xbb, 0x63, 0xf4, 0x39, 0x80, 0xe1, 0x27, 0x00, 0x5a, 0x03, 0xe4, 0x76, 0x3e, 0xb8, + 0x41, 0xa6, 0x10, 0xf1, 0x25, 0x10, 0x82, 0x9e, 0x43, 0x31, 0xf8, 0xa2, 0x9b, 0xcd, 0xdf, 0x78, + 0xb3, 0x4c, 0x6a, 0x21, 0x24, 0x67, 0x97, 0x54, 0xda, 0x4b, 0xa4, 0x3a, 0xb1, 0x5d, 0xc3, 0xc3, + 0x61, 0x33, 0x28, 0x50, 0x33, 0xa8, 0x5e, 0x5e, 0xac, 0xa3, 0xba, 0xc0, 0x4f, 0x37, 0x05, 0xd4, + 0x9d, 0xc0, 0x33, 0xc3, 0x8a, 0x18, 0x30, 0x91, 0x58, 0x0c, 0x0c, 0xeb, 0x38, 0x30, 0xe1, 0x2b, + 0x86, 0x15, 0x32, 0x6f, 0xd6, 0x1a, 0xe5, 0x23, 0xb1, 0xa7, 0xf4, 0xe6, 0xb1, 0x27, 0x22, 0x08, + 0x35, 0x79, 0xc5, 0x29, 0xd3, 0xaa, 0xfd, 0x83, 0x39, 0x8d, 0xf4, 0x64, 0x3c, 0x14, 0x8a, 0x64, + 0x85, 0xe8, 0x43, 0x40, 0x5d, 0x07, 0x6b, 0x1e, 0xd6, 0x49, 0xc5, 0x67, 0x1a, 0x5d, 0xc3, 0x33, + 0xc7, 0x95, 0x72, 0xc8, 0xef, 0xcb, 0x1c, 0xdf, 0xf4, 0xd1, 0xe8, 0x11, 0xa4, 0x5f, 0x61, 0xc7, + 0x35, 0x6c, 0xab, 0x82, 0x68, 0x30, 0x59, 0xe3, 0x15, 0xf9, 0xca, 0xc4, 0x7a, 0x5f, 0x30, 0x2a, + 0x45, 0x90, 0xa3, 0x7d, 0x28, 0x60, 0xab, 0x6b, 0xeb, 0x86, 0xd5, 0x57, 0xe9, 0xf6, 0x17, 0x83, + 0x7a, 0xe7, 0xbb, 0x8b, 0xf5, 0xdb, 0x13, 0xfc, 0x4d, 0x4e, 0x4b, 0xb6, 0xad, 0xe4, 0x71, 0xe8, + 0x0b, 0xed, 0x43, 0x5a, 0xe4, 0xe4, 0x25, 0xaa, 0xd3, 0xcd, 0x19, 0x2a, 0xb8, 0x92, 0xd1, 0xf9, + 0xb9, 0x04, 0x3b, 0xa9, 0xc5, 0x75, 0xc3, 0x25, 0xb5, 0x88, 0x5e, 0x59, 0x0e, 0xd7, 0xe2, 0x02, + 0x8a, 0xea, 0x00, 0x7d, 0x6c, 0xab, 0x6c, 0x72, 0x54, 0x59, 0xa1, 0xcb, 0xad, 0x85, 0x96, 0xeb, + 0x63, 0x7b, 0x4b, 0xcc, 0x97, 0x48, 0x7b, 0xd8, 0x33, 0xfa, 0xa2, 0x44, 0xe8, 0x63, 0x9b, 0x01, + 0xaa, 0x6b, 0x90, 0xf5, 0x23, 0x02, 0x4a, 0x43, 0xbc, 0x76, 0x5c, 0x67, 0x83, 0x80, 0x46, 0xf3, + 0xb8, 0x2e, 0x4b, 0xd5, 0xbb, 0x90, 0xa0, 0x07, 0xcb, 0x41, 0x7a, 0xaf, 0xa3, 0x3c, 0xaf, 0x29, + 0x0d, 0x36, 0x7c, 0x68, 0xb5, 0xbf, 0x68, 0x2a, 0x27, 0xcd, 0x86, 0x2c, 0x62, 0xfe, 0x3f, 0xc7, + 0x01, 0x05, 0x3d, 0xe8, 0x89, 0xcd, 0xfb, 0xb8, 0x3e, 0x94, 0xba, 0x3e, 0x94, 0x29, 0x57, 0xda, + 0x88, 0x6d, 0x16, 0x77, 0x1e, 0xfd, 0xce, 0x3e, 0x56, 0xc8, 0x08, 0x83, 0x02, 0x43, 0x29, 0x76, + 0x23, 0xd0, 0x50, 0xad, 0x13, 0x9b, 0xc8, 0x2f, 0x0a, 0x24, 0xbb, 0x67, 0xb8, 0xfb, 0x82, 0x67, + 0xd8, 0x3f, 0x98, 0xb1, 0x30, 0x2d, 0x03, 0x43, 0x46, 0x59, 0x27, 0x3c, 0xc1, 0xd2, 0x22, 0xf5, + 0x53, 0x51, 0x48, 0x89, 0x86, 0xce, 0xc4, 0xb5, 0xd1, 0x68, 0xda, 0xbc, 0x44, 0x44, 0xa3, 0x50, + 0xe4, 0x7c, 0x04, 0x25, 0xcb, 0xf6, 0x54, 0xd2, 0x6b, 0x71, 0x0f, 0xa7, 0x1d, 0x54, 0x61, 0x57, + 0xe6, 0x76, 0x18, 0xf8, 0x73, 0xc1, 0xb2, 0xbd, 0xf6, 0xc8, 0xe4, 0xed, 0x49, 0xf5, 0x13, 0x28, + 0x46, 0x75, 0x84, 0xb2, 0x90, 0xac, 0xef, 0x37, 0xeb, 0x07, 0xf2, 0x02, 0x2a, 0x41, 0x6e, 0xaf, + 0xa3, 0x34, 0x5b, 0x8f, 0xdb, 0xea, 0x41, 0xf3, 0xe7, 0x6c, 0x58, 0xd4, 0xee, 0x88, 0x61, 0x91, + 0xdf, 0xc1, 0x24, 0xe5, 0x54, 0xf5, 0x7f, 0x24, 0x28, 0x1e, 0x39, 0xc6, 0x40, 0x73, 0xc6, 0x07, + 0x78, 0x7c, 0xfc, 0x5a, 0x1b, 0xa2, 0xcf, 0x60, 0xc9, 0xc2, 0xaf, 0xd5, 0x21, 0x83, 0xaa, 0x7e, + 0x45, 0x2c, 0x4d, 0x9f, 0x24, 0x96, 0x2d, 0xfc, 0x9a, 0x4b, 0x68, 0xf1, 0x82, 0xf8, 0x43, 0xc8, + 0xd9, 0x26, 0x6f, 0x95, 0xb1, 0x98, 0xe6, 0xe4, 0xc2, 0x4c, 0x60, 0x9b, 0xac, 0x33, 0xa6, 0x49, + 0x3a, 0x47, 0xd6, 0x13, 0xd4, 0xf1, 0x29, 0xd4, 0x16, 0x7e, 0x2d, 0xa8, 0x3f, 0x83, 0x25, 0x22, + 0xfb, 0xca, 0xee, 0x12, 0x33, 0x76, 0x67, 0x9b, 0x7a, 0x74, 0x77, 0xdc, 0x78, 0xff, 0x25, 0x09, + 0x28, 0xb8, 0xfa, 0xa7, 0x23, 0x4f, 0xa3, 0xfe, 0x50, 0x83, 0x14, 0xbf, 0x08, 0x89, 0x5e, 0xf0, + 0xfb, 0x33, 0x6d, 0x36, 0xda, 0xba, 0xef, 0x2f, 0x28, 0x9c, 0x11, 0xfd, 0x34, 0x3c, 0x7a, 0xcd, + 0xed, 0xbc, 0x37, 0x5f, 0x44, 0xdc, 0x5f, 0x10, 0x33, 0xd9, 0x03, 0x48, 0xba, 0x9e, 0xe6, 0xb1, + 0xa2, 0xa7, 0xb8, 0xb3, 0x3d, 0x83, 0xff, 0xea, 0xe6, 0xb7, 0x8e, 0x09, 0x9b, 0xb0, 0x5a, 0x2a, + 0x03, 0x3d, 0x87, 0xac, 0x5f, 0x48, 0xf0, 0x39, 0xee, 0xc3, 0xf9, 0x05, 0xfa, 0x71, 0x42, 0x44, + 0x11, 0x5f, 0x16, 0xaa, 0x41, 0x6e, 0xc0, 0xc9, 0x82, 0x76, 0x71, 0x83, 0xd7, 0x72, 0x20, 0x24, + 0xd0, 0x9a, 0x2e, 0xf4, 0xa5, 0x80, 0x60, 0x6a, 0xd1, 0x78, 0xe7, 0xd8, 0xa6, 0x79, 0xaa, 0x75, + 0x5f, 0xd0, 0xd9, 0x94, 0x1f, 0xef, 0x04, 0x14, 0x1d, 0x90, 0x8a, 0x4c, 0x58, 0x39, 0x9d, 0x34, + 0xe5, 0xe6, 0x98, 0x86, 0x89, 0x28, 0xb2, 0xbf, 0xa0, 0x84, 0xd8, 0x51, 0x07, 0x8a, 0xc3, 0x88, + 0xa5, 0xf3, 0xf2, 0xe7, 0xfe, 0xac, 0x1c, 0x18, 0x21, 0xde, 0x5f, 0x50, 0x26, 0xd8, 0xab, 0x9f, + 0x41, 0x92, 0x6a, 0x9c, 0x44, 0xca, 0x67, 0xed, 0x83, 0x76, 0xe7, 0x79, 0x9b, 0x39, 0x5f, 0xa3, + 0x79, 0xd8, 0x3c, 0x69, 0xaa, 0x9d, 0xf6, 0x21, 0x71, 0xbe, 0x77, 0x60, 0x99, 0x03, 0x6a, 0xed, + 0x86, 0xfa, 0x5c, 0x69, 0x09, 0x54, 0xac, 0xba, 0x19, 0x0e, 0xc5, 0x19, 0x48, 0xb4, 0x3b, 0xed, + 0xa6, 0xbc, 0x40, 0x83, 0x72, 0xa3, 0x21, 0x4b, 0x34, 0x28, 0x2b, 0x9d, 0x23, 0xe1, 0xb3, 0xbb, + 0x79, 0x00, 0xdd, 0xbf, 0xa5, 0x27, 0x89, 0x4c, 0x4a, 0x4e, 0x57, 0xff, 0xe2, 0x1e, 0x94, 0x26, + 0x02, 0xd9, 0x35, 0x95, 0xf7, 0x06, 0xad, 0xbc, 0xe3, 0x41, 0x90, 0xf1, 0x2b, 0xef, 0x18, 0x2f, + 0xba, 0x1f, 0x42, 0x76, 0xa8, 0x39, 0xd8, 0xf2, 0x02, 0xaf, 0x12, 0x93, 0x89, 0xcc, 0x11, 0x45, + 0xf8, 0xe4, 0x19, 0x46, 0xd8, 0x22, 0x4c, 0x7e, 0x22, 0x66, 0x96, 0xf0, 0x0e, 0x77, 0xc4, 0xf2, + 0x35, 0x39, 0xf8, 0x08, 0xca, 0x03, 0x5b, 0x37, 0x7a, 0x46, 0x97, 0x99, 0x91, 0x67, 0x0c, 0xd8, + 0x90, 0x32, 0xb7, 0xf3, 0x83, 0xd0, 0x9d, 0x8c, 0x3c, 0xc3, 0xdc, 0x3a, 0x33, 0xbb, 0x5b, 0x27, + 0xe2, 0x09, 0x86, 0x9f, 0x48, 0x0e, 0x73, 0x13, 0x24, 0x7a, 0x0c, 0x69, 0xd1, 0x60, 0x66, 0x68, + 0x59, 0x37, 0xaf, 0xfb, 0x8a, 0x54, 0xcc, 0xb9, 0xd1, 0x1e, 0x14, 0x2d, 0x7c, 0x1e, 0x9e, 0x87, + 0x64, 0x23, 0x06, 0x9e, 0x6f, 0xe3, 0xf3, 0xe9, 0xc3, 0x90, 0xbc, 0x15, 0x60, 0x74, 0xf4, 0x39, + 0x14, 0x22, 0x91, 0x8a, 0xce, 0x1f, 0xe7, 0x8e, 0x09, 0x7e, 0xbd, 0x15, 0x0a, 0x60, 0x68, 0x0f, + 0xd2, 0x22, 0x54, 0xe6, 0xe8, 0x19, 0x6f, 0x26, 0x4c, 0x30, 0xa3, 0x5d, 0x28, 0xd0, 0x23, 0xfa, + 0x11, 0x34, 0x1f, 0x54, 0x50, 0x97, 0x17, 0xeb, 0x39, 0x72, 0xc2, 0x29, 0x53, 0x8f, 0x9c, 0xe5, + 0xc3, 0x75, 0xf4, 0x04, 0xc0, 0x7f, 0xfa, 0x72, 0xe9, 0x3c, 0x6d, 0x76, 0x25, 0x7d, 0x24, 0x08, + 0x83, 0x2d, 0x29, 0x21, 0x6e, 0xf4, 0x14, 0xb2, 0x22, 0x36, 0xb0, 0x1a, 0x77, 0xb6, 0xab, 0x5f, + 0x8d, 0x54, 0x22, 0x3e, 0xf9, 0x12, 0x48, 0x09, 0x60, 0x62, 0xcd, 0xc5, 0xbc, 0xd0, 0x7d, 0x34, + 0x67, 0x09, 0x70, 0xdc, 0x3d, 0xc3, 0x03, 0xad, 0x7e, 0x46, 0x9a, 0xe8, 0x43, 0xc2, 0xbf, 0x1b, + 0xab, 0x48, 0x0a, 0x13, 0x85, 0xda, 0x20, 0x53, 0x95, 0x85, 0x03, 0x9f, 0x4c, 0xb5, 0xf6, 0x2e, + 0xd7, 0x5a, 0x91, 0x68, 0x6d, 0x66, 0xf0, 0xa3, 0x36, 0xf5, 0x34, 0x08, 0x80, 0x7f, 0x08, 0xc5, + 0x9e, 0xed, 0x0c, 0x34, 0x4f, 0x15, 0xce, 0x53, 0x0e, 0x5a, 0xe2, 0xef, 0x2e, 0xd6, 0x0b, 0x7b, + 0x14, 0x2b, 0x1c, 0xa7, 0xd0, 0x0b, 0x7f, 0xa2, 0x7d, 0x91, 0x27, 0x16, 0x69, 0x58, 0xff, 0x70, + 0xde, 0x13, 0x5e, 0x4d, 0x12, 0x6d, 0x48, 0xd1, 0x1a, 0xc7, 0xad, 0x2c, 0x51, 0xbd, 0xbf, 0x61, + 0xbd, 0xa4, 0x70, 0x29, 0xe8, 0x17, 0x50, 0xd4, 0x09, 0x84, 0x14, 0xd7, 0xac, 0xe5, 0x5e, 0xa6, + 0x72, 0xb7, 0xe7, 0x94, 0x4b, 0xda, 0xf1, 0x96, 0xd5, 0xb3, 0x45, 0xa7, 0x25, 0x84, 0xb1, 0x36, + 0xbd, 0x03, 0x99, 0x9e, 0x36, 0x30, 0x4c, 0x03, 0xbb, 0x95, 0x15, 0x2a, 0xf7, 0xa3, 0x6b, 0xbd, + 0x7c, 0x72, 0x1c, 0x2b, 0xb2, 0x8c, 0x10, 0xe2, 0x3b, 0x3b, 0x05, 0x8c, 0xc9, 0xa5, 0xde, 0xba, + 0xea, 0xec, 0x62, 0x1c, 0x1b, 0x19, 0xcd, 0x52, 0x67, 0xe7, 0x5f, 0x3a, 0xba, 0x07, 0xf0, 0xca, + 0xc0, 0xaf, 0xd5, 0x97, 0x23, 0xec, 0x8c, 0x2b, 0x95, 0x50, 0xec, 0xcd, 0x12, 0xf8, 0xe7, 0x04, + 0x8c, 0x3e, 0x86, 0xac, 0x8e, 0x87, 0xd8, 0xd2, 0xdd, 0x8e, 0x55, 0x79, 0x87, 0xd6, 0x3a, 0x8b, + 0x97, 0x17, 0xeb, 0xd9, 0x86, 0x00, 0xf2, 0xd8, 0x1a, 0x50, 0xa1, 0x2f, 0x21, 0xcf, 0x3e, 0xb0, + 0xde, 0xb1, 0x76, 0xc7, 0x95, 0x55, 0x7a, 0xe8, 0x07, 0x73, 0x2a, 0x33, 0xe8, 0x5b, 0xfd, 0x51, + 0x5f, 0x23, 0x24, 0x4d, 0x89, 0xc8, 0x46, 0xbf, 0x80, 0xbc, 0xb0, 0xee, 0x27, 0xf6, 0xa9, 0x5b, + 0xb9, 0x7d, 0xed, 0x1c, 0x6e, 0x72, 0xad, 0xa7, 0x01, 0xab, 0x88, 0x5d, 0x61, 0x69, 0xe8, 0x67, + 0x50, 0xf0, 0xc7, 0xf5, 0xf6, 0xd0, 0x73, 0x2b, 0x77, 0xa8, 0x73, 0x3e, 0x9c, 0xd7, 0x74, 0x39, + 0x6f, 0x67, 0x48, 0x47, 0x94, 0xa1, 0x2f, 0x74, 0x17, 0xb2, 0xba, 0x63, 0x0f, 0x59, 0x0e, 0xf9, + 0xc1, 0x86, 0xb4, 0x19, 0xf7, 0x9b, 0x27, 0xc7, 0x1e, 0xd2, 0xe4, 0xa0, 0x42, 0xd1, 0xc1, 0x43, + 0x53, 0xeb, 0xe2, 0x01, 0xc9, 0x6e, 0x76, 0xaf, 0xb2, 0x46, 0x57, 0xdf, 0x99, 0x5b, 0x91, 0x3e, + 0xb3, 0x30, 0xcc, 0x90, 0xbc, 0x4e, 0x0f, 0x3d, 0x03, 0xd0, 0x46, 0xba, 0xe1, 0xa9, 0x03, 0x5b, + 0xc7, 0x95, 0xf5, 0x6b, 0x5f, 0xb1, 0x26, 0x85, 0xd7, 0x08, 0xe3, 0x53, 0x5b, 0xc7, 0xfe, 0x50, + 0x5b, 0x00, 0xd0, 0xc7, 0x90, 0xa3, 0x47, 0xfb, 0xd2, 0x3e, 0x25, 0xb6, 0xb9, 0x41, 0x0f, 0x57, + 0xe6, 0x77, 0x99, 0x6d, 0x38, 0xf6, 0xf0, 0x89, 0x7d, 0x4a, 0x2d, 0x86, 0xff, 0xab, 0x23, 0x17, + 0xf2, 0xfd, 0xae, 0x1a, 0x84, 0xd3, 0xbb, 0xf4, 0x16, 0x3f, 0x9d, 0x73, 0x2f, 0x8f, 0xeb, 0x53, + 0x02, 0xec, 0xa2, 0xc8, 0x0b, 0x8f, 0xeb, 0x02, 0xe6, 0x2a, 0xb9, 0x7e, 0xd7, 0xff, 0x40, 0xef, + 0x43, 0x9e, 0x75, 0xe8, 0xdc, 0x01, 0xaa, 0x21, 0x07, 0xc8, 0x31, 0x0c, 0x73, 0x81, 0x36, 0xf0, + 0x56, 0x5e, 0xd5, 0x5c, 0xd5, 0xee, 0xb1, 0x3b, 0xbb, 0x37, 0x7f, 0xde, 0x2f, 0x32, 0xee, 0x9a, + 0xdb, 0xe9, 0xd1, 0x8b, 0xed, 0x42, 0xde, 0x1e, 0x79, 0xa7, 0xf6, 0xc8, 0xd2, 0xd5, 0xde, 0x0b, + 0xb7, 0xf2, 0x2e, 0x3d, 0xed, 0x8d, 0x5a, 0x33, 0xff, 0x74, 0x1d, 0x2e, 0x68, 0xef, 0xc0, 0x55, + 0x72, 0x42, 0xea, 0xde, 0x0b, 0x17, 0xfd, 0x29, 0xe4, 0x0c, 0x2b, 0x58, 0xe3, 0xfe, 0xcd, 0xd7, + 0x40, 0xa2, 0x38, 0x6e, 0x59, 0xfe, 0x12, 0xc0, 0x65, 0x92, 0x15, 0x3e, 0x80, 0xa2, 0xdd, 0xeb, + 0x99, 0x86, 0x85, 0x55, 0x07, 0x6b, 0xae, 0x6d, 0x55, 0xde, 0x0b, 0x69, 0xb0, 0xc0, 0x71, 0x0a, + 0x45, 0xa1, 0x2a, 0x64, 0x3d, 0x3c, 0x18, 0xda, 0x8e, 0xe6, 0x8c, 0x2b, 0xef, 0x87, 0xdf, 0x02, + 0x7c, 0x30, 0x3a, 0x85, 0xd5, 0x91, 0x85, 0xcf, 0x87, 0xb6, 0x8b, 0x75, 0x95, 0xd7, 0x74, 0x2e, + 0xcd, 0x6f, 0xc4, 0x8e, 0x36, 0x69, 0x8c, 0xbb, 0xcf, 0x37, 0x75, 0xeb, 0x99, 0xa0, 0x64, 0x35, + 0x1e, 0xcb, 0x83, 0x7e, 0xa5, 0x77, 0x6b, 0x34, 0x15, 0xad, 0xaf, 0xfe, 0x4a, 0x82, 0xf2, 0x95, + 0x9c, 0x89, 0xfe, 0x04, 0xd2, 0x96, 0xad, 0x87, 0x5e, 0x5e, 0x9a, 0x7c, 0x99, 0x54, 0xdb, 0xd6, + 0xd9, 0xc3, 0xcb, 0xc3, 0xbe, 0xe1, 0x9d, 0x8d, 0x4e, 0xb7, 0xba, 0xf6, 0x60, 0xdb, 0x57, 0xa2, + 0x7e, 0x1a, 0xfc, 0xbf, 0x3d, 0x7c, 0xd1, 0xdf, 0xa6, 0xff, 0x0d, 0x4f, 0xb7, 0x18, 0x9b, 0x92, + 0x22, 0x52, 0x5b, 0x3a, 0xfa, 0x08, 0x4a, 0xf8, 0x7c, 0x68, 0x38, 0xa1, 0xba, 0x31, 0x16, 0xf2, + 0xf9, 0x62, 0x80, 0x24, 0x06, 0xc2, 0x67, 0xe3, 0x7f, 0x1f, 0x83, 0xd2, 0x44, 0xc6, 0x22, 0x85, + 0x32, 0x7d, 0x5f, 0x8c, 0x14, 0xca, 0x04, 0x72, 0xcd, 0x43, 0x4a, 0xf8, 0x81, 0x3e, 0xfe, 0xb6, + 0x0f, 0xf4, 0xd1, 0x99, 0x73, 0xf2, 0x06, 0x33, 0xe7, 0x9f, 0xc0, 0x8a, 0xe1, 0xaa, 0x96, 0x6d, + 0x89, 0xf1, 0x81, 0xdf, 0x27, 0x85, 0x1f, 0x61, 0x17, 0x0d, 0xb7, 0x6d, 0x5b, 0x6c, 0x70, 0xe0, + 0x9f, 0x3a, 0x78, 0xaf, 0x4d, 0x5f, 0x7d, 0xaf, 0xf5, 0xc7, 0x03, 0x09, 0x39, 0xb9, 0xfa, 0x77, + 0x12, 0x64, 0x44, 0x36, 0x8e, 0x76, 0x06, 0xd2, 0x9c, 0x9d, 0xc1, 0x6c, 0x3d, 0xee, 0x81, 0x7c, + 0xc5, 0x28, 0x59, 0x63, 0x72, 0x47, 0x54, 0x53, 0x53, 0x6d, 0xb1, 0x38, 0x8c, 0x98, 0x20, 0xbf, + 0xdd, 0xaf, 0x25, 0xc8, 0x86, 0x7f, 0x20, 0x15, 0xf3, 0xf7, 0x38, 0xbd, 0xcd, 0x79, 0xc3, 0xb7, + 0xbe, 0xe8, 0x7d, 0xc5, 0xe7, 0xbf, 0x2f, 0xbe, 0xcd, 0x3f, 0x83, 0x5c, 0x28, 0x49, 0x4e, 0x76, + 0xd1, 0xd2, 0x1b, 0x74, 0xd1, 0xef, 0x42, 0x8a, 0x67, 0x06, 0xe6, 0x02, 0x05, 0xce, 0x9d, 0x64, + 0x59, 0x21, 0xf9, 0x25, 0xc9, 0x08, 0x7c, 0xf5, 0x7f, 0x8d, 0x43, 0x3e, 0x9c, 0x44, 0x49, 0x18, + 0x31, 0xac, 0xae, 0x43, 0x33, 0x18, 0x5d, 0x3d, 0xee, 0x3f, 0x29, 0x0a, 0x30, 0x49, 0xad, 0x03, + 0xc3, 0x52, 0xe9, 0x33, 0x56, 0xc4, 0xcd, 0x32, 0x03, 0xc3, 0xfa, 0x82, 0x40, 0x29, 0x89, 0x76, + 0xce, 0x49, 0xe2, 0x11, 0x12, 0xed, 0x9c, 0x91, 0xac, 0xd2, 0x6a, 0xd5, 0xf1, 0x68, 0x4b, 0x19, + 0x0f, 0xd5, 0x9f, 0x8e, 0x87, 0xd6, 0x20, 0xfd, 0xca, 0x70, 0xbc, 0x91, 0x66, 0xd2, 0xee, 0x51, + 0x18, 0xa4, 0x00, 0x22, 0x0b, 0x8a, 0x41, 0xd9, 0xf0, 0xda, 0xc2, 0x0e, 0x35, 0xf1, 0xdc, 0x4e, + 0xed, 0x0d, 0xea, 0x86, 0xe0, 0x83, 0x08, 0x12, 0xc1, 0xd5, 0x0d, 0x03, 0x57, 0xff, 0x46, 0x82, + 0x42, 0x84, 0x0c, 0xb5, 0xa0, 0x44, 0x17, 0x0e, 0x35, 0x84, 0xec, 0xae, 0xee, 0xfa, 0x3f, 0x75, + 0x22, 0xe8, 0xa9, 0x1d, 0x61, 0xc1, 0x0e, 0xa1, 0x74, 0xf4, 0x19, 0x14, 0x99, 0x28, 0xff, 0x71, + 0x3a, 0x6a, 0x7e, 0x79, 0x2a, 0x29, 0xfa, 0x42, 0x9d, 0xb7, 0x03, 0x98, 0x1e, 0x7e, 0x77, 0x5b, + 0xb5, 0x20, 0x17, 0xaa, 0x4b, 0xe6, 0xb0, 0xfb, 0x1f, 0x43, 0xc2, 0x8f, 0x97, 0x73, 0xe6, 0x5b, + 0xca, 0xc0, 0xd7, 0xfb, 0x4a, 0x82, 0xa5, 0x69, 0xf5, 0x41, 0xc4, 0x9f, 0x98, 0x21, 0xcd, 0xe5, + 0x4f, 0xf7, 0xc2, 0x75, 0x1b, 0x33, 0x2e, 0xf1, 0x16, 0x14, 0x54, 0x6e, 0xef, 0xf9, 0x26, 0xce, + 0x6c, 0xab, 0x14, 0x31, 0x71, 0xd2, 0x9f, 0x85, 0x8c, 0xbc, 0xfa, 0x50, 0x8c, 0x65, 0x00, 0x52, + 0x47, 0xcf, 0x76, 0x0f, 0x5b, 0xf5, 0xa9, 0x23, 0x15, 0x94, 0x83, 0x74, 0x67, 0x6f, 0xef, 0xb0, + 0xd5, 0x6e, 0xca, 0xf1, 0xea, 0x26, 0x64, 0xfd, 0x12, 0x0c, 0xe5, 0x21, 0xd3, 0x68, 0x1d, 0xd7, + 0x76, 0x0f, 0x9b, 0x0d, 0x79, 0x01, 0x15, 0x20, 0xab, 0x34, 0x6b, 0x0d, 0x3a, 0xb8, 0x91, 0xa5, + 0x4f, 0x32, 0xbf, 0xfc, 0x6a, 0x5d, 0xe2, 0x21, 0x32, 0x25, 0xa7, 0x9f, 0x24, 0x32, 0x48, 0x5e, + 0xac, 0xfe, 0xad, 0x04, 0xa8, 0xa1, 0x79, 0x1a, 0xb1, 0xbf, 0x1b, 0x0c, 0x62, 0x62, 0xd7, 0xdc, + 0x54, 0xb4, 0xb9, 0x8e, 0xbf, 0x4d, 0x73, 0x1d, 0x6c, 0xba, 0xfa, 0xeb, 0x04, 0x14, 0x4f, 0xc6, + 0xc3, 0xf0, 0x26, 0xdf, 0x28, 0xae, 0x4f, 0x8b, 0xde, 0xb1, 0x9b, 0x47, 0xef, 0x6b, 0x7e, 0x81, + 0xca, 0x34, 0x94, 0xb8, 0x46, 0x43, 0x0d, 0x48, 0xbc, 0x30, 0x2c, 0x36, 0x7c, 0x2c, 0xce, 0xd4, + 0x4d, 0xf4, 0xb4, 0x5b, 0x07, 0x86, 0xa5, 0x8b, 0x75, 0x08, 0x37, 0xfa, 0x39, 0xe4, 0xb1, 0x35, + 0x1a, 0xa8, 0x03, 0x3c, 0x38, 0xc5, 0x0e, 0x7b, 0xf8, 0xbd, 0xa6, 0xbd, 0x8a, 0x4a, 0x6b, 0x5a, + 0xa3, 0xc1, 0x53, 0xca, 0x28, 0x2a, 0x5d, 0xec, 0x43, 0x5c, 0xf4, 0x00, 0x92, 0x9a, 0x69, 0x68, + 0x2e, 0x9f, 0x6a, 0x5d, 0xf7, 0x73, 0x2c, 0x46, 0xb8, 0xfa, 0x4b, 0x09, 0x20, 0x90, 0x89, 0x7e, + 0x0c, 0xb7, 0x86, 0x67, 0x63, 0x97, 0xfe, 0x62, 0xc9, 0xc1, 0x43, 0x07, 0xbb, 0xd8, 0x62, 0x0e, + 0x47, 0x2f, 0x2a, 0xaf, 0xac, 0x08, 0xb4, 0x12, 0xc1, 0xa2, 0x4f, 0x61, 0x45, 0xfc, 0xd2, 0x69, + 0x82, 0x2f, 0x9c, 0x88, 0x97, 0x39, 0x4d, 0x94, 0x99, 0xfb, 0xd1, 0x6d, 0x48, 0x10, 0x5d, 0x11, + 0x8f, 0x69, 0xb6, 0x9f, 0x3d, 0x95, 0x17, 0x50, 0x16, 0x92, 0xb5, 0xc3, 0x56, 0xed, 0x38, 0xec, + 0x05, 0xd5, 0x7f, 0x97, 0x40, 0x66, 0xb7, 0xf9, 0xb6, 0x26, 0x35, 0xbb, 0x54, 0xf8, 0xdd, 0x53, + 0xcb, 0xa8, 0xb3, 0x24, 0xbe, 0x27, 0x67, 0xf9, 0x3a, 0x06, 0x10, 0x3a, 0xd5, 0x4f, 0xc3, 0x3f, + 0xbb, 0x9e, 0x3d, 0x78, 0x9b, 0x48, 0x3f, 0xfb, 0x0b, 0xe2, 0x47, 0xd9, 0x8f, 0x21, 0xa3, 0xf3, + 0x18, 0xc1, 0xe3, 0xef, 0xcc, 0x09, 0xd7, 0x95, 0x50, 0xb2, 0x4f, 0x5a, 0x59, 0x0e, 0x45, 0x9f, + 0x46, 0x7e, 0xe5, 0x77, 0x7f, 0x2e, 0x53, 0xdd, 0x17, 0x2f, 0xad, 0x35, 0x48, 0x31, 0x97, 0xe5, + 0x6a, 0x9a, 0x35, 0x23, 0x9d, 0xbc, 0xd4, 0xfd, 0x05, 0x85, 0x33, 0xf2, 0x69, 0x74, 0x1a, 0x92, + 0x23, 0xcb, 0xb0, 0xad, 0x1f, 0x29, 0xe1, 0x77, 0x40, 0x51, 0xea, 0x92, 0xb8, 0x49, 0xff, 0xd7, + 0x3c, 0xac, 0xb3, 0xb9, 0xf8, 0x33, 0xeb, 0x95, 0x0f, 0x90, 0x50, 0x11, 0x80, 0xe3, 0x0d, 0xab, + 0x2f, 0xc7, 0x68, 0xd4, 0x75, 0xec, 0xe1, 0x90, 0x7c, 0xc5, 0x77, 0x7f, 0xf8, 0xcd, 0x7f, 0xae, + 0x2d, 0x7c, 0x73, 0xb9, 0x26, 0xfd, 0xe6, 0x72, 0x4d, 0xfa, 0xed, 0xe5, 0x9a, 0xf4, 0x1f, 0x97, + 0x6b, 0xd2, 0x5f, 0x7d, 0xbb, 0xb6, 0xf0, 0x9b, 0x6f, 0xd7, 0x16, 0x7e, 0xfb, 0xed, 0xda, 0xc2, + 0x1f, 0xa5, 0xf9, 0x46, 0xff, 0x2f, 0x00, 0x00, 0xff, 0xff, 0x9a, 0x21, 0x3c, 0xf1, 0xda, 0x2f, + 0x00, 0x00, } diff --git a/pkg/sql/sqlbase/structured.proto b/pkg/sql/sqlbase/structured.proto index 2838bdc89ea5..6dd3ecdc9991 100644 --- a/pkg/sql/sqlbase/structured.proto +++ b/pkg/sql/sqlbase/structured.proto @@ -1023,6 +1023,9 @@ message TypeDescriptor { enum Kind { // Represents a user defined enum type. ENUM = 0; + // Represents a user defined type that is just an alias for another type. + // As of now, it is used only internally. + ALIAS = 1; // Add more entries as we support more user defined types. } optional Kind kind = 5 [(gogoproto.nullable) = false]; @@ -1039,6 +1042,11 @@ message TypeDescriptor { // enum_members is the set of values in an enum. repeated EnumMember enum_members = 6 [(gogoproto.nullable) = false]; + // The fields below are used only when this type is an ALIAS type. + + // alias is the types.T that this descriptor is an alias for. + optional sql.sem.types.T alias = 7; + // TODO (rohany): Do we need a draining names like the table descriptor? } diff --git a/pkg/sql/virtual_schema.go b/pkg/sql/virtual_schema.go index 4866ddd0d14b..1c09cf37da90 100644 --- a/pkg/sql/virtual_schema.go +++ b/pkg/sql/virtual_schema.go @@ -47,6 +47,8 @@ type virtualSchema struct { tableValidator func(*sqlbase.TableDescriptor) error // optional // Some virtual tables can be used if there is no current database set; others can't. validWithNoDatabaseContext bool + // Some virtual schemas (like pg_catalog) contain types that we can resolve. + containsTypes bool } // virtualSchemaDef represents the interface of a table definition within a virtualSchema. @@ -277,6 +279,7 @@ type virtualSchemaEntry struct { defs map[string]virtualDefEntry orderedDefNames []string allTableNames map[string]struct{} + containsTypes bool } type virtualDefEntry struct { @@ -539,6 +542,7 @@ func NewVirtualSchemaHolder( defs: defs, orderedDefNames: orderedDefNames, allTableNames: schema.allTableNames, + containsTypes: schema.containsTypes, } vs.orderedNames[order] = dbName order++