From 2bc5402bf35098e2a627eb77b8bdb049ecfb2032 Mon Sep 17 00:00:00 2001 From: Cao Kai Date: Tue, 31 Mar 2026 18:47:56 +0800 Subject: [PATCH 1/8] feat: support LOAD DATA INFILE with IGNORE to skip error rows (#23937) Add support for ignoring error rows during LOAD DATA INFILE by using the existing IGNORE keyword: LOAD DATA INFILE '...' IGNORE INTO TABLE t1 ... When IGNORE is specified, rows that fail CSV parsing, JSON parsing, or type conversion are skipped with a warning log instead of aborting the entire load operation. Partially appended column data is rolled back to maintain batch consistency. Changes: - Add IgnoreError flag to tree.ExParam and external.ExParamConst - Set IgnoreError in both bindExternalScan and buildLoad when DuplicateHandling is DuplicateKeyIgnore - Add ignore_error field to pipeline.proto ExternalScan message - Propagate IgnoreError through operator construction and remoterun serialization/deserialization - In CsvReader.makeBatchRows, skip error rows and rollback partial vector appends when IgnoreError is true --- pkg/pb/pipeline/pipeline.pb.go | 750 +++++++++--------- pkg/sql/colexec/external/reader_csv.go | 22 + pkg/sql/colexec/external/types.go | 1 + pkg/sql/compile/operator.go | 2 + pkg/sql/compile/remoterun.go | 2 + pkg/sql/parsers/tree/update.go | 1 + pkg/sql/plan/bind_load.go | 3 + pkg/sql/plan/build_load.go | 3 + proto/pipeline.proto | 1 + .../load_data/load_data_ignore_error.result | 15 + .../load_data/load_data_ignore_error.sql | 18 + .../resources/load_data/ignore_error.csv | 5 + 12 files changed, 469 insertions(+), 354 deletions(-) create mode 100644 test/distributed/cases/load_data/load_data_ignore_error.result create mode 100644 test/distributed/cases/load_data/load_data_ignore_error.sql create mode 100644 test/distributed/resources/load_data/ignore_error.csv diff --git a/pkg/pb/pipeline/pipeline.pb.go b/pkg/pb/pipeline/pipeline.pb.go index 499ced4ecab43..d7576ff4b2820 100644 --- a/pkg/pb/pipeline/pipeline.pb.go +++ b/pkg/pb/pipeline/pipeline.pb.go @@ -3061,6 +3061,7 @@ type ExternalScan struct { Filter *plan.Expr `protobuf:"bytes,8,opt,name=filter,proto3" json:"filter,omitempty"` StrictSqlMode bool `protobuf:"varint,9,opt,name=strict_sql_mode,json=strictSqlMode,proto3" json:"strict_sql_mode,omitempty"` ColumnListLen int32 `protobuf:"varint,10,opt,name=column_list_len,json=columnListLen,proto3" json:"column_list_len,omitempty"` + IgnoreError bool `protobuf:"varint,11,opt,name=ignore_error,json=ignoreError,proto3" json:"ignore_error,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -3169,6 +3170,13 @@ func (m *ExternalScan) GetColumnListLen() int32 { return 0 } +func (m *ExternalScan) GetIgnoreError() bool { + if m != nil { + return m.IgnoreError + } + return false +} + type StreamScan struct { TblDef *plan.TableDef `protobuf:"bytes,1,opt,name=tbl_def,json=tblDef,proto3" json:"tbl_def,omitempty"` Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"` @@ -5204,179 +5212,179 @@ func init() { func init() { proto.RegisterFile("pipeline.proto", fileDescriptor_7ac67a7adf3df9c7) } var fileDescriptor_7ac67a7adf3df9c7 = []byte{ - // 5801 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7b, 0xcb, 0x6f, 0x1c, 0xc9, - 0x79, 0xb8, 0xe6, 0x3d, 0xf3, 0xcd, 0x83, 0xc3, 0xd2, 0x6b, 0x56, 0xda, 0x5d, 0x51, 0x6d, 0x49, - 0x4b, 0x6b, 0x25, 0x4a, 0xcb, 0xb5, 0xec, 0xf5, 0xcf, 0x3f, 0x3f, 0x28, 0x52, 0xb2, 0x69, 0x93, - 0x14, 0x53, 0xa4, 0xb2, 0x88, 0x0f, 0x69, 0x34, 0xbb, 0x6b, 0x86, 0xbd, 0xec, 0xe9, 0x6a, 0xf5, - 0x43, 0x22, 0x75, 0x0a, 0x90, 0x00, 0x01, 0xf2, 0x0f, 0xe4, 0x10, 0x04, 0x30, 0x7c, 0x09, 0x1c, - 0x24, 0x48, 0x80, 0xfc, 0x13, 0x3e, 0xe6, 0x94, 0x63, 0x10, 0x38, 0xa7, 0x20, 0x41, 0x2e, 0x79, - 0xc0, 0x97, 0x00, 0xc1, 0xf7, 0x55, 0x55, 0x77, 0xcf, 0x70, 0x24, 0xef, 0x6e, 0x02, 0x5f, 0xe2, - 0xd3, 0x54, 0x7d, 0xdf, 0x57, 0x8f, 0xfe, 0xea, 0x7b, 0x57, 0x0d, 0x0c, 0x22, 0x3f, 0x12, 0x81, - 0x1f, 0x8a, 0xb5, 0x28, 0x96, 0xa9, 0x64, 0x6d, 0xd3, 0xbf, 0x76, 0x7f, 0xe2, 0xa7, 0xc7, 0xd9, - 0xd1, 0x9a, 0x2b, 0xa7, 0x0f, 0x26, 0x72, 0x22, 0x1f, 0x10, 0xc1, 0x51, 0x36, 0xa6, 0x1e, 0x75, - 0xa8, 0xa5, 0x06, 0x5e, 0x83, 0x40, 0xba, 0x27, 0xa6, 0x1d, 0x05, 0x4e, 0xa8, 0xdb, 0x4b, 0xa9, - 0x3f, 0x15, 0x49, 0xea, 0x4c, 0x23, 0x0d, 0xe8, 0xa4, 0xa7, 0x1a, 0x67, 0xfd, 0x49, 0x15, 0x5a, - 0xbb, 0x22, 0x49, 0x9c, 0x89, 0x60, 0x16, 0xd4, 0x12, 0xdf, 0x1b, 0x55, 0x56, 0x2a, 0xab, 0x83, - 0xf5, 0xe1, 0x5a, 0xbe, 0xad, 0x83, 0xd4, 0x49, 0xb3, 0x84, 0x23, 0x12, 0x69, 0xdc, 0xa9, 0x37, - 0xaa, 0xce, 0xd3, 0xec, 0x8a, 0xf4, 0x58, 0x7a, 0x1c, 0x91, 0x6c, 0x08, 0x35, 0x11, 0xc7, 0xa3, - 0xda, 0x4a, 0x65, 0xb5, 0xc7, 0xb1, 0xc9, 0x18, 0xd4, 0x3d, 0x27, 0x75, 0x46, 0x75, 0x02, 0x51, - 0x9b, 0xdd, 0x82, 0x41, 0x14, 0x4b, 0xd7, 0xf6, 0xc3, 0xb1, 0xb4, 0x09, 0xdb, 0x20, 0x6c, 0x0f, - 0xa1, 0xdb, 0xe1, 0x58, 0x6e, 0x21, 0xd5, 0x08, 0x5a, 0x4e, 0xe8, 0x04, 0x67, 0x89, 0x18, 0x35, - 0x09, 0x6d, 0xba, 0x6c, 0x00, 0x55, 0xdf, 0x1b, 0xb5, 0x56, 0x2a, 0xab, 0x75, 0x5e, 0xf5, 0x3d, - 0x5c, 0x23, 0xcb, 0x7c, 0x6f, 0xd4, 0x56, 0x6b, 0x60, 0x9b, 0x59, 0xd0, 0x0b, 0x85, 0xf0, 0xf6, - 0x64, 0xca, 0x45, 0x14, 0x9c, 0x8d, 0x3a, 0x2b, 0x95, 0xd5, 0x36, 0x9f, 0x81, 0xb1, 0x6b, 0xd0, - 0xf6, 0xc4, 0x51, 0x36, 0xd9, 0x4d, 0x26, 0x23, 0x58, 0xa9, 0xac, 0x76, 0x78, 0xde, 0xb7, 0x9e, - 0x43, 0x67, 0x53, 0x86, 0xa1, 0x70, 0x53, 0x19, 0xb3, 0x1b, 0xd0, 0x35, 0x9f, 0x6b, 0x6b, 0x36, - 0x35, 0x38, 0x18, 0xd0, 0xb6, 0xc7, 0x3e, 0x80, 0x25, 0xd7, 0x50, 0xdb, 0x7e, 0xe8, 0x89, 0x53, - 0xe2, 0x53, 0x83, 0x0f, 0x72, 0xf0, 0x36, 0x42, 0xad, 0x7f, 0xa9, 0x42, 0xeb, 0xe0, 0x38, 0x1b, - 0x8f, 0x03, 0xc1, 0x6e, 0x41, 0x5f, 0x37, 0x37, 0x65, 0xb0, 0xed, 0x9d, 0xea, 0x79, 0x67, 0x81, - 0x6c, 0x05, 0xba, 0x1a, 0x70, 0x78, 0x16, 0x09, 0x3d, 0x6d, 0x19, 0x34, 0x3b, 0xcf, 0xae, 0x1f, - 0x12, 0xfb, 0x6b, 0x7c, 0x16, 0x38, 0x47, 0xe5, 0x9c, 0xd2, 0x89, 0xcc, 0x52, 0x39, 0xb4, 0xda, - 0x46, 0xe0, 0xbf, 0x14, 0x5c, 0x4c, 0x36, 0xc3, 0x94, 0xce, 0xa5, 0xc1, 0xcb, 0x20, 0xb6, 0x0e, - 0x97, 0x13, 0x35, 0xc4, 0x8e, 0x9d, 0x70, 0x22, 0x12, 0x3b, 0xf3, 0xc3, 0xf4, 0xeb, 0x5f, 0x1b, - 0x35, 0x57, 0x6a, 0xab, 0x75, 0x7e, 0x51, 0x23, 0x39, 0xe1, 0x9e, 0x13, 0x8a, 0x3d, 0x84, 0x4b, - 0x73, 0x63, 0xd4, 0x90, 0xd6, 0x4a, 0x6d, 0xb5, 0xc6, 0xd9, 0xcc, 0x90, 0x6d, 0x1a, 0xf1, 0x04, - 0x96, 0xe3, 0x2c, 0x44, 0xe9, 0x7d, 0xea, 0x07, 0xa9, 0x88, 0x0f, 0x22, 0xe1, 0xd2, 0xf9, 0x76, - 0xd7, 0xaf, 0xae, 0x91, 0x80, 0xf3, 0x79, 0x34, 0x3f, 0x3f, 0xc2, 0xfa, 0x65, 0x15, 0xda, 0x5b, - 0x7e, 0x12, 0x39, 0xa9, 0x7b, 0xcc, 0xae, 0x42, 0x6b, 0x9c, 0x85, 0x6e, 0x71, 0x82, 0x4d, 0xec, - 0x6e, 0x7b, 0xec, 0xff, 0xc3, 0x52, 0x20, 0x5d, 0x27, 0xb0, 0xf3, 0xc3, 0x1a, 0x55, 0x57, 0x6a, - 0xab, 0xdd, 0xf5, 0x8b, 0x85, 0x94, 0xe7, 0xc2, 0xc0, 0x07, 0x44, 0x5b, 0x08, 0xc7, 0xb7, 0x61, - 0x18, 0x8b, 0xa9, 0x4c, 0x45, 0x69, 0x78, 0x8d, 0x86, 0xb3, 0x62, 0xf8, 0xa7, 0xb1, 0x13, 0xed, - 0x49, 0x4f, 0xf0, 0x25, 0x45, 0x5b, 0x0c, 0xff, 0xa8, 0xc4, 0x4f, 0x31, 0xb1, 0x7d, 0xef, 0xd4, - 0xa6, 0x05, 0x46, 0xf5, 0x95, 0xda, 0x6a, 0xa3, 0x60, 0x8e, 0x98, 0x6c, 0x7b, 0xa7, 0x3b, 0x88, - 0x61, 0x1f, 0xc3, 0x95, 0xf9, 0x21, 0x6a, 0xd6, 0x51, 0x83, 0xc6, 0x5c, 0x9c, 0x19, 0xc3, 0x09, - 0xc5, 0x6e, 0x42, 0xcf, 0x0c, 0x4a, 0x51, 0x90, 0x9a, 0xea, 0x68, 0x93, 0x92, 0x20, 0x5d, 0x85, - 0x96, 0x9f, 0xd8, 0x89, 0x1f, 0x9e, 0x90, 0x72, 0xb5, 0x79, 0xd3, 0x4f, 0x0e, 0xfc, 0xf0, 0x84, - 0xbd, 0x03, 0xed, 0x58, 0xb8, 0x0a, 0xd3, 0x26, 0x4c, 0x2b, 0x16, 0x2e, 0xa1, 0xae, 0x02, 0x36, - 0x6d, 0x37, 0x15, 0x5a, 0xc5, 0x9a, 0xb1, 0x70, 0x37, 0x53, 0x61, 0x25, 0xd0, 0xd8, 0x15, 0xf1, - 0x44, 0xa0, 0x96, 0xe1, 0xc0, 0x03, 0xd7, 0x09, 0x89, 0xef, 0x6d, 0x9e, 0xf7, 0x51, 0xc7, 0x23, - 0x27, 0x4e, 0x7d, 0x27, 0x20, 0xc1, 0x6e, 0x73, 0xd3, 0x65, 0xd7, 0xa1, 0x93, 0xa4, 0x4e, 0x9c, - 0xe2, 0xd7, 0x91, 0x40, 0x37, 0x78, 0x9b, 0x00, 0xa8, 0x13, 0x57, 0xa1, 0x25, 0x42, 0x8f, 0x50, - 0x75, 0x75, 0x92, 0x22, 0xf4, 0xb6, 0xbd, 0x53, 0xeb, 0x6f, 0x2a, 0xd0, 0xdf, 0xcd, 0x82, 0xd4, - 0xdf, 0x88, 0x27, 0x99, 0x98, 0x86, 0x29, 0xda, 0x86, 0x2d, 0x3f, 0x49, 0xf5, 0xca, 0xd4, 0x66, - 0xab, 0xd0, 0xf9, 0x7e, 0x2c, 0xb3, 0xe8, 0xc9, 0x69, 0x64, 0x4e, 0x1a, 0x94, 0x50, 0x21, 0x84, - 0x17, 0x48, 0x76, 0x0f, 0xba, 0xcf, 0x62, 0x4f, 0xc4, 0x8f, 0xcf, 0x88, 0xb6, 0x76, 0x8e, 0xb6, - 0x8c, 0x66, 0xef, 0x42, 0xe7, 0x40, 0x44, 0x4e, 0xec, 0xa0, 0x08, 0xd4, 0xc9, 0xa0, 0x14, 0x00, - 0xfc, 0x56, 0x22, 0xde, 0xf6, 0xb4, 0x5a, 0x99, 0xae, 0x35, 0x81, 0xce, 0xc6, 0x64, 0x12, 0x8b, - 0x89, 0x93, 0x92, 0x71, 0x93, 0x11, 0x6d, 0xb7, 0xc6, 0xab, 0x32, 0x22, 0x03, 0x8a, 0x1f, 0xa0, - 0xf8, 0x43, 0x6d, 0xf6, 0x3e, 0xd4, 0xc5, 0xe2, 0xfd, 0x10, 0x9c, 0x5d, 0x81, 0xa6, 0x2b, 0xc3, - 0xb1, 0x3f, 0xd1, 0x66, 0x57, 0xf7, 0xac, 0x3f, 0xaf, 0x41, 0x83, 0x3e, 0x0e, 0xd9, 0x8b, 0xa6, - 0xd0, 0x16, 0x2f, 0x9d, 0xc0, 0x9c, 0x0a, 0x02, 0x9e, 0xbc, 0x74, 0x02, 0xb6, 0x02, 0x0d, 0x9c, - 0x26, 0x59, 0xc0, 0x1b, 0x85, 0x60, 0x77, 0xa0, 0x81, 0x42, 0x94, 0xcc, 0xee, 0x00, 0x85, 0xe8, - 0x71, 0xfd, 0xe7, 0x7f, 0x7f, 0xe3, 0x02, 0x57, 0x68, 0xf6, 0x01, 0xd4, 0x9d, 0xc9, 0x24, 0x21, - 0x59, 0x9e, 0x51, 0xa7, 0xfc, 0x7b, 0x39, 0x11, 0xb0, 0x47, 0xd0, 0x51, 0xe7, 0x86, 0xd4, 0x0d, - 0xa2, 0xbe, 0x5a, 0x72, 0x31, 0xe5, 0x23, 0xe5, 0x05, 0x25, 0x72, 0xdc, 0x4f, 0xb4, 0x05, 0x23, - 0x89, 0x6e, 0xf3, 0x02, 0x80, 0x3e, 0x20, 0x8a, 0xc5, 0x46, 0x10, 0x48, 0xf7, 0xc0, 0x7f, 0x2d, - 0xb4, 0xc7, 0x98, 0x81, 0xb1, 0x3b, 0x30, 0xd8, 0x57, 0x22, 0xc7, 0x45, 0x92, 0x05, 0x69, 0xa2, - 0xbd, 0xc8, 0x1c, 0x94, 0xad, 0x01, 0x9b, 0x81, 0x1c, 0xd2, 0xe7, 0x77, 0x56, 0x6a, 0xab, 0x7d, - 0xbe, 0x00, 0xc3, 0xbe, 0x02, 0xfd, 0x09, 0x72, 0xda, 0x0f, 0x27, 0xf6, 0x38, 0x70, 0xd0, 0xc1, - 0xd4, 0xd0, 0x01, 0x19, 0xe0, 0xd3, 0xc0, 0x99, 0x90, 0x90, 0x47, 0x7e, 0x10, 0xd8, 0x53, 0x31, - 0x1d, 0x75, 0xe9, 0xc8, 0xdb, 0x04, 0xd8, 0x15, 0x53, 0xeb, 0xdf, 0xab, 0xd0, 0xdc, 0x0e, 0x13, - 0x11, 0xa7, 0xa8, 0x42, 0xce, 0x78, 0x2c, 0xdc, 0x54, 0x28, 0xd3, 0x55, 0xe7, 0x79, 0x1f, 0x59, - 0x70, 0x28, 0x3f, 0x8d, 0xfd, 0x54, 0x1c, 0x7c, 0xac, 0x85, 0xa4, 0x00, 0xb0, 0xbb, 0xb0, 0xec, - 0x78, 0x9e, 0x6d, 0xa8, 0xed, 0x58, 0xbe, 0x4a, 0x48, 0x9d, 0xda, 0x7c, 0xc9, 0xf1, 0xbc, 0x0d, - 0x0d, 0xe7, 0xf2, 0x55, 0xc2, 0x6e, 0x42, 0x2d, 0x16, 0x63, 0x12, 0x99, 0xee, 0xfa, 0x92, 0x3a, - 0xd2, 0x67, 0x47, 0x9f, 0x09, 0x37, 0xe5, 0x62, 0xcc, 0x11, 0xc7, 0x2e, 0x41, 0xc3, 0x49, 0xd3, - 0x58, 0x1d, 0x51, 0x87, 0xab, 0x0e, 0x5b, 0x83, 0x8b, 0xa4, 0xb6, 0xa9, 0x2f, 0x43, 0x3b, 0x75, - 0x8e, 0x02, 0xf4, 0x92, 0x89, 0x76, 0x08, 0xcb, 0x39, 0xea, 0x10, 0x31, 0xdb, 0x5e, 0x82, 0x2e, - 0x64, 0x9e, 0x3e, 0x74, 0xa6, 0x22, 0x21, 0x7f, 0xd0, 0xe1, 0x17, 0x67, 0x47, 0xec, 0x21, 0x0a, - 0xf9, 0x59, 0x8c, 0x41, 0xc5, 0x6f, 0x93, 0x0e, 0xf5, 0x72, 0x20, 0xda, 0x85, 0xcb, 0xd0, 0xf4, - 0x13, 0x5b, 0x84, 0x9e, 0xb6, 0x45, 0x0d, 0x3f, 0x79, 0x12, 0x7a, 0xec, 0x43, 0xe8, 0xa8, 0x55, - 0x3c, 0x31, 0x26, 0x47, 0xdf, 0x5d, 0x1f, 0x68, 0x89, 0x45, 0xf0, 0x96, 0x18, 0xf3, 0x76, 0xaa, - 0x5b, 0xd6, 0xef, 0x57, 0xa0, 0x4b, 0x02, 0xf6, 0x3c, 0xf2, 0x50, 0x1f, 0xbf, 0x02, 0xfd, 0x59, - 0xee, 0xa9, 0x03, 0xe8, 0x39, 0x65, 0xd6, 0x5d, 0x81, 0xe6, 0x86, 0x8b, 0xbb, 0xa0, 0x13, 0xe8, - 0x73, 0xdd, 0x63, 0xdf, 0x80, 0xa5, 0x8c, 0xa6, 0xb1, 0xdd, 0xf4, 0xd4, 0x0e, 0x50, 0x8f, 0x95, - 0xc6, 0x68, 0xf6, 0xaa, 0x35, 0x36, 0xd3, 0x53, 0xde, 0xcf, 0x4c, 0x73, 0xc7, 0x4f, 0x52, 0xeb, - 0x3d, 0x68, 0x6c, 0xc4, 0xb1, 0x73, 0x46, 0x1c, 0xc7, 0xc6, 0xa8, 0x42, 0xa6, 0x5d, 0x75, 0x2c, - 0x17, 0x6a, 0xbb, 0x4e, 0xc4, 0x6e, 0x43, 0x75, 0x1a, 0x11, 0xa6, 0xbb, 0x7e, 0xb9, 0xa4, 0x2e, - 0x4e, 0xb4, 0xb6, 0x1b, 0x3d, 0x09, 0xd3, 0xf8, 0x8c, 0x57, 0xa7, 0xd1, 0xb5, 0x47, 0xd0, 0xd2, - 0x5d, 0x0c, 0xd0, 0x4e, 0xc4, 0x19, 0x7d, 0x43, 0x87, 0x63, 0x13, 0x17, 0x78, 0xe9, 0x04, 0x99, - 0x89, 0x2c, 0x54, 0xe7, 0xff, 0x55, 0x3f, 0xa9, 0x58, 0xff, 0x51, 0x87, 0xf6, 0x96, 0x08, 0x04, - 0x7d, 0x89, 0x05, 0xbd, 0xb2, 0xb0, 0x18, 0x2e, 0xcc, 0x08, 0x90, 0x05, 0x3d, 0xe5, 0x6c, 0x68, - 0x94, 0xd0, 0xd2, 0x38, 0x03, 0x43, 0x2b, 0xb8, 0xfd, 0x38, 0x73, 0x4f, 0x44, 0x4a, 0x62, 0xd8, - 0xe7, 0xa6, 0x8b, 0x98, 0x3d, 0x8d, 0xa9, 0x2b, 0x8c, 0xee, 0xb2, 0x77, 0x01, 0x62, 0xf9, 0xca, - 0xf6, 0x95, 0xc5, 0x57, 0xc6, 0xb3, 0x1d, 0xcb, 0x57, 0xdb, 0x68, 0xf3, 0x7f, 0x2d, 0xd2, 0xf7, - 0x0d, 0x18, 0x95, 0xa4, 0x0f, 0x23, 0x39, 0xdb, 0x0f, 0xed, 0x23, 0x0c, 0x2b, 0xb4, 0x20, 0x16, - 0x73, 0x52, 0xa0, 0xb7, 0x1d, 0x3e, 0xa6, 0x98, 0x43, 0xeb, 0x54, 0xe7, 0x2d, 0x3a, 0xb5, 0x50, - 0x45, 0x61, 0xb1, 0x8a, 0x3e, 0x06, 0x38, 0x10, 0x93, 0xa9, 0x08, 0xd3, 0x5d, 0x27, 0x1a, 0x75, - 0xe9, 0xe0, 0xad, 0xe2, 0xe0, 0xcd, 0x69, 0xad, 0x15, 0x44, 0x4a, 0x0a, 0x4a, 0xa3, 0x30, 0x10, - 0x70, 0x9d, 0xd0, 0x4e, 0xe3, 0x2c, 0x74, 0x9d, 0x54, 0x8c, 0x7a, 0xb4, 0x54, 0xd7, 0x75, 0xc2, - 0x43, 0x0d, 0x2a, 0xe9, 0x51, 0xbf, 0xac, 0x47, 0x77, 0x60, 0x29, 0x8a, 0xfd, 0xa9, 0x13, 0x9f, - 0xd9, 0x27, 0xe2, 0x8c, 0x0e, 0x63, 0xa0, 0x42, 0x56, 0x0d, 0xfe, 0x91, 0x38, 0xdb, 0xf6, 0x4e, - 0xaf, 0x7d, 0x1b, 0x96, 0xe6, 0x36, 0xf0, 0x85, 0xe4, 0xee, 0x27, 0x35, 0xe8, 0xec, 0xc7, 0x42, - 0xdb, 0xbe, 0x1b, 0xd0, 0x4d, 0xdc, 0x63, 0x31, 0x75, 0xe8, 0x94, 0xf4, 0x0c, 0xa0, 0x40, 0x78, - 0x38, 0xb3, 0xda, 0x5d, 0x7d, 0xbb, 0x76, 0xe3, 0x3e, 0x54, 0x40, 0x81, 0xca, 0x84, 0xcd, 0xc2, - 0xa4, 0xd5, 0xcb, 0x26, 0x6d, 0x05, 0x7a, 0xc7, 0x4e, 0x62, 0x3b, 0x59, 0x2a, 0x6d, 0x57, 0x06, - 0x24, 0x74, 0x6d, 0x0e, 0xc7, 0x4e, 0xb2, 0x91, 0xa5, 0x72, 0x53, 0x06, 0xec, 0x3d, 0x00, 0x57, - 0x06, 0xb6, 0x1c, 0x8f, 0x13, 0x91, 0xea, 0x68, 0xaa, 0xe3, 0xca, 0xe0, 0x19, 0x01, 0x50, 0x2a, - 0x45, 0x92, 0xfa, 0x53, 0x47, 0x1f, 0xa9, 0xed, 0xca, 0x2c, 0x4c, 0xc9, 0x05, 0xd5, 0xf8, 0x72, - 0x8e, 0xe2, 0xf2, 0xd5, 0x26, 0x22, 0xd8, 0x43, 0x18, 0xb8, 0x72, 0x1a, 0xd9, 0x11, 0x72, 0x96, - 0x9c, 0xbb, 0x8a, 0x76, 0xcb, 0xce, 0xb7, 0x87, 0x14, 0xfb, 0x27, 0x42, 0x45, 0x1b, 0xeb, 0xb0, - 0xe4, 0x06, 0x59, 0x92, 0x8a, 0xd8, 0x3e, 0xd2, 0x43, 0x3a, 0xe7, 0x86, 0xf4, 0x35, 0x89, 0x8e, - 0x50, 0x2c, 0xe8, 0xfb, 0x89, 0x2d, 0x03, 0xcf, 0x56, 0xe6, 0x46, 0xcb, 0x59, 0xd7, 0x4f, 0x9e, - 0x05, 0x9e, 0x36, 0x78, 0x8a, 0x26, 0x14, 0xaf, 0x0c, 0x4d, 0xd7, 0xd0, 0xec, 0x89, 0x57, 0x8a, - 0xc6, 0xfa, 0xbb, 0x2a, 0xb4, 0xf6, 0x65, 0x92, 0x6e, 0x4d, 0x03, 0x23, 0xe2, 0x95, 0x2f, 0x2a, - 0xe2, 0xd5, 0xc5, 0x22, 0xbe, 0x40, 0xc8, 0x6a, 0x0b, 0x84, 0x8c, 0xad, 0xc2, 0xb0, 0x4c, 0x47, - 0xc2, 0xa1, 0x62, 0xae, 0x41, 0x41, 0x48, 0x02, 0x72, 0x1d, 0x83, 0x04, 0xdb, 0x53, 0x36, 0x49, - 0x1d, 0x64, 0xdb, 0x4f, 0xb4, 0x3d, 0x52, 0x48, 0x9f, 0x64, 0x4d, 0x47, 0x10, 0x6d, 0x3f, 0xd1, - 0xb2, 0xf7, 0x4d, 0x78, 0x27, 0x1f, 0x69, 0xbf, 0xf2, 0xd3, 0x63, 0x99, 0xa5, 0xf6, 0x98, 0xd2, - 0x8b, 0x44, 0x87, 0xc8, 0x57, 0xcc, 0x4c, 0x9f, 0x2a, 0xb4, 0x4a, 0x3e, 0x28, 0xa0, 0x19, 0x67, - 0x41, 0x60, 0xa7, 0xe2, 0x34, 0xd5, 0x47, 0x39, 0x52, 0xbc, 0xd1, 0x7c, 0x7b, 0x9a, 0x05, 0xc1, - 0xa1, 0x38, 0x4d, 0xd1, 0xf8, 0xb7, 0xc7, 0xba, 0x63, 0xfd, 0x71, 0x1d, 0x60, 0x47, 0xba, 0x27, - 0x87, 0x4e, 0x3c, 0x11, 0x29, 0x06, 0xde, 0xc6, 0xa2, 0x69, 0x8b, 0xdb, 0x4a, 0x95, 0x1d, 0x63, - 0xeb, 0x70, 0xc5, 0x7c, 0x3f, 0xca, 0x21, 0x26, 0x01, 0xca, 0x24, 0x69, 0x85, 0x62, 0x1a, 0xab, - 0xd2, 0x48, 0xb2, 0x47, 0xec, 0x93, 0x82, 0xb7, 0x38, 0x26, 0x3d, 0x8b, 0x88, 0xb7, 0x8b, 0x02, - 0xb8, 0x7e, 0x31, 0xfc, 0xf0, 0x2c, 0x62, 0x0f, 0xe1, 0x72, 0x2c, 0xc6, 0xb1, 0x48, 0x8e, 0xed, - 0x34, 0x29, 0x2f, 0xa6, 0xe2, 0xef, 0x65, 0x8d, 0x3c, 0x4c, 0xf2, 0xb5, 0x1e, 0xc2, 0x65, 0xc5, - 0xa9, 0xf9, 0xed, 0x29, 0xfb, 0xbd, 0xac, 0x90, 0xe5, 0xdd, 0xbd, 0x07, 0x54, 0xc6, 0x50, 0x36, - 0xd9, 0x44, 0x73, 0x01, 0x31, 0xe3, 0x28, 0x10, 0x18, 0xe8, 0x6c, 0x1e, 0x63, 0x8a, 0xb8, 0x25, - 0xc6, 0x9a, 0xf9, 0x05, 0x80, 0x59, 0x50, 0xdf, 0x95, 0x9e, 0x20, 0x56, 0x0f, 0xd6, 0x07, 0x6b, - 0x54, 0x10, 0x41, 0x4e, 0x22, 0x94, 0x13, 0x8e, 0x7d, 0x00, 0x34, 0x9d, 0x12, 0xbf, 0xf3, 0xba, - 0xd2, 0x46, 0x24, 0xc9, 0xe0, 0x43, 0xb8, 0x5c, 0xec, 0xc4, 0x76, 0x52, 0x3b, 0x3d, 0x16, 0x64, - 0x0e, 0x95, 0xba, 0x2c, 0xe7, 0x9b, 0xda, 0x48, 0x0f, 0x8f, 0x05, 0x9a, 0xc6, 0x55, 0x68, 0xc9, - 0xa3, 0xcf, 0x6c, 0x54, 0x84, 0xee, 0x62, 0x45, 0x68, 0xca, 0xa3, 0xcf, 0xb8, 0x18, 0xb3, 0xaf, - 0x97, 0x5d, 0xc9, 0x1c, 0x6b, 0x7a, 0xc4, 0x9a, 0x4b, 0x39, 0xbe, 0xc4, 0x1d, 0xeb, 0x13, 0x68, - 0xe2, 0xe7, 0x3c, 0x8b, 0xd8, 0x1a, 0xb4, 0x52, 0x12, 0x8f, 0x44, 0xbb, 0xfe, 0x4b, 0x85, 0x07, - 0x28, 0x64, 0x87, 0x1b, 0x22, 0x8b, 0xc3, 0x52, 0x6e, 0x4e, 0x9f, 0x87, 0xfe, 0x8b, 0x4c, 0xb0, - 0xef, 0xc2, 0x72, 0x14, 0x0b, 0x2d, 0xf6, 0x76, 0x76, 0x82, 0xe1, 0x89, 0xd6, 0xe0, 0x4b, 0x5a, - 0x4a, 0xf3, 0x11, 0x27, 0x28, 0xa1, 0x83, 0x68, 0xa6, 0x6f, 0xfd, 0x18, 0xae, 0xe6, 0x14, 0x07, - 0xc2, 0x95, 0xa1, 0xe7, 0xc4, 0x67, 0xe4, 0xf9, 0xe6, 0xe6, 0x4e, 0xbe, 0xc8, 0xdc, 0x07, 0x34, - 0xf7, 0x4f, 0x6b, 0x30, 0x78, 0x16, 0x6e, 0x65, 0x51, 0xe0, 0xa3, 0x37, 0xfa, 0x91, 0x72, 0x16, - 0xca, 0x48, 0x57, 0xca, 0x46, 0x7a, 0x15, 0x86, 0x7a, 0x15, 0xe4, 0xa3, 0x32, 0xb0, 0xba, 0xec, - 0xa2, 0xe0, 0x9b, 0x32, 0x50, 0xd6, 0xf5, 0xdb, 0x70, 0x39, 0xa3, 0x2f, 0x57, 0x94, 0xc7, 0xc2, - 0x3d, 0xb1, 0xdf, 0x90, 0x41, 0x31, 0x45, 0x88, 0x43, 0x91, 0x8c, 0xcc, 0xe6, 0x0d, 0xe8, 0x16, - 0xc3, 0x8d, 0xa7, 0x80, 0x9c, 0x90, 0x76, 0x22, 0x43, 0xdb, 0x33, 0x5b, 0xd6, 0x71, 0x0a, 0xfa, - 0x98, 0x81, 0x2c, 0xbe, 0x04, 0xcd, 0xd6, 0xef, 0xc0, 0xf2, 0x0c, 0x25, 0xed, 0xa2, 0x49, 0xbb, - 0xb8, 0x5f, 0x1c, 0xe3, 0xec, 0xe7, 0x97, 0xbb, 0xb8, 0x1f, 0xe5, 0xd3, 0x97, 0xe4, 0x2c, 0xd4, - 0x98, 0xb2, 0x49, 0x28, 0x63, 0xa1, 0x15, 0x04, 0x4d, 0x19, 0xf5, 0xaf, 0xed, 0xc1, 0xa5, 0x45, - 0xb3, 0x2c, 0x70, 0xcc, 0x2b, 0x65, 0xc7, 0x3c, 0x97, 0xfd, 0x15, 0x4e, 0xfa, 0xcf, 0x2a, 0xd0, - 0x7d, 0x9a, 0xbd, 0x7e, 0x7d, 0xa6, 0x0c, 0x1e, 0xeb, 0x41, 0x65, 0x8f, 0x66, 0xa9, 0xf2, 0xca, - 0x1e, 0xc6, 0xc3, 0xfb, 0x27, 0x68, 0x7c, 0x69, 0x92, 0x0e, 0xd7, 0x3d, 0xcc, 0x1b, 0xf7, 0x4f, - 0x0e, 0xdf, 0x62, 0x76, 0x14, 0x1a, 0x13, 0x9e, 0xc7, 0x99, 0x1f, 0x60, 0x7c, 0xa7, 0x2d, 0x4c, - 0xde, 0xc7, 0x4c, 0x6c, 0x7b, 0xac, 0xe4, 0xe5, 0x69, 0x2c, 0xa7, 0x4a, 0xa2, 0xb5, 0x5d, 0x5f, - 0x80, 0xb1, 0x7e, 0x59, 0x87, 0xf6, 0x0f, 0x9c, 0xe4, 0xf8, 0x87, 0xd2, 0x0f, 0xd9, 0x43, 0xe8, - 0x7c, 0x26, 0xfd, 0x50, 0x95, 0x40, 0x54, 0xb9, 0xf3, 0xa2, 0xda, 0xc4, 0x9e, 0xf4, 0xc4, 0x1a, - 0xd2, 0xe0, 0x6e, 0x78, 0xfb, 0x33, 0xdd, 0xd2, 0xee, 0x30, 0xf6, 0x27, 0xc7, 0xa9, 0x8d, 0x40, - 0xed, 0xb7, 0xba, 0x7e, 0xc2, 0x11, 0x46, 0xb3, 0xbe, 0x0b, 0x18, 0x19, 0x1c, 0xdb, 0x32, 0xb4, - 0xa3, 0x13, 0x9d, 0x5e, 0xb5, 0x11, 0xf2, 0x2c, 0xdc, 0x3f, 0x41, 0xbb, 0xe6, 0x27, 0xb6, 0x2e, - 0xb4, 0xd0, 0xe7, 0xcc, 0x64, 0xa9, 0xb7, 0x60, 0x80, 0xf1, 0x58, 0x72, 0xe2, 0x47, 0x76, 0x14, - 0xcb, 0x23, 0xf3, 0x2d, 0x18, 0xa5, 0x1d, 0x9c, 0xf8, 0xd1, 0x3e, 0xc2, 0x28, 0x0c, 0xd2, 0xe5, - 0x1b, 0x14, 0x2e, 0x15, 0x6f, 0x80, 0x06, 0x21, 0x5b, 0xa8, 0x46, 0x13, 0xa8, 0x1c, 0xa3, 0x45, - 0xa2, 0xd7, 0x8a, 0x45, 0x80, 0xc9, 0x04, 0xa2, 0x50, 0xec, 0x09, 0xd5, 0x56, 0x28, 0x57, 0x2a, - 0xd4, 0x57, 0x01, 0x02, 0x31, 0x46, 0x05, 0x0a, 0x3d, 0x95, 0xce, 0xce, 0xd5, 0x42, 0x10, 0xbb, - 0x89, 0x48, 0xf6, 0x21, 0x74, 0x15, 0x17, 0x14, 0x2d, 0x9c, 0xa3, 0x05, 0x42, 0x2b, 0xe2, 0xbb, - 0xd0, 0x0d, 0x65, 0x68, 0x8b, 0x17, 0x44, 0xad, 0x6d, 0xe2, 0xcc, 0xc4, 0xa1, 0x0c, 0x9f, 0xbc, - 0x40, 0x62, 0xf6, 0x40, 0xef, 0x41, 0x55, 0x14, 0x7a, 0x6f, 0xa8, 0x28, 0xd0, 0x4e, 0x54, 0x6e, - 0xfd, 0x91, 0xd9, 0x89, 0x1a, 0xd1, 0x7f, 0xc3, 0x08, 0xb5, 0x1f, 0x35, 0x64, 0x05, 0x7a, 0x74, - 0xee, 0x53, 0x27, 0xb2, 0x53, 0x67, 0xa2, 0xe3, 0x56, 0x40, 0xd8, 0xae, 0x13, 0x1d, 0x3a, 0x13, - 0xc6, 0xe1, 0x1d, 0x5d, 0x3f, 0xd4, 0x1e, 0xde, 0x3e, 0x42, 0x89, 0x53, 0x5c, 0x5b, 0x32, 0x15, - 0x89, 0xc5, 0x95, 0xc7, 0x2b, 0x33, 0x95, 0x47, 0x92, 0x54, 0xca, 0xe2, 0xfe, 0xad, 0x02, 0xed, - 0x1d, 0x29, 0xa3, 0x2f, 0x29, 0x7a, 0xe5, 0x23, 0xad, 0xbe, 0xf9, 0x48, 0x6b, 0xb3, 0x47, 0x3a, - 0xc7, 0xfa, 0xfa, 0xdb, 0x58, 0x3f, 0xc7, 0xc9, 0xc6, 0x97, 0xe0, 0x64, 0x73, 0x9e, 0x93, 0x56, - 0x0b, 0x1a, 0x07, 0x22, 0x7d, 0x16, 0x59, 0xff, 0xd4, 0x80, 0xce, 0x96, 0xf0, 0x32, 0xf5, 0xfd, - 0xe5, 0xaf, 0xa9, 0xbc, 0xf9, 0x6b, 0xaa, 0xb3, 0x5f, 0x83, 0x3e, 0xdb, 0x08, 0xe8, 0x02, 0x6b, - 0xdd, 0x36, 0xf2, 0x89, 0x92, 0x5c, 0x88, 0xa7, 0x2e, 0x38, 0xcd, 0x7c, 0x75, 0x2e, 0x9d, 0x6f, + // 5817 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7b, 0xcd, 0x6f, 0x1c, 0xc9, + 0x75, 0xb8, 0xe6, 0x7b, 0xe6, 0xcd, 0x07, 0x87, 0xa5, 0xaf, 0x59, 0x69, 0x77, 0x45, 0xb5, 0x25, + 0x2d, 0xad, 0x95, 0x28, 0x2d, 0xd7, 0xb2, 0xd7, 0x3f, 0xff, 0xfc, 0x41, 0x91, 0x92, 0x4d, 0x9b, + 0xa4, 0x98, 0x22, 0x95, 0x45, 0x7c, 0x48, 0xa3, 0xd9, 0x5d, 0x33, 0xec, 0x65, 0x4f, 0x57, 0xab, + 0x3f, 0x24, 0x52, 0xa7, 0x00, 0x09, 0x10, 0x20, 0xff, 0x40, 0x0e, 0xb9, 0x18, 0xbe, 0x04, 0x0e, + 0x12, 0x24, 0x40, 0xfe, 0x81, 0x1c, 0x7d, 0xcc, 0x29, 0xc7, 0x20, 0x70, 0x4e, 0x41, 0x82, 0x5c, + 0xf2, 0x01, 0x5f, 0x02, 0x04, 0xef, 0x55, 0x55, 0x77, 0xcf, 0x70, 0x24, 0xef, 0x6e, 0x02, 0x5f, + 0xe2, 0xd3, 0x54, 0xbd, 0xf7, 0xaa, 0xba, 0xea, 0xd5, 0xfb, 0xae, 0x1a, 0x18, 0x44, 0x7e, 0x24, + 0x02, 0x3f, 0x14, 0x6b, 0x51, 0x2c, 0x53, 0xc9, 0xda, 0xa6, 0x7f, 0xed, 0xfe, 0xc4, 0x4f, 0x8f, + 0xb3, 0xa3, 0x35, 0x57, 0x4e, 0x1f, 0x4c, 0xe4, 0x44, 0x3e, 0x20, 0x82, 0xa3, 0x6c, 0x4c, 0x3d, + 0xea, 0x50, 0x4b, 0x0d, 0xbc, 0x06, 0x81, 0x74, 0x4f, 0x4c, 0x3b, 0x0a, 0x9c, 0x50, 0xb7, 0x97, + 0x52, 0x7f, 0x2a, 0x92, 0xd4, 0x99, 0x46, 0x1a, 0xd0, 0x49, 0x4f, 0x35, 0xce, 0xfa, 0x93, 0x2a, + 0xb4, 0x76, 0x45, 0x92, 0x38, 0x13, 0xc1, 0x2c, 0xa8, 0x25, 0xbe, 0x37, 0xaa, 0xac, 0x54, 0x56, + 0x07, 0xeb, 0xc3, 0xb5, 0x7c, 0x59, 0x07, 0xa9, 0x93, 0x66, 0x09, 0x47, 0x24, 0xd2, 0xb8, 0x53, + 0x6f, 0x54, 0x9d, 0xa7, 0xd9, 0x15, 0xe9, 0xb1, 0xf4, 0x38, 0x22, 0xd9, 0x10, 0x6a, 0x22, 0x8e, + 0x47, 0xb5, 0x95, 0xca, 0x6a, 0x8f, 0x63, 0x93, 0x31, 0xa8, 0x7b, 0x4e, 0xea, 0x8c, 0xea, 0x04, + 0xa2, 0x36, 0xbb, 0x05, 0x83, 0x28, 0x96, 0xae, 0xed, 0x87, 0x63, 0x69, 0x13, 0xb6, 0x41, 0xd8, + 0x1e, 0x42, 0xb7, 0xc3, 0xb1, 0xdc, 0x42, 0xaa, 0x11, 0xb4, 0x9c, 0xd0, 0x09, 0xce, 0x12, 0x31, + 0x6a, 0x12, 0xda, 0x74, 0xd9, 0x00, 0xaa, 0xbe, 0x37, 0x6a, 0xad, 0x54, 0x56, 0xeb, 0xbc, 0xea, + 0x7b, 0xf8, 0x8d, 0x2c, 0xf3, 0xbd, 0x51, 0x5b, 0x7d, 0x03, 0xdb, 0xcc, 0x82, 0x5e, 0x28, 0x84, + 0xb7, 0x27, 0x53, 0x2e, 0xa2, 0xe0, 0x6c, 0xd4, 0x59, 0xa9, 0xac, 0xb6, 0xf9, 0x0c, 0x8c, 0x5d, + 0x83, 0xb6, 0x27, 0x8e, 0xb2, 0xc9, 0x6e, 0x32, 0x19, 0xc1, 0x4a, 0x65, 0xb5, 0xc3, 0xf3, 0xbe, + 0xf5, 0x1c, 0x3a, 0x9b, 0x32, 0x0c, 0x85, 0x9b, 0xca, 0x98, 0xdd, 0x80, 0xae, 0xd9, 0xae, 0xad, + 0xd9, 0xd4, 0xe0, 0x60, 0x40, 0xdb, 0x1e, 0xfb, 0x00, 0x96, 0x5c, 0x43, 0x6d, 0xfb, 0xa1, 0x27, + 0x4e, 0x89, 0x4f, 0x0d, 0x3e, 0xc8, 0xc1, 0xdb, 0x08, 0xb5, 0xfe, 0xa5, 0x0a, 0xad, 0x83, 0xe3, + 0x6c, 0x3c, 0x0e, 0x04, 0xbb, 0x05, 0x7d, 0xdd, 0xdc, 0x94, 0xc1, 0xb6, 0x77, 0xaa, 0xe7, 0x9d, + 0x05, 0xb2, 0x15, 0xe8, 0x6a, 0xc0, 0xe1, 0x59, 0x24, 0xf4, 0xb4, 0x65, 0xd0, 0xec, 0x3c, 0xbb, + 0x7e, 0x48, 0xec, 0xaf, 0xf1, 0x59, 0xe0, 0x1c, 0x95, 0x73, 0x4a, 0x27, 0x32, 0x4b, 0xe5, 0xd0, + 0xd7, 0x36, 0x02, 0xff, 0xa5, 0xe0, 0x62, 0xb2, 0x19, 0xa6, 0x74, 0x2e, 0x0d, 0x5e, 0x06, 0xb1, + 0x75, 0xb8, 0x9c, 0xa8, 0x21, 0x76, 0xec, 0x84, 0x13, 0x91, 0xd8, 0x99, 0x1f, 0xa6, 0x5f, 0xff, + 0xda, 0xa8, 0xb9, 0x52, 0x5b, 0xad, 0xf3, 0x8b, 0x1a, 0xc9, 0x09, 0xf7, 0x9c, 0x50, 0xec, 0x21, + 0x5c, 0x9a, 0x1b, 0xa3, 0x86, 0xb4, 0x56, 0x6a, 0xab, 0x35, 0xce, 0x66, 0x86, 0x6c, 0xd3, 0x88, + 0x27, 0xb0, 0x1c, 0x67, 0x21, 0x4a, 0xef, 0x53, 0x3f, 0x48, 0x45, 0x7c, 0x10, 0x09, 0x97, 0xce, + 0xb7, 0xbb, 0x7e, 0x75, 0x8d, 0x04, 0x9c, 0xcf, 0xa3, 0xf9, 0xf9, 0x11, 0xd6, 0x2f, 0xab, 0xd0, + 0xde, 0xf2, 0x93, 0xc8, 0x49, 0xdd, 0x63, 0x76, 0x15, 0x5a, 0xe3, 0x2c, 0x74, 0x8b, 0x13, 0x6c, + 0x62, 0x77, 0xdb, 0x63, 0xff, 0x1f, 0x96, 0x02, 0xe9, 0x3a, 0x81, 0x9d, 0x1f, 0xd6, 0xa8, 0xba, + 0x52, 0x5b, 0xed, 0xae, 0x5f, 0x2c, 0xa4, 0x3c, 0x17, 0x06, 0x3e, 0x20, 0xda, 0x42, 0x38, 0xbe, + 0x0d, 0xc3, 0x58, 0x4c, 0x65, 0x2a, 0x4a, 0xc3, 0x6b, 0x34, 0x9c, 0x15, 0xc3, 0x3f, 0x8d, 0x9d, + 0x68, 0x4f, 0x7a, 0x82, 0x2f, 0x29, 0xda, 0x62, 0xf8, 0x47, 0x25, 0x7e, 0x8a, 0x89, 0xed, 0x7b, + 0xa7, 0x36, 0x7d, 0x60, 0x54, 0x5f, 0xa9, 0xad, 0x36, 0x0a, 0xe6, 0x88, 0xc9, 0xb6, 0x77, 0xba, + 0x83, 0x18, 0xf6, 0x31, 0x5c, 0x99, 0x1f, 0xa2, 0x66, 0x1d, 0x35, 0x68, 0xcc, 0xc5, 0x99, 0x31, + 0x9c, 0x50, 0xec, 0x26, 0xf4, 0xcc, 0xa0, 0x14, 0x05, 0xa9, 0xa9, 0x8e, 0x36, 0x29, 0x09, 0xd2, + 0x55, 0x68, 0xf9, 0x89, 0x9d, 0xf8, 0xe1, 0x09, 0x29, 0x57, 0x9b, 0x37, 0xfd, 0xe4, 0xc0, 0x0f, + 0x4f, 0xd8, 0x3b, 0xd0, 0x8e, 0x85, 0xab, 0x30, 0x6d, 0xc2, 0xb4, 0x62, 0xe1, 0x12, 0xea, 0x2a, + 0x60, 0xd3, 0x76, 0x53, 0xa1, 0x55, 0xac, 0x19, 0x0b, 0x77, 0x33, 0x15, 0x56, 0x02, 0x8d, 0x5d, + 0x11, 0x4f, 0x04, 0x6a, 0x19, 0x0e, 0x3c, 0x70, 0x9d, 0x90, 0xf8, 0xde, 0xe6, 0x79, 0x1f, 0x75, + 0x3c, 0x72, 0xe2, 0xd4, 0x77, 0x02, 0x12, 0xec, 0x36, 0x37, 0x5d, 0x76, 0x1d, 0x3a, 0x49, 0xea, + 0xc4, 0x29, 0xee, 0x8e, 0x04, 0xba, 0xc1, 0xdb, 0x04, 0x40, 0x9d, 0xb8, 0x0a, 0x2d, 0x11, 0x7a, + 0x84, 0xaa, 0xab, 0x93, 0x14, 0xa1, 0xb7, 0xed, 0x9d, 0x5a, 0x7f, 0x5d, 0x81, 0xfe, 0x6e, 0x16, + 0xa4, 0xfe, 0x46, 0x3c, 0xc9, 0xc4, 0x34, 0x4c, 0xd1, 0x36, 0x6c, 0xf9, 0x49, 0xaa, 0xbf, 0x4c, + 0x6d, 0xb6, 0x0a, 0x9d, 0xef, 0xc7, 0x32, 0x8b, 0x9e, 0x9c, 0x46, 0xe6, 0xa4, 0x41, 0x09, 0x15, + 0x42, 0x78, 0x81, 0x64, 0xf7, 0xa0, 0xfb, 0x2c, 0xf6, 0x44, 0xfc, 0xf8, 0x8c, 0x68, 0x6b, 0xe7, + 0x68, 0xcb, 0x68, 0xf6, 0x2e, 0x74, 0x0e, 0x44, 0xe4, 0xc4, 0x0e, 0x8a, 0x40, 0x9d, 0x0c, 0x4a, + 0x01, 0xc0, 0xbd, 0x12, 0xf1, 0xb6, 0xa7, 0xd5, 0xca, 0x74, 0xad, 0x09, 0x74, 0x36, 0x26, 0x93, + 0x58, 0x4c, 0x9c, 0x94, 0x8c, 0x9b, 0x8c, 0x68, 0xb9, 0x35, 0x5e, 0x95, 0x11, 0x19, 0x50, 0xdc, + 0x80, 0xe2, 0x0f, 0xb5, 0xd9, 0xfb, 0x50, 0x17, 0x8b, 0xd7, 0x43, 0x70, 0x76, 0x05, 0x9a, 0xae, + 0x0c, 0xc7, 0xfe, 0x44, 0x9b, 0x5d, 0xdd, 0xb3, 0xfe, 0xac, 0x06, 0x0d, 0xda, 0x1c, 0xb2, 0x17, + 0x4d, 0xa1, 0x2d, 0x5e, 0x3a, 0x81, 0x39, 0x15, 0x04, 0x3c, 0x79, 0xe9, 0x04, 0x6c, 0x05, 0x1a, + 0x38, 0x4d, 0xb2, 0x80, 0x37, 0x0a, 0xc1, 0xee, 0x40, 0x03, 0x85, 0x28, 0x99, 0x5d, 0x01, 0x0a, + 0xd1, 0xe3, 0xfa, 0xcf, 0xff, 0xfe, 0xc6, 0x05, 0xae, 0xd0, 0xec, 0x03, 0xa8, 0x3b, 0x93, 0x49, + 0x42, 0xb2, 0x3c, 0xa3, 0x4e, 0xf9, 0x7e, 0x39, 0x11, 0xb0, 0x47, 0xd0, 0x51, 0xe7, 0x86, 0xd4, + 0x0d, 0xa2, 0xbe, 0x5a, 0x72, 0x31, 0xe5, 0x23, 0xe5, 0x05, 0x25, 0x72, 0xdc, 0x4f, 0xb4, 0x05, + 0x23, 0x89, 0x6e, 0xf3, 0x02, 0x80, 0x3e, 0x20, 0x8a, 0xc5, 0x46, 0x10, 0x48, 0xf7, 0xc0, 0x7f, + 0x2d, 0xb4, 0xc7, 0x98, 0x81, 0xb1, 0x3b, 0x30, 0xd8, 0x57, 0x22, 0xc7, 0x45, 0x92, 0x05, 0x69, + 0xa2, 0xbd, 0xc8, 0x1c, 0x94, 0xad, 0x01, 0x9b, 0x81, 0x1c, 0xd2, 0xf6, 0x3b, 0x2b, 0xb5, 0xd5, + 0x3e, 0x5f, 0x80, 0x61, 0x5f, 0x81, 0xfe, 0x04, 0x39, 0xed, 0x87, 0x13, 0x7b, 0x1c, 0x38, 0xe8, + 0x60, 0x6a, 0xe8, 0x80, 0x0c, 0xf0, 0x69, 0xe0, 0x4c, 0x48, 0xc8, 0x23, 0x3f, 0x08, 0xec, 0xa9, + 0x98, 0x8e, 0xba, 0x74, 0xe4, 0x6d, 0x02, 0xec, 0x8a, 0xa9, 0xf5, 0xef, 0x55, 0x68, 0x6e, 0x87, + 0x89, 0x88, 0x53, 0x54, 0x21, 0x67, 0x3c, 0x16, 0x6e, 0x2a, 0x94, 0xe9, 0xaa, 0xf3, 0xbc, 0x8f, + 0x2c, 0x38, 0x94, 0x9f, 0xc6, 0x7e, 0x2a, 0x0e, 0x3e, 0xd6, 0x42, 0x52, 0x00, 0xd8, 0x5d, 0x58, + 0x76, 0x3c, 0xcf, 0x36, 0xd4, 0x76, 0x2c, 0x5f, 0x25, 0xa4, 0x4e, 0x6d, 0xbe, 0xe4, 0x78, 0xde, + 0x86, 0x86, 0x73, 0xf9, 0x2a, 0x61, 0x37, 0xa1, 0x16, 0x8b, 0x31, 0x89, 0x4c, 0x77, 0x7d, 0x49, + 0x1d, 0xe9, 0xb3, 0xa3, 0xcf, 0x84, 0x9b, 0x72, 0x31, 0xe6, 0x88, 0x63, 0x97, 0xa0, 0xe1, 0xa4, + 0x69, 0xac, 0x8e, 0xa8, 0xc3, 0x55, 0x87, 0xad, 0xc1, 0x45, 0x52, 0xdb, 0xd4, 0x97, 0xa1, 0x9d, + 0x3a, 0x47, 0x01, 0x7a, 0xc9, 0x44, 0x3b, 0x84, 0xe5, 0x1c, 0x75, 0x88, 0x98, 0x6d, 0x2f, 0x41, + 0x17, 0x32, 0x4f, 0x1f, 0x3a, 0x53, 0x91, 0x90, 0x3f, 0xe8, 0xf0, 0x8b, 0xb3, 0x23, 0xf6, 0x10, + 0x85, 0xfc, 0x2c, 0xc6, 0xa0, 0xe2, 0xb7, 0x49, 0x87, 0x7a, 0x39, 0x10, 0xed, 0xc2, 0x65, 0x68, + 0xfa, 0x89, 0x2d, 0x42, 0x4f, 0xdb, 0xa2, 0x86, 0x9f, 0x3c, 0x09, 0x3d, 0xf6, 0x21, 0x74, 0xd4, + 0x57, 0x3c, 0x31, 0x26, 0x47, 0xdf, 0x5d, 0x1f, 0x68, 0x89, 0x45, 0xf0, 0x96, 0x18, 0xf3, 0x76, + 0xaa, 0x5b, 0xd6, 0xef, 0x57, 0xa0, 0x4b, 0x02, 0xf6, 0x3c, 0xf2, 0x50, 0x1f, 0xbf, 0x02, 0xfd, + 0x59, 0xee, 0xa9, 0x03, 0xe8, 0x39, 0x65, 0xd6, 0x5d, 0x81, 0xe6, 0x86, 0x8b, 0xab, 0xa0, 0x13, + 0xe8, 0x73, 0xdd, 0x63, 0xdf, 0x80, 0xa5, 0x8c, 0xa6, 0xb1, 0xdd, 0xf4, 0xd4, 0x0e, 0x50, 0x8f, + 0x95, 0xc6, 0x68, 0xf6, 0xaa, 0x6f, 0x6c, 0xa6, 0xa7, 0xbc, 0x9f, 0x99, 0xe6, 0x8e, 0x9f, 0xa4, + 0xd6, 0x7b, 0xd0, 0xd8, 0x88, 0x63, 0xe7, 0x8c, 0x38, 0x8e, 0x8d, 0x51, 0x85, 0x4c, 0xbb, 0xea, + 0x58, 0x2e, 0xd4, 0x76, 0x9d, 0x88, 0xdd, 0x86, 0xea, 0x34, 0x22, 0x4c, 0x77, 0xfd, 0x72, 0x49, + 0x5d, 0x9c, 0x68, 0x6d, 0x37, 0x7a, 0x12, 0xa6, 0xf1, 0x19, 0xaf, 0x4e, 0xa3, 0x6b, 0x8f, 0xa0, + 0xa5, 0xbb, 0x18, 0xa0, 0x9d, 0x88, 0x33, 0xda, 0x43, 0x87, 0x63, 0x13, 0x3f, 0xf0, 0xd2, 0x09, + 0x32, 0x13, 0x59, 0xa8, 0xce, 0xff, 0xab, 0x7e, 0x52, 0xb1, 0xfe, 0xa3, 0x0e, 0xed, 0x2d, 0x11, + 0x08, 0xda, 0x89, 0x05, 0xbd, 0xb2, 0xb0, 0x18, 0x2e, 0xcc, 0x08, 0x90, 0x05, 0x3d, 0xe5, 0x6c, + 0x68, 0x94, 0xd0, 0xd2, 0x38, 0x03, 0x43, 0x2b, 0xb8, 0xfd, 0x38, 0x73, 0x4f, 0x44, 0x4a, 0x62, + 0xd8, 0xe7, 0xa6, 0x8b, 0x98, 0x3d, 0x8d, 0xa9, 0x2b, 0x8c, 0xee, 0xb2, 0x77, 0x01, 0x62, 0xf9, + 0xca, 0xf6, 0x95, 0xc5, 0x57, 0xc6, 0xb3, 0x1d, 0xcb, 0x57, 0xdb, 0x68, 0xf3, 0x7f, 0x2d, 0xd2, + 0xf7, 0x0d, 0x18, 0x95, 0xa4, 0x0f, 0x23, 0x39, 0xdb, 0x0f, 0xed, 0x23, 0x0c, 0x2b, 0xb4, 0x20, + 0x16, 0x73, 0x52, 0xa0, 0xb7, 0x1d, 0x3e, 0xa6, 0x98, 0x43, 0xeb, 0x54, 0xe7, 0x2d, 0x3a, 0xb5, + 0x50, 0x45, 0x61, 0xb1, 0x8a, 0x3e, 0x06, 0x38, 0x10, 0x93, 0xa9, 0x08, 0xd3, 0x5d, 0x27, 0x1a, + 0x75, 0xe9, 0xe0, 0xad, 0xe2, 0xe0, 0xcd, 0x69, 0xad, 0x15, 0x44, 0x4a, 0x0a, 0x4a, 0xa3, 0x30, + 0x10, 0x70, 0x9d, 0xd0, 0x4e, 0xe3, 0x2c, 0x74, 0x9d, 0x54, 0x8c, 0x7a, 0xf4, 0xa9, 0xae, 0xeb, + 0x84, 0x87, 0x1a, 0x54, 0xd2, 0xa3, 0x7e, 0x59, 0x8f, 0xee, 0xc0, 0x52, 0x14, 0xfb, 0x53, 0x27, + 0x3e, 0xb3, 0x4f, 0xc4, 0x19, 0x1d, 0xc6, 0x40, 0x85, 0xac, 0x1a, 0xfc, 0x23, 0x71, 0xb6, 0xed, + 0x9d, 0x5e, 0xfb, 0x36, 0x2c, 0xcd, 0x2d, 0xe0, 0x0b, 0xc9, 0xdd, 0x4f, 0x6a, 0xd0, 0xd9, 0x8f, + 0x85, 0xb6, 0x7d, 0x37, 0xa0, 0x9b, 0xb8, 0xc7, 0x62, 0xea, 0xd0, 0x29, 0xe9, 0x19, 0x40, 0x81, + 0xf0, 0x70, 0x66, 0xb5, 0xbb, 0xfa, 0x76, 0xed, 0xc6, 0x75, 0xa8, 0x80, 0x02, 0x95, 0x09, 0x9b, + 0x85, 0x49, 0xab, 0x97, 0x4d, 0xda, 0x0a, 0xf4, 0x8e, 0x9d, 0xc4, 0x76, 0xb2, 0x54, 0xda, 0xae, + 0x0c, 0x48, 0xe8, 0xda, 0x1c, 0x8e, 0x9d, 0x64, 0x23, 0x4b, 0xe5, 0xa6, 0x0c, 0xd8, 0x7b, 0x00, + 0xae, 0x0c, 0x6c, 0x39, 0x1e, 0x27, 0x22, 0xd5, 0xd1, 0x54, 0xc7, 0x95, 0xc1, 0x33, 0x02, 0xa0, + 0x54, 0x8a, 0x24, 0xf5, 0xa7, 0x8e, 0x3e, 0x52, 0xdb, 0x95, 0x59, 0x98, 0x92, 0x0b, 0xaa, 0xf1, + 0xe5, 0x1c, 0xc5, 0xe5, 0xab, 0x4d, 0x44, 0xb0, 0x87, 0x30, 0x70, 0xe5, 0x34, 0xb2, 0x23, 0xe4, + 0x2c, 0x39, 0x77, 0x15, 0xed, 0x96, 0x9d, 0x6f, 0x0f, 0x29, 0xf6, 0x4f, 0x84, 0x8a, 0x36, 0xd6, + 0x61, 0xc9, 0x0d, 0xb2, 0x24, 0x15, 0xb1, 0x7d, 0xa4, 0x87, 0x74, 0xce, 0x0d, 0xe9, 0x6b, 0x12, + 0x1d, 0xa1, 0x58, 0xd0, 0xf7, 0x13, 0x5b, 0x06, 0x9e, 0xad, 0xcc, 0x8d, 0x96, 0xb3, 0xae, 0x9f, + 0x3c, 0x0b, 0x3c, 0x6d, 0xf0, 0x14, 0x4d, 0x28, 0x5e, 0x19, 0x9a, 0xae, 0xa1, 0xd9, 0x13, 0xaf, + 0x14, 0x8d, 0xf5, 0x77, 0x55, 0x68, 0xed, 0xcb, 0x24, 0xdd, 0x9a, 0x06, 0x46, 0xc4, 0x2b, 0x5f, + 0x54, 0xc4, 0xab, 0x8b, 0x45, 0x7c, 0x81, 0x90, 0xd5, 0x16, 0x08, 0x19, 0x5b, 0x85, 0x61, 0x99, + 0x8e, 0x84, 0x43, 0xc5, 0x5c, 0x83, 0x82, 0x90, 0x04, 0xe4, 0x3a, 0x06, 0x09, 0xb6, 0xa7, 0x6c, + 0x92, 0x3a, 0xc8, 0xb6, 0x9f, 0x68, 0x7b, 0xa4, 0x90, 0x3e, 0xc9, 0x9a, 0x8e, 0x20, 0xda, 0x7e, + 0xa2, 0x65, 0xef, 0x9b, 0xf0, 0x4e, 0x3e, 0xd2, 0x7e, 0xe5, 0xa7, 0xc7, 0x32, 0x4b, 0xed, 0x31, + 0xa5, 0x17, 0x89, 0x0e, 0x91, 0xaf, 0x98, 0x99, 0x3e, 0x55, 0x68, 0x95, 0x7c, 0x50, 0x40, 0x33, + 0xce, 0x82, 0xc0, 0x4e, 0xc5, 0x69, 0xaa, 0x8f, 0x72, 0xa4, 0x78, 0xa3, 0xf9, 0xf6, 0x34, 0x0b, + 0x82, 0x43, 0x71, 0x9a, 0xa2, 0xf1, 0x6f, 0x8f, 0x75, 0xc7, 0xfa, 0xe3, 0x3a, 0xc0, 0x8e, 0x74, + 0x4f, 0x0e, 0x9d, 0x78, 0x22, 0x52, 0x0c, 0xbc, 0x8d, 0x45, 0xd3, 0x16, 0xb7, 0x95, 0x2a, 0x3b, + 0xc6, 0xd6, 0xe1, 0x8a, 0xd9, 0x3f, 0xca, 0x21, 0x26, 0x01, 0xca, 0x24, 0x69, 0x85, 0x62, 0x1a, + 0xab, 0xd2, 0x48, 0xb2, 0x47, 0xec, 0x93, 0x82, 0xb7, 0x38, 0x26, 0x3d, 0x8b, 0x88, 0xb7, 0x8b, + 0x02, 0xb8, 0x7e, 0x31, 0xfc, 0xf0, 0x2c, 0x62, 0x0f, 0xe1, 0x72, 0x2c, 0xc6, 0xb1, 0x48, 0x8e, + 0xed, 0x34, 0x29, 0x7f, 0x4c, 0xc5, 0xdf, 0xcb, 0x1a, 0x79, 0x98, 0xe4, 0xdf, 0x7a, 0x08, 0x97, + 0x15, 0xa7, 0xe6, 0x97, 0xa7, 0xec, 0xf7, 0xb2, 0x42, 0x96, 0x57, 0xf7, 0x1e, 0x50, 0x19, 0x43, + 0xd9, 0x64, 0x13, 0xcd, 0x05, 0xc4, 0x8c, 0xa3, 0x40, 0x60, 0xa0, 0xb3, 0x79, 0x8c, 0x29, 0xe2, + 0x96, 0x18, 0x6b, 0xe6, 0x17, 0x00, 0x66, 0x41, 0x7d, 0x57, 0x7a, 0x82, 0x58, 0x3d, 0x58, 0x1f, + 0xac, 0x51, 0x41, 0x04, 0x39, 0x89, 0x50, 0x4e, 0x38, 0xf6, 0x01, 0xd0, 0x74, 0x4a, 0xfc, 0xce, + 0xeb, 0x4a, 0x1b, 0x91, 0x24, 0x83, 0x0f, 0xe1, 0x72, 0xb1, 0x12, 0xdb, 0x49, 0xed, 0xf4, 0x58, + 0x90, 0x39, 0x54, 0xea, 0xb2, 0x9c, 0x2f, 0x6a, 0x23, 0x3d, 0x3c, 0x16, 0x68, 0x1a, 0x57, 0xa1, + 0x25, 0x8f, 0x3e, 0xb3, 0x51, 0x11, 0xba, 0x8b, 0x15, 0xa1, 0x29, 0x8f, 0x3e, 0xe3, 0x62, 0xcc, + 0xbe, 0x5e, 0x76, 0x25, 0x73, 0xac, 0xe9, 0x11, 0x6b, 0x2e, 0xe5, 0xf8, 0x12, 0x77, 0xac, 0x4f, + 0xa0, 0x89, 0xdb, 0x79, 0x16, 0xb1, 0x35, 0x68, 0xa5, 0x24, 0x1e, 0x89, 0x76, 0xfd, 0x97, 0x0a, + 0x0f, 0x50, 0xc8, 0x0e, 0x37, 0x44, 0x16, 0x87, 0xa5, 0xdc, 0x9c, 0x3e, 0x0f, 0xfd, 0x17, 0x99, + 0x60, 0xdf, 0x85, 0xe5, 0x28, 0x16, 0x5a, 0xec, 0xed, 0xec, 0x04, 0xc3, 0x13, 0xad, 0xc1, 0x97, + 0xb4, 0x94, 0xe6, 0x23, 0x4e, 0x50, 0x42, 0x07, 0xd1, 0x4c, 0xdf, 0xfa, 0x31, 0x5c, 0xcd, 0x29, + 0x0e, 0x84, 0x2b, 0x43, 0xcf, 0x89, 0xcf, 0xc8, 0xf3, 0xcd, 0xcd, 0x9d, 0x7c, 0x91, 0xb9, 0x0f, + 0x68, 0xee, 0x9f, 0xd6, 0x60, 0xf0, 0x2c, 0xdc, 0xca, 0xa2, 0xc0, 0x47, 0x6f, 0xf4, 0x23, 0xe5, + 0x2c, 0x94, 0x91, 0xae, 0x94, 0x8d, 0xf4, 0x2a, 0x0c, 0xf5, 0x57, 0x90, 0x8f, 0xca, 0xc0, 0xea, + 0xb2, 0x8b, 0x82, 0x6f, 0xca, 0x40, 0x59, 0xd7, 0x6f, 0xc3, 0xe5, 0x8c, 0x76, 0xae, 0x28, 0x8f, + 0x85, 0x7b, 0x62, 0xbf, 0x21, 0x83, 0x62, 0x8a, 0x10, 0x87, 0x22, 0x19, 0x99, 0xcd, 0x1b, 0xd0, + 0x2d, 0x86, 0x1b, 0x4f, 0x01, 0x39, 0x21, 0xad, 0x44, 0x86, 0xb6, 0x67, 0x96, 0xac, 0xe3, 0x14, + 0xf4, 0x31, 0x03, 0x59, 0xec, 0x04, 0xcd, 0xd6, 0xef, 0xc0, 0xf2, 0x0c, 0x25, 0xad, 0xa2, 0x49, + 0xab, 0xb8, 0x5f, 0x1c, 0xe3, 0xec, 0xf6, 0xcb, 0x5d, 0x5c, 0x8f, 0xf2, 0xe9, 0x4b, 0x72, 0x16, + 0x6a, 0x4c, 0xd9, 0x24, 0x94, 0xb1, 0xd0, 0x0a, 0x82, 0xa6, 0x8c, 0xfa, 0xd7, 0xf6, 0xe0, 0xd2, + 0xa2, 0x59, 0x16, 0x38, 0xe6, 0x95, 0xb2, 0x63, 0x9e, 0xcb, 0xfe, 0x0a, 0x27, 0xfd, 0xa7, 0x15, + 0xe8, 0x3e, 0xcd, 0x5e, 0xbf, 0x3e, 0x53, 0x06, 0x8f, 0xf5, 0xa0, 0xb2, 0x47, 0xb3, 0x54, 0x79, + 0x65, 0x0f, 0xe3, 0xe1, 0xfd, 0x13, 0x34, 0xbe, 0x34, 0x49, 0x87, 0xeb, 0x1e, 0xe6, 0x8d, 0xfb, + 0x27, 0x87, 0x6f, 0x31, 0x3b, 0x0a, 0x8d, 0x09, 0xcf, 0xe3, 0xcc, 0x0f, 0x30, 0xbe, 0xd3, 0x16, + 0x26, 0xef, 0x63, 0x26, 0xb6, 0x3d, 0x56, 0xf2, 0xf2, 0x34, 0x96, 0x53, 0x25, 0xd1, 0xda, 0xae, + 0x2f, 0xc0, 0x58, 0xbf, 0xac, 0x43, 0xfb, 0x07, 0x4e, 0x72, 0xfc, 0x43, 0xe9, 0x87, 0xec, 0x21, + 0x74, 0x3e, 0x93, 0x7e, 0xa8, 0x4a, 0x20, 0xaa, 0xdc, 0x79, 0x51, 0x2d, 0x62, 0x4f, 0x7a, 0x62, + 0x0d, 0x69, 0x70, 0x35, 0xbc, 0xfd, 0x99, 0x6e, 0x69, 0x77, 0x18, 0xfb, 0x93, 0xe3, 0xd4, 0x46, + 0xa0, 0xf6, 0x5b, 0x5d, 0x3f, 0xe1, 0x08, 0xa3, 0x59, 0xdf, 0x05, 0x8c, 0x0c, 0x8e, 0x6d, 0x19, + 0xda, 0xd1, 0x89, 0x4e, 0xaf, 0xda, 0x08, 0x79, 0x16, 0xee, 0x9f, 0xa0, 0x5d, 0xf3, 0x13, 0x5b, + 0x17, 0x5a, 0x68, 0x3b, 0x33, 0x59, 0xea, 0x2d, 0x18, 0x60, 0x3c, 0x96, 0x9c, 0xf8, 0x91, 0x1d, + 0xc5, 0xf2, 0xc8, 0xec, 0x05, 0xa3, 0xb4, 0x83, 0x13, 0x3f, 0xda, 0x47, 0x18, 0x85, 0x41, 0xba, + 0x7c, 0x83, 0xc2, 0xa5, 0xe2, 0x0d, 0xd0, 0x20, 0x64, 0x0b, 0xd5, 0x68, 0x02, 0x95, 0x63, 0xb4, + 0x48, 0xf4, 0x5a, 0xb1, 0x08, 0x30, 0x99, 0x40, 0x14, 0x8a, 0x3d, 0xa1, 0xda, 0x0a, 0xe5, 0x4a, + 0x85, 0xfa, 0x2a, 0x40, 0x20, 0xc6, 0xa8, 0x40, 0xa1, 0xa7, 0xd2, 0xd9, 0xb9, 0x5a, 0x08, 0x62, + 0x37, 0x11, 0xc9, 0x3e, 0x84, 0xae, 0xe2, 0x82, 0xa2, 0x85, 0x73, 0xb4, 0x40, 0x68, 0x45, 0x7c, + 0x17, 0xba, 0xa1, 0x0c, 0x6d, 0xf1, 0x82, 0xa8, 0xb5, 0x4d, 0x9c, 0x99, 0x38, 0x94, 0xe1, 0x93, + 0x17, 0x48, 0xcc, 0x1e, 0xe8, 0x35, 0xa8, 0x8a, 0x42, 0xef, 0x0d, 0x15, 0x05, 0x5a, 0x89, 0xca, + 0xad, 0x3f, 0x32, 0x2b, 0x51, 0x23, 0xfa, 0x6f, 0x18, 0xa1, 0xd6, 0xa3, 0x86, 0xac, 0x40, 0x8f, + 0xce, 0x7d, 0xea, 0x44, 0x76, 0xea, 0x4c, 0x74, 0xdc, 0x0a, 0x08, 0xdb, 0x75, 0xa2, 0x43, 0x67, + 0xc2, 0x38, 0xbc, 0xa3, 0xeb, 0x87, 0xda, 0xc3, 0xdb, 0x47, 0x28, 0x71, 0x8a, 0x6b, 0x4b, 0xa6, + 0x22, 0xb1, 0xb8, 0xf2, 0x78, 0x65, 0xa6, 0xf2, 0x48, 0x92, 0x4a, 0x59, 0xdc, 0xbf, 0x55, 0xa0, + 0xbd, 0x23, 0x65, 0xf4, 0x25, 0x45, 0xaf, 0x7c, 0xa4, 0xd5, 0x37, 0x1f, 0x69, 0x6d, 0xf6, 0x48, + 0xe7, 0x58, 0x5f, 0x7f, 0x1b, 0xeb, 0xe7, 0x38, 0xd9, 0xf8, 0x12, 0x9c, 0x6c, 0xce, 0x73, 0xd2, + 0x6a, 0x41, 0xe3, 0x40, 0xa4, 0xcf, 0x22, 0xeb, 0x9f, 0x1a, 0xd0, 0xd9, 0x12, 0x5e, 0xa6, 0xf6, + 0x5f, 0xde, 0x4d, 0xe5, 0xcd, 0xbb, 0xa9, 0xce, 0xee, 0x06, 0x7d, 0xb6, 0x11, 0xd0, 0x05, 0xd6, + 0xba, 0x6d, 0xe4, 0x13, 0x25, 0xb9, 0x10, 0x4f, 0x5d, 0x70, 0x9a, 0xd9, 0x75, 0x2e, 0x9d, 0x6f, 0x3f, 0xea, 0xc6, 0x97, 0x3a, 0xea, 0x39, 0x25, 0x3f, 0x57, 0x8a, 0x9a, 0xe7, 0x5a, 0xeb, 0x9c, 0xfc, 0xcd, 0x29, 0x78, 0xfb, 0x9c, 0x82, 0xef, 0xc0, 0xc5, 0x19, 0xcf, 0xe1, 0xa8, 0x82, 0x43, 0x87, 0x24, 0xe9, 0xdd, 0x92, 0x24, 0x95, 0xec, 0xbc, 0x2a, 0x43, 0xf0, 0x65, 0x39, 0x0f, 0x42, @@ -5385,189 +5393,190 @@ var fileDescriptor_7ac67a7adf3df9c7 = []byte{ 0x4c, 0x7e, 0x1d, 0x4a, 0x7d, 0x1f, 0x2e, 0x9a, 0xea, 0x8a, 0x8e, 0xa3, 0xe8, 0x04, 0x07, 0x24, 0x41, 0x43, 0x5d, 0x50, 0xa1, 0x10, 0x8a, 0x8e, 0xe8, 0x5b, 0x70, 0xa9, 0x44, 0x8e, 0x8e, 0xb7, 0xac, 0xdc, 0x65, 0x59, 0x59, 0xce, 0xc7, 0x62, 0x77, 0x47, 0x95, 0x5c, 0xbb, 0x9e, 0x08, 0xcc, - 0x42, 0xa3, 0xa1, 0xca, 0xf7, 0x3c, 0x11, 0xa8, 0x05, 0xac, 0x7f, 0x6d, 0xc0, 0x80, 0x1c, 0xc2, - 0x6f, 0x04, 0xfe, 0x37, 0x02, 0xff, 0x7f, 0x41, 0xe0, 0x7f, 0xaf, 0x02, 0xad, 0xfd, 0x58, 0x7a, - 0x99, 0x9b, 0x7e, 0x49, 0x49, 0x9f, 0x95, 0xa0, 0xda, 0xaf, 0x92, 0xa0, 0xfa, 0x39, 0x47, 0xf3, - 0xb3, 0x0a, 0x74, 0xf4, 0x16, 0x76, 0xd6, 0xbf, 0xe4, 0x26, 0x8a, 0xab, 0x94, 0xca, 0xc2, 0xab, - 0x94, 0x5f, 0xb9, 0x0b, 0x14, 0xac, 0x97, 0xea, 0xe2, 0x57, 0x46, 0xca, 0xb9, 0x37, 0x94, 0x60, - 0x29, 0xe8, 0xb3, 0x08, 0xcf, 0xce, 0x7a, 0x05, 0x1d, 0x4a, 0x8f, 0xc8, 0x32, 0x5c, 0x81, 0x66, - 0x4c, 0x77, 0x05, 0x7a, 0xa3, 0xba, 0xf7, 0x76, 0x3d, 0xad, 0x7e, 0xb9, 0x18, 0xe4, 0xaf, 0x2b, - 0xd0, 0xa7, 0x5c, 0xf5, 0x69, 0x16, 0x2a, 0x4d, 0x58, 0x9c, 0x4c, 0xad, 0x40, 0x3d, 0xc6, 0x94, - 0x52, 0x2d, 0xd3, 0x53, 0xcb, 0x6c, 0xca, 0x60, 0x4b, 0x8c, 0x39, 0x61, 0x90, 0x55, 0x4e, 0x3c, - 0x49, 0x16, 0xdd, 0x3a, 0x21, 0x1c, 0xbf, 0x2a, 0x72, 0x62, 0x67, 0x9a, 0x98, 0x5b, 0x27, 0xd5, - 0x63, 0x0c, 0xea, 0xa4, 0x6f, 0x8a, 0x2d, 0xd4, 0xd6, 0xb9, 0x4a, 0xe2, 0x87, 0x93, 0xdc, 0x78, - 0xb4, 0xe9, 0xb2, 0x71, 0x12, 0x08, 0x6b, 0x03, 0x2e, 0x3f, 0x39, 0x4d, 0x45, 0x1c, 0x3a, 0xa4, - 0x94, 0xeb, 0x28, 0x71, 0x94, 0x5a, 0x9a, 0x99, 0x2a, 0xa5, 0x99, 0x2e, 0x41, 0xa3, 0x7c, 0xe1, - 0xae, 0x3a, 0xd6, 0x6d, 0xe8, 0x8e, 0xfd, 0x40, 0xe8, 0xf2, 0x1c, 0x6e, 0x4d, 0x17, 0xea, 0x2a, - 0x74, 0xe5, 0xac, 0x7b, 0xd6, 0x9f, 0xd6, 0xa0, 0x67, 0x96, 0xa2, 0x0b, 0xc9, 0x7b, 0x65, 0xde, - 0x74, 0xd7, 0x87, 0xe6, 0x23, 0x91, 0x64, 0x23, 0x4d, 0x63, 0x93, 0xa6, 0x28, 0x9e, 0x5d, 0x87, - 0x0e, 0xad, 0x92, 0xf8, 0xaf, 0x05, 0x31, 0xae, 0xc6, 0xdb, 0x08, 0xa0, 0x9b, 0xa5, 0x0d, 0x58, - 0x2e, 0x6d, 0xc1, 0x4e, 0x65, 0xea, 0x04, 0x9a, 0x77, 0xa5, 0x5a, 0x7d, 0x89, 0x84, 0x2f, 0x61, - 0x47, 0xd5, 0x0f, 0x0f, 0x91, 0x1a, 0xcf, 0x24, 0x4f, 0x38, 0xcf, 0x9d, 0x09, 0x62, 0xa8, 0x0a, - 0x19, 0x0b, 0x54, 0xf1, 0xe4, 0x45, 0xa0, 0x39, 0xdc, 0x51, 0x90, 0x83, 0x17, 0x41, 0xbe, 0x41, - 0x12, 0xa0, 0x26, 0x1d, 0x37, 0x6d, 0x90, 0x44, 0xff, 0x3e, 0x74, 0x65, 0xec, 0x4f, 0xfc, 0x50, - 0x65, 0xb5, 0xad, 0x05, 0x8b, 0x80, 0x22, 0xa0, 0x1c, 0xd7, 0x82, 0xa6, 0x12, 0xca, 0x05, 0x95, - 0x49, 0x8d, 0x61, 0x77, 0x60, 0x29, 0x49, 0x63, 0xdf, 0x4d, 0x71, 0x3b, 0xf6, 0x54, 0x7a, 0xe6, - 0x56, 0xb8, 0xaf, 0xc0, 0x07, 0x2f, 0x02, 0xaa, 0xc4, 0xdc, 0x81, 0x25, 0x57, 0x06, 0xd9, 0x34, - 0xa4, 0x9d, 0xd9, 0x81, 0x08, 0xc9, 0x1a, 0x37, 0x78, 0x5f, 0x81, 0x71, 0x7f, 0x3b, 0x22, 0xb4, - 0x5c, 0x80, 0x83, 0x34, 0x16, 0xce, 0x94, 0x0e, 0xe7, 0x03, 0x68, 0xa5, 0x47, 0x01, 0xd5, 0x79, - 0x2b, 0x0b, 0xeb, 0xbc, 0xcd, 0xf4, 0x08, 0xb7, 0x5d, 0x3a, 0xee, 0x2a, 0xd5, 0x5b, 0x75, 0x0f, - 0x65, 0x25, 0xf0, 0xa7, 0x7e, 0xaa, 0x5f, 0x48, 0xa8, 0x8e, 0x75, 0x04, 0x1d, 0x9a, 0x81, 0xd6, - 0xc8, 0x6f, 0x36, 0x2b, 0x6f, 0xbf, 0xd9, 0xbc, 0x0f, 0x3d, 0xad, 0xa2, 0x6f, 0xba, 0x2a, 0xed, - 0x2a, 0x3c, 0xb6, 0x13, 0xeb, 0x1e, 0x74, 0x7e, 0x1b, 0x73, 0x67, 0x5a, 0xe3, 0x06, 0x74, 0xe9, - 0xea, 0xc0, 0x3e, 0x0a, 0xa4, 0x7b, 0x62, 0x4a, 0xda, 0x04, 0x7a, 0x8c, 0x10, 0x0b, 0xa0, 0xfd, - 0x3c, 0xf4, 0x65, 0xb8, 0x11, 0x04, 0xd6, 0x1f, 0x36, 0xa0, 0x83, 0xe9, 0x2b, 0x69, 0x34, 0x66, - 0xa3, 0x74, 0x6f, 0x4b, 0xe9, 0xe6, 0xd4, 0x89, 0xf4, 0xdd, 0x6d, 0x17, 0x81, 0x48, 0xb5, 0xeb, - 0x44, 0x73, 0xd9, 0x68, 0x75, 0x2e, 0x1b, 0xbd, 0xa9, 0x1e, 0xc6, 0xa8, 0xcb, 0x0b, 0x61, 0x2e, - 0x03, 0x69, 0x82, 0xc7, 0x0a, 0xc4, 0xee, 0x01, 0x23, 0x12, 0x27, 0x08, 0x24, 0x79, 0xde, 0x44, - 0x04, 0x89, 0x4e, 0x5c, 0x87, 0x88, 0xd9, 0xd0, 0x88, 0x03, 0xa1, 0x44, 0xb0, 0x64, 0xc6, 0x1b, - 0xf3, 0x66, 0xfc, 0x2e, 0x00, 0x06, 0x28, 0x54, 0xcf, 0x4a, 0x74, 0xa5, 0x63, 0x26, 0x6b, 0x2c, - 0xb0, 0x9f, 0x23, 0x68, 0xf8, 0x00, 0x86, 0x39, 0x45, 0x2c, 0xc6, 0xb6, 0x1b, 0xa6, 0x3a, 0x72, - 0xe8, 0x6b, 0x2a, 0x2e, 0xc6, 0x9b, 0x61, 0x3a, 0x1f, 0x5d, 0x74, 0xce, 0x45, 0x17, 0xdf, 0x87, - 0x8b, 0x73, 0xb6, 0x36, 0x89, 0x84, 0xab, 0xaf, 0x07, 0xbf, 0xc0, 0x1b, 0x13, 0x74, 0x2e, 0x54, - 0x24, 0xf6, 0xb2, 0x48, 0x97, 0xca, 0x5b, 0x7e, 0x42, 0x51, 0xe0, 0x9b, 0x22, 0x98, 0xde, 0xff, - 0x56, 0x04, 0xd3, 0xff, 0x7c, 0x11, 0xcc, 0xe0, 0xf3, 0x45, 0x30, 0x73, 0x1e, 0x7f, 0x69, 0xde, - 0xe3, 0x3f, 0x07, 0x20, 0x33, 0x4c, 0x3e, 0xe9, 0x4d, 0xfc, 0xab, 0x7c, 0xe1, 0x37, 0x3a, 0xff, - 0x55, 0x01, 0x38, 0x70, 0xa6, 0x91, 0xf2, 0x50, 0xec, 0x7b, 0xd0, 0x4d, 0xa8, 0x57, 0x4e, 0x94, - 0x6f, 0x94, 0x9e, 0xa4, 0xe5, 0xa4, 0xba, 0x49, 0x49, 0x33, 0x24, 0x79, 0x9b, 0x8e, 0x5e, 0xcd, - 0x90, 0xdf, 0x33, 0x34, 0x0c, 0x01, 0x95, 0x77, 0x6f, 0xc3, 0x40, 0x13, 0x44, 0x22, 0x76, 0x45, - 0xa8, 0xec, 0x41, 0x85, 0xf7, 0x15, 0x74, 0x5f, 0x01, 0xd9, 0x47, 0x39, 0x99, 0x32, 0x4a, 0xc9, - 0x82, 0x20, 0x5b, 0x0f, 0xd9, 0x54, 0x04, 0xd6, 0xba, 0xf9, 0x14, 0xda, 0x48, 0x1b, 0xea, 0xb8, - 0xde, 0xf0, 0x02, 0xeb, 0x42, 0x4b, 0xcf, 0x3a, 0xac, 0xb0, 0x3e, 0x74, 0xe8, 0x65, 0x0c, 0xe1, - 0xaa, 0xd6, 0x4f, 0x97, 0xa1, 0xbb, 0x1d, 0x26, 0x69, 0x9c, 0xa9, 0x63, 0x2e, 0x1e, 0x80, 0x34, - 0xe8, 0x01, 0x88, 0xbe, 0xb2, 0x52, 0x9f, 0x41, 0x57, 0x56, 0xf7, 0xa1, 0xa5, 0x9f, 0x1a, 0xe9, - 0xb0, 0x65, 0xe1, 0x3b, 0x25, 0x43, 0xc3, 0xd6, 0xa0, 0xed, 0xe9, 0x37, 0x50, 0xba, 0x1a, 0x50, - 0x7a, 0x98, 0x64, 0x5e, 0x47, 0xf1, 0x9c, 0x86, 0xdd, 0x84, 0x9a, 0x33, 0x99, 0x90, 0x26, 0x53, - 0x1d, 0xdb, 0x90, 0xd2, 0xcb, 0x11, 0x8e, 0x38, 0xf6, 0x00, 0x3a, 0x64, 0x62, 0xa8, 0x20, 0xd6, - 0x9c, 0x9f, 0xd3, 0x54, 0xdb, 0x94, 0xd5, 0xa1, 0x88, 0xe7, 0x01, 0x74, 0x02, 0x29, 0x23, 0x35, - 0xa0, 0x35, 0x3f, 0xc0, 0xd4, 0x48, 0x78, 0x3b, 0x30, 0xd5, 0x92, 0x3b, 0xd0, 0x44, 0xaf, 0x29, - 0x23, 0xed, 0x6d, 0x4a, 0xfb, 0xa0, 0xe2, 0x02, 0x6f, 0x24, 0xf8, 0xc3, 0xd6, 0x01, 0x94, 0xb8, - 0xd3, 0xcc, 0x9d, 0x79, 0x76, 0xe4, 0xd9, 0x18, 0x0a, 0xb2, 0x49, 0xcc, 0x1e, 0xc3, 0x50, 0x45, - 0xde, 0xa5, 0x91, 0x60, 0xae, 0x68, 0xcc, 0xc8, 0xd9, 0x64, 0x8e, 0x0f, 0xe2, 0xd9, 0xe4, 0xee, - 0x43, 0x68, 0x45, 0x2a, 0xf4, 0x24, 0x2d, 0xec, 0xae, 0x2f, 0x17, 0x43, 0x75, 0x4c, 0xca, 0x0d, - 0x05, 0xfb, 0x0e, 0x0c, 0xd4, 0x55, 0xc2, 0x58, 0xc7, 0x60, 0x54, 0x7f, 0x9a, 0x79, 0xe2, 0x32, - 0x13, 0xa2, 0xf1, 0x7e, 0x3a, 0x13, 0xb1, 0x7d, 0x0b, 0xfa, 0x42, 0x47, 0x29, 0x76, 0xe2, 0x3a, - 0x21, 0xe9, 0x66, 0x77, 0xfd, 0x4a, 0x31, 0xbc, 0x1c, 0xc4, 0xf0, 0x9e, 0x28, 0x87, 0x34, 0xab, - 0xd0, 0xd4, 0xd7, 0x5b, 0x43, 0x1a, 0x55, 0x7a, 0xba, 0xa9, 0x6a, 0xa5, 0x5c, 0xe3, 0x91, 0x2f, - 0x33, 0xe6, 0xea, 0x44, 0x9c, 0x8d, 0x96, 0xe7, 0xf9, 0x32, 0x5b, 0x9a, 0x9e, 0xa9, 0x6f, 0xff, - 0x48, 0x9c, 0xe1, 0x79, 0x14, 0xd5, 0xff, 0x11, 0x9b, 0x3f, 0x8f, 0xbc, 0xf4, 0xcf, 0x3b, 0x79, - 0xd5, 0x9f, 0x3d, 0x99, 0xbd, 0x8d, 0x50, 0x05, 0xdd, 0x8b, 0x34, 0xf4, 0x9d, 0x05, 0x43, 0x55, - 0x5d, 0x97, 0x2f, 0x45, 0x73, 0x97, 0x1a, 0xf7, 0xa0, 0x2d, 0x63, 0x8f, 0xae, 0x43, 0x47, 0x97, - 0x48, 0x53, 0x97, 0xf5, 0x25, 0x8c, 0x7a, 0xa3, 0x45, 0x06, 0xa8, 0x25, 0x55, 0x07, 0x1d, 0x78, - 0x14, 0xcb, 0xcf, 0x84, 0x9b, 0xaa, 0xe8, 0xe8, 0xf2, 0x79, 0x07, 0xae, 0xf1, 0x14, 0x2c, 0xdd, - 0x82, 0x96, 0xb9, 0xf8, 0xbb, 0x72, 0x8e, 0xd2, 0xa0, 0xd8, 0xc7, 0xb0, 0x34, 0x6b, 0x14, 0x93, - 0xd1, 0xd5, 0x73, 0xd4, 0x83, 0x19, 0x1b, 0x88, 0x5e, 0x4f, 0x47, 0x25, 0xa3, 0xf3, 0x05, 0x77, - 0x42, 0x60, 0xe8, 0xa5, 0xe3, 0x99, 0x77, 0xce, 0x87, 0x5e, 0x3a, 0xb6, 0x19, 0x41, 0xcb, 0x4f, - 0x9e, 0xfa, 0x71, 0x92, 0x8e, 0xae, 0x19, 0x2f, 0x44, 0x5d, 0x8c, 0x86, 0xfc, 0x64, 0xc7, 0x49, - 0xd2, 0xd1, 0x75, 0xf3, 0xaa, 0x0f, 0x7b, 0xec, 0x2e, 0x34, 0xf5, 0xa5, 0xe8, 0xca, 0x39, 0xab, - 0xa0, 0x1f, 0x12, 0x70, 0x4d, 0xc1, 0xbe, 0x0a, 0x2d, 0xba, 0x11, 0x93, 0xd1, 0xe8, 0xe6, 0xbc, - 0x14, 0xa9, 0x6b, 0x29, 0xde, 0x0c, 0xd4, 0xf5, 0xd4, 0x87, 0xd0, 0x32, 0xc1, 0x80, 0x35, 0xaf, - 0x19, 0x3a, 0x28, 0xe0, 0x86, 0x82, 0xdd, 0x86, 0xc6, 0x14, 0x6d, 0xe1, 0xe8, 0x2b, 0xf3, 0x5a, - 0xae, 0x4c, 0xa4, 0xc2, 0xb2, 0x47, 0xd0, 0x4d, 0x28, 0x0e, 0x54, 0xe2, 0x7f, 0xcb, 0xdc, 0x26, - 0x15, 0xef, 0x94, 0x4d, 0x90, 0xc8, 0x21, 0x29, 0x02, 0xc6, 0xdf, 0x85, 0x6b, 0xe5, 0xab, 0x28, - 0x73, 0x4f, 0xa5, 0x5f, 0xe8, 0xde, 0xa6, 0x59, 0x6e, 0x2e, 0x90, 0xb0, 0xd9, 0x1b, 0x2d, 0x7e, - 0x35, 0x7a, 0xc3, 0x55, 0xd7, 0xa3, 0xdc, 0xd3, 0xa0, 0x62, 0x8f, 0xee, 0x9c, 0xdb, 0x56, 0xee, - 0xab, 0x8c, 0xff, 0x21, 0x17, 0xf7, 0x09, 0xf4, 0xc6, 0xd9, 0xeb, 0xd7, 0x67, 0x5a, 0x46, 0x46, - 0x1f, 0xd0, 0xb8, 0x52, 0x52, 0x50, 0xba, 0x58, 0xe1, 0xdd, 0x71, 0xe9, 0x96, 0xe5, 0x2a, 0xb4, - 0xdc, 0xd0, 0x76, 0x3c, 0x2f, 0x1e, 0xad, 0xaa, 0x8b, 0x15, 0x37, 0xdc, 0xf0, 0x3c, 0xba, 0xa1, - 0x92, 0x91, 0xa0, 0x87, 0x86, 0xb6, 0xef, 0x8d, 0xbe, 0xaa, 0x7c, 0x9e, 0x01, 0x6d, 0x7b, 0xf4, - 0x84, 0xd9, 0x89, 0x9d, 0x20, 0x10, 0xe8, 0xdd, 0x47, 0x77, 0xf5, 0x13, 0x66, 0x0d, 0xda, 0xf6, - 0x30, 0x2e, 0x9c, 0x3a, 0xa7, 0xb6, 0x81, 0x8c, 0x3e, 0x54, 0xef, 0x43, 0xa7, 0xce, 0xe9, 0xbe, - 0x06, 0xa1, 0x6e, 0xab, 0xb7, 0x2f, 0x64, 0x31, 0xef, 0xcd, 0xeb, 0x76, 0x9e, 0xdf, 0xf2, 0x8e, - 0x9f, 0xa7, 0xba, 0x64, 0x0f, 0xc8, 0x0a, 0xda, 0xc1, 0xfa, 0xe8, 0xfe, 0x79, 0x7b, 0xa0, 0xd3, - 0x77, 0xb4, 0x07, 0x26, 0x93, 0x5f, 0x07, 0x50, 0xe6, 0x92, 0x0e, 0x7b, 0x6d, 0x7e, 0x4c, 0x1e, - 0xac, 0x73, 0xf5, 0xf0, 0x83, 0x8e, 0x7a, 0x1d, 0x80, 0x2e, 0xa7, 0xd4, 0x98, 0x07, 0xf3, 0x63, - 0xf2, 0xe0, 0x9b, 0x77, 0x5e, 0xe6, 0x71, 0xf8, 0x03, 0xe8, 0x64, 0x18, 0x66, 0x63, 0xa0, 0x3b, - 0x7a, 0x38, 0xaf, 0x03, 0x26, 0x02, 0xe7, 0xed, 0x4c, 0xb7, 0x70, 0x11, 0x72, 0x7b, 0x14, 0x01, - 0x8d, 0x3e, 0x9a, 0x5f, 0x24, 0x0f, 0xd3, 0x39, 0x79, 0x47, 0x15, 0xb1, 0x3f, 0x82, 0xae, 0x62, - 0x9a, 0x1a, 0xb4, 0x3e, 0x2f, 0x23, 0x45, 0x48, 0xc5, 0x15, 0x77, 0xd5, 0xb0, 0xdb, 0xd0, 0x70, - 0xa2, 0x28, 0x38, 0x1b, 0x7d, 0x3c, 0xaf, 0x18, 0x1b, 0x08, 0xe6, 0x0a, 0x8b, 0xa2, 0x34, 0xcd, - 0x82, 0xd4, 0x37, 0x6f, 0x35, 0xbe, 0x36, 0x2f, 0x4a, 0xa5, 0xa7, 0x6c, 0xbc, 0x3b, 0x2d, 0xbd, - 0x6b, 0xbb, 0x07, 0xed, 0x48, 0x26, 0xa9, 0xed, 0x4d, 0x83, 0xd1, 0xa3, 0x73, 0x1e, 0x4c, 0xbd, - 0x51, 0xe0, 0xad, 0x48, 0x35, 0xac, 0x47, 0xd0, 0xdb, 0xa0, 0xd7, 0xf7, 0x7e, 0x42, 0xe6, 0xf0, - 0x36, 0xd4, 0xf3, 0x42, 0x4b, 0x6e, 0x67, 0x89, 0xe2, 0xb5, 0xd8, 0x0e, 0xc7, 0x92, 0x13, 0xda, - 0xfa, 0x8b, 0x3a, 0x34, 0x0f, 0x64, 0x16, 0xbb, 0xe2, 0x57, 0xbf, 0xe3, 0x79, 0xcf, 0x9c, 0x7a, - 0x58, 0xdc, 0x1b, 0xaa, 0x03, 0x26, 0xf4, 0xfc, 0x8d, 0x47, 0xa7, 0xa8, 0xe1, 0x5c, 0x82, 0x86, - 0xca, 0xa4, 0xd4, 0xfb, 0x0f, 0xd5, 0x21, 0x89, 0xcf, 0x92, 0x63, 0x4f, 0xbe, 0x0a, 0x51, 0xe2, - 0x1b, 0xf4, 0x7c, 0x02, 0x0c, 0x68, 0xdb, 0xa3, 0x27, 0x85, 0x86, 0x80, 0x54, 0xaa, 0xa9, 0xc2, - 0x69, 0x03, 0x24, 0xc5, 0x32, 0xf5, 0xa1, 0xd6, 0x1b, 0xea, 0x43, 0xef, 0x43, 0x3d, 0x34, 0xef, - 0x0e, 0x72, 0x3c, 0xbd, 0xf4, 0x26, 0x38, 0xbb, 0x0b, 0xf9, 0xe3, 0x23, 0x1d, 0x9d, 0xbc, 0xf9, - 0x71, 0xd2, 0x3a, 0x74, 0xf2, 0xff, 0x6b, 0xe8, 0x80, 0xe4, 0xd2, 0x5a, 0xf1, 0x0f, 0x8e, 0x43, - 0xd3, 0xe2, 0x05, 0xd9, 0x82, 0x92, 0x11, 0xdd, 0x21, 0x2a, 0x3e, 0x75, 0xbf, 0x48, 0xc9, 0x88, - 0xee, 0x19, 0x4d, 0xb9, 0xcc, 0x4f, 0x6c, 0x57, 0x86, 0x49, 0xaa, 0x5f, 0x87, 0xb5, 0xfc, 0x64, - 0x13, 0xbb, 0xec, 0x9b, 0xd0, 0x8f, 0x85, 0xfb, 0xd2, 0x9e, 0x26, 0x13, 0xb5, 0x44, 0xbf, 0xfc, - 0x9c, 0x71, 0x9a, 0x4c, 0x7e, 0x20, 0x1c, 0xf4, 0xaf, 0x2a, 0xc1, 0xe8, 0x22, 0xed, 0x6e, 0x32, - 0xa1, 0x59, 0x6f, 0x42, 0xef, 0x28, 0x90, 0x72, 0x6a, 0xac, 0xde, 0x80, 0x8a, 0x44, 0x5d, 0x82, - 0xa9, 0x1d, 0x58, 0x7f, 0x54, 0x81, 0x36, 0xf2, 0x0e, 0x25, 0x88, 0x31, 0xa8, 0x4f, 0xdd, 0x28, - 0xd3, 0x91, 0x30, 0xb5, 0xf5, 0x3f, 0x3f, 0x94, 0x6c, 0xe8, 0x7f, 0x7e, 0xd0, 0xc9, 0xd5, 0x54, - 0x41, 0x08, 0xdb, 0xea, 0x4d, 0xf9, 0x59, 0x20, 0x1d, 0x4f, 0xcb, 0x83, 0xe9, 0xb2, 0xcb, 0xd0, - 0x74, 0x43, 0x4a, 0x19, 0xd5, 0x1b, 0x94, 0x86, 0x1b, 0x62, 0xaa, 0xa8, 0xc0, 0xc5, 0xad, 0x6a, - 0xc3, 0x0d, 0x31, 0xdd, 0xf9, 0xcb, 0x0a, 0x2c, 0xef, 0xc7, 0xd2, 0x15, 0x49, 0xb2, 0x83, 0x5e, - 0xd8, 0xa1, 0x50, 0x8c, 0x41, 0x9d, 0xaa, 0x3d, 0xea, 0x81, 0x36, 0xb5, 0x51, 0x72, 0x55, 0x3e, - 0x9f, 0xe7, 0x1b, 0x35, 0xde, 0x21, 0x08, 0xa5, 0x1b, 0x39, 0x9a, 0x06, 0xd6, 0x4a, 0x68, 0xaa, - 0x13, 0xdd, 0x86, 0x41, 0xf1, 0x20, 0x84, 0x66, 0xd0, 0xff, 0xcc, 0xc8, 0xa1, 0x34, 0xcb, 0x0d, - 0xe8, 0xc6, 0xc4, 0x5b, 0x35, 0x4d, 0x83, 0x68, 0x40, 0x81, 0x70, 0x1e, 0xeb, 0x18, 0x86, 0xfb, - 0xb1, 0x88, 0x9c, 0x58, 0xa0, 0xc1, 0x9e, 0x12, 0x0f, 0xaf, 0x40, 0x33, 0x10, 0xe1, 0x24, 0x3d, - 0xd6, 0xfb, 0xd5, 0xbd, 0xfc, 0x5f, 0x39, 0xd5, 0xd2, 0xbf, 0x72, 0x90, 0x97, 0xb1, 0x70, 0xf4, - 0x9f, 0x77, 0xa8, 0x8d, 0x9a, 0x15, 0x66, 0x81, 0xae, 0x40, 0xb5, 0xb9, 0xea, 0x58, 0x3f, 0xab, - 0x41, 0x57, 0x73, 0x86, 0x56, 0x51, 0xa7, 0x52, 0xc9, 0x4f, 0x65, 0x08, 0xb5, 0xe4, 0x45, 0xa0, - 0x8f, 0x09, 0x9b, 0xec, 0x63, 0xa8, 0x05, 0xfe, 0x54, 0x67, 0x2b, 0xd7, 0x67, 0xcc, 0xff, 0x2c, - 0x7f, 0xb5, 0xe0, 0x20, 0x35, 0xbb, 0x4e, 0xe6, 0xf9, 0xd4, 0x46, 0x11, 0xd5, 0x3c, 0x41, 0x53, - 0x7c, 0x8a, 0x7a, 0x80, 0x4c, 0x75, 0x5c, 0x7a, 0xf2, 0x61, 0x94, 0xbb, 0xcf, 0x3b, 0x1a, 0xb2, - 0xed, 0xb1, 0xaf, 0x41, 0x3b, 0x09, 0x9d, 0x28, 0x39, 0x96, 0x69, 0x9e, 0x9f, 0xa4, 0xa7, 0xe1, - 0xda, 0xe6, 0xde, 0xe1, 0x69, 0x78, 0xa0, 0x31, 0x7a, 0xb1, 0x9c, 0x92, 0x7d, 0x07, 0x7a, 0x89, - 0x48, 0x12, 0xf5, 0xc8, 0x73, 0x2c, 0xb5, 0xd2, 0x5f, 0x2e, 0xa7, 0x1e, 0x84, 0xc5, 0xaf, 0x36, - 0x22, 0x9e, 0x14, 0x20, 0xf6, 0x03, 0x18, 0x98, 0xf1, 0x81, 0x9c, 0x4c, 0xf2, 0x52, 0xd9, 0xf5, - 0x73, 0x33, 0xec, 0x10, 0xba, 0x34, 0x4f, 0x3f, 0x29, 0x23, 0xd8, 0xf7, 0x61, 0x10, 0xa9, 0xc3, - 0xb4, 0x75, 0x4d, 0x55, 0x19, 0x8f, 0x6b, 0x33, 0xd1, 0xca, 0xcc, 0x61, 0x17, 0x0f, 0xb7, 0x0a, - 0x78, 0x62, 0xfd, 0x67, 0x05, 0xba, 0xa5, 0x5d, 0xd3, 0x7f, 0xa5, 0x12, 0x11, 0x9b, 0x12, 0x2a, - 0xb6, 0x11, 0x76, 0x2c, 0xf5, 0x5f, 0x0c, 0x3a, 0x9c, 0xda, 0x08, 0x8b, 0xa5, 0x2e, 0xcb, 0x77, - 0x38, 0xb5, 0xd1, 0x60, 0xea, 0x9c, 0x52, 0x3d, 0xc2, 0xa6, 0x43, 0xa9, 0xf3, 0x5e, 0x01, 0xdc, - 0xf6, 0xe8, 0x4f, 0x55, 0x4e, 0xea, 0x1c, 0x39, 0x89, 0xa9, 0xf8, 0xe6, 0x7d, 0x54, 0xcd, 0x97, - 0x22, 0xc6, 0xbd, 0x68, 0x5b, 0x6b, 0xba, 0x78, 0xd6, 0x64, 0xc3, 0x5e, 0xcb, 0x50, 0xbd, 0x5d, - 0xe9, 0xf1, 0x36, 0x02, 0x7e, 0x2c, 0x43, 0x1a, 0xa6, 0x4f, 0x96, 0xf8, 0xd9, 0xe1, 0xa6, 0x8b, - 0x96, 0xea, 0x45, 0x26, 0x30, 0xa2, 0xf3, 0xe8, 0xf1, 0x42, 0x87, 0xb7, 0xa8, 0xbf, 0xed, 0x59, - 0xff, 0x5c, 0x81, 0xe5, 0x73, 0xcc, 0xc6, 0x00, 0x0a, 0x19, 0x6d, 0xde, 0xd3, 0xf5, 0x78, 0x13, - 0xbb, 0xdb, 0x1e, 0x21, 0xd2, 0x29, 0x09, 0x53, 0x55, 0x23, 0xd2, 0x29, 0x4a, 0xd2, 0x65, 0x68, - 0xa6, 0xa7, 0xf4, 0xb5, 0x4a, 0x31, 0x1a, 0xe9, 0x29, 0x7e, 0xe6, 0x06, 0x26, 0xb4, 0x13, 0x3b, - 0x10, 0x2f, 0x45, 0x40, 0x7c, 0x18, 0xac, 0xdf, 0x7a, 0xcb, 0x29, 0xaf, 0xed, 0xc8, 0xc9, 0x0e, - 0xd2, 0x62, 0x8a, 0xab, 0x5a, 0xd6, 0x0f, 0xa1, 0x6d, 0xa0, 0xac, 0x03, 0x8d, 0x2d, 0x71, 0x94, - 0x4d, 0x86, 0x17, 0x58, 0x1b, 0xea, 0x38, 0x62, 0x58, 0xc1, 0xd6, 0xa7, 0x4e, 0x1c, 0x0e, 0xab, - 0x88, 0x7e, 0x12, 0xc7, 0x32, 0x1e, 0xd6, 0xb0, 0xb9, 0xef, 0x84, 0xbe, 0x3b, 0xac, 0x63, 0xf3, - 0xa9, 0x93, 0x3a, 0xc1, 0xb0, 0x61, 0xfd, 0x55, 0x03, 0xda, 0xfb, 0x7a, 0x75, 0xb6, 0x05, 0xfd, - 0xfc, 0xef, 0x6a, 0x8b, 0x8b, 0x28, 0xfb, 0xf3, 0x0d, 0x2a, 0xa2, 0xf4, 0xa2, 0x52, 0x6f, 0xfe, - 0x4f, 0x6f, 0xd5, 0x73, 0x7f, 0x7a, 0x7b, 0x17, 0x6a, 0x2f, 0xe2, 0xb3, 0xd9, 0x9b, 0x93, 0xfd, + 0x87, 0x46, 0x43, 0x95, 0xef, 0x79, 0x22, 0x50, 0x1f, 0xb0, 0xfe, 0xb5, 0x01, 0x03, 0x72, 0x08, + 0xbf, 0x11, 0xf8, 0xdf, 0x08, 0xfc, 0xff, 0x05, 0x81, 0xff, 0xbd, 0x0a, 0xb4, 0xf6, 0x63, 0xe9, + 0x65, 0x6e, 0xfa, 0x25, 0x25, 0x7d, 0x56, 0x82, 0x6a, 0xbf, 0x4a, 0x82, 0xea, 0xe7, 0x1c, 0xcd, + 0xcf, 0x2a, 0xd0, 0xd1, 0x4b, 0xd8, 0x59, 0xff, 0x92, 0x8b, 0x28, 0xae, 0x52, 0x2a, 0x0b, 0xaf, + 0x52, 0x7e, 0xe5, 0x2a, 0x50, 0xb0, 0x5e, 0xaa, 0x8b, 0x5f, 0x19, 0x29, 0xe7, 0xde, 0x50, 0x82, + 0xa5, 0xa0, 0xcf, 0x22, 0x3c, 0x3b, 0xeb, 0x15, 0x74, 0x28, 0x3d, 0x22, 0xcb, 0x70, 0x05, 0x9a, + 0x31, 0xdd, 0x15, 0xe8, 0x85, 0xea, 0xde, 0xdb, 0xf5, 0xb4, 0xfa, 0xe5, 0x62, 0x90, 0xbf, 0xaa, + 0x40, 0x9f, 0x72, 0xd5, 0xa7, 0x59, 0xa8, 0x34, 0x61, 0x71, 0x32, 0xb5, 0x02, 0xf5, 0x18, 0x53, + 0x4a, 0xf5, 0x99, 0x9e, 0xfa, 0xcc, 0xa6, 0x0c, 0xb6, 0xc4, 0x98, 0x13, 0x06, 0x59, 0xe5, 0xc4, + 0x93, 0x64, 0xd1, 0xad, 0x13, 0xc2, 0x71, 0x57, 0x91, 0x13, 0x3b, 0xd3, 0xc4, 0xdc, 0x3a, 0xa9, + 0x1e, 0x63, 0x50, 0x27, 0x7d, 0x53, 0x6c, 0xa1, 0xb6, 0xce, 0x55, 0x12, 0x3f, 0x9c, 0xe4, 0xc6, + 0xa3, 0x4d, 0x97, 0x8d, 0x93, 0x40, 0x58, 0x1b, 0x70, 0xf9, 0xc9, 0x69, 0x2a, 0xe2, 0xd0, 0x21, + 0xa5, 0x5c, 0x47, 0x89, 0xa3, 0xd4, 0xd2, 0xcc, 0x54, 0x29, 0xcd, 0x74, 0x09, 0x1a, 0xe5, 0x0b, + 0x77, 0xd5, 0xb1, 0x6e, 0x43, 0x77, 0xec, 0x07, 0x42, 0x97, 0xe7, 0x70, 0x69, 0xba, 0x50, 0x57, + 0xa1, 0x2b, 0x67, 0xdd, 0xb3, 0xfe, 0xa6, 0x06, 0x3d, 0xf3, 0x29, 0xba, 0x90, 0xbc, 0x57, 0xe6, + 0x4d, 0x77, 0x7d, 0x68, 0x36, 0x89, 0x24, 0x1b, 0x69, 0x1a, 0x9b, 0x34, 0x45, 0xf1, 0xec, 0x3a, + 0x74, 0xe8, 0x2b, 0x89, 0xff, 0x5a, 0x10, 0xe3, 0x6a, 0xbc, 0x8d, 0x00, 0xba, 0x59, 0xda, 0x80, + 0xe5, 0xd2, 0x12, 0xec, 0x54, 0xa6, 0x4e, 0xa0, 0x79, 0x57, 0xaa, 0xd5, 0x97, 0x48, 0xf8, 0x12, + 0x76, 0x54, 0xfd, 0xf0, 0x10, 0xa9, 0xf1, 0x4c, 0xf2, 0x84, 0xf3, 0xdc, 0x99, 0x20, 0x86, 0xaa, + 0x90, 0xb1, 0x40, 0x15, 0x4f, 0x5e, 0x04, 0x9a, 0xc3, 0x1d, 0x05, 0x39, 0x78, 0x11, 0xe4, 0x0b, + 0x24, 0x01, 0x6a, 0xd2, 0x71, 0xd3, 0x02, 0x49, 0xf4, 0xef, 0x43, 0x57, 0xc6, 0xfe, 0xc4, 0x0f, + 0x55, 0x56, 0xdb, 0x5a, 0xf0, 0x11, 0x50, 0x04, 0x94, 0xe3, 0x5a, 0xd0, 0x54, 0x42, 0xb9, 0xa0, + 0x32, 0xa9, 0x31, 0xec, 0x0e, 0x2c, 0x25, 0x69, 0xec, 0xbb, 0x29, 0x2e, 0xc7, 0x9e, 0x4a, 0xcf, + 0xdc, 0x0a, 0xf7, 0x15, 0xf8, 0xe0, 0x45, 0x40, 0x95, 0x98, 0x3b, 0xb0, 0xe4, 0xca, 0x20, 0x9b, + 0x86, 0xb4, 0x32, 0x3b, 0x10, 0x21, 0x59, 0xe3, 0x06, 0xef, 0x2b, 0x30, 0xae, 0x6f, 0x47, 0x84, + 0xec, 0x26, 0xf4, 0x54, 0x3e, 0x6b, 0x8b, 0x38, 0x96, 0x71, 0x5e, 0x8a, 0x24, 0xd8, 0x13, 0x04, + 0x59, 0x2e, 0xc0, 0x41, 0x1a, 0x0b, 0x67, 0x4a, 0xe7, 0xf7, 0x01, 0xb4, 0xd2, 0xa3, 0x80, 0x4a, + 0xc1, 0x95, 0x85, 0xa5, 0xe0, 0x66, 0x7a, 0x84, 0x3b, 0x2b, 0x49, 0x44, 0x95, 0x4a, 0xb2, 0xba, + 0x87, 0xe2, 0x14, 0xf8, 0x53, 0x3f, 0xd5, 0x8f, 0x28, 0x54, 0xc7, 0x3a, 0x82, 0x0e, 0xcd, 0x40, + 0xdf, 0xc8, 0x2f, 0x3f, 0x2b, 0x6f, 0xbf, 0xfc, 0xbc, 0x0f, 0x3d, 0xad, 0xc5, 0x6f, 0xba, 0x4d, + 0xed, 0x2a, 0x3c, 0xb6, 0x13, 0xeb, 0x1e, 0x74, 0x7e, 0x1b, 0xd3, 0x6b, 0xfa, 0xc6, 0x0d, 0xe8, + 0xd2, 0xed, 0x82, 0x7d, 0x14, 0x48, 0xf7, 0xc4, 0x54, 0xbd, 0x09, 0xf4, 0x18, 0x21, 0x16, 0x40, + 0xfb, 0x79, 0xe8, 0xcb, 0x70, 0x23, 0x08, 0xac, 0x3f, 0x6c, 0x40, 0x07, 0x33, 0x5c, 0x52, 0x7a, + 0x4c, 0x58, 0xe9, 0x6a, 0x97, 0x32, 0xd2, 0xa9, 0x13, 0xe9, 0xeb, 0xdd, 0x2e, 0x02, 0x91, 0x6a, + 0xd7, 0x89, 0xe6, 0x12, 0xd6, 0xea, 0x5c, 0xc2, 0x7a, 0x53, 0xbd, 0x9d, 0x51, 0xf7, 0x1b, 0xc2, + 0xdc, 0x17, 0xd2, 0x04, 0x8f, 0x15, 0x88, 0xdd, 0x03, 0x46, 0x24, 0x4e, 0x10, 0x48, 0x72, 0xce, + 0x89, 0x08, 0x12, 0x9d, 0xdb, 0x0e, 0x11, 0xb3, 0xa1, 0x11, 0x07, 0x42, 0x49, 0x69, 0xc9, 0xd2, + 0x37, 0xe6, 0x2d, 0xfd, 0x5d, 0x00, 0x8c, 0x61, 0xa8, 0xe4, 0x95, 0xe8, 0x62, 0xc8, 0x4c, 0x62, + 0x59, 0x60, 0x3f, 0x47, 0x5c, 0xf1, 0x01, 0x0c, 0x73, 0x8a, 0x58, 0x8c, 0x6d, 0x37, 0x4c, 0x75, + 0x70, 0xd1, 0xd7, 0x54, 0x5c, 0x8c, 0x37, 0xc3, 0x74, 0x3e, 0x00, 0xe9, 0x9c, 0x0b, 0x40, 0xbe, + 0x0f, 0x17, 0xe7, 0xcc, 0x71, 0x12, 0x09, 0x57, 0xdf, 0x20, 0x7e, 0x81, 0x67, 0x28, 0xe8, 0x7f, + 0xa8, 0x8e, 0xec, 0x65, 0x91, 0x16, 0xe1, 0x96, 0x9f, 0x50, 0xa0, 0xf8, 0xa6, 0x20, 0xa7, 0xf7, + 0xbf, 0x15, 0xe4, 0xf4, 0x3f, 0x5f, 0x90, 0x33, 0xf8, 0x7c, 0x41, 0xce, 0x5c, 0x50, 0xb0, 0x34, + 0x1f, 0x14, 0x3c, 0x07, 0x20, 0x4b, 0x4d, 0x6e, 0xeb, 0x4d, 0xfc, 0xab, 0x7c, 0xe1, 0x67, 0x3c, + 0xff, 0x55, 0x01, 0x38, 0x70, 0xa6, 0x91, 0x72, 0x62, 0xec, 0x7b, 0xd0, 0x4d, 0xa8, 0x57, 0xce, + 0xa5, 0x6f, 0x94, 0x5e, 0xad, 0xe5, 0xa4, 0xba, 0x49, 0x79, 0x35, 0x24, 0x79, 0x9b, 0x8e, 0x5e, + 0xcd, 0x90, 0x5f, 0x45, 0x34, 0x0c, 0x01, 0x55, 0x80, 0x6f, 0xc3, 0x40, 0x13, 0x44, 0x22, 0x76, + 0x45, 0xa8, 0xec, 0x41, 0x85, 0xf7, 0x15, 0x74, 0x5f, 0x01, 0xd9, 0x47, 0x39, 0x99, 0xb2, 0x5b, + 0xc9, 0x82, 0x38, 0x5c, 0x0f, 0xd9, 0x54, 0x04, 0xd6, 0xba, 0xd9, 0x0a, 0x2d, 0xa4, 0x0d, 0x75, + 0xfc, 0xde, 0xf0, 0x02, 0xeb, 0x42, 0x4b, 0xcf, 0x3a, 0xac, 0xb0, 0x3e, 0x74, 0xe8, 0xf1, 0x0c, + 0xe1, 0xaa, 0xd6, 0x4f, 0x97, 0xa1, 0xbb, 0x1d, 0x26, 0x69, 0x9c, 0xa9, 0x63, 0x2e, 0xde, 0x88, + 0x34, 0xe8, 0x8d, 0x88, 0xbe, 0xd5, 0x52, 0xdb, 0xa0, 0x5b, 0xad, 0xfb, 0xd0, 0xd2, 0xaf, 0x91, + 0x74, 0x64, 0xb3, 0xf0, 0x29, 0x93, 0xa1, 0x61, 0x6b, 0xd0, 0xf6, 0xf4, 0x33, 0x29, 0x5d, 0x30, + 0x28, 0xbd, 0x5d, 0x32, 0x0f, 0xa8, 0x78, 0x4e, 0xc3, 0x6e, 0x42, 0xcd, 0x99, 0x4c, 0x48, 0x93, + 0xa9, 0xd4, 0x6d, 0x48, 0xe9, 0x71, 0x09, 0x47, 0x1c, 0x7b, 0x00, 0x1d, 0x32, 0x31, 0x54, 0x33, + 0x6b, 0xce, 0xcf, 0x69, 0x0a, 0x72, 0xca, 0xea, 0x50, 0x50, 0xf4, 0x00, 0x3a, 0x81, 0x94, 0x91, + 0x1a, 0xd0, 0x9a, 0x1f, 0x60, 0xca, 0x28, 0xbc, 0x1d, 0x98, 0x82, 0xca, 0x1d, 0x68, 0xa2, 0x63, + 0x95, 0x91, 0x76, 0x48, 0xa5, 0x75, 0x50, 0xfd, 0x81, 0x37, 0x12, 0xfc, 0x61, 0xeb, 0x00, 0x4a, + 0xdc, 0x69, 0xe6, 0xce, 0x3c, 0x3b, 0xf2, 0x84, 0x0d, 0x05, 0xd9, 0xe4, 0x6e, 0x8f, 0x61, 0xa8, + 0x82, 0xf3, 0xd2, 0x48, 0x30, 0xb7, 0x38, 0x66, 0xe4, 0x6c, 0xbe, 0xc7, 0x07, 0xf1, 0x6c, 0xfe, + 0xf7, 0x21, 0xb4, 0x22, 0x15, 0x9d, 0x92, 0x16, 0x76, 0xd7, 0x97, 0x8b, 0xa1, 0x3a, 0x6c, 0xe5, + 0x86, 0x82, 0x7d, 0x07, 0x06, 0xea, 0xb6, 0x61, 0xac, 0xc3, 0x34, 0x2a, 0x51, 0xcd, 0xbc, 0x82, + 0x99, 0x89, 0xe2, 0x78, 0x3f, 0x9d, 0x09, 0xea, 0xbe, 0x05, 0x7d, 0xa1, 0x03, 0x19, 0x3b, 0x71, + 0x9d, 0x90, 0x74, 0xb3, 0xbb, 0x7e, 0xa5, 0x18, 0x5e, 0x8e, 0x73, 0x78, 0x4f, 0x94, 0xa3, 0x9e, + 0x55, 0x68, 0xea, 0x1b, 0xb0, 0x21, 0x8d, 0x2a, 0xbd, 0xee, 0x54, 0xe5, 0x54, 0xae, 0xf1, 0xc8, + 0x97, 0x19, 0x73, 0x75, 0x22, 0xce, 0x46, 0xcb, 0xf3, 0x7c, 0x99, 0xad, 0x5e, 0xcf, 0x94, 0xc0, + 0x7f, 0x24, 0xce, 0xf0, 0x3c, 0x8a, 0x0b, 0x82, 0x11, 0x9b, 0x3f, 0x8f, 0xfc, 0x76, 0x80, 0x77, + 0xf2, 0x8b, 0x01, 0xf6, 0x64, 0xf6, 0xc2, 0x42, 0xd5, 0x7c, 0x2f, 0xd2, 0xd0, 0x77, 0x16, 0x0c, + 0x55, 0xa5, 0x5f, 0xbe, 0x14, 0xcd, 0xdd, 0x7b, 0xdc, 0x83, 0xb6, 0x8c, 0x3d, 0xba, 0x31, 0x1d, + 0x5d, 0x22, 0x4d, 0x5d, 0xd6, 0xf7, 0x34, 0xea, 0x19, 0x17, 0x19, 0xa0, 0x96, 0x54, 0x1d, 0x74, + 0xe0, 0x51, 0x2c, 0x3f, 0x13, 0x6e, 0xaa, 0x02, 0xa8, 0xcb, 0xe7, 0x1d, 0xb8, 0xc6, 0x53, 0x3c, + 0x75, 0x0b, 0x5a, 0xe6, 0x6e, 0xf0, 0xca, 0x39, 0x4a, 0x83, 0x62, 0x1f, 0xc3, 0xd2, 0xac, 0x51, + 0x4c, 0x46, 0x57, 0xcf, 0x51, 0x0f, 0x66, 0x6c, 0x20, 0x7a, 0x3d, 0x1d, 0x95, 0x8c, 0xce, 0xd7, + 0xe4, 0x09, 0x81, 0xd1, 0x99, 0x8e, 0x67, 0xde, 0x39, 0x1f, 0x9d, 0xe9, 0xd8, 0x66, 0x04, 0x2d, + 0x3f, 0x79, 0xea, 0xc7, 0x49, 0x3a, 0xba, 0x66, 0xbc, 0x10, 0x75, 0x31, 0x1a, 0xf2, 0x93, 0x1d, + 0x27, 0x49, 0x47, 0xd7, 0xcd, 0xc3, 0x3f, 0xec, 0xb1, 0xbb, 0xd0, 0xd4, 0xf7, 0xa6, 0x2b, 0xe7, + 0xac, 0x82, 0x7e, 0x6b, 0xc0, 0x35, 0x05, 0xfb, 0x2a, 0xb4, 0xe8, 0xd2, 0x4c, 0x46, 0xa3, 0x9b, + 0xf3, 0x52, 0xa4, 0x6e, 0xae, 0x78, 0x33, 0x50, 0x37, 0x58, 0x1f, 0x42, 0xcb, 0x04, 0x03, 0xd6, + 0xbc, 0x66, 0xe8, 0xa0, 0x80, 0x1b, 0x0a, 0x76, 0x1b, 0x1a, 0x53, 0xb4, 0x85, 0xa3, 0xaf, 0xcc, + 0x6b, 0xb9, 0x32, 0x91, 0x0a, 0xcb, 0x1e, 0x41, 0x37, 0xa1, 0x38, 0x50, 0x89, 0xff, 0x2d, 0x73, + 0xe1, 0x54, 0x3c, 0x65, 0x36, 0x41, 0x22, 0x87, 0xa4, 0x08, 0x18, 0x7f, 0x17, 0xae, 0x95, 0x6f, + 0xab, 0xcc, 0x55, 0x96, 0x7e, 0xc4, 0x7b, 0x9b, 0x66, 0xb9, 0xb9, 0x40, 0xc2, 0x66, 0x2f, 0xbd, + 0xf8, 0xd5, 0xe8, 0x0d, 0xb7, 0x61, 0x8f, 0x72, 0x4f, 0x83, 0x8a, 0x3d, 0xba, 0x73, 0x6e, 0x59, + 0xb9, 0xaf, 0x32, 0xfe, 0x87, 0x5c, 0xdc, 0x27, 0xd0, 0x1b, 0x67, 0xaf, 0x5f, 0x9f, 0x69, 0x19, + 0x19, 0x7d, 0x40, 0xe3, 0x4a, 0x79, 0x43, 0xe9, 0xee, 0x85, 0x77, 0xc7, 0xa5, 0x8b, 0x98, 0xab, + 0xd0, 0x72, 0x43, 0xdb, 0xf1, 0xbc, 0x78, 0xb4, 0xaa, 0xee, 0x5e, 0xdc, 0x70, 0xc3, 0xf3, 0xe8, + 0x12, 0x4b, 0x46, 0x82, 0xde, 0x22, 0xda, 0xbe, 0x37, 0xfa, 0xaa, 0xf2, 0x79, 0x06, 0xb4, 0xed, + 0xd1, 0x2b, 0x67, 0x27, 0x76, 0x82, 0x40, 0xa0, 0x77, 0x1f, 0xdd, 0xd5, 0xaf, 0x9c, 0x35, 0x68, + 0xdb, 0xc3, 0xb8, 0x70, 0xea, 0x9c, 0xda, 0x06, 0x32, 0xfa, 0x50, 0x3d, 0x21, 0x9d, 0x3a, 0xa7, + 0xfb, 0x1a, 0x84, 0xba, 0xad, 0x9e, 0xc7, 0x90, 0xc5, 0xbc, 0x37, 0xaf, 0xdb, 0x79, 0x0a, 0xcc, + 0x3b, 0x7e, 0x9e, 0x0d, 0x93, 0x3d, 0x20, 0x2b, 0x68, 0x07, 0xeb, 0xa3, 0xfb, 0xe7, 0xed, 0x81, + 0xce, 0xf0, 0xd1, 0x1e, 0x98, 0x64, 0x7f, 0x1d, 0x40, 0x99, 0x4b, 0x3a, 0xec, 0xb5, 0xf9, 0x31, + 0x79, 0xb0, 0xce, 0xd5, 0xdb, 0x10, 0x3a, 0xea, 0x75, 0x00, 0xba, 0xbf, 0x52, 0x63, 0x1e, 0xcc, + 0x8f, 0xc9, 0x83, 0x6f, 0xde, 0x79, 0x99, 0xc7, 0xe1, 0x0f, 0xa0, 0x93, 0x61, 0x98, 0x8d, 0x81, + 0xee, 0xe8, 0xe1, 0xbc, 0x0e, 0x98, 0x08, 0x9c, 0xb7, 0x33, 0xdd, 0xc2, 0x8f, 0x90, 0xdb, 0xa3, + 0x08, 0x68, 0xf4, 0xd1, 0xfc, 0x47, 0xf2, 0x30, 0x9d, 0x93, 0x77, 0x54, 0x11, 0xfb, 0x23, 0xe8, + 0x2a, 0xa6, 0xa9, 0x41, 0xeb, 0xf3, 0x32, 0x52, 0x84, 0x54, 0x5c, 0x71, 0x57, 0x0d, 0xbb, 0x0d, + 0x0d, 0x27, 0x8a, 0x82, 0xb3, 0xd1, 0xc7, 0xf3, 0x8a, 0xb1, 0x81, 0x60, 0xae, 0xb0, 0x28, 0x4a, + 0xd3, 0x2c, 0x48, 0x7d, 0xf3, 0x9c, 0xe3, 0x6b, 0xf3, 0xa2, 0x54, 0x7a, 0xed, 0xc6, 0xbb, 0xd3, + 0xd2, 0xd3, 0xb7, 0x7b, 0xd0, 0x8e, 0x64, 0x92, 0xda, 0xde, 0x34, 0x18, 0x3d, 0x3a, 0xe7, 0xc1, + 0xd4, 0x33, 0x06, 0xde, 0x8a, 0x54, 0xc3, 0x7a, 0x04, 0xbd, 0x0d, 0x7a, 0xa0, 0xef, 0x27, 0x64, + 0x0e, 0x6f, 0x43, 0x3d, 0xaf, 0xc5, 0xe4, 0x76, 0x96, 0x28, 0x5e, 0x8b, 0xed, 0x70, 0x2c, 0x39, + 0xa1, 0xad, 0x3f, 0xaf, 0x43, 0xf3, 0x40, 0x66, 0xb1, 0x2b, 0x7e, 0xf5, 0x53, 0x9f, 0xf7, 0xcc, + 0xa9, 0x87, 0xc5, 0xd5, 0xa2, 0x3a, 0x60, 0x42, 0xcf, 0x5f, 0x8a, 0x74, 0x8a, 0x32, 0xcf, 0x25, + 0x68, 0xa8, 0x4c, 0x4a, 0x3d, 0x11, 0x51, 0x1d, 0x92, 0xf8, 0x2c, 0x39, 0xf6, 0xe4, 0xab, 0x10, + 0x25, 0xbe, 0x41, 0x2f, 0x2c, 0xc0, 0x80, 0xb6, 0x3d, 0x7a, 0x75, 0x68, 0x08, 0x48, 0xa5, 0x9a, + 0x2a, 0x9c, 0x36, 0x40, 0x52, 0x2c, 0x53, 0x42, 0x6a, 0xbd, 0xa1, 0x84, 0xf4, 0x3e, 0xd4, 0x43, + 0xf3, 0x34, 0x21, 0xc7, 0xd3, 0x63, 0x70, 0x82, 0xb3, 0xbb, 0x90, 0xbf, 0x4f, 0xd2, 0xd1, 0xc9, + 0x9b, 0xdf, 0x2f, 0xad, 0x43, 0x27, 0xff, 0x4b, 0x87, 0x0e, 0x48, 0x2e, 0xad, 0x15, 0x7f, 0xf2, + 0x38, 0x34, 0x2d, 0x5e, 0x90, 0x2d, 0xa8, 0x2a, 0xd1, 0x35, 0xa3, 0xe2, 0x53, 0xf7, 0x8b, 0x54, + 0x95, 0xe8, 0x2a, 0xd2, 0x54, 0xd4, 0xfc, 0xc4, 0x76, 0x65, 0x98, 0xa4, 0xfa, 0x01, 0x59, 0xcb, + 0x4f, 0x36, 0xb1, 0xcb, 0xbe, 0x09, 0xfd, 0x58, 0xb8, 0x2f, 0xed, 0x69, 0x32, 0x51, 0x9f, 0xe8, + 0x97, 0x5f, 0x3c, 0x4e, 0x93, 0xc9, 0x0f, 0x84, 0x83, 0xfe, 0x55, 0x25, 0x18, 0x5d, 0xa4, 0xdd, + 0x4d, 0x26, 0x34, 0xeb, 0x4d, 0xe8, 0x1d, 0x05, 0x52, 0x4e, 0x8d, 0xd5, 0x1b, 0x50, 0x1d, 0xa9, + 0x4b, 0x30, 0xb5, 0x02, 0xeb, 0x8f, 0x2a, 0xd0, 0x46, 0xde, 0xa1, 0x04, 0x31, 0x06, 0xf5, 0xa9, + 0x1b, 0x65, 0x3a, 0x12, 0xa6, 0xb6, 0xfe, 0x73, 0x88, 0x92, 0x0d, 0xfd, 0xe7, 0x10, 0x3a, 0xb9, + 0x9a, 0xaa, 0x19, 0x61, 0x5b, 0x3d, 0x3b, 0x3f, 0x0b, 0xa4, 0xe3, 0x69, 0x79, 0x30, 0x5d, 0x76, + 0x19, 0x9a, 0x6e, 0x48, 0x29, 0xa3, 0x7a, 0xa6, 0xd2, 0x70, 0x43, 0x4c, 0x15, 0x15, 0xb8, 0xb8, + 0x78, 0x6d, 0xb8, 0x21, 0xa6, 0x3b, 0x7f, 0x51, 0x81, 0xe5, 0xfd, 0x58, 0xba, 0x22, 0x49, 0x76, + 0xd0, 0x0b, 0x3b, 0x14, 0x8a, 0x31, 0xa8, 0x53, 0x41, 0x48, 0xbd, 0xe1, 0xa6, 0x36, 0x4a, 0xae, + 0xca, 0xe7, 0xf3, 0x7c, 0xa3, 0xc6, 0x3b, 0x04, 0xa1, 0x74, 0x23, 0x47, 0xd3, 0xc0, 0x5a, 0x09, + 0x4d, 0xa5, 0xa4, 0xdb, 0x30, 0x28, 0xde, 0x8c, 0xd0, 0x0c, 0xfa, 0xcf, 0x1b, 0x39, 0x94, 0x66, + 0xb9, 0x01, 0xdd, 0x98, 0x78, 0xab, 0xa6, 0x69, 0x10, 0x0d, 0x28, 0x10, 0xce, 0x63, 0x1d, 0xc3, + 0x70, 0x3f, 0x16, 0x91, 0x13, 0x0b, 0x34, 0xd8, 0x53, 0xe2, 0xe1, 0x15, 0x68, 0x06, 0x22, 0x9c, + 0xa4, 0xc7, 0x7a, 0xbd, 0xba, 0x97, 0xff, 0x71, 0xa7, 0x5a, 0xfa, 0xe3, 0x0e, 0xf2, 0x32, 0x16, + 0x8e, 0xfe, 0x7f, 0x0f, 0xb5, 0x51, 0xb3, 0xc2, 0x2c, 0xd0, 0x45, 0xaa, 0x36, 0x57, 0x1d, 0xeb, + 0x67, 0x35, 0xe8, 0x6a, 0xce, 0xd0, 0x57, 0xd4, 0xa9, 0x54, 0xf2, 0x53, 0x19, 0x42, 0x2d, 0x79, + 0x11, 0xe8, 0x63, 0xc2, 0x26, 0xfb, 0x18, 0x6a, 0x81, 0x3f, 0xd5, 0xd9, 0xca, 0xf5, 0x19, 0xf3, + 0x3f, 0xcb, 0x5f, 0x2d, 0x38, 0x48, 0xcd, 0xae, 0x93, 0x79, 0x3e, 0xb5, 0x51, 0x44, 0x35, 0x4f, + 0xd0, 0x14, 0x9f, 0xa2, 0x1e, 0x20, 0x53, 0x1d, 0x97, 0x5e, 0x85, 0x18, 0xe5, 0xee, 0xf3, 0x8e, + 0x86, 0x6c, 0x7b, 0xec, 0x6b, 0xd0, 0x4e, 0x42, 0x27, 0x4a, 0x8e, 0x65, 0x9a, 0xe7, 0x27, 0xe9, + 0x69, 0xb8, 0xb6, 0xb9, 0x77, 0x78, 0x1a, 0x1e, 0x68, 0x8c, 0xfe, 0x58, 0x4e, 0xc9, 0xbe, 0x03, + 0xbd, 0x44, 0x24, 0x89, 0x7a, 0x07, 0x3a, 0x96, 0x5a, 0xe9, 0x2f, 0x97, 0x53, 0x0f, 0xc2, 0xe2, + 0xae, 0x8d, 0x88, 0x27, 0x05, 0x88, 0xfd, 0x00, 0x06, 0x66, 0x7c, 0x20, 0x27, 0x93, 0xbc, 0x9a, + 0x76, 0xfd, 0xdc, 0x0c, 0x3b, 0x84, 0x2e, 0xcd, 0xd3, 0x4f, 0xca, 0x08, 0xf6, 0x7d, 0x18, 0x44, + 0xea, 0x30, 0x6d, 0x5d, 0x76, 0x55, 0xc6, 0xe3, 0xda, 0x4c, 0xb4, 0x32, 0x73, 0xd8, 0xc5, 0xdb, + 0xae, 0x02, 0x9e, 0x58, 0xff, 0x59, 0x81, 0x6e, 0x69, 0xd5, 0xf4, 0x77, 0xaa, 0x44, 0xc4, 0xa6, + 0xca, 0x8a, 0x6d, 0x84, 0x1d, 0x4b, 0xfd, 0x2f, 0x84, 0x0e, 0xa7, 0x36, 0xc2, 0x62, 0xa9, 0x2b, + 0xf7, 0x1d, 0x4e, 0x6d, 0x34, 0x98, 0x3a, 0xa7, 0x54, 0xef, 0xb4, 0xe9, 0x50, 0xea, 0xbc, 0x57, + 0x00, 0xb7, 0x3d, 0xfa, 0xdf, 0x95, 0x93, 0x3a, 0x47, 0x4e, 0x62, 0x8a, 0xc2, 0x79, 0x1f, 0x55, + 0xf3, 0xa5, 0x88, 0x71, 0x2d, 0xda, 0xd6, 0x9a, 0x2e, 0x9e, 0x35, 0xd9, 0xb0, 0xd7, 0x32, 0x54, + 0xcf, 0x5b, 0x7a, 0xbc, 0x8d, 0x80, 0x1f, 0xcb, 0x90, 0x86, 0xe9, 0x93, 0x25, 0x7e, 0x76, 0xb8, + 0xe9, 0xa2, 0xa5, 0x7a, 0x91, 0x09, 0x8c, 0xe8, 0x3c, 0x7a, 0xdf, 0xd0, 0xe1, 0x2d, 0xea, 0x6f, + 0x7b, 0xd6, 0x3f, 0x57, 0x60, 0xf9, 0x1c, 0xb3, 0x31, 0x80, 0x42, 0x46, 0x9b, 0x27, 0x77, 0x3d, + 0xde, 0xc4, 0xee, 0xb6, 0x47, 0x88, 0x74, 0x4a, 0xc2, 0x54, 0xd5, 0x88, 0x74, 0x8a, 0x92, 0x74, + 0x19, 0x9a, 0xe9, 0x29, 0xed, 0x56, 0x29, 0x46, 0x23, 0x3d, 0xc5, 0x6d, 0x6e, 0x60, 0x42, 0x3b, + 0xb1, 0x03, 0xf1, 0x52, 0x04, 0xc4, 0x87, 0xc1, 0xfa, 0xad, 0xb7, 0x9c, 0xf2, 0xda, 0x8e, 0x9c, + 0xec, 0x20, 0x2d, 0xa6, 0xb8, 0xaa, 0x65, 0xfd, 0x10, 0xda, 0x06, 0xca, 0x3a, 0xd0, 0xd8, 0x12, + 0x47, 0xd9, 0x64, 0x78, 0x81, 0xb5, 0xa1, 0x8e, 0x23, 0x86, 0x15, 0x6c, 0x7d, 0xea, 0xc4, 0xe1, + 0xb0, 0x8a, 0x68, 0x2a, 0x88, 0x0e, 0x6b, 0xd8, 0xdc, 0x77, 0x42, 0xdf, 0x1d, 0xd6, 0xb1, 0xf9, + 0xd4, 0x49, 0x9d, 0x60, 0xd8, 0xb0, 0xfe, 0xb2, 0x01, 0xed, 0x7d, 0xfd, 0x75, 0xb6, 0x05, 0xfd, + 0xfc, 0x1f, 0x6d, 0x8b, 0x8b, 0x28, 0xfb, 0xf3, 0x0d, 0x2a, 0xa2, 0xf4, 0xa2, 0x52, 0x6f, 0xfe, + 0x7f, 0x71, 0xd5, 0x73, 0xff, 0x8b, 0x7b, 0x17, 0x6a, 0x2f, 0xe2, 0xb3, 0xd9, 0xcb, 0x95, 0xfd, 0xc0, 0x09, 0x39, 0x82, 0xd9, 0x47, 0xd0, 0xc5, 0x73, 0xb7, 0x13, 0x72, 0xff, 0xba, 0xf0, 0x50, - 0xfe, 0x6b, 0x21, 0xc1, 0x39, 0x20, 0x91, 0x0e, 0x11, 0xd6, 0xa0, 0xed, 0x1e, 0xfb, 0x81, 0x17, - 0x8b, 0x50, 0xdf, 0x4a, 0xb2, 0xf3, 0x5b, 0xe6, 0x39, 0x0d, 0xfb, 0x1e, 0xbd, 0xff, 0x32, 0x85, - 0x93, 0xa2, 0xc8, 0x3d, 0xa3, 0xb2, 0xa5, 0xd2, 0x0a, 0x5f, 0x2a, 0x91, 0x93, 0x4f, 0x2a, 0x1e, - 0x3a, 0xb7, 0xca, 0x0f, 0x9d, 0xd5, 0x1f, 0xa1, 0xc8, 0x85, 0xb4, 0xf3, 0x94, 0x09, 0x3d, 0xc8, + 0xfe, 0xf7, 0x21, 0xc1, 0x39, 0x20, 0x91, 0x0e, 0x11, 0xd6, 0xa0, 0xed, 0x1e, 0xfb, 0x81, 0x17, + 0x8b, 0x50, 0x5f, 0x5c, 0xb2, 0xf3, 0x4b, 0xe6, 0x39, 0x0d, 0xfb, 0x1e, 0x3d, 0x11, 0x33, 0x85, + 0x93, 0xa2, 0x0e, 0x3e, 0xa3, 0xb2, 0xa5, 0xd2, 0x0a, 0x5f, 0x2a, 0x91, 0x93, 0x4f, 0x2a, 0xde, + 0x42, 0xb7, 0xca, 0x6f, 0xa1, 0xd5, 0x7f, 0xa5, 0xc8, 0x85, 0xb4, 0xf3, 0x94, 0x09, 0x3d, 0xc8, 0x1d, 0xed, 0xed, 0x3b, 0xf3, 0xc1, 0xa2, 0xf1, 0x5a, 0xda, 0xeb, 0xdf, 0x82, 0x01, 0x46, 0x11, - 0xb6, 0x0a, 0x3e, 0xd0, 0x94, 0x80, 0xfe, 0xbb, 0x42, 0x96, 0x1c, 0x6f, 0x61, 0xf8, 0x81, 0xc2, - 0x78, 0x1b, 0x06, 0xe6, 0x5b, 0xf4, 0xeb, 0xb5, 0xae, 0x2e, 0x82, 0x6b, 0xa8, 0x7a, 0xbc, 0xb6, - 0x06, 0x17, 0xdd, 0x63, 0x27, 0x0c, 0x45, 0x60, 0x1f, 0x65, 0xe3, 0xb1, 0xf1, 0x00, 0x3d, 0xba, - 0x3a, 0x5a, 0xd6, 0xa8, 0xc7, 0x84, 0x21, 0x87, 0x62, 0x41, 0x3f, 0xf4, 0x03, 0x55, 0xe0, 0x25, - 0x6f, 0xd7, 0x27, 0xca, 0x6e, 0xe8, 0x07, 0x54, 0xe1, 0x45, 0x9f, 0xf7, 0x5d, 0x18, 0x66, 0x99, - 0xef, 0x25, 0x76, 0x2a, 0xcd, 0x7f, 0xc8, 0x74, 0x99, 0xb0, 0x54, 0x54, 0x78, 0x9e, 0xf9, 0xde, - 0xa1, 0xd4, 0xff, 0x22, 0xeb, 0x13, 0xbd, 0xe9, 0x5a, 0xdf, 0x85, 0x5e, 0x59, 0x76, 0x50, 0x16, - 0x29, 0x63, 0x1b, 0x5e, 0x60, 0x00, 0xcd, 0x3d, 0x19, 0x4f, 0x9d, 0x60, 0x58, 0xc1, 0xb6, 0x7a, - 0xfe, 0x3f, 0xac, 0xb2, 0x1e, 0xb4, 0x4d, 0x2a, 0x31, 0xac, 0x59, 0xdf, 0x82, 0xb6, 0xf9, 0x53, - 0x1c, 0xfd, 0x1b, 0x49, 0x7a, 0x42, 0x45, 0x61, 0xca, 0x32, 0xb5, 0x11, 0x40, 0x11, 0x98, 0xf9, - 0x77, 0x67, 0xb5, 0xf8, 0x77, 0xa7, 0xf5, 0x5b, 0xd0, 0x2b, 0x6f, 0xce, 0xd4, 0xc8, 0x2a, 0x45, - 0x8d, 0x6c, 0xc1, 0x28, 0xba, 0x0d, 0x89, 0xe5, 0xd4, 0x2e, 0x85, 0x0c, 0x6d, 0x04, 0xe0, 0x32, - 0xd6, 0x1f, 0x54, 0xa0, 0x41, 0xa1, 0x35, 0xb9, 0x16, 0x6c, 0x14, 0xba, 0xd3, 0xe0, 0x1d, 0x82, - 0xfc, 0x0f, 0x5e, 0xe5, 0xe4, 0xf7, 0x0a, 0xf5, 0xb7, 0xde, 0x2b, 0xdc, 0x7d, 0x01, 0x4d, 0xf5, - 0x87, 0x5a, 0xb6, 0x0c, 0xfd, 0xe7, 0xe1, 0x49, 0x28, 0x5f, 0x85, 0x0a, 0x30, 0xbc, 0xc0, 0x2e, - 0xc2, 0x92, 0x61, 0xba, 0xfe, 0xe7, 0xee, 0xb0, 0xc2, 0x86, 0xd0, 0xa3, 0x63, 0x35, 0x90, 0x2a, - 0x7b, 0x17, 0x46, 0xda, 0x39, 0x6c, 0xc9, 0x50, 0xec, 0xc9, 0xd4, 0x1f, 0x9f, 0x19, 0x6c, 0x8d, - 0x2d, 0x41, 0xf7, 0x20, 0x95, 0xd1, 0x81, 0x08, 0x3d, 0x3f, 0x9c, 0x0c, 0xeb, 0x77, 0x9f, 0x42, - 0x53, 0xfd, 0xcf, 0xb7, 0xb4, 0xa4, 0x02, 0x0c, 0x2f, 0x20, 0xf5, 0xa7, 0x8e, 0x9f, 0xfa, 0xe1, - 0x64, 0x4f, 0x9c, 0xa6, 0xca, 0x28, 0xed, 0x38, 0x49, 0x3a, 0xac, 0xb2, 0x01, 0x80, 0x9e, 0xf5, - 0x49, 0xe8, 0x0d, 0x6b, 0x8f, 0x37, 0x7f, 0xfe, 0x8b, 0xf7, 0x2b, 0x7f, 0xfb, 0x8b, 0xf7, 0x2b, - 0xff, 0xf0, 0x8b, 0xf7, 0x2f, 0xfc, 0xe4, 0x1f, 0xdf, 0xaf, 0xfc, 0xf8, 0xa3, 0xd2, 0xbf, 0x98, - 0xa7, 0x4e, 0x1a, 0xfb, 0xa7, 0xea, 0x3e, 0xc9, 0x74, 0x42, 0xf1, 0x20, 0x3a, 0x99, 0x3c, 0x88, - 0x8e, 0x1e, 0x18, 0x99, 0x3b, 0x6a, 0xd2, 0x9f, 0x93, 0x3f, 0xfe, 0xef, 0x00, 0x00, 0x00, 0xff, - 0xff, 0xae, 0x3f, 0xe9, 0xbd, 0x1b, 0x3d, 0x00, 0x00, + 0xb6, 0x0a, 0x3e, 0xd0, 0x94, 0x80, 0xfe, 0x47, 0x43, 0x96, 0x1c, 0x6f, 0x61, 0xf8, 0x81, 0xc2, + 0x78, 0x1b, 0x06, 0x66, 0x2f, 0xfa, 0x81, 0x5b, 0x57, 0xd7, 0xc9, 0x35, 0x54, 0xbd, 0x6f, 0x5b, + 0x83, 0x8b, 0xee, 0xb1, 0x13, 0x86, 0x22, 0xb0, 0x8f, 0xb2, 0xf1, 0xd8, 0x78, 0x80, 0x1e, 0xdd, + 0x2e, 0x2d, 0x6b, 0xd4, 0x63, 0xc2, 0x90, 0x43, 0xb1, 0xa0, 0x1f, 0xfa, 0x81, 0x2a, 0xf0, 0x92, + 0xb7, 0xeb, 0x13, 0x65, 0x37, 0xf4, 0x03, 0xaa, 0xf0, 0xa2, 0xcf, 0xfb, 0x2e, 0x0c, 0xb3, 0xcc, + 0xf7, 0x12, 0x3b, 0x95, 0xe6, 0x6f, 0x66, 0xba, 0x4c, 0x58, 0x2a, 0x2a, 0x3c, 0xcf, 0x7c, 0xef, + 0x50, 0xea, 0x3f, 0x9a, 0xf5, 0x89, 0xde, 0x74, 0xad, 0xef, 0x42, 0xaf, 0x2c, 0x3b, 0x28, 0x8b, + 0x94, 0xb1, 0x0d, 0x2f, 0x30, 0x80, 0xe6, 0x9e, 0x8c, 0xa7, 0x4e, 0x30, 0xac, 0x60, 0x5b, 0xfd, + 0x43, 0x60, 0x58, 0x65, 0x3d, 0x68, 0x9b, 0x54, 0x62, 0x58, 0xb3, 0xbe, 0x05, 0x6d, 0xf3, 0xbf, + 0x39, 0xfa, 0xc3, 0x92, 0xf4, 0x84, 0x8a, 0xc2, 0x94, 0x65, 0x6a, 0x23, 0x80, 0x22, 0x30, 0xf3, + 0x07, 0xd0, 0x6a, 0xf1, 0x07, 0x50, 0xeb, 0xb7, 0xa0, 0x57, 0x5e, 0x9c, 0xa9, 0x91, 0x55, 0x8a, + 0x1a, 0xd9, 0x82, 0x51, 0x74, 0x61, 0x12, 0xcb, 0xa9, 0x5d, 0x0a, 0x19, 0xda, 0x08, 0xc0, 0xcf, + 0x58, 0x7f, 0x50, 0x81, 0x06, 0x85, 0xd6, 0xe4, 0x5a, 0xb0, 0x51, 0xe8, 0x4e, 0x83, 0x77, 0x08, + 0xf2, 0x3f, 0x78, 0xb8, 0x93, 0xdf, 0x2b, 0xd4, 0xdf, 0x7a, 0xaf, 0x70, 0xf7, 0x05, 0x34, 0xd5, + 0x7f, 0x6e, 0xd9, 0x32, 0xf4, 0x9f, 0x87, 0x27, 0xa1, 0x7c, 0x15, 0x2a, 0xc0, 0xf0, 0x02, 0xbb, + 0x08, 0x4b, 0x86, 0xe9, 0xfa, 0xcf, 0xbd, 0xc3, 0x0a, 0x1b, 0x42, 0x8f, 0x8e, 0xd5, 0x40, 0xaa, + 0xec, 0x5d, 0x18, 0x69, 0xe7, 0xb0, 0x25, 0x43, 0xb1, 0x27, 0x53, 0x7f, 0x7c, 0x66, 0xb0, 0x35, + 0xb6, 0x04, 0xdd, 0x83, 0x54, 0x46, 0x07, 0x22, 0xf4, 0xfc, 0x70, 0x32, 0xac, 0xdf, 0x7d, 0x0a, + 0x4d, 0xf5, 0x57, 0xe0, 0xd2, 0x27, 0x15, 0x60, 0x78, 0x01, 0xa9, 0x3f, 0x75, 0xfc, 0xd4, 0x0f, + 0x27, 0x7b, 0xe2, 0x34, 0x55, 0x46, 0x69, 0xc7, 0x49, 0xd2, 0x61, 0x95, 0x0d, 0x00, 0xf4, 0xac, + 0x4f, 0x42, 0x6f, 0x58, 0x7b, 0xbc, 0xf9, 0xf3, 0x5f, 0xbc, 0x5f, 0xf9, 0xdb, 0x5f, 0xbc, 0x5f, + 0xf9, 0x87, 0x5f, 0xbc, 0x7f, 0xe1, 0x27, 0xff, 0xf8, 0x7e, 0xe5, 0xc7, 0x1f, 0x95, 0xfe, 0xe8, + 0x3c, 0x75, 0xd2, 0xd8, 0x3f, 0x55, 0x57, 0x4e, 0xa6, 0x13, 0x8a, 0x07, 0xd1, 0xc9, 0xe4, 0x41, + 0x74, 0xf4, 0xc0, 0xc8, 0xdc, 0x51, 0x93, 0xfe, 0xbf, 0xfc, 0xf1, 0x7f, 0x07, 0x00, 0x00, 0xff, + 0xff, 0xac, 0xec, 0xd9, 0x80, 0x3e, 0x3d, 0x00, 0x00, } func (m *Message) Marshal() (dAtA []byte, err error) { @@ -8567,6 +8576,16 @@ func (m *ExternalScan) MarshalToSizedBuffer(dAtA []byte) (int, error) { i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } + if m.IgnoreError { + i-- + if m.IgnoreError { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x58 + } if m.ColumnListLen != 0 { i = encodeVarintPipeline(dAtA, i, uint64(m.ColumnListLen)) i-- @@ -12043,6 +12062,9 @@ func (m *ExternalScan) ProtoSize() (n int) { if m.ColumnListLen != 0 { n += 1 + sovPipeline(uint64(m.ColumnListLen)) } + if m.IgnoreError { + n += 2 + } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } @@ -21735,6 +21757,26 @@ func (m *ExternalScan) Unmarshal(dAtA []byte) error { break } } + case 11: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field IgnoreError", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowPipeline + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.IgnoreError = bool(v != 0) default: iNdEx = preIndex skippy, err := skipPipeline(dAtA[iNdEx:]) diff --git a/pkg/sql/colexec/external/reader_csv.go b/pkg/sql/colexec/external/reader_csv.go index d9409c3669cb2..c25b011ae1ac4 100644 --- a/pkg/sql/colexec/external/reader_csv.go +++ b/pkg/sql/colexec/external/reader_csv.go @@ -122,6 +122,7 @@ func (r *CsvReader) makeBatchRows(proc *process.Process, bat *batch.Batch) (file var finish bool var row []csvparser.Field var unexpectEOF bool + ignoreError := param.IgnoreError for i := 0; i < OneBatchMaxRow; i++ { select { @@ -135,6 +136,10 @@ func (r *CsvReader) makeBatchRows(proc *process.Process, bat *batch.Batch) (file if err != nil { if err == io.EOF { finish = true + } else if ignoreError { + logutil.Warnf("load data ignore error: read csv row failed: %v", err) + i-- + continue } else { return false, err } @@ -174,11 +179,28 @@ func (r *CsvReader) makeBatchRows(proc *process.Process, bat *batch.Batch) (file unexpectEOF = true continue } + if ignoreError { + logutil.Warnf("load data ignore error: parse json line failed: %v", err) + i-- + continue + } return false, err } } if err = getOneRowData(proc, bat, row, rowIdx, param); err != nil { + if ignoreError { + logutil.Warnf("load data ignore error: convert row data failed: %v", err) + // rollback partially appended columns + for j := 0; j < bat.VectorCount(); j++ { + vec := bat.GetVector(int32(j)) + if vec.Length() > rowIdx { + vec.SetLength(rowIdx) + } + } + i-- + continue + } return false, err } diff --git a/pkg/sql/colexec/external/types.go b/pkg/sql/colexec/external/types.go index 903a3e897b832..f769b576b5ced 100644 --- a/pkg/sql/colexec/external/types.go +++ b/pkg/sql/colexec/external/types.go @@ -52,6 +52,7 @@ type ExternalParam struct { type ExParamConst struct { ParallelLoad bool StrictSqlMode bool + IgnoreError bool Close byte maxBatchSize uint64 Idx int diff --git a/pkg/sql/compile/operator.go b/pkg/sql/compile/operator.go index 33c95e7658177..c0b408bd50cec 100644 --- a/pkg/sql/compile/operator.go +++ b/pkg/sql/compile/operator.go @@ -350,6 +350,7 @@ func dupOperator(sourceOp vm.Operator, index int, maxParallel int) vm.Operator { FileOffsetTotal: t.Es.FileOffsetTotal, Extern: t.Es.Extern, StrictSqlMode: t.Es.StrictSqlMode, + IgnoreError: t.Es.IgnoreError, }, ExParam: external.ExParam{ Filter: &external.FilterParam{ @@ -898,6 +899,7 @@ func constructExternal(node *plan.Node, param *tree.ExternParam, ctx context.Con FileSize: FileSize, ClusterTable: node.GetClusterTable(), StrictSqlMode: strictSqlMode, + IgnoreError: param.IgnoreError, }, ExParam: external.ExParam{ Fileparam: new(external.ExFileparam), diff --git a/pkg/sql/compile/remoterun.go b/pkg/sql/compile/remoterun.go index b97e515b97d40..dea141592ea2e 100644 --- a/pkg/sql/compile/remoterun.go +++ b/pkg/sql/compile/remoterun.go @@ -659,6 +659,7 @@ func convertToPipelineInstruction(op vm.Operator, proc *process.Process, ctx *sc FileList: t.Es.FileList, Filter: t.Es.Filter.FilterExpr, StrictSqlMode: t.Es.StrictSqlMode, + IgnoreError: t.Es.IgnoreError, } in.ProjectList = t.ProjectList case *source.Source: @@ -1104,6 +1105,7 @@ func convertToVmOperator(opr *pipeline.Instruction, ctx *scopeContext, eng engin CreateSql: t.CreateSql, FileList: t.FileList, StrictSqlMode: t.StrictSqlMode, + IgnoreError: t.IgnoreError, }, ExParam: external.ExParam{ Fileparam: new(external.ExFileparam), diff --git a/pkg/sql/parsers/tree/update.go b/pkg/sql/parsers/tree/update.go index 2b209da92bcd6..880fc382b1765 100644 --- a/pkg/sql/parsers/tree/update.go +++ b/pkg/sql/parsers/tree/update.go @@ -173,6 +173,7 @@ type ExParam struct { Local bool Parallel bool Strict bool + IgnoreError bool } type S3Parameter struct { diff --git a/pkg/sql/plan/bind_load.go b/pkg/sql/plan/bind_load.go index 3d41757ff5904..d46533e344f79 100644 --- a/pkg/sql/plan/bind_load.go +++ b/pkg/sql/plan/bind_load.go @@ -50,6 +50,9 @@ func (builder *QueryBuilder) bindExternalScan( ctx := builder.compCtx stmt.Param.Local = stmt.Local + if _, ok := stmt.DuplicateHandling.(*tree.DuplicateKeyIgnore); ok { + stmt.Param.IgnoreError = true + } fileName, err := checkFileExist(stmt.Param, ctx) if err != nil { return -1, nil, err diff --git a/pkg/sql/plan/build_load.go b/pkg/sql/plan/build_load.go index cc47dc9e41a0e..717956f6e060e 100644 --- a/pkg/sql/plan/build_load.go +++ b/pkg/sql/plan/build_load.go @@ -223,6 +223,9 @@ func buildLoad(stmt *tree.Load, ctx CompilerContext, isPrepareStmt bool) (*Plan, } stmt.Param.Local = stmt.Local + if _, ok := stmt.DuplicateHandling.(*tree.DuplicateKeyIgnore); ok { + stmt.Param.IgnoreError = true + } fileName, err := checkFileExist(stmt.Param, ctx) if err != nil { return nil, err diff --git a/proto/pipeline.proto b/proto/pipeline.proto index e1605e0bddd74..6bf08eac4a9ec 100644 --- a/proto/pipeline.proto +++ b/proto/pipeline.proto @@ -353,6 +353,7 @@ message ExternalScan { plan.Expr filter = 8; bool strict_sql_mode = 9; int32 column_list_len = 10; + bool ignore_error = 11; } message StreamScan { diff --git a/test/distributed/cases/load_data/load_data_ignore_error.result b/test/distributed/cases/load_data/load_data_ignore_error.result new file mode 100644 index 0000000000000..6cfd96cafe53d --- /dev/null +++ b/test/distributed/cases/load_data/load_data_ignore_error.result @@ -0,0 +1,15 @@ +drop table if exists t_ignore_error; +create table t_ignore_error( +col1 int, +col2 varchar(50), +col3 int +); +load data infile '$resources/load_data/ignore_error.csv' into table t_ignore_error fields terminated by ','; +[unknown result because it is related to issue#23937] +load data infile '$resources/load_data/ignore_error.csv' ignore into table t_ignore_error fields terminated by ','; +select * from t_ignore_error order by col1; +col1 col2 col3 +1 hello 100 +3 foo 300 +5 bar 500 +drop table t_ignore_error; diff --git a/test/distributed/cases/load_data/load_data_ignore_error.sql b/test/distributed/cases/load_data/load_data_ignore_error.sql new file mode 100644 index 0000000000000..8a9e16d1a6c87 --- /dev/null +++ b/test/distributed/cases/load_data/load_data_ignore_error.sql @@ -0,0 +1,18 @@ +-- test load data with ignore error rows +drop table if exists t_ignore_error; +create table t_ignore_error( +col1 int, +col2 varchar(50), +col3 int +); + +-- without IGNORE, error rows cause failure (col3 'abc' is not int) +-- @bvt:issue#23937 +load data infile '$resources/load_data/ignore_error.csv' into table t_ignore_error fields terminated by ','; +-- @bvt:issue + +-- with IGNORE, error rows are skipped +load data infile '$resources/load_data/ignore_error.csv' ignore into table t_ignore_error fields terminated by ','; +select * from t_ignore_error order by col1; + +drop table t_ignore_error; diff --git a/test/distributed/resources/load_data/ignore_error.csv b/test/distributed/resources/load_data/ignore_error.csv new file mode 100644 index 0000000000000..9d1197e4edc94 --- /dev/null +++ b/test/distributed/resources/load_data/ignore_error.csv @@ -0,0 +1,5 @@ +1,hello,100 +2,world,abc +3,foo,300 +bad_row +5,bar,500 From 99921cb4ecf855eb7b8d160541e1320e33f21258 Mon Sep 17 00:00:00 2001 From: Cao Kai Date: Tue, 31 Mar 2026 20:45:31 +0800 Subject: [PATCH 2/8] fix: remove IgnoreError from build_load.go fallback path to fix coverage The buildLoad function is a fallback path that is not exercised in CI, so adding code there drops coverage below 75%. The primary path in bindExternalScan (bind_load.go) already handles IgnoreError correctly. --- pkg/sql/plan/build_load.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/pkg/sql/plan/build_load.go b/pkg/sql/plan/build_load.go index 717956f6e060e..cc47dc9e41a0e 100644 --- a/pkg/sql/plan/build_load.go +++ b/pkg/sql/plan/build_load.go @@ -223,9 +223,6 @@ func buildLoad(stmt *tree.Load, ctx CompilerContext, isPrepareStmt bool) (*Plan, } stmt.Param.Local = stmt.Local - if _, ok := stmt.DuplicateHandling.(*tree.DuplicateKeyIgnore); ok { - stmt.Param.IgnoreError = true - } fileName, err := checkFileExist(stmt.Param, ctx) if err != nil { return nil, err From 8c35ac351b2129ebbd9b63519718d26b376f92b1 Mon Sep 17 00:00:00 2001 From: Cao Kai Date: Wed, 1 Apr 2026 14:45:42 +0800 Subject: [PATCH 3/8] feat: return warnings count to client for ignored error rows Add atomic Warnings counter to BaseProcess. Increment it when skipping error rows in CsvReader.makeBatchRows. Read it in status_stmt.go to set the warnings field in the MySQL OK packet, so clients can see the number of skipped rows via warning count. --- pkg/frontend/status_stmt.go | 3 +++ pkg/sql/colexec/external/reader_csv.go | 3 +++ pkg/vm/process/types.go | 3 +++ 3 files changed, 9 insertions(+) diff --git a/pkg/frontend/status_stmt.go b/pkg/frontend/status_stmt.go index 554070693cd04..390d93b1ac81b 100644 --- a/pkg/frontend/status_stmt.go +++ b/pkg/frontend/status_stmt.go @@ -285,6 +285,9 @@ func (resper *MysqlResp) respStatus(ses *Session, isIssue3482 = true localFileName = st.Param.Filepath } + if w := execCtx.proc.Base.Warnings.Load(); w > 0 { + res.warnings = uint16(w) + } } if err2 := resper.mysqlRrWr.WriteResponse(execCtx.reqCtx, res); err2 != nil { diff --git a/pkg/sql/colexec/external/reader_csv.go b/pkg/sql/colexec/external/reader_csv.go index c25b011ae1ac4..472b3f991a8e6 100644 --- a/pkg/sql/colexec/external/reader_csv.go +++ b/pkg/sql/colexec/external/reader_csv.go @@ -138,6 +138,7 @@ func (r *CsvReader) makeBatchRows(proc *process.Process, bat *batch.Batch) (file finish = true } else if ignoreError { logutil.Warnf("load data ignore error: read csv row failed: %v", err) + proc.Base.Warnings.Add(1) i-- continue } else { @@ -181,6 +182,7 @@ func (r *CsvReader) makeBatchRows(proc *process.Process, bat *batch.Batch) (file } if ignoreError { logutil.Warnf("load data ignore error: parse json line failed: %v", err) + proc.Base.Warnings.Add(1) i-- continue } @@ -191,6 +193,7 @@ func (r *CsvReader) makeBatchRows(proc *process.Process, bat *batch.Batch) (file if err = getOneRowData(proc, bat, row, rowIdx, param); err != nil { if ignoreError { logutil.Warnf("load data ignore error: convert row data failed: %v", err) + proc.Base.Warnings.Add(1) // rollback partially appended columns for j := 0; j < bat.VectorCount(); j++ { vec := bat.GetVector(int32(j)) diff --git a/pkg/vm/process/types.go b/pkg/vm/process/types.go index a10a0f6a3f2a6..5238e8fa35f0c 100644 --- a/pkg/vm/process/types.go +++ b/pkg/vm/process/types.go @@ -314,6 +314,9 @@ type BaseProcess struct { // DivByZeroErrorMode caches whether division by zero should error (true) or return NULL (false) // -1: not initialized, 0: return NULL, 1: return error DivByZeroErrorMode int32 + + // Warnings is an atomic counter for warnings generated during execution (e.g., ignored error rows in LOAD DATA). + Warnings atomic.Uint32 } // Process contains context used in query execution From 1815761e2b8950762851bcb0bd299956f3e55ea5 Mon Sep 17 00:00:00 2001 From: Cao Kai Date: Wed, 1 Apr 2026 16:24:07 +0800 Subject: [PATCH 4/8] fix: reset Warnings counter in SetStmtProfile to prevent cross-statement leak --- pkg/vm/process/types.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/vm/process/types.go b/pkg/vm/process/types.go index 5238e8fa35f0c..b5203d77ee3fb 100644 --- a/pkg/vm/process/types.go +++ b/pkg/vm/process/types.go @@ -373,6 +373,7 @@ func (proc *Process) SetStmtProfile(sp *StmtProfile) { // Reset division by zero cache for new statement // Each statement must recompute based on its own type and sql_mode atomic.StoreInt32(&proc.Base.DivByZeroErrorMode, -1) + proc.Base.Warnings.Store(0) } func (proc *Process) GetStmtProfile() *StmtProfile { From 76d4ccc913427de4e5fbf6bf37e14b5f7162c76e Mon Sep 17 00:00:00 2001 From: Cao Kai Date: Wed, 1 Apr 2026 22:14:33 +0800 Subject: [PATCH 5/8] fix: clamp warnings to MaxUint16 and restore IgnoreError in buildLoad fallback - Clamp warnings count to math.MaxUint16 to prevent uint16 wrap-around when ignored rows exceed 65535. - Restore IgnoreError setting in buildLoad() fallback path so IGNORE semantics are not silently lost when bindLoad returns ErrUnsupportedDML. --- pkg/frontend/status_stmt.go | 4 ++++ pkg/sql/plan/build_load.go | 3 +++ 2 files changed, 7 insertions(+) diff --git a/pkg/frontend/status_stmt.go b/pkg/frontend/status_stmt.go index 390d93b1ac81b..d9e9b52ee3d56 100644 --- a/pkg/frontend/status_stmt.go +++ b/pkg/frontend/status_stmt.go @@ -15,6 +15,7 @@ package frontend import ( + "math" "time" "github.com/matrixorigin/matrixone/pkg/common/moerr" @@ -286,6 +287,9 @@ func (resper *MysqlResp) respStatus(ses *Session, localFileName = st.Param.Filepath } if w := execCtx.proc.Base.Warnings.Load(); w > 0 { + if w > math.MaxUint16 { + w = math.MaxUint16 + } res.warnings = uint16(w) } } diff --git a/pkg/sql/plan/build_load.go b/pkg/sql/plan/build_load.go index cc47dc9e41a0e..717956f6e060e 100644 --- a/pkg/sql/plan/build_load.go +++ b/pkg/sql/plan/build_load.go @@ -223,6 +223,9 @@ func buildLoad(stmt *tree.Load, ctx CompilerContext, isPrepareStmt bool) (*Plan, } stmt.Param.Local = stmt.Local + if _, ok := stmt.DuplicateHandling.(*tree.DuplicateKeyIgnore); ok { + stmt.Param.IgnoreError = true + } fileName, err := checkFileExist(stmt.Param, ctx) if err != nil { return nil, err From a41bcd9b00d3c1ff6eaede1176c740b9424dd772 Mon Sep 17 00:00:00 2001 From: Cao Kai Date: Tue, 7 Apr 2026 17:19:14 +0800 Subject: [PATCH 6/8] fix: clear null bitmap when rolling back load rows --- pkg/sql/colexec/external/reader_csv.go | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/pkg/sql/colexec/external/reader_csv.go b/pkg/sql/colexec/external/reader_csv.go index 472b3f991a8e6..be94c0eef974b 100644 --- a/pkg/sql/colexec/external/reader_csv.go +++ b/pkg/sql/colexec/external/reader_csv.go @@ -24,6 +24,7 @@ import ( "github.com/matrixorigin/matrixone/pkg/common/moerr" "github.com/matrixorigin/matrixone/pkg/container/batch" "github.com/matrixorigin/matrixone/pkg/container/bytejson" + "github.com/matrixorigin/matrixone/pkg/container/nulls" "github.com/matrixorigin/matrixone/pkg/container/types" "github.com/matrixorigin/matrixone/pkg/logutil" "github.com/matrixorigin/matrixone/pkg/sql/crt" @@ -167,10 +168,6 @@ func (r *CsvReader) makeBatchRows(proc *process.Process, bat *batch.Batch) (file } } - for j := 0; j < len(row); j++ { - curBatchSize += uint64(len(row[j].Val)) - } - rowIdx := i if param.Extern.Format == tree.JSONLINE { row, err = r.transJson2Lines(proc.Ctx, row[0].Val, param.Attrs, param.Cols, param.Extern.JsonData) @@ -197,7 +194,9 @@ func (r *CsvReader) makeBatchRows(proc *process.Process, bat *batch.Batch) (file // rollback partially appended columns for j := 0; j < bat.VectorCount(); j++ { vec := bat.GetVector(int32(j)) - if vec.Length() > rowIdx { + vecLen := vec.Length() + if vecLen > rowIdx { + nulls.RemoveRange(vec.GetNulls(), uint64(rowIdx), uint64(vecLen)) vec.SetLength(rowIdx) } } @@ -206,6 +205,9 @@ func (r *CsvReader) makeBatchRows(proc *process.Process, bat *batch.Batch) (file } return false, err } + for j := 0; j < len(row); j++ { + curBatchSize += uint64(len(row[j].Val)) + } if curBatchSize >= param.maxBatchSize { break From 3ca239512c3d8fd028059165b5326b798160d31a Mon Sep 17 00:00:00 2001 From: Cao Kai Date: Thu, 16 Apr 2026 16:07:32 +0800 Subject: [PATCH 7/8] fix: limit ignore to csv parse errors and propagate remote warnings --- pkg/pb/pipeline/pipeline.go | 4 + pkg/pb/pipeline/pipeline.pb.go | 765 +++++++++--------- pkg/sql/colexec/external/reader_csv.go | 22 - pkg/sql/compile/remoterunClient.go | 30 +- pkg/sql/compile/remoterunClient_test.go | 34 + pkg/sql/compile/remoterunServer.go | 5 + proto/pipeline.proto | 1 + .../load_data/load_data_ignore_error.result | 10 +- .../load_data/load_data_ignore_error.sql | 17 +- .../load_data/ignore_parse_error.csv | 2 + 10 files changed, 492 insertions(+), 398 deletions(-) create mode 100644 test/distributed/resources/load_data/ignore_parse_error.csv diff --git a/pkg/pb/pipeline/pipeline.go b/pkg/pb/pipeline/pipeline.go index 8dd750c551c77..97d63ac365abb 100644 --- a/pkg/pb/pipeline/pipeline.go +++ b/pkg/pb/pipeline/pipeline.go @@ -69,6 +69,10 @@ func (m *Message) SetProcData(data []byte) { m.ProcInfoData = data } +func (m *Message) SetWarningCount(n uint32) { + m.WarningCount = n +} + func (m *Message) DebugString() string { errInfo := "none" if len(m.Err) > 0 { diff --git a/pkg/pb/pipeline/pipeline.pb.go b/pkg/pb/pipeline/pipeline.pb.go index d7576ff4b2820..5bf0180285b48 100644 --- a/pkg/pb/pipeline/pipeline.pb.go +++ b/pkg/pb/pipeline/pipeline.pb.go @@ -6,16 +6,15 @@ package pipeline import ( encoding_binary "encoding/binary" fmt "fmt" - io "io" - math "math" - math_bits "math/bits" - _ "github.com/gogo/protobuf/gogoproto" proto "github.com/gogo/protobuf/proto" lock "github.com/matrixorigin/matrixone/pkg/pb/lock" plan "github.com/matrixorigin/matrixone/pkg/pb/plan" timestamp "github.com/matrixorigin/matrixone/pkg/pb/timestamp" txn "github.com/matrixorigin/matrixone/pkg/pb/txn" + io "io" + math "math" + math_bits "math/bits" ) // Reference imports to suppress errors if they are not otherwise used. @@ -201,6 +200,7 @@ type Message struct { Uuid []byte `protobuf:"bytes,8,opt,name=uuid,proto3" json:"uuid,omitempty"` NeedNotReply bool `protobuf:"varint,9,opt,name=needNotReply,proto3" json:"needNotReply,omitempty"` DebugMsg string `protobuf:"bytes,10,opt,name=debugMsg,proto3" json:"debugMsg,omitempty"` + WarningCount uint32 `protobuf:"varint,11,opt,name=warning_count,json=warningCount,proto3" json:"warning_count,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -309,6 +309,13 @@ func (m *Message) GetDebugMsg() string { return "" } +func (m *Message) GetWarningCount() uint32 { + if m != nil { + return m.WarningCount + } + return 0 +} + type Connector struct { PipelineId int32 `protobuf:"varint,1,opt,name=pipeline_id,json=pipelineId,proto3" json:"pipeline_id,omitempty"` ConnectorIndex int32 `protobuf:"varint,2,opt,name=connector_index,json=connectorIndex,proto3" json:"connector_index,omitempty"` @@ -5212,371 +5219,372 @@ func init() { func init() { proto.RegisterFile("pipeline.proto", fileDescriptor_7ac67a7adf3df9c7) } var fileDescriptor_7ac67a7adf3df9c7 = []byte{ - // 5817 bytes of a gzipped FileDescriptorProto + // 5834 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7b, 0xcd, 0x6f, 0x1c, 0xc9, 0x75, 0xb8, 0xe6, 0x7b, 0xe6, 0xcd, 0x07, 0x87, 0xa5, 0xaf, 0x59, 0x69, 0x77, 0x45, 0xb5, 0x25, 0x2d, 0xad, 0x95, 0x28, 0x2d, 0xd7, 0xb2, 0xd7, 0x3f, 0xff, 0xfc, 0x41, 0x91, 0x92, 0x4d, 0x9b, 0xa4, 0x98, 0x22, 0x95, 0x45, 0x7c, 0x48, 0xa3, 0xd9, 0x5d, 0x33, 0xec, 0x65, 0x4f, 0x57, 0xab, - 0x3f, 0x24, 0x52, 0xa7, 0x00, 0x09, 0x10, 0x20, 0xff, 0x40, 0x0e, 0xb9, 0x18, 0xbe, 0x04, 0x0e, - 0x12, 0x24, 0x40, 0xfe, 0x81, 0x1c, 0x7d, 0xcc, 0x29, 0xc7, 0x20, 0x70, 0x4e, 0x41, 0x82, 0x5c, - 0xf2, 0x01, 0x5f, 0x02, 0x04, 0xef, 0x55, 0x55, 0x77, 0xcf, 0x70, 0x24, 0xef, 0x6e, 0x02, 0x5f, - 0xe2, 0xd3, 0x54, 0xbd, 0xf7, 0xaa, 0xba, 0xea, 0xd5, 0xfb, 0xae, 0x1a, 0x18, 0x44, 0x7e, 0x24, - 0x02, 0x3f, 0x14, 0x6b, 0x51, 0x2c, 0x53, 0xc9, 0xda, 0xa6, 0x7f, 0xed, 0xfe, 0xc4, 0x4f, 0x8f, - 0xb3, 0xa3, 0x35, 0x57, 0x4e, 0x1f, 0x4c, 0xe4, 0x44, 0x3e, 0x20, 0x82, 0xa3, 0x6c, 0x4c, 0x3d, - 0xea, 0x50, 0x4b, 0x0d, 0xbc, 0x06, 0x81, 0x74, 0x4f, 0x4c, 0x3b, 0x0a, 0x9c, 0x50, 0xb7, 0x97, - 0x52, 0x7f, 0x2a, 0x92, 0xd4, 0x99, 0x46, 0x1a, 0xd0, 0x49, 0x4f, 0x35, 0xce, 0xfa, 0x93, 0x2a, - 0xb4, 0x76, 0x45, 0x92, 0x38, 0x13, 0xc1, 0x2c, 0xa8, 0x25, 0xbe, 0x37, 0xaa, 0xac, 0x54, 0x56, - 0x07, 0xeb, 0xc3, 0xb5, 0x7c, 0x59, 0x07, 0xa9, 0x93, 0x66, 0x09, 0x47, 0x24, 0xd2, 0xb8, 0x53, - 0x6f, 0x54, 0x9d, 0xa7, 0xd9, 0x15, 0xe9, 0xb1, 0xf4, 0x38, 0x22, 0xd9, 0x10, 0x6a, 0x22, 0x8e, - 0x47, 0xb5, 0x95, 0xca, 0x6a, 0x8f, 0x63, 0x93, 0x31, 0xa8, 0x7b, 0x4e, 0xea, 0x8c, 0xea, 0x04, - 0xa2, 0x36, 0xbb, 0x05, 0x83, 0x28, 0x96, 0xae, 0xed, 0x87, 0x63, 0x69, 0x13, 0xb6, 0x41, 0xd8, - 0x1e, 0x42, 0xb7, 0xc3, 0xb1, 0xdc, 0x42, 0xaa, 0x11, 0xb4, 0x9c, 0xd0, 0x09, 0xce, 0x12, 0x31, - 0x6a, 0x12, 0xda, 0x74, 0xd9, 0x00, 0xaa, 0xbe, 0x37, 0x6a, 0xad, 0x54, 0x56, 0xeb, 0xbc, 0xea, - 0x7b, 0xf8, 0x8d, 0x2c, 0xf3, 0xbd, 0x51, 0x5b, 0x7d, 0x03, 0xdb, 0xcc, 0x82, 0x5e, 0x28, 0x84, - 0xb7, 0x27, 0x53, 0x2e, 0xa2, 0xe0, 0x6c, 0xd4, 0x59, 0xa9, 0xac, 0xb6, 0xf9, 0x0c, 0x8c, 0x5d, - 0x83, 0xb6, 0x27, 0x8e, 0xb2, 0xc9, 0x6e, 0x32, 0x19, 0xc1, 0x4a, 0x65, 0xb5, 0xc3, 0xf3, 0xbe, - 0xf5, 0x1c, 0x3a, 0x9b, 0x32, 0x0c, 0x85, 0x9b, 0xca, 0x98, 0xdd, 0x80, 0xae, 0xd9, 0xae, 0xad, - 0xd9, 0xd4, 0xe0, 0x60, 0x40, 0xdb, 0x1e, 0xfb, 0x00, 0x96, 0x5c, 0x43, 0x6d, 0xfb, 0xa1, 0x27, - 0x4e, 0x89, 0x4f, 0x0d, 0x3e, 0xc8, 0xc1, 0xdb, 0x08, 0xb5, 0xfe, 0xa5, 0x0a, 0xad, 0x83, 0xe3, - 0x6c, 0x3c, 0x0e, 0x04, 0xbb, 0x05, 0x7d, 0xdd, 0xdc, 0x94, 0xc1, 0xb6, 0x77, 0xaa, 0xe7, 0x9d, - 0x05, 0xb2, 0x15, 0xe8, 0x6a, 0xc0, 0xe1, 0x59, 0x24, 0xf4, 0xb4, 0x65, 0xd0, 0xec, 0x3c, 0xbb, - 0x7e, 0x48, 0xec, 0xaf, 0xf1, 0x59, 0xe0, 0x1c, 0x95, 0x73, 0x4a, 0x27, 0x32, 0x4b, 0xe5, 0xd0, - 0xd7, 0x36, 0x02, 0xff, 0xa5, 0xe0, 0x62, 0xb2, 0x19, 0xa6, 0x74, 0x2e, 0x0d, 0x5e, 0x06, 0xb1, - 0x75, 0xb8, 0x9c, 0xa8, 0x21, 0x76, 0xec, 0x84, 0x13, 0x91, 0xd8, 0x99, 0x1f, 0xa6, 0x5f, 0xff, - 0xda, 0xa8, 0xb9, 0x52, 0x5b, 0xad, 0xf3, 0x8b, 0x1a, 0xc9, 0x09, 0xf7, 0x9c, 0x50, 0xec, 0x21, - 0x5c, 0x9a, 0x1b, 0xa3, 0x86, 0xb4, 0x56, 0x6a, 0xab, 0x35, 0xce, 0x66, 0x86, 0x6c, 0xd3, 0x88, - 0x27, 0xb0, 0x1c, 0x67, 0x21, 0x4a, 0xef, 0x53, 0x3f, 0x48, 0x45, 0x7c, 0x10, 0x09, 0x97, 0xce, - 0xb7, 0xbb, 0x7e, 0x75, 0x8d, 0x04, 0x9c, 0xcf, 0xa3, 0xf9, 0xf9, 0x11, 0xd6, 0x2f, 0xab, 0xd0, - 0xde, 0xf2, 0x93, 0xc8, 0x49, 0xdd, 0x63, 0x76, 0x15, 0x5a, 0xe3, 0x2c, 0x74, 0x8b, 0x13, 0x6c, - 0x62, 0x77, 0xdb, 0x63, 0xff, 0x1f, 0x96, 0x02, 0xe9, 0x3a, 0x81, 0x9d, 0x1f, 0xd6, 0xa8, 0xba, - 0x52, 0x5b, 0xed, 0xae, 0x5f, 0x2c, 0xa4, 0x3c, 0x17, 0x06, 0x3e, 0x20, 0xda, 0x42, 0x38, 0xbe, - 0x0d, 0xc3, 0x58, 0x4c, 0x65, 0x2a, 0x4a, 0xc3, 0x6b, 0x34, 0x9c, 0x15, 0xc3, 0x3f, 0x8d, 0x9d, - 0x68, 0x4f, 0x7a, 0x82, 0x2f, 0x29, 0xda, 0x62, 0xf8, 0x47, 0x25, 0x7e, 0x8a, 0x89, 0xed, 0x7b, - 0xa7, 0x36, 0x7d, 0x60, 0x54, 0x5f, 0xa9, 0xad, 0x36, 0x0a, 0xe6, 0x88, 0xc9, 0xb6, 0x77, 0xba, - 0x83, 0x18, 0xf6, 0x31, 0x5c, 0x99, 0x1f, 0xa2, 0x66, 0x1d, 0x35, 0x68, 0xcc, 0xc5, 0x99, 0x31, - 0x9c, 0x50, 0xec, 0x26, 0xf4, 0xcc, 0xa0, 0x14, 0x05, 0xa9, 0xa9, 0x8e, 0x36, 0x29, 0x09, 0xd2, - 0x55, 0x68, 0xf9, 0x89, 0x9d, 0xf8, 0xe1, 0x09, 0x29, 0x57, 0x9b, 0x37, 0xfd, 0xe4, 0xc0, 0x0f, - 0x4f, 0xd8, 0x3b, 0xd0, 0x8e, 0x85, 0xab, 0x30, 0x6d, 0xc2, 0xb4, 0x62, 0xe1, 0x12, 0xea, 0x2a, - 0x60, 0xd3, 0x76, 0x53, 0xa1, 0x55, 0xac, 0x19, 0x0b, 0x77, 0x33, 0x15, 0x56, 0x02, 0x8d, 0x5d, - 0x11, 0x4f, 0x04, 0x6a, 0x19, 0x0e, 0x3c, 0x70, 0x9d, 0x90, 0xf8, 0xde, 0xe6, 0x79, 0x1f, 0x75, - 0x3c, 0x72, 0xe2, 0xd4, 0x77, 0x02, 0x12, 0xec, 0x36, 0x37, 0x5d, 0x76, 0x1d, 0x3a, 0x49, 0xea, - 0xc4, 0x29, 0xee, 0x8e, 0x04, 0xba, 0xc1, 0xdb, 0x04, 0x40, 0x9d, 0xb8, 0x0a, 0x2d, 0x11, 0x7a, - 0x84, 0xaa, 0xab, 0x93, 0x14, 0xa1, 0xb7, 0xed, 0x9d, 0x5a, 0x7f, 0x5d, 0x81, 0xfe, 0x6e, 0x16, - 0xa4, 0xfe, 0x46, 0x3c, 0xc9, 0xc4, 0x34, 0x4c, 0xd1, 0x36, 0x6c, 0xf9, 0x49, 0xaa, 0xbf, 0x4c, - 0x6d, 0xb6, 0x0a, 0x9d, 0xef, 0xc7, 0x32, 0x8b, 0x9e, 0x9c, 0x46, 0xe6, 0xa4, 0x41, 0x09, 0x15, - 0x42, 0x78, 0x81, 0x64, 0xf7, 0xa0, 0xfb, 0x2c, 0xf6, 0x44, 0xfc, 0xf8, 0x8c, 0x68, 0x6b, 0xe7, - 0x68, 0xcb, 0x68, 0xf6, 0x2e, 0x74, 0x0e, 0x44, 0xe4, 0xc4, 0x0e, 0x8a, 0x40, 0x9d, 0x0c, 0x4a, - 0x01, 0xc0, 0xbd, 0x12, 0xf1, 0xb6, 0xa7, 0xd5, 0xca, 0x74, 0xad, 0x09, 0x74, 0x36, 0x26, 0x93, - 0x58, 0x4c, 0x9c, 0x94, 0x8c, 0x9b, 0x8c, 0x68, 0xb9, 0x35, 0x5e, 0x95, 0x11, 0x19, 0x50, 0xdc, - 0x80, 0xe2, 0x0f, 0xb5, 0xd9, 0xfb, 0x50, 0x17, 0x8b, 0xd7, 0x43, 0x70, 0x76, 0x05, 0x9a, 0xae, - 0x0c, 0xc7, 0xfe, 0x44, 0x9b, 0x5d, 0xdd, 0xb3, 0xfe, 0xac, 0x06, 0x0d, 0xda, 0x1c, 0xb2, 0x17, - 0x4d, 0xa1, 0x2d, 0x5e, 0x3a, 0x81, 0x39, 0x15, 0x04, 0x3c, 0x79, 0xe9, 0x04, 0x6c, 0x05, 0x1a, - 0x38, 0x4d, 0xb2, 0x80, 0x37, 0x0a, 0xc1, 0xee, 0x40, 0x03, 0x85, 0x28, 0x99, 0x5d, 0x01, 0x0a, - 0xd1, 0xe3, 0xfa, 0xcf, 0xff, 0xfe, 0xc6, 0x05, 0xae, 0xd0, 0xec, 0x03, 0xa8, 0x3b, 0x93, 0x49, - 0x42, 0xb2, 0x3c, 0xa3, 0x4e, 0xf9, 0x7e, 0x39, 0x11, 0xb0, 0x47, 0xd0, 0x51, 0xe7, 0x86, 0xd4, - 0x0d, 0xa2, 0xbe, 0x5a, 0x72, 0x31, 0xe5, 0x23, 0xe5, 0x05, 0x25, 0x72, 0xdc, 0x4f, 0xb4, 0x05, - 0x23, 0x89, 0x6e, 0xf3, 0x02, 0x80, 0x3e, 0x20, 0x8a, 0xc5, 0x46, 0x10, 0x48, 0xf7, 0xc0, 0x7f, - 0x2d, 0xb4, 0xc7, 0x98, 0x81, 0xb1, 0x3b, 0x30, 0xd8, 0x57, 0x22, 0xc7, 0x45, 0x92, 0x05, 0x69, - 0xa2, 0xbd, 0xc8, 0x1c, 0x94, 0xad, 0x01, 0x9b, 0x81, 0x1c, 0xd2, 0xf6, 0x3b, 0x2b, 0xb5, 0xd5, - 0x3e, 0x5f, 0x80, 0x61, 0x5f, 0x81, 0xfe, 0x04, 0x39, 0xed, 0x87, 0x13, 0x7b, 0x1c, 0x38, 0xe8, - 0x60, 0x6a, 0xe8, 0x80, 0x0c, 0xf0, 0x69, 0xe0, 0x4c, 0x48, 0xc8, 0x23, 0x3f, 0x08, 0xec, 0xa9, - 0x98, 0x8e, 0xba, 0x74, 0xe4, 0x6d, 0x02, 0xec, 0x8a, 0xa9, 0xf5, 0xef, 0x55, 0x68, 0x6e, 0x87, - 0x89, 0x88, 0x53, 0x54, 0x21, 0x67, 0x3c, 0x16, 0x6e, 0x2a, 0x94, 0xe9, 0xaa, 0xf3, 0xbc, 0x8f, - 0x2c, 0x38, 0x94, 0x9f, 0xc6, 0x7e, 0x2a, 0x0e, 0x3e, 0xd6, 0x42, 0x52, 0x00, 0xd8, 0x5d, 0x58, - 0x76, 0x3c, 0xcf, 0x36, 0xd4, 0x76, 0x2c, 0x5f, 0x25, 0xa4, 0x4e, 0x6d, 0xbe, 0xe4, 0x78, 0xde, - 0x86, 0x86, 0x73, 0xf9, 0x2a, 0x61, 0x37, 0xa1, 0x16, 0x8b, 0x31, 0x89, 0x4c, 0x77, 0x7d, 0x49, - 0x1d, 0xe9, 0xb3, 0xa3, 0xcf, 0x84, 0x9b, 0x72, 0x31, 0xe6, 0x88, 0x63, 0x97, 0xa0, 0xe1, 0xa4, - 0x69, 0xac, 0x8e, 0xa8, 0xc3, 0x55, 0x87, 0xad, 0xc1, 0x45, 0x52, 0xdb, 0xd4, 0x97, 0xa1, 0x9d, - 0x3a, 0x47, 0x01, 0x7a, 0xc9, 0x44, 0x3b, 0x84, 0xe5, 0x1c, 0x75, 0x88, 0x98, 0x6d, 0x2f, 0x41, - 0x17, 0x32, 0x4f, 0x1f, 0x3a, 0x53, 0x91, 0x90, 0x3f, 0xe8, 0xf0, 0x8b, 0xb3, 0x23, 0xf6, 0x10, - 0x85, 0xfc, 0x2c, 0xc6, 0xa0, 0xe2, 0xb7, 0x49, 0x87, 0x7a, 0x39, 0x10, 0xed, 0xc2, 0x65, 0x68, - 0xfa, 0x89, 0x2d, 0x42, 0x4f, 0xdb, 0xa2, 0x86, 0x9f, 0x3c, 0x09, 0x3d, 0xf6, 0x21, 0x74, 0xd4, - 0x57, 0x3c, 0x31, 0x26, 0x47, 0xdf, 0x5d, 0x1f, 0x68, 0x89, 0x45, 0xf0, 0x96, 0x18, 0xf3, 0x76, - 0xaa, 0x5b, 0xd6, 0xef, 0x57, 0xa0, 0x4b, 0x02, 0xf6, 0x3c, 0xf2, 0x50, 0x1f, 0xbf, 0x02, 0xfd, - 0x59, 0xee, 0xa9, 0x03, 0xe8, 0x39, 0x65, 0xd6, 0x5d, 0x81, 0xe6, 0x86, 0x8b, 0xab, 0xa0, 0x13, - 0xe8, 0x73, 0xdd, 0x63, 0xdf, 0x80, 0xa5, 0x8c, 0xa6, 0xb1, 0xdd, 0xf4, 0xd4, 0x0e, 0x50, 0x8f, - 0x95, 0xc6, 0x68, 0xf6, 0xaa, 0x6f, 0x6c, 0xa6, 0xa7, 0xbc, 0x9f, 0x99, 0xe6, 0x8e, 0x9f, 0xa4, - 0xd6, 0x7b, 0xd0, 0xd8, 0x88, 0x63, 0xe7, 0x8c, 0x38, 0x8e, 0x8d, 0x51, 0x85, 0x4c, 0xbb, 0xea, - 0x58, 0x2e, 0xd4, 0x76, 0x9d, 0x88, 0xdd, 0x86, 0xea, 0x34, 0x22, 0x4c, 0x77, 0xfd, 0x72, 0x49, - 0x5d, 0x9c, 0x68, 0x6d, 0x37, 0x7a, 0x12, 0xa6, 0xf1, 0x19, 0xaf, 0x4e, 0xa3, 0x6b, 0x8f, 0xa0, - 0xa5, 0xbb, 0x18, 0xa0, 0x9d, 0x88, 0x33, 0xda, 0x43, 0x87, 0x63, 0x13, 0x3f, 0xf0, 0xd2, 0x09, - 0x32, 0x13, 0x59, 0xa8, 0xce, 0xff, 0xab, 0x7e, 0x52, 0xb1, 0xfe, 0xa3, 0x0e, 0xed, 0x2d, 0x11, - 0x08, 0xda, 0x89, 0x05, 0xbd, 0xb2, 0xb0, 0x18, 0x2e, 0xcc, 0x08, 0x90, 0x05, 0x3d, 0xe5, 0x6c, - 0x68, 0x94, 0xd0, 0xd2, 0x38, 0x03, 0x43, 0x2b, 0xb8, 0xfd, 0x38, 0x73, 0x4f, 0x44, 0x4a, 0x62, - 0xd8, 0xe7, 0xa6, 0x8b, 0x98, 0x3d, 0x8d, 0xa9, 0x2b, 0x8c, 0xee, 0xb2, 0x77, 0x01, 0x62, 0xf9, - 0xca, 0xf6, 0x95, 0xc5, 0x57, 0xc6, 0xb3, 0x1d, 0xcb, 0x57, 0xdb, 0x68, 0xf3, 0x7f, 0x2d, 0xd2, - 0xf7, 0x0d, 0x18, 0x95, 0xa4, 0x0f, 0x23, 0x39, 0xdb, 0x0f, 0xed, 0x23, 0x0c, 0x2b, 0xb4, 0x20, - 0x16, 0x73, 0x52, 0xa0, 0xb7, 0x1d, 0x3e, 0xa6, 0x98, 0x43, 0xeb, 0x54, 0xe7, 0x2d, 0x3a, 0xb5, - 0x50, 0x45, 0x61, 0xb1, 0x8a, 0x3e, 0x06, 0x38, 0x10, 0x93, 0xa9, 0x08, 0xd3, 0x5d, 0x27, 0x1a, - 0x75, 0xe9, 0xe0, 0xad, 0xe2, 0xe0, 0xcd, 0x69, 0xad, 0x15, 0x44, 0x4a, 0x0a, 0x4a, 0xa3, 0x30, - 0x10, 0x70, 0x9d, 0xd0, 0x4e, 0xe3, 0x2c, 0x74, 0x9d, 0x54, 0x8c, 0x7a, 0xf4, 0xa9, 0xae, 0xeb, - 0x84, 0x87, 0x1a, 0x54, 0xd2, 0xa3, 0x7e, 0x59, 0x8f, 0xee, 0xc0, 0x52, 0x14, 0xfb, 0x53, 0x27, - 0x3e, 0xb3, 0x4f, 0xc4, 0x19, 0x1d, 0xc6, 0x40, 0x85, 0xac, 0x1a, 0xfc, 0x23, 0x71, 0xb6, 0xed, - 0x9d, 0x5e, 0xfb, 0x36, 0x2c, 0xcd, 0x2d, 0xe0, 0x0b, 0xc9, 0xdd, 0x4f, 0x6a, 0xd0, 0xd9, 0x8f, - 0x85, 0xb6, 0x7d, 0x37, 0xa0, 0x9b, 0xb8, 0xc7, 0x62, 0xea, 0xd0, 0x29, 0xe9, 0x19, 0x40, 0x81, - 0xf0, 0x70, 0x66, 0xb5, 0xbb, 0xfa, 0x76, 0xed, 0xc6, 0x75, 0xa8, 0x80, 0x02, 0x95, 0x09, 0x9b, - 0x85, 0x49, 0xab, 0x97, 0x4d, 0xda, 0x0a, 0xf4, 0x8e, 0x9d, 0xc4, 0x76, 0xb2, 0x54, 0xda, 0xae, - 0x0c, 0x48, 0xe8, 0xda, 0x1c, 0x8e, 0x9d, 0x64, 0x23, 0x4b, 0xe5, 0xa6, 0x0c, 0xd8, 0x7b, 0x00, - 0xae, 0x0c, 0x6c, 0x39, 0x1e, 0x27, 0x22, 0xd5, 0xd1, 0x54, 0xc7, 0x95, 0xc1, 0x33, 0x02, 0xa0, - 0x54, 0x8a, 0x24, 0xf5, 0xa7, 0x8e, 0x3e, 0x52, 0xdb, 0x95, 0x59, 0x98, 0x92, 0x0b, 0xaa, 0xf1, - 0xe5, 0x1c, 0xc5, 0xe5, 0xab, 0x4d, 0x44, 0xb0, 0x87, 0x30, 0x70, 0xe5, 0x34, 0xb2, 0x23, 0xe4, - 0x2c, 0x39, 0x77, 0x15, 0xed, 0x96, 0x9d, 0x6f, 0x0f, 0x29, 0xf6, 0x4f, 0x84, 0x8a, 0x36, 0xd6, - 0x61, 0xc9, 0x0d, 0xb2, 0x24, 0x15, 0xb1, 0x7d, 0xa4, 0x87, 0x74, 0xce, 0x0d, 0xe9, 0x6b, 0x12, - 0x1d, 0xa1, 0x58, 0xd0, 0xf7, 0x13, 0x5b, 0x06, 0x9e, 0xad, 0xcc, 0x8d, 0x96, 0xb3, 0xae, 0x9f, - 0x3c, 0x0b, 0x3c, 0x6d, 0xf0, 0x14, 0x4d, 0x28, 0x5e, 0x19, 0x9a, 0xae, 0xa1, 0xd9, 0x13, 0xaf, - 0x14, 0x8d, 0xf5, 0x77, 0x55, 0x68, 0xed, 0xcb, 0x24, 0xdd, 0x9a, 0x06, 0x46, 0xc4, 0x2b, 0x5f, - 0x54, 0xc4, 0xab, 0x8b, 0x45, 0x7c, 0x81, 0x90, 0xd5, 0x16, 0x08, 0x19, 0x5b, 0x85, 0x61, 0x99, - 0x8e, 0x84, 0x43, 0xc5, 0x5c, 0x83, 0x82, 0x90, 0x04, 0xe4, 0x3a, 0x06, 0x09, 0xb6, 0xa7, 0x6c, - 0x92, 0x3a, 0xc8, 0xb6, 0x9f, 0x68, 0x7b, 0xa4, 0x90, 0x3e, 0xc9, 0x9a, 0x8e, 0x20, 0xda, 0x7e, - 0xa2, 0x65, 0xef, 0x9b, 0xf0, 0x4e, 0x3e, 0xd2, 0x7e, 0xe5, 0xa7, 0xc7, 0x32, 0x4b, 0xed, 0x31, - 0xa5, 0x17, 0x89, 0x0e, 0x91, 0xaf, 0x98, 0x99, 0x3e, 0x55, 0x68, 0x95, 0x7c, 0x50, 0x40, 0x33, - 0xce, 0x82, 0xc0, 0x4e, 0xc5, 0x69, 0xaa, 0x8f, 0x72, 0xa4, 0x78, 0xa3, 0xf9, 0xf6, 0x34, 0x0b, - 0x82, 0x43, 0x71, 0x9a, 0xa2, 0xf1, 0x6f, 0x8f, 0x75, 0xc7, 0xfa, 0xe3, 0x3a, 0xc0, 0x8e, 0x74, - 0x4f, 0x0e, 0x9d, 0x78, 0x22, 0x52, 0x0c, 0xbc, 0x8d, 0x45, 0xd3, 0x16, 0xb7, 0x95, 0x2a, 0x3b, - 0xc6, 0xd6, 0xe1, 0x8a, 0xd9, 0x3f, 0xca, 0x21, 0x26, 0x01, 0xca, 0x24, 0x69, 0x85, 0x62, 0x1a, - 0xab, 0xd2, 0x48, 0xb2, 0x47, 0xec, 0x93, 0x82, 0xb7, 0x38, 0x26, 0x3d, 0x8b, 0x88, 0xb7, 0x8b, - 0x02, 0xb8, 0x7e, 0x31, 0xfc, 0xf0, 0x2c, 0x62, 0x0f, 0xe1, 0x72, 0x2c, 0xc6, 0xb1, 0x48, 0x8e, - 0xed, 0x34, 0x29, 0x7f, 0x4c, 0xc5, 0xdf, 0xcb, 0x1a, 0x79, 0x98, 0xe4, 0xdf, 0x7a, 0x08, 0x97, - 0x15, 0xa7, 0xe6, 0x97, 0xa7, 0xec, 0xf7, 0xb2, 0x42, 0x96, 0x57, 0xf7, 0x1e, 0x50, 0x19, 0x43, - 0xd9, 0x64, 0x13, 0xcd, 0x05, 0xc4, 0x8c, 0xa3, 0x40, 0x60, 0xa0, 0xb3, 0x79, 0x8c, 0x29, 0xe2, - 0x96, 0x18, 0x6b, 0xe6, 0x17, 0x00, 0x66, 0x41, 0x7d, 0x57, 0x7a, 0x82, 0x58, 0x3d, 0x58, 0x1f, - 0xac, 0x51, 0x41, 0x04, 0x39, 0x89, 0x50, 0x4e, 0x38, 0xf6, 0x01, 0xd0, 0x74, 0x4a, 0xfc, 0xce, - 0xeb, 0x4a, 0x1b, 0x91, 0x24, 0x83, 0x0f, 0xe1, 0x72, 0xb1, 0x12, 0xdb, 0x49, 0xed, 0xf4, 0x58, - 0x90, 0x39, 0x54, 0xea, 0xb2, 0x9c, 0x2f, 0x6a, 0x23, 0x3d, 0x3c, 0x16, 0x68, 0x1a, 0x57, 0xa1, - 0x25, 0x8f, 0x3e, 0xb3, 0x51, 0x11, 0xba, 0x8b, 0x15, 0xa1, 0x29, 0x8f, 0x3e, 0xe3, 0x62, 0xcc, - 0xbe, 0x5e, 0x76, 0x25, 0x73, 0xac, 0xe9, 0x11, 0x6b, 0x2e, 0xe5, 0xf8, 0x12, 0x77, 0xac, 0x4f, - 0xa0, 0x89, 0xdb, 0x79, 0x16, 0xb1, 0x35, 0x68, 0xa5, 0x24, 0x1e, 0x89, 0x76, 0xfd, 0x97, 0x0a, - 0x0f, 0x50, 0xc8, 0x0e, 0x37, 0x44, 0x16, 0x87, 0xa5, 0xdc, 0x9c, 0x3e, 0x0f, 0xfd, 0x17, 0x99, - 0x60, 0xdf, 0x85, 0xe5, 0x28, 0x16, 0x5a, 0xec, 0xed, 0xec, 0x04, 0xc3, 0x13, 0xad, 0xc1, 0x97, - 0xb4, 0x94, 0xe6, 0x23, 0x4e, 0x50, 0x42, 0x07, 0xd1, 0x4c, 0xdf, 0xfa, 0x31, 0x5c, 0xcd, 0x29, - 0x0e, 0x84, 0x2b, 0x43, 0xcf, 0x89, 0xcf, 0xc8, 0xf3, 0xcd, 0xcd, 0x9d, 0x7c, 0x91, 0xb9, 0x0f, - 0x68, 0xee, 0x9f, 0xd6, 0x60, 0xf0, 0x2c, 0xdc, 0xca, 0xa2, 0xc0, 0x47, 0x6f, 0xf4, 0x23, 0xe5, - 0x2c, 0x94, 0x91, 0xae, 0x94, 0x8d, 0xf4, 0x2a, 0x0c, 0xf5, 0x57, 0x90, 0x8f, 0xca, 0xc0, 0xea, - 0xb2, 0x8b, 0x82, 0x6f, 0xca, 0x40, 0x59, 0xd7, 0x6f, 0xc3, 0xe5, 0x8c, 0x76, 0xae, 0x28, 0x8f, - 0x85, 0x7b, 0x62, 0xbf, 0x21, 0x83, 0x62, 0x8a, 0x10, 0x87, 0x22, 0x19, 0x99, 0xcd, 0x1b, 0xd0, - 0x2d, 0x86, 0x1b, 0x4f, 0x01, 0x39, 0x21, 0xad, 0x44, 0x86, 0xb6, 0x67, 0x96, 0xac, 0xe3, 0x14, - 0xf4, 0x31, 0x03, 0x59, 0xec, 0x04, 0xcd, 0xd6, 0xef, 0xc0, 0xf2, 0x0c, 0x25, 0xad, 0xa2, 0x49, - 0xab, 0xb8, 0x5f, 0x1c, 0xe3, 0xec, 0xf6, 0xcb, 0x5d, 0x5c, 0x8f, 0xf2, 0xe9, 0x4b, 0x72, 0x16, - 0x6a, 0x4c, 0xd9, 0x24, 0x94, 0xb1, 0xd0, 0x0a, 0x82, 0xa6, 0x8c, 0xfa, 0xd7, 0xf6, 0xe0, 0xd2, - 0xa2, 0x59, 0x16, 0x38, 0xe6, 0x95, 0xb2, 0x63, 0x9e, 0xcb, 0xfe, 0x0a, 0x27, 0xfd, 0xa7, 0x15, - 0xe8, 0x3e, 0xcd, 0x5e, 0xbf, 0x3e, 0x53, 0x06, 0x8f, 0xf5, 0xa0, 0xb2, 0x47, 0xb3, 0x54, 0x79, - 0x65, 0x0f, 0xe3, 0xe1, 0xfd, 0x13, 0x34, 0xbe, 0x34, 0x49, 0x87, 0xeb, 0x1e, 0xe6, 0x8d, 0xfb, - 0x27, 0x87, 0x6f, 0x31, 0x3b, 0x0a, 0x8d, 0x09, 0xcf, 0xe3, 0xcc, 0x0f, 0x30, 0xbe, 0xd3, 0x16, - 0x26, 0xef, 0x63, 0x26, 0xb6, 0x3d, 0x56, 0xf2, 0xf2, 0x34, 0x96, 0x53, 0x25, 0xd1, 0xda, 0xae, - 0x2f, 0xc0, 0x58, 0xbf, 0xac, 0x43, 0xfb, 0x07, 0x4e, 0x72, 0xfc, 0x43, 0xe9, 0x87, 0xec, 0x21, - 0x74, 0x3e, 0x93, 0x7e, 0xa8, 0x4a, 0x20, 0xaa, 0xdc, 0x79, 0x51, 0x2d, 0x62, 0x4f, 0x7a, 0x62, - 0x0d, 0x69, 0x70, 0x35, 0xbc, 0xfd, 0x99, 0x6e, 0x69, 0x77, 0x18, 0xfb, 0x93, 0xe3, 0xd4, 0x46, - 0xa0, 0xf6, 0x5b, 0x5d, 0x3f, 0xe1, 0x08, 0xa3, 0x59, 0xdf, 0x05, 0x8c, 0x0c, 0x8e, 0x6d, 0x19, - 0xda, 0xd1, 0x89, 0x4e, 0xaf, 0xda, 0x08, 0x79, 0x16, 0xee, 0x9f, 0xa0, 0x5d, 0xf3, 0x13, 0x5b, - 0x17, 0x5a, 0x68, 0x3b, 0x33, 0x59, 0xea, 0x2d, 0x18, 0x60, 0x3c, 0x96, 0x9c, 0xf8, 0x91, 0x1d, - 0xc5, 0xf2, 0xc8, 0xec, 0x05, 0xa3, 0xb4, 0x83, 0x13, 0x3f, 0xda, 0x47, 0x18, 0x85, 0x41, 0xba, - 0x7c, 0x83, 0xc2, 0xa5, 0xe2, 0x0d, 0xd0, 0x20, 0x64, 0x0b, 0xd5, 0x68, 0x02, 0x95, 0x63, 0xb4, - 0x48, 0xf4, 0x5a, 0xb1, 0x08, 0x30, 0x99, 0x40, 0x14, 0x8a, 0x3d, 0xa1, 0xda, 0x0a, 0xe5, 0x4a, - 0x85, 0xfa, 0x2a, 0x40, 0x20, 0xc6, 0xa8, 0x40, 0xa1, 0xa7, 0xd2, 0xd9, 0xb9, 0x5a, 0x08, 0x62, - 0x37, 0x11, 0xc9, 0x3e, 0x84, 0xae, 0xe2, 0x82, 0xa2, 0x85, 0x73, 0xb4, 0x40, 0x68, 0x45, 0x7c, - 0x17, 0xba, 0xa1, 0x0c, 0x6d, 0xf1, 0x82, 0xa8, 0xb5, 0x4d, 0x9c, 0x99, 0x38, 0x94, 0xe1, 0x93, - 0x17, 0x48, 0xcc, 0x1e, 0xe8, 0x35, 0xa8, 0x8a, 0x42, 0xef, 0x0d, 0x15, 0x05, 0x5a, 0x89, 0xca, - 0xad, 0x3f, 0x32, 0x2b, 0x51, 0x23, 0xfa, 0x6f, 0x18, 0xa1, 0xd6, 0xa3, 0x86, 0xac, 0x40, 0x8f, - 0xce, 0x7d, 0xea, 0x44, 0x76, 0xea, 0x4c, 0x74, 0xdc, 0x0a, 0x08, 0xdb, 0x75, 0xa2, 0x43, 0x67, - 0xc2, 0x38, 0xbc, 0xa3, 0xeb, 0x87, 0xda, 0xc3, 0xdb, 0x47, 0x28, 0x71, 0x8a, 0x6b, 0x4b, 0xa6, - 0x22, 0xb1, 0xb8, 0xf2, 0x78, 0x65, 0xa6, 0xf2, 0x48, 0x92, 0x4a, 0x59, 0xdc, 0xbf, 0x55, 0xa0, - 0xbd, 0x23, 0x65, 0xf4, 0x25, 0x45, 0xaf, 0x7c, 0xa4, 0xd5, 0x37, 0x1f, 0x69, 0x6d, 0xf6, 0x48, - 0xe7, 0x58, 0x5f, 0x7f, 0x1b, 0xeb, 0xe7, 0x38, 0xd9, 0xf8, 0x12, 0x9c, 0x6c, 0xce, 0x73, 0xd2, - 0x6a, 0x41, 0xe3, 0x40, 0xa4, 0xcf, 0x22, 0xeb, 0x9f, 0x1a, 0xd0, 0xd9, 0x12, 0x5e, 0xa6, 0xf6, - 0x5f, 0xde, 0x4d, 0xe5, 0xcd, 0xbb, 0xa9, 0xce, 0xee, 0x06, 0x7d, 0xb6, 0x11, 0xd0, 0x05, 0xd6, - 0xba, 0x6d, 0xe4, 0x13, 0x25, 0xb9, 0x10, 0x4f, 0x5d, 0x70, 0x9a, 0xd9, 0x75, 0x2e, 0x9d, 0x6f, - 0x3f, 0xea, 0xc6, 0x97, 0x3a, 0xea, 0x39, 0x25, 0x3f, 0x57, 0x8a, 0x9a, 0xe7, 0x5a, 0xeb, 0x9c, - 0xfc, 0xcd, 0x29, 0x78, 0xfb, 0x9c, 0x82, 0xef, 0xc0, 0xc5, 0x19, 0xcf, 0xe1, 0xa8, 0x82, 0x43, - 0x87, 0x24, 0xe9, 0xdd, 0x92, 0x24, 0x95, 0xec, 0xbc, 0x2a, 0x43, 0xf0, 0x65, 0x39, 0x0f, 0x42, - 0xab, 0xe3, 0xe1, 0xd1, 0x90, 0x43, 0xa4, 0xe0, 0x59, 0xdd, 0x80, 0xf4, 0x08, 0xba, 0x29, 0x03, - 0xb2, 0xd7, 0x9f, 0xc0, 0x52, 0x41, 0xa5, 0x64, 0xa4, 0xfb, 0x06, 0x19, 0xe9, 0x9b, 0x81, 0x4a, - 0x4c, 0x7e, 0x1d, 0x4a, 0x7d, 0x1f, 0x2e, 0x9a, 0xea, 0x8a, 0x8e, 0xa3, 0xe8, 0x04, 0x07, 0x24, - 0x41, 0x43, 0x5d, 0x50, 0xa1, 0x10, 0x8a, 0x8e, 0xe8, 0x5b, 0x70, 0xa9, 0x44, 0x8e, 0x8e, 0xb7, - 0xac, 0xdc, 0x65, 0x59, 0x59, 0xce, 0xc7, 0x62, 0x77, 0x47, 0x95, 0x5c, 0xbb, 0x9e, 0x08, 0xcc, - 0x87, 0x46, 0x43, 0x95, 0xef, 0x79, 0x22, 0x50, 0x1f, 0xb0, 0xfe, 0xb5, 0x01, 0x03, 0x72, 0x08, - 0xbf, 0x11, 0xf8, 0xdf, 0x08, 0xfc, 0xff, 0x05, 0x81, 0xff, 0xbd, 0x0a, 0xb4, 0xf6, 0x63, 0xe9, - 0x65, 0x6e, 0xfa, 0x25, 0x25, 0x7d, 0x56, 0x82, 0x6a, 0xbf, 0x4a, 0x82, 0xea, 0xe7, 0x1c, 0xcd, - 0xcf, 0x2a, 0xd0, 0xd1, 0x4b, 0xd8, 0x59, 0xff, 0x92, 0x8b, 0x28, 0xae, 0x52, 0x2a, 0x0b, 0xaf, - 0x52, 0x7e, 0xe5, 0x2a, 0x50, 0xb0, 0x5e, 0xaa, 0x8b, 0x5f, 0x19, 0x29, 0xe7, 0xde, 0x50, 0x82, - 0xa5, 0xa0, 0xcf, 0x22, 0x3c, 0x3b, 0xeb, 0x15, 0x74, 0x28, 0x3d, 0x22, 0xcb, 0x70, 0x05, 0x9a, - 0x31, 0xdd, 0x15, 0xe8, 0x85, 0xea, 0xde, 0xdb, 0xf5, 0xb4, 0xfa, 0xe5, 0x62, 0x90, 0xbf, 0xaa, - 0x40, 0x9f, 0x72, 0xd5, 0xa7, 0x59, 0xa8, 0x34, 0x61, 0x71, 0x32, 0xb5, 0x02, 0xf5, 0x18, 0x53, - 0x4a, 0xf5, 0x99, 0x9e, 0xfa, 0xcc, 0xa6, 0x0c, 0xb6, 0xc4, 0x98, 0x13, 0x06, 0x59, 0xe5, 0xc4, - 0x93, 0x64, 0xd1, 0xad, 0x13, 0xc2, 0x71, 0x57, 0x91, 0x13, 0x3b, 0xd3, 0xc4, 0xdc, 0x3a, 0xa9, - 0x1e, 0x63, 0x50, 0x27, 0x7d, 0x53, 0x6c, 0xa1, 0xb6, 0xce, 0x55, 0x12, 0x3f, 0x9c, 0xe4, 0xc6, - 0xa3, 0x4d, 0x97, 0x8d, 0x93, 0x40, 0x58, 0x1b, 0x70, 0xf9, 0xc9, 0x69, 0x2a, 0xe2, 0xd0, 0x21, - 0xa5, 0x5c, 0x47, 0x89, 0xa3, 0xd4, 0xd2, 0xcc, 0x54, 0x29, 0xcd, 0x74, 0x09, 0x1a, 0xe5, 0x0b, - 0x77, 0xd5, 0xb1, 0x6e, 0x43, 0x77, 0xec, 0x07, 0x42, 0x97, 0xe7, 0x70, 0x69, 0xba, 0x50, 0x57, - 0xa1, 0x2b, 0x67, 0xdd, 0xb3, 0xfe, 0xa6, 0x06, 0x3d, 0xf3, 0x29, 0xba, 0x90, 0xbc, 0x57, 0xe6, - 0x4d, 0x77, 0x7d, 0x68, 0x36, 0x89, 0x24, 0x1b, 0x69, 0x1a, 0x9b, 0x34, 0x45, 0xf1, 0xec, 0x3a, - 0x74, 0xe8, 0x2b, 0x89, 0xff, 0x5a, 0x10, 0xe3, 0x6a, 0xbc, 0x8d, 0x00, 0xba, 0x59, 0xda, 0x80, - 0xe5, 0xd2, 0x12, 0xec, 0x54, 0xa6, 0x4e, 0xa0, 0x79, 0x57, 0xaa, 0xd5, 0x97, 0x48, 0xf8, 0x12, - 0x76, 0x54, 0xfd, 0xf0, 0x10, 0xa9, 0xf1, 0x4c, 0xf2, 0x84, 0xf3, 0xdc, 0x99, 0x20, 0x86, 0xaa, - 0x90, 0xb1, 0x40, 0x15, 0x4f, 0x5e, 0x04, 0x9a, 0xc3, 0x1d, 0x05, 0x39, 0x78, 0x11, 0xe4, 0x0b, - 0x24, 0x01, 0x6a, 0xd2, 0x71, 0xd3, 0x02, 0x49, 0xf4, 0xef, 0x43, 0x57, 0xc6, 0xfe, 0xc4, 0x0f, - 0x55, 0x56, 0xdb, 0x5a, 0xf0, 0x11, 0x50, 0x04, 0x94, 0xe3, 0x5a, 0xd0, 0x54, 0x42, 0xb9, 0xa0, - 0x32, 0xa9, 0x31, 0xec, 0x0e, 0x2c, 0x25, 0x69, 0xec, 0xbb, 0x29, 0x2e, 0xc7, 0x9e, 0x4a, 0xcf, - 0xdc, 0x0a, 0xf7, 0x15, 0xf8, 0xe0, 0x45, 0x40, 0x95, 0x98, 0x3b, 0xb0, 0xe4, 0xca, 0x20, 0x9b, - 0x86, 0xb4, 0x32, 0x3b, 0x10, 0x21, 0x59, 0xe3, 0x06, 0xef, 0x2b, 0x30, 0xae, 0x6f, 0x47, 0x84, - 0xec, 0x26, 0xf4, 0x54, 0x3e, 0x6b, 0x8b, 0x38, 0x96, 0x71, 0x5e, 0x8a, 0x24, 0xd8, 0x13, 0x04, - 0x59, 0x2e, 0xc0, 0x41, 0x1a, 0x0b, 0x67, 0x4a, 0xe7, 0xf7, 0x01, 0xb4, 0xd2, 0xa3, 0x80, 0x4a, - 0xc1, 0x95, 0x85, 0xa5, 0xe0, 0x66, 0x7a, 0x84, 0x3b, 0x2b, 0x49, 0x44, 0x95, 0x4a, 0xb2, 0xba, - 0x87, 0xe2, 0x14, 0xf8, 0x53, 0x3f, 0xd5, 0x8f, 0x28, 0x54, 0xc7, 0x3a, 0x82, 0x0e, 0xcd, 0x40, - 0xdf, 0xc8, 0x2f, 0x3f, 0x2b, 0x6f, 0xbf, 0xfc, 0xbc, 0x0f, 0x3d, 0xad, 0xc5, 0x6f, 0xba, 0x4d, - 0xed, 0x2a, 0x3c, 0xb6, 0x13, 0xeb, 0x1e, 0x74, 0x7e, 0x1b, 0xd3, 0x6b, 0xfa, 0xc6, 0x0d, 0xe8, - 0xd2, 0xed, 0x82, 0x7d, 0x14, 0x48, 0xf7, 0xc4, 0x54, 0xbd, 0x09, 0xf4, 0x18, 0x21, 0x16, 0x40, - 0xfb, 0x79, 0xe8, 0xcb, 0x70, 0x23, 0x08, 0xac, 0x3f, 0x6c, 0x40, 0x07, 0x33, 0x5c, 0x52, 0x7a, - 0x4c, 0x58, 0xe9, 0x6a, 0x97, 0x32, 0xd2, 0xa9, 0x13, 0xe9, 0xeb, 0xdd, 0x2e, 0x02, 0x91, 0x6a, - 0xd7, 0x89, 0xe6, 0x12, 0xd6, 0xea, 0x5c, 0xc2, 0x7a, 0x53, 0xbd, 0x9d, 0x51, 0xf7, 0x1b, 0xc2, - 0xdc, 0x17, 0xd2, 0x04, 0x8f, 0x15, 0x88, 0xdd, 0x03, 0x46, 0x24, 0x4e, 0x10, 0x48, 0x72, 0xce, - 0x89, 0x08, 0x12, 0x9d, 0xdb, 0x0e, 0x11, 0xb3, 0xa1, 0x11, 0x07, 0x42, 0x49, 0x69, 0xc9, 0xd2, - 0x37, 0xe6, 0x2d, 0xfd, 0x5d, 0x00, 0x8c, 0x61, 0xa8, 0xe4, 0x95, 0xe8, 0x62, 0xc8, 0x4c, 0x62, - 0x59, 0x60, 0x3f, 0x47, 0x5c, 0xf1, 0x01, 0x0c, 0x73, 0x8a, 0x58, 0x8c, 0x6d, 0x37, 0x4c, 0x75, - 0x70, 0xd1, 0xd7, 0x54, 0x5c, 0x8c, 0x37, 0xc3, 0x74, 0x3e, 0x00, 0xe9, 0x9c, 0x0b, 0x40, 0xbe, - 0x0f, 0x17, 0xe7, 0xcc, 0x71, 0x12, 0x09, 0x57, 0xdf, 0x20, 0x7e, 0x81, 0x67, 0x28, 0xe8, 0x7f, - 0xa8, 0x8e, 0xec, 0x65, 0x91, 0x16, 0xe1, 0x96, 0x9f, 0x50, 0xa0, 0xf8, 0xa6, 0x20, 0xa7, 0xf7, - 0xbf, 0x15, 0xe4, 0xf4, 0x3f, 0x5f, 0x90, 0x33, 0xf8, 0x7c, 0x41, 0xce, 0x5c, 0x50, 0xb0, 0x34, - 0x1f, 0x14, 0x3c, 0x07, 0x20, 0x4b, 0x4d, 0x6e, 0xeb, 0x4d, 0xfc, 0xab, 0x7c, 0xe1, 0x67, 0x3c, - 0xff, 0x55, 0x01, 0x38, 0x70, 0xa6, 0x91, 0x72, 0x62, 0xec, 0x7b, 0xd0, 0x4d, 0xa8, 0x57, 0xce, - 0xa5, 0x6f, 0x94, 0x5e, 0xad, 0xe5, 0xa4, 0xba, 0x49, 0x79, 0x35, 0x24, 0x79, 0x9b, 0x8e, 0x5e, - 0xcd, 0x90, 0x5f, 0x45, 0x34, 0x0c, 0x01, 0x55, 0x80, 0x6f, 0xc3, 0x40, 0x13, 0x44, 0x22, 0x76, - 0x45, 0xa8, 0xec, 0x41, 0x85, 0xf7, 0x15, 0x74, 0x5f, 0x01, 0xd9, 0x47, 0x39, 0x99, 0xb2, 0x5b, - 0xc9, 0x82, 0x38, 0x5c, 0x0f, 0xd9, 0x54, 0x04, 0xd6, 0xba, 0xd9, 0x0a, 0x2d, 0xa4, 0x0d, 0x75, - 0xfc, 0xde, 0xf0, 0x02, 0xeb, 0x42, 0x4b, 0xcf, 0x3a, 0xac, 0xb0, 0x3e, 0x74, 0xe8, 0xf1, 0x0c, - 0xe1, 0xaa, 0xd6, 0x4f, 0x97, 0xa1, 0xbb, 0x1d, 0x26, 0x69, 0x9c, 0xa9, 0x63, 0x2e, 0xde, 0x88, - 0x34, 0xe8, 0x8d, 0x88, 0xbe, 0xd5, 0x52, 0xdb, 0xa0, 0x5b, 0xad, 0xfb, 0xd0, 0xd2, 0xaf, 0x91, - 0x74, 0x64, 0xb3, 0xf0, 0x29, 0x93, 0xa1, 0x61, 0x6b, 0xd0, 0xf6, 0xf4, 0x33, 0x29, 0x5d, 0x30, - 0x28, 0xbd, 0x5d, 0x32, 0x0f, 0xa8, 0x78, 0x4e, 0xc3, 0x6e, 0x42, 0xcd, 0x99, 0x4c, 0x48, 0x93, - 0xa9, 0xd4, 0x6d, 0x48, 0xe9, 0x71, 0x09, 0x47, 0x1c, 0x7b, 0x00, 0x1d, 0x32, 0x31, 0x54, 0x33, - 0x6b, 0xce, 0xcf, 0x69, 0x0a, 0x72, 0xca, 0xea, 0x50, 0x50, 0xf4, 0x00, 0x3a, 0x81, 0x94, 0x91, - 0x1a, 0xd0, 0x9a, 0x1f, 0x60, 0xca, 0x28, 0xbc, 0x1d, 0x98, 0x82, 0xca, 0x1d, 0x68, 0xa2, 0x63, - 0x95, 0x91, 0x76, 0x48, 0xa5, 0x75, 0x50, 0xfd, 0x81, 0x37, 0x12, 0xfc, 0x61, 0xeb, 0x00, 0x4a, - 0xdc, 0x69, 0xe6, 0xce, 0x3c, 0x3b, 0xf2, 0x84, 0x0d, 0x05, 0xd9, 0xe4, 0x6e, 0x8f, 0x61, 0xa8, - 0x82, 0xf3, 0xd2, 0x48, 0x30, 0xb7, 0x38, 0x66, 0xe4, 0x6c, 0xbe, 0xc7, 0x07, 0xf1, 0x6c, 0xfe, - 0xf7, 0x21, 0xb4, 0x22, 0x15, 0x9d, 0x92, 0x16, 0x76, 0xd7, 0x97, 0x8b, 0xa1, 0x3a, 0x6c, 0xe5, - 0x86, 0x82, 0x7d, 0x07, 0x06, 0xea, 0xb6, 0x61, 0xac, 0xc3, 0x34, 0x2a, 0x51, 0xcd, 0xbc, 0x82, - 0x99, 0x89, 0xe2, 0x78, 0x3f, 0x9d, 0x09, 0xea, 0xbe, 0x05, 0x7d, 0xa1, 0x03, 0x19, 0x3b, 0x71, - 0x9d, 0x90, 0x74, 0xb3, 0xbb, 0x7e, 0xa5, 0x18, 0x5e, 0x8e, 0x73, 0x78, 0x4f, 0x94, 0xa3, 0x9e, - 0x55, 0x68, 0xea, 0x1b, 0xb0, 0x21, 0x8d, 0x2a, 0xbd, 0xee, 0x54, 0xe5, 0x54, 0xae, 0xf1, 0xc8, - 0x97, 0x19, 0x73, 0x75, 0x22, 0xce, 0x46, 0xcb, 0xf3, 0x7c, 0x99, 0xad, 0x5e, 0xcf, 0x94, 0xc0, - 0x7f, 0x24, 0xce, 0xf0, 0x3c, 0x8a, 0x0b, 0x82, 0x11, 0x9b, 0x3f, 0x8f, 0xfc, 0x76, 0x80, 0x77, - 0xf2, 0x8b, 0x01, 0xf6, 0x64, 0xf6, 0xc2, 0x42, 0xd5, 0x7c, 0x2f, 0xd2, 0xd0, 0x77, 0x16, 0x0c, - 0x55, 0xa5, 0x5f, 0xbe, 0x14, 0xcd, 0xdd, 0x7b, 0xdc, 0x83, 0xb6, 0x8c, 0x3d, 0xba, 0x31, 0x1d, - 0x5d, 0x22, 0x4d, 0x5d, 0xd6, 0xf7, 0x34, 0xea, 0x19, 0x17, 0x19, 0xa0, 0x96, 0x54, 0x1d, 0x74, - 0xe0, 0x51, 0x2c, 0x3f, 0x13, 0x6e, 0xaa, 0x02, 0xa8, 0xcb, 0xe7, 0x1d, 0xb8, 0xc6, 0x53, 0x3c, - 0x75, 0x0b, 0x5a, 0xe6, 0x6e, 0xf0, 0xca, 0x39, 0x4a, 0x83, 0x62, 0x1f, 0xc3, 0xd2, 0xac, 0x51, - 0x4c, 0x46, 0x57, 0xcf, 0x51, 0x0f, 0x66, 0x6c, 0x20, 0x7a, 0x3d, 0x1d, 0x95, 0x8c, 0xce, 0xd7, - 0xe4, 0x09, 0x81, 0xd1, 0x99, 0x8e, 0x67, 0xde, 0x39, 0x1f, 0x9d, 0xe9, 0xd8, 0x66, 0x04, 0x2d, - 0x3f, 0x79, 0xea, 0xc7, 0x49, 0x3a, 0xba, 0x66, 0xbc, 0x10, 0x75, 0x31, 0x1a, 0xf2, 0x93, 0x1d, - 0x27, 0x49, 0x47, 0xd7, 0xcd, 0xc3, 0x3f, 0xec, 0xb1, 0xbb, 0xd0, 0xd4, 0xf7, 0xa6, 0x2b, 0xe7, - 0xac, 0x82, 0x7e, 0x6b, 0xc0, 0x35, 0x05, 0xfb, 0x2a, 0xb4, 0xe8, 0xd2, 0x4c, 0x46, 0xa3, 0x9b, - 0xf3, 0x52, 0xa4, 0x6e, 0xae, 0x78, 0x33, 0x50, 0x37, 0x58, 0x1f, 0x42, 0xcb, 0x04, 0x03, 0xd6, - 0xbc, 0x66, 0xe8, 0xa0, 0x80, 0x1b, 0x0a, 0x76, 0x1b, 0x1a, 0x53, 0xb4, 0x85, 0xa3, 0xaf, 0xcc, - 0x6b, 0xb9, 0x32, 0x91, 0x0a, 0xcb, 0x1e, 0x41, 0x37, 0xa1, 0x38, 0x50, 0x89, 0xff, 0x2d, 0x73, - 0xe1, 0x54, 0x3c, 0x65, 0x36, 0x41, 0x22, 0x87, 0xa4, 0x08, 0x18, 0x7f, 0x17, 0xae, 0x95, 0x6f, - 0xab, 0xcc, 0x55, 0x96, 0x7e, 0xc4, 0x7b, 0x9b, 0x66, 0xb9, 0xb9, 0x40, 0xc2, 0x66, 0x2f, 0xbd, - 0xf8, 0xd5, 0xe8, 0x0d, 0xb7, 0x61, 0x8f, 0x72, 0x4f, 0x83, 0x8a, 0x3d, 0xba, 0x73, 0x6e, 0x59, - 0xb9, 0xaf, 0x32, 0xfe, 0x87, 0x5c, 0xdc, 0x27, 0xd0, 0x1b, 0x67, 0xaf, 0x5f, 0x9f, 0x69, 0x19, - 0x19, 0x7d, 0x40, 0xe3, 0x4a, 0x79, 0x43, 0xe9, 0xee, 0x85, 0x77, 0xc7, 0xa5, 0x8b, 0x98, 0xab, - 0xd0, 0x72, 0x43, 0xdb, 0xf1, 0xbc, 0x78, 0xb4, 0xaa, 0xee, 0x5e, 0xdc, 0x70, 0xc3, 0xf3, 0xe8, - 0x12, 0x4b, 0x46, 0x82, 0xde, 0x22, 0xda, 0xbe, 0x37, 0xfa, 0xaa, 0xf2, 0x79, 0x06, 0xb4, 0xed, - 0xd1, 0x2b, 0x67, 0x27, 0x76, 0x82, 0x40, 0xa0, 0x77, 0x1f, 0xdd, 0xd5, 0xaf, 0x9c, 0x35, 0x68, - 0xdb, 0xc3, 0xb8, 0x70, 0xea, 0x9c, 0xda, 0x06, 0x32, 0xfa, 0x50, 0x3d, 0x21, 0x9d, 0x3a, 0xa7, - 0xfb, 0x1a, 0x84, 0xba, 0xad, 0x9e, 0xc7, 0x90, 0xc5, 0xbc, 0x37, 0xaf, 0xdb, 0x79, 0x0a, 0xcc, - 0x3b, 0x7e, 0x9e, 0x0d, 0x93, 0x3d, 0x20, 0x2b, 0x68, 0x07, 0xeb, 0xa3, 0xfb, 0xe7, 0xed, 0x81, - 0xce, 0xf0, 0xd1, 0x1e, 0x98, 0x64, 0x7f, 0x1d, 0x40, 0x99, 0x4b, 0x3a, 0xec, 0xb5, 0xf9, 0x31, - 0x79, 0xb0, 0xce, 0xd5, 0xdb, 0x10, 0x3a, 0xea, 0x75, 0x00, 0xba, 0xbf, 0x52, 0x63, 0x1e, 0xcc, - 0x8f, 0xc9, 0x83, 0x6f, 0xde, 0x79, 0x99, 0xc7, 0xe1, 0x0f, 0xa0, 0x93, 0x61, 0x98, 0x8d, 0x81, - 0xee, 0xe8, 0xe1, 0xbc, 0x0e, 0x98, 0x08, 0x9c, 0xb7, 0x33, 0xdd, 0xc2, 0x8f, 0x90, 0xdb, 0xa3, - 0x08, 0x68, 0xf4, 0xd1, 0xfc, 0x47, 0xf2, 0x30, 0x9d, 0x93, 0x77, 0x54, 0x11, 0xfb, 0x23, 0xe8, - 0x2a, 0xa6, 0xa9, 0x41, 0xeb, 0xf3, 0x32, 0x52, 0x84, 0x54, 0x5c, 0x71, 0x57, 0x0d, 0xbb, 0x0d, - 0x0d, 0x27, 0x8a, 0x82, 0xb3, 0xd1, 0xc7, 0xf3, 0x8a, 0xb1, 0x81, 0x60, 0xae, 0xb0, 0x28, 0x4a, - 0xd3, 0x2c, 0x48, 0x7d, 0xf3, 0x9c, 0xe3, 0x6b, 0xf3, 0xa2, 0x54, 0x7a, 0xed, 0xc6, 0xbb, 0xd3, - 0xd2, 0xd3, 0xb7, 0x7b, 0xd0, 0x8e, 0x64, 0x92, 0xda, 0xde, 0x34, 0x18, 0x3d, 0x3a, 0xe7, 0xc1, - 0xd4, 0x33, 0x06, 0xde, 0x8a, 0x54, 0xc3, 0x7a, 0x04, 0xbd, 0x0d, 0x7a, 0xa0, 0xef, 0x27, 0x64, - 0x0e, 0x6f, 0x43, 0x3d, 0xaf, 0xc5, 0xe4, 0x76, 0x96, 0x28, 0x5e, 0x8b, 0xed, 0x70, 0x2c, 0x39, - 0xa1, 0xad, 0x3f, 0xaf, 0x43, 0xf3, 0x40, 0x66, 0xb1, 0x2b, 0x7e, 0xf5, 0x53, 0x9f, 0xf7, 0xcc, - 0xa9, 0x87, 0xc5, 0xd5, 0xa2, 0x3a, 0x60, 0x42, 0xcf, 0x5f, 0x8a, 0x74, 0x8a, 0x32, 0xcf, 0x25, - 0x68, 0xa8, 0x4c, 0x4a, 0x3d, 0x11, 0x51, 0x1d, 0x92, 0xf8, 0x2c, 0x39, 0xf6, 0xe4, 0xab, 0x10, - 0x25, 0xbe, 0x41, 0x2f, 0x2c, 0xc0, 0x80, 0xb6, 0x3d, 0x7a, 0x75, 0x68, 0x08, 0x48, 0xa5, 0x9a, - 0x2a, 0x9c, 0x36, 0x40, 0x52, 0x2c, 0x53, 0x42, 0x6a, 0xbd, 0xa1, 0x84, 0xf4, 0x3e, 0xd4, 0x43, - 0xf3, 0x34, 0x21, 0xc7, 0xd3, 0x63, 0x70, 0x82, 0xb3, 0xbb, 0x90, 0xbf, 0x4f, 0xd2, 0xd1, 0xc9, - 0x9b, 0xdf, 0x2f, 0xad, 0x43, 0x27, 0xff, 0x4b, 0x87, 0x0e, 0x48, 0x2e, 0xad, 0x15, 0x7f, 0xf2, - 0x38, 0x34, 0x2d, 0x5e, 0x90, 0x2d, 0xa8, 0x2a, 0xd1, 0x35, 0xa3, 0xe2, 0x53, 0xf7, 0x8b, 0x54, - 0x95, 0xe8, 0x2a, 0xd2, 0x54, 0xd4, 0xfc, 0xc4, 0x76, 0x65, 0x98, 0xa4, 0xfa, 0x01, 0x59, 0xcb, - 0x4f, 0x36, 0xb1, 0xcb, 0xbe, 0x09, 0xfd, 0x58, 0xb8, 0x2f, 0xed, 0x69, 0x32, 0x51, 0x9f, 0xe8, - 0x97, 0x5f, 0x3c, 0x4e, 0x93, 0xc9, 0x0f, 0x84, 0x83, 0xfe, 0x55, 0x25, 0x18, 0x5d, 0xa4, 0xdd, - 0x4d, 0x26, 0x34, 0xeb, 0x4d, 0xe8, 0x1d, 0x05, 0x52, 0x4e, 0x8d, 0xd5, 0x1b, 0x50, 0x1d, 0xa9, - 0x4b, 0x30, 0xb5, 0x02, 0xeb, 0x8f, 0x2a, 0xd0, 0x46, 0xde, 0xa1, 0x04, 0x31, 0x06, 0xf5, 0xa9, - 0x1b, 0x65, 0x3a, 0x12, 0xa6, 0xb6, 0xfe, 0x73, 0x88, 0x92, 0x0d, 0xfd, 0xe7, 0x10, 0x3a, 0xb9, - 0x9a, 0xaa, 0x19, 0x61, 0x5b, 0x3d, 0x3b, 0x3f, 0x0b, 0xa4, 0xe3, 0x69, 0x79, 0x30, 0x5d, 0x76, - 0x19, 0x9a, 0x6e, 0x48, 0x29, 0xa3, 0x7a, 0xa6, 0xd2, 0x70, 0x43, 0x4c, 0x15, 0x15, 0xb8, 0xb8, - 0x78, 0x6d, 0xb8, 0x21, 0xa6, 0x3b, 0x7f, 0x51, 0x81, 0xe5, 0xfd, 0x58, 0xba, 0x22, 0x49, 0x76, - 0xd0, 0x0b, 0x3b, 0x14, 0x8a, 0x31, 0xa8, 0x53, 0x41, 0x48, 0xbd, 0xe1, 0xa6, 0x36, 0x4a, 0xae, - 0xca, 0xe7, 0xf3, 0x7c, 0xa3, 0xc6, 0x3b, 0x04, 0xa1, 0x74, 0x23, 0x47, 0xd3, 0xc0, 0x5a, 0x09, - 0x4d, 0xa5, 0xa4, 0xdb, 0x30, 0x28, 0xde, 0x8c, 0xd0, 0x0c, 0xfa, 0xcf, 0x1b, 0x39, 0x94, 0x66, - 0xb9, 0x01, 0xdd, 0x98, 0x78, 0xab, 0xa6, 0x69, 0x10, 0x0d, 0x28, 0x10, 0xce, 0x63, 0x1d, 0xc3, - 0x70, 0x3f, 0x16, 0x91, 0x13, 0x0b, 0x34, 0xd8, 0x53, 0xe2, 0xe1, 0x15, 0x68, 0x06, 0x22, 0x9c, - 0xa4, 0xc7, 0x7a, 0xbd, 0xba, 0x97, 0xff, 0x71, 0xa7, 0x5a, 0xfa, 0xe3, 0x0e, 0xf2, 0x32, 0x16, - 0x8e, 0xfe, 0x7f, 0x0f, 0xb5, 0x51, 0xb3, 0xc2, 0x2c, 0xd0, 0x45, 0xaa, 0x36, 0x57, 0x1d, 0xeb, - 0x67, 0x35, 0xe8, 0x6a, 0xce, 0xd0, 0x57, 0xd4, 0xa9, 0x54, 0xf2, 0x53, 0x19, 0x42, 0x2d, 0x79, - 0x11, 0xe8, 0x63, 0xc2, 0x26, 0xfb, 0x18, 0x6a, 0x81, 0x3f, 0xd5, 0xd9, 0xca, 0xf5, 0x19, 0xf3, - 0x3f, 0xcb, 0x5f, 0x2d, 0x38, 0x48, 0xcd, 0xae, 0x93, 0x79, 0x3e, 0xb5, 0x51, 0x44, 0x35, 0x4f, - 0xd0, 0x14, 0x9f, 0xa2, 0x1e, 0x20, 0x53, 0x1d, 0x97, 0x5e, 0x85, 0x18, 0xe5, 0xee, 0xf3, 0x8e, - 0x86, 0x6c, 0x7b, 0xec, 0x6b, 0xd0, 0x4e, 0x42, 0x27, 0x4a, 0x8e, 0x65, 0x9a, 0xe7, 0x27, 0xe9, - 0x69, 0xb8, 0xb6, 0xb9, 0x77, 0x78, 0x1a, 0x1e, 0x68, 0x8c, 0xfe, 0x58, 0x4e, 0xc9, 0xbe, 0x03, - 0xbd, 0x44, 0x24, 0x89, 0x7a, 0x07, 0x3a, 0x96, 0x5a, 0xe9, 0x2f, 0x97, 0x53, 0x0f, 0xc2, 0xe2, - 0xae, 0x8d, 0x88, 0x27, 0x05, 0x88, 0xfd, 0x00, 0x06, 0x66, 0x7c, 0x20, 0x27, 0x93, 0xbc, 0x9a, - 0x76, 0xfd, 0xdc, 0x0c, 0x3b, 0x84, 0x2e, 0xcd, 0xd3, 0x4f, 0xca, 0x08, 0xf6, 0x7d, 0x18, 0x44, - 0xea, 0x30, 0x6d, 0x5d, 0x76, 0x55, 0xc6, 0xe3, 0xda, 0x4c, 0xb4, 0x32, 0x73, 0xd8, 0xc5, 0xdb, - 0xae, 0x02, 0x9e, 0x58, 0xff, 0x59, 0x81, 0x6e, 0x69, 0xd5, 0xf4, 0x77, 0xaa, 0x44, 0xc4, 0xa6, - 0xca, 0x8a, 0x6d, 0x84, 0x1d, 0x4b, 0xfd, 0x2f, 0x84, 0x0e, 0xa7, 0x36, 0xc2, 0x62, 0xa9, 0x2b, - 0xf7, 0x1d, 0x4e, 0x6d, 0x34, 0x98, 0x3a, 0xa7, 0x54, 0xef, 0xb4, 0xe9, 0x50, 0xea, 0xbc, 0x57, - 0x00, 0xb7, 0x3d, 0xfa, 0xdf, 0x95, 0x93, 0x3a, 0x47, 0x4e, 0x62, 0x8a, 0xc2, 0x79, 0x1f, 0x55, - 0xf3, 0xa5, 0x88, 0x71, 0x2d, 0xda, 0xd6, 0x9a, 0x2e, 0x9e, 0x35, 0xd9, 0xb0, 0xd7, 0x32, 0x54, - 0xcf, 0x5b, 0x7a, 0xbc, 0x8d, 0x80, 0x1f, 0xcb, 0x90, 0x86, 0xe9, 0x93, 0x25, 0x7e, 0x76, 0xb8, - 0xe9, 0xa2, 0xa5, 0x7a, 0x91, 0x09, 0x8c, 0xe8, 0x3c, 0x7a, 0xdf, 0xd0, 0xe1, 0x2d, 0xea, 0x6f, - 0x7b, 0xd6, 0x3f, 0x57, 0x60, 0xf9, 0x1c, 0xb3, 0x31, 0x80, 0x42, 0x46, 0x9b, 0x27, 0x77, 0x3d, - 0xde, 0xc4, 0xee, 0xb6, 0x47, 0x88, 0x74, 0x4a, 0xc2, 0x54, 0xd5, 0x88, 0x74, 0x8a, 0x92, 0x74, - 0x19, 0x9a, 0xe9, 0x29, 0xed, 0x56, 0x29, 0x46, 0x23, 0x3d, 0xc5, 0x6d, 0x6e, 0x60, 0x42, 0x3b, - 0xb1, 0x03, 0xf1, 0x52, 0x04, 0xc4, 0x87, 0xc1, 0xfa, 0xad, 0xb7, 0x9c, 0xf2, 0xda, 0x8e, 0x9c, - 0xec, 0x20, 0x2d, 0xa6, 0xb8, 0xaa, 0x65, 0xfd, 0x10, 0xda, 0x06, 0xca, 0x3a, 0xd0, 0xd8, 0x12, - 0x47, 0xd9, 0x64, 0x78, 0x81, 0xb5, 0xa1, 0x8e, 0x23, 0x86, 0x15, 0x6c, 0x7d, 0xea, 0xc4, 0xe1, - 0xb0, 0x8a, 0x68, 0x2a, 0x88, 0x0e, 0x6b, 0xd8, 0xdc, 0x77, 0x42, 0xdf, 0x1d, 0xd6, 0xb1, 0xf9, - 0xd4, 0x49, 0x9d, 0x60, 0xd8, 0xb0, 0xfe, 0xb2, 0x01, 0xed, 0x7d, 0xfd, 0x75, 0xb6, 0x05, 0xfd, - 0xfc, 0x1f, 0x6d, 0x8b, 0x8b, 0x28, 0xfb, 0xf3, 0x0d, 0x2a, 0xa2, 0xf4, 0xa2, 0x52, 0x6f, 0xfe, - 0x7f, 0x71, 0xd5, 0x73, 0xff, 0x8b, 0x7b, 0x17, 0x6a, 0x2f, 0xe2, 0xb3, 0xd9, 0xcb, 0x95, 0xfd, - 0xc0, 0x09, 0x39, 0x82, 0xd9, 0x47, 0xd0, 0xc5, 0x73, 0xb7, 0x13, 0x72, 0xff, 0xba, 0xf0, 0x50, - 0xfe, 0xf7, 0x21, 0xc1, 0x39, 0x20, 0x91, 0x0e, 0x11, 0xd6, 0xa0, 0xed, 0x1e, 0xfb, 0x81, 0x17, - 0x8b, 0x50, 0x5f, 0x5c, 0xb2, 0xf3, 0x4b, 0xe6, 0x39, 0x0d, 0xfb, 0x1e, 0x3d, 0x11, 0x33, 0x85, - 0x93, 0xa2, 0x0e, 0x3e, 0xa3, 0xb2, 0xa5, 0xd2, 0x0a, 0x5f, 0x2a, 0x91, 0x93, 0x4f, 0x2a, 0xde, - 0x42, 0xb7, 0xca, 0x6f, 0xa1, 0xd5, 0x7f, 0xa5, 0xc8, 0x85, 0xb4, 0xf3, 0x94, 0x09, 0x3d, 0xc8, - 0x1d, 0xed, 0xed, 0x3b, 0xf3, 0xc1, 0xa2, 0xf1, 0x5a, 0xda, 0xeb, 0xdf, 0x82, 0x01, 0x46, 0x11, - 0xb6, 0x0a, 0x3e, 0xd0, 0x94, 0x80, 0xfe, 0x47, 0x43, 0x96, 0x1c, 0x6f, 0x61, 0xf8, 0x81, 0xc2, - 0x78, 0x1b, 0x06, 0x66, 0x2f, 0xfa, 0x81, 0x5b, 0x57, 0xd7, 0xc9, 0x35, 0x54, 0xbd, 0x6f, 0x5b, - 0x83, 0x8b, 0xee, 0xb1, 0x13, 0x86, 0x22, 0xb0, 0x8f, 0xb2, 0xf1, 0xd8, 0x78, 0x80, 0x1e, 0xdd, - 0x2e, 0x2d, 0x6b, 0xd4, 0x63, 0xc2, 0x90, 0x43, 0xb1, 0xa0, 0x1f, 0xfa, 0x81, 0x2a, 0xf0, 0x92, - 0xb7, 0xeb, 0x13, 0x65, 0x37, 0xf4, 0x03, 0xaa, 0xf0, 0xa2, 0xcf, 0xfb, 0x2e, 0x0c, 0xb3, 0xcc, - 0xf7, 0x12, 0x3b, 0x95, 0xe6, 0x6f, 0x66, 0xba, 0x4c, 0x58, 0x2a, 0x2a, 0x3c, 0xcf, 0x7c, 0xef, - 0x50, 0xea, 0x3f, 0x9a, 0xf5, 0x89, 0xde, 0x74, 0xad, 0xef, 0x42, 0xaf, 0x2c, 0x3b, 0x28, 0x8b, - 0x94, 0xb1, 0x0d, 0x2f, 0x30, 0x80, 0xe6, 0x9e, 0x8c, 0xa7, 0x4e, 0x30, 0xac, 0x60, 0x5b, 0xfd, - 0x43, 0x60, 0x58, 0x65, 0x3d, 0x68, 0x9b, 0x54, 0x62, 0x58, 0xb3, 0xbe, 0x05, 0x6d, 0xf3, 0xbf, - 0x39, 0xfa, 0xc3, 0x92, 0xf4, 0x84, 0x8a, 0xc2, 0x94, 0x65, 0x6a, 0x23, 0x80, 0x22, 0x30, 0xf3, - 0x07, 0xd0, 0x6a, 0xf1, 0x07, 0x50, 0xeb, 0xb7, 0xa0, 0x57, 0x5e, 0x9c, 0xa9, 0x91, 0x55, 0x8a, - 0x1a, 0xd9, 0x82, 0x51, 0x74, 0x61, 0x12, 0xcb, 0xa9, 0x5d, 0x0a, 0x19, 0xda, 0x08, 0xc0, 0xcf, - 0x58, 0x7f, 0x50, 0x81, 0x06, 0x85, 0xd6, 0xe4, 0x5a, 0xb0, 0x51, 0xe8, 0x4e, 0x83, 0x77, 0x08, - 0xf2, 0x3f, 0x78, 0xb8, 0x93, 0xdf, 0x2b, 0xd4, 0xdf, 0x7a, 0xaf, 0x70, 0xf7, 0x05, 0x34, 0xd5, - 0x7f, 0x6e, 0xd9, 0x32, 0xf4, 0x9f, 0x87, 0x27, 0xa1, 0x7c, 0x15, 0x2a, 0xc0, 0xf0, 0x02, 0xbb, - 0x08, 0x4b, 0x86, 0xe9, 0xfa, 0xcf, 0xbd, 0xc3, 0x0a, 0x1b, 0x42, 0x8f, 0x8e, 0xd5, 0x40, 0xaa, - 0xec, 0x5d, 0x18, 0x69, 0xe7, 0xb0, 0x25, 0x43, 0xb1, 0x27, 0x53, 0x7f, 0x7c, 0x66, 0xb0, 0x35, - 0xb6, 0x04, 0xdd, 0x83, 0x54, 0x46, 0x07, 0x22, 0xf4, 0xfc, 0x70, 0x32, 0xac, 0xdf, 0x7d, 0x0a, - 0x4d, 0xf5, 0x57, 0xe0, 0xd2, 0x27, 0x15, 0x60, 0x78, 0x01, 0xa9, 0x3f, 0x75, 0xfc, 0xd4, 0x0f, - 0x27, 0x7b, 0xe2, 0x34, 0x55, 0x46, 0x69, 0xc7, 0x49, 0xd2, 0x61, 0x95, 0x0d, 0x00, 0xf4, 0xac, - 0x4f, 0x42, 0x6f, 0x58, 0x7b, 0xbc, 0xf9, 0xf3, 0x5f, 0xbc, 0x5f, 0xf9, 0xdb, 0x5f, 0xbc, 0x5f, - 0xf9, 0x87, 0x5f, 0xbc, 0x7f, 0xe1, 0x27, 0xff, 0xf8, 0x7e, 0xe5, 0xc7, 0x1f, 0x95, 0xfe, 0xe8, - 0x3c, 0x75, 0xd2, 0xd8, 0x3f, 0x55, 0x57, 0x4e, 0xa6, 0x13, 0x8a, 0x07, 0xd1, 0xc9, 0xe4, 0x41, - 0x74, 0xf4, 0xc0, 0xc8, 0xdc, 0x51, 0x93, 0xfe, 0xbf, 0xfc, 0xf1, 0x7f, 0x07, 0x00, 0x00, 0xff, - 0xff, 0xac, 0xec, 0xd9, 0x80, 0x3e, 0x3d, 0x00, 0x00, + 0x3f, 0x24, 0x52, 0xa7, 0x00, 0x09, 0x10, 0x20, 0xff, 0x40, 0xae, 0x86, 0x2f, 0x81, 0x83, 0x04, + 0x09, 0x90, 0x7f, 0xc0, 0x47, 0x1f, 0x73, 0xca, 0x31, 0x08, 0x9c, 0x53, 0x90, 0x20, 0x97, 0x7c, + 0xc0, 0x97, 0x00, 0xc1, 0x7b, 0x55, 0xd5, 0xdd, 0x33, 0x1c, 0xc9, 0xbb, 0x9b, 0xc0, 0x97, 0xf8, + 0x34, 0x55, 0xef, 0xbd, 0xaa, 0xae, 0x79, 0xf5, 0xbe, 0xab, 0x0a, 0x06, 0x91, 0x1f, 0x89, 0xc0, + 0x0f, 0xc5, 0x5a, 0x14, 0xcb, 0x54, 0xb2, 0xb6, 0xe9, 0x5f, 0xbb, 0x3f, 0xf1, 0xd3, 0xe3, 0xec, + 0x68, 0xcd, 0x95, 0xd3, 0x07, 0x13, 0x39, 0x91, 0x0f, 0x88, 0xe0, 0x28, 0x1b, 0x53, 0x8f, 0x3a, + 0xd4, 0x52, 0x03, 0xaf, 0x41, 0x20, 0xdd, 0x13, 0xd3, 0x8e, 0x02, 0x27, 0xd4, 0xed, 0xa5, 0xd4, + 0x9f, 0x8a, 0x24, 0x75, 0xa6, 0x91, 0x06, 0x74, 0xd2, 0x53, 0x8d, 0xb3, 0x7e, 0x5e, 0x85, 0xd6, + 0xae, 0x48, 0x12, 0x67, 0x22, 0x98, 0x05, 0xb5, 0xc4, 0xf7, 0x46, 0x95, 0x95, 0xca, 0xea, 0x60, + 0x7d, 0xb8, 0x96, 0x2f, 0xeb, 0x20, 0x75, 0xd2, 0x2c, 0xe1, 0x88, 0x44, 0x1a, 0x77, 0xea, 0x8d, + 0xaa, 0xf3, 0x34, 0xbb, 0x22, 0x3d, 0x96, 0x1e, 0x47, 0x24, 0x1b, 0x42, 0x4d, 0xc4, 0xf1, 0xa8, + 0xb6, 0x52, 0x59, 0xed, 0x71, 0x6c, 0x32, 0x06, 0x75, 0xcf, 0x49, 0x9d, 0x51, 0x9d, 0x40, 0xd4, + 0x66, 0xb7, 0x60, 0x10, 0xc5, 0xd2, 0xb5, 0xfd, 0x70, 0x2c, 0x6d, 0xc2, 0x36, 0x08, 0xdb, 0x43, + 0xe8, 0x76, 0x38, 0x96, 0x5b, 0x48, 0x35, 0x82, 0x96, 0x13, 0x3a, 0xc1, 0x59, 0x22, 0x46, 0x4d, + 0x42, 0x9b, 0x2e, 0x1b, 0x40, 0xd5, 0xf7, 0x46, 0xad, 0x95, 0xca, 0x6a, 0x9d, 0x57, 0x7d, 0x0f, + 0xbf, 0x91, 0x65, 0xbe, 0x37, 0x6a, 0xab, 0x6f, 0x60, 0x9b, 0x59, 0xd0, 0x0b, 0x85, 0xf0, 0xf6, + 0x64, 0xca, 0x45, 0x14, 0x9c, 0x8d, 0x3a, 0x2b, 0x95, 0xd5, 0x36, 0x9f, 0x81, 0xb1, 0x6b, 0xd0, + 0xf6, 0xc4, 0x51, 0x36, 0xd9, 0x4d, 0x26, 0x23, 0x58, 0xa9, 0xac, 0x76, 0x78, 0xde, 0x67, 0x5f, + 0x81, 0xfe, 0x2b, 0x27, 0x0e, 0xfd, 0x70, 0x62, 0xbb, 0x32, 0x0b, 0xd3, 0x51, 0x77, 0xa5, 0xb2, + 0xda, 0xe7, 0x3d, 0x0d, 0xdc, 0x44, 0x98, 0xf5, 0x1c, 0x3a, 0x9b, 0x32, 0x0c, 0x85, 0x9b, 0xca, + 0x98, 0xdd, 0x80, 0xae, 0xe1, 0x89, 0xad, 0x79, 0xd9, 0xe0, 0x60, 0x40, 0xdb, 0x1e, 0xfb, 0x00, + 0x96, 0x5c, 0x43, 0x6d, 0xfb, 0xa1, 0x27, 0x4e, 0x89, 0x99, 0x0d, 0x3e, 0xc8, 0xc1, 0xdb, 0x08, + 0xb5, 0xfe, 0xa5, 0x0a, 0xad, 0x83, 0xe3, 0x6c, 0x3c, 0x0e, 0x04, 0xbb, 0x05, 0x7d, 0xdd, 0xdc, + 0x94, 0xc1, 0xb6, 0x77, 0xaa, 0xe7, 0x9d, 0x05, 0xb2, 0x15, 0xe8, 0x6a, 0xc0, 0xe1, 0x59, 0x24, + 0xf4, 0xb4, 0x65, 0xd0, 0xec, 0x3c, 0xbb, 0x7e, 0x48, 0x7b, 0x54, 0xe3, 0xb3, 0xc0, 0x39, 0x2a, + 0xe7, 0x94, 0xb6, 0x6d, 0x96, 0xca, 0xa1, 0xaf, 0x6d, 0x04, 0xfe, 0x4b, 0xc1, 0xc5, 0x64, 0x33, + 0x4c, 0x69, 0xf3, 0x1a, 0xbc, 0x0c, 0x62, 0xeb, 0x70, 0x39, 0x51, 0x43, 0xec, 0xd8, 0x09, 0x27, + 0x22, 0xb1, 0x33, 0x3f, 0x4c, 0xbf, 0xfe, 0xb5, 0x51, 0x73, 0xa5, 0xb6, 0x5a, 0xe7, 0x17, 0x35, + 0x92, 0x13, 0xee, 0x39, 0xa1, 0xd8, 0x43, 0xb8, 0x34, 0x37, 0x46, 0x0d, 0x69, 0xad, 0xd4, 0x56, + 0x6b, 0x9c, 0xcd, 0x0c, 0xd9, 0xa6, 0x11, 0x4f, 0x60, 0x39, 0xce, 0x42, 0x14, 0xf1, 0xa7, 0x7e, + 0x90, 0x8a, 0xf8, 0x20, 0x12, 0x2e, 0x09, 0x41, 0x77, 0xfd, 0xea, 0x1a, 0x69, 0x01, 0x9f, 0x47, + 0xf3, 0xf3, 0x23, 0xac, 0x5f, 0x55, 0xa1, 0xbd, 0xe5, 0x27, 0x91, 0x93, 0xba, 0xc7, 0xec, 0x2a, + 0xb4, 0xc6, 0x59, 0xe8, 0x16, 0x3b, 0xd8, 0xc4, 0xee, 0xb6, 0xc7, 0xfe, 0x3f, 0x2c, 0x05, 0xd2, + 0x75, 0x02, 0x3b, 0xdf, 0xac, 0x51, 0x75, 0xa5, 0xb6, 0xda, 0x5d, 0xbf, 0x58, 0xa8, 0x42, 0x2e, + 0x0c, 0x7c, 0x40, 0xb4, 0x85, 0x70, 0x7c, 0x1b, 0x86, 0xb1, 0x98, 0xca, 0x54, 0x94, 0x86, 0xd7, + 0x68, 0x38, 0x2b, 0x86, 0x7f, 0x1a, 0x3b, 0xd1, 0x9e, 0xf4, 0x04, 0x5f, 0x52, 0xb4, 0xc5, 0xf0, + 0x8f, 0x4a, 0xfc, 0x14, 0x13, 0xdb, 0xf7, 0x4e, 0x6d, 0xfa, 0xc0, 0xa8, 0xbe, 0x52, 0x5b, 0x6d, + 0x14, 0xcc, 0x11, 0x93, 0x6d, 0xef, 0x74, 0x07, 0x31, 0xec, 0x63, 0xb8, 0x32, 0x3f, 0x44, 0xcd, + 0x3a, 0x6a, 0xd0, 0x98, 0x8b, 0x33, 0x63, 0x38, 0xa1, 0xd8, 0x4d, 0xe8, 0x99, 0x41, 0x29, 0x0a, + 0x52, 0x53, 0x6d, 0x6d, 0x52, 0x12, 0xa4, 0xab, 0xd0, 0xf2, 0x13, 0x3b, 0xf1, 0xc3, 0x13, 0xd2, + 0xc0, 0x36, 0x6f, 0xfa, 0xc9, 0x81, 0x1f, 0x9e, 0xb0, 0x77, 0xa0, 0x1d, 0x0b, 0x57, 0x61, 0xda, + 0x84, 0x69, 0xc5, 0xc2, 0x25, 0xd4, 0x55, 0xc0, 0xa6, 0xed, 0xa6, 0x42, 0xeb, 0x61, 0x33, 0x16, + 0xee, 0x66, 0x2a, 0xac, 0x04, 0x1a, 0xbb, 0x22, 0x9e, 0x08, 0x54, 0x45, 0x1c, 0x78, 0xe0, 0x3a, + 0x21, 0xf1, 0xbd, 0xcd, 0xf3, 0x3e, 0x1a, 0x82, 0xc8, 0x89, 0x53, 0xdf, 0x09, 0x48, 0xb0, 0xdb, + 0xdc, 0x74, 0xd9, 0x75, 0xe8, 0x24, 0xa9, 0x13, 0xa7, 0xf8, 0xef, 0x48, 0xa0, 0x1b, 0xbc, 0x4d, + 0x00, 0xd4, 0x89, 0xab, 0xd0, 0x12, 0xa1, 0x47, 0xa8, 0xba, 0xda, 0x49, 0x11, 0x7a, 0xdb, 0xde, + 0xa9, 0xf5, 0x37, 0x15, 0xe8, 0xef, 0x66, 0x41, 0xea, 0x6f, 0xc4, 0x93, 0x4c, 0x4c, 0xc3, 0x14, + 0x0d, 0xc8, 0x96, 0x9f, 0xa4, 0xfa, 0xcb, 0xd4, 0x66, 0xab, 0xd0, 0xf9, 0x7e, 0x2c, 0xb3, 0xe8, + 0xc9, 0x69, 0x64, 0x76, 0x1a, 0x94, 0x50, 0x21, 0x84, 0x17, 0x48, 0x76, 0x0f, 0xba, 0xcf, 0x62, + 0x4f, 0xc4, 0x8f, 0xcf, 0x88, 0xb6, 0x76, 0x8e, 0xb6, 0x8c, 0x66, 0xef, 0x42, 0xe7, 0x40, 0x44, + 0x4e, 0xec, 0xa0, 0x08, 0xd4, 0xc9, 0xea, 0x14, 0x00, 0xfc, 0xaf, 0x44, 0xbc, 0xed, 0x69, 0xb5, + 0x32, 0x5d, 0x6b, 0x02, 0x9d, 0x8d, 0xc9, 0x24, 0x16, 0x13, 0x27, 0x25, 0x0b, 0x28, 0x23, 0x5a, + 0x6e, 0x8d, 0x57, 0x65, 0x44, 0x56, 0x16, 0xff, 0x80, 0xe2, 0x0f, 0xb5, 0xd9, 0xfb, 0x50, 0x17, + 0x8b, 0xd7, 0x43, 0x70, 0x76, 0x05, 0x9a, 0xae, 0x0c, 0xc7, 0xfe, 0x44, 0xdb, 0x66, 0xdd, 0xb3, + 0xfe, 0xbc, 0x06, 0x0d, 0xfa, 0x73, 0xc8, 0x5e, 0xb4, 0x97, 0xb6, 0x78, 0xe9, 0x04, 0x66, 0x57, + 0x10, 0xf0, 0xe4, 0xa5, 0x13, 0xb0, 0x15, 0x68, 0xe0, 0x34, 0xc9, 0x02, 0xde, 0x28, 0x04, 0xbb, + 0x03, 0x0d, 0x14, 0xa2, 0x64, 0x76, 0x05, 0x28, 0x44, 0x8f, 0xeb, 0xbf, 0xf8, 0xfb, 0x1b, 0x17, + 0xb8, 0x42, 0xb3, 0x0f, 0xa0, 0xee, 0x4c, 0x26, 0x09, 0xc9, 0xf2, 0x8c, 0x3a, 0xe5, 0xff, 0x97, + 0x13, 0x01, 0x7b, 0x04, 0x1d, 0xb5, 0x6f, 0x48, 0xdd, 0x20, 0xea, 0xab, 0x25, 0x3f, 0x54, 0xde, + 0x52, 0x5e, 0x50, 0x22, 0xc7, 0xfd, 0x44, 0x5b, 0x30, 0x92, 0xe8, 0x36, 0x2f, 0x00, 0xe8, 0x28, + 0xa2, 0x58, 0x6c, 0x04, 0x81, 0x74, 0x0f, 0xfc, 0xd7, 0x42, 0xbb, 0x95, 0x19, 0x18, 0xbb, 0x03, + 0x83, 0x7d, 0x25, 0x72, 0x5c, 0x24, 0x59, 0x90, 0x26, 0xda, 0xd5, 0xcc, 0x41, 0xd9, 0x1a, 0xb0, + 0x19, 0xc8, 0x21, 0xfd, 0xfd, 0xce, 0x4a, 0x6d, 0xb5, 0xcf, 0x17, 0x60, 0xd0, 0xc9, 0x4c, 0x90, + 0xd3, 0xe8, 0x65, 0xc6, 0x81, 0x83, 0x5e, 0xa8, 0x86, 0x5e, 0xca, 0x00, 0x9f, 0x06, 0xce, 0x84, + 0x84, 0x3c, 0xf2, 0x83, 0xc0, 0x9e, 0x8a, 0x29, 0x79, 0xa1, 0x1a, 0x6f, 0x13, 0x60, 0x57, 0x4c, + 0xad, 0x7f, 0xaf, 0x42, 0x73, 0x3b, 0x4c, 0x44, 0x9c, 0xa2, 0x0a, 0x39, 0xe3, 0xb1, 0x70, 0x53, + 0xa1, 0x4c, 0x57, 0x9d, 0xe7, 0x7d, 0x64, 0xc1, 0xa1, 0xfc, 0x34, 0xf6, 0x53, 0x71, 0xf0, 0xb1, + 0x16, 0x92, 0x02, 0xc0, 0xee, 0xc2, 0xb2, 0xe3, 0x79, 0xb6, 0xa1, 0xb6, 0x63, 0xf9, 0x2a, 0x21, + 0x75, 0x6a, 0xf3, 0x25, 0xc7, 0xf3, 0x36, 0x34, 0x9c, 0xcb, 0x57, 0x09, 0xbb, 0x09, 0xb5, 0x58, + 0x8c, 0x49, 0x64, 0xba, 0xeb, 0x4b, 0x6a, 0x4b, 0x9f, 0x1d, 0x7d, 0x26, 0xdc, 0x94, 0x8b, 0x31, + 0x47, 0x1c, 0xbb, 0x04, 0x0d, 0x27, 0x4d, 0x63, 0xb5, 0x45, 0x1d, 0xae, 0x3a, 0x6c, 0x0d, 0x2e, + 0x92, 0xda, 0xa6, 0xbe, 0x0c, 0xed, 0xd4, 0x39, 0x0a, 0xd0, 0x4b, 0x26, 0xda, 0x21, 0x2c, 0xe7, + 0xa8, 0x43, 0xc4, 0x6c, 0x7b, 0x09, 0xba, 0x90, 0x79, 0xfa, 0xd0, 0x99, 0x8a, 0x84, 0xfc, 0x41, + 0x87, 0x5f, 0x9c, 0x1d, 0xb1, 0x87, 0x28, 0xe4, 0x67, 0x31, 0x06, 0x15, 0xbf, 0x4d, 0x3a, 0xd4, + 0xcb, 0x81, 0x68, 0x17, 0x2e, 0x43, 0xd3, 0x4f, 0x6c, 0x11, 0x7a, 0xda, 0x16, 0x35, 0xfc, 0xe4, + 0x49, 0xe8, 0xb1, 0x0f, 0xa1, 0xa3, 0xbe, 0xe2, 0x89, 0x31, 0x45, 0x03, 0xdd, 0xf5, 0x81, 0x96, + 0x58, 0x04, 0x6f, 0x89, 0x31, 0x6f, 0xa7, 0xba, 0x65, 0xfd, 0x61, 0x05, 0xba, 0x24, 0x60, 0xcf, + 0x23, 0x0f, 0xf5, 0xf1, 0x2b, 0xd0, 0x9f, 0xe5, 0x9e, 0xda, 0x80, 0x9e, 0x53, 0x66, 0xdd, 0x15, + 0x68, 0x6e, 0xb8, 0xb8, 0x0a, 0xda, 0x81, 0x3e, 0xd7, 0x3d, 0xf6, 0x0d, 0x58, 0xca, 0x68, 0x1a, + 0xdb, 0x4d, 0x4f, 0xed, 0x00, 0xf5, 0x58, 0x69, 0x8c, 0x66, 0xaf, 0xfa, 0xc6, 0x66, 0x7a, 0xca, + 0xfb, 0x99, 0x69, 0xee, 0xf8, 0x49, 0x6a, 0xbd, 0x07, 0x8d, 0x8d, 0x38, 0x76, 0xce, 0x88, 0xe3, + 0xd8, 0x18, 0x55, 0xc8, 0xb4, 0xab, 0x8e, 0xe5, 0x42, 0x6d, 0xd7, 0x89, 0xd8, 0x6d, 0xa8, 0x4e, + 0x23, 0xc2, 0x74, 0xd7, 0x2f, 0x97, 0xd4, 0xc5, 0x89, 0xd6, 0x76, 0xa3, 0x27, 0x61, 0x1a, 0x9f, + 0xf1, 0xea, 0x34, 0xba, 0xf6, 0x08, 0x5a, 0xba, 0x8b, 0x51, 0xdc, 0x89, 0x38, 0xa3, 0xff, 0xd0, + 0xe1, 0xd8, 0xc4, 0x0f, 0xbc, 0x74, 0x82, 0xcc, 0x44, 0x16, 0xaa, 0xf3, 0xff, 0xaa, 0x9f, 0x54, + 0xac, 0xff, 0xa8, 0x43, 0x7b, 0x4b, 0x04, 0x82, 0xfe, 0x89, 0x05, 0xbd, 0xb2, 0xb0, 0x18, 0x2e, + 0xcc, 0x08, 0x90, 0x05, 0x3d, 0xe5, 0x6c, 0x68, 0x94, 0xd0, 0xd2, 0x38, 0x03, 0x43, 0x2b, 0xb8, + 0xfd, 0x38, 0x73, 0x4f, 0x44, 0x4a, 0x62, 0xd8, 0xe7, 0xa6, 0x8b, 0x98, 0x3d, 0x8d, 0xa9, 0x2b, + 0x8c, 0xee, 0xb2, 0x77, 0x01, 0x62, 0xf9, 0xca, 0xf6, 0x95, 0xc5, 0x57, 0xc6, 0xb3, 0x1d, 0xcb, + 0x57, 0xdb, 0x68, 0xf3, 0x7f, 0x23, 0xd2, 0xf7, 0x0d, 0x18, 0x95, 0xa4, 0x0f, 0x23, 0x39, 0xdb, + 0x0f, 0xed, 0x23, 0x0c, 0x2b, 0xb4, 0x20, 0x16, 0x73, 0x52, 0xa0, 0xb7, 0x1d, 0x3e, 0xa6, 0x98, + 0x43, 0xeb, 0x54, 0xe7, 0x2d, 0x3a, 0xb5, 0x50, 0x45, 0x61, 0xb1, 0x8a, 0x3e, 0x06, 0x38, 0x10, + 0x93, 0xa9, 0x08, 0xd3, 0x5d, 0x27, 0x1a, 0x75, 0x69, 0xe3, 0xad, 0x62, 0xe3, 0xcd, 0x6e, 0xad, + 0x15, 0x44, 0x4a, 0x0a, 0x4a, 0xa3, 0x30, 0x10, 0x70, 0x9d, 0xd0, 0x4e, 0xe3, 0x2c, 0x74, 0x9d, + 0x54, 0x8c, 0x7a, 0xf4, 0xa9, 0xae, 0xeb, 0x84, 0x87, 0x1a, 0x54, 0xd2, 0xa3, 0x7e, 0x59, 0x8f, + 0xee, 0xc0, 0x52, 0x14, 0xfb, 0x53, 0x27, 0x3e, 0xb3, 0x4f, 0xc4, 0x19, 0x6d, 0xc6, 0x40, 0x85, + 0xac, 0x1a, 0xfc, 0x23, 0x71, 0xb6, 0xed, 0x9d, 0x5e, 0xfb, 0x36, 0x2c, 0xcd, 0x2d, 0xe0, 0x0b, + 0xc9, 0xdd, 0x4f, 0x6a, 0xd0, 0xd9, 0x8f, 0x85, 0xb6, 0x7d, 0x37, 0xa0, 0x9b, 0xb8, 0xc7, 0x62, + 0xea, 0xd0, 0x2e, 0xe9, 0x19, 0x40, 0x81, 0x70, 0x73, 0x66, 0xb5, 0xbb, 0xfa, 0x76, 0xed, 0xc6, + 0x75, 0xa8, 0x80, 0x02, 0x95, 0x09, 0x9b, 0x85, 0x49, 0xab, 0x97, 0x4d, 0xda, 0x0a, 0xf4, 0x8e, + 0x9d, 0xc4, 0x76, 0xb2, 0x54, 0xda, 0xae, 0x0c, 0x48, 0xe8, 0xda, 0x1c, 0x8e, 0x9d, 0x64, 0x23, + 0x4b, 0xe5, 0xa6, 0x0c, 0xd8, 0x7b, 0x00, 0xae, 0x0c, 0x6c, 0x39, 0x1e, 0x27, 0x22, 0xd5, 0xd1, + 0x54, 0xc7, 0x95, 0xc1, 0x33, 0x02, 0xa0, 0x54, 0x8a, 0x24, 0xf5, 0xa7, 0x8e, 0xde, 0x52, 0x9d, + 0x6a, 0xb4, 0xc8, 0xc8, 0x2f, 0xe7, 0x28, 0x2e, 0x5f, 0x51, 0xbe, 0xc1, 0x1e, 0xc2, 0xc0, 0x95, + 0xd3, 0xc8, 0x8e, 0x90, 0xb3, 0xe4, 0xdc, 0x55, 0xb4, 0x5b, 0x76, 0xbe, 0x3d, 0xa4, 0xd8, 0x3f, + 0x11, 0x2a, 0xda, 0x58, 0x87, 0x25, 0x37, 0xc8, 0x92, 0x54, 0xc4, 0xf6, 0x91, 0x1e, 0xd2, 0x39, + 0x37, 0xa4, 0xaf, 0x49, 0x74, 0x84, 0x62, 0x41, 0xdf, 0x4f, 0x6c, 0x19, 0x78, 0xb6, 0x32, 0x37, + 0x5a, 0xce, 0xba, 0x7e, 0xf2, 0x2c, 0xf0, 0xb4, 0xc1, 0x53, 0x34, 0xa1, 0x78, 0x65, 0x68, 0xba, + 0x86, 0x66, 0x4f, 0xbc, 0x52, 0x34, 0xd6, 0xdf, 0x55, 0xa1, 0xb5, 0x2f, 0x93, 0x74, 0x6b, 0x1a, + 0x18, 0x11, 0xaf, 0x7c, 0x51, 0x11, 0xaf, 0x2e, 0x16, 0xf1, 0x05, 0x42, 0x56, 0x5b, 0x20, 0x64, + 0x6c, 0x15, 0x86, 0x65, 0x3a, 0x12, 0x0e, 0x15, 0x73, 0x0d, 0x0a, 0x42, 0x12, 0x90, 0xeb, 0x18, + 0x24, 0xd8, 0x9e, 0xb2, 0x49, 0x6a, 0x23, 0xdb, 0x7e, 0xa2, 0xed, 0x91, 0x42, 0xfa, 0x24, 0x6b, + 0x3a, 0x82, 0x68, 0xfb, 0x89, 0x96, 0xbd, 0x6f, 0xc2, 0x3b, 0xf9, 0x48, 0xfb, 0x95, 0x9f, 0x1e, + 0xcb, 0x2c, 0xb5, 0xc7, 0x94, 0x5e, 0x24, 0x3a, 0x44, 0xbe, 0x62, 0x66, 0xfa, 0x54, 0xa1, 0x55, + 0xf2, 0x41, 0x01, 0xcd, 0x38, 0x0b, 0x02, 0x3b, 0x15, 0xa7, 0xa9, 0xde, 0xca, 0x91, 0xe2, 0x8d, + 0xe6, 0xdb, 0xd3, 0x2c, 0x08, 0x0e, 0xc5, 0x69, 0x8a, 0xc6, 0xbf, 0x3d, 0xd6, 0x1d, 0xeb, 0x4f, + 0xeb, 0x00, 0x3b, 0xd2, 0x3d, 0x39, 0x74, 0xe2, 0x89, 0x48, 0x31, 0xf0, 0x36, 0x16, 0x4d, 0x5b, + 0xdc, 0x56, 0xaa, 0xec, 0x18, 0x5b, 0x87, 0x2b, 0xe6, 0xff, 0xa3, 0x1c, 0x62, 0x12, 0xa0, 0x4c, + 0x92, 0x56, 0x28, 0xa6, 0xb1, 0x2a, 0x8d, 0x24, 0x7b, 0xc4, 0x3e, 0x29, 0x78, 0x8b, 0x63, 0xd2, + 0xb3, 0x88, 0x78, 0xbb, 0x28, 0x80, 0xeb, 0x17, 0xc3, 0x0f, 0xcf, 0x22, 0xf6, 0x10, 0x2e, 0xc7, + 0x62, 0x1c, 0x8b, 0xe4, 0xd8, 0x4e, 0x93, 0xf2, 0xc7, 0x54, 0xfc, 0xbd, 0xac, 0x91, 0x87, 0x49, + 0xfe, 0xad, 0x87, 0x70, 0x59, 0x71, 0x6a, 0x7e, 0x79, 0xca, 0x7e, 0x2f, 0x2b, 0x64, 0x79, 0x75, + 0xef, 0x01, 0xd5, 0x3a, 0x94, 0x4d, 0x36, 0xd1, 0x5c, 0x40, 0xcc, 0x38, 0x0a, 0x04, 0x06, 0x3a, + 0x9b, 0xc7, 0x98, 0x22, 0x6e, 0x89, 0xb1, 0x66, 0x7e, 0x01, 0x60, 0x16, 0xd4, 0x77, 0xa5, 0x27, + 0x88, 0xd5, 0x83, 0xf5, 0xc1, 0x1a, 0x55, 0x4d, 0x90, 0x93, 0x08, 0xe5, 0x84, 0x63, 0x1f, 0x00, + 0x4d, 0xa7, 0xc4, 0xef, 0xbc, 0xae, 0xb4, 0x11, 0x49, 0x32, 0xf8, 0x10, 0x2e, 0x17, 0x2b, 0xb1, + 0x9d, 0xd4, 0x4e, 0x8f, 0x05, 0x99, 0x43, 0xa5, 0x2e, 0xcb, 0xf9, 0xa2, 0x36, 0xd2, 0xc3, 0x63, + 0x81, 0xa6, 0x71, 0x15, 0x5a, 0xf2, 0xe8, 0x33, 0x1b, 0x15, 0xa1, 0xbb, 0x58, 0x11, 0x9a, 0xf2, + 0xe8, 0x33, 0x2e, 0xc6, 0xec, 0xeb, 0x65, 0x57, 0x32, 0xc7, 0x9a, 0x1e, 0xb1, 0xe6, 0x52, 0x8e, + 0x2f, 0x71, 0xc7, 0xfa, 0x04, 0x9a, 0xf8, 0x77, 0x9e, 0x45, 0x6c, 0x0d, 0x5a, 0x29, 0x89, 0x47, + 0xa2, 0x5d, 0xff, 0xa5, 0xc2, 0x03, 0x14, 0xb2, 0xc3, 0x0d, 0x91, 0xc5, 0x61, 0x29, 0x37, 0xa7, + 0xcf, 0x43, 0xff, 0x45, 0x26, 0xd8, 0x77, 0x61, 0x39, 0x8a, 0x85, 0x16, 0x7b, 0x3b, 0x3b, 0xc1, + 0xf0, 0x44, 0x6b, 0xf0, 0x25, 0x2d, 0xa5, 0xf9, 0x88, 0x13, 0x94, 0xd0, 0x41, 0x34, 0xd3, 0xb7, + 0x7e, 0x0c, 0x57, 0x73, 0x8a, 0x03, 0xe1, 0xca, 0xd0, 0x73, 0xe2, 0x33, 0xf2, 0x7c, 0x73, 0x73, + 0x27, 0x5f, 0x64, 0xee, 0x03, 0x9a, 0xfb, 0xa7, 0x35, 0x18, 0x3c, 0x0b, 0xb7, 0xb2, 0x28, 0xf0, + 0xd1, 0x1b, 0xfd, 0x48, 0x39, 0x0b, 0x65, 0xa4, 0x2b, 0x65, 0x23, 0xbd, 0x0a, 0x43, 0xfd, 0x15, + 0xe4, 0xa3, 0x32, 0xb0, 0xba, 0xec, 0xa2, 0xe0, 0x9b, 0x32, 0x50, 0xd6, 0xf5, 0xdb, 0x70, 0x39, + 0xa3, 0x7f, 0xae, 0x28, 0x8f, 0x85, 0x7b, 0x62, 0xbf, 0x21, 0x83, 0x62, 0x8a, 0x10, 0x87, 0x22, + 0x19, 0x99, 0xcd, 0x1b, 0xd0, 0x2d, 0x86, 0x1b, 0x4f, 0x01, 0x39, 0x21, 0xad, 0x44, 0x86, 0xb6, + 0x67, 0x96, 0xac, 0xe3, 0x14, 0xf4, 0x31, 0x03, 0x59, 0xfc, 0x13, 0x34, 0x5b, 0xbf, 0x07, 0xcb, + 0x33, 0x94, 0xb4, 0x8a, 0x26, 0xad, 0xe2, 0x7e, 0xb1, 0x8d, 0xb3, 0x7f, 0xbf, 0xdc, 0xc5, 0xf5, + 0x28, 0x9f, 0xbe, 0x24, 0x67, 0xa1, 0xc6, 0x94, 0x4d, 0x42, 0x19, 0x0b, 0xad, 0x20, 0x68, 0xca, + 0xa8, 0x7f, 0x6d, 0x0f, 0x2e, 0x2d, 0x9a, 0x65, 0x81, 0x63, 0x5e, 0x29, 0x3b, 0xe6, 0xb9, 0xec, + 0xaf, 0x70, 0xd2, 0x7f, 0x56, 0x81, 0xee, 0xd3, 0xec, 0xf5, 0xeb, 0x33, 0x65, 0xf0, 0x58, 0x0f, + 0x2a, 0x7b, 0x34, 0x4b, 0x95, 0x57, 0xf6, 0x30, 0x1e, 0xde, 0x3f, 0x41, 0xe3, 0x4b, 0x93, 0x74, + 0xb8, 0xee, 0x61, 0xde, 0xb8, 0x7f, 0x72, 0xf8, 0x16, 0xb3, 0xa3, 0xd0, 0x98, 0xf0, 0x3c, 0xce, + 0xfc, 0x00, 0xe3, 0x3b, 0x6d, 0x61, 0xf2, 0x3e, 0x66, 0x62, 0xdb, 0x63, 0x25, 0x2f, 0x4f, 0x63, + 0x39, 0x55, 0x12, 0xad, 0xed, 0xfa, 0x02, 0x8c, 0xf5, 0xab, 0x3a, 0xb4, 0x7f, 0xe0, 0x24, 0xc7, + 0x3f, 0x94, 0x7e, 0xc8, 0x1e, 0x42, 0xe7, 0x33, 0xe9, 0x87, 0xaa, 0x04, 0xa2, 0x6a, 0xa2, 0x17, + 0xd5, 0x22, 0xf6, 0xa4, 0x27, 0xd6, 0x90, 0x06, 0x57, 0xc3, 0xdb, 0x9f, 0xe9, 0x96, 0x76, 0x87, + 0xb1, 0x3f, 0x39, 0x4e, 0x6d, 0x04, 0x6a, 0xbf, 0xd5, 0xf5, 0x13, 0x8e, 0x30, 0x9a, 0xf5, 0x5d, + 0xc0, 0xc8, 0xe0, 0xd8, 0x96, 0xa1, 0x1d, 0x9d, 0xe8, 0xf4, 0xaa, 0x8d, 0x90, 0x67, 0xe1, 0xfe, + 0x09, 0xda, 0x35, 0x3f, 0xb1, 0x75, 0xa1, 0x85, 0xfe, 0xce, 0x4c, 0x96, 0x7a, 0x0b, 0x06, 0x18, + 0x8f, 0x25, 0x27, 0x7e, 0x64, 0x47, 0xb1, 0x3c, 0x32, 0xff, 0x05, 0xa3, 0xb4, 0x83, 0x13, 0x3f, + 0xda, 0x47, 0x18, 0x85, 0x41, 0xba, 0x7c, 0x83, 0xc2, 0xa5, 0xe2, 0x0d, 0xd0, 0x20, 0x64, 0x0b, + 0xd5, 0x68, 0x02, 0x95, 0x63, 0xb4, 0x48, 0xf4, 0x5a, 0xb1, 0x08, 0x30, 0x99, 0x40, 0x14, 0x8a, + 0x3d, 0xa1, 0xda, 0x0a, 0xe5, 0x4a, 0x85, 0xfa, 0x2a, 0x40, 0x20, 0xc6, 0xa8, 0x40, 0xa1, 0xa7, + 0xd2, 0xd9, 0xb9, 0x5a, 0x08, 0x62, 0x37, 0x11, 0xc9, 0x3e, 0x84, 0xae, 0xe2, 0x82, 0xa2, 0x85, + 0x73, 0xb4, 0x40, 0x68, 0x45, 0x7c, 0x17, 0xba, 0xa1, 0x0c, 0x6d, 0xf1, 0x82, 0xa8, 0xb5, 0x4d, + 0x9c, 0x99, 0x38, 0x94, 0xe1, 0x93, 0x17, 0x48, 0xcc, 0x1e, 0xe8, 0x35, 0xa8, 0x8a, 0x42, 0xef, + 0x0d, 0x15, 0x05, 0x5a, 0x89, 0xca, 0xad, 0x3f, 0x32, 0x2b, 0x51, 0x23, 0xfa, 0x6f, 0x18, 0xa1, + 0xd6, 0xa3, 0x86, 0xac, 0x40, 0x8f, 0xf6, 0x7d, 0xea, 0x44, 0x76, 0xea, 0x4c, 0x74, 0xdc, 0x0a, + 0x08, 0xdb, 0x75, 0xa2, 0x43, 0x67, 0xc2, 0x38, 0xbc, 0xa3, 0xeb, 0x87, 0xda, 0xc3, 0xdb, 0x47, + 0x28, 0x71, 0x8a, 0x6b, 0x4b, 0xa6, 0x22, 0xb1, 0xb8, 0xf2, 0x78, 0x65, 0xa6, 0xf2, 0x48, 0x92, + 0x4a, 0x59, 0xdc, 0xbf, 0x55, 0xa0, 0xbd, 0x23, 0x65, 0xf4, 0x25, 0x45, 0xaf, 0xbc, 0xa5, 0xd5, + 0x37, 0x6f, 0x69, 0x6d, 0x76, 0x4b, 0xe7, 0x58, 0x5f, 0x7f, 0x1b, 0xeb, 0xe7, 0x38, 0xd9, 0xf8, + 0x12, 0x9c, 0x6c, 0xce, 0x73, 0xd2, 0x6a, 0x41, 0xe3, 0x40, 0xa4, 0xcf, 0x22, 0xeb, 0x9f, 0x1a, + 0xd0, 0xd9, 0x12, 0x5e, 0xa6, 0xfe, 0x7f, 0xf9, 0xdf, 0x54, 0xde, 0xfc, 0x6f, 0xaa, 0xb3, 0xff, + 0x06, 0x7d, 0xb6, 0x11, 0xd0, 0x05, 0xd6, 0xba, 0x6d, 0xe4, 0x13, 0x25, 0xb9, 0x10, 0x4f, 0x5d, + 0x70, 0x9a, 0xf9, 0xd7, 0xb9, 0x74, 0xbe, 0x7d, 0xab, 0x1b, 0x5f, 0x6a, 0xab, 0xe7, 0x94, 0xfc, + 0x5c, 0x29, 0x6a, 0x9e, 0x6b, 0xad, 0x73, 0xf2, 0x37, 0xa7, 0xe0, 0xed, 0x73, 0x0a, 0xbe, 0x03, + 0x17, 0x67, 0x3c, 0x87, 0xa3, 0x0a, 0x0e, 0x1d, 0x92, 0xa4, 0x77, 0x4b, 0x92, 0x54, 0xb2, 0xf3, + 0xaa, 0x0c, 0xc1, 0x97, 0xe5, 0x3c, 0x08, 0xad, 0x8e, 0x87, 0x5b, 0x43, 0x0e, 0x91, 0x82, 0x67, + 0x75, 0x4c, 0xd2, 0x23, 0xe8, 0xa6, 0x0c, 0xc8, 0x5e, 0x7f, 0x02, 0x4b, 0x05, 0x95, 0x92, 0x91, + 0xee, 0x1b, 0x64, 0xa4, 0x6f, 0x06, 0x2a, 0x31, 0xf9, 0x4d, 0x28, 0xf5, 0x7d, 0xb8, 0x68, 0xaa, + 0x2b, 0x3a, 0x8e, 0xa2, 0x1d, 0x1c, 0x90, 0x04, 0x0d, 0x75, 0x41, 0x85, 0x42, 0x28, 0xda, 0xa2, + 0x6f, 0xc1, 0xa5, 0x12, 0x39, 0x3a, 0xde, 0xb2, 0x72, 0x97, 0x65, 0x65, 0x39, 0x1f, 0x8b, 0xdd, + 0x1d, 0x55, 0x72, 0xed, 0x7a, 0x22, 0x30, 0x1f, 0x1a, 0x0d, 0x55, 0xbe, 0xe7, 0x89, 0x40, 0x7d, + 0xc0, 0xfa, 0xd7, 0x06, 0x0c, 0xc8, 0x21, 0xfc, 0x56, 0xe0, 0x7f, 0x2b, 0xf0, 0xff, 0x17, 0x04, + 0xfe, 0x0f, 0x2a, 0xd0, 0xda, 0x8f, 0xa5, 0x97, 0xb9, 0xe9, 0x97, 0x94, 0xf4, 0x59, 0x09, 0xaa, + 0xfd, 0x3a, 0x09, 0xaa, 0x9f, 0x73, 0x34, 0x3f, 0xab, 0x40, 0x47, 0x2f, 0x61, 0x67, 0xfd, 0x4b, + 0x2e, 0xa2, 0x38, 0x4a, 0xa9, 0x2c, 0x3c, 0x4a, 0xf9, 0xb5, 0xab, 0x40, 0xc1, 0x7a, 0xa9, 0x0e, + 0x7e, 0x65, 0xa4, 0x9c, 0x7b, 0x43, 0x09, 0x96, 0x82, 0x3e, 0x8b, 0x70, 0xef, 0xac, 0x57, 0xd0, + 0xa1, 0xf4, 0x88, 0x2c, 0xc3, 0x15, 0x68, 0xc6, 0x74, 0x56, 0xa0, 0x17, 0xaa, 0x7b, 0x6f, 0xd7, + 0xd3, 0xea, 0x97, 0x8b, 0x41, 0xfe, 0xba, 0x02, 0x7d, 0xca, 0x55, 0x9f, 0x66, 0xa1, 0xd2, 0x84, + 0xc5, 0xc9, 0xd4, 0x0a, 0xd4, 0x63, 0x4c, 0x29, 0xd5, 0x67, 0x7a, 0xea, 0x33, 0x9b, 0x32, 0xd8, + 0x12, 0x63, 0x4e, 0x18, 0x64, 0x95, 0x13, 0x4f, 0x92, 0x45, 0xa7, 0x4e, 0x08, 0xc7, 0x7f, 0x15, + 0x39, 0xb1, 0x33, 0x4d, 0xcc, 0xa9, 0x93, 0xea, 0x31, 0x06, 0x75, 0xd2, 0x37, 0xc5, 0x16, 0x6a, + 0xeb, 0x5c, 0x25, 0xf1, 0xc3, 0x49, 0x6e, 0x3c, 0xda, 0x74, 0xd8, 0x38, 0x09, 0x84, 0xb5, 0x01, + 0x97, 0x9f, 0x9c, 0xa6, 0x22, 0x0e, 0x1d, 0x52, 0xca, 0x75, 0x94, 0x38, 0x4a, 0x2d, 0xcd, 0x4c, + 0x95, 0xd2, 0x4c, 0x97, 0xa0, 0x51, 0x3e, 0x70, 0x57, 0x1d, 0xeb, 0x36, 0x74, 0xc7, 0x7e, 0x20, + 0x74, 0x79, 0x0e, 0x97, 0xa6, 0x0b, 0x75, 0x15, 0x3a, 0x72, 0xd6, 0x3d, 0xeb, 0xe7, 0x35, 0xe8, + 0x99, 0x4f, 0xd1, 0x81, 0xe4, 0xbd, 0x32, 0x6f, 0xba, 0xeb, 0x43, 0xf3, 0x27, 0x91, 0x64, 0x23, + 0x4d, 0x63, 0x93, 0xa6, 0x28, 0x9e, 0x5d, 0x87, 0x0e, 0x7d, 0x25, 0xf1, 0x5f, 0x0b, 0x62, 0x5c, + 0x8d, 0xb7, 0x11, 0x40, 0x27, 0x4b, 0x1b, 0xb0, 0x5c, 0x5a, 0x82, 0x9d, 0xca, 0xd4, 0x09, 0x34, + 0xef, 0x4a, 0xb5, 0xfa, 0x12, 0x09, 0x5f, 0xc2, 0x8e, 0xaa, 0x1f, 0x1e, 0x22, 0x35, 0xee, 0x49, + 0x9e, 0x70, 0x9e, 0xdb, 0x13, 0xc4, 0x50, 0x15, 0x32, 0x16, 0xa8, 0xe2, 0xc9, 0x8b, 0x40, 0x73, + 0xb8, 0xa3, 0x20, 0x07, 0x2f, 0x82, 0x7c, 0x81, 0x24, 0x40, 0x4d, 0xda, 0x6e, 0x5a, 0x20, 0x89, + 0xfe, 0x7d, 0xe8, 0xca, 0xd8, 0x9f, 0xf8, 0xa1, 0xca, 0x6a, 0x5b, 0x0b, 0x3e, 0x02, 0x8a, 0x80, + 0x72, 0x5c, 0x0b, 0x9a, 0x4a, 0x28, 0x17, 0x54, 0x26, 0x35, 0x86, 0xdd, 0x81, 0xa5, 0x24, 0x8d, + 0x7d, 0x37, 0xc5, 0xe5, 0xd8, 0x53, 0xe9, 0x99, 0x53, 0xe1, 0xbe, 0x02, 0x1f, 0xbc, 0x08, 0xa8, + 0x12, 0x73, 0x07, 0x96, 0x5c, 0x19, 0x64, 0xd3, 0x90, 0x56, 0x66, 0x07, 0x22, 0x24, 0x6b, 0xdc, + 0xe0, 0x7d, 0x05, 0xc6, 0xf5, 0xed, 0x88, 0x90, 0xdd, 0x84, 0x9e, 0xca, 0x67, 0x6d, 0x11, 0xc7, + 0x32, 0xce, 0x4b, 0x91, 0x04, 0x7b, 0x82, 0x20, 0xcb, 0x05, 0x38, 0x48, 0x63, 0xe1, 0x4c, 0x69, + 0xff, 0x3e, 0x80, 0x56, 0x7a, 0x14, 0x50, 0x29, 0xb8, 0xb2, 0xb0, 0x14, 0xdc, 0x4c, 0x8f, 0xf0, + 0x9f, 0x95, 0x24, 0xa2, 0x4a, 0x25, 0x59, 0xdd, 0x43, 0x71, 0x0a, 0xfc, 0xa9, 0x9f, 0xea, 0x4b, + 0x14, 0xaa, 0x63, 0x1d, 0x41, 0x87, 0x66, 0xa0, 0x6f, 0xe4, 0x87, 0x9f, 0x95, 0xb7, 0x1f, 0x7e, + 0xde, 0x87, 0x9e, 0xd6, 0xe2, 0x37, 0x9d, 0xa6, 0x76, 0x15, 0x1e, 0xdb, 0x89, 0x75, 0x0f, 0x3a, + 0xbf, 0x8b, 0xe9, 0x35, 0x7d, 0xe3, 0x06, 0x74, 0xe9, 0x74, 0xc1, 0x3e, 0x0a, 0xa4, 0x7b, 0x62, + 0xaa, 0xde, 0x04, 0x7a, 0x8c, 0x10, 0x0b, 0xa0, 0xfd, 0x3c, 0xf4, 0x65, 0xb8, 0x11, 0x04, 0xd6, + 0x1f, 0x37, 0xa0, 0x83, 0x19, 0x2e, 0x29, 0x3d, 0x26, 0xac, 0x74, 0xb4, 0x4b, 0x19, 0xe9, 0xd4, + 0x89, 0xf4, 0xf1, 0x6e, 0x17, 0x81, 0x48, 0xb5, 0xeb, 0x44, 0x73, 0x09, 0x6b, 0x75, 0x2e, 0x61, + 0xbd, 0xa9, 0x2e, 0xd8, 0xa8, 0xf3, 0x0d, 0x61, 0xce, 0x0b, 0x69, 0x82, 0xc7, 0x0a, 0xc4, 0xee, + 0x01, 0x23, 0x12, 0x27, 0x08, 0x24, 0x39, 0xe7, 0x44, 0x04, 0x89, 0xce, 0x6d, 0x87, 0x88, 0xd9, + 0xd0, 0x88, 0x03, 0xa1, 0xa4, 0xb4, 0x64, 0xe9, 0x1b, 0xf3, 0x96, 0xfe, 0x2e, 0x00, 0xc6, 0x30, + 0x54, 0xf2, 0x4a, 0x74, 0x31, 0x64, 0x26, 0xb1, 0x2c, 0xb0, 0x9f, 0x23, 0xae, 0xf8, 0x00, 0x86, + 0x39, 0x45, 0x2c, 0xc6, 0xb6, 0x1b, 0xa6, 0x3a, 0xb8, 0xe8, 0x6b, 0x2a, 0x2e, 0xc6, 0x9b, 0x61, + 0x3a, 0x1f, 0x80, 0x74, 0xce, 0x05, 0x20, 0xdf, 0x87, 0x8b, 0x73, 0xe6, 0x38, 0x89, 0x84, 0xab, + 0x4f, 0x10, 0xbf, 0xc0, 0x35, 0x14, 0xf4, 0x3f, 0x54, 0x47, 0xf6, 0xb2, 0x48, 0x8b, 0x70, 0xcb, + 0x4f, 0x28, 0x50, 0x7c, 0x53, 0x90, 0xd3, 0xfb, 0xdf, 0x0a, 0x72, 0xfa, 0x9f, 0x2f, 0xc8, 0x19, + 0x7c, 0xbe, 0x20, 0x67, 0x2e, 0x28, 0x58, 0x9a, 0x0f, 0x0a, 0x9e, 0x03, 0x90, 0xa5, 0x26, 0xb7, + 0xf5, 0x26, 0xfe, 0x55, 0xbe, 0xf0, 0x35, 0x9e, 0xff, 0xaa, 0x00, 0x1c, 0x38, 0xd3, 0x48, 0x39, + 0x31, 0xf6, 0x3d, 0xe8, 0x26, 0xd4, 0x2b, 0xe7, 0xd2, 0x37, 0x4a, 0x57, 0xdb, 0x72, 0x52, 0xdd, + 0xa4, 0xbc, 0x1a, 0x92, 0xbc, 0x4d, 0x5b, 0xaf, 0x66, 0xc8, 0x8f, 0x22, 0x1a, 0x86, 0x80, 0x2a, + 0xc0, 0xb7, 0x61, 0xa0, 0x09, 0x22, 0x11, 0xbb, 0x22, 0x54, 0xf6, 0xa0, 0xc2, 0xfb, 0x0a, 0xba, + 0xaf, 0x80, 0xec, 0xa3, 0x9c, 0x4c, 0xd9, 0xad, 0x64, 0x41, 0x1c, 0xae, 0x87, 0x6c, 0x2a, 0x02, + 0x6b, 0xdd, 0xfc, 0x15, 0x5a, 0x48, 0x1b, 0xea, 0xf8, 0xbd, 0xe1, 0x05, 0xd6, 0x85, 0x96, 0x9e, + 0x75, 0x58, 0x61, 0x7d, 0xe8, 0xd0, 0xe5, 0x19, 0xc2, 0x55, 0xad, 0x9f, 0x2e, 0x43, 0x77, 0x3b, + 0x4c, 0xd2, 0x38, 0x53, 0xdb, 0x5c, 0xdc, 0x11, 0x69, 0xd0, 0x1d, 0x11, 0x7d, 0xaa, 0xa5, 0xfe, + 0x06, 0x9d, 0x6a, 0xdd, 0x87, 0x96, 0xbe, 0x8d, 0xa4, 0x23, 0x9b, 0x85, 0x57, 0x99, 0x0c, 0x0d, + 0x5b, 0x83, 0xb6, 0xa7, 0xaf, 0x49, 0xe9, 0x82, 0x41, 0xe9, 0xee, 0x92, 0xb9, 0x40, 0xc5, 0x73, + 0x1a, 0x76, 0x13, 0x6a, 0xce, 0x64, 0x42, 0x9a, 0x4c, 0xa5, 0x6e, 0x43, 0x4a, 0x97, 0x4b, 0x38, + 0xe2, 0xd8, 0x03, 0xe8, 0x90, 0x89, 0xa1, 0x9a, 0x59, 0x73, 0x7e, 0x4e, 0x53, 0x90, 0x53, 0x56, + 0x87, 0x82, 0xa2, 0x07, 0xd0, 0x09, 0xa4, 0x8c, 0xd4, 0x80, 0xd6, 0xfc, 0x00, 0x53, 0x46, 0xe1, + 0xed, 0xc0, 0x14, 0x54, 0xee, 0x40, 0x13, 0x1d, 0xab, 0x8c, 0xb4, 0x43, 0x2a, 0xad, 0x83, 0xea, + 0x0f, 0xbc, 0x91, 0xe0, 0x0f, 0x5b, 0x07, 0x50, 0xe2, 0x4e, 0x33, 0x77, 0xe6, 0xd9, 0x91, 0x27, + 0x6c, 0x28, 0xc8, 0x26, 0x77, 0x7b, 0x0c, 0x43, 0x15, 0x9c, 0x97, 0x46, 0x82, 0x39, 0xc5, 0x31, + 0x23, 0x67, 0xf3, 0x3d, 0x3e, 0x88, 0x67, 0xf3, 0xbf, 0x0f, 0xa1, 0x15, 0xa9, 0xe8, 0x94, 0xb4, + 0xb0, 0xbb, 0xbe, 0x5c, 0x0c, 0xd5, 0x61, 0x2b, 0x37, 0x14, 0xec, 0x3b, 0x30, 0x50, 0xa7, 0x0d, + 0x63, 0x1d, 0xa6, 0x51, 0x89, 0x6a, 0xe6, 0x16, 0xcc, 0x4c, 0x14, 0xc7, 0xfb, 0xe9, 0x4c, 0x50, + 0xf7, 0x2d, 0xe8, 0x0b, 0x1d, 0xc8, 0xd8, 0x89, 0xeb, 0x84, 0xa4, 0x9b, 0xdd, 0xf5, 0x2b, 0xc5, + 0xf0, 0x72, 0x9c, 0xc3, 0x7b, 0xa2, 0x1c, 0xf5, 0xac, 0x42, 0x53, 0x9f, 0x80, 0x0d, 0x69, 0x54, + 0xe9, 0x0a, 0xa8, 0x2a, 0xa7, 0x72, 0x8d, 0x47, 0xbe, 0xcc, 0x98, 0xab, 0x13, 0x71, 0x36, 0x5a, + 0x9e, 0xe7, 0xcb, 0x6c, 0xf5, 0x7a, 0xa6, 0x04, 0xfe, 0x23, 0x71, 0x86, 0xfb, 0x51, 0x1c, 0x10, + 0x8c, 0xd8, 0xfc, 0x7e, 0xe4, 0xa7, 0x03, 0xbc, 0x93, 0x1f, 0x0c, 0xb0, 0x27, 0xb3, 0x07, 0x16, + 0xaa, 0xe6, 0x7b, 0x91, 0x86, 0xbe, 0xb3, 0x60, 0xa8, 0x2a, 0xfd, 0xf2, 0xa5, 0x68, 0xee, 0xdc, + 0xe3, 0x1e, 0xb4, 0x65, 0xec, 0xd1, 0x89, 0xe9, 0xe8, 0x12, 0x69, 0xea, 0xb2, 0x3e, 0xa7, 0x51, + 0xd7, 0xb8, 0xc8, 0x00, 0xb5, 0xa4, 0xea, 0xa0, 0x03, 0x8f, 0x62, 0xf9, 0x99, 0x70, 0x53, 0x15, + 0x40, 0x5d, 0x3e, 0xef, 0xc0, 0x35, 0x9e, 0xe2, 0xa9, 0x5b, 0xd0, 0x32, 0x67, 0x83, 0x57, 0xce, + 0x51, 0x1a, 0x14, 0xfb, 0x18, 0x96, 0x66, 0x8d, 0x62, 0x32, 0xba, 0x7a, 0x8e, 0x7a, 0x30, 0x63, + 0x03, 0xd1, 0xeb, 0xe9, 0xa8, 0x64, 0x74, 0xbe, 0x26, 0x4f, 0x08, 0x8c, 0xce, 0x74, 0x3c, 0xf3, + 0xce, 0xf9, 0xe8, 0x4c, 0xc7, 0x36, 0x23, 0x68, 0xf9, 0xc9, 0x53, 0x3f, 0x4e, 0xd2, 0xd1, 0x35, + 0xe3, 0x85, 0xa8, 0x8b, 0xd1, 0x90, 0x9f, 0xec, 0x38, 0x49, 0x3a, 0xba, 0x6e, 0x2e, 0xfe, 0x61, + 0x8f, 0xdd, 0x85, 0xa6, 0x3e, 0x37, 0x5d, 0x39, 0x67, 0x15, 0xf4, 0x5d, 0x03, 0xae, 0x29, 0xd8, + 0x57, 0xa1, 0x45, 0x87, 0x66, 0x32, 0x1a, 0xdd, 0x9c, 0x97, 0x22, 0x75, 0x72, 0xc5, 0x9b, 0x81, + 0x3a, 0xc1, 0xfa, 0x10, 0x5a, 0x26, 0x18, 0xb0, 0xe6, 0x35, 0x43, 0x07, 0x05, 0xdc, 0x50, 0xb0, + 0xdb, 0xd0, 0x98, 0xa2, 0x2d, 0x1c, 0x7d, 0x65, 0x5e, 0xcb, 0x95, 0x89, 0x54, 0x58, 0xf6, 0x08, + 0xba, 0x09, 0xc5, 0x81, 0x4a, 0xfc, 0x6f, 0x99, 0x03, 0xa7, 0xe2, 0xbe, 0xb3, 0x09, 0x12, 0x39, + 0x24, 0x45, 0xc0, 0xf8, 0xfb, 0x70, 0xad, 0x7c, 0x5a, 0x65, 0x8e, 0xb2, 0xf4, 0x25, 0xde, 0xdb, + 0x34, 0xcb, 0xcd, 0x05, 0x12, 0x36, 0x7b, 0xe8, 0xc5, 0xaf, 0x46, 0x6f, 0x38, 0x0d, 0x7b, 0x94, + 0x7b, 0x1a, 0x54, 0xec, 0xd1, 0x9d, 0x73, 0xcb, 0xca, 0x7d, 0x95, 0xf1, 0x3f, 0xe4, 0xe2, 0x3e, + 0x81, 0xde, 0x38, 0x7b, 0xfd, 0xfa, 0x4c, 0xcb, 0xc8, 0xe8, 0x03, 0x1a, 0x57, 0xca, 0x1b, 0x4a, + 0x67, 0x2f, 0xbc, 0x3b, 0x2e, 0x1d, 0xc4, 0x5c, 0x85, 0x96, 0x1b, 0xda, 0x8e, 0xe7, 0xc5, 0xa3, + 0x55, 0x75, 0xf6, 0xe2, 0x86, 0x1b, 0x9e, 0x47, 0x87, 0x58, 0x32, 0x12, 0x74, 0x17, 0xd1, 0xf6, + 0xbd, 0xd1, 0x57, 0x95, 0xcf, 0x33, 0xa0, 0x6d, 0x8f, 0x6e, 0x39, 0x3b, 0xb1, 0x13, 0x04, 0x02, + 0xbd, 0xfb, 0xe8, 0xae, 0xbe, 0xe5, 0xac, 0x41, 0xdb, 0x1e, 0xc6, 0x85, 0x53, 0xe7, 0xd4, 0x36, + 0x90, 0xd1, 0x87, 0xea, 0x0a, 0xe9, 0xd4, 0x39, 0xdd, 0xd7, 0x20, 0xd4, 0x6d, 0x75, 0x3d, 0x86, + 0x2c, 0xe6, 0xbd, 0x79, 0xdd, 0xce, 0x53, 0x60, 0xde, 0xf1, 0xf3, 0x6c, 0x98, 0xec, 0x01, 0x59, + 0x41, 0x3b, 0x58, 0x1f, 0xdd, 0x3f, 0x6f, 0x0f, 0x74, 0x86, 0x8f, 0xf6, 0xc0, 0x24, 0xfb, 0xeb, + 0x00, 0xca, 0x5c, 0xd2, 0x66, 0xaf, 0xcd, 0x8f, 0xc9, 0x83, 0x75, 0xae, 0xee, 0x86, 0xd0, 0x56, + 0xaf, 0x03, 0xd0, 0xf9, 0x95, 0x1a, 0xf3, 0x60, 0x7e, 0x4c, 0x1e, 0x7c, 0xf3, 0xce, 0xcb, 0x3c, + 0x0e, 0x7f, 0x00, 0x9d, 0x0c, 0xc3, 0x6c, 0x0c, 0x74, 0x47, 0x0f, 0xe7, 0x75, 0xc0, 0x44, 0xe0, + 0xbc, 0x9d, 0xe9, 0x16, 0x7e, 0x84, 0xdc, 0x1e, 0x45, 0x40, 0xa3, 0x8f, 0xe6, 0x3f, 0x92, 0x87, + 0xe9, 0x9c, 0xbc, 0xa3, 0x8a, 0xd8, 0x1f, 0x41, 0x57, 0x31, 0x4d, 0x0d, 0x5a, 0x9f, 0x97, 0x91, + 0x22, 0xa4, 0xe2, 0x8a, 0xbb, 0x6a, 0xd8, 0x6d, 0x68, 0x38, 0x51, 0x14, 0x9c, 0x8d, 0x3e, 0x9e, + 0x57, 0x8c, 0x0d, 0x04, 0x73, 0x85, 0x45, 0x51, 0x9a, 0x66, 0x41, 0xea, 0x9b, 0xeb, 0x1c, 0x5f, + 0x9b, 0x17, 0xa5, 0xd2, 0x6d, 0x37, 0xde, 0x9d, 0x96, 0xae, 0xbe, 0xdd, 0x83, 0x76, 0x24, 0x93, + 0xd4, 0xf6, 0xa6, 0xc1, 0xe8, 0xd1, 0x39, 0x0f, 0xa6, 0xae, 0x31, 0xf0, 0x56, 0xa4, 0x1a, 0xd6, + 0x23, 0xe8, 0x6d, 0xd0, 0x2d, 0x7e, 0x3f, 0x21, 0x73, 0x78, 0x1b, 0xea, 0x79, 0x2d, 0x26, 0xb7, + 0xb3, 0x44, 0xf1, 0x5a, 0x6c, 0x87, 0x63, 0xc9, 0x09, 0x6d, 0xfd, 0x45, 0x1d, 0x9a, 0x07, 0x32, + 0x8b, 0x5d, 0xf1, 0xeb, 0xaf, 0xfa, 0xbc, 0x67, 0x76, 0x3d, 0x2c, 0x8e, 0x16, 0xd5, 0x06, 0x13, + 0x7a, 0xfe, 0x50, 0xa4, 0x53, 0x94, 0x79, 0x2e, 0x41, 0x43, 0x65, 0x52, 0xea, 0x8a, 0x88, 0xea, + 0x90, 0xc4, 0x67, 0xc9, 0xb1, 0x27, 0x5f, 0x85, 0x28, 0xf1, 0x0d, 0xba, 0x61, 0x01, 0x06, 0xb4, + 0xed, 0xd1, 0xad, 0x43, 0x43, 0x40, 0x2a, 0xd5, 0x54, 0xe1, 0xb4, 0x01, 0x92, 0x62, 0x99, 0x12, + 0x52, 0xeb, 0x0d, 0x25, 0xa4, 0xf7, 0xa1, 0x1e, 0x9a, 0xab, 0x09, 0x39, 0x9e, 0x2e, 0x83, 0x13, + 0x9c, 0xdd, 0x85, 0xfc, 0x7e, 0x92, 0x8e, 0x4e, 0xde, 0x7c, 0x7f, 0x69, 0x1d, 0x3a, 0xf9, 0xbb, + 0x0f, 0x1d, 0x90, 0x5c, 0x5a, 0x2b, 0x5e, 0x82, 0x1c, 0x9a, 0x16, 0x2f, 0xc8, 0x16, 0x54, 0x95, + 0xe8, 0x98, 0x51, 0xf1, 0xa9, 0xfb, 0x45, 0xaa, 0x4a, 0x74, 0x14, 0x69, 0x2a, 0x6a, 0x7e, 0x62, + 0xbb, 0x32, 0x4c, 0x52, 0x7d, 0x81, 0xac, 0xe5, 0x27, 0x9b, 0xd8, 0x65, 0xdf, 0x84, 0x7e, 0x2c, + 0xdc, 0x97, 0xf6, 0x34, 0x99, 0xa8, 0x4f, 0xf4, 0xcb, 0x37, 0x1e, 0xa7, 0xc9, 0xe4, 0x07, 0xc2, + 0x41, 0xff, 0xaa, 0x12, 0x8c, 0x2e, 0xd2, 0xee, 0x26, 0x13, 0x9a, 0xf5, 0x26, 0xf4, 0x8e, 0x02, + 0x29, 0xa7, 0xc6, 0xea, 0x0d, 0xa8, 0x8e, 0xd4, 0x25, 0x98, 0x5a, 0x81, 0xf5, 0x27, 0x15, 0x68, + 0x23, 0xef, 0x50, 0x82, 0x18, 0x83, 0xfa, 0xd4, 0x8d, 0x32, 0x1d, 0x09, 0x53, 0x5b, 0xbf, 0x20, + 0x51, 0xb2, 0xa1, 0x5f, 0x90, 0xd0, 0xce, 0xd5, 0x54, 0xcd, 0x08, 0xdb, 0xea, 0xda, 0xf9, 0x59, + 0x20, 0x1d, 0x4f, 0xcb, 0x83, 0xe9, 0xb2, 0xcb, 0xd0, 0x74, 0x43, 0x4a, 0x19, 0xd5, 0x35, 0x95, + 0x86, 0x1b, 0x62, 0xaa, 0xa8, 0xc0, 0xc5, 0xc1, 0x6b, 0xc3, 0x0d, 0x31, 0xdd, 0xf9, 0xcb, 0x0a, + 0x2c, 0xef, 0xc7, 0xd2, 0x15, 0x49, 0xb2, 0x83, 0x5e, 0xd8, 0xa1, 0x50, 0x8c, 0x41, 0x9d, 0x0a, + 0x42, 0xea, 0x0e, 0x37, 0xb5, 0x51, 0x72, 0x55, 0x3e, 0x9f, 0xe7, 0x1b, 0x35, 0xde, 0x21, 0x08, + 0xa5, 0x1b, 0x39, 0x9a, 0x06, 0xd6, 0x4a, 0x68, 0x2a, 0x25, 0xdd, 0x86, 0x41, 0x71, 0x67, 0x84, + 0x66, 0xd0, 0x8f, 0x37, 0x72, 0x28, 0xcd, 0x72, 0x03, 0xba, 0x31, 0xf1, 0x56, 0x4d, 0xd3, 0x20, + 0x1a, 0x50, 0x20, 0x9c, 0xc7, 0x3a, 0x86, 0xe1, 0x7e, 0x2c, 0x22, 0x27, 0x16, 0x68, 0xb0, 0xa7, + 0xc4, 0xc3, 0x2b, 0xd0, 0x0c, 0x44, 0x38, 0x49, 0x8f, 0xf5, 0x7a, 0x75, 0x2f, 0x7f, 0xdd, 0x53, + 0x2d, 0xbd, 0xee, 0x41, 0x5e, 0xc6, 0xc2, 0xd1, 0x8f, 0x80, 0xa8, 0x8d, 0x9a, 0x15, 0x66, 0x81, + 0x2e, 0x52, 0xb5, 0xb9, 0xea, 0x58, 0x3f, 0xab, 0x41, 0x57, 0x73, 0x86, 0xbe, 0xa2, 0x76, 0xa5, + 0x92, 0xef, 0xca, 0x10, 0x6a, 0xc9, 0x8b, 0x40, 0x6f, 0x13, 0x36, 0xd9, 0xc7, 0x50, 0x0b, 0xfc, + 0xa9, 0xce, 0x56, 0xae, 0xcf, 0x98, 0xff, 0x59, 0xfe, 0x6a, 0xc1, 0x41, 0x6a, 0x76, 0x9d, 0xcc, + 0xf3, 0xa9, 0x8d, 0x22, 0xaa, 0x79, 0x82, 0xa6, 0xf8, 0x14, 0xf5, 0x00, 0x99, 0xea, 0xb8, 0x74, + 0x2b, 0xc4, 0x28, 0x77, 0x9f, 0x77, 0x34, 0x64, 0xdb, 0x63, 0x5f, 0x83, 0x76, 0x12, 0x3a, 0x51, + 0x72, 0x2c, 0xd3, 0x3c, 0x3f, 0x49, 0x4f, 0xc3, 0xb5, 0xcd, 0xbd, 0xc3, 0xd3, 0xf0, 0x40, 0x63, + 0xf4, 0xc7, 0x72, 0x4a, 0xf6, 0x1d, 0xe8, 0x25, 0x22, 0x49, 0xd4, 0x3d, 0xd0, 0xb1, 0xd4, 0x4a, + 0x7f, 0xb9, 0x9c, 0x7a, 0x10, 0x16, 0xff, 0xb5, 0x11, 0xf1, 0xa4, 0x00, 0xb1, 0x1f, 0xc0, 0xc0, + 0x8c, 0x0f, 0xe4, 0x64, 0x92, 0x57, 0xd3, 0xae, 0x9f, 0x9b, 0x61, 0x87, 0xd0, 0xa5, 0x79, 0xfa, + 0x49, 0x19, 0xc1, 0xbe, 0x0f, 0x83, 0x48, 0x6d, 0xa6, 0xad, 0xcb, 0xae, 0xca, 0x78, 0x5c, 0x9b, + 0x89, 0x56, 0x66, 0x36, 0xbb, 0xb8, 0xdb, 0x55, 0xc0, 0x13, 0xeb, 0x3f, 0x2b, 0xd0, 0x2d, 0xad, + 0x9a, 0xde, 0x5c, 0x25, 0x22, 0x36, 0x55, 0x56, 0x6c, 0x23, 0xec, 0x58, 0xea, 0x57, 0x08, 0x1d, + 0x4e, 0x6d, 0x84, 0xc5, 0x52, 0x57, 0xee, 0x3b, 0x9c, 0xda, 0x68, 0x30, 0x75, 0x4e, 0xa9, 0xee, + 0x69, 0xd3, 0xa6, 0xd4, 0x79, 0xaf, 0x00, 0x6e, 0x7b, 0xf4, 0x38, 0xcb, 0x49, 0x9d, 0x23, 0x27, + 0x31, 0x45, 0xe1, 0xbc, 0x8f, 0xaa, 0xf9, 0x52, 0xc4, 0xb8, 0x16, 0x6d, 0x6b, 0x4d, 0x17, 0xf7, + 0x9a, 0x6c, 0xd8, 0x6b, 0x19, 0xaa, 0xeb, 0x2d, 0x3d, 0xde, 0x46, 0xc0, 0x8f, 0x65, 0x48, 0xc3, + 0xf4, 0xce, 0x12, 0x3f, 0x3b, 0xdc, 0x74, 0xd1, 0x52, 0xbd, 0xc8, 0x04, 0x46, 0x74, 0x1e, 0xdd, + 0x6f, 0xe8, 0xf0, 0x16, 0xf5, 0xb7, 0x3d, 0xeb, 0x9f, 0x2b, 0xb0, 0x7c, 0x8e, 0xd9, 0x18, 0x40, + 0x21, 0xa3, 0xcd, 0x95, 0xbb, 0x1e, 0x6f, 0x62, 0x77, 0xdb, 0x23, 0x44, 0x3a, 0x25, 0x61, 0xaa, + 0x6a, 0x44, 0x3a, 0x45, 0x49, 0xba, 0x0c, 0xcd, 0xf4, 0x94, 0xfe, 0xad, 0x52, 0x8c, 0x46, 0x7a, + 0x8a, 0x7f, 0x73, 0x03, 0x13, 0xda, 0x89, 0x1d, 0x88, 0x97, 0x22, 0x20, 0x3e, 0x0c, 0xd6, 0x6f, + 0xbd, 0x65, 0x97, 0xd7, 0x76, 0xe4, 0x64, 0x07, 0x69, 0x31, 0xc5, 0x55, 0x2d, 0xeb, 0x87, 0xd0, + 0x36, 0x50, 0xd6, 0x81, 0xc6, 0x96, 0x38, 0xca, 0x26, 0xc3, 0x0b, 0xac, 0x0d, 0x75, 0x1c, 0x31, + 0xac, 0x60, 0xeb, 0x53, 0x27, 0x0e, 0x87, 0x55, 0x44, 0x53, 0x41, 0x74, 0x58, 0xc3, 0xe6, 0xbe, + 0x13, 0xfa, 0xee, 0xb0, 0x8e, 0xcd, 0xa7, 0x4e, 0xea, 0x04, 0xc3, 0x86, 0xf5, 0x57, 0x0d, 0x68, + 0xef, 0xeb, 0xaf, 0xb3, 0x2d, 0xe8, 0xe7, 0x2f, 0xda, 0x16, 0x17, 0x51, 0xf6, 0xe7, 0x1b, 0x54, + 0x44, 0xe9, 0x45, 0xa5, 0xde, 0xfc, 0xbb, 0xb8, 0xea, 0xb9, 0x77, 0x71, 0xef, 0x42, 0xed, 0x45, + 0x7c, 0x36, 0x7b, 0xb8, 0xb2, 0x1f, 0x38, 0x21, 0x47, 0x30, 0xfb, 0x08, 0xba, 0xb8, 0xef, 0x76, + 0x42, 0xee, 0x5f, 0x17, 0x1e, 0xca, 0x4f, 0x14, 0x09, 0xce, 0x01, 0x89, 0x74, 0x88, 0xb0, 0x06, + 0x6d, 0xf7, 0xd8, 0x0f, 0xbc, 0x58, 0x84, 0xfa, 0xe0, 0x92, 0x9d, 0x5f, 0x32, 0xcf, 0x69, 0xd8, + 0xf7, 0xe8, 0x8a, 0x98, 0x29, 0x9c, 0x14, 0x75, 0xf0, 0x19, 0x95, 0x2d, 0x95, 0x56, 0xf8, 0x52, + 0x89, 0x9c, 0x7c, 0x52, 0x71, 0x17, 0xba, 0x55, 0xbe, 0x0b, 0xad, 0xde, 0x4a, 0x91, 0x0b, 0x69, + 0xe7, 0x29, 0x13, 0x7a, 0x90, 0x3b, 0xda, 0xdb, 0x77, 0xe6, 0x83, 0x45, 0xe3, 0xb5, 0xb4, 0xd7, + 0xbf, 0x05, 0x03, 0x8c, 0x22, 0x6c, 0x15, 0x7c, 0xa0, 0x29, 0x01, 0xfd, 0xa2, 0x21, 0x4b, 0x8e, + 0xb7, 0x30, 0xfc, 0x40, 0x61, 0xbc, 0x0d, 0x03, 0xf3, 0x5f, 0x4a, 0x8f, 0x15, 0x1b, 0xbc, 0x6f, + 0xa0, 0xea, 0x7e, 0xdb, 0x1a, 0x5c, 0x74, 0x8f, 0x9d, 0x30, 0x14, 0x81, 0x7d, 0x94, 0x8d, 0xc7, + 0xc6, 0x03, 0xf4, 0xe8, 0x74, 0x69, 0x59, 0xa3, 0x1e, 0x13, 0x86, 0x1c, 0x8a, 0x05, 0xfd, 0xd0, + 0x0f, 0x54, 0x81, 0x97, 0xbc, 0x5d, 0x9f, 0x28, 0xbb, 0xa1, 0x1f, 0x50, 0x85, 0x17, 0x7d, 0xde, + 0x77, 0x61, 0x98, 0x65, 0xbe, 0x97, 0xd8, 0xa9, 0x34, 0xcf, 0xcc, 0x74, 0x99, 0xb0, 0x54, 0x54, + 0x78, 0x9e, 0xf9, 0xde, 0xa1, 0xd4, 0x0f, 0xcd, 0xfa, 0x44, 0x6f, 0xba, 0xd6, 0x77, 0xa1, 0x57, + 0x96, 0x1d, 0x94, 0x45, 0xca, 0xd8, 0x86, 0x17, 0x18, 0x40, 0x73, 0x4f, 0xc6, 0x53, 0x27, 0x18, + 0x56, 0xb0, 0xad, 0x5e, 0x08, 0x0c, 0xab, 0xac, 0x07, 0x6d, 0x93, 0x4a, 0x0c, 0x6b, 0xd6, 0xb7, + 0xa0, 0x6d, 0xde, 0xcd, 0xd1, 0x83, 0x25, 0xe9, 0x09, 0x15, 0x85, 0x29, 0xcb, 0xd4, 0x46, 0x00, + 0x45, 0x60, 0xe6, 0x95, 0x68, 0xb5, 0x78, 0x25, 0x6a, 0xfd, 0x0e, 0xf4, 0xca, 0x8b, 0x33, 0x35, + 0xb2, 0x4a, 0x51, 0x23, 0x5b, 0x30, 0x8a, 0x0e, 0x4c, 0x62, 0x39, 0xb5, 0x4b, 0x21, 0x43, 0x1b, + 0x01, 0xf8, 0x19, 0xeb, 0x8f, 0x2a, 0xd0, 0xa0, 0xd0, 0x9a, 0x5c, 0x0b, 0x36, 0x0a, 0xdd, 0x69, + 0xf0, 0x0e, 0x41, 0xfe, 0x07, 0x17, 0x77, 0xf2, 0x73, 0x85, 0xfa, 0x5b, 0xcf, 0x15, 0xee, 0xbe, + 0x80, 0xa6, 0x7a, 0x98, 0xcb, 0x96, 0xa1, 0xff, 0x3c, 0x3c, 0x09, 0xe5, 0xab, 0x50, 0x01, 0x86, + 0x17, 0xd8, 0x45, 0x58, 0x32, 0x4c, 0xd7, 0x2f, 0x80, 0x87, 0x15, 0x36, 0x84, 0x1e, 0x6d, 0xab, + 0x81, 0x54, 0xd9, 0xbb, 0x30, 0xd2, 0xce, 0x61, 0x4b, 0x86, 0x62, 0x4f, 0xa6, 0xfe, 0xf8, 0xcc, + 0x60, 0x6b, 0x6c, 0x09, 0xba, 0x07, 0xa9, 0x8c, 0x0e, 0x44, 0xe8, 0xf9, 0xe1, 0x64, 0x58, 0xbf, + 0xfb, 0x14, 0x9a, 0xea, 0xbd, 0x70, 0xe9, 0x93, 0x0a, 0x30, 0xbc, 0x80, 0xd4, 0x9f, 0x3a, 0x7e, + 0xea, 0x87, 0x93, 0x3d, 0x71, 0x9a, 0x2a, 0xa3, 0xb4, 0xe3, 0x24, 0xe9, 0xb0, 0xca, 0x06, 0x00, + 0x7a, 0xd6, 0x27, 0xa1, 0x37, 0xac, 0x3d, 0xde, 0xfc, 0xc5, 0x2f, 0xdf, 0xaf, 0xfc, 0xed, 0x2f, + 0xdf, 0xaf, 0xfc, 0xc3, 0x2f, 0xdf, 0xbf, 0xf0, 0x93, 0x7f, 0x7c, 0xbf, 0xf2, 0xe3, 0x8f, 0x4a, + 0xaf, 0xa1, 0xa7, 0x4e, 0x1a, 0xfb, 0xa7, 0xea, 0xc8, 0xc9, 0x74, 0x42, 0xf1, 0x20, 0x3a, 0x99, + 0x3c, 0x88, 0x8e, 0x1e, 0x18, 0x99, 0x3b, 0x6a, 0xd2, 0x23, 0xe7, 0x8f, 0xff, 0x3b, 0x00, 0x00, + 0xff, 0xff, 0x86, 0x91, 0xb7, 0xcc, 0x63, 0x3d, 0x00, 0x00, } func (m *Message) Marshal() (dAtA []byte, err error) { @@ -5603,6 +5611,11 @@ func (m *Message) MarshalToSizedBuffer(dAtA []byte) (int, error) { i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } + if m.WarningCount != 0 { + i = encodeVarintPipeline(dAtA, i, uint64(m.WarningCount)) + i-- + dAtA[i] = 0x58 + } if len(m.DebugMsg) > 0 { i -= len(m.DebugMsg) copy(dAtA[i:], m.DebugMsg) @@ -10778,6 +10791,9 @@ func (m *Message) ProtoSize() (n int) { if l > 0 { n += 1 + l + sovPipeline(uint64(l)) } + if m.WarningCount != 0 { + n += 1 + sovPipeline(uint64(m.WarningCount)) + } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } @@ -13208,6 +13224,25 @@ func (m *Message) Unmarshal(dAtA []byte) error { } m.DebugMsg = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex + case 11: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field WarningCount", wireType) + } + m.WarningCount = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowPipeline + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.WarningCount |= uint32(b&0x7F) << shift + if b < 0x80 { + break + } + } default: iNdEx = preIndex skippy, err := skipPipeline(dAtA[iNdEx:]) diff --git a/pkg/sql/colexec/external/reader_csv.go b/pkg/sql/colexec/external/reader_csv.go index be94c0eef974b..a578476e3dbc2 100644 --- a/pkg/sql/colexec/external/reader_csv.go +++ b/pkg/sql/colexec/external/reader_csv.go @@ -24,7 +24,6 @@ import ( "github.com/matrixorigin/matrixone/pkg/common/moerr" "github.com/matrixorigin/matrixone/pkg/container/batch" "github.com/matrixorigin/matrixone/pkg/container/bytejson" - "github.com/matrixorigin/matrixone/pkg/container/nulls" "github.com/matrixorigin/matrixone/pkg/container/types" "github.com/matrixorigin/matrixone/pkg/logutil" "github.com/matrixorigin/matrixone/pkg/sql/crt" @@ -177,32 +176,11 @@ func (r *CsvReader) makeBatchRows(proc *process.Process, bat *batch.Batch) (file unexpectEOF = true continue } - if ignoreError { - logutil.Warnf("load data ignore error: parse json line failed: %v", err) - proc.Base.Warnings.Add(1) - i-- - continue - } return false, err } } if err = getOneRowData(proc, bat, row, rowIdx, param); err != nil { - if ignoreError { - logutil.Warnf("load data ignore error: convert row data failed: %v", err) - proc.Base.Warnings.Add(1) - // rollback partially appended columns - for j := 0; j < bat.VectorCount(); j++ { - vec := bat.GetVector(int32(j)) - vecLen := vec.Length() - if vecLen > rowIdx { - nulls.RemoveRange(vec.GetNulls(), uint64(rowIdx), uint64(vecLen)) - vec.SetLength(rowIdx) - } - } - i-- - continue - } return false, err } for j := 0; j < len(row); j++ { diff --git a/pkg/sql/compile/remoterunClient.go b/pkg/sql/compile/remoterunClient.go index e2ae6f61c8cc4..74d891b6222d1 100644 --- a/pkg/sql/compile/remoterunClient.go +++ b/pkg/sql/compile/remoterunClient.go @@ -224,9 +224,13 @@ func receiveMessageFromCnServerIfOnlyRun(s *Scope, sender *messageSenderOnClient // However, I have used a loop here to ensure that the query can still be executed normally even if this situation occurs. for { bat, end, err = sender.receiveBatch() - if err != nil || end || bat == nil { + if err != nil { return err } + if end || bat == nil { + sender.mergeRemoteWarnings(s.Proc) + return nil + } bat.Clean(mp) } } @@ -244,9 +248,13 @@ func receiveMessageFromCnServerIfConnector(s *Scope, sender *messageSenderOnClie nextChannel := s.RootOp.(*connector.Connector).Reg.Ch2 for { bat, end, err = sender.receiveBatch() - if err != nil || end || bat == nil { + if err != nil { return err } + if end || bat == nil { + sender.mergeRemoteWarnings(s.Proc) + return nil + } connectorAnalyze.Network(bat) if err = forwardRemoteBatchWithContext(sender, nextChannel, bat, mp); err != nil { @@ -282,9 +290,13 @@ func receiveMessageFromCnServerIfDispatch(s *Scope, sender *messageSenderOnClien mp := s.Proc.Mp() for { bat, end, err = sender.receiveBatch() - if err != nil || end || bat == nil { + if err != nil { return err } + if end || bat == nil { + sender.mergeRemoteWarnings(s.Proc) + return nil + } dispatchAnalyze.Network(bat) fakeValueScanOperator.Batchs = append(fakeValueScanOperator.Batchs, bat) @@ -363,6 +375,9 @@ type messageSenderOnClient struct { // gaugeDecOnce ensures PipelineMessageSenderGauge.Dec() is called at most once when close() runs // (including when close() returns early because alreadyClose is true, so the gauge still decrements). gaugeDecOnce sync.Once + + // remoteWarningCount accumulates warnings returned by remote MessageEnd packets. + remoteWarningCount uint32 } func newMessageSenderOnClient( @@ -484,6 +499,7 @@ func (sender *messageSenderOnClient) receiveBatch() (bat *batch.Batch, over bool } if m.IsEndMessage() { sender.safeToClose = true + sender.remoteWarningCount += m.GetWarningCount() anaData := m.GetAnalyse() if len(anaData) > 0 { @@ -518,6 +534,14 @@ func (sender *messageSenderOnClient) receiveBatch() (bat *batch.Batch, over bool } } +func (sender *messageSenderOnClient) mergeRemoteWarnings(proc *process.Process) { + if sender.remoteWarningCount == 0 || proc == nil { + return + } + proc.Base.Warnings.Add(sender.remoteWarningCount) + sender.remoteWarningCount = 0 +} + func (sender *messageSenderOnClient) contextDoneError() error { if sender.ctx == nil { return nil diff --git a/pkg/sql/compile/remoterunClient_test.go b/pkg/sql/compile/remoterunClient_test.go index 8455bba8ca557..b579b4f4a80e2 100644 --- a/pkg/sql/compile/remoterunClient_test.go +++ b/pkg/sql/compile/remoterunClient_test.go @@ -30,6 +30,7 @@ import ( "github.com/matrixorigin/matrixone/pkg/common/mpool" "github.com/matrixorigin/matrixone/pkg/common/runtime" "github.com/matrixorigin/matrixone/pkg/defines" + "github.com/matrixorigin/matrixone/pkg/pb/pipeline" "github.com/matrixorigin/matrixone/pkg/pb/plan" "github.com/matrixorigin/matrixone/pkg/sql/colexec/connector" "github.com/matrixorigin/matrixone/pkg/testutil" @@ -93,6 +94,39 @@ func Test_newMessageSenderOnClient(t *testing.T) { client.waitingTheStopResponse() } +func TestMessageSenderMergeRemoteWarnings(t *testing.T) { + proc := testutil.NewProcess(t) + sender := &messageSenderOnClient{remoteWarningCount: 7} + + sender.mergeRemoteWarnings(proc) + assert.Equal(t, uint32(7), proc.Base.Warnings.Load()) + assert.Equal(t, uint32(0), sender.remoteWarningCount) + + // idempotent when no remote warnings left. + sender.mergeRemoteWarnings(proc) + assert.Equal(t, uint32(7), proc.Base.Warnings.Load()) +} + +func TestMessageSenderReceiveBatchCapturesWarningCount(t *testing.T) { + ctx := context.Background() + sender := &messageSenderOnClient{ + ctx: ctx, + receiveCh: make(chan morpc.Message, 1), + mp: mpool.MustNewZero(), + } + + endMsg := &pipeline.Message{} + endMsg.SetSid(pipeline.Status_MessageEnd) + endMsg.SetWarningCount(5) + sender.receiveCh <- endMsg + + bat, over, err := sender.receiveBatch() + assert.NoError(t, err) + assert.Nil(t, bat) + assert.True(t, over) + assert.Equal(t, uint32(5), sender.remoteWarningCount) +} + func TestRemoteRun(t *testing.T) { ctx, cancel := context.WithCancel(context.Background()) cancel() diff --git a/pkg/sql/compile/remoterunServer.go b/pkg/sql/compile/remoterunServer.go index c1f4b162e5dba..2690b2e51d03a 100644 --- a/pkg/sql/compile/remoterunServer.go +++ b/pkg/sql/compile/remoterunServer.go @@ -220,6 +220,7 @@ func handlePipelineMessage(receiver *messageReceiverOnServer) error { if err == nil { runCompile.GenPhyPlan(runCompile) receiver.phyPlan = runCompile.anal.GetPhyPlan() + receiver.warningCount = runCompile.proc.Base.Warnings.Load() } return err @@ -299,6 +300,9 @@ type messageReceiverOnServer struct { // result. phyPlan *models.PhyPlan + + // warningCount records warnings generated during remote execution. + warningCount uint32 } func newMessageReceiverOnServer( @@ -488,6 +492,7 @@ func (receiver *messageReceiverOnServer) sendEndMessage() error { message.SetSid(pipeline.Status_MessageEnd) message.SetID(receiver.messageId) message.SetMessageType(receiver.messageTyp) + message.SetWarningCount(receiver.warningCount) jsonData, err := json.MarshalIndent(receiver.phyPlan, "", " ") if err != nil { diff --git a/proto/pipeline.proto b/proto/pipeline.proto index 6bf08eac4a9ec..5a8787c356224 100644 --- a/proto/pipeline.proto +++ b/proto/pipeline.proto @@ -53,6 +53,7 @@ message Message { bytes uuid = 8; bool needNotReply = 9; string debugMsg = 10; + uint32 warning_count = 11; } message Connector { diff --git a/test/distributed/cases/load_data/load_data_ignore_error.result b/test/distributed/cases/load_data/load_data_ignore_error.result index 6cfd96cafe53d..b7c207cf310d2 100644 --- a/test/distributed/cases/load_data/load_data_ignore_error.result +++ b/test/distributed/cases/load_data/load_data_ignore_error.result @@ -4,12 +4,14 @@ col1 int, col2 varchar(50), col3 int ); -load data infile '$resources/load_data/ignore_error.csv' into table t_ignore_error fields terminated by ','; +load data infile '$resources/load_data/ignore_parse_error.csv' into table t_ignore_error fields terminated by ','; [unknown result because it is related to issue#23937] -load data infile '$resources/load_data/ignore_error.csv' ignore into table t_ignore_error fields terminated by ','; +truncate table t_ignore_error; +load data infile '$resources/load_data/ignore_parse_error.csv' ignore into table t_ignore_error fields terminated by ','; select * from t_ignore_error order by col1; col1 col2 col3 1 hello 100 -3 foo 300 -5 bar 500 +truncate table t_ignore_error; +load data infile '$resources/load_data/ignore_error.csv' ignore into table t_ignore_error fields terminated by ','; +[unknown result because it is related to issue#23937] drop table t_ignore_error; diff --git a/test/distributed/cases/load_data/load_data_ignore_error.sql b/test/distributed/cases/load_data/load_data_ignore_error.sql index 8a9e16d1a6c87..11258f2eee6fd 100644 --- a/test/distributed/cases/load_data/load_data_ignore_error.sql +++ b/test/distributed/cases/load_data/load_data_ignore_error.sql @@ -6,13 +6,22 @@ col2 varchar(50), col3 int ); --- without IGNORE, error rows cause failure (col3 'abc' is not int) +-- without IGNORE, csv parse error causes failure -- @bvt:issue#23937 -load data infile '$resources/load_data/ignore_error.csv' into table t_ignore_error fields terminated by ','; +load data infile '$resources/load_data/ignore_parse_error.csv' into table t_ignore_error fields terminated by ','; -- @bvt:issue --- with IGNORE, error rows are skipped -load data infile '$resources/load_data/ignore_error.csv' ignore into table t_ignore_error fields terminated by ','; +truncate table t_ignore_error; + +-- with IGNORE, only csv parse error rows are skipped +load data infile '$resources/load_data/ignore_parse_error.csv' ignore into table t_ignore_error fields terminated by ','; select * from t_ignore_error order by col1; +truncate table t_ignore_error; + +-- with IGNORE, type conversion error should still fail +-- @bvt:issue#23937 +load data infile '$resources/load_data/ignore_error.csv' ignore into table t_ignore_error fields terminated by ','; +-- @bvt:issue + drop table t_ignore_error; diff --git a/test/distributed/resources/load_data/ignore_parse_error.csv b/test/distributed/resources/load_data/ignore_parse_error.csv new file mode 100644 index 0000000000000..149a003144a08 --- /dev/null +++ b/test/distributed/resources/load_data/ignore_parse_error.csv @@ -0,0 +1,2 @@ +1,hello,100 +2,world,200\ \ No newline at end of file From 721bdef2743cf06f4626e6cc58f69012245dc982 Mon Sep 17 00:00:00 2001 From: Cao Kai Date: Thu, 16 Apr 2026 17:23:38 +0800 Subject: [PATCH 8/8] fix: recover ignored csv rows and merge forward warnings --- pkg/sql/colexec/external/reader_csv.go | 3 +++ pkg/sql/compile/remoterun_test.go | 21 +++++++++++++++++++- pkg/sql/compile/scope.go | 14 ++++++++++--- pkg/sql/util/csvparser/csv_parser.go | 14 +++++++++++++ pkg/sql/util/csvparser/csv_parser_test.go | 24 +++++++++++++++++++++++ 5 files changed, 72 insertions(+), 4 deletions(-) diff --git a/pkg/sql/colexec/external/reader_csv.go b/pkg/sql/colexec/external/reader_csv.go index a578476e3dbc2..645d41f1d547f 100644 --- a/pkg/sql/colexec/external/reader_csv.go +++ b/pkg/sql/colexec/external/reader_csv.go @@ -137,6 +137,9 @@ func (r *CsvReader) makeBatchRows(proc *process.Process, bat *batch.Batch) (file if err == io.EOF { finish = true } else if ignoreError { + if recoverErr := csvReader.RecoverAfterReadError(); recoverErr != nil { + return false, recoverErr + } logutil.Warnf("load data ignore error: read csv row failed: %v", err) proc.Base.Warnings.Add(1) i-- diff --git a/pkg/sql/compile/remoterun_test.go b/pkg/sql/compile/remoterun_test.go index a34f4c4f14797..518a4c06bfd41 100644 --- a/pkg/sql/compile/remoterun_test.go +++ b/pkg/sql/compile/remoterun_test.go @@ -866,7 +866,7 @@ func TestReceiveMsgAndForward_ReturnsOnBlockedReceiverCancel(t *testing.T) { done := make(chan error, 1) go func() { - done <- receiveMsgAndForward(sender, forwardCh) + done <- receiveMsgAndForward(sender, forwardCh, nil) }() cancel() @@ -881,6 +881,25 @@ func TestReceiveMsgAndForward_ReturnsOnBlockedReceiverCancel(t *testing.T) { } } +func TestReceiveMsgAndForward_MergesRemoteWarningsOnEnd(t *testing.T) { + proc := testutil.NewProcess(t) + forwardCh := make(chan process.PipelineSignal, 1) + + sender := &messageSenderOnClient{ + ctx: context.Background(), + mp: proc.Mp(), + receiveCh: make(chan morpc.Message, 1), + } + endMsg := &pipeline.Message{} + endMsg.SetSid(pipeline.Status_MessageEnd) + endMsg.SetWarningCount(6) + sender.receiveCh <- endMsg + + err := receiveMsgAndForward(sender, forwardCh, proc) + require.NoError(t, err) + require.Equal(t, uint32(6), proc.Base.Warnings.Load()) +} + func TestReceiveMessageFromCnServerIfDispatch_PreservesCleanupOnOriginalRoot(t *testing.T) { proc := testutil.NewProcess(t) diff --git a/pkg/sql/compile/scope.go b/pkg/sql/compile/scope.go index ea65ff55c24bc..c12e0044150a9 100644 --- a/pkg/sql/compile/scope.go +++ b/pkg/sql/compile/scope.go @@ -864,7 +864,7 @@ func (s *Scope) sendNotifyMessage(wg *sync.WaitGroup, resultChan chan notifyMess sender.safeToClose = false sender.alreadyClose = false - err = receiveMsgAndForward(sender, s.Proc.Reg.MergeReceivers[receiverIdx].Ch2) + err = receiveMsgAndForward(sender, s.Proc.Reg.MergeReceivers[receiverIdx].Ch2, s.Proc) closeWithError(err, s.Proc.Reg.MergeReceivers[receiverIdx], sender) }, ) @@ -885,12 +885,20 @@ func suppressRemoteRunCancelError(procCtx context.Context, err error) error { return err } -func receiveMsgAndForward(sender *messageSenderOnClient, forwardCh chan process.PipelineSignal) error { +func receiveMsgAndForward( + sender *messageSenderOnClient, + forwardCh chan process.PipelineSignal, + proc *process.Process, +) error { for { bat, end, err := sender.receiveBatch() - if err != nil || end || bat == nil { + if err != nil { return err } + if end || bat == nil { + sender.mergeRemoteWarnings(proc) + return nil + } if err = forwardRemoteBatchWithContext(sender, forwardCh, bat, sender.mp); err != nil { return err diff --git a/pkg/sql/util/csvparser/csv_parser.go b/pkg/sql/util/csvparser/csv_parser.go index 0cc14dd6203b1..05185a50478f4 100644 --- a/pkg/sql/util/csvparser/csv_parser.go +++ b/pkg/sql/util/csvparser/csv_parser.go @@ -240,6 +240,20 @@ func (parser *CSVParser) Read(lastRow []Field) (row []Field, err error) { return row, err } +// RecoverAfterReadError discards bytes until the next record terminator so the +// next Read starts from a new physical line after a parse error. +func (parser *CSVParser) RecoverAfterReadError() error { + parser.recordBuffer = parser.recordBuffer[:0] + parser.fieldIndexes = parser.fieldIndexes[:0] + parser.fieldIsQuoted = parser.fieldIsQuoted[:0] + + _, _, err := parser.readUntilTerminator() + if err == io.EOF { + return nil + } + return err +} + func (parser *CSVParser) Pos() int64 { return parser.pos } diff --git a/pkg/sql/util/csvparser/csv_parser_test.go b/pkg/sql/util/csvparser/csv_parser_test.go index a052e61faef50..d0318b477a9ec 100644 --- a/pkg/sql/util/csvparser/csv_parser_test.go +++ b/pkg/sql/util/csvparser/csv_parser_test.go @@ -530,3 +530,27 @@ func TestCustomEscapeChar(t *testing.T) { newStringField(`{"itemRangeType":0,"itemContainType":0,"shopRangeType":1,"shopJson":"[{\"id\":\"A1234\",\"shopName\":\"AAAAAA\"}]"}`, false, true), }, row) } + +func TestRecoverAfterReadErrorSkipsBrokenRowTail(t *testing.T) { + cfg := CSVConfig{ + FieldsTerminatedBy: ",", + FieldsEnclosedBy: `"`, + LinesTerminatedBy: "\n", + } + + parser, err := NewCSVParser(&cfg, NewStringReader("\"bad\"oops,1\n2,ok\n"), int64(ReadBlockSize), false) + require.NoError(t, err) + + _, err = parser.Read(nil) + require.Error(t, err) + + err = parser.RecoverAfterReadError() + require.NoError(t, err) + + row, err := parser.Read(nil) + require.NoError(t, err) + require.Equal(t, []Field{ + newStringField("2", false, false), + newStringField("ok", false, false), + }, row) +}