diff --git a/pkg/ccl/importccl/import_table_creation.go b/pkg/ccl/importccl/import_table_creation.go index 211f6255b63e..c78ab3cb9a54 100644 --- a/pkg/ccl/importccl/import_table_creation.go +++ b/pkg/ccl/importccl/import_table_creation.go @@ -26,10 +26,12 @@ import ( "github.com/cockroachdb/cockroach/pkg/sql/parser" "github.com/cockroachdb/cockroach/pkg/sql/sem/tree" "github.com/cockroachdb/cockroach/pkg/sql/sessiondata" + "github.com/cockroachdb/cockroach/pkg/sql/types" "github.com/cockroachdb/cockroach/pkg/storage/cloud" "github.com/cockroachdb/cockroach/pkg/util/errorutil/unimplemented" "github.com/cockroachdb/cockroach/pkg/util/hlc" "github.com/cockroachdb/errors" + "github.com/lib/pq/oid" ) const ( @@ -318,3 +320,15 @@ func (r fkResolver) LookupTableByID( ) (*tabledesc.Immutable, error) { return nil, errSchemaResolver } + +// Implements the sql.SchemaResolver interface. +func (r fkResolver) ResolveTypeByOID(ctx context.Context, oid oid.Oid) (*types.T, error) { + return nil, errSchemaResolver +} + +// Implements the sql.SchemaResolver interface. +func (r fkResolver) ResolveType( + ctx context.Context, name *tree.UnresolvedObjectName, +) (*types.T, error) { + return nil, errSchemaResolver +} diff --git a/pkg/ccl/logictestccl/testdata/logic_test/regional_by_row b/pkg/ccl/logictestccl/testdata/logic_test/regional_by_row index a0f6494eed02..bd1983e8a7d1 100644 --- a/pkg/ccl/logictestccl/testdata/logic_test/regional_by_row +++ b/pkg/ccl/logictestccl/testdata/logic_test/regional_by_row @@ -22,8 +22,13 @@ CREATE TABLE regional_by_row_table ( PARTITION BY LIST (pk) (PARTITION one VALUES IN ((1))) LOCALITY REGIONAL BY ROW -statement error REGIONAL BY ROW AS is not yet supported -CREATE TABLE regional_by_row_table_on_col (a int) LOCALITY REGIONAL BY ROW AS a +statement error cannot specify crdb_region column in REGIONAL BY ROW table as the column is implicitly created by the system +CREATE TABLE regional_by_row_table ( + pk int, + a int, + crdb_region crdb_internal_region +) +LOCALITY REGIONAL BY ROW statement error REGIONAL BY ROW on a table with an INDEX containing PARTITION BY is not supported CREATE TABLE regional_by_row_table ( @@ -170,6 +175,91 @@ ca-central-1 10 11 12 us-east-1 20 21 22 ap-southeast-2 23 24 25 +statement error cannot use column crdb_region_col which has type INT8 in REGIONAL BY ROW AS\nDETAIL:\s+REGIONAL BY ROW AS must reference a column of type crdb_internal_region. +CREATE TABLE regional_by_row_table_as ( + pk int PRIMARY KEY, + crdb_region_col int +) LOCALITY REGIONAL BY ROW AS crdb_region_col + +statement error column no_exist_col in REGIONAL BY ROW AS does not exist +CREATE TABLE regional_by_row_table_as ( + pk int PRIMARY KEY +) LOCALITY REGIONAL BY ROW AS no_exist_col + +statement ok +CREATE TABLE regional_by_row_table_as ( + pk int PRIMARY KEY, + a int, + b int, + crdb_region_col crdb_internal_region AS ( + CASE + WHEN pk <= 10 THEN 'us-east-1' + ELSE 'ap-southeast-2' + END + ) STORED, + INDEX (a), + UNIQUE (b), + FAMILY (pk, a, b) +) LOCALITY REGIONAL BY ROW AS crdb_region_col + +query T +SELECT create_statement FROM [SHOW CREATE TABLE regional_by_row_table_as] +---- +CREATE TABLE public.regional_by_row_table_as ( + pk INT8 NOT NULL, + a INT8 NULL, + b INT8 NULL, + crdb_region_col public.crdb_internal_region NULL AS (CASE WHEN pk <= 10:::INT8 THEN 'us-east-1':::public.crdb_internal_region ELSE 'ap-southeast-2':::public.crdb_internal_region END) STORED, + CONSTRAINT "primary" PRIMARY KEY (pk ASC), + INDEX regional_by_row_table_as_a_idx (a ASC), + UNIQUE INDEX regional_by_row_table_as_b_key (b ASC), + FAMILY fam_0_pk_a_b_crdb_region_col (pk, a, b, crdb_region_col) +) LOCALITY REGIONAL BY ROW AS crdb_region_col; +ALTER PARTITION "ap-southeast-2" OF INDEX multi_region_test_db.public.regional_by_row_table_as@regional_by_row_table_as_a_idx CONFIGURE ZONE USING + num_replicas = 3, + constraints = '{+region=ap-southeast-2: 1}', + lease_preferences = '[[+region=ap-southeast-2]]'; +ALTER PARTITION "ap-southeast-2" OF INDEX multi_region_test_db.public.regional_by_row_table_as@regional_by_row_table_as_b_key CONFIGURE ZONE USING + num_replicas = 3, + constraints = '{+region=ap-southeast-2: 1}', + lease_preferences = '[[+region=ap-southeast-2]]'; +ALTER PARTITION "ap-southeast-2" OF INDEX multi_region_test_db.public.regional_by_row_table_as@primary CONFIGURE ZONE USING + num_replicas = 3, + constraints = '{+region=ap-southeast-2: 1}', + lease_preferences = '[[+region=ap-southeast-2]]'; +ALTER PARTITION "ca-central-1" OF INDEX multi_region_test_db.public.regional_by_row_table_as@regional_by_row_table_as_a_idx CONFIGURE ZONE USING + num_replicas = 3, + constraints = '{+region=ca-central-1: 1}', + lease_preferences = '[[+region=ca-central-1]]'; +ALTER PARTITION "ca-central-1" OF INDEX multi_region_test_db.public.regional_by_row_table_as@regional_by_row_table_as_b_key CONFIGURE ZONE USING + num_replicas = 3, + constraints = '{+region=ca-central-1: 1}', + lease_preferences = '[[+region=ca-central-1]]'; +ALTER PARTITION "ca-central-1" OF INDEX multi_region_test_db.public.regional_by_row_table_as@primary CONFIGURE ZONE USING + num_replicas = 3, + constraints = '{+region=ca-central-1: 1}', + lease_preferences = '[[+region=ca-central-1]]'; +ALTER PARTITION "us-east-1" OF INDEX multi_region_test_db.public.regional_by_row_table_as@regional_by_row_table_as_a_idx CONFIGURE ZONE USING + num_replicas = 3, + constraints = '{+region=us-east-1: 1}', + lease_preferences = '[[+region=us-east-1]]'; +ALTER PARTITION "us-east-1" OF INDEX multi_region_test_db.public.regional_by_row_table_as@regional_by_row_table_as_b_key CONFIGURE ZONE USING + num_replicas = 3, + constraints = '{+region=us-east-1: 1}', + lease_preferences = '[[+region=us-east-1]]'; +ALTER PARTITION "us-east-1" OF INDEX multi_region_test_db.public.regional_by_row_table_as@primary CONFIGURE ZONE USING + num_replicas = 3, + constraints = '{+region=us-east-1: 1}', + lease_preferences = '[[+region=us-east-1]]' + +query TI +INSERT INTO regional_by_row_table_as (pk) VALUES (1), (10), (20) +RETURNING crdb_region_col, pk +---- +us-east-1 1 +us-east-1 10 +ap-southeast-2 20 + # Create some tables to validate that their zone configurations are adjusted appropriately. statement ok CREATE DATABASE alter_survive_db PRIMARY REGION "us-east-1" REGIONS "ca-central-1", "ap-southeast-2" SURVIVE REGION FAILURE diff --git a/pkg/sql/BUILD.bazel b/pkg/sql/BUILD.bazel index 8828646aecf3..6e94beb40baf 100644 --- a/pkg/sql/BUILD.bazel +++ b/pkg/sql/BUILD.bazel @@ -372,6 +372,7 @@ go_library( "@com_github_lib_pq//oid", "@com_github_prometheus_client_model//go", "@in_gopkg_yaml_v2//:yaml_v2", + "@org_golang_google_protobuf//proto", "@org_golang_x_net//trace", "@org_golang_x_text//collate", ], diff --git a/pkg/sql/catalog/descpb/structured.pb.go b/pkg/sql/catalog/descpb/structured.pb.go index 9ad0b932acde..53c05d36da57 100644 --- a/pkg/sql/catalog/descpb/structured.pb.go +++ b/pkg/sql/catalog/descpb/structured.pb.go @@ -75,7 +75,7 @@ func (x *ConstraintValidity) UnmarshalJSON(data []byte) error { return nil } func (ConstraintValidity) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_62b371f3f0ee1cce, []int{0} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{0} } // SystemColumnKind is an enum representing the different kind of system @@ -120,7 +120,7 @@ func (x *SystemColumnKind) UnmarshalJSON(data []byte) error { return nil } func (SystemColumnKind) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_62b371f3f0ee1cce, []int{1} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{1} } // State indicates whether a descriptor is public (i.e., normally visible, @@ -172,7 +172,7 @@ func (x *DescriptorState) UnmarshalJSON(data []byte) error { return nil } func (DescriptorState) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_62b371f3f0ee1cce, []int{2} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{2} } // SurvivalGoal is the survival goal for a database. @@ -211,7 +211,7 @@ func (x *SurvivalGoal) UnmarshalJSON(data []byte) error { return nil } func (SurvivalGoal) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_62b371f3f0ee1cce, []int{3} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{3} } type ForeignKeyReference_Action int32 @@ -256,7 +256,7 @@ func (x *ForeignKeyReference_Action) UnmarshalJSON(data []byte) error { return nil } func (ForeignKeyReference_Action) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_62b371f3f0ee1cce, []int{0, 0} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{0, 0} } // Match is the algorithm used to compare composite keys. @@ -296,7 +296,7 @@ func (x *ForeignKeyReference_Match) UnmarshalJSON(data []byte) error { return nil } func (ForeignKeyReference_Match) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_62b371f3f0ee1cce, []int{0, 1} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{0, 1} } // The direction of a column in the index. @@ -333,7 +333,7 @@ func (x *IndexDescriptor_Direction) UnmarshalJSON(data []byte) error { return nil } func (IndexDescriptor_Direction) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_62b371f3f0ee1cce, []int{8, 0} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{8, 0} } // The type of the index. @@ -370,7 +370,7 @@ func (x *IndexDescriptor_Type) UnmarshalJSON(data []byte) error { return nil } func (IndexDescriptor_Type) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_62b371f3f0ee1cce, []int{8, 1} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{8, 1} } type ConstraintToUpdate_ConstraintType int32 @@ -416,7 +416,7 @@ func (x *ConstraintToUpdate_ConstraintType) UnmarshalJSON(data []byte) error { return nil } func (ConstraintToUpdate_ConstraintType) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_62b371f3f0ee1cce, []int{9, 0} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{9, 0} } // A descriptor within a mutation is unavailable for reads, writes @@ -481,7 +481,7 @@ func (x *DescriptorMutation_State) UnmarshalJSON(data []byte) error { return nil } func (DescriptorMutation_State) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_62b371f3f0ee1cce, []int{13, 0} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{13, 0} } // Direction of mutation. @@ -524,7 +524,7 @@ func (x *DescriptorMutation_Direction) UnmarshalJSON(data []byte) error { return nil } func (DescriptorMutation_Direction) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_62b371f3f0ee1cce, []int{13, 1} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{13, 1} } // AuditMode indicates which auditing actions to take when this table is used. @@ -561,7 +561,7 @@ func (x *TableDescriptor_AuditMode) UnmarshalJSON(data []byte) error { return nil } func (TableDescriptor_AuditMode) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_62b371f3f0ee1cce, []int{15, 0} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{15, 0} } // Represents the kind of type that this type descriptor represents. @@ -606,7 +606,7 @@ func (x *TypeDescriptor_Kind) UnmarshalJSON(data []byte) error { return nil } func (TypeDescriptor_Kind) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_62b371f3f0ee1cce, []int{17, 0} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{17, 0} } // Represents what operations are allowed on this ENUM member. @@ -647,7 +647,7 @@ func (x *TypeDescriptor_EnumMember_Capability) UnmarshalJSON(data []byte) error return nil } func (TypeDescriptor_EnumMember_Capability) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_62b371f3f0ee1cce, []int{17, 0, 0} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{17, 0, 0} } // ForeignKeyReference is deprecated, replaced by ForeignKeyConstraint in v19.2 @@ -677,7 +677,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_62b371f3f0ee1cce, []int{0} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{0} } func (m *ForeignKeyReference) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -725,7 +725,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_62b371f3f0ee1cce, []int{1} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{1} } func (m *ForeignKeyConstraint) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -763,7 +763,7 @@ func (m *UniqueWithoutIndexConstraint) Reset() { *m = UniqueWithoutIndex func (m *UniqueWithoutIndexConstraint) String() string { return proto.CompactTextString(m) } func (*UniqueWithoutIndexConstraint) ProtoMessage() {} func (*UniqueWithoutIndexConstraint) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_62b371f3f0ee1cce, []int{2} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{2} } func (m *UniqueWithoutIndexConstraint) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -831,7 +831,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_62b371f3f0ee1cce, []int{3} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{3} } func (m *ColumnDescriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -887,7 +887,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_62b371f3f0ee1cce, []int{4} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{4} } func (m *ColumnFamilyDescriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -933,7 +933,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_62b371f3f0ee1cce, []int{5} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{5} } func (m *InterleaveDescriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -977,7 +977,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_62b371f3f0ee1cce, []int{5, 0} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{5, 0} } func (m *InterleaveDescriptor_Ancestor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1032,7 +1032,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_62b371f3f0ee1cce, []int{6} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{6} } func (m *ShardedDescriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1083,7 +1083,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_62b371f3f0ee1cce, []int{7} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{7} } func (m *PartitioningDescriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1126,7 +1126,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_62b371f3f0ee1cce, []int{7, 0} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{7, 0} } func (m *PartitioningDescriptor_List) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1171,7 +1171,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_62b371f3f0ee1cce, []int{7, 1} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{7, 1} } func (m *PartitioningDescriptor_Range) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1338,7 +1338,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_62b371f3f0ee1cce, []int{8} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{8} } func (m *IndexDescriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1390,7 +1390,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_62b371f3f0ee1cce, []int{9} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{9} } func (m *ConstraintToUpdate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1437,7 +1437,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_62b371f3f0ee1cce, []int{10} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{10} } func (m *PrimaryKeySwap) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1477,7 +1477,7 @@ func (m *ComputedColumnSwap) Reset() { *m = ComputedColumnSwap{} } func (m *ComputedColumnSwap) String() string { return proto.CompactTextString(m) } func (*ComputedColumnSwap) ProtoMessage() {} func (*ComputedColumnSwap) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_62b371f3f0ee1cce, []int{11} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{11} } func (m *ComputedColumnSwap) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1525,7 +1525,7 @@ func (m *MaterializedViewRefresh) Reset() { *m = MaterializedViewRefresh func (m *MaterializedViewRefresh) String() string { return proto.CompactTextString(m) } func (*MaterializedViewRefresh) ProtoMessage() {} func (*MaterializedViewRefresh) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_62b371f3f0ee1cce, []int{12} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{12} } func (m *MaterializedViewRefresh) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1582,7 +1582,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_62b371f3f0ee1cce, []int{13} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{13} } func (m *DescriptorMutation) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1920,7 +1920,7 @@ func (m *NameInfo) Reset() { *m = NameInfo{} } func (m *NameInfo) String() string { return proto.CompactTextString(m) } func (*NameInfo) ProtoMessage() {} func (*NameInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_62b371f3f0ee1cce, []int{14} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{14} } func (m *NameInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2110,7 +2110,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_62b371f3f0ee1cce, []int{15} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{15} } func (m *TableDescriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2438,7 +2438,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_62b371f3f0ee1cce, []int{15, 0} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{15, 0} } func (m *TableDescriptor_SchemaChangeLease) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2484,7 +2484,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_62b371f3f0ee1cce, []int{15, 1} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{15, 1} } func (m *TableDescriptor_CheckConstraint) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2524,7 +2524,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_62b371f3f0ee1cce, []int{15, 2} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{15, 2} } func (m *TableDescriptor_Reference) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2561,7 +2561,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_62b371f3f0ee1cce, []int{15, 3} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{15, 3} } func (m *TableDescriptor_MutationJob) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2604,7 +2604,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_62b371f3f0ee1cce, []int{15, 4} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{15, 4} } func (m *TableDescriptor_SequenceOpts) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2644,7 +2644,7 @@ func (m *TableDescriptor_SequenceOpts_SequenceOwner) String() string { } func (*TableDescriptor_SequenceOpts_SequenceOwner) ProtoMessage() {} func (*TableDescriptor_SequenceOpts_SequenceOwner) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_62b371f3f0ee1cce, []int{15, 4, 0} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{15, 4, 0} } func (m *TableDescriptor_SequenceOpts_SequenceOwner) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2684,7 +2684,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_62b371f3f0ee1cce, []int{15, 5} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{15, 5} } func (m *TableDescriptor_Replacement) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2721,7 +2721,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_62b371f3f0ee1cce, []int{15, 6} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{15, 6} } func (m *TableDescriptor_GCDescriptorMutation) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2758,7 +2758,7 @@ func (m *TableDescriptor_LocalityConfig) Reset() { *m = TableDescriptor_ func (m *TableDescriptor_LocalityConfig) String() string { return proto.CompactTextString(m) } func (*TableDescriptor_LocalityConfig) ProtoMessage() {} func (*TableDescriptor_LocalityConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_62b371f3f0ee1cce, []int{15, 7} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{15, 7} } func (m *TableDescriptor_LocalityConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2938,7 +2938,7 @@ func (m *TableDescriptor_LocalityConfig_RegionalByTable) String() string { } func (*TableDescriptor_LocalityConfig_RegionalByTable) ProtoMessage() {} func (*TableDescriptor_LocalityConfig_RegionalByTable) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_62b371f3f0ee1cce, []int{15, 7, 0} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{15, 7, 0} } func (m *TableDescriptor_LocalityConfig_RegionalByTable) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2964,6 +2964,8 @@ func (m *TableDescriptor_LocalityConfig_RegionalByTable) XXX_DiscardUnknown() { var xxx_messageInfo_TableDescriptor_LocalityConfig_RegionalByTable proto.InternalMessageInfo type TableDescriptor_LocalityConfig_RegionalByRow struct { + // As is set if the table has a REGIONAL BY ROW AS ... set to a specific column. + As *string `protobuf:"bytes,1,opt,name=as" json:"as,omitempty"` } func (m *TableDescriptor_LocalityConfig_RegionalByRow) Reset() { @@ -2974,7 +2976,7 @@ func (m *TableDescriptor_LocalityConfig_RegionalByRow) String() string { } func (*TableDescriptor_LocalityConfig_RegionalByRow) ProtoMessage() {} func (*TableDescriptor_LocalityConfig_RegionalByRow) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_62b371f3f0ee1cce, []int{15, 7, 1} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{15, 7, 1} } func (m *TableDescriptor_LocalityConfig_RegionalByRow) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3006,7 +3008,7 @@ func (m *TableDescriptor_LocalityConfig_Global) Reset() { *m = TableDesc func (m *TableDescriptor_LocalityConfig_Global) String() string { return proto.CompactTextString(m) } func (*TableDescriptor_LocalityConfig_Global) ProtoMessage() {} func (*TableDescriptor_LocalityConfig_Global) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_62b371f3f0ee1cce, []int{15, 7, 2} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{15, 7, 2} } func (m *TableDescriptor_LocalityConfig_Global) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3057,7 +3059,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_62b371f3f0ee1cce, []int{16} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{16} } func (m *DatabaseDescriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3165,7 +3167,7 @@ func (m *DatabaseDescriptor_SchemaInfo) Reset() { *m = DatabaseDescripto func (m *DatabaseDescriptor_SchemaInfo) String() string { return proto.CompactTextString(m) } func (*DatabaseDescriptor_SchemaInfo) ProtoMessage() {} func (*DatabaseDescriptor_SchemaInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_62b371f3f0ee1cce, []int{16, 0} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{16, 0} } func (m *DatabaseDescriptor_SchemaInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3205,7 +3207,7 @@ func (m *DatabaseDescriptor_RegionConfig) Reset() { *m = DatabaseDescrip func (m *DatabaseDescriptor_RegionConfig) String() string { return proto.CompactTextString(m) } func (*DatabaseDescriptor_RegionConfig) ProtoMessage() {} func (*DatabaseDescriptor_RegionConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_62b371f3f0ee1cce, []int{16, 2} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{16, 2} } func (m *DatabaseDescriptor_RegionConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3240,7 +3242,7 @@ func (m *DatabaseDescriptor_RegionConfig_Region) Reset() { func (m *DatabaseDescriptor_RegionConfig_Region) String() string { return proto.CompactTextString(m) } func (*DatabaseDescriptor_RegionConfig_Region) ProtoMessage() {} func (*DatabaseDescriptor_RegionConfig_Region) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_62b371f3f0ee1cce, []int{16, 2, 0} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{16, 2, 0} } func (m *DatabaseDescriptor_RegionConfig_Region) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3303,7 +3305,7 @@ 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_62b371f3f0ee1cce, []int{17} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{17} } func (m *TypeDescriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3451,7 +3453,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_62b371f3f0ee1cce, []int{17, 0} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{17, 0} } func (m *TypeDescriptor_EnumMember) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3487,7 +3489,7 @@ func (m *TypeDescriptor_RegionConfig) Reset() { *m = TypeDescriptor_Regi func (m *TypeDescriptor_RegionConfig) String() string { return proto.CompactTextString(m) } func (*TypeDescriptor_RegionConfig) ProtoMessage() {} func (*TypeDescriptor_RegionConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_62b371f3f0ee1cce, []int{17, 1} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{17, 1} } func (m *TypeDescriptor_RegionConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3535,7 +3537,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_62b371f3f0ee1cce, []int{18} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{18} } func (m *SchemaDescriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3638,7 +3640,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_62b371f3f0ee1cce, []int{19} + return fileDescriptor_structured_035ba5bbb9e1b86b, []int{19} } func (m *Descriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5486,6 +5488,15 @@ func (this *TableDescriptor_LocalityConfig_RegionalByRow) Equal(that interface{} } else if this == nil { return false } + if this.As != nil && that1.As != nil { + if *this.As != *that1.As { + return false + } + } else if this.As != nil { + return false + } else if that1.As != nil { + return false + } return true } func (this *TableDescriptor_LocalityConfig_Global) Equal(that interface{}) bool { @@ -7762,6 +7773,12 @@ func (m *TableDescriptor_LocalityConfig_RegionalByRow) MarshalTo(dAtA []byte) (i _ = i var l int _ = l + if m.As != nil { + dAtA[i] = 0xa + i++ + i = encodeVarintStructured(dAtA, i, uint64(len(*m.As))) + i += copy(dAtA[i:], *m.As) + } return i, nil } @@ -9109,6 +9126,10 @@ func (m *TableDescriptor_LocalityConfig_RegionalByRow) Size() (n int) { } var l int _ = l + if m.As != nil { + l = len(*m.As) + n += 1 + l + sovStructured(uint64(l)) + } return n } @@ -16100,6 +16121,36 @@ func (m *TableDescriptor_LocalityConfig_RegionalByRow) Unmarshal(dAtA []byte) er return fmt.Errorf("proto: RegionalByRow: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field As", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowStructured + } + 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 ErrInvalidLengthStructured + } + postIndex := iNdEx + intStringLen + if postIndex > l { + return io.ErrUnexpectedEOF + } + s := string(dAtA[iNdEx:postIndex]) + m.As = &s + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipStructured(dAtA[iNdEx:]) @@ -18177,331 +18228,332 @@ var ( ) func init() { - proto.RegisterFile("sql/catalog/descpb/structured.proto", fileDescriptor_structured_62b371f3f0ee1cce) -} - -var fileDescriptor_structured_62b371f3f0ee1cce = []byte{ - // 5151 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x3c, 0xcb, 0x73, 0x1b, 0xe7, - 0x7d, 0xc4, 0x1b, 0xf8, 0xe1, 0xb5, 0xfc, 0x44, 0x49, 0x10, 0x23, 0x93, 0x14, 0x65, 0xc9, 0xb4, - 0x1c, 0x93, 0x32, 0x95, 0x38, 0x72, 0x1c, 0xa7, 0x06, 0x01, 0x50, 0x04, 0x45, 0x02, 0xf4, 0x92, - 0x94, 0x9c, 0xa4, 0xc9, 0x66, 0x89, 0xfd, 0x00, 0xae, 0xb5, 0xd8, 0x85, 0x76, 0x17, 0x12, 0xd1, - 0xe9, 0xa1, 0x93, 0x53, 0x4f, 0x6d, 0x73, 0xe8, 0xb1, 0xd3, 0x4c, 0xc7, 0x33, 0xcd, 0xad, 0x93, - 0x4b, 0x7b, 0xeb, 0xb1, 0x93, 0xe9, 0xa5, 0xe9, 0x2d, 0x27, 0x4e, 0x4b, 0xf7, 0xd0, 0xff, 0xa0, - 0x1d, 0x9f, 0x3a, 0xdf, 0x6b, 0x1f, 0x78, 0x50, 0x20, 0xe9, 0xe6, 0x60, 0x0f, 0xf7, 0xf7, 0xfa, - 0x5e, 0xbf, 0xf7, 0xf7, 0x41, 0x70, 0xd7, 0x79, 0x69, 0xac, 0xb5, 0x54, 0x57, 0x35, 0xac, 0xce, - 0x9a, 0x86, 0x9d, 0x56, 0xef, 0x68, 0xcd, 0x71, 0xed, 0x7e, 0xcb, 0xed, 0xdb, 0x58, 0x5b, 0xed, - 0xd9, 0x96, 0x6b, 0xa1, 0xeb, 0x2d, 0xab, 0xf5, 0xc2, 0xb6, 0xd4, 0xd6, 0xf1, 0xaa, 0xf3, 0xd2, - 0x20, 0xff, 0x1d, 0xa9, 0x0e, 0x9e, 0x2f, 0xf5, 0x5d, 0xdd, 0x58, 0x3b, 0x36, 0x5a, 0x6b, 0xae, - 0xde, 0xc5, 0x8e, 0xab, 0x76, 0x7b, 0x8c, 0x61, 0x7e, 0x79, 0x8c, 0xd4, 0x9e, 0xad, 0xbf, 0xd2, - 0x0d, 0xdc, 0xc1, 0x9c, 0xe6, 0x3a, 0xa1, 0x71, 0x07, 0x3d, 0xec, 0xb0, 0xff, 0x73, 0xf0, 0xad, - 0x0e, 0xb6, 0xd6, 0x3a, 0xd8, 0xd2, 0x4d, 0x0d, 0x9f, 0xac, 0xb5, 0x2c, 0xb3, 0xad, 0x77, 0x38, - 0x6a, 0xae, 0x63, 0x75, 0x2c, 0xfa, 0xe7, 0x1a, 0xf9, 0x8b, 0x41, 0x97, 0x7f, 0x91, 0x80, 0x6b, - 0x9b, 0x96, 0x8d, 0xf5, 0x8e, 0xf9, 0x14, 0x0f, 0x64, 0xdc, 0xc6, 0x36, 0x36, 0x5b, 0x18, 0x2d, - 0x41, 0xc2, 0x55, 0x8f, 0x0c, 0x5c, 0x8a, 0x2c, 0x45, 0x56, 0xf2, 0x1b, 0xf0, 0xdb, 0xd3, 0xc5, - 0x99, 0xaf, 0x4f, 0x17, 0xa3, 0xf5, 0xaa, 0xcc, 0x10, 0xe8, 0x1e, 0x24, 0xe8, 0x28, 0xa5, 0x28, - 0xa5, 0x28, 0x72, 0x8a, 0x54, 0x9d, 0x00, 0x09, 0x19, 0xc5, 0xa2, 0x12, 0xc4, 0x4d, 0xb5, 0x8b, - 0x4b, 0xb1, 0xa5, 0xc8, 0x4a, 0x66, 0x23, 0x4e, 0xa8, 0x64, 0x0a, 0x41, 0x4f, 0x21, 0xfd, 0x4a, - 0x35, 0x74, 0x4d, 0x77, 0x07, 0xa5, 0xf8, 0x52, 0x64, 0xa5, 0xb0, 0xfe, 0xee, 0xea, 0xd8, 0xad, - 0x5a, 0xad, 0x58, 0xa6, 0xe3, 0xda, 0xaa, 0x6e, 0xba, 0xcf, 0x38, 0x03, 0x17, 0xe4, 0x09, 0x40, - 0x0f, 0x61, 0xd6, 0x39, 0x56, 0x6d, 0xac, 0x29, 0x3d, 0x1b, 0xb7, 0xf5, 0x13, 0xc5, 0xc0, 0x66, - 0x29, 0xb1, 0x14, 0x59, 0x49, 0x70, 0xd2, 0x22, 0x43, 0xef, 0x51, 0xec, 0x0e, 0x36, 0xd1, 0x01, - 0x64, 0x2c, 0x53, 0xd1, 0xb0, 0x81, 0x5d, 0x5c, 0x4a, 0xd2, 0xf1, 0x3f, 0x98, 0x30, 0xfe, 0x98, - 0x0d, 0x5a, 0x2d, 0xb7, 0x5c, 0xdd, 0x32, 0xc5, 0x3c, 0x2c, 0xb3, 0x4a, 0x05, 0x71, 0xa9, 0xfd, - 0x9e, 0xa6, 0xba, 0xb8, 0x94, 0xba, 0xb2, 0xd4, 0x43, 0x2a, 0x08, 0xed, 0x40, 0xa2, 0xab, 0xba, - 0xad, 0xe3, 0x52, 0x9a, 0x4a, 0x7c, 0x78, 0x01, 0x89, 0xbb, 0x84, 0x8f, 0x0b, 0x64, 0x42, 0x96, - 0x9f, 0x43, 0x92, 0x8d, 0x83, 0xf2, 0x90, 0x69, 0x34, 0x95, 0x72, 0xe5, 0xa0, 0xde, 0x6c, 0x48, - 0x33, 0x28, 0x07, 0x69, 0xb9, 0xb6, 0x7f, 0x20, 0xd7, 0x2b, 0x07, 0x52, 0x84, 0x7c, 0xed, 0xd7, - 0x0e, 0x94, 0xc6, 0xe1, 0xce, 0x8e, 0x14, 0x45, 0x45, 0xc8, 0x92, 0xaf, 0x6a, 0x6d, 0xb3, 0x7c, - 0xb8, 0x73, 0x20, 0xc5, 0x50, 0x16, 0x52, 0x95, 0xf2, 0x7e, 0xa5, 0x5c, 0xad, 0x49, 0xf1, 0xf9, - 0xf8, 0xaf, 0xbf, 0x5c, 0x98, 0x59, 0x7e, 0x08, 0x09, 0x3a, 0x1c, 0x02, 0x48, 0xee, 0xd7, 0x77, - 0xf7, 0x76, 0x6a, 0xd2, 0x0c, 0x4a, 0x43, 0x7c, 0x93, 0x88, 0x88, 0x10, 0x8e, 0xbd, 0xb2, 0x7c, - 0x50, 0x2f, 0xef, 0x48, 0x51, 0xc6, 0xf1, 0xfd, 0xf8, 0x7f, 0xff, 0x6a, 0x31, 0xb2, 0xfc, 0xef, - 0x09, 0x98, 0xf3, 0xe7, 0xee, 0x9f, 0x36, 0xaa, 0x40, 0xd1, 0xb2, 0xf5, 0x8e, 0x6e, 0x2a, 0x54, - 0xe7, 0x14, 0x5d, 0xe3, 0xfa, 0xf8, 0x2d, 0xb2, 0x9e, 0xb3, 0xd3, 0xc5, 0x7c, 0x93, 0xa2, 0x0f, - 0x08, 0xb6, 0x5e, 0xe5, 0x0a, 0x9a, 0xb7, 0x02, 0x40, 0x0d, 0x3d, 0x85, 0x59, 0x2e, 0xa4, 0x65, - 0x19, 0xfd, 0xae, 0xa9, 0xe8, 0x9a, 0x53, 0x8a, 0x2e, 0xc5, 0x56, 0xf2, 0x1b, 0x8b, 0x67, 0xa7, - 0x8b, 0x45, 0x26, 0xa2, 0x42, 0x71, 0xf5, 0xaa, 0xf3, 0xf5, 0xe9, 0x62, 0x5a, 0x7c, 0xc8, 0x7c, - 0x78, 0xfe, 0xad, 0x39, 0xe8, 0x39, 0x5c, 0xb7, 0xc5, 0xde, 0x6a, 0x41, 0x81, 0x31, 0x2a, 0xf0, - 0xee, 0xd9, 0xe9, 0xe2, 0x35, 0x6f, 0xf3, 0xb5, 0xf1, 0x42, 0xaf, 0xd9, 0xc3, 0x04, 0x9a, 0x83, - 0x9a, 0x10, 0x00, 0xfb, 0xcb, 0x8d, 0xd3, 0xe5, 0x2e, 0xf2, 0xe5, 0xce, 0xfa, 0xa2, 0xc3, 0x4b, - 0x9e, 0xb5, 0x87, 0x10, 0x9a, 0x67, 0x78, 0x89, 0x73, 0x0d, 0x2f, 0x79, 0x55, 0xc3, 0x0b, 0x99, - 0x51, 0xea, 0xff, 0xc5, 0x8c, 0xd2, 0xdf, 0xb8, 0x19, 0x65, 0xbe, 0x01, 0x33, 0x62, 0xba, 0xbb, - 0x1d, 0x4f, 0x83, 0x94, 0xdd, 0x8e, 0xa7, 0xb3, 0x52, 0x6e, 0x3b, 0x9e, 0xce, 0x49, 0xf9, 0xed, - 0x78, 0x3a, 0x2f, 0x15, 0x96, 0xff, 0x27, 0x02, 0xb7, 0x0f, 0x4d, 0xfd, 0x65, 0x1f, 0x3f, 0xd7, - 0xdd, 0x63, 0xab, 0xef, 0x52, 0xbf, 0x18, 0xd0, 0xed, 0x87, 0x90, 0x1e, 0x52, 0xea, 0xeb, 0xfc, - 0x94, 0x53, 0xe1, 0xb3, 0x4d, 0xb9, 0xfc, 0x44, 0x1f, 0x03, 0x8c, 0x68, 0xf0, 0xad, 0xb3, 0xd3, - 0xc5, 0xcc, 0x78, 0x35, 0xcb, 0xb4, 0x3c, 0xe5, 0xfa, 0xc3, 0x38, 0x61, 0x6e, 0xcd, 0xbf, 0x4c, - 0x80, 0xc4, 0x26, 0x51, 0xc5, 0x4e, 0xcb, 0xd6, 0x7b, 0xae, 0x65, 0x7b, 0x33, 0x88, 0x8c, 0xcc, - 0xe0, 0x3e, 0x44, 0x75, 0x8d, 0x07, 0x91, 0x1b, 0x7c, 0x07, 0xa2, 0x74, 0xf1, 0xfe, 0x52, 0xa2, - 0xba, 0x86, 0x56, 0x21, 0x4e, 0x22, 0x1d, 0x5d, 0x43, 0x76, 0x7d, 0x7e, 0x78, 0x96, 0xb8, 0xbb, - 0xca, 0x02, 0xe1, 0x81, 0x4c, 0xe9, 0xd0, 0x12, 0xa4, 0xcd, 0xbe, 0x61, 0xd0, 0x20, 0x46, 0x56, - 0x96, 0x16, 0xd3, 0x15, 0x50, 0x74, 0x07, 0x72, 0x1a, 0x6e, 0xab, 0x7d, 0xc3, 0x55, 0xf0, 0x49, - 0xcf, 0x66, 0x96, 0x22, 0x67, 0x39, 0xac, 0x76, 0xd2, 0xb3, 0xd1, 0x6d, 0x48, 0x1e, 0xeb, 0x9a, - 0x86, 0x4d, 0x6a, 0x28, 0x42, 0x04, 0x87, 0xa1, 0x75, 0x98, 0xed, 0x3b, 0xd8, 0x51, 0x1c, 0xfc, - 0xb2, 0x4f, 0xb4, 0x84, 0x9e, 0x0b, 0xd0, 0x73, 0x49, 0xf2, 0xc3, 0x2b, 0x12, 0x82, 0x7d, 0x8e, - 0x27, 0x47, 0x71, 0x07, 0x72, 0x2d, 0xab, 0xdb, 0xeb, 0xbb, 0x98, 0x0d, 0x9a, 0x65, 0x83, 0x72, - 0x18, 0x1d, 0x74, 0x1d, 0x66, 0xad, 0xd7, 0xe6, 0x90, 0xd8, 0x5c, 0x58, 0x2c, 0x21, 0x08, 0x8a, - 0xfd, 0x14, 0xa4, 0x5e, 0x47, 0x51, 0x5d, 0xd7, 0xd6, 0x8f, 0x88, 0x6c, 0xb3, 0xdf, 0x2d, 0xe5, - 0x43, 0x7b, 0x5a, 0xd8, 0x7b, 0x52, 0x16, 0xe8, 0x46, 0xbf, 0x2b, 0x17, 0x7a, 0x9d, 0xe0, 0x37, - 0xda, 0x84, 0xb7, 0x54, 0xc3, 0xc5, 0xb6, 0x70, 0x6a, 0x64, 0x13, 0x15, 0xdd, 0x54, 0x7a, 0xb6, - 0xd5, 0xb1, 0xb1, 0xe3, 0x94, 0x0a, 0x81, 0x1d, 0xb8, 0x45, 0x49, 0xd9, 0xf9, 0x1c, 0x0c, 0x7a, - 0xb8, 0x6e, 0xee, 0x71, 0x32, 0xf4, 0x13, 0x40, 0xce, 0xc0, 0x71, 0x71, 0x57, 0x08, 0x7a, 0xa1, - 0x9b, 0x5a, 0xa9, 0x48, 0x75, 0xeb, 0x9d, 0x09, 0xba, 0xb5, 0x4f, 0x19, 0x98, 0xb8, 0xa7, 0xba, - 0xa9, 0xf1, 0x51, 0x24, 0x67, 0x08, 0x8e, 0x16, 0x20, 0xf5, 0x4a, 0xb7, 0xdd, 0xbe, 0x6a, 0x94, - 0xa4, 0xc0, 0x74, 0x04, 0xd0, 0xb3, 0xc9, 0xb4, 0x94, 0xd9, 0x8e, 0xa7, 0x33, 0x12, 0x6c, 0xc7, - 0xd3, 0x29, 0x29, 0xbd, 0xfc, 0x17, 0x51, 0xb8, 0xc1, 0xc4, 0x6c, 0xaa, 0x5d, 0xdd, 0x18, 0x5c, - 0x55, 0x33, 0x99, 0x14, 0xae, 0x99, 0xf4, 0x48, 0xe9, 0x52, 0x09, 0x1b, 0x0b, 0x05, 0xf4, 0x48, - 0x09, 0xac, 0x41, 0x40, 0x43, 0xa6, 0x1b, 0xbf, 0x80, 0xe9, 0x36, 0x61, 0x56, 0x28, 0xa9, 0x27, - 0x81, 0x6a, 0x6a, 0x7e, 0xe3, 0x2e, 0x9f, 0x53, 0xb1, 0xca, 0x08, 0x04, 0x7b, 0x38, 0x82, 0x69, - 0x21, 0xa4, 0xc6, 0x8d, 0xf4, 0x9f, 0xa2, 0x30, 0x57, 0x37, 0x5d, 0x6c, 0x1b, 0x58, 0x7d, 0x85, - 0x03, 0xdb, 0xf1, 0x39, 0x64, 0x54, 0xb3, 0x85, 0x1d, 0xd7, 0xb2, 0x9d, 0x52, 0x64, 0x29, 0xb6, - 0x92, 0x5d, 0xff, 0xce, 0x84, 0x53, 0x1b, 0xc7, 0xbf, 0x5a, 0xe6, 0xcc, 0x7c, 0x27, 0x7d, 0x61, - 0xf3, 0xff, 0x1c, 0x81, 0xb4, 0xc0, 0x5e, 0xc2, 0xfb, 0x7d, 0x17, 0xd2, 0x34, 0xa3, 0x54, 0xbc, - 0x33, 0x99, 0x17, 0x1c, 0x3c, 0xe5, 0x0c, 0x66, 0x9f, 0x29, 0x4a, 0x5b, 0xd7, 0x50, 0x65, 0x5c, - 0x62, 0x18, 0xa3, 0xfc, 0x37, 0xc5, 0xfe, 0xed, 0x87, 0x53, 0xc3, 0x91, 0x5c, 0x91, 0xed, 0x19, - 0xdf, 0xb9, 0x7f, 0x8c, 0xc0, 0x2c, 0x61, 0xd0, 0xb0, 0x16, 0xd8, 0xb6, 0xbb, 0x00, 0xba, 0xa3, - 0x38, 0x0c, 0x4e, 0x57, 0x24, 0x74, 0x33, 0xa3, 0x3b, 0x9c, 0xdc, 0x53, 0xb5, 0xe8, 0x88, 0xaa, - 0x7d, 0x04, 0x79, 0xca, 0xab, 0x1c, 0xf5, 0x5b, 0x2f, 0xb0, 0xeb, 0xd0, 0x19, 0x26, 0x36, 0xe6, - 0xf8, 0x0c, 0x73, 0x54, 0xc2, 0x06, 0xc3, 0xc9, 0x39, 0x27, 0xf0, 0x35, 0xa2, 0x7d, 0xf1, 0x11, - 0xed, 0xe3, 0x13, 0xff, 0x87, 0x38, 0xdc, 0xd8, 0x53, 0x6d, 0x57, 0x27, 0xb1, 0x51, 0x37, 0x3b, - 0x81, 0xd9, 0xdf, 0x83, 0xac, 0xd9, 0x17, 0x06, 0xeb, 0xf0, 0x03, 0x61, 0xf3, 0x03, 0xb3, 0xcf, - 0x0d, 0xd0, 0x41, 0x3b, 0x10, 0x37, 0x74, 0xc7, 0xa5, 0xa1, 0x27, 0xbb, 0xbe, 0x3e, 0x41, 0x2d, - 0xc6, 0x8f, 0xb1, 0xba, 0xa3, 0x3b, 0xae, 0x58, 0x33, 0x91, 0x82, 0x9a, 0x90, 0xb0, 0x55, 0xb3, - 0x83, 0xa9, 0xbd, 0x64, 0xd7, 0x1f, 0x5d, 0x4c, 0x9c, 0x4c, 0x58, 0x45, 0x40, 0xa6, 0x72, 0xd0, - 0x87, 0x30, 0x47, 0x56, 0xa1, 0x77, 0x7b, 0x86, 0xde, 0xd2, 0x5d, 0x6f, 0x39, 0xf1, 0xc0, 0x72, - 0x90, 0xd9, 0xef, 0xd6, 0x39, 0x01, 0x5f, 0xd6, 0xfc, 0xdf, 0x44, 0x20, 0x4e, 0x66, 0x77, 0x8e, - 0x2b, 0xb8, 0x01, 0xc9, 0x57, 0xaa, 0xd1, 0xc7, 0x2c, 0xec, 0xe6, 0x64, 0xfe, 0x85, 0x7e, 0x0a, - 0x45, 0xa7, 0x7f, 0xd4, 0x0b, 0x4c, 0x91, 0xc7, 0xa7, 0xf7, 0x2f, 0xb4, 0x1a, 0xaf, 0x46, 0x09, - 0xcb, 0x62, 0x07, 0x37, 0xff, 0x12, 0x12, 0x74, 0xb5, 0xe7, 0xcc, 0xef, 0x0e, 0xe4, 0x5c, 0x4b, - 0xc1, 0x27, 0x2d, 0xa3, 0xef, 0xe8, 0xaf, 0x98, 0x86, 0xe5, 0xe4, 0xac, 0x6b, 0xd5, 0x04, 0x08, - 0xdd, 0x83, 0x42, 0xdb, 0xb6, 0xba, 0x8a, 0x6e, 0x0a, 0xa2, 0x18, 0x25, 0xca, 0x13, 0x68, 0x5d, - 0x00, 0x43, 0xaa, 0xfe, 0xd7, 0x39, 0x28, 0x52, 0x83, 0x9a, 0xca, 0x5d, 0xde, 0x0b, 0xb8, 0xcb, - 0xeb, 0x21, 0x77, 0xe9, 0x59, 0x25, 0xf1, 0x96, 0xb7, 0x21, 0xd9, 0xa7, 0x79, 0x11, 0x1d, 0xdf, - 0x0b, 0xa9, 0x0c, 0x36, 0x85, 0x36, 0xa3, 0x6f, 0x03, 0x22, 0x2e, 0x04, 0x2b, 0x21, 0xc2, 0x04, - 0x25, 0x94, 0x28, 0xa6, 0x32, 0xd1, 0xf3, 0x26, 0x2f, 0xe0, 0x79, 0xb7, 0x40, 0xc2, 0x27, 0xae, - 0xad, 0x06, 0xb3, 0xfc, 0x14, 0xe5, 0x5f, 0x20, 0xe1, 0xb4, 0x46, 0x70, 0xe3, 0x85, 0x14, 0x70, - 0x00, 0xa7, 0x11, 0x2d, 0x99, 0xe5, 0x32, 0x34, 0xdd, 0xc6, 0x34, 0x37, 0x75, 0x4a, 0xe9, 0xa5, - 0xd8, 0x39, 0x39, 0xe8, 0xd0, 0xb6, 0xaf, 0x56, 0x05, 0xa3, 0x2c, 0x31, 0x51, 0x1e, 0xc0, 0x41, - 0xfb, 0x90, 0x6d, 0xb3, 0x94, 0x55, 0x79, 0x81, 0x07, 0x34, 0xb9, 0xcd, 0xae, 0x3f, 0x98, 0x3e, - 0xb9, 0xdd, 0x48, 0x92, 0x23, 0x28, 0x45, 0x64, 0x68, 0x7b, 0x48, 0xf4, 0x1c, 0xf2, 0x81, 0x7a, - 0xe4, 0x68, 0x40, 0xf3, 0x9a, 0xcb, 0x89, 0xcd, 0xf9, 0x82, 0x36, 0x06, 0xe8, 0x33, 0x00, 0xdd, - 0x0b, 0x1c, 0x34, 0xfd, 0xc9, 0xae, 0xbf, 0x77, 0x81, 0x08, 0x23, 0xfc, 0x92, 0x2f, 0x04, 0x3d, - 0x87, 0x82, 0xff, 0x45, 0x27, 0x9b, 0xbb, 0xf0, 0x64, 0x99, 0xd4, 0x7c, 0x40, 0xce, 0x06, 0x29, - 0x6e, 0xe6, 0x48, 0x62, 0x66, 0x39, 0xba, 0x8b, 0x83, 0x6a, 0x90, 0xa7, 0x6a, 0xb0, 0x7c, 0x76, - 0xba, 0x88, 0x2a, 0x02, 0x3f, 0x5e, 0x15, 0x50, 0x6b, 0x08, 0xcf, 0x14, 0x2b, 0xa4, 0xc0, 0x44, - 0x62, 0xc1, 0x57, 0xac, 0x7d, 0x5f, 0x85, 0x47, 0x14, 0x2b, 0xa0, 0xde, 0xac, 0x1a, 0xcd, 0x85, - 0x7c, 0x4f, 0xf1, 0xf2, 0xbe, 0x27, 0x24, 0x08, 0xd5, 0x78, 0xb2, 0x2d, 0xd1, 0xb4, 0xed, 0xbd, - 0x29, 0x95, 0x94, 0x64, 0x82, 0xc2, 0x25, 0xd0, 0x1c, 0xfc, 0x11, 0xa0, 0x96, 0x8d, 0x55, 0x17, - 0x6b, 0x24, 0xd9, 0xa5, 0x4e, 0xd7, 0x18, 0x94, 0x66, 0x03, 0x76, 0x3f, 0xcb, 0xf1, 0x35, 0x0f, - 0x8d, 0x1e, 0x43, 0xea, 0x15, 0xb6, 0x1d, 0xdd, 0x32, 0x4b, 0x88, 0x3a, 0x93, 0x05, 0xde, 0x5a, - 0xba, 0x31, 0x34, 0xde, 0x33, 0x46, 0x25, 0x0b, 0x72, 0xb4, 0x05, 0x79, 0x6c, 0xb6, 0x2c, 0x4d, - 0x37, 0x3b, 0x34, 0x7d, 0x2d, 0x5d, 0xf3, 0xf3, 0xa4, 0xaf, 0x4f, 0x17, 0xbf, 0x35, 0xc4, 0x5f, - 0xe3, 0xb4, 0x64, 0xda, 0x72, 0x0e, 0x07, 0xbe, 0xd0, 0x16, 0xa4, 0x44, 0x2c, 0x9f, 0xa3, 0x7b, - 0xba, 0x32, 0x29, 0x73, 0x1d, 0xce, 0x04, 0x44, 0x46, 0xca, 0xd9, 0x49, 0x19, 0xa2, 0xe9, 0x0e, - 0xc9, 0x61, 0xb4, 0xd2, 0xf5, 0x60, 0x19, 0x22, 0xa0, 0xa8, 0x02, 0xd0, 0xc1, 0x96, 0xc2, 0x9a, - 0x75, 0xa5, 0x1b, 0x74, 0xb8, 0x85, 0xc0, 0x70, 0x1d, 0x6c, 0xad, 0x8a, 0x96, 0x1e, 0xa9, 0xc2, - 0xda, 0x7a, 0x47, 0xa4, 0x16, 0x1d, 0x6c, 0x31, 0x00, 0x5a, 0x86, 0x4c, 0xcf, 0xc6, 0x9a, 0xde, - 0x22, 0x05, 0xf3, 0xcd, 0x80, 0x6f, 0xf6, 0xc1, 0xcb, 0x0b, 0x90, 0xf1, 0xbc, 0x06, 0x4a, 0x41, - 0xac, 0xbc, 0x5f, 0x61, 0xfd, 0x99, 0x6a, 0x6d, 0xbf, 0x22, 0x45, 0x96, 0xef, 0x40, 0x9c, 0x2e, - 0x3e, 0x0b, 0xa9, 0xcd, 0xa6, 0xfc, 0xbc, 0x2c, 0x57, 0x59, 0x4f, 0xa8, 0xde, 0x78, 0x56, 0x93, - 0x0f, 0x6a, 0x55, 0x49, 0xc4, 0x85, 0xd3, 0x38, 0x20, 0xbf, 0x1c, 0x3c, 0xb0, 0x78, 0x79, 0xdd, - 0x81, 0x62, 0xcb, 0x83, 0xb2, 0x03, 0x88, 0x2c, 0x45, 0x57, 0x0a, 0xeb, 0x8f, 0xdf, 0x58, 0x52, - 0x0a, 0x19, 0x41, 0x90, 0xaf, 0x4c, 0x85, 0x56, 0x08, 0x1a, 0xc8, 0xa3, 0xa2, 0x43, 0x31, 0x48, - 0x86, 0x44, 0xeb, 0x18, 0xb7, 0x5e, 0xf0, 0x28, 0xfc, 0xe1, 0x84, 0x81, 0x69, 0x8a, 0x19, 0x50, - 0xdc, 0x0a, 0xe1, 0xf1, 0x87, 0x16, 0x69, 0x05, 0x15, 0x85, 0xe4, 0xb0, 0x7b, 0x8d, 0x9f, 0xeb, - 0xb1, 0xc6, 0xb5, 0xb1, 0x84, 0xc7, 0x0a, 0x78, 0xd7, 0xc7, 0x50, 0x34, 0x2d, 0x57, 0x21, 0xa5, - 0x28, 0xf7, 0x02, 0xb4, 0xc0, 0xcc, 0x6f, 0x48, 0x5c, 0x57, 0x7d, 0x9b, 0xcf, 0x9b, 0x96, 0xdb, - 0xe8, 0x1b, 0x06, 0x03, 0xa0, 0x3f, 0x8b, 0xc0, 0x22, 0x8b, 0x95, 0xca, 0x6b, 0xd6, 0x58, 0x50, - 0x58, 0x5a, 0xec, 0xef, 0x11, 0x6d, 0xc3, 0x4c, 0x4e, 0xa8, 0xce, 0xeb, 0x4a, 0xf0, 0xa9, 0xde, - 0xee, 0x9f, 0x43, 0xb3, 0x7c, 0x00, 0x85, 0xf0, 0x31, 0xa1, 0x0c, 0x24, 0x2a, 0x5b, 0xb5, 0xca, - 0x53, 0x69, 0x06, 0x15, 0x21, 0xbb, 0xd9, 0x94, 0x6b, 0xf5, 0x27, 0x0d, 0xe5, 0x69, 0xed, 0x47, - 0xac, 0x8d, 0xd8, 0x68, 0x7a, 0x6d, 0xc4, 0x12, 0xcc, 0x1d, 0x36, 0xea, 0x9f, 0x1d, 0xd6, 0x94, - 0xe7, 0xf5, 0x83, 0xad, 0xe6, 0xe1, 0x81, 0x52, 0x6f, 0x54, 0x6b, 0x9f, 0x4b, 0x31, 0xaf, 0x74, - 0x4b, 0x48, 0xc9, 0xe5, 0xdf, 0x44, 0xa1, 0xb0, 0x67, 0xeb, 0x5d, 0xd5, 0x1e, 0x3c, 0xc5, 0x83, - 0xfd, 0xd7, 0x6a, 0x0f, 0x7d, 0x0a, 0x73, 0x26, 0x7e, 0xad, 0xf4, 0x18, 0x54, 0xf1, 0x4a, 0x81, - 0xc8, 0xf8, 0xee, 0xf3, 0xac, 0x89, 0x5f, 0x73, 0x09, 0x75, 0x5e, 0x09, 0x7c, 0x1b, 0xb2, 0x96, - 0xa1, 0x31, 0x4e, 0x2c, 0xfa, 0x27, 0xd9, 0x20, 0x13, 0x58, 0x86, 0x56, 0x67, 0x68, 0x42, 0x4d, - 0xc6, 0x13, 0xd4, 0xb1, 0x31, 0xd4, 0x26, 0x7e, 0x2d, 0xa8, 0x3f, 0x85, 0x39, 0x22, 0x7b, 0x64, - 0x76, 0xf1, 0x09, 0xb3, 0xb3, 0x0c, 0x6d, 0x68, 0x76, 0x1f, 0xc1, 0x8d, 0xd1, 0xf5, 0x8d, 0x34, - 0xf0, 0xae, 0x0d, 0x2d, 0x8b, 0xe4, 0x38, 0x22, 0xbd, 0x8f, 0x00, 0x0d, 0x46, 0x7d, 0x57, 0xb4, - 0x15, 0xe9, 0xbe, 0x7d, 0x07, 0xf2, 0x44, 0xae, 0x5f, 0x3b, 0x46, 0x26, 0xe8, 0x19, 0x59, 0xae, - 0x88, 0x2c, 0x84, 0x8b, 0xac, 0xc7, 0xe7, 0x8a, 0x4e, 0xe2, 0xb2, 0x0c, 0xaf, 0x89, 0x89, 0xde, - 0x81, 0x9c, 0x6e, 0x12, 0x67, 0xcc, 0x7b, 0x1b, 0xc1, 0x76, 0x53, 0x96, 0x63, 0x6a, 0x27, 0x3d, - 0x9b, 0xcf, 0xf8, 0x37, 0x51, 0xb8, 0xb9, 0xab, 0xba, 0xd8, 0xd6, 0x55, 0x43, 0xff, 0x13, 0xac, - 0x3d, 0xd3, 0xf1, 0x6b, 0x19, 0xb7, 0x6d, 0xec, 0x1c, 0xa3, 0xcf, 0x61, 0x76, 0x64, 0x3b, 0xe8, - 0xd4, 0xb3, 0xeb, 0xf7, 0xa7, 0x8b, 0x46, 0x22, 0xa7, 0x1e, 0xda, 0x31, 0xb4, 0x1b, 0x3e, 0x58, - 0x56, 0xcb, 0x5c, 0x4c, 0x66, 0xf0, 0xe4, 0x1f, 0x43, 0x42, 0x75, 0x14, 0xab, 0xcd, 0x3d, 0xce, - 0x5b, 0x01, 0x41, 0x7d, 0x57, 0x37, 0x56, 0x8f, 0x8d, 0xd6, 0xea, 0x81, 0xb8, 0xe0, 0x11, 0xbe, - 0x4a, 0x75, 0x9a, 0x6d, 0xf4, 0x3e, 0x14, 0x9d, 0x63, 0xab, 0x6f, 0x68, 0xca, 0x91, 0xda, 0x7a, - 0xd1, 0xd6, 0x0d, 0x23, 0xd4, 0xa7, 0x2a, 0x30, 0xe4, 0x06, 0xc7, 0xf1, 0x3d, 0xfb, 0xcb, 0x14, - 0x20, 0x7f, 0x3e, 0xbb, 0x7d, 0x57, 0xa5, 0xde, 0xbc, 0x0c, 0x49, 0xee, 0x46, 0xd8, 0x1e, 0xbd, - 0x33, 0xd1, 0xe3, 0x86, 0xfb, 0x72, 0x5b, 0x33, 0x32, 0x67, 0x44, 0x3f, 0x0c, 0xde, 0xe7, 0x4c, - 0xbd, 0x23, 0x5b, 0x33, 0xe2, 0xa2, 0xe7, 0x29, 0x24, 0x1c, 0x97, 0x44, 0x9f, 0x18, 0xcd, 0x19, - 0xd6, 0x26, 0xf0, 0x8f, 0x4e, 0x7e, 0x75, 0x9f, 0xb0, 0x09, 0x9f, 0x4b, 0x65, 0xa0, 0xe7, 0x90, - 0xf1, 0x52, 0x65, 0xde, 0x97, 0x7c, 0x34, 0xbd, 0x40, 0x2f, 0xca, 0x89, 0x18, 0xe8, 0xc9, 0x42, - 0x65, 0xc8, 0x76, 0x39, 0x99, 0xdf, 0x48, 0x59, 0xe2, 0xd5, 0x0a, 0x08, 0x09, 0xb4, 0x6a, 0x09, - 0x7c, 0xc9, 0x20, 0x98, 0xea, 0x34, 0xa2, 0xdb, 0x96, 0x61, 0x90, 0x43, 0xa3, 0x9e, 0xd6, 0x8b, - 0xe8, 0x02, 0x8a, 0x9e, 0x92, 0x9a, 0xc3, 0xf3, 0xc6, 0x69, 0xba, 0x9f, 0xef, 0x4e, 0x1d, 0x03, - 0xb7, 0x66, 0xe4, 0x00, 0x3b, 0x6a, 0x42, 0xa1, 0x17, 0x72, 0x85, 0x3c, 0xc1, 0xbf, 0x37, 0x29, - 0xcb, 0x0b, 0x11, 0x6f, 0xcd, 0xc8, 0x43, 0xec, 0xe8, 0x27, 0x80, 0x5a, 0x23, 0x7e, 0xa2, 0x04, - 0x6f, 0x98, 0xe5, 0x30, 0xc3, 0xd6, 0x8c, 0x3c, 0x46, 0x0c, 0xfa, 0x02, 0x6e, 0x76, 0xc7, 0x9b, - 0x34, 0x4f, 0xf5, 0x57, 0x27, 0x8c, 0x30, 0xc1, 0x11, 0x6c, 0xcd, 0xc8, 0x93, 0x04, 0x2e, 0x7f, - 0x0a, 0x09, 0xaa, 0x3a, 0x24, 0x61, 0x39, 0x6c, 0x3c, 0x6d, 0x34, 0x9f, 0x37, 0x58, 0x00, 0xaa, - 0xd6, 0x76, 0x6a, 0x07, 0x35, 0xa5, 0xd9, 0xd8, 0x21, 0x01, 0xe8, 0x16, 0x5c, 0xe7, 0x80, 0x72, - 0xa3, 0xaa, 0x3c, 0x97, 0xeb, 0x02, 0x15, 0x5d, 0x5e, 0x09, 0x66, 0x44, 0x69, 0x88, 0x37, 0x9a, - 0x8d, 0x9a, 0x34, 0x43, 0x73, 0xa3, 0x6a, 0x55, 0x8a, 0xd0, 0xdc, 0x48, 0x6e, 0xee, 0x49, 0x51, - 0x66, 0x7d, 0x1b, 0x39, 0x00, 0xcd, 0x53, 0xb7, 0xed, 0x78, 0x3a, 0x29, 0xa5, 0x96, 0xff, 0x3e, - 0x02, 0x69, 0xe2, 0x86, 0xeb, 0x66, 0xdb, 0x42, 0x8f, 0x20, 0xd3, 0x53, 0x6d, 0x6c, 0xba, 0xbe, - 0xa7, 0x15, 0x9d, 0xc3, 0xf4, 0x1e, 0x45, 0x78, 0x8d, 0xad, 0x34, 0x23, 0xac, 0x9f, 0xd7, 0x16, - 0xda, 0x04, 0x89, 0x8b, 0x73, 0x5a, 0xc7, 0xb8, 0xab, 0x12, 0xa9, 0xac, 0x77, 0x75, 0xdb, 0xeb, - 0xea, 0x52, 0xfc, 0x3e, 0x45, 0x7b, 0xb2, 0x0b, 0xbd, 0x20, 0x54, 0xf4, 0xfc, 0xbe, 0x7c, 0x07, - 0x8a, 0x43, 0x99, 0xcf, 0x39, 0xe5, 0xfc, 0x12, 0x2d, 0xe7, 0x63, 0xbe, 0xdf, 0xf7, 0xca, 0xf9, - 0x28, 0xaf, 0xe4, 0x43, 0x8b, 0x8d, 0x4f, 0xb9, 0xd8, 0x47, 0x7e, 0x76, 0xcf, 0x8c, 0xef, 0x16, - 0x8f, 0x29, 0xb3, 0xe7, 0x24, 0xf6, 0x7b, 0x30, 0xdb, 0xb5, 0x34, 0xbd, 0x4d, 0xf2, 0x58, 0x62, - 0xb9, 0xae, 0xde, 0xc5, 0x3c, 0xcb, 0x99, 0xca, 0xe1, 0x4a, 0x41, 0x6e, 0x82, 0x44, 0x4f, 0x20, - 0x25, 0xda, 0x43, 0x69, 0x1a, 0x01, 0xa6, 0xf5, 0x98, 0x22, 0xbf, 0xe7, 0xdc, 0x68, 0x13, 0x0a, - 0x26, 0x3e, 0x09, 0x36, 0x67, 0x33, 0x21, 0x9f, 0x92, 0x6b, 0xe0, 0x93, 0xf1, 0x9d, 0xd9, 0x9c, - 0xe9, 0x63, 0x34, 0xf4, 0x19, 0xe4, 0xc3, 0xc1, 0x0e, 0x2e, 0x11, 0xec, 0x72, 0xbd, 0x60, 0xa4, - 0xdb, 0x84, 0x94, 0x88, 0x72, 0xd9, 0x4b, 0x44, 0x39, 0xc1, 0x8c, 0x36, 0x48, 0x0a, 0x71, 0xe2, - 0xfa, 0x59, 0x4d, 0xce, 0x2f, 0xcb, 0xce, 0x4e, 0x17, 0xb3, 0x64, 0x85, 0x63, 0x5a, 0xb0, 0x59, - 0xd3, 0x83, 0x6b, 0x68, 0x1b, 0xc0, 0x7b, 0xc2, 0xe0, 0xd0, 0x9b, 0x89, 0xc9, 0xe5, 0xf9, 0x9e, - 0x20, 0xf4, 0xa7, 0x24, 0x07, 0xb8, 0xd1, 0x2e, 0x64, 0x84, 0x3b, 0x66, 0x85, 0xf3, 0x64, 0xbf, - 0x35, 0x1a, 0x1c, 0x44, 0x48, 0xf0, 0x24, 0x90, 0x9a, 0xc1, 0xc0, 0xaa, 0x83, 0x79, 0xf5, 0xfc, - 0x78, 0xca, 0x9a, 0x81, 0x19, 0x57, 0xe5, 0x58, 0x35, 0x3b, 0x78, 0x87, 0xf0, 0x6f, 0x44, 0x4b, - 0x11, 0x99, 0x89, 0x42, 0x0d, 0x90, 0xe8, 0x96, 0x05, 0x63, 0x8d, 0x44, 0x77, 0xed, 0x6d, 0x61, - 0xb8, 0x64, 0xd7, 0x26, 0xc6, 0x1b, 0xaa, 0x53, 0xbb, 0x7e, 0xcc, 0xf9, 0x01, 0x14, 0xda, 0x96, - 0xdd, 0x55, 0x5d, 0x45, 0x18, 0xcf, 0xac, 0xdf, 0x67, 0xfb, 0xfa, 0x74, 0x31, 0xbf, 0x49, 0xb1, - 0xc2, 0x70, 0xf2, 0xed, 0xe0, 0x27, 0xda, 0x10, 0xa1, 0xf9, 0x1a, 0x8d, 0xa4, 0xf7, 0xdf, 0xb8, - 0x59, 0x63, 0x22, 0x72, 0x03, 0x92, 0xb4, 0x1c, 0x72, 0x4a, 0x73, 0x74, 0xc7, 0x2f, 0x59, 0x5a, - 0xc9, 0x5c, 0x0a, 0xda, 0x81, 0x82, 0x46, 0x20, 0xa4, 0x56, 0x67, 0x1d, 0xbc, 0xeb, 0x54, 0xee, - 0xe2, 0x04, 0xb9, 0xc2, 0xc5, 0x8a, 0x46, 0x8d, 0x60, 0x66, 0x5d, 0xbe, 0x26, 0xa4, 0xdb, 0x6a, - 0x57, 0x37, 0x74, 0xec, 0x94, 0x6e, 0x50, 0x39, 0xef, 0x9f, 0x6b, 0xcf, 0xc3, 0xb7, 0x40, 0x22, - 0x84, 0x0b, 0x21, 0x9e, 0x59, 0x53, 0xc0, 0x80, 0x1c, 0xdf, 0xcd, 0x51, 0xb3, 0x16, 0xb7, 0x40, - 0xa1, 0x1b, 0x21, 0x6a, 0xd6, 0xfc, 0x4b, 0x43, 0x77, 0x01, 0x5e, 0xe9, 0xf8, 0xb5, 0xf2, 0xb2, - 0x8f, 0xed, 0x41, 0xa9, 0x14, 0x2c, 0xcc, 0x09, 0xfc, 0x33, 0x02, 0x46, 0x1f, 0x40, 0x46, 0xc3, - 0x3d, 0x6c, 0x6a, 0x4e, 0xd3, 0x2c, 0xdd, 0xa2, 0x95, 0xc6, 0xb5, 0xb3, 0xd3, 0xc5, 0x4c, 0x55, - 0x00, 0xb9, 0x17, 0xf5, 0xa9, 0xd0, 0x17, 0x90, 0x63, 0x1f, 0x58, 0x6b, 0x9a, 0x1b, 0x83, 0xd2, - 0x3c, 0x5d, 0xf4, 0xc3, 0x29, 0x0f, 0xc5, 0x6f, 0x7b, 0x79, 0x37, 0x0c, 0xd5, 0x80, 0x34, 0x39, - 0x24, 0x1b, 0xfd, 0x31, 0xe4, 0x84, 0x1e, 0x6f, 0x5b, 0x47, 0x4e, 0xe9, 0x5b, 0xe7, 0xb6, 0xff, - 0x87, 0xc7, 0xda, 0xf5, 0x59, 0x85, 0x97, 0x0a, 0x4a, 0x43, 0x9f, 0x43, 0xde, 0xbb, 0xe8, 0xb4, - 0x7a, 0xae, 0x53, 0xba, 0x7d, 0x6e, 0xf5, 0x3a, 0x62, 0x86, 0x9c, 0xb7, 0xd9, 0xa3, 0x37, 0x23, - 0x81, 0x2f, 0x74, 0x07, 0x32, 0x9a, 0x6d, 0xf5, 0x58, 0xb4, 0x78, 0x6b, 0x29, 0xb2, 0x12, 0xf3, - 0x7a, 0x2f, 0xb6, 0xd5, 0xa3, 0x61, 0x40, 0x81, 0x82, 0x8d, 0x7b, 0x86, 0xda, 0xc2, 0x5d, 0x12, - 0xc7, 0xac, 0x76, 0x69, 0x81, 0x8e, 0xbe, 0x3e, 0xf5, 0x46, 0x7a, 0xcc, 0x42, 0x31, 0x03, 0xf2, - 0x9a, 0x6d, 0x74, 0x08, 0xa0, 0xf6, 0x35, 0xdd, 0x55, 0xba, 0x96, 0x86, 0x4b, 0x8b, 0xe7, 0xbe, - 0x3b, 0x18, 0x16, 0x5e, 0x26, 0x8c, 0xbb, 0x96, 0x86, 0xbd, 0xbb, 0x34, 0x01, 0x40, 0x1f, 0x40, - 0x96, 0x2e, 0xed, 0x0b, 0xeb, 0x88, 0xe8, 0xe6, 0x12, 0x5d, 0xdc, 0x2c, 0x3f, 0xcb, 0x4c, 0xd5, - 0xb6, 0x7a, 0xdb, 0xd6, 0x11, 0xd5, 0x18, 0xfe, 0xa7, 0x86, 0x1c, 0xc8, 0x75, 0x5a, 0x8a, 0xef, - 0x38, 0xef, 0xd0, 0x53, 0xfc, 0x78, 0xca, 0xb9, 0x3c, 0xa9, 0x8c, 0x71, 0xa5, 0xd7, 0x44, 0x04, - 0x78, 0x52, 0x11, 0x30, 0x47, 0xce, 0x76, 0x5a, 0xde, 0x07, 0xa9, 0x08, 0x59, 0x83, 0x8f, 0x1b, - 0xc0, 0x72, 0xb0, 0x22, 0x64, 0x18, 0x66, 0x02, 0x0d, 0xe0, 0x9d, 0x40, 0x85, 0x56, 0x53, 0xec, - 0xcc, 0xee, 0x4e, 0x1f, 0xe1, 0x0b, 0x8c, 0xbb, 0xec, 0x34, 0xdb, 0xf4, 0x60, 0x5b, 0x90, 0xb3, - 0xfa, 0xee, 0x91, 0xd5, 0x37, 0x35, 0xa5, 0xfd, 0xc2, 0x29, 0xbd, 0x4d, 0x57, 0x7b, 0xa1, 0xae, - 0x8d, 0xb7, 0xba, 0x26, 0x17, 0xb4, 0xf9, 0xd4, 0x91, 0xb3, 0x42, 0xea, 0xe6, 0x0b, 0x07, 0xfd, - 0x1c, 0xb2, 0xba, 0xe9, 0x8f, 0x71, 0xef, 0xe2, 0x63, 0x20, 0x51, 0x79, 0xd4, 0x4d, 0x6f, 0x08, - 0xe0, 0x32, 0xc9, 0x08, 0xef, 0x41, 0xc1, 0x6a, 0xb7, 0x0d, 0xdd, 0xc4, 0x8a, 0x8d, 0x55, 0xc7, - 0x32, 0x4b, 0xf7, 0x03, 0x3b, 0x98, 0xe7, 0x38, 0x99, 0xa2, 0xd0, 0x32, 0x64, 0x5c, 0xdc, 0xed, - 0x59, 0xb6, 0x6a, 0x0f, 0x4a, 0xef, 0x04, 0xaf, 0x20, 0x3d, 0x30, 0x3a, 0x82, 0xf9, 0xbe, 0x89, - 0x4f, 0x7a, 0x96, 0x83, 0x35, 0x65, 0x24, 0xb7, 0x5c, 0xa1, 0x3e, 0xee, 0x1e, 0x9f, 0xd4, 0xcd, - 0x43, 0x41, 0x39, 0x36, 0xc9, 0xbc, 0xd9, 0x1f, 0x8b, 0xd6, 0xd0, 0x87, 0x30, 0xa7, 0x3b, 0x4a, - 0x30, 0x6b, 0x57, 0x88, 0xaf, 0x2b, 0xbd, 0x1b, 0x98, 0x12, 0xd2, 0x9d, 0xe1, 0x8c, 0x1f, 0xfd, - 0x0c, 0x8a, 0x86, 0xd5, 0x52, 0x0d, 0xdd, 0x1d, 0x88, 0x6e, 0xe8, 0x03, 0xaa, 0x01, 0xdf, 0x9d, - 0x52, 0x49, 0x77, 0x38, 0x37, 0xeb, 0x89, 0xca, 0x05, 0x23, 0xf4, 0x8d, 0x7e, 0x11, 0x81, 0xa5, - 0x37, 0xb4, 0xce, 0x9c, 0xd2, 0x7b, 0xe7, 0x5e, 0x46, 0x4e, 0xd1, 0x3b, 0x7b, 0xeb, 0xbc, 0xde, - 0x99, 0x83, 0x56, 0x69, 0x4a, 0xcf, 0x3a, 0xed, 0x8a, 0x6a, 0x18, 0xca, 0xd1, 0xa0, 0xf4, 0xed, - 0x60, 0xd9, 0xef, 0x61, 0xcb, 0x86, 0xb1, 0x31, 0x98, 0xff, 0x75, 0x04, 0x66, 0x47, 0x52, 0x0d, - 0xf4, 0x33, 0x48, 0x99, 0x96, 0x16, 0xb8, 0x3d, 0xaf, 0xf1, 0x33, 0x4b, 0x36, 0x2c, 0x8d, 0x5d, - 0x9e, 0x3f, 0xea, 0xe8, 0xee, 0x71, 0xff, 0x68, 0xb5, 0x65, 0x75, 0xd7, 0xbc, 0xc5, 0x68, 0x47, - 0xfe, 0xdf, 0x6b, 0xbd, 0x17, 0x9d, 0x35, 0xfa, 0x57, 0xef, 0x68, 0x95, 0xb1, 0xc9, 0x49, 0x22, - 0xb5, 0xae, 0xa1, 0xf7, 0xa1, 0x88, 0x4f, 0x7a, 0xba, 0x1d, 0x48, 0xb7, 0xa3, 0x01, 0x07, 0x5a, - 0xf0, 0x91, 0xc4, 0xda, 0xf8, 0x3d, 0xe5, 0x6f, 0xa2, 0x50, 0x1c, 0x0a, 0xf7, 0xa4, 0xbe, 0xa0, - 0xad, 0xa0, 0x50, 0x7d, 0x41, 0x20, 0xe7, 0x54, 0x3d, 0xc1, 0x37, 0x49, 0xb1, 0xab, 0xbe, 0x4f, - 0x0b, 0xdf, 0xff, 0x25, 0x2e, 0x70, 0xff, 0xf7, 0x11, 0xdc, 0xd0, 0x1d, 0xc5, 0xb4, 0x4c, 0xd1, - 0xa6, 0xf5, 0x2a, 0xfa, 0xe0, 0x5b, 0xa0, 0x6b, 0xba, 0xd3, 0xb0, 0x4c, 0xd6, 0xa0, 0xf5, 0x56, - 0xed, 0x3f, 0x1b, 0x4a, 0x8d, 0x3e, 0x1b, 0xf2, 0x3a, 0x9d, 0x71, 0x29, 0x31, 0xff, 0x65, 0x04, - 0x32, 0xc1, 0x57, 0xb7, 0xd1, 0x70, 0x87, 0x6e, 0xa4, 0xe6, 0xba, 0xe4, 0x2b, 0x88, 0xf0, 0x2e, - 0xc4, 0xa6, 0xdf, 0x05, 0x7e, 0xb4, 0x7f, 0x0a, 0xd9, 0x40, 0x1c, 0x1f, 0xee, 0xa2, 0x44, 0x2e, - 0xd1, 0x45, 0x79, 0x1b, 0x92, 0x3c, 0x78, 0x31, 0xc5, 0xca, 0x73, 0xee, 0x04, 0x0b, 0x5c, 0x89, - 0x2f, 0x48, 0xd0, 0xe2, 0xa3, 0xff, 0x5b, 0x0c, 0x72, 0xc1, 0x38, 0x4f, 0x3c, 0x9d, 0x6e, 0xb6, - 0x6c, 0x1a, 0x64, 0xe9, 0xe8, 0x31, 0xef, 0xb1, 0x85, 0x00, 0x93, 0xe8, 0xdf, 0xd5, 0x4d, 0x85, - 0x5e, 0xd4, 0x87, 0x94, 0x37, 0xdd, 0xd5, 0xcd, 0x67, 0x04, 0x4a, 0x49, 0xd4, 0x13, 0x4e, 0x12, - 0x0b, 0x91, 0xa8, 0x27, 0x8c, 0x64, 0x9e, 0xa6, 0xce, 0xb6, 0x4b, 0xeb, 0xdb, 0x58, 0x20, 0x25, - 0xb6, 0xdd, 0xe0, 0x63, 0xa4, 0xc4, 0x98, 0xc7, 0x48, 0xc8, 0x84, 0x82, 0x9f, 0xd9, 0xbc, 0x36, - 0xb1, 0x4d, 0x15, 0x27, 0xbb, 0x5e, 0xbe, 0x44, 0x6a, 0xe3, 0x7f, 0x10, 0x41, 0xc2, 0xff, 0x3b, - 0x41, 0xe0, 0xfc, 0xdf, 0x45, 0x20, 0x1f, 0x22, 0x43, 0x75, 0x28, 0xd2, 0x81, 0x47, 0xda, 0xbf, - 0x77, 0xbc, 0xf7, 0xb3, 0x04, 0x3d, 0xb6, 0x3c, 0xcd, 0x5b, 0x01, 0x94, 0x86, 0x3e, 0x85, 0x02, - 0x13, 0xe5, 0x3d, 0xdb, 0x09, 0xab, 0x5f, 0x8e, 0x4a, 0x0a, 0xbf, 0xdd, 0xc9, 0x59, 0x3e, 0x4c, - 0x0b, 0xbe, 0x2c, 0x98, 0x37, 0x21, 0x1b, 0x48, 0x9d, 0xa6, 0xd0, 0xfb, 0xef, 0x41, 0xdc, 0xf3, - 0x42, 0xd3, 0x76, 0x59, 0x5d, 0xdf, 0x35, 0xfd, 0x2a, 0x02, 0x73, 0xe3, 0x52, 0x98, 0x90, 0x3d, - 0x31, 0x45, 0x9a, 0xca, 0x9e, 0xee, 0x06, 0x53, 0x4b, 0xa6, 0x5c, 0xe2, 0xb6, 0xdb, 0x4f, 0x2e, - 0xef, 0x7b, 0x2a, 0xce, 0x74, 0xab, 0x18, 0x52, 0x71, 0x52, 0x2c, 0x06, 0x95, 0xfc, 0x5f, 0x62, - 0x50, 0x08, 0x07, 0x30, 0xf4, 0x0c, 0x92, 0x1d, 0xc3, 0x3a, 0x52, 0x0d, 0xde, 0xd5, 0xfd, 0xc1, - 0xa5, 0xe2, 0xe0, 0xea, 0x13, 0x2a, 0x63, 0x6b, 0x46, 0xe6, 0xd2, 0x90, 0x03, 0xb3, 0x36, 0xee, - 0xe8, 0x96, 0xa9, 0x92, 0xf0, 0xc3, 0x4e, 0x94, 0xef, 0x6c, 0xed, 0x72, 0x43, 0xc8, 0x5c, 0xdc, - 0xc6, 0x80, 0x12, 0x6e, 0xcd, 0xc8, 0x45, 0x3b, 0x0c, 0x42, 0x5d, 0x28, 0x06, 0x07, 0xb5, 0xad, - 0xd7, 0xbc, 0x65, 0x5e, 0xb9, 0xea, 0x90, 0xb2, 0xf5, 0x7a, 0x8b, 0x26, 0xde, 0x01, 0xc0, 0xfc, - 0x1f, 0x41, 0x71, 0x68, 0x52, 0xe4, 0x3c, 0x18, 0x0d, 0x8f, 0x46, 0x05, 0xe2, 0x9e, 0x18, 0x11, - 0xa9, 0x22, 0x65, 0x8e, 0xe5, 0xe7, 0x71, 0x1d, 0xf2, 0xa1, 0x21, 0x38, 0xb8, 0x00, 0x49, 0xb6, - 0x9f, 0x41, 0x7d, 0xde, 0x00, 0x48, 0x8b, 0x64, 0x63, 0x79, 0x05, 0x32, 0x5e, 0xe6, 0x8e, 0x72, - 0x90, 0xae, 0xd6, 0xf7, 0xcb, 0x1b, 0x3b, 0xb5, 0xaa, 0x34, 0x83, 0xf2, 0x90, 0x91, 0x6b, 0xe5, - 0x2a, 0xed, 0x41, 0x4a, 0x91, 0xef, 0xa7, 0xff, 0xfc, 0x57, 0x8b, 0x11, 0x1e, 0x0c, 0x92, 0x52, - 0x6a, 0x3b, 0x9e, 0x46, 0xd2, 0xb5, 0xe5, 0xff, 0xca, 0x00, 0xaa, 0xaa, 0xae, 0x4a, 0x36, 0xe1, - 0x02, 0x9d, 0xba, 0xe8, 0x39, 0xd6, 0x13, 0xee, 0xbe, 0xc4, 0xae, 0xd4, 0x7d, 0x19, 0xdb, 0x8b, - 0x8b, 0x5f, 0xa5, 0x17, 0x77, 0xa9, 0x96, 0xe0, 0x68, 0xff, 0x20, 0x79, 0x85, 0xfe, 0xc1, 0x33, - 0x48, 0xb1, 0x2c, 0x98, 0x3d, 0xf1, 0x99, 0xdc, 0xde, 0x18, 0x3d, 0x18, 0xde, 0x08, 0x72, 0x6a, - 0xa6, 0x6b, 0x0f, 0xbc, 0xdb, 0x7f, 0x06, 0xf3, 0x3b, 0x2f, 0xe9, 0xcb, 0x77, 0x5e, 0x46, 0x6b, - 0x80, 0xcc, 0xe4, 0x1a, 0xe0, 0x27, 0xc0, 0xed, 0x40, 0x64, 0xd0, 0x70, 0xee, 0x45, 0xf8, 0x98, - 0xe5, 0x30, 0xa5, 0xe7, 0x29, 0x74, 0xce, 0x0e, 0x7c, 0xcd, 0x1f, 0x00, 0xf0, 0x24, 0xdf, 0x6c, - 0x5b, 0x53, 0x38, 0xed, 0x05, 0x48, 0x11, 0x67, 0xd8, 0xc3, 0x4c, 0x3b, 0xbd, 0x00, 0xc9, 0x81, - 0xdc, 0xa2, 0x7a, 0x90, 0x0b, 0x6e, 0x21, 0x92, 0x20, 0xf6, 0x02, 0x0f, 0x98, 0x9e, 0xcb, 0xe4, - 0x4f, 0xb4, 0x0d, 0x09, 0x3f, 0x8c, 0x4f, 0x7e, 0x8f, 0x3a, 0xf1, 0x6c, 0xc8, 0x74, 0x65, 0x26, - 0xe2, 0xfb, 0xd1, 0xc7, 0x91, 0xf9, 0xff, 0x8d, 0x42, 0x2e, 0xb8, 0x4c, 0xf4, 0x53, 0x48, 0xb1, - 0x85, 0x8a, 0x27, 0xaf, 0x9f, 0x5c, 0x6e, 0xbf, 0xf8, 0x87, 0x58, 0x27, 0x97, 0x89, 0x1a, 0x90, - 0x77, 0xfa, 0xf6, 0x2b, 0xfd, 0x95, 0x6a, 0x28, 0x1d, 0x4b, 0x35, 0xe8, 0x3a, 0x0a, 0xeb, 0x77, - 0x27, 0xbd, 0x29, 0xe1, 0xb4, 0x4f, 0x2c, 0xd5, 0x10, 0x2d, 0x13, 0x27, 0x00, 0x43, 0x1f, 0x79, - 0x57, 0x42, 0x0a, 0x77, 0x68, 0xec, 0xa6, 0x15, 0x71, 0xbb, 0x09, 0x3a, 0x35, 0xd1, 0x55, 0x66, - 0x20, 0x12, 0xc6, 0xb9, 0x7e, 0x60, 0xfa, 0x56, 0x52, 0x34, 0xee, 0xbd, 0x30, 0xce, 0xe8, 0x6a, - 0x66, 0xbf, 0xeb, 0x87, 0x71, 0xdb, 0x87, 0x69, 0xf3, 0x1f, 0x42, 0x92, 0xcb, 0xba, 0x1f, 0xf2, - 0x48, 0xe3, 0x06, 0xa7, 0xf8, 0xa0, 0xa3, 0xf4, 0x5d, 0xde, 0xf2, 0xbf, 0x66, 0xa1, 0x70, 0x30, - 0xe8, 0x05, 0x5d, 0xdc, 0xa5, 0x6e, 0x4f, 0xc6, 0xdd, 0x91, 0x44, 0x2f, 0x7e, 0x47, 0x72, 0xce, - 0x6f, 0x24, 0x98, 0xa2, 0xc7, 0xcf, 0x51, 0xf4, 0x2a, 0xc4, 0xe9, 0x2b, 0xf7, 0x04, 0x3d, 0xd7, - 0x49, 0x9e, 0x35, 0xbc, 0xda, 0xd5, 0xc0, 0x43, 0x77, 0xca, 0x8d, 0x7e, 0x04, 0x39, 0x7a, 0x28, - 0x5d, 0xdc, 0x3d, 0xc2, 0xb6, 0x70, 0x68, 0x0f, 0xa7, 0x93, 0x46, 0x4e, 0x67, 0x97, 0x32, 0x8a, - 0xf6, 0x0a, 0xf6, 0x20, 0x0e, 0x7a, 0x08, 0x09, 0xd5, 0xd0, 0xa9, 0x77, 0x7b, 0xd3, 0xaf, 0x27, - 0x18, 0x21, 0xfa, 0x04, 0xf2, 0xaa, 0x6d, 0xab, 0x03, 0xfe, 0x3b, 0x00, 0x8d, 0x7a, 0x30, 0xee, - 0x9a, 0xcf, 0x4e, 0x17, 0xb3, 0x65, 0x82, 0xa4, 0x4f, 0xff, 0xc5, 0x46, 0x64, 0x55, 0x0f, 0x14, - 0xba, 0xe6, 0xc9, 0x5c, 0xed, 0x9a, 0x07, 0xae, 0x12, 0x5a, 0x46, 0xa3, 0x44, 0xf6, 0x0a, 0x51, - 0xe2, 0xe7, 0x30, 0x2f, 0x9e, 0x32, 0x12, 0x81, 0xfe, 0x55, 0x60, 0xe0, 0x17, 0x1a, 0xcb, 0x67, - 0xa7, 0x8b, 0x25, 0xd9, 0xa7, 0xf2, 0x97, 0xcb, 0x8a, 0x2c, 0xb2, 0x53, 0x25, 0x7b, 0x2c, 0x5e, - 0x0b, 0xc4, 0x8b, 0xfc, 0xe5, 0xe3, 0x45, 0x38, 0xd8, 0x17, 0xae, 0x14, 0xec, 0x47, 0x63, 0x4f, - 0x71, 0x72, 0xec, 0x79, 0x3e, 0x1c, 0x7b, 0xa4, 0xf3, 0x7b, 0xa9, 0x61, 0x05, 0x3e, 0x27, 0xee, - 0xfc, 0x32, 0x0a, 0xe0, 0xeb, 0x37, 0xfa, 0x1e, 0xdc, 0xec, 0x1d, 0x0f, 0x1c, 0xbd, 0xa5, 0x1a, - 0x8a, 0x8d, 0x7b, 0x36, 0x76, 0xb0, 0xc9, 0xd2, 0x79, 0xea, 0x34, 0x72, 0xf2, 0x0d, 0x81, 0x96, - 0x43, 0x58, 0xf4, 0x31, 0xdc, 0x30, 0xac, 0xce, 0x38, 0xbe, 0x60, 0x13, 0xe2, 0x3a, 0xa7, 0x19, - 0x62, 0x56, 0x01, 0x5a, 0x6a, 0x4f, 0x3d, 0xd2, 0x0d, 0xbf, 0x2f, 0xf1, 0xf1, 0x45, 0x6d, 0x73, - 0xb5, 0xe2, 0x89, 0x10, 0x6f, 0x49, 0x7c, 0xa1, 0xcb, 0x6f, 0x03, 0xf8, 0x78, 0x7a, 0x0b, 0xbd, - 0xb3, 0xe3, 0x67, 0x8d, 0xfc, 0x3e, 0x9b, 0x47, 0xcd, 0xe6, 0x50, 0x08, 0x1b, 0x8d, 0x09, 0x91, - 0x29, 0x63, 0x02, 0xbf, 0x1d, 0xfe, 0x00, 0xe2, 0xf4, 0x27, 0x36, 0x69, 0x88, 0xd7, 0x1a, 0x87, - 0xbb, 0xd2, 0x0c, 0xca, 0x40, 0xa2, 0xbc, 0x53, 0x2f, 0xef, 0x4b, 0x11, 0x34, 0x07, 0xd2, 0xee, - 0xe1, 0xce, 0x41, 0x5d, 0xae, 0x3d, 0xa9, 0x37, 0x1b, 0x0a, 0x25, 0x88, 0x06, 0x9c, 0xf9, 0xdf, - 0xc6, 0x41, 0x62, 0x9e, 0xf4, 0xaa, 0xee, 0x7c, 0x72, 0x5b, 0xe8, 0xcd, 0x17, 0xd2, 0x61, 0xcd, - 0x8f, 0x7f, 0xf3, 0x69, 0x6e, 0xe2, 0x1b, 0x4a, 0x73, 0x93, 0x57, 0x48, 0x73, 0x53, 0x57, 0x70, - 0x60, 0x7f, 0xe8, 0x74, 0x34, 0xa0, 0x21, 0x5f, 0x46, 0x01, 0x02, 0xba, 0xf1, 0xc3, 0xe0, 0xef, - 0xcb, 0x27, 0xdf, 0x4c, 0x0f, 0xd5, 0x80, 0x5b, 0x33, 0xe2, 0xd7, 0xe7, 0x4f, 0x20, 0xad, 0xf1, - 0x5c, 0x8c, 0x67, 0x85, 0xef, 0x4e, 0x9d, 0xb2, 0x6d, 0xcd, 0xc8, 0x1e, 0x33, 0xfa, 0x38, 0xf4, - 0xb3, 0xc2, 0x7b, 0x53, 0x19, 0xf4, 0x96, 0x78, 0xdf, 0x5c, 0x86, 0x24, 0x4b, 0x3a, 0xb8, 0xb2, - 0x4d, 0xfc, 0x7d, 0xdb, 0x90, 0x69, 0x90, 0x5a, 0x9c, 0x31, 0xf2, 0xfa, 0x31, 0x05, 0x89, 0xbe, - 0xa9, 0x5b, 0xe6, 0x03, 0x39, 0xf8, 0xb2, 0x56, 0x34, 0x35, 0x89, 0x07, 0xa0, 0x7f, 0xab, 0x2e, - 0xd6, 0xd8, 0x13, 0x97, 0x43, 0xf3, 0x95, 0x07, 0x88, 0xa0, 0x02, 0x00, 0xc7, 0xeb, 0x66, 0x47, - 0x8a, 0xd2, 0xaa, 0x93, 0xe4, 0xd8, 0xe4, 0x2b, 0xf6, 0xe0, 0x13, 0x90, 0x86, 0x7f, 0x60, 0x17, - 0x78, 0xec, 0x32, 0x0b, 0xf9, 0xdd, 0x67, 0x95, 0xca, 0x41, 0x7d, 0xb7, 0xb6, 0x7f, 0x50, 0xde, - 0xdd, 0x63, 0x4f, 0x36, 0x0f, 0x48, 0xc9, 0xda, 0xac, 0x57, 0xa5, 0xe8, 0x83, 0x4f, 0xa0, 0x38, - 0xa4, 0x10, 0x08, 0x20, 0xb9, 0x77, 0xb8, 0xb1, 0x53, 0xaf, 0x8c, 0x7d, 0x2c, 0x83, 0xb2, 0x90, - 0x6a, 0x6e, 0x6e, 0xee, 0xd4, 0x1b, 0x35, 0x29, 0xf6, 0xe0, 0x3b, 0x90, 0x0b, 0x26, 0xb4, 0x48, - 0x82, 0xdc, 0x8f, 0x9b, 0x8d, 0x9a, 0xb2, 0x59, 0xae, 0xef, 0x1c, 0xca, 0x64, 0x06, 0x08, 0x0a, - 0xdc, 0xaf, 0x08, 0x58, 0x64, 0x63, 0xe5, 0xb7, 0xff, 0xb9, 0x30, 0xf3, 0xdb, 0xb3, 0x85, 0xc8, - 0xef, 0xce, 0x16, 0x22, 0xbf, 0x3f, 0x5b, 0x88, 0xfc, 0xc7, 0xd9, 0x42, 0xe4, 0xaf, 0xbe, 0x5a, - 0x98, 0xf9, 0xdd, 0x57, 0x0b, 0x33, 0xbf, 0xff, 0x6a, 0x61, 0xe6, 0xc7, 0x49, 0xf6, 0x2f, 0x23, - 0xfc, 0x5f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x58, 0x5e, 0xb3, 0x33, 0x84, 0x41, 0x00, 0x00, + proto.RegisterFile("sql/catalog/descpb/structured.proto", fileDescriptor_structured_035ba5bbb9e1b86b) +} + +var fileDescriptor_structured_035ba5bbb9e1b86b = []byte{ + // 5164 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x7c, 0xc9, 0x73, 0x1b, 0xd9, + 0x79, 0x38, 0xb1, 0x03, 0x1f, 0xb6, 0xe6, 0x13, 0x25, 0x41, 0xb4, 0x86, 0xa4, 0xa8, 0x91, 0x86, + 0xa3, 0xf1, 0x90, 0x1a, 0xca, 0x1e, 0x6b, 0x3c, 0x1e, 0xff, 0x06, 0x04, 0x40, 0x11, 0x14, 0x09, + 0x70, 0x9a, 0xa4, 0x34, 0xb6, 0x7f, 0x76, 0xbb, 0x89, 0x7e, 0x00, 0x7b, 0xd4, 0xe8, 0x86, 0xba, + 0x1b, 0x12, 0x91, 0xca, 0x21, 0xe5, 0x53, 0x4e, 0x49, 0x7c, 0xc8, 0x31, 0x15, 0x57, 0xca, 0x55, + 0xf1, 0x2d, 0xe5, 0xaa, 0x54, 0x72, 0xcb, 0x79, 0x2a, 0x97, 0x38, 0x97, 0x94, 0x4f, 0xac, 0x84, + 0x93, 0x43, 0xfe, 0x83, 0xa4, 0xe6, 0x94, 0x7a, 0x5b, 0x2f, 0x58, 0x28, 0x90, 0x9c, 0xf8, 0x30, + 0x53, 0xec, 0x6f, 0x7b, 0xdb, 0xb7, 0xbf, 0x07, 0xc1, 0x5d, 0xe7, 0xa5, 0xb1, 0xd6, 0x52, 0x5d, + 0xd5, 0xb0, 0x3a, 0x6b, 0x1a, 0x76, 0x5a, 0xbd, 0xa3, 0x35, 0xc7, 0xb5, 0xfb, 0x2d, 0xb7, 0x6f, + 0x63, 0x6d, 0xb5, 0x67, 0x5b, 0xae, 0x85, 0xae, 0xb7, 0xac, 0xd6, 0x0b, 0xdb, 0x52, 0x5b, 0xc7, + 0xab, 0xce, 0x4b, 0x83, 0xfc, 0x77, 0xa4, 0x3a, 0x78, 0xbe, 0xd4, 0x77, 0x75, 0x63, 0xed, 0xd8, + 0x68, 0xad, 0xb9, 0x7a, 0x17, 0x3b, 0xae, 0xda, 0xed, 0x31, 0x86, 0xf9, 0xe5, 0x31, 0x52, 0x7b, + 0xb6, 0xfe, 0x4a, 0x37, 0x70, 0x07, 0x73, 0x9a, 0xeb, 0x84, 0xc6, 0x1d, 0xf4, 0xb0, 0xc3, 0xfe, + 0xcf, 0xc1, 0xb7, 0x3a, 0xd8, 0x5a, 0xeb, 0x60, 0x4b, 0x37, 0x35, 0x7c, 0xb2, 0xd6, 0xb2, 0xcc, + 0xb6, 0xde, 0xe1, 0xa8, 0xb9, 0x8e, 0xd5, 0xb1, 0xe8, 0x9f, 0x6b, 0xe4, 0x2f, 0x06, 0x5d, 0xfe, + 0x45, 0x02, 0xae, 0x6d, 0x5a, 0x36, 0xd6, 0x3b, 0xe6, 0x53, 0x3c, 0x90, 0x71, 0x1b, 0xdb, 0xd8, + 0x6c, 0x61, 0xb4, 0x04, 0x09, 0x57, 0x3d, 0x32, 0x70, 0x29, 0xb2, 0x14, 0x59, 0xc9, 0x6f, 0xc0, + 0x97, 0xa7, 0x8b, 0x33, 0x5f, 0x9f, 0x2e, 0x46, 0xeb, 0x55, 0x99, 0x21, 0xd0, 0x3d, 0x48, 0xd0, + 0x51, 0x4a, 0x51, 0x4a, 0x51, 0xe4, 0x14, 0xa9, 0x3a, 0x01, 0x12, 0x32, 0x8a, 0x45, 0x25, 0x88, + 0x9b, 0x6a, 0x17, 0x97, 0x62, 0x4b, 0x91, 0x95, 0xcc, 0x46, 0x9c, 0x50, 0xc9, 0x14, 0x82, 0x9e, + 0x42, 0xfa, 0x95, 0x6a, 0xe8, 0x9a, 0xee, 0x0e, 0x4a, 0xf1, 0xa5, 0xc8, 0x4a, 0x61, 0xfd, 0xdd, + 0xd5, 0xb1, 0x5b, 0xb5, 0x5a, 0xb1, 0x4c, 0xc7, 0xb5, 0x55, 0xdd, 0x74, 0x9f, 0x71, 0x06, 0x2e, + 0xc8, 0x13, 0x80, 0x1e, 0xc2, 0xac, 0x73, 0xac, 0xda, 0x58, 0x53, 0x7a, 0x36, 0x6e, 0xeb, 0x27, + 0x8a, 0x81, 0xcd, 0x52, 0x62, 0x29, 0xb2, 0x92, 0xe0, 0xa4, 0x45, 0x86, 0xde, 0xa3, 0xd8, 0x1d, + 0x6c, 0xa2, 0x03, 0xc8, 0x58, 0xa6, 0xa2, 0x61, 0x03, 0xbb, 0xb8, 0x94, 0xa4, 0xe3, 0x7f, 0x30, + 0x61, 0xfc, 0x31, 0x1b, 0xb4, 0x5a, 0x6e, 0xb9, 0xba, 0x65, 0x8a, 0x79, 0x58, 0x66, 0x95, 0x0a, + 0xe2, 0x52, 0xfb, 0x3d, 0x4d, 0x75, 0x71, 0x29, 0x75, 0x65, 0xa9, 0x87, 0x54, 0x10, 0xda, 0x81, + 0x44, 0x57, 0x75, 0x5b, 0xc7, 0xa5, 0x34, 0x95, 0xf8, 0xf0, 0x02, 0x12, 0x77, 0x09, 0x1f, 0x17, + 0xc8, 0x84, 0x2c, 0x3f, 0x87, 0x24, 0x1b, 0x07, 0xe5, 0x21, 0xd3, 0x68, 0x2a, 0xe5, 0xca, 0x41, + 0xbd, 0xd9, 0x90, 0x66, 0x50, 0x0e, 0xd2, 0x72, 0x6d, 0xff, 0x40, 0xae, 0x57, 0x0e, 0xa4, 0x08, + 0xf9, 0xda, 0xaf, 0x1d, 0x28, 0x8d, 0xc3, 0x9d, 0x1d, 0x29, 0x8a, 0x8a, 0x90, 0x25, 0x5f, 0xd5, + 0xda, 0x66, 0xf9, 0x70, 0xe7, 0x40, 0x8a, 0xa1, 0x2c, 0xa4, 0x2a, 0xe5, 0xfd, 0x4a, 0xb9, 0x5a, + 0x93, 0xe2, 0xf3, 0xf1, 0xdf, 0xfc, 0x7a, 0x61, 0x66, 0xf9, 0x21, 0x24, 0xe8, 0x70, 0x08, 0x20, + 0xb9, 0x5f, 0xdf, 0xdd, 0xdb, 0xa9, 0x49, 0x33, 0x28, 0x0d, 0xf1, 0x4d, 0x22, 0x22, 0x42, 0x38, + 0xf6, 0xca, 0xf2, 0x41, 0xbd, 0xbc, 0x23, 0x45, 0x19, 0xc7, 0xf7, 0xe3, 0xff, 0xf5, 0xab, 0xc5, + 0xc8, 0xf2, 0xbf, 0x26, 0x60, 0xce, 0x9f, 0xbb, 0x7f, 0xda, 0xa8, 0x02, 0x45, 0xcb, 0xd6, 0x3b, + 0xba, 0xa9, 0x50, 0x9d, 0x53, 0x74, 0x8d, 0xeb, 0xe3, 0xb7, 0xc8, 0x7a, 0xce, 0x4e, 0x17, 0xf3, + 0x4d, 0x8a, 0x3e, 0x20, 0xd8, 0x7a, 0x95, 0x2b, 0x68, 0xde, 0x0a, 0x00, 0x35, 0xf4, 0x14, 0x66, + 0xb9, 0x90, 0x96, 0x65, 0xf4, 0xbb, 0xa6, 0xa2, 0x6b, 0x4e, 0x29, 0xba, 0x14, 0x5b, 0xc9, 0x6f, + 0x2c, 0x9e, 0x9d, 0x2e, 0x16, 0x99, 0x88, 0x0a, 0xc5, 0xd5, 0xab, 0xce, 0xd7, 0xa7, 0x8b, 0x69, + 0xf1, 0x21, 0xf3, 0xe1, 0xf9, 0xb7, 0xe6, 0xa0, 0xe7, 0x70, 0xdd, 0x16, 0x7b, 0xab, 0x05, 0x05, + 0xc6, 0xa8, 0xc0, 0xbb, 0x67, 0xa7, 0x8b, 0xd7, 0xbc, 0xcd, 0xd7, 0xc6, 0x0b, 0xbd, 0x66, 0x0f, + 0x13, 0x68, 0x0e, 0x6a, 0x42, 0x00, 0xec, 0x2f, 0x37, 0x4e, 0x97, 0xbb, 0xc8, 0x97, 0x3b, 0xeb, + 0x8b, 0x0e, 0x2f, 0x79, 0xd6, 0x1e, 0x42, 0x68, 0x9e, 0xe1, 0x25, 0xce, 0x35, 0xbc, 0xe4, 0x55, + 0x0d, 0x2f, 0x64, 0x46, 0xa9, 0xff, 0x13, 0x33, 0x4a, 0x7f, 0xe3, 0x66, 0x94, 0xf9, 0x06, 0xcc, + 0x88, 0xe9, 0xee, 0x76, 0x3c, 0x0d, 0x52, 0x76, 0x3b, 0x9e, 0xce, 0x4a, 0xb9, 0xed, 0x78, 0x3a, + 0x27, 0xe5, 0xb7, 0xe3, 0xe9, 0xbc, 0x54, 0x58, 0xfe, 0xef, 0x08, 0xdc, 0x3e, 0x34, 0xf5, 0x97, + 0x7d, 0xfc, 0x5c, 0x77, 0x8f, 0xad, 0xbe, 0x4b, 0xfd, 0x62, 0x40, 0xb7, 0x1f, 0x42, 0x7a, 0x48, + 0xa9, 0xaf, 0xf3, 0x53, 0x4e, 0x85, 0xcf, 0x36, 0xe5, 0xf2, 0x13, 0x7d, 0x0c, 0x30, 0xa2, 0xc1, + 0xb7, 0xce, 0x4e, 0x17, 0x33, 0xe3, 0xd5, 0x2c, 0xd3, 0xf2, 0x94, 0xeb, 0x0f, 0xe3, 0x84, 0xb9, + 0x35, 0xff, 0x32, 0x01, 0x12, 0x9b, 0x44, 0x15, 0x3b, 0x2d, 0x5b, 0xef, 0xb9, 0x96, 0xed, 0xcd, + 0x20, 0x32, 0x32, 0x83, 0xfb, 0x10, 0xd5, 0x35, 0x1e, 0x44, 0x6e, 0xf0, 0x1d, 0x88, 0xd2, 0xc5, + 0xfb, 0x4b, 0x89, 0xea, 0x1a, 0x5a, 0x85, 0x38, 0x89, 0x74, 0x74, 0x0d, 0xd9, 0xf5, 0xf9, 0xe1, + 0x59, 0xe2, 0xee, 0x2a, 0x0b, 0x84, 0x07, 0x32, 0xa5, 0x43, 0x4b, 0x90, 0x36, 0xfb, 0x86, 0x41, + 0x83, 0x18, 0x59, 0x59, 0x5a, 0x4c, 0x57, 0x40, 0xd1, 0x1d, 0xc8, 0x69, 0xb8, 0xad, 0xf6, 0x0d, + 0x57, 0xc1, 0x27, 0x3d, 0x9b, 0x59, 0x8a, 0x9c, 0xe5, 0xb0, 0xda, 0x49, 0xcf, 0x46, 0xb7, 0x21, + 0x79, 0xac, 0x6b, 0x1a, 0x36, 0xa9, 0xa1, 0x08, 0x11, 0x1c, 0x86, 0xd6, 0x61, 0xb6, 0xef, 0x60, + 0x47, 0x71, 0xf0, 0xcb, 0x3e, 0xd1, 0x12, 0x7a, 0x2e, 0x40, 0xcf, 0x25, 0xc9, 0x0f, 0xaf, 0x48, + 0x08, 0xf6, 0x39, 0x9e, 0x1c, 0xc5, 0x1d, 0xc8, 0xb5, 0xac, 0x6e, 0xaf, 0xef, 0x62, 0x36, 0x68, + 0x96, 0x0d, 0xca, 0x61, 0x74, 0xd0, 0x75, 0x98, 0xb5, 0x5e, 0x9b, 0x43, 0x62, 0x73, 0x61, 0xb1, + 0x84, 0x20, 0x28, 0xf6, 0x53, 0x90, 0x7a, 0x1d, 0x45, 0x75, 0x5d, 0x5b, 0x3f, 0x22, 0xb2, 0xcd, + 0x7e, 0xb7, 0x94, 0x0f, 0xed, 0x69, 0x61, 0xef, 0x49, 0x59, 0xa0, 0x1b, 0xfd, 0xae, 0x5c, 0xe8, + 0x75, 0x82, 0xdf, 0x68, 0x13, 0xde, 0x52, 0x0d, 0x17, 0xdb, 0xc2, 0xa9, 0x91, 0x4d, 0x54, 0x74, + 0x53, 0xe9, 0xd9, 0x56, 0xc7, 0xc6, 0x8e, 0x53, 0x2a, 0x04, 0x76, 0xe0, 0x16, 0x25, 0x65, 0xe7, + 0x73, 0x30, 0xe8, 0xe1, 0xba, 0xb9, 0xc7, 0xc9, 0xd0, 0x4f, 0x00, 0x39, 0x03, 0xc7, 0xc5, 0x5d, + 0x21, 0xe8, 0x85, 0x6e, 0x6a, 0xa5, 0x22, 0xd5, 0xad, 0x77, 0x26, 0xe8, 0xd6, 0x3e, 0x65, 0x60, + 0xe2, 0x9e, 0xea, 0xa6, 0xc6, 0x47, 0x91, 0x9c, 0x21, 0x38, 0x5a, 0x80, 0xd4, 0x2b, 0xdd, 0x76, + 0xfb, 0xaa, 0x51, 0x92, 0x02, 0xd3, 0x11, 0x40, 0xcf, 0x26, 0xd3, 0x52, 0x66, 0x3b, 0x9e, 0xce, + 0x48, 0xb0, 0x1d, 0x4f, 0xa7, 0xa4, 0xf4, 0xf2, 0x9f, 0x45, 0xe1, 0x06, 0x13, 0xb3, 0xa9, 0x76, + 0x75, 0x63, 0x70, 0x55, 0xcd, 0x64, 0x52, 0xb8, 0x66, 0xd2, 0x23, 0xa5, 0x4b, 0x25, 0x6c, 0x2c, + 0x14, 0xd0, 0x23, 0x25, 0xb0, 0x06, 0x01, 0x0d, 0x99, 0x6e, 0xfc, 0x02, 0xa6, 0xdb, 0x84, 0x59, + 0xa1, 0xa4, 0x9e, 0x04, 0xaa, 0xa9, 0xf9, 0x8d, 0xbb, 0x7c, 0x4e, 0xc5, 0x2a, 0x23, 0x10, 0xec, + 0xe1, 0x08, 0xa6, 0x85, 0x90, 0x1a, 0x37, 0xd2, 0x7f, 0x8c, 0xc2, 0x5c, 0xdd, 0x74, 0xb1, 0x6d, + 0x60, 0xf5, 0x15, 0x0e, 0x6c, 0xc7, 0xe7, 0x90, 0x51, 0xcd, 0x16, 0x76, 0x5c, 0xcb, 0x76, 0x4a, + 0x91, 0xa5, 0xd8, 0x4a, 0x76, 0xfd, 0x3b, 0x13, 0x4e, 0x6d, 0x1c, 0xff, 0x6a, 0x99, 0x33, 0xf3, + 0x9d, 0xf4, 0x85, 0xcd, 0xff, 0x53, 0x04, 0xd2, 0x02, 0x7b, 0x09, 0xef, 0xf7, 0x5d, 0x48, 0xd3, + 0x8c, 0x52, 0xf1, 0xce, 0x64, 0x5e, 0x70, 0xf0, 0x94, 0x33, 0x98, 0x7d, 0xa6, 0x28, 0x6d, 0x5d, + 0x43, 0x95, 0x71, 0x89, 0x61, 0x8c, 0xf2, 0xdf, 0x14, 0xfb, 0xb7, 0x1f, 0x4e, 0x0d, 0x47, 0x72, + 0x45, 0xb6, 0x67, 0x7c, 0xe7, 0xfe, 0x21, 0x02, 0xb3, 0x84, 0x41, 0xc3, 0x5a, 0x60, 0xdb, 0xee, + 0x02, 0xe8, 0x8e, 0xe2, 0x30, 0x38, 0x5d, 0x91, 0xd0, 0xcd, 0x8c, 0xee, 0x70, 0x72, 0x4f, 0xd5, + 0xa2, 0x23, 0xaa, 0xf6, 0x11, 0xe4, 0x29, 0xaf, 0x72, 0xd4, 0x6f, 0xbd, 0xc0, 0xae, 0x43, 0x67, + 0x98, 0xd8, 0x98, 0xe3, 0x33, 0xcc, 0x51, 0x09, 0x1b, 0x0c, 0x27, 0xe7, 0x9c, 0xc0, 0xd7, 0x88, + 0xf6, 0xc5, 0x47, 0xb4, 0x8f, 0x4f, 0xfc, 0xef, 0xe2, 0x70, 0x63, 0x4f, 0xb5, 0x5d, 0x9d, 0xc4, + 0x46, 0xdd, 0xec, 0x04, 0x66, 0x7f, 0x0f, 0xb2, 0x66, 0x5f, 0x18, 0xac, 0xc3, 0x0f, 0x84, 0xcd, + 0x0f, 0xcc, 0x3e, 0x37, 0x40, 0x07, 0xed, 0x40, 0xdc, 0xd0, 0x1d, 0x97, 0x86, 0x9e, 0xec, 0xfa, + 0xfa, 0x04, 0xb5, 0x18, 0x3f, 0xc6, 0xea, 0x8e, 0xee, 0xb8, 0x62, 0xcd, 0x44, 0x0a, 0x6a, 0x42, + 0xc2, 0x56, 0xcd, 0x0e, 0xa6, 0xf6, 0x92, 0x5d, 0x7f, 0x74, 0x31, 0x71, 0x32, 0x61, 0x15, 0x01, + 0x99, 0xca, 0x41, 0x1f, 0xc2, 0x1c, 0x59, 0x85, 0xde, 0xed, 0x19, 0x7a, 0x4b, 0x77, 0xbd, 0xe5, + 0xc4, 0x03, 0xcb, 0x41, 0x66, 0xbf, 0x5b, 0xe7, 0x04, 0x7c, 0x59, 0xf3, 0x7f, 0x15, 0x81, 0x38, + 0x99, 0xdd, 0x39, 0xae, 0xe0, 0x06, 0x24, 0x5f, 0xa9, 0x46, 0x1f, 0xb3, 0xb0, 0x9b, 0x93, 0xf9, + 0x17, 0xfa, 0x29, 0x14, 0x9d, 0xfe, 0x51, 0x2f, 0x30, 0x45, 0x1e, 0x9f, 0xde, 0xbf, 0xd0, 0x6a, + 0xbc, 0x1a, 0x25, 0x2c, 0x8b, 0x1d, 0xdc, 0xfc, 0x4b, 0x48, 0xd0, 0xd5, 0x9e, 0x33, 0xbf, 0x3b, + 0x90, 0x73, 0x2d, 0x05, 0x9f, 0xb4, 0x8c, 0xbe, 0xa3, 0xbf, 0x62, 0x1a, 0x96, 0x93, 0xb3, 0xae, + 0x55, 0x13, 0x20, 0x74, 0x0f, 0x0a, 0x6d, 0xdb, 0xea, 0x2a, 0xba, 0x29, 0x88, 0x62, 0x94, 0x28, + 0x4f, 0xa0, 0x75, 0x01, 0x0c, 0xa9, 0xfa, 0x5f, 0xe6, 0xa0, 0x48, 0x0d, 0x6a, 0x2a, 0x77, 0x79, + 0x2f, 0xe0, 0x2e, 0xaf, 0x87, 0xdc, 0xa5, 0x67, 0x95, 0xc4, 0x5b, 0xde, 0x86, 0x64, 0x9f, 0xe6, + 0x45, 0x74, 0x7c, 0x2f, 0xa4, 0x32, 0xd8, 0x14, 0xda, 0x8c, 0xbe, 0x0d, 0x88, 0xb8, 0x10, 0xac, + 0x84, 0x08, 0x13, 0x94, 0x50, 0xa2, 0x98, 0xca, 0x44, 0xcf, 0x9b, 0xbc, 0x80, 0xe7, 0xdd, 0x02, + 0x09, 0x9f, 0xb8, 0xb6, 0x1a, 0xcc, 0xf2, 0x53, 0x94, 0x7f, 0x81, 0x84, 0xd3, 0x1a, 0xc1, 0x8d, + 0x17, 0x52, 0xc0, 0x01, 0x9c, 0x46, 0xb4, 0x64, 0x96, 0xcb, 0xd0, 0x74, 0x1b, 0xd3, 0xdc, 0xd4, + 0x29, 0xa5, 0x97, 0x62, 0xe7, 0xe4, 0xa0, 0x43, 0xdb, 0xbe, 0x5a, 0x15, 0x8c, 0xb2, 0xc4, 0x44, + 0x79, 0x00, 0x07, 0xed, 0x43, 0xb6, 0xcd, 0x52, 0x56, 0xe5, 0x05, 0x1e, 0xd0, 0xe4, 0x36, 0xbb, + 0xfe, 0x60, 0xfa, 0xe4, 0x76, 0x23, 0x49, 0x8e, 0xa0, 0x14, 0x91, 0xa1, 0xed, 0x21, 0xd1, 0x73, + 0xc8, 0x07, 0xea, 0x91, 0xa3, 0x01, 0xcd, 0x6b, 0x2e, 0x27, 0x36, 0xe7, 0x0b, 0xda, 0x18, 0xa0, + 0xcf, 0x00, 0x74, 0x2f, 0x70, 0xd0, 0xf4, 0x27, 0xbb, 0xfe, 0xde, 0x05, 0x22, 0x8c, 0xf0, 0x4b, + 0xbe, 0x10, 0xf4, 0x1c, 0x0a, 0xfe, 0x17, 0x9d, 0x6c, 0xee, 0xc2, 0x93, 0x65, 0x52, 0xf3, 0x01, + 0x39, 0x1b, 0xa4, 0xb8, 0x99, 0x23, 0x89, 0x99, 0xe5, 0xe8, 0x2e, 0x0e, 0xaa, 0x41, 0x9e, 0xaa, + 0xc1, 0xf2, 0xd9, 0xe9, 0x22, 0xaa, 0x08, 0xfc, 0x78, 0x55, 0x40, 0xad, 0x21, 0x3c, 0x53, 0xac, + 0x90, 0x02, 0x13, 0x89, 0x05, 0x5f, 0xb1, 0xf6, 0x7d, 0x15, 0x1e, 0x51, 0xac, 0x80, 0x7a, 0xb3, + 0x6a, 0x34, 0x17, 0xf2, 0x3d, 0xc5, 0xcb, 0xfb, 0x9e, 0x90, 0x20, 0x54, 0xe3, 0xc9, 0xb6, 0x44, + 0xd3, 0xb6, 0xf7, 0xa6, 0x54, 0x52, 0x92, 0x09, 0x0a, 0x97, 0x40, 0x73, 0xf0, 0x47, 0x80, 0x5a, + 0x36, 0x56, 0x5d, 0xac, 0x91, 0x64, 0x97, 0x3a, 0x5d, 0x63, 0x50, 0x9a, 0x0d, 0xd8, 0xfd, 0x2c, + 0xc7, 0xd7, 0x3c, 0x34, 0x7a, 0x0c, 0xa9, 0x57, 0xd8, 0x76, 0x74, 0xcb, 0x2c, 0x21, 0xea, 0x4c, + 0x16, 0x78, 0x6b, 0xe9, 0xc6, 0xd0, 0x78, 0xcf, 0x18, 0x95, 0x2c, 0xc8, 0xd1, 0x16, 0xe4, 0xb1, + 0xd9, 0xb2, 0x34, 0xdd, 0xec, 0xd0, 0xf4, 0xb5, 0x74, 0xcd, 0xcf, 0x93, 0xbe, 0x3e, 0x5d, 0xfc, + 0xd6, 0x10, 0x7f, 0x8d, 0xd3, 0x92, 0x69, 0xcb, 0x39, 0x1c, 0xf8, 0x42, 0x5b, 0x90, 0x12, 0xb1, + 0x7c, 0x8e, 0xee, 0xe9, 0xca, 0xa4, 0xcc, 0x75, 0x38, 0x13, 0x10, 0x19, 0x29, 0x67, 0x27, 0x65, + 0x88, 0xa6, 0x3b, 0x24, 0x87, 0xd1, 0x4a, 0xd7, 0x83, 0x65, 0x88, 0x80, 0xa2, 0x0a, 0x40, 0x07, + 0x5b, 0x0a, 0x6b, 0xd6, 0x95, 0x6e, 0xd0, 0xe1, 0x16, 0x02, 0xc3, 0x75, 0xb0, 0xb5, 0x2a, 0x5a, + 0x7a, 0xa4, 0x0a, 0x6b, 0xeb, 0x1d, 0x91, 0x5a, 0x74, 0xb0, 0xc5, 0x00, 0x68, 0x19, 0x32, 0x3d, + 0x1b, 0x6b, 0x7a, 0x8b, 0x14, 0xcc, 0x37, 0x03, 0xbe, 0xd9, 0x07, 0x2f, 0x2f, 0x40, 0xc6, 0xf3, + 0x1a, 0x28, 0x05, 0xb1, 0xf2, 0x7e, 0x85, 0xf5, 0x67, 0xaa, 0xb5, 0xfd, 0x8a, 0x14, 0x59, 0xbe, + 0x03, 0x71, 0xba, 0xf8, 0x2c, 0xa4, 0x36, 0x9b, 0xf2, 0xf3, 0xb2, 0x5c, 0x65, 0x3d, 0xa1, 0x7a, + 0xe3, 0x59, 0x4d, 0x3e, 0xa8, 0x55, 0x25, 0x11, 0x17, 0x4e, 0xe3, 0x80, 0xfc, 0x72, 0xf0, 0xc0, + 0xe2, 0xe5, 0x75, 0x07, 0x8a, 0x2d, 0x0f, 0xca, 0x0e, 0x20, 0xb2, 0x14, 0x5d, 0x29, 0xac, 0x3f, + 0x7e, 0x63, 0x49, 0x29, 0x64, 0x04, 0x41, 0xbe, 0x32, 0x15, 0x5a, 0x21, 0x68, 0x20, 0x8f, 0x8a, + 0x0e, 0xc5, 0x20, 0x19, 0x12, 0xad, 0x63, 0xdc, 0x7a, 0xc1, 0xa3, 0xf0, 0x87, 0x13, 0x06, 0xa6, + 0x29, 0x66, 0x40, 0x71, 0x2b, 0x84, 0xc7, 0x1f, 0x5a, 0xa4, 0x15, 0x54, 0x14, 0x92, 0xc3, 0xee, + 0x35, 0x7e, 0xae, 0xc7, 0x1a, 0xd7, 0xc6, 0x12, 0x1e, 0x2b, 0xe0, 0x5d, 0x1f, 0x43, 0xd1, 0xb4, + 0x5c, 0x85, 0x94, 0xa2, 0xdc, 0x0b, 0xd0, 0x02, 0x33, 0xbf, 0x21, 0x71, 0x5d, 0xf5, 0x6d, 0x3e, + 0x6f, 0x5a, 0x6e, 0xa3, 0x6f, 0x18, 0x0c, 0x80, 0xfe, 0x24, 0x02, 0x8b, 0x2c, 0x56, 0x2a, 0xaf, + 0x59, 0x63, 0x41, 0x61, 0x69, 0xb1, 0xbf, 0x47, 0xb4, 0x0d, 0x33, 0x39, 0xa1, 0x3a, 0xaf, 0x2b, + 0xc1, 0xa7, 0x7a, 0xbb, 0x7f, 0x0e, 0xcd, 0xf2, 0x01, 0x14, 0xc2, 0xc7, 0x84, 0x32, 0x90, 0xa8, + 0x6c, 0xd5, 0x2a, 0x4f, 0xa5, 0x19, 0x54, 0x84, 0xec, 0x66, 0x53, 0xae, 0xd5, 0x9f, 0x34, 0x94, + 0xa7, 0xb5, 0x1f, 0xb1, 0x36, 0x62, 0xa3, 0xe9, 0xb5, 0x11, 0x4b, 0x30, 0x77, 0xd8, 0xa8, 0x7f, + 0x76, 0x58, 0x53, 0x9e, 0xd7, 0x0f, 0xb6, 0x9a, 0x87, 0x07, 0x4a, 0xbd, 0x51, 0xad, 0x7d, 0x2e, + 0xc5, 0xbc, 0xd2, 0x2d, 0x21, 0x25, 0x97, 0x7f, 0x1b, 0x85, 0xc2, 0x9e, 0xad, 0x77, 0x55, 0x7b, + 0xf0, 0x14, 0x0f, 0xf6, 0x5f, 0xab, 0x3d, 0xf4, 0x29, 0xcc, 0x99, 0xf8, 0xb5, 0xd2, 0x63, 0x50, + 0xc5, 0x2b, 0x05, 0x22, 0xe3, 0xbb, 0xcf, 0xb3, 0x26, 0x7e, 0xcd, 0x25, 0xd4, 0x79, 0x25, 0xf0, + 0x6d, 0xc8, 0x5a, 0x86, 0xc6, 0x38, 0xb1, 0xe8, 0x9f, 0x64, 0x83, 0x4c, 0x60, 0x19, 0x5a, 0x9d, + 0xa1, 0x09, 0x35, 0x19, 0x4f, 0x50, 0xc7, 0xc6, 0x50, 0x9b, 0xf8, 0xb5, 0xa0, 0xfe, 0x14, 0xe6, + 0x88, 0xec, 0x91, 0xd9, 0xc5, 0x27, 0xcc, 0xce, 0x32, 0xb4, 0xa1, 0xd9, 0x7d, 0x04, 0x37, 0x46, + 0xd7, 0x37, 0xd2, 0xc0, 0xbb, 0x36, 0xb4, 0x2c, 0x92, 0xe3, 0x88, 0xf4, 0x3e, 0x02, 0x34, 0x18, + 0xf5, 0x5d, 0xd1, 0x56, 0xa4, 0xfb, 0xf6, 0x1d, 0xc8, 0x13, 0xb9, 0x7e, 0xed, 0x18, 0x99, 0xa0, + 0x67, 0x64, 0xb9, 0x22, 0xb2, 0x10, 0x2e, 0xb2, 0x1e, 0x9f, 0x2b, 0x3a, 0x89, 0xcb, 0x32, 0xbc, + 0x26, 0x26, 0x7a, 0x07, 0x72, 0xba, 0x49, 0x9c, 0x31, 0xef, 0x6d, 0x04, 0xdb, 0x4d, 0x59, 0x8e, + 0xa9, 0x9d, 0xf4, 0x6c, 0x3e, 0xe3, 0xdf, 0x46, 0xe1, 0xe6, 0xae, 0xea, 0x62, 0x5b, 0x57, 0x0d, + 0xfd, 0x8f, 0xb0, 0xf6, 0x4c, 0xc7, 0xaf, 0x65, 0xdc, 0xb6, 0xb1, 0x73, 0x8c, 0x3e, 0x87, 0xd9, + 0x91, 0xed, 0xa0, 0x53, 0xcf, 0xae, 0xdf, 0x9f, 0x2e, 0x1a, 0x89, 0x9c, 0x7a, 0x68, 0xc7, 0xd0, + 0x6e, 0xf8, 0x60, 0x59, 0x2d, 0x73, 0x31, 0x99, 0xc1, 0x93, 0x7f, 0x0c, 0x09, 0xd5, 0x51, 0xac, + 0x36, 0xf7, 0x38, 0x6f, 0x05, 0x04, 0xf5, 0x5d, 0xdd, 0x58, 0x3d, 0x36, 0x5a, 0xab, 0x07, 0xe2, + 0x82, 0x47, 0xf8, 0x2a, 0xd5, 0x69, 0xb6, 0xd1, 0xfb, 0x50, 0x74, 0x8e, 0xad, 0xbe, 0xa1, 0x29, + 0x47, 0x6a, 0xeb, 0x45, 0x5b, 0x37, 0x8c, 0x50, 0x9f, 0xaa, 0xc0, 0x90, 0x1b, 0x1c, 0xc7, 0xf7, + 0xec, 0xcf, 0x53, 0x80, 0xfc, 0xf9, 0xec, 0xf6, 0x5d, 0x95, 0x7a, 0xf3, 0x32, 0x24, 0xb9, 0x1b, + 0x61, 0x7b, 0xf4, 0xce, 0x44, 0x8f, 0x1b, 0xee, 0xcb, 0x6d, 0xcd, 0xc8, 0x9c, 0x11, 0xfd, 0x30, + 0x78, 0x9f, 0x33, 0xf5, 0x8e, 0x6c, 0xcd, 0x88, 0x8b, 0x9e, 0xa7, 0x90, 0x70, 0x5c, 0x12, 0x7d, + 0x62, 0x34, 0x67, 0x58, 0x9b, 0xc0, 0x3f, 0x3a, 0xf9, 0xd5, 0x7d, 0xc2, 0x26, 0x7c, 0x2e, 0x95, + 0x81, 0x9e, 0x43, 0xc6, 0x4b, 0x95, 0x79, 0x5f, 0xf2, 0xd1, 0xf4, 0x02, 0xbd, 0x28, 0x27, 0x62, + 0xa0, 0x27, 0x0b, 0x95, 0x21, 0xdb, 0xe5, 0x64, 0x7e, 0x23, 0x65, 0x89, 0x57, 0x2b, 0x20, 0x24, + 0xd0, 0xaa, 0x25, 0xf0, 0x25, 0x83, 0x60, 0xaa, 0xd3, 0x88, 0x6e, 0x5b, 0x86, 0x41, 0x0e, 0x8d, + 0x7a, 0x5a, 0x2f, 0xa2, 0x0b, 0x28, 0x7a, 0x4a, 0x6a, 0x0e, 0xcf, 0x1b, 0xa7, 0xe9, 0x7e, 0xbe, + 0x3b, 0x75, 0x0c, 0xdc, 0x9a, 0x91, 0x03, 0xec, 0xa8, 0x09, 0x85, 0x5e, 0xc8, 0x15, 0xf2, 0x04, + 0xff, 0xde, 0xa4, 0x2c, 0x2f, 0x44, 0xbc, 0x35, 0x23, 0x0f, 0xb1, 0xa3, 0x9f, 0x00, 0x6a, 0x8d, + 0xf8, 0x89, 0x12, 0xbc, 0x61, 0x96, 0xc3, 0x0c, 0x5b, 0x33, 0xf2, 0x18, 0x31, 0xe8, 0x0b, 0xb8, + 0xd9, 0x1d, 0x6f, 0xd2, 0x3c, 0xd5, 0x5f, 0x9d, 0x30, 0xc2, 0x04, 0x47, 0xb0, 0x35, 0x23, 0x4f, + 0x12, 0xb8, 0xfc, 0x29, 0x24, 0xa8, 0xea, 0x90, 0x84, 0xe5, 0xb0, 0xf1, 0xb4, 0xd1, 0x7c, 0xde, + 0x60, 0x01, 0xa8, 0x5a, 0xdb, 0xa9, 0x1d, 0xd4, 0x94, 0x66, 0x63, 0x87, 0x04, 0xa0, 0x5b, 0x70, + 0x9d, 0x03, 0xca, 0x8d, 0xaa, 0xf2, 0x5c, 0xae, 0x0b, 0x54, 0x74, 0x79, 0x25, 0x98, 0x11, 0xa5, + 0x21, 0xde, 0x68, 0x36, 0x6a, 0xd2, 0x0c, 0xcd, 0x8d, 0xaa, 0x55, 0x29, 0x42, 0x73, 0x23, 0xb9, + 0xb9, 0x27, 0x45, 0x99, 0xf5, 0x6d, 0xe4, 0x00, 0x34, 0x4f, 0xdd, 0xb6, 0xe3, 0xe9, 0xa4, 0x94, + 0x5a, 0xfe, 0xdb, 0x08, 0xa4, 0x89, 0x1b, 0xae, 0x9b, 0x6d, 0x0b, 0x3d, 0x82, 0x4c, 0x4f, 0xb5, + 0xb1, 0xe9, 0xfa, 0x9e, 0x56, 0x74, 0x0e, 0xd3, 0x7b, 0x14, 0xe1, 0x35, 0xb6, 0xd2, 0x8c, 0xb0, + 0x7e, 0x5e, 0x5b, 0x68, 0x13, 0x24, 0x2e, 0xce, 0x69, 0x1d, 0xe3, 0xae, 0x4a, 0xa4, 0xb2, 0xde, + 0xd5, 0x6d, 0xaf, 0xab, 0x4b, 0xf1, 0xfb, 0x14, 0xed, 0xc9, 0x2e, 0xf4, 0x82, 0x50, 0xd1, 0xf3, + 0xfb, 0xfb, 0x77, 0xa0, 0x38, 0x94, 0xf9, 0x9c, 0x53, 0xce, 0x2f, 0xd1, 0x72, 0x3e, 0xe6, 0xfb, + 0x7d, 0xaf, 0x9c, 0x8f, 0xf2, 0x4a, 0x3e, 0xb4, 0xd8, 0xf8, 0x94, 0x8b, 0x7d, 0xe4, 0x67, 0xf7, + 0xcc, 0xf8, 0x6e, 0xf1, 0x98, 0x32, 0x7b, 0x4e, 0x62, 0xbf, 0x07, 0xb3, 0x5d, 0x4b, 0xd3, 0xdb, + 0x24, 0x8f, 0x25, 0x96, 0xeb, 0xea, 0x5d, 0xcc, 0xb3, 0x9c, 0xa9, 0x1c, 0xae, 0x14, 0xe4, 0x26, + 0x48, 0xf4, 0x04, 0x52, 0xa2, 0x3d, 0x94, 0xa6, 0x11, 0x60, 0x5a, 0x8f, 0x29, 0xf2, 0x7b, 0xce, + 0x8d, 0x36, 0xa1, 0x60, 0xe2, 0x93, 0x60, 0x73, 0x36, 0x13, 0xf2, 0x29, 0xb9, 0x06, 0x3e, 0x19, + 0xdf, 0x99, 0xcd, 0x99, 0x3e, 0x46, 0x43, 0x9f, 0x41, 0x3e, 0x1c, 0xec, 0xe0, 0x12, 0xc1, 0x2e, + 0xd7, 0x0b, 0x46, 0xba, 0x4d, 0x48, 0x89, 0x28, 0x97, 0xbd, 0x44, 0x94, 0x13, 0xcc, 0x68, 0x83, + 0xa4, 0x10, 0x27, 0xae, 0x9f, 0xd5, 0xe4, 0xfc, 0xb2, 0xec, 0xec, 0x74, 0x31, 0x4b, 0x56, 0x38, + 0xa6, 0x05, 0x9b, 0x35, 0x3d, 0xb8, 0x86, 0xb6, 0x01, 0xbc, 0x27, 0x0c, 0x0e, 0xbd, 0x99, 0x98, + 0x5c, 0x9e, 0xef, 0x09, 0x42, 0x7f, 0x4a, 0x72, 0x80, 0x1b, 0xed, 0x42, 0x46, 0xb8, 0x63, 0x56, + 0x38, 0x4f, 0xf6, 0x5b, 0xa3, 0xc1, 0x41, 0x84, 0x04, 0x4f, 0x02, 0xa9, 0x19, 0x0c, 0xac, 0x3a, + 0x98, 0x57, 0xcf, 0x8f, 0xa7, 0xac, 0x19, 0x98, 0x71, 0x55, 0x8e, 0x55, 0xb3, 0x83, 0x77, 0x08, + 0xff, 0x46, 0xb4, 0x14, 0x91, 0x99, 0x28, 0xd4, 0x00, 0x89, 0x6e, 0x59, 0x30, 0xd6, 0x48, 0x74, + 0xd7, 0xde, 0x16, 0x86, 0x4b, 0x76, 0x6d, 0x62, 0xbc, 0xa1, 0x3a, 0xb5, 0xeb, 0xc7, 0x9c, 0x1f, + 0x40, 0xa1, 0x6d, 0xd9, 0x5d, 0xd5, 0x55, 0x84, 0xf1, 0xcc, 0xfa, 0x7d, 0xb6, 0xaf, 0x4f, 0x17, + 0xf3, 0x9b, 0x14, 0x2b, 0x0c, 0x27, 0xdf, 0x0e, 0x7e, 0xa2, 0x0d, 0x11, 0x9a, 0xaf, 0xd1, 0x48, + 0x7a, 0xff, 0x8d, 0x9b, 0x35, 0x26, 0x22, 0x37, 0x20, 0x49, 0xcb, 0x21, 0xa7, 0x34, 0x47, 0x77, + 0xfc, 0x92, 0xa5, 0x95, 0xcc, 0xa5, 0xa0, 0x1d, 0x28, 0x68, 0x04, 0x42, 0x6a, 0x75, 0xd6, 0xc1, + 0xbb, 0x4e, 0xe5, 0x2e, 0x4e, 0x90, 0x2b, 0x5c, 0xac, 0x68, 0xd4, 0x08, 0x66, 0xd6, 0xe5, 0x6b, + 0x42, 0xba, 0xad, 0x76, 0x75, 0x43, 0xc7, 0x4e, 0xe9, 0x06, 0x95, 0xf3, 0xfe, 0xb9, 0xf6, 0x3c, + 0x7c, 0x0b, 0x24, 0x42, 0xb8, 0x10, 0xe2, 0x99, 0x35, 0x05, 0x0c, 0xc8, 0xf1, 0xdd, 0x1c, 0x35, + 0x6b, 0x71, 0x0b, 0x14, 0xba, 0x11, 0xa2, 0x66, 0xcd, 0xbf, 0x34, 0x74, 0x17, 0xe0, 0x95, 0x8e, + 0x5f, 0x2b, 0x2f, 0xfb, 0xd8, 0x1e, 0x94, 0x4a, 0xc1, 0xc2, 0x9c, 0xc0, 0x3f, 0x23, 0x60, 0xf4, + 0x01, 0x64, 0x34, 0xdc, 0xc3, 0xa6, 0xe6, 0x34, 0xcd, 0xd2, 0x2d, 0x5a, 0x69, 0x5c, 0x3b, 0x3b, + 0x5d, 0xcc, 0x54, 0x05, 0x90, 0x7b, 0x51, 0x9f, 0x0a, 0x7d, 0x01, 0x39, 0xf6, 0x81, 0xb5, 0xa6, + 0xb9, 0x31, 0x28, 0xcd, 0xd3, 0x45, 0x3f, 0x9c, 0xf2, 0x50, 0xfc, 0xb6, 0x97, 0x77, 0xc3, 0x50, + 0x0d, 0x48, 0x93, 0x43, 0xb2, 0xd1, 0xff, 0x87, 0x9c, 0xd0, 0xe3, 0x6d, 0xeb, 0xc8, 0x29, 0x7d, + 0xeb, 0xdc, 0xf6, 0xff, 0xf0, 0x58, 0xbb, 0x3e, 0xab, 0xf0, 0x52, 0x41, 0x69, 0xe8, 0x73, 0xc8, + 0x7b, 0x17, 0x9d, 0x56, 0xcf, 0x75, 0x4a, 0xb7, 0xcf, 0xad, 0x5e, 0x47, 0xcc, 0x90, 0xf3, 0x36, + 0x7b, 0xf4, 0x66, 0x24, 0xf0, 0x85, 0xee, 0x40, 0x46, 0xb3, 0xad, 0x1e, 0x8b, 0x16, 0x6f, 0x2d, + 0x45, 0x56, 0x62, 0x5e, 0xef, 0xc5, 0xb6, 0x7a, 0x34, 0x0c, 0x28, 0x50, 0xb0, 0x71, 0xcf, 0x50, + 0x5b, 0xb8, 0x4b, 0xe2, 0x98, 0xd5, 0x2e, 0x2d, 0xd0, 0xd1, 0xd7, 0xa7, 0xde, 0x48, 0x8f, 0x59, + 0x28, 0x66, 0x40, 0x5e, 0xb3, 0x8d, 0x0e, 0x01, 0xd4, 0xbe, 0xa6, 0xbb, 0x4a, 0xd7, 0xd2, 0x70, + 0x69, 0xf1, 0xdc, 0x77, 0x07, 0xc3, 0xc2, 0xcb, 0x84, 0x71, 0xd7, 0xd2, 0xb0, 0x77, 0x97, 0x26, + 0x00, 0xe8, 0x03, 0xc8, 0xd2, 0xa5, 0x7d, 0x61, 0x1d, 0x11, 0xdd, 0x5c, 0xa2, 0x8b, 0x9b, 0xe5, + 0x67, 0x99, 0xa9, 0xda, 0x56, 0x6f, 0xdb, 0x3a, 0xa2, 0x1a, 0xc3, 0xff, 0xd4, 0x90, 0x03, 0xb9, + 0x4e, 0x4b, 0xf1, 0x1d, 0xe7, 0x1d, 0x7a, 0x8a, 0x1f, 0x4f, 0x39, 0x97, 0x27, 0x95, 0x31, 0xae, + 0xf4, 0x9a, 0x88, 0x00, 0x4f, 0x2a, 0x02, 0xe6, 0xc8, 0xd9, 0x4e, 0xcb, 0xfb, 0x20, 0x15, 0x21, + 0x6b, 0xf0, 0x71, 0x03, 0x58, 0x0e, 0x56, 0x84, 0x0c, 0xc3, 0x4c, 0xa0, 0x01, 0xbc, 0x13, 0xa8, + 0xd0, 0x6a, 0x8a, 0x9d, 0xd9, 0xdd, 0xe9, 0x23, 0x7c, 0x81, 0x71, 0x97, 0x9d, 0x66, 0x9b, 0x1e, + 0x6c, 0x0b, 0x72, 0x56, 0xdf, 0x3d, 0xb2, 0xfa, 0xa6, 0xa6, 0xb4, 0x5f, 0x38, 0xa5, 0xb7, 0xe9, + 0x6a, 0x2f, 0xd4, 0xb5, 0xf1, 0x56, 0xd7, 0xe4, 0x82, 0x36, 0x9f, 0x3a, 0x72, 0x56, 0x48, 0xdd, + 0x7c, 0xe1, 0xa0, 0x9f, 0x43, 0x56, 0x37, 0xfd, 0x31, 0xee, 0x5d, 0x7c, 0x0c, 0x24, 0x2a, 0x8f, + 0xba, 0xe9, 0x0d, 0x01, 0x5c, 0x26, 0x19, 0xe1, 0x3d, 0x28, 0x58, 0xed, 0xb6, 0xa1, 0x9b, 0x58, + 0xb1, 0xb1, 0xea, 0x58, 0x66, 0xe9, 0x7e, 0x60, 0x07, 0xf3, 0x1c, 0x27, 0x53, 0x14, 0x5a, 0x86, + 0x8c, 0x8b, 0xbb, 0x3d, 0xcb, 0x56, 0xed, 0x41, 0xe9, 0x9d, 0xe0, 0x15, 0xa4, 0x07, 0x46, 0x47, + 0x30, 0xdf, 0x37, 0xf1, 0x49, 0xcf, 0x72, 0xb0, 0xa6, 0x8c, 0xe4, 0x96, 0x2b, 0xd4, 0xc7, 0xdd, + 0xe3, 0x93, 0xba, 0x79, 0x28, 0x28, 0xc7, 0x26, 0x99, 0x37, 0xfb, 0x63, 0xd1, 0x1a, 0xfa, 0x10, + 0xe6, 0x74, 0x47, 0x09, 0x66, 0xed, 0x0a, 0xf1, 0x75, 0xa5, 0x77, 0x03, 0x53, 0x42, 0xba, 0x33, + 0x9c, 0xf1, 0xa3, 0x9f, 0x41, 0xd1, 0xb0, 0x5a, 0xaa, 0xa1, 0xbb, 0x03, 0xd1, 0x0d, 0x7d, 0x40, + 0x35, 0xe0, 0xbb, 0x53, 0x2a, 0xe9, 0x0e, 0xe7, 0x66, 0x3d, 0x51, 0xb9, 0x60, 0x84, 0xbe, 0xd1, + 0x2f, 0x22, 0xb0, 0xf4, 0x86, 0xd6, 0x99, 0x53, 0x7a, 0xef, 0xdc, 0xcb, 0xc8, 0x29, 0x7a, 0x67, + 0x6f, 0x9d, 0xd7, 0x3b, 0x73, 0xd0, 0x2a, 0x4d, 0xe9, 0x59, 0xa7, 0x5d, 0x51, 0x0d, 0x43, 0x39, + 0x1a, 0x94, 0xbe, 0x1d, 0x2c, 0xfb, 0x3d, 0x6c, 0xd9, 0x30, 0x36, 0x06, 0xf3, 0xbf, 0x89, 0xc0, + 0xec, 0x48, 0xaa, 0x81, 0x7e, 0x06, 0x29, 0xd3, 0xd2, 0x02, 0xb7, 0xe7, 0x35, 0x7e, 0x66, 0xc9, + 0x86, 0xa5, 0xb1, 0xcb, 0xf3, 0x47, 0x1d, 0xdd, 0x3d, 0xee, 0x1f, 0xad, 0xb6, 0xac, 0xee, 0x9a, + 0xb7, 0x18, 0xed, 0xc8, 0xff, 0x7b, 0xad, 0xf7, 0xa2, 0xb3, 0x46, 0xff, 0xea, 0x1d, 0xad, 0x32, + 0x36, 0x39, 0x49, 0xa4, 0xd6, 0x35, 0xf4, 0x3e, 0x14, 0xf1, 0x49, 0x4f, 0xb7, 0x03, 0xe9, 0x76, + 0x34, 0xe0, 0x40, 0x0b, 0x3e, 0x92, 0x58, 0x1b, 0xbf, 0xa7, 0xfc, 0x6d, 0x14, 0x8a, 0x43, 0xe1, + 0x9e, 0xd4, 0x17, 0xb4, 0x15, 0x14, 0xaa, 0x2f, 0x08, 0xe4, 0x9c, 0xaa, 0x27, 0xf8, 0x26, 0x29, + 0x76, 0xd5, 0xf7, 0x69, 0xe1, 0xfb, 0xbf, 0xc4, 0x05, 0xee, 0xff, 0x3e, 0x82, 0x1b, 0xba, 0xa3, + 0x98, 0x96, 0x29, 0xda, 0xb4, 0x5e, 0x45, 0x1f, 0x7c, 0x0b, 0x74, 0x4d, 0x77, 0x1a, 0x96, 0xc9, + 0x1a, 0xb4, 0xde, 0xaa, 0xfd, 0x67, 0x43, 0xa9, 0xd1, 0x67, 0x43, 0x5e, 0xa7, 0x33, 0x2e, 0x25, + 0xe6, 0x7f, 0x1d, 0x81, 0x4c, 0xf0, 0xd5, 0x6d, 0x34, 0xdc, 0xa1, 0x1b, 0xa9, 0xb9, 0x2e, 0xf9, + 0x0a, 0x22, 0xbc, 0x0b, 0xb1, 0xe9, 0x77, 0x81, 0x1f, 0xed, 0x1f, 0x43, 0x36, 0x10, 0xc7, 0x87, + 0xbb, 0x28, 0x91, 0x4b, 0x74, 0x51, 0xde, 0x86, 0x24, 0x0f, 0x5e, 0x4c, 0xb1, 0xf2, 0x9c, 0x3b, + 0xc1, 0x02, 0x57, 0xe2, 0x0b, 0x12, 0xb4, 0xf8, 0xe8, 0xff, 0x12, 0x83, 0x5c, 0x30, 0xce, 0x13, + 0x4f, 0xa7, 0x9b, 0x2d, 0x9b, 0x06, 0x59, 0x3a, 0x7a, 0xcc, 0x7b, 0x6c, 0x21, 0xc0, 0x24, 0xfa, + 0x77, 0x75, 0x53, 0xa1, 0x17, 0xf5, 0x21, 0xe5, 0x4d, 0x77, 0x75, 0xf3, 0x19, 0x81, 0x52, 0x12, + 0xf5, 0x84, 0x93, 0xc4, 0x42, 0x24, 0xea, 0x09, 0x23, 0x99, 0xa7, 0xa9, 0xb3, 0xed, 0xd2, 0xfa, + 0x36, 0x16, 0x48, 0x89, 0x6d, 0x37, 0xf8, 0x18, 0x29, 0x31, 0xe6, 0x31, 0x12, 0x32, 0xa1, 0xe0, + 0x67, 0x36, 0xaf, 0x4d, 0x6c, 0x53, 0xc5, 0xc9, 0xae, 0x97, 0x2f, 0x91, 0xda, 0xf8, 0x1f, 0x44, + 0x90, 0xf0, 0xff, 0x4e, 0x10, 0x38, 0xff, 0x37, 0x11, 0xc8, 0x87, 0xc8, 0x50, 0x1d, 0x8a, 0x74, + 0xe0, 0x91, 0xf6, 0xef, 0x1d, 0xef, 0xfd, 0x2c, 0x41, 0x8f, 0x2d, 0x4f, 0xf3, 0x56, 0x00, 0xa5, + 0xa1, 0x4f, 0xa1, 0xc0, 0x44, 0x79, 0xcf, 0x76, 0xc2, 0xea, 0x97, 0xa3, 0x92, 0xc2, 0x6f, 0x77, + 0x72, 0x96, 0x0f, 0xd3, 0x82, 0x2f, 0x0b, 0xe6, 0x4d, 0xc8, 0x06, 0x52, 0xa7, 0x29, 0xf4, 0xfe, + 0x7b, 0x10, 0xf7, 0xbc, 0xd0, 0xb4, 0x5d, 0x56, 0xd7, 0x77, 0x4d, 0xbf, 0x8a, 0xc0, 0xdc, 0xb8, + 0x14, 0x26, 0x64, 0x4f, 0x4c, 0x91, 0xa6, 0xb2, 0xa7, 0xbb, 0xc1, 0xd4, 0x92, 0x29, 0x97, 0xb8, + 0xed, 0xf6, 0x93, 0xcb, 0xfb, 0x9e, 0x8a, 0x33, 0xdd, 0x2a, 0x86, 0x54, 0x9c, 0x14, 0x8b, 0x41, + 0x25, 0xff, 0xb7, 0x18, 0x14, 0xc2, 0x01, 0x0c, 0x3d, 0x83, 0x64, 0xc7, 0xb0, 0x8e, 0x54, 0x83, + 0x77, 0x75, 0x7f, 0x70, 0xa9, 0x38, 0xb8, 0xfa, 0x84, 0xca, 0xd8, 0x9a, 0x91, 0xb9, 0x34, 0xe4, + 0xc0, 0xac, 0x8d, 0x3b, 0xba, 0x65, 0xaa, 0x24, 0xfc, 0xb0, 0x13, 0xe5, 0x3b, 0x5b, 0xbb, 0xdc, + 0x10, 0x32, 0x17, 0xb7, 0x31, 0xa0, 0x84, 0x5b, 0x33, 0x72, 0xd1, 0x0e, 0x83, 0x50, 0x17, 0x8a, + 0xc1, 0x41, 0x6d, 0xeb, 0x35, 0x6f, 0x99, 0x57, 0xae, 0x3a, 0xa4, 0x6c, 0xbd, 0xde, 0xa2, 0x89, + 0x77, 0x00, 0x30, 0xff, 0xff, 0xa0, 0x38, 0x34, 0x29, 0x72, 0x1e, 0x8c, 0x86, 0x47, 0xa3, 0x02, + 0x71, 0x4f, 0x8c, 0x88, 0x54, 0x91, 0x32, 0xc7, 0xf2, 0xf3, 0xb8, 0x07, 0xf9, 0xd0, 0x10, 0xa8, + 0x00, 0x51, 0x95, 0xbd, 0x8d, 0xca, 0xc8, 0x51, 0x55, 0x78, 0xc6, 0x02, 0x24, 0xd9, 0xfe, 0x06, + 0xf5, 0x7b, 0x03, 0x20, 0x2d, 0x92, 0x8f, 0xe5, 0x15, 0xc8, 0x78, 0x99, 0x3c, 0xca, 0x41, 0xba, + 0x5a, 0xdf, 0x2f, 0x6f, 0xec, 0xd4, 0xaa, 0xd2, 0x0c, 0xca, 0x43, 0x46, 0xae, 0x95, 0xab, 0xb4, + 0x27, 0x29, 0x45, 0xbe, 0x9f, 0xfe, 0xd3, 0x5f, 0x2d, 0x46, 0x78, 0x70, 0x48, 0x4a, 0xa9, 0xed, + 0x78, 0x1a, 0x49, 0xd7, 0x96, 0xff, 0x33, 0x03, 0xa8, 0xaa, 0xba, 0x2a, 0xd9, 0x94, 0x0b, 0x74, + 0xee, 0xa2, 0xe7, 0x58, 0x53, 0xb8, 0x1b, 0x13, 0xbb, 0x52, 0x37, 0x66, 0x6c, 0x6f, 0x2e, 0x7e, + 0x95, 0xde, 0xdc, 0xa5, 0x5a, 0x84, 0xa3, 0xfd, 0x84, 0xe4, 0x15, 0xfa, 0x09, 0xcf, 0x20, 0xc5, + 0xb2, 0x62, 0xf6, 0xe4, 0x67, 0x72, 0xbb, 0x63, 0xf4, 0x60, 0x78, 0x63, 0xc8, 0xa9, 0x99, 0xae, + 0x3d, 0xf0, 0x5e, 0x03, 0x30, 0x98, 0xdf, 0x89, 0x49, 0x5f, 0xbe, 0x13, 0x33, 0x5a, 0x13, 0x64, + 0x26, 0xd7, 0x04, 0x3f, 0x01, 0x6e, 0x17, 0x22, 0xa3, 0x86, 0x73, 0x2f, 0xc6, 0xc7, 0x2c, 0x87, + 0x19, 0x01, 0x4f, 0xa9, 0x73, 0x76, 0xe0, 0x6b, 0xfe, 0x00, 0x80, 0x27, 0xfd, 0x66, 0xdb, 0x9a, + 0xc2, 0x89, 0x2f, 0x40, 0x8a, 0x38, 0xc7, 0x1e, 0x66, 0xda, 0xe9, 0x05, 0x4c, 0x0e, 0xe4, 0x16, + 0xd5, 0x83, 0x5c, 0x70, 0x0b, 0x91, 0x04, 0xb1, 0x17, 0x78, 0xc0, 0x0d, 0x8f, 0xfc, 0x89, 0xb6, + 0x21, 0xe1, 0x87, 0xf5, 0xc9, 0xef, 0x53, 0x27, 0x9e, 0x0d, 0x99, 0xae, 0xcc, 0x44, 0x7c, 0x3f, + 0xfa, 0x38, 0x32, 0xff, 0x3f, 0x51, 0xc8, 0x05, 0x97, 0x89, 0x7e, 0x0a, 0x29, 0xb6, 0x50, 0xf1, + 0x04, 0xf6, 0x93, 0xcb, 0xed, 0x17, 0xff, 0x10, 0xeb, 0xe4, 0x32, 0x51, 0x03, 0xf2, 0x4e, 0xdf, + 0x7e, 0xa5, 0xbf, 0x52, 0x0d, 0xa5, 0x63, 0xa9, 0x06, 0x5d, 0x47, 0x61, 0xfd, 0xee, 0xa4, 0x37, + 0x26, 0x9c, 0xf6, 0x89, 0xa5, 0x1a, 0xa2, 0x85, 0xe2, 0x04, 0x60, 0xe8, 0x23, 0xef, 0x8a, 0x48, + 0xe1, 0x0e, 0x8e, 0xdd, 0xbc, 0x22, 0x6e, 0x37, 0x41, 0x27, 0x27, 0xba, 0xcc, 0x0c, 0x44, 0xc2, + 0x3a, 0xd7, 0x0f, 0x4c, 0xdf, 0x4e, 0x8a, 0x46, 0xbe, 0x17, 0xd6, 0x19, 0x5d, 0xcd, 0xec, 0x77, + 0xfd, 0xb0, 0x6e, 0xfb, 0x30, 0x6d, 0xfe, 0x43, 0x48, 0x72, 0x59, 0xf7, 0x43, 0x1e, 0x69, 0xdc, + 0xe0, 0x14, 0x1f, 0x74, 0x94, 0xbe, 0xcb, 0x5b, 0xfe, 0xe7, 0x2c, 0x14, 0x0e, 0x06, 0xbd, 0xa0, + 0x8b, 0xbb, 0xd4, 0x6d, 0xca, 0xb8, 0x3b, 0x93, 0xe8, 0xc5, 0xef, 0x4c, 0xce, 0xf9, 0xcd, 0x04, + 0x53, 0xf4, 0xf8, 0x39, 0x8a, 0x5e, 0x85, 0x38, 0x7d, 0xf5, 0x9e, 0xa0, 0xe7, 0x3a, 0xc9, 0xb3, + 0x86, 0x57, 0xbb, 0x1a, 0x78, 0xf8, 0x4e, 0xb9, 0xd1, 0x8f, 0x20, 0x47, 0x0f, 0xa5, 0x8b, 0xbb, + 0x47, 0xd8, 0x16, 0x0e, 0xed, 0xe1, 0x74, 0xd2, 0xc8, 0xe9, 0xec, 0x52, 0x46, 0xd1, 0x6e, 0xc1, + 0x1e, 0xc4, 0x41, 0x0f, 0x21, 0xa1, 0x1a, 0x3a, 0xf5, 0x6e, 0x6f, 0xfa, 0x35, 0x05, 0x23, 0x44, + 0x9f, 0x40, 0x5e, 0xb5, 0x6d, 0x75, 0xc0, 0x7f, 0x17, 0xa0, 0x51, 0x0f, 0xc6, 0x5d, 0xf3, 0xd9, + 0xe9, 0x62, 0xb6, 0x4c, 0x90, 0xf4, 0xa7, 0x00, 0x62, 0x23, 0xb2, 0xaa, 0x07, 0x0a, 0x5d, 0xfb, + 0x64, 0xae, 0x76, 0xed, 0x03, 0x57, 0x09, 0x2d, 0xa3, 0x51, 0x22, 0x7b, 0x85, 0x28, 0xf1, 0x73, + 0x98, 0x17, 0x4f, 0x1b, 0x89, 0x40, 0xff, 0x6a, 0x30, 0xf0, 0x8b, 0x8d, 0xe5, 0xb3, 0xd3, 0xc5, + 0x92, 0xec, 0x53, 0xf9, 0xcb, 0x65, 0x45, 0x17, 0xd9, 0xa9, 0x92, 0x3d, 0x16, 0xaf, 0x05, 0xe2, + 0x45, 0xfe, 0xf2, 0xf1, 0x22, 0x1c, 0xec, 0x0b, 0x57, 0x0a, 0xf6, 0xa3, 0xb1, 0xa7, 0x38, 0x39, + 0xf6, 0x3c, 0x1f, 0x8e, 0x3d, 0xd2, 0xf9, 0xbd, 0xd5, 0xb0, 0x02, 0x9f, 0x13, 0x77, 0x7e, 0x19, + 0x05, 0xf0, 0xf5, 0x1b, 0x7d, 0x0f, 0x6e, 0xf6, 0x8e, 0x07, 0x8e, 0xde, 0x52, 0x0d, 0xc5, 0xc6, + 0x3d, 0x1b, 0x3b, 0xd8, 0x64, 0xe9, 0x3d, 0x75, 0x1a, 0x39, 0xf9, 0x86, 0x40, 0xcb, 0x21, 0x2c, + 0xfa, 0x18, 0x6e, 0x18, 0x56, 0x67, 0x1c, 0x5f, 0xb0, 0x29, 0x71, 0x9d, 0xd3, 0x0c, 0x31, 0xab, + 0x00, 0x2d, 0xb5, 0xa7, 0x1e, 0xe9, 0x86, 0xdf, 0xa7, 0xf8, 0xf8, 0xa2, 0xb6, 0xb9, 0x5a, 0xf1, + 0x44, 0x88, 0xb7, 0x25, 0xbe, 0xd0, 0xe5, 0xb7, 0x01, 0x7c, 0x3c, 0xbd, 0x95, 0xde, 0xd9, 0xf1, + 0xb3, 0x46, 0x7e, 0xbf, 0xcd, 0xa3, 0x66, 0x73, 0x28, 0x84, 0x8d, 0xc6, 0x84, 0xc8, 0x94, 0x31, + 0x81, 0xdf, 0x16, 0x7f, 0x00, 0x71, 0xfa, 0x93, 0x9b, 0x34, 0xc4, 0x6b, 0x8d, 0xc3, 0x5d, 0x69, + 0x06, 0x65, 0x20, 0x51, 0xde, 0xa9, 0x97, 0xf7, 0xa5, 0x08, 0x9a, 0x03, 0x69, 0xf7, 0x70, 0xe7, + 0xa0, 0x2e, 0xd7, 0x9e, 0xd4, 0x9b, 0x0d, 0x85, 0x12, 0x44, 0x03, 0xce, 0xfc, 0xaf, 0xe3, 0x20, + 0x31, 0x4f, 0x7a, 0x55, 0x77, 0x3e, 0xb9, 0x4d, 0xf4, 0xe6, 0x0b, 0xea, 0xb0, 0xe6, 0xc7, 0xbf, + 0xf9, 0x34, 0x37, 0xf1, 0x0d, 0xa5, 0xb9, 0xc9, 0x2b, 0xa4, 0xb9, 0xa9, 0x2b, 0x38, 0xb0, 0x3f, + 0x74, 0x3a, 0x1a, 0xd0, 0x90, 0x5f, 0x47, 0x01, 0x02, 0xba, 0xf1, 0xc3, 0xe0, 0xef, 0xcd, 0x27, + 0xdf, 0x54, 0x0f, 0xd5, 0x84, 0x5b, 0x33, 0xe2, 0xd7, 0xe8, 0x4f, 0x20, 0xad, 0xf1, 0x5c, 0x8c, + 0x67, 0x85, 0xef, 0x4e, 0x9d, 0xb2, 0x6d, 0xcd, 0xc8, 0x1e, 0x33, 0xfa, 0x38, 0xf4, 0x33, 0xc3, + 0x7b, 0x53, 0x19, 0xf4, 0x96, 0x78, 0xef, 0x5c, 0x86, 0x24, 0x4b, 0x3a, 0xb8, 0xb2, 0x4d, 0xfc, + 0xbd, 0xdb, 0x90, 0x69, 0x90, 0xda, 0x9c, 0x31, 0xf2, 0xfa, 0x31, 0x05, 0x89, 0xbe, 0xa9, 0x5b, + 0xe6, 0x03, 0x39, 0xf8, 0xd2, 0x56, 0x34, 0x39, 0x89, 0x07, 0xa0, 0x7f, 0xab, 0x2e, 0xd6, 0xd8, + 0x93, 0x97, 0x43, 0xf3, 0x95, 0x07, 0x88, 0xa0, 0x02, 0x00, 0xc7, 0xeb, 0x66, 0x47, 0x8a, 0xd2, + 0xaa, 0x93, 0xe4, 0xd8, 0xe4, 0x2b, 0xf6, 0xe0, 0x13, 0x90, 0x86, 0x7f, 0x70, 0x17, 0x78, 0xfc, + 0x32, 0x0b, 0xf9, 0xdd, 0x67, 0x95, 0xca, 0x41, 0x7d, 0xb7, 0xb6, 0x7f, 0x50, 0xde, 0xdd, 0x63, + 0x4f, 0x38, 0x0f, 0x48, 0xc9, 0xda, 0xac, 0x57, 0xa5, 0xe8, 0x83, 0x4f, 0xa0, 0x38, 0xa4, 0x10, + 0x08, 0x20, 0xb9, 0x77, 0xb8, 0xb1, 0x53, 0xaf, 0x8c, 0x7d, 0x3c, 0x83, 0xb2, 0x90, 0x6a, 0x6e, + 0x6e, 0xee, 0xd4, 0x1b, 0x35, 0x29, 0xf6, 0xe0, 0x3b, 0x90, 0x0b, 0x26, 0xb4, 0x48, 0x82, 0xdc, + 0x8f, 0x9b, 0x8d, 0x9a, 0xb2, 0x59, 0xae, 0xef, 0x1c, 0xca, 0x64, 0x06, 0x08, 0x0a, 0xdc, 0xaf, + 0x08, 0x58, 0x64, 0x63, 0xe5, 0xcb, 0xff, 0x58, 0x98, 0xf9, 0xf2, 0x6c, 0x21, 0xf2, 0xbb, 0xb3, + 0x85, 0xc8, 0xef, 0xcf, 0x16, 0x22, 0xff, 0x7e, 0xb6, 0x10, 0xf9, 0x8b, 0xaf, 0x16, 0x66, 0x7e, + 0xf7, 0xd5, 0xc2, 0xcc, 0xef, 0xbf, 0x5a, 0x98, 0xf9, 0x71, 0x92, 0xfd, 0x4b, 0x09, 0xff, 0x1b, + 0x00, 0x00, 0xff, 0xff, 0xb8, 0x20, 0x9b, 0x8b, 0x94, 0x41, 0x00, 0x00, } diff --git a/pkg/sql/catalog/descpb/structured.proto b/pkg/sql/catalog/descpb/structured.proto index 4d9b14c68f34..f6126cc9e9a2 100644 --- a/pkg/sql/catalog/descpb/structured.proto +++ b/pkg/sql/catalog/descpb/structured.proto @@ -1093,6 +1093,8 @@ message TableDescriptor { } message RegionalByRow { option (gogoproto.equal) = true; + // As is set if the table has a REGIONAL BY ROW AS ... set to a specific column. + optional string as = 1; } message Global { option (gogoproto.equal) = true; diff --git a/pkg/sql/catalog/resolver/resolver.go b/pkg/sql/catalog/resolver/resolver.go index ca24e0a42fd0..38e5a5316438 100644 --- a/pkg/sql/catalog/resolver/resolver.go +++ b/pkg/sql/catalog/resolver/resolver.go @@ -48,6 +48,8 @@ type SchemaResolver interface { CommonLookupFlags(required bool) tree.CommonLookupFlags ObjectLookupFlags(required bool, requireMutable bool) tree.ObjectLookupFlags LookupTableByID(ctx context.Context, id descpb.ID) (*tabledesc.Immutable, error) + + tree.TypeReferenceResolver } // ErrNoPrimaryKey is returned when resolving a table object and the diff --git a/pkg/sql/catalog/tabledesc/structured.go b/pkg/sql/catalog/tabledesc/structured.go index 109b25803fb9..1b00f14f1856 100644 --- a/pkg/sql/catalog/tabledesc/structured.go +++ b/pkg/sql/catalog/tabledesc/structured.go @@ -1686,6 +1686,11 @@ func FormatTableLocalityConfig(c *descpb.TableDescriptor_LocalityConfig, f *tree } case *descpb.TableDescriptor_LocalityConfig_RegionalByRow_: f.WriteString("REGIONAL BY ROW") + if v.RegionalByRow.As != nil { + f.WriteString(" AS ") + col := tree.Name(*v.RegionalByRow.As) + f.FormatNode(&col) + } default: return errors.Newf("unknown locality: %T", v) } diff --git a/pkg/sql/create_table.go b/pkg/sql/create_table.go index 094d8904a9ee..f977d64197e4 100644 --- a/pkg/sql/create_table.go +++ b/pkg/sql/create_table.go @@ -51,6 +51,7 @@ import ( "github.com/cockroachdb/cockroach/pkg/util/log/eventpb" "github.com/cockroachdb/errors" "github.com/lib/pq/oid" + "google.golang.org/protobuf/proto" ) type createTableNode struct { @@ -1366,15 +1367,63 @@ func NewTableDesc( ) } - // Check no PARTITION BY is set on any field. + // Check the table is multi-region enabled. + dbDesc, err := catalogkv.MustGetDatabaseDescByID(ctx, txn, evalCtx.Codec, parentID) + if err != nil { + return nil, err + } + if !dbDesc.IsMultiRegion() { + return nil, pgerror.Newf( + pgcode.InvalidTableDefinition, + "cannot set LOCALITY on a database that is not multi-region enabled", + ) + } + + regionalByRowCol := tree.RegionalByRowRegionDefaultColName + if n.Locality.RegionalByRowColumn != "" { + regionalByRowCol = n.Locality.RegionalByRowColumn + } + + // Check no PARTITION BY is set on the table. if n.PartitionByTable.ContainsPartitions() { return nil, pgerror.New( pgcode.FeatureNotSupported, "REGIONAL BY ROW on a TABLE containing PARTITION BY is not supported", ) } + + // Check PARTITION BY is not set on anything partitionable, and also check + // for the existence of the column to partition by. + regionalByRowColExists := false for _, def := range n.Defs { switch d := def.(type) { + case *tree.ColumnTableDef: + if d.Name == regionalByRowCol { + regionalByRowColExists = true + t, err := tree.ResolveType(ctx, d.Type, vt) + if err != nil { + return nil, errors.Wrap(err, "error resolving REGIONAL BY ROW column type") + } + if t.Oid() != typedesc.TypeIDToOID(dbDesc.RegionConfig.RegionEnumID) { + err = pgerror.Newf( + pgcode.InvalidTableDefinition, + "cannot use column %s which has type %s in REGIONAL BY ROW AS", + d.Name, + t.SQLString(), + ) + if t, terr := vt.ResolveTypeByOID( + ctx, + typedesc.TypeIDToOID(dbDesc.RegionConfig.RegionEnumID), + ); terr == nil { + err = errors.WithDetailf( + err, + "REGIONAL BY ROW AS must reference a column of type %s.", + t.Name(), + ) + } + return nil, err + } + } case *tree.IndexTableDef: if d.PartitionByIndex.ContainsPartitions() { return nil, pgerror.New( @@ -1391,43 +1440,44 @@ func NewTableDesc( } } } - if n.Locality.RegionalByRowColumn != "" { - return nil, unimplemented.New( - "REGIONAL BY ROW AS", - "REGIONAL BY ROW AS is not yet supported", - ) - } - // Check the table is multi-region enabled. - dbDesc, err := catalogkv.MustGetDatabaseDescByID(ctx, txn, evalCtx.Codec, parentID) - if err != nil { - return nil, err - } - if !dbDesc.IsMultiRegion() { + if n.Locality.RegionalByRowColumn == "" { + // Implicitly create REGIONAL BY ROW column if no AS ... was defined. + if regionalByRowColExists { + return nil, errors.WithHintf( + pgerror.Newf( + pgcode.InvalidTableDefinition, + `cannot specify %s column in REGIONAL BY ROW table as the column is implicitly created by the system`, + regionalByRowCol.String(), + ), + "Use LOCALITY REGIONAL BY ROW AS %s instead.", + regionalByRowCol.String(), + ) + } + oid := typedesc.TypeIDToOID(dbDesc.RegionConfig.RegionEnumID) + // TODO(#multiregion): set the column visibility to be hidden. + c := &tree.ColumnTableDef{ + Name: tree.RegionalByRowRegionDefaultColName, + Type: &tree.OIDTypeReference{OID: oid}, + } + c.Nullable.Nullability = tree.NotNull + c.DefaultExpr.Expr = &tree.CastExpr{ + Expr: &tree.FuncExpr{ + Func: tree.WrapFunction("gateway_region"), + }, + Type: &tree.OIDTypeReference{OID: oid}, + SyntaxMode: tree.CastShort, + } + n.Defs = append(n.Defs, c) + columnDefaultExprs = append(columnDefaultExprs, nil) + } else if !regionalByRowColExists { return nil, pgerror.Newf( - pgcode.InvalidTableDefinition, - "cannot set LOCALITY on a database that is not multi-region enabled", + pgcode.UndefinedColumn, + "column %s in REGIONAL BY ROW AS does not exist", + regionalByRowCol.String(), ) } - // Add implicit crdb_region column. - oid := typedesc.TypeIDToOID(dbDesc.RegionConfig.RegionEnumID) - // TODO(#multiregion): set the column visibility to be hidden. - c := &tree.ColumnTableDef{ - Name: tree.RegionalByRowRegionDefaultColName, - Type: &tree.OIDTypeReference{OID: oid}, - } - c.Nullable.Nullability = tree.NotNull - c.DefaultExpr.Expr = &tree.CastExpr{ - Expr: &tree.FuncExpr{ - Func: tree.WrapFunction("gateway_region"), - }, - Type: &tree.OIDTypeReference{OID: oid}, - SyntaxMode: tree.CastShort, - } - n.Defs = append(n.Defs, c) - columnDefaultExprs = append(columnDefaultExprs, nil) - // Construct the partitioning for the PARTITION ALL BY. listPartition := make([]tree.ListPartition, len(dbDesc.RegionConfig.Regions)) for i, region := range dbDesc.RegionConfig.Regions { @@ -1439,7 +1489,7 @@ func NewTableDesc( desc.PartitionAllBy = true partitionByAll = &tree.PartitionBy{ - Fields: tree.NameList{tree.RegionalByRowRegionDefaultColName}, + Fields: tree.NameList{regionalByRowCol}, List: listPartition, } } @@ -2123,8 +2173,12 @@ func NewTableDesc( } desc.LocalityConfig.Locality = l case tree.LocalityLevelRow: + rbr := &descpb.TableDescriptor_LocalityConfig_RegionalByRow{} + if n.Locality.RegionalByRowColumn != "" { + rbr.As = proto.String(string(n.Locality.RegionalByRowColumn)) + } desc.LocalityConfig.Locality = &descpb.TableDescriptor_LocalityConfig_RegionalByRow_{ - RegionalByRow: &descpb.TableDescriptor_LocalityConfig_RegionalByRow{}, + RegionalByRow: rbr, } default: return nil, errors.Newf("unknown locality level: %v", n.Locality.LocalityLevel)