diff --git a/pkg/kv/kvserver/batcheval/cmd_get.go b/pkg/kv/kvserver/batcheval/cmd_get.go index 5a803f6e531f..96f9a18e887a 100644 --- a/pkg/kv/kvserver/batcheval/cmd_get.go +++ b/pkg/kv/kvserver/batcheval/cmd_get.go @@ -52,6 +52,7 @@ func Get( Txn: h.Txn, FailOnMoreRecent: args.KeyLocking != lock.None, LocalUncertaintyLimit: cArgs.LocalUncertaintyLimit, + MemoryMonitor: cArgs.EvalCtx.GetScannerMemoryMonitor(), }) if err != nil { return result.Result{}, err diff --git a/pkg/kv/kvserver/batcheval/cmd_get_test.go b/pkg/kv/kvserver/batcheval/cmd_get_test.go index dba0ffb8732d..8eadafed0e9a 100644 --- a/pkg/kv/kvserver/batcheval/cmd_get_test.go +++ b/pkg/kv/kvserver/batcheval/cmd_get_test.go @@ -33,7 +33,8 @@ func TestGetResumeSpan(t *testing.T) { defer db.Close() _, err := Put(ctx, db, CommandArgs{ - Header: roachpb.Header{TargetBytes: -1}, + EvalCtx: (&MockEvalCtx{}).EvalContext(), + Header: roachpb.Header{TargetBytes: -1}, Args: &roachpb.PutRequest{ RequestHeader: roachpb.RequestHeader{ Key: key, @@ -45,7 +46,8 @@ func TestGetResumeSpan(t *testing.T) { // Case 1: Check that a negative TargetBytes causes a resume span. _, err = Get(ctx, db, CommandArgs{ - Header: roachpb.Header{TargetBytes: -1}, + EvalCtx: (&MockEvalCtx{}).EvalContext(), + Header: roachpb.Header{TargetBytes: -1}, Args: &roachpb.GetRequest{ RequestHeader: roachpb.RequestHeader{ Key: key, @@ -62,7 +64,8 @@ func TestGetResumeSpan(t *testing.T) { resp = &roachpb.GetResponse{} // Case 2: Check that a negative MaxSpanRequestKeys causes a resume span. _, err = Get(ctx, db, CommandArgs{ - Header: roachpb.Header{MaxSpanRequestKeys: -1}, + EvalCtx: (&MockEvalCtx{}).EvalContext(), + Header: roachpb.Header{MaxSpanRequestKeys: -1}, Args: &roachpb.GetRequest{ RequestHeader: roachpb.RequestHeader{ Key: key, @@ -79,7 +82,8 @@ func TestGetResumeSpan(t *testing.T) { resp = &roachpb.GetResponse{} // Case 3: Check that a positive limit causes a normal return. _, err = Get(ctx, db, CommandArgs{ - Header: roachpb.Header{MaxSpanRequestKeys: 10, TargetBytes: 100}, + EvalCtx: (&MockEvalCtx{}).EvalContext(), + Header: roachpb.Header{MaxSpanRequestKeys: 10, TargetBytes: 100}, Args: &roachpb.GetRequest{ RequestHeader: roachpb.RequestHeader{ Key: key, diff --git a/pkg/kv/kvserver/batcheval/cmd_reverse_scan.go b/pkg/kv/kvserver/batcheval/cmd_reverse_scan.go index c30ab3ef9431..1dd9d7267427 100644 --- a/pkg/kv/kvserver/batcheval/cmd_reverse_scan.go +++ b/pkg/kv/kvserver/batcheval/cmd_reverse_scan.go @@ -47,6 +47,7 @@ func ReverseScan( TargetBytes: h.TargetBytes, FailOnMoreRecent: args.KeyLocking != lock.None, Reverse: true, + MemoryMonitor: cArgs.EvalCtx.GetScannerMemoryMonitor(), } switch args.ScanFormat { diff --git a/pkg/kv/kvserver/batcheval/cmd_scan.go b/pkg/kv/kvserver/batcheval/cmd_scan.go index 131ffe52471f..cff589991586 100644 --- a/pkg/kv/kvserver/batcheval/cmd_scan.go +++ b/pkg/kv/kvserver/batcheval/cmd_scan.go @@ -48,6 +48,7 @@ func Scan( TargetBytes: h.TargetBytes, FailOnMoreRecent: args.KeyLocking != lock.None, Reverse: false, + MemoryMonitor: cArgs.EvalCtx.GetScannerMemoryMonitor(), } switch args.ScanFormat { diff --git a/pkg/kv/kvserver/batcheval/eval_context.go b/pkg/kv/kvserver/batcheval/eval_context.go index 333820f7668c..89ce8d573af7 100644 --- a/pkg/kv/kvserver/batcheval/eval_context.go +++ b/pkg/kv/kvserver/batcheval/eval_context.go @@ -131,6 +131,10 @@ type EvalContext interface { // WatchForMerge arranges to block all requests until the in-progress merge // completes. Returns an error if no in-progress merge is detected. WatchForMerge(ctx context.Context) error + + // GetScannerMemoryMonitor returns a memory monitor to be used by MVCC + // scans. + GetScannerMemoryMonitor() storage.ScannerMemoryMonitor } // MockEvalCtx is a dummy implementation of EvalContext for testing purposes. @@ -267,3 +271,6 @@ func (m *mockEvalCtxImpl) RevokeLease(_ context.Context, seq roachpb.LeaseSequen func (m *mockEvalCtxImpl) WatchForMerge(ctx context.Context) error { panic("unimplemented") } +func (m *mockEvalCtxImpl) GetScannerMemoryMonitor() storage.ScannerMemoryMonitor { + return storage.ScannerMemoryMonitor{} +} diff --git a/pkg/kv/kvserver/replica.go b/pkg/kv/kvserver/replica.go index fb848b2a1a42..fe3d81ae4ff8 100644 --- a/pkg/kv/kvserver/replica.go +++ b/pkg/kv/kvserver/replica.go @@ -1871,6 +1871,13 @@ func (r *Replica) markSystemConfigGossipFailed() { r.mu.failureToGossipSystemConfig = true } +// GetScannerMemoryMonitor implements the batcheval.EvalContext interface. +func (r *Replica) GetScannerMemoryMonitor() storage.ScannerMemoryMonitor { + // Return an empty monitor. Places where a real monitor is needed use a + // wrapper for Replica as the EvalContext. + return storage.ScannerMemoryMonitor{} +} + func init() { tracing.RegisterTagRemapping("r", "range") } diff --git a/pkg/kv/kvserver/replica_eval_context_span.go b/pkg/kv/kvserver/replica_eval_context_span.go index 0afcb0de2c15..98ab9f4530df 100644 --- a/pkg/kv/kvserver/replica_eval_context_span.go +++ b/pkg/kv/kvserver/replica_eval_context_span.go @@ -261,3 +261,8 @@ func (rec *SpanSetReplicaEvalContext) RevokeLease(ctx context.Context, seq roach func (rec *SpanSetReplicaEvalContext) WatchForMerge(ctx context.Context) error { return rec.i.WatchForMerge(ctx) } + +// GetScannerMemoryMonitor implements the batcheval.EvalContext interface. +func (rec *SpanSetReplicaEvalContext) GetScannerMemoryMonitor() storage.ScannerMemoryMonitor { + return rec.i.GetScannerMemoryMonitor() +} diff --git a/pkg/kv/kvserver/replica_read.go b/pkg/kv/kvserver/replica_read.go index ab97286ceeb6..50d61e6120d6 100644 --- a/pkg/kv/kvserver/replica_read.go +++ b/pkg/kv/kvserver/replica_read.go @@ -24,6 +24,7 @@ import ( "github.com/cockroachdb/cockroach/pkg/util" "github.com/cockroachdb/cockroach/pkg/util/hlc" "github.com/cockroachdb/cockroach/pkg/util/log" + "github.com/cockroachdb/cockroach/pkg/util/mon" "github.com/kr/pretty" ) @@ -180,6 +181,15 @@ func (r *Replica) executeReadOnlyBatch( return br, nil, pErr } +type evalContextWithMonitor struct { + batcheval.EvalContext + memMonitor storage.ScannerMemoryMonitor +} + +func (e evalContextWithMonitor) GetScannerMemoryMonitor() storage.ScannerMemoryMonitor { + return e.memMonitor +} + // executeReadOnlyBatchWithServersideRefreshes invokes evaluateBatch and retries // at a higher timestamp in the event of some retriable errors if allowed by the // batch/txn. @@ -193,8 +203,40 @@ func (r *Replica) executeReadOnlyBatchWithServersideRefreshes( ) (br *roachpb.BatchResponse, res result.Result, pErr *roachpb.Error) { log.Event(ctx, "executing read-only batch") + var rootMonitor *mon.BytesMonitor + // Only do memory allocation accounting if the request did not originate + // locally, or for local request has reserved no memory. Local requests + // (typically DistSQL, though we may not have instrumented the source as SQL + // in all cases, so some may be flowing in as OTHER), do memory accounting + // before issuing the request. Even though the accounting for the first + // request in fetcher is small (the NoMemoryReservedAtSource=true case), + // subsequent ones use the size of the response for subsequent requests (see + // https://github.com/cockroachdb/cockroach/pull/52496). This scheme could + // be tightened. + if ba.AdmissionHeader.SourceLocation != roachpb.AdmissionHeader_LOCAL || + ba.AdmissionHeader.NoMemoryReservedAtSource { + rootMonitor = r.store.getRootMemoryMonitorForKV() + } + var boundAccount mon.BoundAccount + if rootMonitor != nil { + boundAccount = rootMonitor.MakeBoundAccount() + // Memory is not actually released when this function returns, but at + // least the batch is fully evaluated. Ideally we would like to release + // after grpc has sent the response, but there are no interceptors at that + // stage. The interceptors execute before the response is marshaled in + // Server.processUnaryRPC by calling sendResponse. + // We are intentionally not using finalizers because they delay GC and + // because they have had bugs in the past (and can prevent GC of objects + // with cyclic references). + defer boundAccount.Close(ctx) + rec = evalContextWithMonitor{ + EvalContext: rec, memMonitor: storage.ScannerMemoryMonitor{B: &boundAccount}} + } + for retries := 0; ; retries++ { if retries > 0 { + // It is safe to call Clear on an uninitialized BoundAccount. + boundAccount.Clear(ctx) log.VEventf(ctx, 2, "server-side retry of batch") } br, res, pErr = evaluateBatch(ctx, kvserverbase.CmdIDKey(""), rw, rec, nil, ba, lul, true /* readOnly */) diff --git a/pkg/kv/kvserver/store.go b/pkg/kv/kvserver/store.go index 25e49965d7e7..bc0f991c2a6f 100644 --- a/pkg/kv/kvserver/store.go +++ b/pkg/kv/kvserver/store.go @@ -64,6 +64,7 @@ import ( "github.com/cockroachdb/cockroach/pkg/util/limit" "github.com/cockroachdb/cockroach/pkg/util/log" "github.com/cockroachdb/cockroach/pkg/util/metric" + "github.com/cockroachdb/cockroach/pkg/util/mon" "github.com/cockroachdb/cockroach/pkg/util/protoutil" "github.com/cockroachdb/cockroach/pkg/util/quotapool" "github.com/cockroachdb/cockroach/pkg/util/retry" @@ -723,6 +724,15 @@ type StoreConfig struct { // subsystem. It is queried during the GC process and in the handling of // AdminVerifyProtectedTimestampRequest. ProtectedTimestampCache protectedts.Cache + + // MemoryMonitorForKVProvider can be nil. + MemoryMonitorForKVProvider MemoryMonitorForKVProvider +} + +// MemoryMonitorForKVProvider provides a long-lived memory monitor that can be +// used for tracking memory usage in KV. +type MemoryMonitorForKVProvider interface { + GetRootMemoryMonitor() *mon.BytesMonitor } // ConsistencyTestingKnobs is a BatchEvalTestingKnobs struct used to control the @@ -2891,6 +2901,13 @@ func (s *Store) unregisterLeaseholderByID(ctx context.Context, rangeID roachpb.R } } +func (s *Store) getRootMemoryMonitorForKV() *mon.BytesMonitor { + if s.cfg.MemoryMonitorForKVProvider != nil { + return s.cfg.MemoryMonitorForKVProvider.GetRootMemoryMonitor() + } + return nil +} + // WriteClusterVersion writes the given cluster version to the store-local // cluster version key. We only accept a raw engine to ensure we're persisting // the write durably. diff --git a/pkg/kv/txn.go b/pkg/kv/txn.go index 1e4e3a449c6b..688d0ee41d1c 100644 --- a/pkg/kv/txn.go +++ b/pkg/kv/txn.go @@ -972,8 +972,10 @@ func (txn *Txn) Send( } // Some callers have not initialized ba using a Batch constructed using - // Txn.NewBatch. So we fallback to initializing here. + // Txn.NewBatch. So we fallback to partially overwriting here. + noMem := ba.AdmissionHeader.NoMemoryReservedAtSource ba.AdmissionHeader = txn.admissionHeader + ba.AdmissionHeader.NoMemoryReservedAtSource = noMem txn.mu.Lock() requestTxnID := txn.mu.ID diff --git a/pkg/roachpb/api.pb.go b/pkg/roachpb/api.pb.go index 3ef0f4eeb2a7..aa126cf7de99 100644 --- a/pkg/roachpb/api.pb.go +++ b/pkg/roachpb/api.pb.go @@ -371,6 +371,34 @@ func (AdmissionHeader_Source) EnumDescriptor() ([]byte, []int) { return fileDescriptor_e08772acc330f58b, []int{97, 0} } +// SourceLocation specifies physically where the call originated. LOCAL is +// set on codepaths that are calling the KV api from the same node (not +// using gRPC). +type AdmissionHeader_SourceLocation int32 + +const ( + AdmissionHeader_REMOTE AdmissionHeader_SourceLocation = 0 + AdmissionHeader_LOCAL AdmissionHeader_SourceLocation = 1 +) + +var AdmissionHeader_SourceLocation_name = map[int32]string{ + 0: "REMOTE", + 1: "LOCAL", +} + +var AdmissionHeader_SourceLocation_value = map[string]int32{ + "REMOTE": 0, + "LOCAL": 1, +} + +func (x AdmissionHeader_SourceLocation) String() string { + return proto.EnumName(AdmissionHeader_SourceLocation_name, int32(x)) +} + +func (AdmissionHeader_SourceLocation) EnumDescriptor() ([]byte, []int) { + return fileDescriptor_e08772acc330f58b, []int{97, 1} +} + // RequestHeader is supplied with every storage node request. type RequestHeader struct { // The key for request. If the request operates on a range, this @@ -6359,8 +6387,14 @@ type AdmissionHeader struct { // CreateTime is equivalent to Time.UnixNano() at the creation time of this // request or a parent request. See admission.WorkInfo.Priority for details. // It is used to give preference to older requests. - CreateTime int64 `protobuf:"varint,2,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"` - Source AdmissionHeader_Source `protobuf:"varint,3,opt,name=source,proto3,enum=cockroach.roachpb.AdmissionHeader_Source" json:"source,omitempty"` + CreateTime int64 `protobuf:"varint,2,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"` + Source AdmissionHeader_Source `protobuf:"varint,3,opt,name=source,proto3,enum=cockroach.roachpb.AdmissionHeader_Source" json:"source,omitempty"` + SourceLocation AdmissionHeader_SourceLocation `protobuf:"varint,4,opt,name=source_location,json=sourceLocation,proto3,enum=cockroach.roachpb.AdmissionHeader_SourceLocation" json:"source_location,omitempty"` + // NoMemoryReservedAtSource is read only when SourceLocation=LOCAL, where + // typically the client/source has already reserved enough memory based on + // previous responses, so the server avoids reserving more. This bit is set + // when the client has effectively reserved close to 0 bytes. + NoMemoryReservedAtSource bool `protobuf:"varint,5,opt,name=no_memory_reserved_at_source,json=noMemoryReservedAtSource,proto3" json:"no_memory_reserved_at_source,omitempty"` } func (m *AdmissionHeader) Reset() { *m = AdmissionHeader{} } @@ -7098,6 +7132,7 @@ func init() { proto.RegisterEnum("cockroach.roachpb.ResponseHeader_ResumeReason", ResponseHeader_ResumeReason_name, ResponseHeader_ResumeReason_value) proto.RegisterEnum("cockroach.roachpb.CheckConsistencyResponse_Status", CheckConsistencyResponse_Status_name, CheckConsistencyResponse_Status_value) proto.RegisterEnum("cockroach.roachpb.AdmissionHeader_Source", AdmissionHeader_Source_name, AdmissionHeader_Source_value) + proto.RegisterEnum("cockroach.roachpb.AdmissionHeader_SourceLocation", AdmissionHeader_SourceLocation_name, AdmissionHeader_SourceLocation_value) proto.RegisterType((*RequestHeader)(nil), "cockroach.roachpb.RequestHeader") proto.RegisterType((*ResponseHeader)(nil), "cockroach.roachpb.ResponseHeader") proto.RegisterType((*GetRequest)(nil), "cockroach.roachpb.GetRequest") @@ -7231,524 +7266,529 @@ func init() { func init() { proto.RegisterFile("roachpb/api.proto", fileDescriptor_e08772acc330f58b) } var fileDescriptor_e08772acc330f58b = []byte{ - // 8258 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x7d, 0x5f, 0x6c, 0x23, 0x49, - 0x7a, 0x9f, 0x9a, 0xa4, 0x24, 0xf2, 0xa3, 0x44, 0xb6, 0x4a, 0xf3, 0x87, 0xa3, 0xdd, 0x1d, 0xcd, - 0xf4, 0xec, 0xfc, 0xf5, 0x2d, 0xb5, 0x33, 0x73, 0x97, 0x5b, 0xef, 0xae, 0xf7, 0x2c, 0x51, 0x9c, - 0x21, 0xa5, 0x91, 0x46, 0xd3, 0xa4, 0x66, 0xb0, 0xeb, 0x73, 0xda, 0xad, 0xee, 0x12, 0xd5, 0x27, - 0xb2, 0x9b, 0xd3, 0xdd, 0x94, 0xc4, 0x05, 0xf2, 0x90, 0xc4, 0x70, 0xee, 0x29, 0xb8, 0x00, 0x01, - 0x7c, 0x07, 0x07, 0xc1, 0x39, 0x36, 0xe2, 0x87, 0x3c, 0x24, 0x48, 0x82, 0xfc, 0x43, 0x12, 0x23, - 0x4f, 0x39, 0x04, 0x87, 0xdc, 0xf9, 0xcd, 0x08, 0x10, 0xc5, 0xd1, 0xe5, 0x21, 0x86, 0x11, 0x24, - 0x08, 0x02, 0x1c, 0xb0, 0x40, 0x82, 0xa0, 0xfe, 0xf4, 0x3f, 0xb2, 0x49, 0x51, 0xb3, 0x7d, 0xc9, - 0x02, 0x7e, 0x91, 0xd8, 0x5f, 0xd5, 0xf7, 0x75, 0xd5, 0x57, 0x55, 0x5f, 0x7d, 0xbf, 0xaa, 0xaf, - 0xaa, 0x61, 0xc1, 0xb6, 0x54, 0xed, 0xa0, 0xbb, 0xb7, 0xa2, 0x76, 0x8d, 0x72, 0xd7, 0xb6, 0x5c, - 0x0b, 0x2d, 0x68, 0x96, 0x76, 0x48, 0xc9, 0x65, 0x9e, 0xb8, 0xf4, 0xe0, 0xf0, 0x68, 0xe5, 0xf0, - 0xc8, 0xc1, 0xf6, 0x11, 0xb6, 0x57, 0x34, 0xcb, 0xd4, 0x7a, 0xb6, 0x8d, 0x4d, 0xad, 0xbf, 0xd2, - 0xb6, 0xb4, 0x43, 0xfa, 0xc7, 0x30, 0x5b, 0x8c, 0x3d, 0x9a, 0xd7, 0xc6, 0xaa, 0xee, 0xf4, 0x3a, - 0x1d, 0xd5, 0xee, 0xaf, 0xd8, 0x4e, 0x77, 0x6f, 0x85, 0x3f, 0xf0, 0xbc, 0xc8, 0x7b, 0xbb, 0xae, - 0xba, 0x2a, 0xa7, 0x5d, 0xf2, 0x68, 0xd8, 0xb6, 0x2d, 0xdb, 0xe1, 0xd4, 0x2b, 0x1e, 0xb5, 0x83, - 0x5d, 0x35, 0x94, 0xfb, 0x2d, 0xc7, 0xb5, 0x6c, 0xb5, 0x85, 0x57, 0xb0, 0xd9, 0x32, 0x4c, 0x4c, - 0x32, 0x1c, 0x69, 0x1a, 0x4f, 0x7c, 0x3b, 0x36, 0xf1, 0x31, 0x4f, 0x2d, 0xf5, 0x5c, 0xa3, 0xbd, - 0x72, 0xd0, 0xd6, 0x56, 0x5c, 0xa3, 0x83, 0x1d, 0x57, 0xed, 0x74, 0xbd, 0x2a, 0xd0, 0x14, 0xd7, - 0x56, 0x35, 0xc3, 0x6c, 0x79, 0xff, 0xbb, 0x7b, 0x2b, 0x36, 0xd6, 0x2c, 0x5b, 0xc7, 0xba, 0xe2, - 0x74, 0x55, 0xd3, 0x2b, 0x6e, 0xcb, 0x6a, 0x59, 0xf4, 0xe7, 0x0a, 0xf9, 0xc5, 0xa9, 0xd7, 0x5b, - 0x96, 0xd5, 0x6a, 0xe3, 0x15, 0xfa, 0xb4, 0xd7, 0xdb, 0x5f, 0xd1, 0x7b, 0xb6, 0xea, 0x1a, 0x16, - 0xe7, 0x92, 0xfe, 0x89, 0x00, 0xf3, 0x32, 0x7e, 0xdd, 0xc3, 0x8e, 0x5b, 0xc3, 0xaa, 0x8e, 0x6d, - 0x74, 0x0d, 0xd2, 0x87, 0xb8, 0x5f, 0x4a, 0xdf, 0x10, 0xee, 0xcd, 0xad, 0xcd, 0x7e, 0x71, 0xba, - 0x9c, 0xde, 0xc4, 0x7d, 0x99, 0xd0, 0xd0, 0x0d, 0x98, 0xc5, 0xa6, 0xae, 0x90, 0xe4, 0x4c, 0x34, - 0x79, 0x06, 0x9b, 0xfa, 0x26, 0xee, 0xa3, 0x6f, 0x43, 0xd6, 0x21, 0xd2, 0x4c, 0x0d, 0x97, 0xa6, - 0x6f, 0x08, 0xf7, 0xa6, 0xd7, 0x7e, 0xf5, 0x8b, 0xd3, 0xe5, 0x8f, 0x5b, 0x86, 0x7b, 0xd0, 0xdb, - 0x2b, 0x6b, 0x56, 0x67, 0xc5, 0x6f, 0x53, 0x7d, 0x2f, 0xf8, 0xbd, 0xd2, 0x3d, 0x6c, 0xad, 0x0c, - 0xea, 0xa8, 0xdc, 0x3c, 0x31, 0x1b, 0xf8, 0xb5, 0xec, 0x4b, 0xdc, 0xc8, 0x64, 0x05, 0x31, 0xb5, - 0x91, 0xc9, 0xa6, 0xc4, 0xb4, 0xf4, 0x93, 0x14, 0x14, 0x64, 0xec, 0x74, 0x2d, 0xd3, 0xc1, 0xbc, - 0xe4, 0xef, 0x43, 0xda, 0x3d, 0x31, 0x69, 0xc9, 0xf3, 0x8f, 0xae, 0x97, 0x87, 0x7a, 0x4f, 0xb9, - 0x69, 0xab, 0xa6, 0xa3, 0x6a, 0xa4, 0xfa, 0x32, 0xc9, 0x8a, 0x3e, 0x80, 0xbc, 0x8d, 0x9d, 0x5e, - 0x07, 0x53, 0x45, 0xd2, 0x4a, 0xe5, 0x1f, 0x5d, 0x8d, 0xe1, 0x6c, 0x74, 0x55, 0x53, 0x06, 0x96, - 0x97, 0xfc, 0x46, 0x0d, 0x98, 0xe7, 0x9c, 0x36, 0x56, 0x1d, 0xcb, 0x2c, 0xcd, 0xde, 0x10, 0xee, - 0x15, 0x1e, 0x95, 0x63, 0x78, 0xa3, 0xa5, 0x24, 0x8f, 0xbd, 0x0e, 0x96, 0x29, 0x97, 0x3c, 0x67, - 0x87, 0x9e, 0xd0, 0x35, 0xc8, 0x9a, 0xbd, 0x0e, 0xd1, 0xaf, 0x43, 0xb5, 0x97, 0x96, 0x67, 0xcd, - 0x5e, 0x67, 0x13, 0xf7, 0x1d, 0xf4, 0x16, 0xe4, 0x48, 0xd2, 0x5e, 0xdf, 0xc5, 0x4e, 0x29, 0x4b, - 0xd3, 0x48, 0xde, 0x35, 0xf2, 0x2c, 0x7d, 0x02, 0x73, 0x61, 0xa9, 0x08, 0x41, 0x41, 0xae, 0x36, - 0x76, 0xb7, 0xaa, 0xca, 0xee, 0xf6, 0xe6, 0xf6, 0xf3, 0x57, 0xdb, 0xe2, 0x14, 0xba, 0x04, 0x22, - 0xa7, 0x6d, 0x56, 0x3f, 0x55, 0x9e, 0xd5, 0xb7, 0xea, 0x4d, 0x51, 0x58, 0xca, 0x7c, 0xf7, 0xf7, - 0xae, 0x4f, 0x6d, 0x64, 0xb2, 0x33, 0xe2, 0xac, 0xf4, 0x7b, 0x02, 0xc0, 0x53, 0xec, 0xf2, 0xde, - 0x80, 0xd6, 0x60, 0xe6, 0x80, 0x96, 0xb8, 0x24, 0x50, 0xb5, 0xdc, 0x88, 0xad, 0x5a, 0xa8, 0xe7, - 0xac, 0x65, 0x7f, 0x74, 0xba, 0x3c, 0xf5, 0xd3, 0xd3, 0x65, 0x41, 0xe6, 0x9c, 0xe8, 0x05, 0xe4, - 0x0f, 0x71, 0x5f, 0xe1, 0xe3, 0xb2, 0x94, 0xa2, 0x3a, 0x7a, 0x3f, 0x24, 0xe8, 0xf0, 0xa8, 0xec, - 0x0d, 0xd1, 0x72, 0x68, 0x38, 0x97, 0x09, 0x47, 0xb9, 0xe1, 0xda, 0xd8, 0x6c, 0xb9, 0x07, 0x32, - 0x1c, 0xe2, 0xfe, 0x33, 0x26, 0x43, 0xfa, 0x43, 0x01, 0xf2, 0xb4, 0x94, 0x4c, 0xa9, 0xa8, 0x32, - 0x50, 0xcc, 0x9b, 0xe7, 0xb6, 0x40, 0x4c, 0x39, 0xcb, 0x30, 0x7d, 0xa4, 0xb6, 0x7b, 0x98, 0x96, - 0x30, 0xff, 0xa8, 0x14, 0x23, 0xe3, 0x25, 0x49, 0x97, 0x59, 0x36, 0xf4, 0x11, 0xcc, 0x19, 0xa6, - 0x8b, 0x4d, 0x57, 0x61, 0x6c, 0xe9, 0x73, 0xd8, 0xf2, 0x2c, 0x37, 0x7d, 0x90, 0xfe, 0xb1, 0x00, - 0xb0, 0xd3, 0x4b, 0x54, 0xcf, 0x5f, 0x9f, 0xb0, 0xfc, 0x6b, 0x19, 0xc2, 0xea, 0xd5, 0xe2, 0x0a, - 0xcc, 0x18, 0x66, 0xdb, 0x30, 0x59, 0xf9, 0xb3, 0x32, 0x7f, 0x42, 0x97, 0x60, 0x7a, 0xaf, 0x6d, - 0x98, 0x3a, 0x1d, 0x0f, 0x59, 0x99, 0x3d, 0x48, 0x32, 0xe4, 0x69, 0xa9, 0x13, 0xd4, 0xbb, 0x74, - 0x9a, 0x82, 0xcb, 0x15, 0xcb, 0xd4, 0x0d, 0x32, 0x24, 0xd5, 0xf6, 0x57, 0x42, 0x2b, 0x1b, 0x70, - 0x49, 0xc7, 0x5d, 0x1b, 0x6b, 0xaa, 0x8b, 0x75, 0x05, 0x9f, 0x74, 0x27, 0x6c, 0x63, 0x14, 0x70, - 0x55, 0x4f, 0xba, 0x94, 0x46, 0x46, 0x2d, 0x11, 0xc0, 0x46, 0xed, 0x0c, 0x31, 0x99, 0x72, 0x16, - 0x9f, 0x74, 0xe9, 0xa8, 0x8d, 0x57, 0x33, 0xfa, 0x3a, 0x5c, 0x55, 0xdb, 0x6d, 0xeb, 0x58, 0x31, - 0xf6, 0x15, 0xdd, 0xc2, 0x8e, 0x62, 0x5a, 0xae, 0x82, 0x4f, 0x0c, 0xc7, 0xa5, 0x26, 0x21, 0x2b, - 0x2f, 0xd2, 0xe4, 0xfa, 0xfe, 0xba, 0x85, 0x9d, 0x6d, 0xcb, 0xad, 0x92, 0xa4, 0x50, 0x53, 0xce, - 0x86, 0x9b, 0x52, 0xfa, 0x75, 0xb8, 0x32, 0xa8, 0xdf, 0x24, 0xdb, 0xef, 0xc7, 0x02, 0x14, 0xea, - 0xa6, 0xe1, 0x7e, 0x25, 0x1a, 0xce, 0xd7, 0x67, 0x3a, 0xac, 0xcf, 0x07, 0x20, 0xee, 0xab, 0x46, - 0xfb, 0xb9, 0xd9, 0xb4, 0x3a, 0x7b, 0x8e, 0x6b, 0x99, 0xd8, 0xe1, 0x0a, 0x1f, 0xa2, 0x4b, 0x2f, - 0xa1, 0xe8, 0xd7, 0x26, 0x49, 0x35, 0xb9, 0x20, 0xd6, 0x4d, 0xcd, 0xc6, 0x1d, 0x6c, 0x26, 0xaa, - 0xa7, 0xb7, 0x21, 0x67, 0x78, 0x72, 0xa9, 0xae, 0xd2, 0x72, 0x40, 0x90, 0x7a, 0xb0, 0x10, 0x7a, - 0x6b, 0x92, 0xe6, 0x92, 0x4c, 0x46, 0xf8, 0x58, 0x09, 0xda, 0x88, 0x4c, 0x46, 0xf8, 0x98, 0x99, - 0xb7, 0x06, 0xcc, 0xaf, 0xe3, 0x36, 0x76, 0x71, 0x82, 0x35, 0x95, 0x76, 0xa1, 0xe0, 0x09, 0x4d, - 0xb2, 0x61, 0x7e, 0x5b, 0x00, 0xc4, 0xe5, 0xaa, 0x66, 0x2b, 0xc9, 0x12, 0xa3, 0x65, 0xe2, 0x5a, - 0xb8, 0x3d, 0xdb, 0x64, 0xd3, 0x39, 0xeb, 0x93, 0xc0, 0x48, 0x74, 0x46, 0x0f, 0x86, 0x6c, 0x26, - 0x3c, 0x64, 0xb9, 0x7b, 0x73, 0x0c, 0x8b, 0x91, 0x82, 0x25, 0xdb, 0x7c, 0x19, 0x5a, 0xa6, 0xd4, - 0x8d, 0x74, 0xd8, 0x87, 0xa3, 0x44, 0xe9, 0xfb, 0x02, 0x2c, 0x54, 0xda, 0x58, 0xb5, 0x13, 0xd7, - 0xc8, 0xb7, 0x20, 0xab, 0x63, 0x55, 0xa7, 0x55, 0x66, 0x03, 0xfb, 0x9d, 0x90, 0x14, 0xe2, 0xe9, - 0x96, 0x0f, 0xda, 0x5a, 0xb9, 0xe9, 0xf9, 0xc0, 0x7c, 0x74, 0xfb, 0x4c, 0xd2, 0xa7, 0x80, 0xc2, - 0x25, 0x4b, 0xb2, 0x23, 0xfc, 0x7e, 0x0a, 0x90, 0x8c, 0x8f, 0xb0, 0xed, 0x26, 0x5e, 0xed, 0x75, - 0xc8, 0xbb, 0xaa, 0xdd, 0xc2, 0xae, 0x42, 0xbc, 0xfb, 0x8b, 0xd4, 0x1c, 0x18, 0x1f, 0x21, 0xa3, - 0x26, 0xdc, 0xc5, 0xa6, 0xba, 0xd7, 0xc6, 0x54, 0x8a, 0xb2, 0x67, 0xf5, 0x4c, 0x5d, 0x31, 0x5c, - 0x6c, 0xab, 0xae, 0x65, 0x2b, 0x56, 0xd7, 0x35, 0x3a, 0xc6, 0xe7, 0xd4, 0xb1, 0xe7, 0x5d, 0xed, - 0x16, 0xcb, 0x4e, 0x98, 0xd7, 0x48, 0xe6, 0x3a, 0xcf, 0xfb, 0x3c, 0x94, 0x15, 0x95, 0x61, 0xd1, - 0x68, 0x99, 0x96, 0x8d, 0x95, 0x96, 0xa6, 0xb8, 0x07, 0x36, 0x76, 0x0e, 0xac, 0xb6, 0x37, 0x21, - 0x2d, 0xb0, 0xa4, 0xa7, 0x5a, 0xd3, 0x4b, 0x90, 0x3e, 0x83, 0xc5, 0x88, 0x96, 0x92, 0x6c, 0x82, - 0xff, 0x21, 0x40, 0xbe, 0xa1, 0xa9, 0x66, 0x92, 0xba, 0xff, 0x04, 0xf2, 0x8e, 0xa6, 0x9a, 0xca, - 0xbe, 0x65, 0x77, 0x54, 0x97, 0xd6, 0xab, 0x10, 0xd1, 0xbd, 0xef, 0xdf, 0x6b, 0xaa, 0xf9, 0x84, - 0x66, 0x92, 0xc1, 0xf1, 0x7f, 0x0f, 0xfa, 0xaf, 0xd3, 0x5f, 0xde, 0x7f, 0x65, 0xc3, 0x7b, 0x23, - 0x93, 0x4d, 0x8b, 0x19, 0xe9, 0xe7, 0x02, 0xcc, 0xb1, 0x2a, 0x27, 0x39, 0xbc, 0xbf, 0x01, 0x19, - 0xdb, 0x3a, 0x66, 0xc3, 0x3b, 0xff, 0xe8, 0xad, 0x18, 0x11, 0x9b, 0xb8, 0x1f, 0x9e, 0x3f, 0x69, - 0x76, 0xb4, 0x06, 0xdc, 0x4b, 0x55, 0x28, 0x77, 0x7a, 0x52, 0x6e, 0x60, 0x5c, 0x32, 0x91, 0x71, - 0x17, 0x8a, 0x7b, 0xaa, 0xab, 0x1d, 0x28, 0x36, 0x2f, 0x24, 0x99, 0x6b, 0xd3, 0xf7, 0xe6, 0xe4, - 0x02, 0x25, 0x7b, 0x45, 0x77, 0x48, 0xcd, 0xd9, 0x78, 0x73, 0xf0, 0x9f, 0xb3, 0x36, 0xff, 0x3f, - 0x02, 0x1f, 0x43, 0x5e, 0xcd, 0xff, 0xbc, 0x35, 0xfd, 0x0f, 0x52, 0x70, 0xb5, 0x72, 0x80, 0xb5, - 0xc3, 0x8a, 0x65, 0x3a, 0x86, 0xe3, 0x12, 0xdd, 0x25, 0xd9, 0xfe, 0x6f, 0x41, 0xee, 0xd8, 0x70, - 0x0f, 0x14, 0xdd, 0xd8, 0xdf, 0xa7, 0xd6, 0x36, 0x2b, 0x67, 0x09, 0x61, 0xdd, 0xd8, 0xdf, 0x47, - 0x8f, 0x21, 0xd3, 0xb1, 0x74, 0xe6, 0xcc, 0x17, 0x1e, 0x2d, 0xc7, 0x88, 0xa7, 0x45, 0x73, 0x7a, - 0x9d, 0x2d, 0x4b, 0xc7, 0x32, 0xcd, 0x8c, 0xae, 0x03, 0x68, 0x84, 0xda, 0xb5, 0x0c, 0xd3, 0xe5, - 0xc6, 0x31, 0x44, 0x41, 0x35, 0xc8, 0xb9, 0xd8, 0xee, 0x18, 0xa6, 0xea, 0xe2, 0xd2, 0x34, 0x55, - 0xde, 0xbb, 0xb1, 0x05, 0xef, 0xb6, 0x0d, 0x4d, 0x5d, 0xc7, 0x8e, 0x66, 0x1b, 0x5d, 0xd7, 0xb2, - 0xb9, 0x16, 0x03, 0x66, 0xe9, 0xaf, 0x67, 0xa0, 0x34, 0xac, 0x9b, 0x24, 0x7b, 0xc8, 0x0e, 0xcc, - 0xd8, 0xd8, 0xe9, 0xb5, 0x5d, 0xde, 0x47, 0x1e, 0x8d, 0x52, 0x41, 0x4c, 0x09, 0xe8, 0xd2, 0x45, - 0xdb, 0xe5, 0xc5, 0xe6, 0x72, 0x96, 0xfe, 0xa5, 0x00, 0x33, 0x2c, 0x01, 0x3d, 0x84, 0xac, 0x4d, - 0x26, 0x06, 0xc5, 0xd0, 0x69, 0x19, 0xd3, 0x6b, 0x57, 0xce, 0x4e, 0x97, 0x67, 0xe9, 0x64, 0x51, - 0x5f, 0xff, 0x22, 0xf8, 0x29, 0xcf, 0xd2, 0x7c, 0x75, 0x9d, 0xb4, 0x96, 0xe3, 0xaa, 0xb6, 0x4b, - 0x17, 0x95, 0x52, 0x0c, 0x21, 0x51, 0xc2, 0x26, 0xee, 0xa3, 0x0d, 0x98, 0x71, 0x5c, 0xd5, 0xed, - 0x39, 0xbc, 0xbd, 0x2e, 0x54, 0xd8, 0x06, 0xe5, 0x94, 0xb9, 0x04, 0xe2, 0x6e, 0xe9, 0xd8, 0x55, - 0x8d, 0x36, 0x6d, 0xc0, 0x9c, 0xcc, 0x9f, 0xa4, 0xdf, 0x11, 0x60, 0x86, 0x65, 0x45, 0x57, 0x61, - 0x51, 0x5e, 0xdd, 0x7e, 0x5a, 0x55, 0xea, 0xdb, 0xeb, 0xd5, 0x66, 0x55, 0xde, 0xaa, 0x6f, 0xaf, - 0x36, 0xab, 0xe2, 0x14, 0xba, 0x02, 0xc8, 0x4b, 0xa8, 0x3c, 0xdf, 0x6e, 0xd4, 0x1b, 0xcd, 0xea, - 0x76, 0x53, 0x14, 0xe8, 0x9a, 0x0a, 0xa5, 0x87, 0xa8, 0x29, 0xf4, 0x2e, 0xdc, 0x18, 0xa4, 0x2a, - 0x8d, 0xe6, 0x6a, 0xb3, 0xa1, 0x54, 0x1b, 0xcd, 0xfa, 0xd6, 0x6a, 0xb3, 0xba, 0x2e, 0xa6, 0xc7, - 0xe4, 0x22, 0x2f, 0x91, 0xe5, 0x6a, 0xa5, 0x29, 0x66, 0x24, 0x17, 0x2e, 0xcb, 0x58, 0xb3, 0x3a, - 0xdd, 0x9e, 0x8b, 0x49, 0x29, 0x9d, 0x24, 0x47, 0xca, 0x55, 0x98, 0xd5, 0xed, 0xbe, 0x62, 0xf7, - 0x4c, 0x3e, 0x4e, 0x66, 0x74, 0xbb, 0x2f, 0xf7, 0x4c, 0xe9, 0x1f, 0x08, 0x70, 0x65, 0xf0, 0xb5, - 0x49, 0x76, 0xc2, 0x17, 0x90, 0x57, 0x75, 0x1d, 0xeb, 0x8a, 0x8e, 0xdb, 0xae, 0xca, 0x5d, 0xa2, - 0x07, 0x21, 0x49, 0x7c, 0x29, 0xb0, 0xec, 0x2f, 0x05, 0x6e, 0xbd, 0xac, 0x54, 0x68, 0x41, 0xd6, - 0x09, 0x87, 0x67, 0x7e, 0xa8, 0x10, 0x4a, 0x91, 0x7e, 0x90, 0x81, 0xf9, 0xaa, 0xa9, 0x37, 0x4f, - 0x12, 0x9d, 0x4b, 0xae, 0xc0, 0x8c, 0x66, 0x75, 0x3a, 0x86, 0xeb, 0x29, 0x88, 0x3d, 0xa1, 0x5f, - 0x0e, 0xb9, 0xb2, 0xe9, 0x09, 0x1c, 0xba, 0xc0, 0x89, 0x45, 0xbf, 0x01, 0x57, 0x89, 0xd5, 0xb4, - 0x4d, 0xb5, 0xad, 0x30, 0x69, 0x8a, 0x6b, 0x1b, 0xad, 0x16, 0xb6, 0xf9, 0xf2, 0xe3, 0xbd, 0x98, - 0x72, 0xd6, 0x39, 0x47, 0x85, 0x32, 0x34, 0x59, 0x7e, 0xf9, 0xb2, 0x11, 0x47, 0x46, 0x1f, 0x03, - 0x90, 0xa9, 0x88, 0x2e, 0x69, 0x3a, 0xdc, 0x1e, 0x8d, 0x5a, 0xd3, 0xf4, 0x4c, 0x10, 0x61, 0x20, - 0xcf, 0x0e, 0x7a, 0x01, 0xa2, 0x61, 0x2a, 0xfb, 0x6d, 0xa3, 0x75, 0xe0, 0x2a, 0xc7, 0xb6, 0xe1, - 0x62, 0xa7, 0xb4, 0x40, 0x65, 0xc4, 0x35, 0x75, 0x83, 0x2f, 0xcd, 0xea, 0xaf, 0x48, 0x4e, 0x2e, - 0xad, 0x60, 0x98, 0x4f, 0x28, 0x3f, 0x25, 0x3a, 0x68, 0x85, 0x40, 0xa1, 0xd7, 0x3d, 0xc3, 0xc6, - 0xca, 0xc3, 0xae, 0x46, 0xd7, 0x41, 0xb2, 0x6b, 0x85, 0xb3, 0xd3, 0x65, 0x90, 0x19, 0xf9, 0xe1, - 0x4e, 0x85, 0x40, 0x23, 0xf6, 0xbb, 0xab, 0x11, 0xb5, 0x77, 0x2d, 0xc3, 0xb1, 0xcc, 0x52, 0x8e, - 0xa9, 0x9d, 0x3d, 0xa1, 0xfb, 0x20, 0xba, 0x27, 0xa6, 0x72, 0x80, 0x55, 0xdb, 0xdd, 0xc3, 0xaa, - 0x4b, 0xe6, 0x67, 0xa0, 0x39, 0x8a, 0xee, 0x89, 0x59, 0x0b, 0x91, 0x37, 0x32, 0xd9, 0x59, 0x31, - 0xbb, 0x91, 0xc9, 0x66, 0xc5, 0x9c, 0xf4, 0x1f, 0x05, 0x28, 0x78, 0x7d, 0x23, 0xc9, 0x6e, 0x7c, - 0x0f, 0x44, 0xcb, 0xc4, 0x4a, 0xf7, 0x40, 0x75, 0x30, 0x6f, 0x4b, 0x3e, 0x3b, 0x14, 0x2c, 0x13, - 0xef, 0x10, 0x32, 0x6b, 0x19, 0xb4, 0x03, 0x0b, 0x8e, 0xab, 0xb6, 0x0c, 0xb3, 0xa5, 0xf8, 0x4b, - 0xfc, 0xd4, 0xb3, 0x98, 0x10, 0x09, 0x88, 0x9c, 0xdb, 0xa7, 0x47, 0x5c, 0x8a, 0x3f, 0x12, 0x60, - 0x61, 0x55, 0xef, 0x18, 0x66, 0xa3, 0xdb, 0x36, 0x12, 0x5d, 0x60, 0x78, 0x17, 0x72, 0x0e, 0x91, - 0x19, 0x58, 0xe7, 0x00, 0x2e, 0x66, 0x69, 0x0a, 0x31, 0xd3, 0xcf, 0xa0, 0x88, 0x4f, 0xba, 0x06, - 0xdb, 0x57, 0x60, 0x28, 0x27, 0x33, 0x79, 0xdd, 0x0a, 0x01, 0x2f, 0x49, 0xe2, 0x75, 0xfa, 0x14, - 0x50, 0xb8, 0x4a, 0x49, 0x02, 0x8d, 0x4f, 0x61, 0x91, 0x8a, 0xde, 0x35, 0x9d, 0x84, 0xf5, 0x25, - 0xfd, 0x1a, 0x5c, 0x8a, 0x8a, 0x4e, 0xb2, 0xdc, 0xaf, 0x78, 0x2b, 0x6f, 0x61, 0x3b, 0x51, 0x84, - 0xea, 0xeb, 0x9a, 0x0b, 0x4e, 0xb2, 0xcc, 0xbf, 0x29, 0xc0, 0x35, 0x2a, 0x9b, 0x6e, 0xbd, 0xec, - 0x63, 0xfb, 0x19, 0x56, 0x9d, 0x44, 0xe1, 0xf5, 0x2d, 0x98, 0x61, 0x30, 0x99, 0xf6, 0xcf, 0xe9, - 0xb5, 0x3c, 0x71, 0x33, 0x1a, 0xae, 0x65, 0x13, 0x37, 0x83, 0x27, 0x49, 0x2a, 0x2c, 0xc5, 0x95, - 0x22, 0xc9, 0x9a, 0xfe, 0x6d, 0x01, 0x16, 0xb8, 0x87, 0x47, 0xba, 0x72, 0xe5, 0x80, 0x38, 0x38, - 0xa8, 0x0a, 0x79, 0x8d, 0xfe, 0x52, 0xdc, 0x7e, 0x17, 0x53, 0xf9, 0x85, 0x71, 0xce, 0x21, 0x63, - 0x6b, 0xf6, 0xbb, 0x98, 0x78, 0x98, 0xde, 0x6f, 0xa2, 0xa8, 0x50, 0x25, 0xc7, 0xba, 0x97, 0x74, - 0x1c, 0xd1, 0xbc, 0x9e, 0x9f, 0xc6, 0x75, 0xf0, 0x8f, 0xd2, 0x5c, 0x09, 0xec, 0x1d, 0x3c, 0x7b, - 0xa2, 0x0e, 0xc5, 0x67, 0x70, 0x25, 0xb4, 0x74, 0x1e, 0xae, 0x78, 0xea, 0x02, 0x15, 0x0f, 0x2d, - 0xbf, 0x07, 0x54, 0xf4, 0x29, 0x84, 0x16, 0xd8, 0x15, 0x56, 0x27, 0x0f, 0xaa, 0x5c, 0x44, 0x1d, - 0x0b, 0x81, 0x14, 0x46, 0x77, 0x50, 0x05, 0xb2, 0xf8, 0xa4, 0xab, 0xe8, 0xd8, 0xd1, 0xb8, 0xe1, - 0x92, 0xe2, 0x04, 0x92, 0xa2, 0x0c, 0x39, 0xef, 0xb3, 0xf8, 0xa4, 0x4b, 0x88, 0x68, 0x97, 0xcc, - 0x9b, 0xde, 0xbc, 0x4e, 0x8b, 0xed, 0x9c, 0x8f, 0x05, 0x82, 0x9e, 0xc2, 0xc5, 0x15, 0xfd, 0x29, - 0x9d, 0x89, 0x90, 0x7e, 0x28, 0xc0, 0x5b, 0xb1, 0xad, 0x96, 0xe4, 0x44, 0xf6, 0x31, 0x64, 0x68, - 0xe5, 0x53, 0x17, 0xac, 0x3c, 0xe5, 0x92, 0xbe, 0x9b, 0xe2, 0x63, 0x5c, 0xc6, 0x6d, 0x8b, 0x28, - 0x36, 0xf1, 0x25, 0xb4, 0xe7, 0x30, 0x7f, 0x64, 0xb9, 0xd8, 0xf6, 0x9b, 0x3d, 0x75, 0xe1, 0x66, - 0x9f, 0xa3, 0x02, 0xbc, 0x16, 0x7f, 0x09, 0x0b, 0xa6, 0x65, 0x2a, 0x51, 0xa1, 0x17, 0xef, 0x4b, - 0x45, 0xd3, 0x32, 0x5f, 0x86, 0xe4, 0xfa, 0x76, 0x66, 0x40, 0x13, 0x49, 0xda, 0x99, 0xef, 0x09, - 0xb0, 0xe8, 0x7b, 0x3a, 0x09, 0xbb, 0xbb, 0xdf, 0x80, 0xb4, 0x69, 0x1d, 0x5f, 0x64, 0x89, 0x92, - 0xe4, 0x27, 0xb3, 0x5e, 0xb4, 0x44, 0x49, 0xd6, 0xf7, 0x5f, 0xa5, 0x20, 0xf7, 0xb4, 0x92, 0x64, - 0x2d, 0x3f, 0xe6, 0xcb, 0xdf, 0xac, 0xbd, 0xe3, 0x7a, 0xbb, 0xff, 0xbe, 0xf2, 0xd3, 0xca, 0x26, - 0xee, 0x7b, 0xbd, 0x9d, 0x70, 0xa1, 0x55, 0xc8, 0x45, 0x17, 0x4a, 0x27, 0xd4, 0x54, 0xc0, 0xb5, - 0x84, 0x61, 0x9a, 0xca, 0xf5, 0x42, 0x2d, 0x84, 0x98, 0x50, 0x0b, 0xf2, 0x1a, 0xdf, 0x53, 0x4c, - 0x5d, 0xe4, 0x35, 0x21, 0x17, 0x71, 0x5a, 0x9c, 0x91, 0x5e, 0x00, 0x90, 0xea, 0x24, 0xd9, 0x24, - 0xbf, 0x95, 0x86, 0xc2, 0x4e, 0xcf, 0x39, 0x48, 0xb8, 0xf7, 0x55, 0x00, 0xba, 0x3d, 0xe7, 0x80, - 0x8c, 0xc8, 0x13, 0x93, 0xd7, 0xf9, 0x9c, 0x28, 0x0e, 0xaf, 0xd2, 0x8c, 0xaf, 0x79, 0x62, 0xa2, - 0x1a, 0x17, 0x82, 0x95, 0x20, 0x14, 0xe4, 0xd6, 0x38, 0x64, 0xd9, 0x3c, 0x31, 0xb7, 0xb0, 0x0f, - 0x29, 0x99, 0x24, 0x4c, 0x24, 0x7d, 0x0c, 0xb3, 0xe4, 0x41, 0x71, 0xad, 0x8b, 0x34, 0xf3, 0x0c, - 0xe1, 0x69, 0x5a, 0xe8, 0x23, 0xc8, 0x31, 0x6e, 0x32, 0xfb, 0xcd, 0xd0, 0xd9, 0x2f, 0xae, 0x2e, - 0x5c, 0x8d, 0x74, 0xde, 0xcb, 0x52, 0x56, 0x32, 0xd7, 0x5d, 0x82, 0xe9, 0x7d, 0xcb, 0xd6, 0xbc, - 0xcd, 0x5c, 0xf6, 0xc0, 0xda, 0x93, 0x41, 0x9a, 0x8d, 0x4c, 0x36, 0x27, 0x82, 0xf4, 0x3b, 0x02, - 0x14, 0xfd, 0x86, 0x48, 0x72, 0x42, 0xa8, 0x44, 0xb4, 0x78, 0xf1, 0xa6, 0x20, 0x0a, 0x94, 0xfe, - 0x2d, 0xf5, 0x88, 0x34, 0xeb, 0x88, 0xb6, 0x4c, 0x92, 0x3d, 0xe5, 0x23, 0x16, 0xe8, 0x93, 0xba, - 0x68, 0xeb, 0xd2, 0x98, 0x9f, 0x87, 0x70, 0xc9, 0xe8, 0x10, 0x7b, 0x6e, 0xb8, 0xed, 0x3e, 0x87, - 0x6d, 0x2e, 0xf6, 0x76, 0x8d, 0x17, 0x83, 0xb4, 0x8a, 0x97, 0x24, 0xfd, 0x3e, 0x5d, 0xad, 0x0e, - 0x6a, 0x92, 0xa4, 0xaa, 0xeb, 0x30, 0x6f, 0x33, 0xd1, 0xc4, 0xad, 0xb9, 0xa0, 0xb6, 0xe7, 0x7c, - 0x56, 0xa2, 0xf0, 0xdf, 0x4d, 0x41, 0xf1, 0x45, 0x0f, 0xdb, 0xfd, 0xaf, 0x92, 0xba, 0xef, 0x40, - 0xf1, 0x58, 0x35, 0x5c, 0x65, 0xdf, 0xb2, 0x95, 0x5e, 0x57, 0x57, 0x5d, 0x2f, 0xda, 0x64, 0x9e, - 0x90, 0x9f, 0x58, 0xf6, 0x2e, 0x25, 0x22, 0x0c, 0xe8, 0xd0, 0xb4, 0x8e, 0x4d, 0x85, 0x90, 0x29, - 0x50, 0x3e, 0x31, 0xf9, 0x12, 0xf2, 0xda, 0x37, 0xff, 0xc3, 0xe9, 0xf2, 0xe3, 0x89, 0x62, 0xc8, - 0x68, 0xbc, 0x5c, 0xaf, 0x67, 0xe8, 0xe5, 0xdd, 0xdd, 0xfa, 0xba, 0x2c, 0x52, 0x91, 0xaf, 0x98, - 0xc4, 0xe6, 0x89, 0xe9, 0x48, 0x7f, 0x37, 0x05, 0x62, 0xa0, 0xa3, 0x24, 0x1b, 0xb2, 0x0a, 0xf9, - 0xd7, 0x3d, 0x6c, 0x1b, 0x6f, 0xd0, 0x8c, 0xc0, 0x19, 0x89, 0xd9, 0x79, 0x00, 0x0b, 0xee, 0x89, - 0xa9, 0xb0, 0x08, 0x3f, 0x16, 0xf8, 0xe1, 0x05, 0x2c, 0x14, 0x5d, 0x52, 0x66, 0x42, 0xa7, 0x41, - 0x1f, 0x0e, 0xfa, 0x0c, 0xe6, 0x22, 0xda, 0x4a, 0x7f, 0x39, 0x6d, 0xe5, 0x8f, 0x43, 0x8a, 0xfa, - 0x43, 0x01, 0x10, 0x55, 0x54, 0x9d, 0xad, 0xf1, 0x7f, 0x55, 0xfa, 0xd3, 0x3d, 0x10, 0x69, 0x3c, - 0xa6, 0x62, 0xec, 0x2b, 0x1d, 0xc3, 0x71, 0x0c, 0xb3, 0xc5, 0x3b, 0x54, 0x81, 0xd2, 0xeb, 0xfb, - 0x5b, 0x8c, 0x2a, 0xfd, 0x25, 0x58, 0x8c, 0x54, 0x20, 0xc9, 0xc6, 0xbe, 0x09, 0x73, 0xfb, 0x6c, - 0x0b, 0x96, 0x0a, 0xe7, 0xcb, 0x83, 0x79, 0x4a, 0x63, 0xef, 0x93, 0xfe, 0x2c, 0x05, 0x97, 0x64, - 0xec, 0x58, 0xed, 0x23, 0x9c, 0xbc, 0x0a, 0x6b, 0xc0, 0xf7, 0x5e, 0x94, 0x37, 0xd2, 0x64, 0x8e, - 0x31, 0xb3, 0x69, 0x2e, 0xba, 0xc6, 0xfe, 0xee, 0xf8, 0x1e, 0x3b, 0xbc, 0xaa, 0xce, 0x57, 0xea, - 0x32, 0x91, 0x95, 0x3a, 0x0b, 0x8a, 0x6c, 0xf7, 0x58, 0x57, 0x1c, 0xfc, 0xda, 0xec, 0x75, 0x3c, - 0x30, 0x54, 0x1e, 0x57, 0xc8, 0x3a, 0x63, 0x69, 0xe0, 0xd7, 0xdb, 0xbd, 0x0e, 0xf5, 0x9d, 0xd7, - 0xae, 0x90, 0xf2, 0x9e, 0x9d, 0x2e, 0x17, 0x22, 0x69, 0x8e, 0x5c, 0x30, 0xfc, 0x67, 0x22, 0x5d, - 0xfa, 0x36, 0x5c, 0x1e, 0x50, 0x76, 0x92, 0x1e, 0xcf, 0xbf, 0x48, 0xc3, 0xb5, 0xa8, 0xf8, 0xa4, - 0x21, 0xce, 0x57, 0xbd, 0x41, 0x6b, 0x30, 0xdf, 0x31, 0xcc, 0x37, 0x5b, 0xbd, 0x9c, 0xeb, 0x18, - 0xa6, 0x4f, 0x8b, 0xeb, 0x1a, 0x33, 0xbf, 0xd0, 0xae, 0xa1, 0xc2, 0x52, 0x5c, 0xdb, 0x25, 0xd9, - 0x3f, 0xbe, 0x2b, 0xc0, 0x5c, 0xd2, 0xcb, 0x72, 0x6f, 0x16, 0x05, 0x27, 0x35, 0x61, 0xfe, 0x17, - 0xb0, 0x8e, 0xf7, 0xbb, 0x02, 0xa0, 0xa6, 0xdd, 0x33, 0x09, 0xa8, 0x7d, 0x66, 0xb5, 0x92, 0xac, - 0xe6, 0x25, 0x98, 0x36, 0x4c, 0x1d, 0x9f, 0xd0, 0x6a, 0x66, 0x64, 0xf6, 0x10, 0xd9, 0x4a, 0x4c, - 0x4f, 0xb4, 0x95, 0x28, 0x7d, 0x06, 0x8b, 0x91, 0x22, 0x26, 0x59, 0xff, 0x3f, 0x4d, 0xc1, 0x22, - 0xaf, 0x48, 0xe2, 0x2b, 0x98, 0x5f, 0x87, 0xe9, 0x36, 0x91, 0x39, 0xa6, 0x9d, 0xe9, 0x3b, 0xbd, - 0x76, 0xa6, 0x99, 0xd1, 0xaf, 0x00, 0x74, 0x6d, 0x7c, 0xa4, 0x30, 0xd6, 0xf4, 0x44, 0xac, 0x39, - 0xc2, 0x41, 0x09, 0xe8, 0xfb, 0x02, 0x14, 0xc9, 0x80, 0xee, 0xda, 0x56, 0xd7, 0x72, 0x88, 0xcf, - 0xe2, 0x4c, 0x06, 0x73, 0x5e, 0x9c, 0x9d, 0x2e, 0xcf, 0x6f, 0x19, 0xe6, 0x0e, 0x67, 0x6c, 0x36, - 0x26, 0x0e, 0xf0, 0xf7, 0x8e, 0x39, 0x94, 0x2b, 0x6d, 0x4b, 0x3b, 0x0c, 0x36, 0xc7, 0x88, 0x65, - 0xf1, 0xc5, 0x39, 0xd2, 0x4f, 0x04, 0xb8, 0xf4, 0x0b, 0x5b, 0x2e, 0xfe, 0xff, 0xa1, 0x6c, 0xe9, - 0x25, 0x88, 0xf4, 0x47, 0xdd, 0xdc, 0xb7, 0x92, 0x5c, 0xb8, 0xff, 0xdf, 0x02, 0x2c, 0x84, 0x04, - 0x27, 0xe9, 0xe0, 0xbc, 0xa9, 0x9e, 0xe6, 0x59, 0x38, 0x8c, 0x3b, 0x99, 0xaa, 0xe4, 0x39, 0x9e, - 0x9d, 0x75, 0xca, 0x32, 0xcc, 0x61, 0x62, 0xc5, 0xe8, 0x12, 0xef, 0x1e, 0x3b, 0x64, 0x32, 0xb0, - 0xa2, 0x9f, 0xf7, 0x33, 0xac, 0xf5, 0xa5, 0x5f, 0x23, 0x1e, 0x56, 0x78, 0x50, 0x26, 0x39, 0xe4, - 0xff, 0x69, 0x0a, 0xae, 0x54, 0xd8, 0x16, 0xb8, 0x17, 0x13, 0x92, 0x64, 0x47, 0x2c, 0xc1, 0xec, - 0x11, 0xb6, 0x1d, 0xc3, 0x62, 0xb3, 0xfd, 0xbc, 0xec, 0x3d, 0xa2, 0x25, 0xc8, 0x3a, 0xa6, 0xda, - 0x75, 0x0e, 0x2c, 0x6f, 0x3b, 0xd1, 0x7f, 0xf6, 0xe3, 0x57, 0xa6, 0xdf, 0x3c, 0x7e, 0x65, 0x66, - 0x7c, 0xfc, 0xca, 0xec, 0x97, 0x88, 0x5f, 0xe1, 0x7b, 0x77, 0xff, 0x4e, 0x80, 0xab, 0x43, 0x9a, - 0x4b, 0xb2, 0x73, 0x7e, 0x07, 0xf2, 0x1a, 0x17, 0x4c, 0xe6, 0x07, 0xb6, 0x31, 0x59, 0x27, 0xd9, - 0xde, 0x10, 0xfa, 0x9c, 0x9d, 0x2e, 0x83, 0x57, 0xd4, 0xfa, 0x3a, 0x57, 0x0e, 0xf9, 0xad, 0x4b, - 0xff, 0x0d, 0xa0, 0x58, 0x3d, 0x61, 0x8b, 0xf2, 0x0d, 0xe6, 0x95, 0xa0, 0x27, 0x90, 0xed, 0xda, - 0xd6, 0x91, 0xe1, 0x55, 0xa3, 0x10, 0x09, 0x5e, 0xf0, 0xaa, 0x31, 0xc0, 0xb5, 0xc3, 0x39, 0x64, - 0x9f, 0x17, 0x35, 0x21, 0xf7, 0xcc, 0xd2, 0xd4, 0xf6, 0x13, 0xa3, 0xed, 0x0d, 0xb4, 0xf7, 0xcf, - 0x17, 0x54, 0xf6, 0x79, 0x76, 0x54, 0xf7, 0xc0, 0x6b, 0x04, 0x9f, 0x88, 0xea, 0x90, 0xad, 0xb9, - 0x6e, 0x97, 0x24, 0xf2, 0xf1, 0x77, 0x77, 0x02, 0xa1, 0x84, 0xc5, 0x8b, 0xb8, 0xf5, 0xd8, 0x51, - 0x13, 0x16, 0x9e, 0xd2, 0xf3, 0x63, 0x95, 0xb6, 0xd5, 0xd3, 0x2b, 0x96, 0xb9, 0x6f, 0xb4, 0xf8, - 0x34, 0x71, 0x67, 0x02, 0x99, 0x4f, 0x2b, 0x0d, 0x79, 0x58, 0x00, 0x5a, 0x85, 0x6c, 0xe3, 0x31, - 0x17, 0xc6, 0xdc, 0xc8, 0xdb, 0x13, 0x08, 0x6b, 0x3c, 0x96, 0x7d, 0x36, 0xb4, 0x01, 0xf9, 0xd5, - 0xcf, 0x7b, 0x36, 0xe6, 0x52, 0x66, 0x46, 0x46, 0x4e, 0x0c, 0x4a, 0xa1, 0x5c, 0x72, 0x98, 0x19, - 0x7d, 0x1b, 0x8a, 0x44, 0x6f, 0x4d, 0x75, 0xaf, 0xed, 0xc9, 0xcb, 0x52, 0x79, 0x5f, 0x9b, 0x40, - 0x9e, 0xcf, 0xe9, 0x6d, 0x09, 0x0c, 0x88, 0x5a, 0x92, 0x61, 0x3e, 0xd2, 0x5e, 0x08, 0x41, 0xa6, - 0x4b, 0x9a, 0x46, 0xa0, 0x61, 0x48, 0xf4, 0x37, 0x7a, 0x0f, 0x66, 0x4d, 0x4b, 0xc7, 0x5e, 0x67, - 0x9e, 0x5f, 0xbb, 0x74, 0x76, 0xba, 0x3c, 0xb3, 0x6d, 0xe9, 0xcc, 0xd7, 0xe1, 0xbf, 0xe4, 0x19, - 0x92, 0xa9, 0xae, 0x2f, 0xdd, 0x80, 0x0c, 0x69, 0x22, 0x62, 0x43, 0xf6, 0x54, 0x07, 0xef, 0xda, - 0x06, 0x97, 0xe6, 0x3d, 0x2e, 0xfd, 0xfd, 0x14, 0xa4, 0x1a, 0x8f, 0x89, 0x37, 0xbf, 0xd7, 0xd3, - 0x0e, 0xb1, 0xcb, 0xd3, 0xf9, 0x13, 0xf5, 0xf2, 0x6d, 0xbc, 0x6f, 0x30, 0xa7, 0x2b, 0x27, 0xf3, - 0x27, 0xf4, 0x0e, 0x80, 0xaa, 0x69, 0xd8, 0x71, 0x14, 0xef, 0x08, 0x60, 0x4e, 0xce, 0x31, 0xca, - 0x26, 0xee, 0x13, 0x36, 0x07, 0x6b, 0x36, 0x76, 0xbd, 0x18, 0x2a, 0xf6, 0x44, 0xd8, 0x5c, 0xdc, - 0xe9, 0x2a, 0xae, 0x75, 0x88, 0x4d, 0xda, 0xa4, 0x39, 0x62, 0x15, 0x3a, 0xdd, 0x26, 0x21, 0x10, - 0x83, 0x86, 0x4d, 0x3d, 0xb0, 0x3e, 0x39, 0xd9, 0x7f, 0x26, 0x22, 0x6d, 0xdc, 0x32, 0xf8, 0x01, - 0xba, 0x9c, 0xcc, 0x9f, 0x88, 0x96, 0xd4, 0x9e, 0x7b, 0x40, 0x5b, 0x22, 0x27, 0xd3, 0xdf, 0xe8, - 0x0e, 0x14, 0x59, 0xd8, 0xa5, 0x82, 0x4d, 0x4d, 0xa1, 0x76, 0x30, 0x47, 0x93, 0xe7, 0x19, 0xb9, - 0x6a, 0x6a, 0xc4, 0xea, 0xa1, 0xc7, 0xc0, 0x09, 0xca, 0x61, 0xc7, 0x21, 0x3a, 0x05, 0x92, 0x6b, - 0xad, 0x78, 0x76, 0xba, 0x9c, 0x6f, 0xd0, 0x84, 0xcd, 0xad, 0x06, 0x99, 0x4b, 0x58, 0xae, 0xcd, - 0x8e, 0x53, 0xd7, 0x97, 0xfe, 0xa6, 0x00, 0xe9, 0xa7, 0x95, 0xc6, 0x85, 0x55, 0xe6, 0x15, 0x34, - 0x1d, 0x2a, 0xe8, 0x5d, 0x28, 0xee, 0x19, 0xed, 0xb6, 0x61, 0xb6, 0x88, 0x7f, 0xf5, 0x1d, 0xac, - 0x79, 0x0a, 0x2b, 0x70, 0xf2, 0x0e, 0xa3, 0xa2, 0x1b, 0x90, 0xd7, 0x6c, 0xac, 0x63, 0xd3, 0x35, - 0xd4, 0xb6, 0xc3, 0x35, 0x17, 0x26, 0x2d, 0xfd, 0x65, 0x01, 0xa6, 0x69, 0x67, 0x45, 0x6f, 0x43, - 0x4e, 0xb3, 0x4c, 0x57, 0x35, 0x4c, 0x6e, 0x75, 0x72, 0x72, 0x40, 0x18, 0x59, 0xbc, 0x9b, 0x30, - 0xa7, 0x6a, 0x9a, 0xd5, 0x33, 0x5d, 0xc5, 0x54, 0x3b, 0x98, 0x17, 0x33, 0xcf, 0x69, 0xdb, 0x6a, - 0x07, 0xa3, 0x65, 0xf0, 0x1e, 0xfd, 0x93, 0x9d, 0x39, 0x19, 0x38, 0x69, 0x13, 0xf7, 0x97, 0x30, - 0xe4, 0xfc, 0x5e, 0x4d, 0xea, 0xdb, 0x73, 0xfc, 0x12, 0xd0, 0xdf, 0xe8, 0x7d, 0xb8, 0xf4, 0xba, - 0xa7, 0xb6, 0x8d, 0x7d, 0xba, 0xf8, 0x45, 0xa3, 0xd4, 0xe9, 0xcb, 0x58, 0x51, 0x90, 0x9f, 0x46, - 0x25, 0xd0, 0x77, 0x7a, 0x83, 0x20, 0x1d, 0x0c, 0x02, 0x16, 0xb2, 0x23, 0xf5, 0x61, 0x41, 0xc6, - 0xae, 0xdd, 0x6f, 0xb2, 0xc3, 0xae, 0xd5, 0x23, 0x6c, 0xba, 0xa4, 0xee, 0x56, 0x17, 0xb3, 0x20, - 0x11, 0xaf, 0xee, 0x3e, 0x01, 0xdd, 0x86, 0x82, 0xea, 0x92, 0xee, 0xe6, 0x2a, 0x66, 0xaf, 0xb3, - 0x87, 0x6d, 0x16, 0x0a, 0x20, 0xcf, 0x73, 0xea, 0x36, 0x25, 0xf2, 0x13, 0x19, 0x76, 0x5f, 0xa1, - 0xeb, 0x44, 0xfc, 0xd5, 0x40, 0x49, 0x55, 0x42, 0x91, 0xfe, 0x40, 0x80, 0x05, 0x16, 0xc7, 0xc4, - 0x22, 0x56, 0x93, 0x9b, 0xec, 0x3f, 0x84, 0x9c, 0xae, 0xba, 0x2a, 0x3b, 0x65, 0x9a, 0x1a, 0x7b, - 0xca, 0xd4, 0x3f, 0xf5, 0xa0, 0xba, 0x2a, 0x3d, 0x69, 0x8a, 0x20, 0x43, 0x7e, 0xb3, 0x03, 0xb9, - 0x32, 0xfd, 0x2d, 0x7d, 0x0a, 0x28, 0x5c, 0xd0, 0x24, 0xdd, 0x9e, 0xfb, 0x70, 0x99, 0x34, 0x76, - 0xd5, 0xd4, 0xec, 0x7e, 0x97, 0xa8, 0xf7, 0x39, 0xfd, 0xeb, 0x20, 0x31, 0xb4, 0x59, 0x45, 0xf7, - 0xa8, 0xa4, 0x1f, 0xcf, 0xc0, 0x7c, 0xf5, 0xa4, 0x6b, 0xd9, 0x89, 0x2e, 0x6d, 0xad, 0xc1, 0x2c, - 0x47, 0xff, 0x63, 0xf6, 0xa3, 0x07, 0xcc, 0xb0, 0xb7, 0x19, 0xcf, 0x19, 0xd1, 0x1a, 0x00, 0x8b, - 0x2a, 0xa5, 0xc1, 0x48, 0xe9, 0x0b, 0x6c, 0x9f, 0x51, 0x36, 0x7a, 0xe2, 0x62, 0x1b, 0xf2, 0x9d, - 0x23, 0x4d, 0x53, 0xf6, 0x8d, 0xb6, 0xcb, 0x83, 0xf3, 0xe2, 0xe3, 0xc8, 0xb7, 0x5e, 0x56, 0x2a, - 0x4f, 0x68, 0x26, 0x16, 0xd4, 0x16, 0x3c, 0xcb, 0x40, 0x24, 0xb0, 0xdf, 0xe8, 0x6b, 0xc0, 0x4f, - 0xff, 0x28, 0x8e, 0x77, 0x96, 0x6f, 0x6d, 0xfe, 0xec, 0x74, 0x39, 0x27, 0x53, 0x6a, 0xa3, 0xd1, - 0x94, 0x73, 0x2c, 0x43, 0xc3, 0x71, 0x2f, 0x72, 0xde, 0x63, 0x76, 0xf2, 0xf3, 0x1e, 0x7f, 0x4d, - 0x80, 0x2b, 0x5c, 0x47, 0xca, 0x1e, 0x8d, 0x71, 0x57, 0xdb, 0x86, 0xdb, 0x57, 0x0e, 0x8f, 0x4a, - 0x59, 0xea, 0xf7, 0xfd, 0x72, 0xac, 0xae, 0x43, 0x4d, 0x5c, 0xf6, 0x34, 0xde, 0x7f, 0xc6, 0x99, - 0x37, 0x8f, 0xaa, 0xa6, 0x6b, 0xf7, 0xd7, 0xae, 0x9e, 0x9d, 0x2e, 0x2f, 0x0e, 0xa7, 0xbe, 0x94, - 0x17, 0x9d, 0x61, 0x16, 0x54, 0x03, 0xc0, 0x7e, 0x17, 0xa3, 0x66, 0x3c, 0x7e, 0xfe, 0x8e, 0xed, - 0x8b, 0x72, 0x88, 0x17, 0xdd, 0x03, 0x91, 0x9f, 0xaf, 0xd9, 0x37, 0xda, 0x58, 0x71, 0x8c, 0xcf, - 0x31, 0x35, 0xf8, 0x69, 0xb9, 0xc0, 0xe8, 0x44, 0x44, 0xc3, 0xf8, 0x1c, 0xa3, 0x87, 0x70, 0x39, - 0x68, 0x01, 0x65, 0x0f, 0xb7, 0xad, 0x63, 0x96, 0x3d, 0x4f, 0xb3, 0x23, 0x5f, 0xfb, 0x6b, 0x24, - 0x89, 0xb0, 0x2c, 0x7d, 0x07, 0x4a, 0xa3, 0x2a, 0x1c, 0x1e, 0x10, 0x39, 0xb6, 0x69, 0xfb, 0x41, - 0x74, 0xc5, 0x66, 0x82, 0x8e, 0xcb, 0x57, 0x6d, 0x3e, 0x4c, 0x7d, 0x20, 0x48, 0x7f, 0x2f, 0x05, - 0xf3, 0x6b, 0xbd, 0xf6, 0xe1, 0xf3, 0x6e, 0x83, 0xdd, 0x4d, 0x80, 0xde, 0xf2, 0xcc, 0x06, 0x29, - 0xa4, 0xc0, 0xce, 0xd9, 0x51, 0xbb, 0x40, 0x6a, 0x73, 0x17, 0x8a, 0xa1, 0x80, 0x18, 0x1e, 0xf6, - 0x4f, 0xab, 0x1d, 0x90, 0x69, 0x64, 0xfe, 0x07, 0x50, 0x0a, 0x65, 0xa4, 0xcb, 0x2b, 0x0a, 0x36, - 0x5d, 0xdb, 0xc0, 0x6c, 0x89, 0x30, 0x2d, 0x87, 0xa2, 0x76, 0xea, 0x24, 0xb9, 0xca, 0x52, 0x51, - 0x13, 0xe6, 0x48, 0xc6, 0xbe, 0x42, 0xa7, 0x02, 0x6f, 0x09, 0xf7, 0x61, 0x4c, 0xb5, 0x22, 0xe5, - 0x2e, 0x53, 0xfd, 0x54, 0x28, 0x0f, 0xfd, 0x29, 0xe7, 0x71, 0x40, 0x59, 0xfa, 0x04, 0xc4, 0xc1, - 0x0c, 0x61, 0x5d, 0x66, 0x98, 0x2e, 0x2f, 0x85, 0x75, 0x99, 0x0e, 0xe9, 0x69, 0x23, 0x93, 0xcd, - 0x88, 0xd3, 0xd2, 0x4f, 0xd2, 0x50, 0xf0, 0x7a, 0x66, 0x92, 0xd8, 0x62, 0x0d, 0xa6, 0x49, 0x3f, - 0xf2, 0x62, 0x4c, 0xee, 0x8c, 0x19, 0x10, 0x3c, 0xd0, 0x9c, 0xf4, 0x2f, 0x0f, 0x06, 0x53, 0xd6, - 0x24, 0xcc, 0xcf, 0xd2, 0x7f, 0x17, 0x20, 0x43, 0xdd, 0xf9, 0x87, 0x90, 0xa1, 0xd3, 0x86, 0x30, - 0xc9, 0xb4, 0x41, 0xb3, 0xfa, 0xb3, 0x6b, 0x2a, 0xe4, 0x62, 0xae, 0xd1, 0x20, 0x27, 0xcb, 0x76, - 0xb1, 0xce, 0xdd, 0xe5, 0x1b, 0xe7, 0xb5, 0xa3, 0x37, 0x15, 0x79, 0x7c, 0xe8, 0x1a, 0xa4, 0x89, - 0xed, 0x9a, 0x65, 0xf1, 0x0a, 0x67, 0xa7, 0xcb, 0x69, 0x62, 0xb5, 0x08, 0x0d, 0xad, 0x40, 0x3e, - 0x6a, 0x4d, 0x88, 0xc7, 0x45, 0xcd, 0x61, 0xc8, 0x12, 0x40, 0xdb, 0x1f, 0x42, 0x0c, 0x2a, 0xb2, - 0xb6, 0xe4, 0x91, 0x0a, 0xbf, 0x29, 0xf0, 0xc0, 0xcc, 0x86, 0x46, 0x26, 0x6e, 0x3b, 0xc9, 0x49, - 0xe5, 0x3e, 0x88, 0xb6, 0x6a, 0xea, 0x56, 0xc7, 0xf8, 0x1c, 0xb3, 0xa5, 0x09, 0x87, 0xef, 0xd9, - 0x14, 0x7d, 0x3a, 0x5d, 0x43, 0x70, 0xa4, 0xff, 0x2a, 0xf0, 0x20, 0x4e, 0xbf, 0x18, 0xc9, 0xee, - 0xac, 0xe7, 0xf9, 0xba, 0xa6, 0xb9, 0x6f, 0x79, 0x31, 0x28, 0x6f, 0x8f, 0x8a, 0xb8, 0xaa, 0x9b, - 0xfb, 0x96, 0xb7, 0x47, 0x68, 0x7b, 0x04, 0x67, 0xe9, 0x57, 0x61, 0x9a, 0x26, 0xbf, 0x41, 0xdf, - 0xf0, 0x03, 0x87, 0x53, 0x62, 0x5a, 0xfa, 0x93, 0x14, 0xbc, 0x4b, 0xab, 0xfa, 0x12, 0xdb, 0xc6, - 0x7e, 0x7f, 0xc7, 0xb6, 0x5c, 0xac, 0xb9, 0x58, 0x0f, 0x96, 0xe6, 0x12, 0x6c, 0x02, 0x1d, 0x72, - 0x7c, 0x53, 0xd3, 0xd0, 0xf9, 0xf5, 0x21, 0x4f, 0xbf, 0x1c, 0x64, 0xcf, 0xb2, 0xcd, 0xd0, 0xfa, - 0xba, 0x9c, 0x65, 0x92, 0xeb, 0x3a, 0x5a, 0x85, 0x5c, 0xd7, 0xab, 0xc6, 0x85, 0xe2, 0x66, 0x7c, - 0x2e, 0xb4, 0x09, 0x45, 0x5e, 0x50, 0xb5, 0x6d, 0x1c, 0x61, 0x45, 0x75, 0x2f, 0x32, 0x84, 0xe7, - 0x19, 0xef, 0x2a, 0x61, 0x5d, 0x75, 0xa5, 0xbf, 0x91, 0x81, 0xdb, 0xe7, 0xa8, 0x38, 0xc9, 0xee, - 0xb5, 0x04, 0xd9, 0x23, 0xf2, 0x22, 0x83, 0xd7, 0x3e, 0x2b, 0xfb, 0xcf, 0x68, 0x2f, 0x32, 0x0f, - 0xec, 0xab, 0x46, 0x9b, 0xcc, 0x1b, 0x2c, 0x52, 0x71, 0x74, 0x2c, 0x54, 0x7c, 0xe4, 0x5f, 0x68, - 0xc6, 0x78, 0x42, 0x05, 0xd1, 0x6c, 0x0e, 0xfa, 0xae, 0x00, 0x4b, 0xec, 0x85, 0x2c, 0x5c, 0x6e, - 0xe0, 0x35, 0x19, 0xfa, 0x9a, 0xf5, 0x98, 0xd7, 0x4c, 0xa4, 0xa3, 0x72, 0xe8, 0x5d, 0xbc, 0x20, - 0xa5, 0xf0, 0xdb, 0xc2, 0x45, 0x59, 0xfa, 0x6d, 0x01, 0xf2, 0x21, 0x02, 0xba, 0x33, 0x74, 0x38, - 0x29, 0x7f, 0x16, 0x77, 0x22, 0xe9, 0xf6, 0xd0, 0x89, 0xa4, 0xb5, 0xec, 0x17, 0xa7, 0xcb, 0x19, - 0x99, 0x05, 0xbd, 0x7b, 0x67, 0x93, 0x6e, 0x06, 0x77, 0xe1, 0xa4, 0x07, 0x32, 0x79, 0x97, 0xe1, - 0x50, 0x6c, 0xab, 0x7a, 0x7b, 0x69, 0x14, 0xdb, 0x92, 0x27, 0xe9, 0x07, 0x29, 0x58, 0x58, 0xd5, - 0xf5, 0x46, 0x83, 0xe2, 0xa1, 0x24, 0xc7, 0x98, 0x87, 0x15, 0x52, 0x01, 0x56, 0x40, 0xef, 0x01, - 0xd2, 0x0d, 0x87, 0xdd, 0x29, 0xe1, 0x1c, 0xa8, 0xba, 0x75, 0x1c, 0x6c, 0x99, 0x2f, 0x78, 0x29, - 0x0d, 0x2f, 0x01, 0x35, 0x80, 0x3a, 0xad, 0x8a, 0xe3, 0xaa, 0xfe, 0x96, 0xc0, 0xed, 0x89, 0x8e, - 0xe6, 0x30, 0x6f, 0xd6, 0x7f, 0x94, 0x73, 0x44, 0x0e, 0xfd, 0x49, 0x7c, 0x34, 0x83, 0x34, 0x8a, - 0xab, 0xa8, 0x8e, 0x77, 0xa8, 0x84, 0xdd, 0x66, 0x51, 0x60, 0xf4, 0x55, 0x87, 0x9d, 0x15, 0x61, - 0xb1, 0xe8, 0x81, 0x6a, 0x92, 0x44, 0x36, 0x7f, 0x47, 0x80, 0x82, 0x8c, 0xf7, 0x6d, 0xec, 0x24, - 0x8a, 0xed, 0x9e, 0xc0, 0x9c, 0xcd, 0xa4, 0x2a, 0xfb, 0xb6, 0xd5, 0xb9, 0x88, 0xad, 0xc8, 0x73, - 0xc6, 0x27, 0xb6, 0xd5, 0xe1, 0x26, 0xf9, 0x25, 0x14, 0xfd, 0x32, 0x26, 0x59, 0xf9, 0x3f, 0xa0, - 0xc7, 0x4e, 0x99, 0xe0, 0xa4, 0xf7, 0xae, 0x93, 0xd5, 0x00, 0x5d, 0xd4, 0x0f, 0x17, 0x34, 0x49, - 0x35, 0xfc, 0x17, 0x01, 0x0a, 0x8d, 0xde, 0x1e, 0xbb, 0x2b, 0x29, 0x39, 0x0d, 0x54, 0x21, 0xd7, - 0xc6, 0xfb, 0xae, 0xf2, 0x46, 0x51, 0xd4, 0x59, 0xc2, 0x4a, 0x63, 0xc8, 0x9f, 0x02, 0xd8, 0xf4, - 0xdc, 0x15, 0x95, 0x93, 0xbe, 0xa0, 0x9c, 0x1c, 0xe5, 0x25, 0x64, 0x32, 0xeb, 0x14, 0xfd, 0x6a, - 0x26, 0x39, 0xbf, 0xbc, 0x8a, 0x58, 0x87, 0xf4, 0x45, 0xac, 0xc3, 0x02, 0xdf, 0xae, 0x8f, 0xb7, - 0x10, 0x65, 0x58, 0xa4, 0x6e, 0x99, 0xa2, 0x76, 0xbb, 0x6d, 0xc3, 0xc3, 0x29, 0xd4, 0xfe, 0x64, - 0xe4, 0x05, 0x9a, 0xb4, 0xca, 0x52, 0x28, 0x42, 0x41, 0xbf, 0x25, 0xc0, 0xdc, 0xbe, 0x8d, 0xf1, - 0xe7, 0x58, 0xa1, 0x26, 0x79, 0xb2, 0x78, 0x84, 0x75, 0x52, 0x86, 0x2f, 0xbd, 0x5f, 0x99, 0x67, - 0x2f, 0x6e, 0x90, 0xf7, 0xa2, 0x6d, 0x10, 0xb5, 0x36, 0xdb, 0x41, 0xf5, 0x63, 0x23, 0x66, 0x26, - 0x1f, 0x00, 0x45, 0xc6, 0x1c, 0x84, 0x47, 0xbc, 0x20, 0x83, 0x49, 0xd5, 0x15, 0x7e, 0x3f, 0x1d, - 0x75, 0xb6, 0xa3, 0xb1, 0x11, 0xe1, 0xf3, 0xe7, 0xa1, 0x6b, 0xed, 0xca, 0x32, 0x56, 0x75, 0xee, - 0xb9, 0x93, 0x71, 0xe5, 0x3f, 0xf0, 0x71, 0xf5, 0x0a, 0x16, 0x68, 0xbf, 0x49, 0xfa, 0x18, 0xa9, - 0xf4, 0x0f, 0xd3, 0x80, 0xc2, 0x92, 0x7f, 0x71, 0xfd, 0x2d, 0x95, 0x5c, 0x7f, 0xdb, 0x00, 0x29, - 0xe4, 0x0c, 0xb5, 0x55, 0xc7, 0x55, 0x58, 0x10, 0x9e, 0xa3, 0x74, 0xb1, 0xad, 0x38, 0x58, 0xb3, - 0xf8, 0x4d, 0x42, 0x82, 0x7c, 0x3d, 0xc8, 0xf9, 0x4c, 0x75, 0xdc, 0x17, 0x2c, 0xdf, 0x0e, 0xb6, - 0x1b, 0x34, 0x17, 0x7a, 0x0c, 0x57, 0x3a, 0xea, 0x49, 0x1c, 0xff, 0x34, 0xe5, 0x5f, 0xec, 0xa8, - 0x27, 0x43, 0x4c, 0x1f, 0xc2, 0x52, 0x3c, 0x93, 0xe2, 0x60, 0x6f, 0x93, 0xee, 0x4a, 0x0c, 0x63, - 0x03, 0xbb, 0x68, 0x15, 0x20, 0x00, 0x11, 0x7c, 0x8e, 0x9e, 0x04, 0x43, 0xe4, 0x7c, 0x0c, 0x21, - 0x7d, 0x4f, 0x80, 0xc2, 0x96, 0xd1, 0xb2, 0xd5, 0x44, 0xef, 0xe9, 0x41, 0x1f, 0x46, 0x77, 0x35, - 0xf3, 0x8f, 0x96, 0xe2, 0xa2, 0x56, 0x58, 0x0e, 0x6f, 0xd1, 0x8e, 0x33, 0x90, 0xa9, 0xcf, 0x2f, - 0x51, 0xa2, 0x97, 0xfc, 0x2c, 0xc1, 0x1c, 0x2f, 0xf7, 0xae, 0x69, 0x58, 0x26, 0x7a, 0x08, 0xe9, - 0x16, 0x5f, 0xdf, 0xcf, 0xc7, 0xae, 0xe8, 0x05, 0xb7, 0xe0, 0xd5, 0xa6, 0x64, 0x92, 0x97, 0xb0, - 0x74, 0x7b, 0x6e, 0x0c, 0xa0, 0x08, 0x02, 0xb9, 0xc3, 0x2c, 0xdd, 0x9e, 0x8b, 0x1a, 0x50, 0xd4, - 0x82, 0xab, 0xb7, 0x14, 0xc2, 0x9e, 0x1e, 0xb9, 0xcc, 0x15, 0x7b, 0x09, 0x5a, 0x6d, 0x4a, 0x2e, - 0x68, 0x91, 0x04, 0x54, 0x09, 0xdf, 0xf8, 0x94, 0x19, 0x8a, 0x12, 0x0b, 0xce, 0x0b, 0x47, 0x6f, - 0x9b, 0xaa, 0x4d, 0x85, 0x2e, 0x86, 0x42, 0x1f, 0xc2, 0x8c, 0x4e, 0xef, 0x16, 0xe2, 0x46, 0x33, - 0xae, 0xa1, 0x23, 0x57, 0x38, 0xd5, 0xa6, 0x64, 0xce, 0x81, 0x36, 0x60, 0x8e, 0xfd, 0x62, 0x2e, - 0x3d, 0x37, 0x75, 0xb7, 0x47, 0x4b, 0x08, 0x39, 0x1b, 0xb5, 0x29, 0x39, 0xaf, 0x07, 0x54, 0xf4, - 0x14, 0xf2, 0x5a, 0x1b, 0xab, 0x36, 0x17, 0x75, 0x67, 0xe4, 0xd1, 0xb6, 0xa1, 0xfb, 0x88, 0x6a, - 0x53, 0x32, 0x68, 0x3e, 0x91, 0x14, 0xca, 0xa6, 0xd7, 0xd2, 0x70, 0x49, 0xef, 0x8f, 0x2c, 0xd4, - 0xf0, 0x1d, 0x3f, 0x35, 0xea, 0x84, 0xf8, 0x54, 0xf4, 0x75, 0xc8, 0x38, 0x9a, 0x6a, 0x72, 0xbb, - 0x7b, 0x7d, 0xc4, 0xbd, 0x21, 0x01, 0x33, 0xcd, 0x8d, 0x3e, 0x62, 0x68, 0xc0, 0x3d, 0xf1, 0xd6, - 0x32, 0xe3, 0x74, 0x1a, 0x39, 0x9f, 0x4e, 0x74, 0x8a, 0x29, 0x81, 0xe8, 0x41, 0x25, 0xf0, 0x47, - 0xa1, 0x87, 0x46, 0xe9, 0xe2, 0x65, 0xbc, 0x1e, 0x86, 0x0e, 0xf9, 0xd6, 0xe8, 0x21, 0x78, 0x8f, - 0x88, 0xb6, 0x60, 0x9e, 0x09, 0xea, 0xb1, 0xf3, 0xa7, 0xa5, 0x95, 0x91, 0x5b, 0xb5, 0x31, 0x27, - 0x60, 0x6b, 0x53, 0xf2, 0x9c, 0x1a, 0x22, 0x07, 0xe5, 0xea, 0x60, 0xbb, 0xc5, 0x56, 0x49, 0xc7, - 0x94, 0x2b, 0x1c, 0xff, 0xe6, 0x97, 0x8b, 0x12, 0xd1, 0x6f, 0xc0, 0x25, 0x26, 0xc8, 0xe5, 0x61, - 0x3d, 0x3c, 0x3a, 0xe4, 0x9d, 0x91, 0xdb, 0xac, 0x23, 0xcf, 0x8c, 0xd6, 0xa6, 0x64, 0xa4, 0x0e, - 0x25, 0x22, 0x0d, 0x2e, 0xb3, 0x37, 0xf0, 0x43, 0x87, 0x36, 0x3f, 0x27, 0x57, 0xba, 0x45, 0x5f, - 0xf1, 0xde, 0xa8, 0x57, 0xc4, 0x9e, 0x85, 0xac, 0x4d, 0xc9, 0x8b, 0xea, 0x70, 0x6a, 0x50, 0x0d, - 0x9b, 0x1f, 0xef, 0xe2, 0xdd, 0xed, 0xbd, 0xf1, 0xd5, 0x88, 0x3b, 0x16, 0xe7, 0x57, 0x23, 0x92, - 0x48, 0x1a, 0xd0, 0x3f, 0xdc, 0x4e, 0x3b, 0xd3, 0xdc, 0xc8, 0x06, 0x8c, 0x39, 0x03, 0x46, 0x1a, - 0xf0, 0x20, 0x44, 0x46, 0x65, 0x48, 0xb5, 0xb4, 0xd2, 0xfc, 0xc8, 0xf9, 0xc1, 0x3f, 0xe7, 0x54, - 0x9b, 0x92, 0x53, 0x2d, 0x0d, 0x7d, 0x02, 0x59, 0x76, 0x68, 0xe5, 0xc4, 0x2c, 0x15, 0x46, 0x1a, - 0xdc, 0xe8, 0xd1, 0x9f, 0xda, 0x94, 0x4c, 0xcf, 0xc9, 0xf0, 0x8e, 0xcc, 0x0f, 0x24, 0x50, 0x11, - 0xe5, 0x31, 0x67, 0x55, 0x07, 0x8e, 0x85, 0x90, 0x0e, 0x63, 0xfb, 0x44, 0xb4, 0x03, 0x05, 0x9b, - 0x85, 0x6c, 0x7a, 0x01, 0xd6, 0xe2, 0xc8, 0x40, 0x86, 0xb8, 0x18, 0xeb, 0x1a, 0x5d, 0x87, 0x09, - 0xd1, 0x49, 0xdb, 0x45, 0x25, 0xf2, 0xb6, 0x5b, 0x18, 0xd9, 0x76, 0x23, 0xe3, 0x7d, 0x49, 0xdb, - 0xd9, 0x43, 0x89, 0xe8, 0x9b, 0x30, 0xcd, 0xc6, 0x09, 0xa2, 0x22, 0xe3, 0x62, 0x73, 0x06, 0x86, - 0x08, 0xcb, 0x4f, 0xac, 0x97, 0xcb, 0xe3, 0x16, 0x95, 0xb6, 0xd5, 0x2a, 0x2d, 0x8e, 0xb4, 0x5e, - 0xc3, 0x11, 0x98, 0xc4, 0x7a, 0xb9, 0x01, 0x95, 0x74, 0x20, 0x9b, 0xa5, 0xf0, 0x21, 0x76, 0x69, - 0x64, 0x07, 0x8a, 0x09, 0x67, 0xac, 0xd1, 0x13, 0x25, 0x01, 0xd9, 0x37, 0xac, 0x0e, 0x56, 0xa8, - 0x51, 0xbc, 0x3c, 0xde, 0xb0, 0x46, 0x2e, 0x73, 0xf2, 0x0d, 0x2b, 0xa3, 0xa2, 0x97, 0x20, 0xf2, - 0x1b, 0x45, 0x14, 0x2f, 0xbc, 0xa6, 0x74, 0x85, 0xca, 0xbb, 0x1f, 0x3b, 0x21, 0xc6, 0x45, 0x5e, - 0xd5, 0x88, 0xc3, 0x1c, 0x4d, 0x41, 0x9f, 0xc2, 0x02, 0x95, 0xa7, 0x68, 0xc1, 0x25, 0x30, 0xa5, - 0xd2, 0xd0, 0x95, 0x22, 0xa3, 0xef, 0x8b, 0xf1, 0x24, 0x8b, 0xda, 0x40, 0x12, 0x19, 0x0f, 0x86, - 0x69, 0xb8, 0x74, 0xee, 0x5e, 0x1a, 0x39, 0x1e, 0xa2, 0x17, 0x60, 0x92, 0xf1, 0x60, 0x30, 0x0a, - 0xe9, 0xc6, 0x03, 0x16, 0xef, 0xed, 0x91, 0xdd, 0x78, 0x84, 0xb1, 0x9b, 0x77, 0x23, 0x76, 0x6e, - 0x1d, 0x80, 0xc1, 0x24, 0xea, 0xf9, 0x5d, 0x1f, 0xe9, 0x00, 0x0c, 0x86, 0x1b, 0x12, 0x07, 0xa0, - 0xed, 0xd1, 0xc8, 0x38, 0xa5, 0x8b, 0x30, 0x0a, 0xbd, 0x9a, 0xa9, 0xb4, 0x3c, 0x72, 0x9c, 0x0e, - 0xed, 0x86, 0x93, 0x71, 0x7a, 0xec, 0x13, 0x89, 0x27, 0xc1, 0x36, 0x07, 0x4a, 0x37, 0x46, 0xcf, - 0x7a, 0xe1, 0xed, 0x43, 0x3a, 0xeb, 0x51, 0x02, 0x5a, 0x85, 0x1c, 0x71, 0x7e, 0xfb, 0xd4, 0x54, - 0xdc, 0x1c, 0x89, 0x75, 0x07, 0x0e, 0x34, 0xd5, 0xa6, 0xe4, 0xec, 0x6b, 0x4e, 0x22, 0xdd, 0x93, - 0x89, 0xe0, 0x46, 0xe2, 0xc1, 0xc8, 0xee, 0x39, 0x7c, 0x92, 0x85, 0x74, 0xcf, 0xd7, 0x01, 0x35, - 0x98, 0x3b, 0x1d, 0xb6, 0xec, 0x5f, 0x7a, 0x77, 0xfc, 0xdc, 0x19, 0xdd, 0xa4, 0xf0, 0xe7, 0x4e, - 0x4e, 0x66, 0x73, 0xa7, 0xae, 0x38, 0x0e, 0x0d, 0x87, 0x28, 0xdd, 0x1e, 0x33, 0x77, 0x0e, 0x2c, - 0x04, 0xb2, 0xb9, 0x53, 0x6f, 0x30, 0x4e, 0xe2, 0x46, 0xda, 0xde, 0x55, 0x3c, 0x1c, 0x06, 0xdd, - 0x1d, 0xe9, 0x46, 0xc6, 0xde, 0x15, 0x44, 0xdc, 0x48, 0x3b, 0x92, 0x80, 0x7e, 0x05, 0x66, 0xf9, - 0xc2, 0x4b, 0xe9, 0xde, 0x18, 0xc7, 0x3a, 0xbc, 0x56, 0x46, 0xfa, 0x35, 0xe7, 0x61, 0x56, 0x86, - 0x2d, 0xf8, 0x30, 0x2b, 0x7a, 0x7f, 0x8c, 0x95, 0x19, 0x5a, 0x73, 0x62, 0x56, 0x26, 0x20, 0x93, - 0xd2, 0x38, 0x6c, 0xb1, 0xa2, 0xf4, 0x4b, 0x23, 0x4b, 0x13, 0x5d, 0xb5, 0x21, 0xa5, 0xe1, 0x3c, - 0x74, 0xd6, 0xa1, 0x93, 0x3e, 0xd3, 0xce, 0xd7, 0x46, 0xcf, 0x3a, 0x83, 0xf0, 0xb7, 0xe6, 0x6d, - 0xab, 0x30, 0xad, 0xfc, 0x15, 0x01, 0x6e, 0xb0, 0x3e, 0x40, 0x17, 0x95, 0xfb, 0x8a, 0xbf, 0x27, - 0x10, 0xc2, 0xf6, 0x0f, 0xa9, 0xf8, 0x6f, 0x5e, 0x7c, 0x09, 0xdb, 0x7b, 0xe3, 0x3b, 0xea, 0xb8, - 0x7c, 0x44, 0x19, 0x1d, 0x86, 0x82, 0x4a, 0x8f, 0x46, 0x2a, 0x23, 0x8a, 0xdc, 0x88, 0x32, 0x38, - 0xcf, 0xda, 0x2c, 0xdf, 0x36, 0xf5, 0xcf, 0x89, 0x16, 0x45, 0x71, 0x23, 0x93, 0xbd, 0x2a, 0x96, - 0x36, 0x32, 0xd9, 0x6b, 0xe2, 0xd2, 0x46, 0x26, 0xfb, 0x96, 0xf8, 0xf6, 0x46, 0x26, 0x2b, 0x89, - 0xb7, 0xa4, 0x9f, 0x5f, 0x83, 0x79, 0x0f, 0x3e, 0x31, 0x68, 0xf4, 0x28, 0x0c, 0x8d, 0xae, 0x8f, - 0x82, 0x46, 0x1c, 0x70, 0x71, 0x6c, 0xf4, 0x28, 0x8c, 0x8d, 0xae, 0x8f, 0xc2, 0x46, 0x01, 0x0f, - 0x01, 0x47, 0xcd, 0x51, 0xe0, 0xe8, 0xfe, 0x04, 0xe0, 0xc8, 0x17, 0x35, 0x88, 0x8e, 0xd6, 0x87, - 0xd1, 0xd1, 0xbb, 0xe3, 0xd1, 0x91, 0x2f, 0x2a, 0x04, 0x8f, 0x3e, 0x1a, 0x80, 0x47, 0x37, 0xc7, - 0xc0, 0x23, 0x9f, 0xdf, 0xc3, 0x47, 0x9b, 0xb1, 0xf8, 0xe8, 0xce, 0x79, 0xf8, 0xc8, 0x97, 0x13, - 0x01, 0x48, 0xb5, 0x38, 0x80, 0x74, 0xfb, 0x1c, 0x80, 0xe4, 0x8b, 0x0a, 0x23, 0xa4, 0xcd, 0x58, - 0x84, 0x74, 0xe7, 0x3c, 0x84, 0x14, 0x14, 0x2b, 0x0c, 0x91, 0xbe, 0x11, 0x81, 0x48, 0xcb, 0x23, - 0x21, 0x92, 0xcf, 0xcd, 0x30, 0xd2, 0xc7, 0x83, 0x18, 0xe9, 0xe6, 0x18, 0x8c, 0x14, 0x28, 0x96, - 0x83, 0xa4, 0x5a, 0x1c, 0x48, 0xba, 0x7d, 0x0e, 0x48, 0x0a, 0x74, 0x11, 0x42, 0x49, 0xdb, 0xf1, - 0x28, 0xe9, 0xee, 0xb9, 0x28, 0xc9, 0x97, 0x16, 0x85, 0x49, 0xb5, 0x38, 0x98, 0x74, 0xfb, 0x1c, - 0x98, 0x34, 0x50, 0x32, 0x86, 0x93, 0xd4, 0xb1, 0x38, 0xe9, 0xbd, 0x09, 0x71, 0x92, 0x2f, 0x3a, - 0x0e, 0x28, 0xe9, 0xe3, 0x81, 0x52, 0x79, 0x52, 0xa0, 0xe4, 0xbf, 0x24, 0x16, 0x29, 0xa9, 0x63, - 0x91, 0xd2, 0x7b, 0x13, 0x22, 0xa5, 0x81, 0x8a, 0x44, 0xa1, 0xd2, 0x76, 0x3c, 0x54, 0xba, 0x7b, - 0x2e, 0x54, 0x0a, 0x5a, 0x31, 0x82, 0x95, 0x56, 0x42, 0x58, 0xe9, 0x9d, 0x11, 0x58, 0xc9, 0x67, - 0x25, 0x60, 0xe9, 0x5b, 0x43, 0x60, 0x49, 0x1a, 0x07, 0x96, 0x7c, 0x5e, 0x1f, 0x2d, 0xd5, 0xe2, - 0xd0, 0xd2, 0xed, 0x73, 0xd0, 0x52, 0xd0, 0x6f, 0x42, 0x70, 0xe9, 0xc5, 0x08, 0xb8, 0x74, 0xef, - 0x7c, 0xb8, 0xe4, 0xcb, 0x1b, 0xc0, 0x4b, 0xea, 0x58, 0xbc, 0xf4, 0xde, 0x84, 0x78, 0x29, 0x68, - 0xc1, 0x18, 0xc0, 0xf4, 0x41, 0x14, 0x30, 0xdd, 0x18, 0x0d, 0x98, 0x7c, 0x31, 0x1c, 0x31, 0x6d, - 0xc6, 0x22, 0xa6, 0x3b, 0xe7, 0x21, 0xa6, 0xc0, 0x9a, 0x85, 0x21, 0xd3, 0x76, 0x3c, 0x64, 0xba, - 0x7b, 0x2e, 0x64, 0x0a, 0x3a, 0x52, 0x04, 0x33, 0x6d, 0xc6, 0x62, 0xa6, 0x3b, 0xe7, 0x61, 0xa6, - 0x01, 0x53, 0xcb, 0x41, 0xd3, 0xab, 0x91, 0xa0, 0xe9, 0xc1, 0x24, 0xa0, 0xc9, 0x17, 0x3a, 0x84, - 0x9a, 0x3e, 0x1b, 0x8d, 0x9a, 0x7e, 0xe9, 0x02, 0xb7, 0x6c, 0xc6, 0xc2, 0xa6, 0x6f, 0x0d, 0xc1, - 0x26, 0x69, 0x1c, 0x6c, 0x0a, 0x46, 0x86, 0x87, 0x9b, 0xaa, 0x31, 0x28, 0xe7, 0xdd, 0xf1, 0x28, - 0x27, 0x98, 0xc8, 0x03, 0x98, 0x53, 0x8b, 0x83, 0x39, 0xb7, 0xcf, 0x81, 0x39, 0xc1, 0x00, 0x0b, - 0xe1, 0x9c, 0x8f, 0x06, 0x70, 0xce, 0xcd, 0x73, 0xa3, 0xc2, 0x42, 0x40, 0x67, 0x6d, 0x18, 0xe8, - 0xdc, 0x1a, 0x0b, 0x74, 0x7c, 0x09, 0x01, 0xd2, 0xd9, 0x8c, 0x45, 0x3a, 0x77, 0xce, 0x43, 0x3a, - 0x41, 0xa7, 0x0a, 0x43, 0x9d, 0xed, 0x78, 0xa8, 0x73, 0xf7, 0x5c, 0xa8, 0x33, 0x30, 0x01, 0x7a, - 0x58, 0xa7, 0x16, 0x87, 0x75, 0x6e, 0x9f, 0x83, 0x75, 0xc2, 0x13, 0xa0, 0x0f, 0x76, 0x9a, 0xa3, - 0xc0, 0xce, 0xfd, 0x09, 0xc0, 0x4e, 0xe0, 0x16, 0x0e, 0xa0, 0x9d, 0x4f, 0x06, 0xd1, 0x8e, 0x34, - 0x0e, 0xed, 0x04, 0xdd, 0xd1, 0x83, 0x3b, 0xdb, 0xf1, 0x70, 0xe7, 0xee, 0xb9, 0x70, 0x27, 0x6c, - 0x21, 0x42, 0x78, 0xe7, 0x93, 0x41, 0xbc, 0x23, 0x8d, 0xc3, 0x3b, 0x41, 0x79, 0x3c, 0xc0, 0x53, - 0x8b, 0x03, 0x3c, 0xb7, 0xcf, 0x01, 0x3c, 0xa1, 0x89, 0x23, 0x40, 0x3c, 0x7f, 0x75, 0x72, 0xc4, - 0xf3, 0xc1, 0x9b, 0x06, 0xed, 0x9c, 0x0f, 0x79, 0x3e, 0x19, 0x84, 0x3c, 0xd2, 0x38, 0xc8, 0x13, - 0xe8, 0xe3, 0xc2, 0x98, 0xe7, 0x6d, 0xf1, 0x1d, 0x8e, 0x7c, 0xfe, 0x6c, 0x06, 0x66, 0xf8, 0x57, - 0xa3, 0x22, 0x37, 0x2d, 0x09, 0x6f, 0x72, 0xd3, 0x12, 0x5a, 0x27, 0x1d, 0x8c, 0xba, 0x3e, 0xe7, - 0xdf, 0xcf, 0x37, 0x7c, 0x83, 0x1c, 0x67, 0x7d, 0x83, 0x23, 0xcf, 0xe8, 0x1b, 0x30, 0xdf, 0x73, - 0xb0, 0xad, 0x74, 0x6d, 0xc3, 0xb2, 0x0d, 0x97, 0x1d, 0xde, 0x10, 0xd6, 0xc4, 0x2f, 0x4e, 0x97, - 0xe7, 0x76, 0x1d, 0x6c, 0xef, 0x70, 0xba, 0x3c, 0xd7, 0x0b, 0x3d, 0x79, 0x1f, 0xca, 0x9a, 0x9e, - 0xfc, 0x43, 0x59, 0x2f, 0x40, 0xa4, 0xbb, 0xd2, 0xe1, 0xd9, 0x82, 0xdd, 0x6a, 0x14, 0x3f, 0xb1, - 0xa9, 0x7a, 0x68, 0x42, 0xa0, 0xb7, 0x1b, 0x15, 0xed, 0x28, 0x11, 0x35, 0x80, 0xde, 0x37, 0xa2, - 0x74, 0xad, 0xb6, 0xa1, 0xf5, 0xa9, 0x13, 0x10, 0xbd, 0xe1, 0x79, 0xec, 0x3d, 0xeb, 0xaf, 0x54, - 0xc3, 0xdd, 0xa1, 0x9c, 0x32, 0x1c, 0xfb, 0xbf, 0xd1, 0x43, 0xb8, 0xdc, 0x51, 0x4f, 0xe8, 0x39, - 0x0b, 0xc5, 0x9b, 0xd5, 0xe9, 0x65, 0x5f, 0xec, 0x93, 0x59, 0xa8, 0xa3, 0x9e, 0xd0, 0x4f, 0x79, - 0xb1, 0x24, 0xfa, 0x1d, 0x8e, 0x9b, 0x30, 0xc7, 0xe3, 0xc7, 0xd9, 0x67, 0x7a, 0x8a, 0x34, 0x27, - 0xff, 0x66, 0x03, 0xfb, 0x52, 0xcf, 0x6d, 0x28, 0xe8, 0x86, 0xe3, 0x1a, 0xa6, 0xe6, 0xf2, 0x5b, - 0x75, 0xd9, 0xbd, 0xb4, 0xf3, 0x1e, 0x95, 0x5d, 0x9d, 0xdb, 0x84, 0x05, 0xad, 0x6d, 0xf8, 0xbe, - 0x12, 0x9b, 0xbd, 0x16, 0x46, 0xf6, 0xe8, 0x0a, 0xcd, 0x3b, 0xb8, 0x47, 0x5b, 0xd4, 0xa2, 0x64, - 0x54, 0x81, 0x62, 0x4b, 0x75, 0xf1, 0xb1, 0xda, 0x57, 0xbc, 0x33, 0x62, 0x79, 0x7a, 0x2e, 0xf6, - 0xad, 0xb3, 0xd3, 0xe5, 0xf9, 0xa7, 0x2c, 0x69, 0xe8, 0xa8, 0xd8, 0x7c, 0x2b, 0x94, 0xa0, 0xa3, - 0xbb, 0x50, 0x54, 0x9d, 0xbe, 0xa9, 0xd1, 0x06, 0xc4, 0xa6, 0xd3, 0x73, 0xa8, 0xab, 0x9b, 0x95, - 0x0b, 0x94, 0x5c, 0xf1, 0xa8, 0xe8, 0x23, 0x58, 0xe2, 0x97, 0xe7, 0x1f, 0xab, 0xb6, 0xae, 0xd0, - 0x46, 0x0f, 0x86, 0x87, 0x48, 0x79, 0xae, 0xb2, 0xcb, 0xf2, 0x49, 0x06, 0xd2, 0xd2, 0xe1, 0x4b, - 0x69, 0xd9, 0xa5, 0xbb, 0x20, 0xe6, 0x37, 0x32, 0xd9, 0x39, 0x71, 0x7e, 0x23, 0x93, 0x2d, 0x88, - 0x45, 0xe9, 0xdf, 0x08, 0x50, 0x24, 0xb6, 0xc2, 0x71, 0x0c, 0xcb, 0xac, 0xf9, 0x91, 0x8a, 0x7e, - 0xaf, 0x15, 0xe8, 0x71, 0x1d, 0xff, 0x19, 0x2d, 0xd3, 0x63, 0x51, 0xc4, 0xbb, 0xf3, 0x3f, 0x99, - 0x91, 0x96, 0x81, 0x91, 0xe8, 0xd9, 0x8c, 0x55, 0x98, 0x71, 0xac, 0x9e, 0xad, 0x79, 0x17, 0xb9, - 0xdf, 0x1f, 0x61, 0x9c, 0x42, 0x2f, 0x2c, 0x37, 0x28, 0x83, 0xcc, 0x19, 0xa5, 0x32, 0xcc, 0x30, - 0x0a, 0xca, 0xc1, 0xf4, 0xf3, 0x66, 0xad, 0x2a, 0x8b, 0x53, 0x68, 0x0e, 0xb2, 0x4f, 0xe4, 0xe7, - 0x5b, 0x4a, 0xe3, 0xc5, 0x33, 0x51, 0x40, 0x79, 0x98, 0x95, 0x9f, 0x3f, 0x6f, 0x2a, 0x9b, 0x2f, - 0xc5, 0x94, 0xf4, 0xa7, 0x02, 0xcc, 0x45, 0xce, 0x05, 0x7d, 0x34, 0xb0, 0x37, 0x7d, 0x2d, 0x1e, - 0x79, 0xc4, 0xef, 0x93, 0xaf, 0x42, 0x96, 0x77, 0x4f, 0x2f, 0xd0, 0x7c, 0x79, 0xb4, 0xbf, 0x49, - 0x97, 0x66, 0xbc, 0x60, 0x21, 0x8f, 0x0d, 0x35, 0x40, 0x54, 0xbd, 0x2a, 0x2a, 0xbc, 0x24, 0xa3, - 0x43, 0x86, 0x06, 0xb4, 0xe1, 0x75, 0x36, 0x35, 0x4a, 0xfe, 0x30, 0xf3, 0xfd, 0x1f, 0x2e, 0x4f, - 0x49, 0x3f, 0xcf, 0xc0, 0x7c, 0xf4, 0x68, 0x51, 0x7d, 0xa0, 0xb2, 0x71, 0x73, 0x5f, 0x84, 0xa3, - 0x3c, 0xe6, 0x7b, 0x28, 0xb9, 0xe0, 0x13, 0x01, 0xac, 0xee, 0x37, 0xc6, 0x6c, 0xeb, 0x87, 0x2b, - 0x1f, 0x30, 0x2e, 0xfd, 0xfb, 0xb4, 0x6f, 0xc0, 0xcb, 0x30, 0xcd, 0x4e, 0x74, 0x09, 0x43, 0x87, - 0xcd, 0xa9, 0x09, 0x21, 0xbe, 0x19, 0x49, 0x97, 0x59, 0x36, 0x62, 0xf0, 0x9b, 0x6f, 0x74, 0xb5, - 0x5e, 0x30, 0x63, 0x5d, 0xfc, 0x4b, 0x83, 0x3d, 0x76, 0xb5, 0xe2, 0xff, 0xc3, 0x28, 0x25, 0xf2, - 0x3e, 0xf4, 0xeb, 0x50, 0xd4, 0xac, 0x76, 0x9b, 0x4d, 0xe9, 0xcc, 0x74, 0x0d, 0x5f, 0xb6, 0x42, - 0x8b, 0xc0, 0x3f, 0x2e, 0x59, 0xf6, 0x3f, 0x32, 0x59, 0x96, 0xf9, 0x47, 0x26, 0x43, 0x21, 0xe4, - 0x05, 0x5f, 0x18, 0xb3, 0x78, 0x03, 0xd1, 0xec, 0xb3, 0x6f, 0x12, 0xcd, 0xce, 0xce, 0x00, 0xf0, - 0x9e, 0xf7, 0x47, 0x02, 0x8f, 0x25, 0x7a, 0x66, 0x59, 0x87, 0x3d, 0x3f, 0xfe, 0x7c, 0x29, 0x7c, - 0x51, 0x62, 0x10, 0x68, 0x4b, 0x0f, 0x8a, 0xc4, 0x4d, 0x4d, 0xa9, 0x2f, 0x37, 0x35, 0xdd, 0x84, - 0xb9, 0xae, 0x8d, 0xf7, 0xb1, 0xab, 0x1d, 0x28, 0x66, 0xaf, 0xc3, 0x4f, 0xc9, 0xe4, 0x3d, 0xda, - 0x76, 0xaf, 0x83, 0xee, 0x83, 0xe8, 0x67, 0xe1, 0x80, 0xcd, 0xbb, 0xa5, 0xcb, 0xa3, 0x73, 0x78, - 0x27, 0xfd, 0x4f, 0x01, 0x16, 0x23, 0x75, 0xe2, 0x63, 0x6a, 0x03, 0xf2, 0xba, 0xef, 0x0c, 0x38, - 0x25, 0xe1, 0x82, 0x21, 0xd8, 0x61, 0x66, 0xa4, 0xc0, 0x15, 0xef, 0xb5, 0xf4, 0x5a, 0xfd, 0x40, - 0x6c, 0xea, 0x82, 0x62, 0x2f, 0x07, 0x72, 0xd6, 0x43, 0x2f, 0xf0, 0x07, 0x59, 0x7a, 0xa2, 0x41, - 0x26, 0xfd, 0x2f, 0x01, 0x44, 0xfa, 0x82, 0x27, 0x18, 0xeb, 0x89, 0x98, 0x4c, 0xef, 0xac, 0x43, - 0x6a, 0xf2, 0x73, 0x30, 0x91, 0x4f, 0x81, 0xa4, 0x07, 0x3e, 0x05, 0x12, 0x67, 0x3f, 0x33, 0x5f, - 0xd2, 0x7e, 0x4a, 0x3f, 0x14, 0xa0, 0xe0, 0x57, 0x9b, 0x7d, 0x03, 0x70, 0xcc, 0x25, 0x9f, 0x6f, - 0xf6, 0x9d, 0x3b, 0xef, 0x32, 0x92, 0x89, 0x3e, 0x4b, 0x18, 0xbe, 0x8c, 0x84, 0x7d, 0x9f, 0xed, - 0x6f, 0x79, 0xdd, 0x91, 0x14, 0xb1, 0x12, 0xdc, 0x02, 0xf1, 0x06, 0xe7, 0x8c, 0x64, 0xfa, 0xf9, - 0x54, 0xab, 0x7d, 0xc4, 0xee, 0x8f, 0x99, 0xc8, 0x96, 0x22, 0x1e, 0x96, 0x07, 0x7c, 0xbd, 0x48, - 0x6f, 0x36, 0xe8, 0x87, 0x55, 0xd9, 0x6f, 0x47, 0x7a, 0x12, 0x52, 0x20, 0xed, 0x51, 0x44, 0x4b, - 0x13, 0xd9, 0x77, 0x4f, 0x4b, 0xac, 0x03, 0xfe, 0x38, 0xdc, 0x12, 0xec, 0x14, 0xf1, 0x63, 0x48, - 0x1f, 0xa9, 0xed, 0x71, 0xa1, 0x64, 0x91, 0x96, 0x93, 0x49, 0x6e, 0xf4, 0x24, 0x72, 0x79, 0x46, - 0x6a, 0xf4, 0x62, 0xce, 0xb0, 0x4a, 0x23, 0x97, 0x6c, 0x7c, 0x33, 0x3a, 0x80, 0xc6, 0xbe, 0x3e, - 0x3c, 0x92, 0x3e, 0xcc, 0xfc, 0xe8, 0x87, 0xcb, 0x82, 0xf4, 0x31, 0x20, 0x19, 0x3b, 0xd8, 0x7d, - 0xd1, 0xb3, 0xec, 0xe0, 0x22, 0x92, 0xc1, 0x33, 0x0d, 0xd3, 0xf1, 0x67, 0x1a, 0xa4, 0xcb, 0xb0, - 0x18, 0xe1, 0x66, 0x16, 0x48, 0xfa, 0x26, 0x5c, 0x7b, 0x6a, 0x39, 0x8e, 0xd1, 0x25, 0x60, 0x93, - 0x0e, 0x75, 0x32, 0x5f, 0xf9, 0x36, 0x37, 0xdb, 0xa5, 0xf8, 0xde, 0x64, 0xb6, 0x29, 0x27, 0xfb, - 0xcf, 0xd2, 0xbf, 0x16, 0xe0, 0xea, 0x30, 0x27, 0xd3, 0x72, 0xdc, 0xb1, 0xc8, 0x59, 0xcd, 0x0a, - 0xee, 0xc9, 0x3b, 0xbf, 0xb7, 0x7a, 0xd9, 0x89, 0xdb, 0xca, 0xdf, 0xa9, 0x74, 0x54, 0x6a, 0x93, - 0xf8, 0xb1, 0xed, 0x02, 0x27, 0x6f, 0x31, 0x6a, 0x60, 0x9e, 0x32, 0x93, 0x99, 0xa7, 0x26, 0x14, - 0x37, 0x2c, 0xc3, 0x24, 0xde, 0xb1, 0x57, 0xdf, 0x55, 0x28, 0xec, 0x19, 0xa6, 0x6a, 0xf7, 0x15, - 0x2f, 0x82, 0x51, 0x38, 0x2f, 0x82, 0x51, 0x9e, 0x67, 0x1c, 0xfc, 0x51, 0xfa, 0xa9, 0x00, 0x62, - 0x20, 0x96, 0x9b, 0xf9, 0xaf, 0x01, 0x68, 0xed, 0x9e, 0xe3, 0x62, 0xdb, 0x6b, 0xa5, 0x39, 0x76, - 0x52, 0xa2, 0xc2, 0xa8, 0xf5, 0x75, 0x39, 0xc7, 0x33, 0xd4, 0x75, 0x74, 0x2b, 0x7a, 0x13, 0xc4, - 0xf4, 0x1a, 0x9c, 0x0d, 0xdd, 0xff, 0x40, 0x9a, 0xdd, 0x71, 0x2d, 0xdb, 0x47, 0x8a, 0xbc, 0xd9, - 0xbd, 0x3b, 0x72, 0xe8, 0x31, 0x68, 0x4c, 0x0f, 0x43, 0x15, 0x88, 0x0f, 0x72, 0x84, 0xfd, 0x2a, - 0x65, 0xce, 0xaf, 0x12, 0xe3, 0xf0, 0xaa, 0xf4, 0xcf, 0x05, 0x28, 0x56, 0x58, 0x6b, 0xf8, 0x2d, - 0x3c, 0xc6, 0xa2, 0xad, 0x43, 0xd6, 0x3d, 0x31, 0x95, 0x0e, 0xf6, 0x3f, 0xeb, 0x72, 0x81, 0x4b, - 0xec, 0x66, 0x5d, 0xf6, 0x48, 0xbf, 0x14, 0xc8, 0x3f, 0x53, 0xcd, 0x87, 0xcb, 0xb5, 0x32, 0xfb, - 0x8e, 0x75, 0xd9, 0xfb, 0x8e, 0x75, 0x79, 0x9d, 0x67, 0x60, 0x33, 0xc5, 0xf7, 0xff, 0xd3, 0xb2, - 0x20, 0xfb, 0x4c, 0xcc, 0x99, 0x78, 0xd0, 0x20, 0xbd, 0x7e, 0x68, 0xba, 0x47, 0x05, 0x80, 0xd0, - 0xf7, 0x7a, 0xf8, 0x97, 0x91, 0x57, 0xd7, 0x95, 0xdd, 0xed, 0xca, 0xf3, 0xad, 0xad, 0x7a, 0xb3, - 0x59, 0x5d, 0x17, 0x05, 0x24, 0xc2, 0x5c, 0xe4, 0x6b, 0x3f, 0x29, 0xf6, 0xad, 0xe4, 0x07, 0x7f, - 0x01, 0x20, 0xf8, 0x70, 0x18, 0x91, 0xb5, 0x59, 0xfd, 0x54, 0x79, 0xb9, 0xfa, 0x6c, 0xb7, 0xda, - 0x10, 0xa7, 0x10, 0x82, 0xc2, 0xda, 0x6a, 0xb3, 0x52, 0x53, 0xe4, 0x6a, 0x63, 0xe7, 0xf9, 0x76, - 0xa3, 0xea, 0x7d, 0x63, 0xf9, 0xc1, 0x3a, 0xcc, 0x85, 0xaf, 0xe6, 0x41, 0x8b, 0x50, 0xac, 0xd4, - 0xaa, 0x95, 0x4d, 0xe5, 0x65, 0x7d, 0x55, 0x79, 0xb1, 0x5b, 0xdd, 0xad, 0x8a, 0x53, 0xb4, 0x68, - 0x94, 0xf8, 0x64, 0xf7, 0x19, 0x41, 0x20, 0x45, 0xc8, 0xb3, 0x67, 0xfa, 0x65, 0x20, 0x31, 0xf5, - 0x60, 0x0b, 0xf2, 0xa1, 0x2b, 0x83, 0xc9, 0xeb, 0x76, 0x76, 0x1b, 0x35, 0xa5, 0x59, 0xdf, 0xaa, - 0x36, 0x9a, 0xab, 0x5b, 0x3b, 0x4c, 0x06, 0xa5, 0xad, 0xae, 0x3d, 0x97, 0x9b, 0xa2, 0xe0, 0x3f, - 0x37, 0x9f, 0xef, 0x56, 0x6a, 0x5e, 0x35, 0xa4, 0x4c, 0x36, 0x2d, 0xa6, 0x1f, 0x9c, 0xc0, 0xd5, - 0x11, 0xb7, 0xd4, 0x10, 0xf0, 0xb3, 0x6b, 0xd2, 0xeb, 0x53, 0xc5, 0x29, 0x34, 0x0f, 0x39, 0xd2, - 0xf5, 0xe8, 0xf1, 0x4d, 0x51, 0x40, 0x59, 0xc8, 0x1c, 0xb8, 0x6e, 0x57, 0x4c, 0xa1, 0x19, 0x48, - 0x39, 0x8f, 0xc5, 0x34, 0xf9, 0xdf, 0x72, 0xc4, 0x0c, 0xc1, 0x52, 0xea, 0xe7, 0x3d, 0x1b, 0x8b, - 0xd3, 0x04, 0x4b, 0xf5, 0x1c, 0x6c, 0xef, 0x1b, 0x6d, 0x2c, 0xce, 0x12, 0x16, 0xb3, 0xd7, 0x6e, - 0x8b, 0x59, 0x29, 0x93, 0x9d, 0x11, 0x67, 0x1e, 0xdc, 0x84, 0xd0, 0x39, 0x79, 0x04, 0x30, 0xf3, - 0x4c, 0x75, 0xb1, 0xe3, 0x8a, 0x53, 0x68, 0x16, 0xd2, 0xab, 0xed, 0xb6, 0x28, 0x3c, 0xfa, 0x67, - 0x19, 0xc8, 0x7a, 0x1f, 0xbe, 0x41, 0xcf, 0x60, 0x9a, 0x2d, 0xc5, 0x2e, 0x8f, 0x46, 0x1e, 0x74, - 0x1c, 0x2f, 0xdd, 0x38, 0x0f, 0x9a, 0x48, 0x53, 0xe8, 0x2f, 0x42, 0x3e, 0xe4, 0x91, 0xa1, 0x91, - 0x6b, 0x67, 0x11, 0x2f, 0x74, 0xe9, 0xce, 0x79, 0xd9, 0x7c, 0xf9, 0xaf, 0x20, 0xe7, 0x1b, 0x73, - 0x74, 0x6b, 0x9c, 0xa9, 0xf7, 0x64, 0x8f, 0x9f, 0x0f, 0xc8, 0xb0, 0x93, 0xa6, 0xde, 0x17, 0x90, - 0x0d, 0x68, 0xd8, 0xee, 0xa2, 0xb8, 0xf0, 0xb5, 0x91, 0x86, 0x7d, 0xe9, 0xc1, 0x44, 0xb9, 0x83, - 0x77, 0x12, 0x65, 0x05, 0x93, 0x47, 0xbc, 0xb2, 0x86, 0xa6, 0xa6, 0x78, 0x65, 0xc5, 0xcc, 0x41, - 0x53, 0xe8, 0x05, 0x64, 0x88, 0xd1, 0x44, 0x71, 0x6e, 0xd7, 0x80, 0x91, 0x5e, 0xba, 0x35, 0x36, - 0x8f, 0x27, 0x72, 0xed, 0xfe, 0x8f, 0xfe, 0xf3, 0xf5, 0xa9, 0x1f, 0x9d, 0x5d, 0x17, 0x7e, 0x7a, - 0x76, 0x5d, 0xf8, 0xe3, 0xb3, 0xeb, 0xc2, 0x9f, 0x9c, 0x5d, 0x17, 0xbe, 0xf7, 0xb3, 0xeb, 0x53, - 0x3f, 0xfd, 0xd9, 0xf5, 0xa9, 0x3f, 0xfe, 0xd9, 0xf5, 0xa9, 0xcf, 0x66, 0x39, 0xf7, 0xde, 0x0c, - 0xb5, 0x28, 0x8f, 0xff, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x61, 0xc3, 0x92, 0xe2, 0x80, 0x80, - 0x00, 0x00, + // 8339 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x7d, 0x4d, 0x6c, 0x23, 0x49, + 0x96, 0x9e, 0x92, 0xa4, 0x24, 0xf2, 0x51, 0x22, 0x53, 0xa1, 0xfa, 0x61, 0xa9, 0xbb, 0x4b, 0x55, + 0xd9, 0x5d, 0xbf, 0x3b, 0x4d, 0x75, 0x55, 0xcd, 0xb8, 0x7b, 0xbb, 0x7b, 0x7b, 0x56, 0xa2, 0x58, + 0x45, 0x4a, 0x25, 0x95, 0x2a, 0x49, 0x55, 0xa1, 0x7b, 0x67, 0x9d, 0x9b, 0xca, 0x0c, 0x51, 0x39, + 0x22, 0x33, 0x59, 0x99, 0x49, 0x49, 0x6c, 0xc0, 0x07, 0xdb, 0x8b, 0xf1, 0x9c, 0x8c, 0x31, 0x60, + 0x60, 0x67, 0xb0, 0x86, 0x31, 0xeb, 0x5d, 0x78, 0x0f, 0x3e, 0xd8, 0xb0, 0x0d, 0xff, 0xc1, 0xf6, + 0x1e, 0x3d, 0x30, 0x06, 0x9e, 0xd9, 0xdb, 0xc2, 0x80, 0xe5, 0xb5, 0xc6, 0x07, 0x2f, 0x16, 0x86, + 0x0d, 0xc3, 0xc0, 0x00, 0x0d, 0xd8, 0x30, 0xe2, 0x27, 0xff, 0xc8, 0x24, 0x45, 0x55, 0xe7, 0x78, + 0x1b, 0x98, 0x8b, 0xc4, 0x7c, 0x11, 0xef, 0x65, 0xc4, 0x8b, 0x88, 0x17, 0xef, 0x8b, 0x78, 0x11, + 0x09, 0x0b, 0xb6, 0xa5, 0x6a, 0x07, 0xdd, 0xbd, 0x15, 0xb5, 0x6b, 0x94, 0xbb, 0xb6, 0xe5, 0x5a, + 0x68, 0x41, 0xb3, 0xb4, 0x43, 0x4a, 0x2e, 0xf3, 0xc4, 0xa5, 0xfb, 0x87, 0x47, 0x2b, 0x87, 0x47, + 0x0e, 0xb6, 0x8f, 0xb0, 0xbd, 0xa2, 0x59, 0xa6, 0xd6, 0xb3, 0x6d, 0x6c, 0x6a, 0xfd, 0x95, 0xb6, + 0xa5, 0x1d, 0xd2, 0x3f, 0x86, 0xd9, 0x62, 0xec, 0xd1, 0xbc, 0x36, 0x56, 0x75, 0xa7, 0xd7, 0xe9, + 0xa8, 0x76, 0x7f, 0xc5, 0x76, 0xba, 0x7b, 0x2b, 0xfc, 0x81, 0xe7, 0x45, 0xde, 0xdb, 0x75, 0xd5, + 0x55, 0x39, 0xed, 0x92, 0x47, 0xc3, 0xb6, 0x6d, 0xd9, 0x0e, 0xa7, 0x5e, 0xf1, 0xa8, 0x1d, 0xec, + 0xaa, 0xa1, 0xdc, 0x6f, 0x38, 0xae, 0x65, 0xab, 0x2d, 0xbc, 0x82, 0xcd, 0x96, 0x61, 0x62, 0x92, + 0xe1, 0x48, 0xd3, 0x78, 0xe2, 0x9b, 0xb1, 0x89, 0x8f, 0x78, 0x6a, 0xa9, 0xe7, 0x1a, 0xed, 0x95, + 0x83, 0xb6, 0xb6, 0xe2, 0x1a, 0x1d, 0xec, 0xb8, 0x6a, 0xa7, 0xeb, 0x55, 0x81, 0xa6, 0xb8, 0xb6, + 0xaa, 0x19, 0x66, 0xcb, 0xfb, 0xdf, 0xdd, 0x5b, 0xb1, 0xb1, 0x66, 0xd9, 0x3a, 0xd6, 0x15, 0xa7, + 0xab, 0x9a, 0x5e, 0x71, 0x5b, 0x56, 0xcb, 0xa2, 0x3f, 0x57, 0xc8, 0x2f, 0x4e, 0xbd, 0xde, 0xb2, + 0xac, 0x56, 0x1b, 0xaf, 0xd0, 0xa7, 0xbd, 0xde, 0xfe, 0x8a, 0xde, 0xb3, 0x55, 0xd7, 0xb0, 0x38, + 0x97, 0xf4, 0xcf, 0x04, 0x98, 0x97, 0xf1, 0xab, 0x1e, 0x76, 0xdc, 0x1a, 0x56, 0x75, 0x6c, 0xa3, + 0x6b, 0x90, 0x3e, 0xc4, 0xfd, 0x52, 0xfa, 0x86, 0x70, 0x77, 0x6e, 0x6d, 0xf6, 0x8b, 0xd3, 0xe5, + 0xf4, 0x26, 0xee, 0xcb, 0x84, 0x86, 0x6e, 0xc0, 0x2c, 0x36, 0x75, 0x85, 0x24, 0x67, 0xa2, 0xc9, + 0x33, 0xd8, 0xd4, 0x37, 0x71, 0x1f, 0x7d, 0x0b, 0xb2, 0x0e, 0x91, 0x66, 0x6a, 0xb8, 0x34, 0x7d, + 0x43, 0xb8, 0x3b, 0xbd, 0xf6, 0xeb, 0x5f, 0x9c, 0x2e, 0x7f, 0xdc, 0x32, 0xdc, 0x83, 0xde, 0x5e, + 0x59, 0xb3, 0x3a, 0x2b, 0x7e, 0x9b, 0xea, 0x7b, 0xc1, 0xef, 0x95, 0xee, 0x61, 0x6b, 0x65, 0x50, + 0x47, 0xe5, 0xe6, 0x89, 0xd9, 0xc0, 0xaf, 0x64, 0x5f, 0xe2, 0x46, 0x26, 0x2b, 0x88, 0xa9, 0x8d, + 0x4c, 0x36, 0x25, 0xa6, 0xa5, 0x9f, 0xa4, 0xa0, 0x20, 0x63, 0xa7, 0x6b, 0x99, 0x0e, 0xe6, 0x25, + 0x7f, 0x0f, 0xd2, 0xee, 0x89, 0x49, 0x4b, 0x9e, 0x7f, 0x78, 0xbd, 0x3c, 0xd4, 0x7b, 0xca, 0x4d, + 0x5b, 0x35, 0x1d, 0x55, 0x23, 0xd5, 0x97, 0x49, 0x56, 0xf4, 0x01, 0xe4, 0x6d, 0xec, 0xf4, 0x3a, + 0x98, 0x2a, 0x92, 0x56, 0x2a, 0xff, 0xf0, 0x6a, 0x0c, 0x67, 0xa3, 0xab, 0x9a, 0x32, 0xb0, 0xbc, + 0xe4, 0x37, 0x6a, 0xc0, 0x3c, 0xe7, 0xb4, 0xb1, 0xea, 0x58, 0x66, 0x69, 0xf6, 0x86, 0x70, 0xb7, + 0xf0, 0xb0, 0x1c, 0xc3, 0x1b, 0x2d, 0x25, 0x79, 0xec, 0x75, 0xb0, 0x4c, 0xb9, 0xe4, 0x39, 0x3b, + 0xf4, 0x84, 0xae, 0x41, 0xd6, 0xec, 0x75, 0x88, 0x7e, 0x1d, 0xaa, 0xbd, 0xb4, 0x3c, 0x6b, 0xf6, + 0x3a, 0x9b, 0xb8, 0xef, 0xa0, 0x37, 0x20, 0x47, 0x92, 0xf6, 0xfa, 0x2e, 0x76, 0x4a, 0x59, 0x9a, + 0x46, 0xf2, 0xae, 0x91, 0x67, 0xe9, 0x13, 0x98, 0x0b, 0x4b, 0x45, 0x08, 0x0a, 0x72, 0xb5, 0xb1, + 0xbb, 0x55, 0x55, 0x76, 0xb7, 0x37, 0xb7, 0x9f, 0xbd, 0xdc, 0x16, 0xa7, 0xd0, 0x25, 0x10, 0x39, + 0x6d, 0xb3, 0xfa, 0xa9, 0xf2, 0xb4, 0xbe, 0x55, 0x6f, 0x8a, 0xc2, 0x52, 0xe6, 0xbb, 0xbf, 0x7f, + 0x7d, 0x6a, 0x23, 0x93, 0x9d, 0x11, 0x67, 0xa5, 0xdf, 0x17, 0x00, 0x9e, 0x60, 0x97, 0xf7, 0x06, + 0xb4, 0x06, 0x33, 0x07, 0xb4, 0xc4, 0x25, 0x81, 0xaa, 0xe5, 0x46, 0x6c, 0xd5, 0x42, 0x3d, 0x67, + 0x2d, 0xfb, 0xa3, 0xd3, 0xe5, 0xa9, 0x9f, 0x9e, 0x2e, 0x0b, 0x32, 0xe7, 0x44, 0xcf, 0x21, 0x7f, + 0x88, 0xfb, 0x0a, 0x1f, 0x97, 0xa5, 0x14, 0xd5, 0xd1, 0x7b, 0x21, 0x41, 0x87, 0x47, 0x65, 0x6f, + 0x88, 0x96, 0x43, 0xc3, 0xb9, 0x4c, 0x38, 0xca, 0x0d, 0xd7, 0xc6, 0x66, 0xcb, 0x3d, 0x90, 0xe1, + 0x10, 0xf7, 0x9f, 0x32, 0x19, 0xd2, 0x1f, 0x09, 0x90, 0xa7, 0xa5, 0x64, 0x4a, 0x45, 0x95, 0x81, + 0x62, 0xde, 0x3c, 0xb7, 0x05, 0x62, 0xca, 0x59, 0x86, 0xe9, 0x23, 0xb5, 0xdd, 0xc3, 0xb4, 0x84, + 0xf9, 0x87, 0xa5, 0x18, 0x19, 0x2f, 0x48, 0xba, 0xcc, 0xb2, 0xa1, 0x8f, 0x60, 0xce, 0x30, 0x5d, + 0x6c, 0xba, 0x0a, 0x63, 0x4b, 0x9f, 0xc3, 0x96, 0x67, 0xb9, 0xe9, 0x83, 0xf4, 0x4f, 0x05, 0x80, + 0x9d, 0x5e, 0xa2, 0x7a, 0xfe, 0xfa, 0x84, 0xe5, 0x5f, 0xcb, 0x10, 0x56, 0xaf, 0x16, 0x57, 0x60, + 0xc6, 0x30, 0xdb, 0x86, 0xc9, 0xca, 0x9f, 0x95, 0xf9, 0x13, 0xba, 0x04, 0xd3, 0x7b, 0x6d, 0xc3, + 0xd4, 0xe9, 0x78, 0xc8, 0xca, 0xec, 0x41, 0x92, 0x21, 0x4f, 0x4b, 0x9d, 0xa0, 0xde, 0xa5, 0xd3, + 0x14, 0x5c, 0xae, 0x58, 0xa6, 0x6e, 0x90, 0x21, 0xa9, 0xb6, 0xbf, 0x12, 0x5a, 0xd9, 0x80, 0x4b, + 0x3a, 0xee, 0xda, 0x58, 0x53, 0x5d, 0xac, 0x2b, 0xf8, 0xa4, 0x3b, 0x61, 0x1b, 0xa3, 0x80, 0xab, + 0x7a, 0xd2, 0xa5, 0x34, 0x32, 0x6a, 0x89, 0x00, 0x36, 0x6a, 0x67, 0x88, 0xc9, 0x94, 0xb3, 0xf8, + 0xa4, 0x4b, 0x47, 0x6d, 0xbc, 0x9a, 0xd1, 0xd7, 0xe1, 0xaa, 0xda, 0x6e, 0x5b, 0xc7, 0x8a, 0xb1, + 0xaf, 0xe8, 0x16, 0x76, 0x14, 0xd3, 0x72, 0x15, 0x7c, 0x62, 0x38, 0x2e, 0x35, 0x09, 0x59, 0x79, + 0x91, 0x26, 0xd7, 0xf7, 0xd7, 0x2d, 0xec, 0x6c, 0x5b, 0x6e, 0x95, 0x24, 0x85, 0x9a, 0x72, 0x36, + 0xdc, 0x94, 0xd2, 0x6f, 0xc2, 0x95, 0x41, 0xfd, 0x26, 0xd9, 0x7e, 0x3f, 0x16, 0xa0, 0x50, 0x37, + 0x0d, 0xf7, 0x2b, 0xd1, 0x70, 0xbe, 0x3e, 0xd3, 0x61, 0x7d, 0xde, 0x07, 0x71, 0x5f, 0x35, 0xda, + 0xcf, 0xcc, 0xa6, 0xd5, 0xd9, 0x73, 0x5c, 0xcb, 0xc4, 0x0e, 0x57, 0xf8, 0x10, 0x5d, 0x7a, 0x01, + 0x45, 0xbf, 0x36, 0x49, 0xaa, 0xc9, 0x05, 0xb1, 0x6e, 0x6a, 0x36, 0xee, 0x60, 0x33, 0x51, 0x3d, + 0xbd, 0x09, 0x39, 0xc3, 0x93, 0x4b, 0x75, 0x95, 0x96, 0x03, 0x82, 0xd4, 0x83, 0x85, 0xd0, 0x5b, + 0x93, 0x34, 0x97, 0x64, 0x32, 0xc2, 0xc7, 0x4a, 0xd0, 0x46, 0x64, 0x32, 0xc2, 0xc7, 0xcc, 0xbc, + 0x35, 0x60, 0x7e, 0x1d, 0xb7, 0xb1, 0x8b, 0x13, 0xac, 0xa9, 0xb4, 0x0b, 0x05, 0x4f, 0x68, 0x92, + 0x0d, 0xf3, 0x3b, 0x02, 0x20, 0x2e, 0x57, 0x35, 0x5b, 0x49, 0x96, 0x18, 0x2d, 0x13, 0xd7, 0xc2, + 0xed, 0xd9, 0x26, 0x9b, 0xce, 0x59, 0x9f, 0x04, 0x46, 0xa2, 0x33, 0x7a, 0x30, 0x64, 0x33, 0xe1, + 0x21, 0xcb, 0xdd, 0x9b, 0x63, 0x58, 0x8c, 0x14, 0x2c, 0xd9, 0xe6, 0xcb, 0xd0, 0x32, 0xa5, 0x6e, + 0xa4, 0xc3, 0x3e, 0x1c, 0x25, 0x4a, 0xdf, 0x17, 0x60, 0xa1, 0xd2, 0xc6, 0xaa, 0x9d, 0xb8, 0x46, + 0xbe, 0x09, 0x59, 0x1d, 0xab, 0x3a, 0xad, 0x32, 0x1b, 0xd8, 0x6f, 0x85, 0xa4, 0x10, 0x4f, 0xb7, + 0x7c, 0xd0, 0xd6, 0xca, 0x4d, 0xcf, 0x07, 0xe6, 0xa3, 0xdb, 0x67, 0x92, 0x3e, 0x05, 0x14, 0x2e, + 0x59, 0x92, 0x1d, 0xe1, 0x0f, 0x52, 0x80, 0x64, 0x7c, 0x84, 0x6d, 0x37, 0xf1, 0x6a, 0xaf, 0x43, + 0xde, 0x55, 0xed, 0x16, 0x76, 0x15, 0xe2, 0xdd, 0x5f, 0xa4, 0xe6, 0xc0, 0xf8, 0x08, 0x19, 0x35, + 0xe1, 0x0e, 0x36, 0xd5, 0xbd, 0x36, 0xa6, 0x52, 0x94, 0x3d, 0xab, 0x67, 0xea, 0x8a, 0xe1, 0x62, + 0x5b, 0x75, 0x2d, 0x5b, 0xb1, 0xba, 0xae, 0xd1, 0x31, 0x3e, 0xa7, 0x8e, 0x3d, 0xef, 0x6a, 0x6f, + 0xb3, 0xec, 0x84, 0x79, 0x8d, 0x64, 0xae, 0xf3, 0xbc, 0xcf, 0x42, 0x59, 0x51, 0x19, 0x16, 0x8d, + 0x96, 0x69, 0xd9, 0x58, 0x69, 0x69, 0x8a, 0x7b, 0x60, 0x63, 0xe7, 0xc0, 0x6a, 0x7b, 0x13, 0xd2, + 0x02, 0x4b, 0x7a, 0xa2, 0x35, 0xbd, 0x04, 0xe9, 0x33, 0x58, 0x8c, 0x68, 0x29, 0xc9, 0x26, 0xf8, + 0x9f, 0x02, 0xe4, 0x1b, 0x9a, 0x6a, 0x26, 0xa9, 0xfb, 0x4f, 0x20, 0xef, 0x68, 0xaa, 0xa9, 0xec, + 0x5b, 0x76, 0x47, 0x75, 0x69, 0xbd, 0x0a, 0x11, 0xdd, 0xfb, 0xfe, 0xbd, 0xa6, 0x9a, 0x8f, 0x69, + 0x26, 0x19, 0x1c, 0xff, 0xf7, 0xa0, 0xff, 0x3a, 0xfd, 0xe5, 0xfd, 0x57, 0x36, 0xbc, 0x37, 0x32, + 0xd9, 0xb4, 0x98, 0x91, 0x7e, 0x2e, 0xc0, 0x1c, 0xab, 0x72, 0x92, 0xc3, 0xfb, 0x1b, 0x90, 0xb1, + 0xad, 0x63, 0x36, 0xbc, 0xf3, 0x0f, 0xdf, 0x88, 0x11, 0xb1, 0x89, 0xfb, 0xe1, 0xf9, 0x93, 0x66, + 0x47, 0x6b, 0xc0, 0xbd, 0x54, 0x85, 0x72, 0xa7, 0x27, 0xe5, 0x06, 0xc6, 0x25, 0x13, 0x19, 0x77, + 0xa0, 0xb8, 0xa7, 0xba, 0xda, 0x81, 0x62, 0xf3, 0x42, 0x92, 0xb9, 0x36, 0x7d, 0x77, 0x4e, 0x2e, + 0x50, 0xb2, 0x57, 0x74, 0x87, 0xd4, 0x9c, 0x8d, 0x37, 0x07, 0xff, 0x92, 0xb5, 0xf9, 0xff, 0x15, + 0xf8, 0x18, 0xf2, 0x6a, 0xfe, 0xcb, 0xd6, 0xf4, 0x3f, 0x48, 0xc1, 0xd5, 0xca, 0x01, 0xd6, 0x0e, + 0x2b, 0x96, 0xe9, 0x18, 0x8e, 0x4b, 0x74, 0x97, 0x64, 0xfb, 0xbf, 0x01, 0xb9, 0x63, 0xc3, 0x3d, + 0x50, 0x74, 0x63, 0x7f, 0x9f, 0x5a, 0xdb, 0xac, 0x9c, 0x25, 0x84, 0x75, 0x63, 0x7f, 0x1f, 0x3d, + 0x82, 0x4c, 0xc7, 0xd2, 0x99, 0x33, 0x5f, 0x78, 0xb8, 0x1c, 0x23, 0x9e, 0x16, 0xcd, 0xe9, 0x75, + 0xb6, 0x2c, 0x1d, 0xcb, 0x34, 0x33, 0xba, 0x0e, 0xa0, 0x11, 0x6a, 0xd7, 0x32, 0x4c, 0x97, 0x1b, + 0xc7, 0x10, 0x05, 0xd5, 0x20, 0xe7, 0x62, 0xbb, 0x63, 0x98, 0xaa, 0x8b, 0x4b, 0xd3, 0x54, 0x79, + 0xef, 0xc4, 0x16, 0xbc, 0xdb, 0x36, 0x34, 0x75, 0x1d, 0x3b, 0x9a, 0x6d, 0x74, 0x5d, 0xcb, 0xe6, + 0x5a, 0x0c, 0x98, 0xa5, 0xbf, 0x99, 0x81, 0xd2, 0xb0, 0x6e, 0x92, 0xec, 0x21, 0x3b, 0x30, 0x63, + 0x63, 0xa7, 0xd7, 0x76, 0x79, 0x1f, 0x79, 0x38, 0x4a, 0x05, 0x31, 0x25, 0xa0, 0x4b, 0x17, 0x6d, + 0x97, 0x17, 0x9b, 0xcb, 0x59, 0xfa, 0xd7, 0x02, 0xcc, 0xb0, 0x04, 0xf4, 0x00, 0xb2, 0x36, 0x99, + 0x18, 0x14, 0x43, 0xa7, 0x65, 0x4c, 0xaf, 0x5d, 0x39, 0x3b, 0x5d, 0x9e, 0xa5, 0x93, 0x45, 0x7d, + 0xfd, 0x8b, 0xe0, 0xa7, 0x3c, 0x4b, 0xf3, 0xd5, 0x75, 0xd2, 0x5a, 0x8e, 0xab, 0xda, 0x2e, 0x5d, + 0x54, 0x4a, 0x31, 0x84, 0x44, 0x09, 0x9b, 0xb8, 0x8f, 0x36, 0x60, 0xc6, 0x71, 0x55, 0xb7, 0xe7, + 0xf0, 0xf6, 0xba, 0x50, 0x61, 0x1b, 0x94, 0x53, 0xe6, 0x12, 0x88, 0xbb, 0xa5, 0x63, 0x57, 0x35, + 0xda, 0xb4, 0x01, 0x73, 0x32, 0x7f, 0x92, 0x7e, 0x57, 0x80, 0x19, 0x96, 0x15, 0x5d, 0x85, 0x45, + 0x79, 0x75, 0xfb, 0x49, 0x55, 0xa9, 0x6f, 0xaf, 0x57, 0x9b, 0x55, 0x79, 0xab, 0xbe, 0xbd, 0xda, + 0xac, 0x8a, 0x53, 0xe8, 0x0a, 0x20, 0x2f, 0xa1, 0xf2, 0x6c, 0xbb, 0x51, 0x6f, 0x34, 0xab, 0xdb, + 0x4d, 0x51, 0xa0, 0x6b, 0x2a, 0x94, 0x1e, 0xa2, 0xa6, 0xd0, 0x3b, 0x70, 0x63, 0x90, 0xaa, 0x34, + 0x9a, 0xab, 0xcd, 0x86, 0x52, 0x6d, 0x34, 0xeb, 0x5b, 0xab, 0xcd, 0xea, 0xba, 0x98, 0x1e, 0x93, + 0x8b, 0xbc, 0x44, 0x96, 0xab, 0x95, 0xa6, 0x98, 0x91, 0x5c, 0xb8, 0x2c, 0x63, 0xcd, 0xea, 0x74, + 0x7b, 0x2e, 0x26, 0xa5, 0x74, 0x92, 0x1c, 0x29, 0x57, 0x61, 0x56, 0xb7, 0xfb, 0x8a, 0xdd, 0x33, + 0xf9, 0x38, 0x99, 0xd1, 0xed, 0xbe, 0xdc, 0x33, 0xa5, 0x7f, 0x24, 0xc0, 0x95, 0xc1, 0xd7, 0x26, + 0xd9, 0x09, 0x9f, 0x43, 0x5e, 0xd5, 0x75, 0xac, 0x2b, 0x3a, 0x6e, 0xbb, 0x2a, 0x77, 0x89, 0xee, + 0x87, 0x24, 0xf1, 0xa5, 0xc0, 0xb2, 0xbf, 0x14, 0xb8, 0xf5, 0xa2, 0x52, 0xa1, 0x05, 0x59, 0x27, + 0x1c, 0x9e, 0xf9, 0xa1, 0x42, 0x28, 0x45, 0xfa, 0x41, 0x06, 0xe6, 0xab, 0xa6, 0xde, 0x3c, 0x49, + 0x74, 0x2e, 0xb9, 0x02, 0x33, 0x9a, 0xd5, 0xe9, 0x18, 0xae, 0xa7, 0x20, 0xf6, 0x84, 0x7e, 0x35, + 0xe4, 0xca, 0xa6, 0x27, 0x70, 0xe8, 0x02, 0x27, 0x16, 0xfd, 0x16, 0x5c, 0x25, 0x56, 0xd3, 0x36, + 0xd5, 0xb6, 0xc2, 0xa4, 0x29, 0xae, 0x6d, 0xb4, 0x5a, 0xd8, 0xe6, 0xcb, 0x8f, 0x77, 0x63, 0xca, + 0x59, 0xe7, 0x1c, 0x15, 0xca, 0xd0, 0x64, 0xf9, 0xe5, 0xcb, 0x46, 0x1c, 0x19, 0x7d, 0x0c, 0x40, + 0xa6, 0x22, 0xba, 0xa4, 0xe9, 0x70, 0x7b, 0x34, 0x6a, 0x4d, 0xd3, 0x33, 0x41, 0x84, 0x81, 0x3c, + 0x3b, 0xe8, 0x39, 0x88, 0x86, 0xa9, 0xec, 0xb7, 0x8d, 0xd6, 0x81, 0xab, 0x1c, 0xdb, 0x86, 0x8b, + 0x9d, 0xd2, 0x02, 0x95, 0x11, 0xd7, 0xd4, 0x0d, 0xbe, 0x34, 0xab, 0xbf, 0x24, 0x39, 0xb9, 0xb4, + 0x82, 0x61, 0x3e, 0xa6, 0xfc, 0x94, 0xe8, 0xa0, 0x15, 0x02, 0x85, 0x5e, 0xf5, 0x0c, 0x1b, 0x2b, + 0x0f, 0xba, 0x1a, 0x5d, 0x07, 0xc9, 0xae, 0x15, 0xce, 0x4e, 0x97, 0x41, 0x66, 0xe4, 0x07, 0x3b, + 0x15, 0x02, 0x8d, 0xd8, 0xef, 0xae, 0x46, 0xd4, 0xde, 0xb5, 0x0c, 0xc7, 0x32, 0x4b, 0x39, 0xa6, + 0x76, 0xf6, 0x84, 0xee, 0x81, 0xe8, 0x9e, 0x98, 0xca, 0x01, 0x56, 0x6d, 0x77, 0x0f, 0xab, 0x2e, + 0x99, 0x9f, 0x81, 0xe6, 0x28, 0xba, 0x27, 0x66, 0x2d, 0x44, 0xde, 0xc8, 0x64, 0x67, 0xc5, 0xec, + 0x46, 0x26, 0x9b, 0x15, 0x73, 0xd2, 0x7f, 0x12, 0xa0, 0xe0, 0xf5, 0x8d, 0x24, 0xbb, 0xf1, 0x5d, + 0x10, 0x2d, 0x13, 0x2b, 0xdd, 0x03, 0xd5, 0xc1, 0xbc, 0x2d, 0xf9, 0xec, 0x50, 0xb0, 0x4c, 0xbc, + 0x43, 0xc8, 0xac, 0x65, 0xd0, 0x0e, 0x2c, 0x38, 0xae, 0xda, 0x32, 0xcc, 0x96, 0xe2, 0x2f, 0xf1, + 0x53, 0xcf, 0x62, 0x42, 0x24, 0x20, 0x72, 0x6e, 0x9f, 0x1e, 0x71, 0x29, 0xfe, 0x58, 0x80, 0x85, + 0x55, 0xbd, 0x63, 0x98, 0x8d, 0x6e, 0xdb, 0x48, 0x74, 0x81, 0xe1, 0x1d, 0xc8, 0x39, 0x44, 0x66, + 0x60, 0x9d, 0x03, 0xb8, 0x98, 0xa5, 0x29, 0xc4, 0x4c, 0x3f, 0x85, 0x22, 0x3e, 0xe9, 0x1a, 0x6c, + 0x5f, 0x81, 0xa1, 0x9c, 0xcc, 0xe4, 0x75, 0x2b, 0x04, 0xbc, 0x24, 0x89, 0xd7, 0xe9, 0x53, 0x40, + 0xe1, 0x2a, 0x25, 0x09, 0x34, 0x3e, 0x85, 0x45, 0x2a, 0x7a, 0xd7, 0x74, 0x12, 0xd6, 0x97, 0xf4, + 0x1b, 0x70, 0x29, 0x2a, 0x3a, 0xc9, 0x72, 0xbf, 0xe4, 0xad, 0xbc, 0x85, 0xed, 0x44, 0x11, 0xaa, + 0xaf, 0x6b, 0x2e, 0x38, 0xc9, 0x32, 0xff, 0xb6, 0x00, 0xd7, 0xa8, 0x6c, 0xba, 0xf5, 0xb2, 0x8f, + 0xed, 0xa7, 0x58, 0x75, 0x12, 0x85, 0xd7, 0x6f, 0xc3, 0x0c, 0x83, 0xc9, 0xb4, 0x7f, 0x4e, 0xaf, + 0xe5, 0x89, 0x9b, 0xd1, 0x70, 0x2d, 0x9b, 0xb8, 0x19, 0x3c, 0x49, 0x52, 0x61, 0x29, 0xae, 0x14, + 0x49, 0xd6, 0xf4, 0xef, 0x0a, 0xb0, 0xc0, 0x3d, 0x3c, 0xd2, 0x95, 0x2b, 0x07, 0xc4, 0xc1, 0x41, + 0x55, 0xc8, 0x6b, 0xf4, 0x97, 0xe2, 0xf6, 0xbb, 0x98, 0xca, 0x2f, 0x8c, 0x73, 0x0e, 0x19, 0x5b, + 0xb3, 0xdf, 0xc5, 0xc4, 0xc3, 0xf4, 0x7e, 0x13, 0x45, 0x85, 0x2a, 0x39, 0xd6, 0xbd, 0xa4, 0xe3, + 0x88, 0xe6, 0xf5, 0xfc, 0x34, 0xae, 0x83, 0x7f, 0x92, 0xe6, 0x4a, 0x60, 0xef, 0xe0, 0xd9, 0x13, + 0x75, 0x28, 0x3e, 0x83, 0x2b, 0xa1, 0xa5, 0xf3, 0x70, 0xc5, 0x53, 0x17, 0xa8, 0x78, 0x68, 0xf9, + 0x3d, 0xa0, 0xa2, 0x4f, 0x21, 0xb4, 0xc0, 0xae, 0xb0, 0x3a, 0x79, 0x50, 0xe5, 0x22, 0xea, 0x58, + 0x08, 0xa4, 0x30, 0xba, 0x83, 0x2a, 0x90, 0xc5, 0x27, 0x5d, 0x45, 0xc7, 0x8e, 0xc6, 0x0d, 0x97, + 0x14, 0x27, 0x90, 0x14, 0x65, 0xc8, 0x79, 0x9f, 0xc5, 0x27, 0x5d, 0x42, 0x44, 0xbb, 0x64, 0xde, + 0xf4, 0xe6, 0x75, 0x5a, 0x6c, 0xe7, 0x7c, 0x2c, 0x10, 0xf4, 0x14, 0x2e, 0xae, 0xe8, 0x4f, 0xe9, + 0x4c, 0x84, 0xf4, 0x43, 0x01, 0xde, 0x88, 0x6d, 0xb5, 0x24, 0x27, 0xb2, 0x8f, 0x21, 0x43, 0x2b, + 0x9f, 0xba, 0x60, 0xe5, 0x29, 0x97, 0xf4, 0xdd, 0x14, 0x1f, 0xe3, 0x32, 0x6e, 0x5b, 0x44, 0xb1, + 0x89, 0x2f, 0xa1, 0x3d, 0x83, 0xf9, 0x23, 0xcb, 0xc5, 0xb6, 0xdf, 0xec, 0xa9, 0x0b, 0x37, 0xfb, + 0x1c, 0x15, 0xe0, 0xb5, 0xf8, 0x0b, 0x58, 0x30, 0x2d, 0x53, 0x89, 0x0a, 0xbd, 0x78, 0x5f, 0x2a, + 0x9a, 0x96, 0xf9, 0x22, 0x24, 0xd7, 0xb7, 0x33, 0x03, 0x9a, 0x48, 0xd2, 0xce, 0x7c, 0x4f, 0x80, + 0x45, 0xdf, 0xd3, 0x49, 0xd8, 0xdd, 0xfd, 0x06, 0xa4, 0x4d, 0xeb, 0xf8, 0x22, 0x4b, 0x94, 0x24, + 0x3f, 0x99, 0xf5, 0xa2, 0x25, 0x4a, 0xb2, 0xbe, 0xff, 0x26, 0x05, 0xb9, 0x27, 0x95, 0x24, 0x6b, + 0xf9, 0x31, 0x5f, 0xfe, 0x66, 0xed, 0x1d, 0xd7, 0xdb, 0xfd, 0xf7, 0x95, 0x9f, 0x54, 0x36, 0x71, + 0xdf, 0xeb, 0xed, 0x84, 0x0b, 0xad, 0x42, 0x2e, 0xba, 0x50, 0x3a, 0xa1, 0xa6, 0x02, 0xae, 0x25, + 0x0c, 0xd3, 0x54, 0xae, 0x17, 0x6a, 0x21, 0xc4, 0x84, 0x5a, 0x90, 0xd7, 0xf8, 0x9e, 0x62, 0xea, + 0x22, 0xaf, 0x09, 0xb9, 0x88, 0xd3, 0xe2, 0x8c, 0xf4, 0x1c, 0x80, 0x54, 0x27, 0xc9, 0x26, 0xf9, + 0x4e, 0x1a, 0x0a, 0x3b, 0x3d, 0xe7, 0x20, 0xe1, 0xde, 0x57, 0x01, 0xe8, 0xf6, 0x9c, 0x03, 0x32, + 0x22, 0x4f, 0x4c, 0x5e, 0xe7, 0x73, 0xa2, 0x38, 0xbc, 0x4a, 0x33, 0xbe, 0xe6, 0x89, 0x89, 0x6a, + 0x5c, 0x08, 0x56, 0x82, 0x50, 0x90, 0xb7, 0xc7, 0x21, 0xcb, 0xe6, 0x89, 0xb9, 0x85, 0x7d, 0x48, + 0xc9, 0x24, 0x61, 0x22, 0xe9, 0x63, 0x98, 0x25, 0x0f, 0x8a, 0x6b, 0x5d, 0xa4, 0x99, 0x67, 0x08, + 0x4f, 0xd3, 0x42, 0x1f, 0x41, 0x8e, 0x71, 0x93, 0xd9, 0x6f, 0x86, 0xce, 0x7e, 0x71, 0x75, 0xe1, + 0x6a, 0xa4, 0xf3, 0x5e, 0x96, 0xb2, 0x92, 0xb9, 0xee, 0x12, 0x4c, 0xef, 0x5b, 0xb6, 0xe6, 0x6d, + 0xe6, 0xb2, 0x07, 0xd6, 0x9e, 0x0c, 0xd2, 0x6c, 0x64, 0xb2, 0x39, 0x11, 0xa4, 0xdf, 0x15, 0xa0, + 0xe8, 0x37, 0x44, 0x92, 0x13, 0x42, 0x25, 0xa2, 0xc5, 0x8b, 0x37, 0x05, 0x51, 0xa0, 0xf4, 0xef, + 0xa8, 0x47, 0xa4, 0x59, 0x47, 0xb4, 0x65, 0x92, 0xec, 0x29, 0x1f, 0xb1, 0x40, 0x9f, 0xd4, 0x45, + 0x5b, 0x97, 0xc6, 0xfc, 0x3c, 0x80, 0x4b, 0x46, 0x87, 0xd8, 0x73, 0xc3, 0x6d, 0xf7, 0x39, 0x6c, + 0x73, 0xb1, 0xb7, 0x6b, 0xbc, 0x18, 0xa4, 0x55, 0xbc, 0x24, 0xe9, 0x0f, 0xe8, 0x6a, 0x75, 0x50, + 0x93, 0x24, 0x55, 0x5d, 0x87, 0x79, 0x9b, 0x89, 0x26, 0x6e, 0xcd, 0x05, 0xb5, 0x3d, 0xe7, 0xb3, + 0x12, 0x85, 0xff, 0x5e, 0x0a, 0x8a, 0xcf, 0x7b, 0xd8, 0xee, 0x7f, 0x95, 0xd4, 0x7d, 0x1b, 0x8a, + 0xc7, 0xaa, 0xe1, 0x2a, 0xfb, 0x96, 0xad, 0xf4, 0xba, 0xba, 0xea, 0x7a, 0xd1, 0x26, 0xf3, 0x84, + 0xfc, 0xd8, 0xb2, 0x77, 0x29, 0x11, 0x61, 0x40, 0x87, 0xa6, 0x75, 0x6c, 0x2a, 0x84, 0x4c, 0x81, + 0xf2, 0x89, 0xc9, 0x97, 0x90, 0xd7, 0xde, 0xff, 0x8f, 0xa7, 0xcb, 0x8f, 0x26, 0x8a, 0x21, 0xa3, + 0xf1, 0x72, 0xbd, 0x9e, 0xa1, 0x97, 0x77, 0x77, 0xeb, 0xeb, 0xb2, 0x48, 0x45, 0xbe, 0x64, 0x12, + 0x9b, 0x27, 0xa6, 0x23, 0xfd, 0xfd, 0x14, 0x88, 0x81, 0x8e, 0x92, 0x6c, 0xc8, 0x2a, 0xe4, 0x5f, + 0xf5, 0xb0, 0x6d, 0xbc, 0x46, 0x33, 0x02, 0x67, 0x24, 0x66, 0xe7, 0x3e, 0x2c, 0xb8, 0x27, 0xa6, + 0xc2, 0x22, 0xfc, 0x58, 0xe0, 0x87, 0x17, 0xb0, 0x50, 0x74, 0x49, 0x99, 0x09, 0x9d, 0x06, 0x7d, + 0x38, 0xe8, 0x33, 0x98, 0x8b, 0x68, 0x2b, 0xfd, 0xe5, 0xb4, 0x95, 0x3f, 0x0e, 0x29, 0xea, 0x8f, + 0x04, 0x40, 0x54, 0x51, 0x75, 0xb6, 0xc6, 0xff, 0x55, 0xe9, 0x4f, 0x77, 0x41, 0xa4, 0xf1, 0x98, + 0x8a, 0xb1, 0xaf, 0x74, 0x0c, 0xc7, 0x31, 0xcc, 0x16, 0xef, 0x50, 0x05, 0x4a, 0xaf, 0xef, 0x6f, + 0x31, 0xaa, 0xf4, 0x57, 0x60, 0x31, 0x52, 0x81, 0x24, 0x1b, 0xfb, 0x26, 0xcc, 0xed, 0xb3, 0x2d, + 0x58, 0x2a, 0x9c, 0x2f, 0x0f, 0xe6, 0x29, 0x8d, 0xbd, 0x4f, 0xfa, 0xf3, 0x14, 0x5c, 0x92, 0xb1, + 0x63, 0xb5, 0x8f, 0x70, 0xf2, 0x2a, 0xac, 0x01, 0xdf, 0x7b, 0x51, 0x5e, 0x4b, 0x93, 0x39, 0xc6, + 0xcc, 0xa6, 0xb9, 0xe8, 0x1a, 0xfb, 0x3b, 0xe3, 0x7b, 0xec, 0xf0, 0xaa, 0x3a, 0x5f, 0xa9, 0xcb, + 0x44, 0x56, 0xea, 0x2c, 0x28, 0xb2, 0xdd, 0x63, 0x5d, 0x71, 0xf0, 0x2b, 0xb3, 0xd7, 0xf1, 0xc0, + 0x50, 0x79, 0x5c, 0x21, 0xeb, 0x8c, 0xa5, 0x81, 0x5f, 0x6d, 0xf7, 0x3a, 0xd4, 0x77, 0x5e, 0xbb, + 0x42, 0xca, 0x7b, 0x76, 0xba, 0x5c, 0x88, 0xa4, 0x39, 0x72, 0xc1, 0xf0, 0x9f, 0x89, 0x74, 0xe9, + 0x5b, 0x70, 0x79, 0x40, 0xd9, 0x49, 0x7a, 0x3c, 0xff, 0x2a, 0x0d, 0xd7, 0xa2, 0xe2, 0x93, 0x86, + 0x38, 0x5f, 0xf5, 0x06, 0xad, 0xc1, 0x7c, 0xc7, 0x30, 0x5f, 0x6f, 0xf5, 0x72, 0xae, 0x63, 0x98, + 0x3e, 0x2d, 0xae, 0x6b, 0xcc, 0xfc, 0x42, 0xbb, 0x86, 0x0a, 0x4b, 0x71, 0x6d, 0x97, 0x64, 0xff, + 0xf8, 0xae, 0x00, 0x73, 0x49, 0x2f, 0xcb, 0xbd, 0x5e, 0x14, 0x9c, 0xd4, 0x84, 0xf9, 0x5f, 0xc0, + 0x3a, 0xde, 0xef, 0x09, 0x80, 0x9a, 0x76, 0xcf, 0x24, 0xa0, 0xf6, 0xa9, 0xd5, 0x4a, 0xb2, 0x9a, + 0x97, 0x60, 0xda, 0x30, 0x75, 0x7c, 0x42, 0xab, 0x99, 0x91, 0xd9, 0x43, 0x64, 0x2b, 0x31, 0x3d, + 0xd1, 0x56, 0xa2, 0xf4, 0x19, 0x2c, 0x46, 0x8a, 0x98, 0x64, 0xfd, 0xff, 0x2c, 0x05, 0x8b, 0xbc, + 0x22, 0x89, 0xaf, 0x60, 0x7e, 0x1d, 0xa6, 0xdb, 0x44, 0xe6, 0x98, 0x76, 0xa6, 0xef, 0xf4, 0xda, + 0x99, 0x66, 0x46, 0xbf, 0x06, 0xd0, 0xb5, 0xf1, 0x91, 0xc2, 0x58, 0xd3, 0x13, 0xb1, 0xe6, 0x08, + 0x07, 0x25, 0xa0, 0xef, 0x0b, 0x50, 0x24, 0x03, 0xba, 0x6b, 0x5b, 0x5d, 0xcb, 0x21, 0x3e, 0x8b, + 0x33, 0x19, 0xcc, 0x79, 0x7e, 0x76, 0xba, 0x3c, 0xbf, 0x65, 0x98, 0x3b, 0x9c, 0xb1, 0xd9, 0x98, + 0x38, 0xc0, 0xdf, 0x3b, 0xe6, 0x50, 0xae, 0xb4, 0x2d, 0xed, 0x30, 0xd8, 0x1c, 0x23, 0x96, 0xc5, + 0x17, 0xe7, 0x48, 0x3f, 0x11, 0xe0, 0xd2, 0x2f, 0x6c, 0xb9, 0xf8, 0x2f, 0x42, 0xd9, 0xd2, 0x0b, + 0x10, 0xe9, 0x8f, 0xba, 0xb9, 0x6f, 0x25, 0xb9, 0x70, 0xff, 0x7f, 0x04, 0x58, 0x08, 0x09, 0x4e, + 0xd2, 0xc1, 0x79, 0x5d, 0x3d, 0xcd, 0xb3, 0x70, 0x18, 0x77, 0x32, 0x55, 0xc9, 0x73, 0x3c, 0x3b, + 0xeb, 0x94, 0x65, 0x98, 0xc3, 0xc4, 0x8a, 0xd1, 0x25, 0xde, 0x3d, 0x76, 0xc8, 0x64, 0x60, 0x45, + 0x3f, 0xef, 0x67, 0x58, 0xeb, 0x4b, 0xbf, 0x41, 0x3c, 0xac, 0xf0, 0xa0, 0x4c, 0x72, 0xc8, 0xff, + 0xf3, 0x14, 0x5c, 0xa9, 0xb0, 0x2d, 0x70, 0x2f, 0x26, 0x24, 0xc9, 0x8e, 0x58, 0x82, 0xd9, 0x23, + 0x6c, 0x3b, 0x86, 0xc5, 0x66, 0xfb, 0x79, 0xd9, 0x7b, 0x44, 0x4b, 0x90, 0x75, 0x4c, 0xb5, 0xeb, + 0x1c, 0x58, 0xde, 0x76, 0xa2, 0xff, 0xec, 0xc7, 0xaf, 0x4c, 0xbf, 0x7e, 0xfc, 0xca, 0xcc, 0xf8, + 0xf8, 0x95, 0xd9, 0x2f, 0x11, 0xbf, 0xc2, 0xf7, 0xee, 0xfe, 0xbd, 0x00, 0x57, 0x87, 0x34, 0x97, + 0x64, 0xe7, 0xfc, 0x36, 0xe4, 0x35, 0x2e, 0x98, 0xcc, 0x0f, 0x6c, 0x63, 0xb2, 0x4e, 0xb2, 0xbd, + 0x26, 0xf4, 0x39, 0x3b, 0x5d, 0x06, 0xaf, 0xa8, 0xf5, 0x75, 0xae, 0x1c, 0xf2, 0x5b, 0x97, 0xfe, + 0x3b, 0x40, 0xb1, 0x7a, 0xc2, 0x16, 0xe5, 0x1b, 0xcc, 0x2b, 0x41, 0x8f, 0x21, 0xdb, 0xb5, 0xad, + 0x23, 0xc3, 0xab, 0x46, 0x21, 0x12, 0xbc, 0xe0, 0x55, 0x63, 0x80, 0x6b, 0x87, 0x73, 0xc8, 0x3e, + 0x2f, 0x6a, 0x42, 0xee, 0xa9, 0xa5, 0xa9, 0xed, 0xc7, 0x46, 0xdb, 0x1b, 0x68, 0xef, 0x9d, 0x2f, + 0xa8, 0xec, 0xf3, 0xec, 0xa8, 0xee, 0x81, 0xd7, 0x08, 0x3e, 0x11, 0xd5, 0x21, 0x5b, 0x73, 0xdd, + 0x2e, 0x49, 0xe4, 0xe3, 0xef, 0xce, 0x04, 0x42, 0x09, 0x8b, 0x17, 0x71, 0xeb, 0xb1, 0xa3, 0x26, + 0x2c, 0x3c, 0xa1, 0xe7, 0xc7, 0x2a, 0x6d, 0xab, 0xa7, 0x57, 0x2c, 0x73, 0xdf, 0x68, 0xf1, 0x69, + 0xe2, 0xf6, 0x04, 0x32, 0x9f, 0x54, 0x1a, 0xf2, 0xb0, 0x00, 0xb4, 0x0a, 0xd9, 0xc6, 0x23, 0x2e, + 0x8c, 0xb9, 0x91, 0xb7, 0x26, 0x10, 0xd6, 0x78, 0x24, 0xfb, 0x6c, 0x68, 0x03, 0xf2, 0xab, 0x9f, + 0xf7, 0x6c, 0xcc, 0xa5, 0xcc, 0x8c, 0x8c, 0x9c, 0x18, 0x94, 0x42, 0xb9, 0xe4, 0x30, 0x33, 0xfa, + 0x16, 0x14, 0x89, 0xde, 0x9a, 0xea, 0x5e, 0xdb, 0x93, 0x97, 0xa5, 0xf2, 0xbe, 0x36, 0x81, 0x3c, + 0x9f, 0xd3, 0xdb, 0x12, 0x18, 0x10, 0xb5, 0x24, 0xc3, 0x7c, 0xa4, 0xbd, 0x10, 0x82, 0x4c, 0x97, + 0x34, 0x8d, 0x40, 0xc3, 0x90, 0xe8, 0x6f, 0xf4, 0x2e, 0xcc, 0x9a, 0x96, 0x8e, 0xbd, 0xce, 0x3c, + 0xbf, 0x76, 0xe9, 0xec, 0x74, 0x79, 0x66, 0xdb, 0xd2, 0x99, 0xaf, 0xc3, 0x7f, 0xc9, 0x33, 0x24, + 0x53, 0x5d, 0x5f, 0xba, 0x01, 0x19, 0xd2, 0x44, 0xc4, 0x86, 0xec, 0xa9, 0x0e, 0xde, 0xb5, 0x0d, + 0x2e, 0xcd, 0x7b, 0x5c, 0xfa, 0x87, 0x29, 0x48, 0x35, 0x1e, 0x11, 0x6f, 0x7e, 0xaf, 0xa7, 0x1d, + 0x62, 0x97, 0xa7, 0xf3, 0x27, 0xea, 0xe5, 0xdb, 0x78, 0xdf, 0x60, 0x4e, 0x57, 0x4e, 0xe6, 0x4f, + 0xe8, 0x2d, 0x00, 0x55, 0xd3, 0xb0, 0xe3, 0x28, 0xde, 0x11, 0xc0, 0x9c, 0x9c, 0x63, 0x94, 0x4d, + 0xdc, 0x27, 0x6c, 0x0e, 0xd6, 0x6c, 0xec, 0x7a, 0x31, 0x54, 0xec, 0x89, 0xb0, 0xb9, 0xb8, 0xd3, + 0x55, 0x5c, 0xeb, 0x10, 0x9b, 0xb4, 0x49, 0x73, 0xc4, 0x2a, 0x74, 0xba, 0x4d, 0x42, 0x20, 0x06, + 0x0d, 0x9b, 0x7a, 0x60, 0x7d, 0x72, 0xb2, 0xff, 0x4c, 0x44, 0xda, 0xb8, 0x65, 0xf0, 0x03, 0x74, + 0x39, 0x99, 0x3f, 0x11, 0x2d, 0xa9, 0x3d, 0xf7, 0x80, 0xb6, 0x44, 0x4e, 0xa6, 0xbf, 0xd1, 0x6d, + 0x28, 0xb2, 0xb0, 0x4b, 0x05, 0x9b, 0x9a, 0x42, 0xed, 0x60, 0x8e, 0x26, 0xcf, 0x33, 0x72, 0xd5, + 0xd4, 0x88, 0xd5, 0x43, 0x8f, 0x80, 0x13, 0x94, 0xc3, 0x8e, 0x43, 0x74, 0x0a, 0x24, 0xd7, 0x5a, + 0xf1, 0xec, 0x74, 0x39, 0xdf, 0xa0, 0x09, 0x9b, 0x5b, 0x0d, 0x32, 0x97, 0xb0, 0x5c, 0x9b, 0x1d, + 0xa7, 0xae, 0x2f, 0xfd, 0x6d, 0x01, 0xd2, 0x4f, 0x2a, 0x8d, 0x0b, 0xab, 0xcc, 0x2b, 0x68, 0x3a, + 0x54, 0xd0, 0x3b, 0x50, 0xdc, 0x33, 0xda, 0x6d, 0xc3, 0x6c, 0x11, 0xff, 0xea, 0xdb, 0x58, 0xf3, + 0x14, 0x56, 0xe0, 0xe4, 0x1d, 0x46, 0x45, 0x37, 0x20, 0xaf, 0xd9, 0x58, 0xc7, 0xa6, 0x6b, 0xa8, + 0x6d, 0x87, 0x6b, 0x2e, 0x4c, 0x5a, 0xfa, 0xab, 0x02, 0x4c, 0xd3, 0xce, 0x8a, 0xde, 0x84, 0x9c, + 0x66, 0x99, 0xae, 0x6a, 0x98, 0xdc, 0xea, 0xe4, 0xe4, 0x80, 0x30, 0xb2, 0x78, 0x37, 0x61, 0x4e, + 0xd5, 0x34, 0xab, 0x67, 0xba, 0x8a, 0xa9, 0x76, 0x30, 0x2f, 0x66, 0x9e, 0xd3, 0xb6, 0xd5, 0x0e, + 0x46, 0xcb, 0xe0, 0x3d, 0xfa, 0x27, 0x3b, 0x73, 0x32, 0x70, 0xd2, 0x26, 0xee, 0x2f, 0x61, 0xc8, + 0xf9, 0xbd, 0x9a, 0xd4, 0xb7, 0xe7, 0xf8, 0x25, 0xa0, 0xbf, 0xd1, 0x7b, 0x70, 0xe9, 0x55, 0x4f, + 0x6d, 0x1b, 0xfb, 0x74, 0xf1, 0x8b, 0x46, 0xa9, 0xd3, 0x97, 0xb1, 0xa2, 0x20, 0x3f, 0x8d, 0x4a, + 0xa0, 0xef, 0xf4, 0x06, 0x41, 0x3a, 0x18, 0x04, 0x2c, 0x64, 0x47, 0xea, 0xc3, 0x82, 0x8c, 0x5d, + 0xbb, 0xdf, 0x64, 0x87, 0x5d, 0xab, 0x47, 0xd8, 0x74, 0x49, 0xdd, 0xad, 0x2e, 0x66, 0x41, 0x22, + 0x5e, 0xdd, 0x7d, 0x02, 0xba, 0x05, 0x05, 0xd5, 0x25, 0xdd, 0xcd, 0x55, 0xcc, 0x5e, 0x67, 0x0f, + 0xdb, 0x2c, 0x14, 0x40, 0x9e, 0xe7, 0xd4, 0x6d, 0x4a, 0xe4, 0x27, 0x32, 0xec, 0xbe, 0x42, 0xd7, + 0x89, 0xf8, 0xab, 0x81, 0x92, 0xaa, 0x84, 0x22, 0xfd, 0xa1, 0x00, 0x0b, 0x2c, 0x8e, 0x89, 0x45, + 0xac, 0x26, 0x37, 0xd9, 0x7f, 0x08, 0x39, 0x5d, 0x75, 0x55, 0x76, 0xca, 0x34, 0x35, 0xf6, 0x94, + 0xa9, 0x7f, 0xea, 0x41, 0x75, 0x55, 0x7a, 0xd2, 0x14, 0x41, 0x86, 0xfc, 0x66, 0x07, 0x72, 0x65, + 0xfa, 0x5b, 0xfa, 0x14, 0x50, 0xb8, 0xa0, 0x49, 0xba, 0x3d, 0xf7, 0xe0, 0x32, 0x69, 0xec, 0xaa, + 0xa9, 0xd9, 0xfd, 0x2e, 0x51, 0xef, 0x33, 0xfa, 0xd7, 0x41, 0x62, 0x68, 0xb3, 0x8a, 0xee, 0x51, + 0x49, 0x3f, 0x9e, 0x81, 0xf9, 0xea, 0x49, 0xd7, 0xb2, 0x13, 0x5d, 0xda, 0x5a, 0x83, 0x59, 0x8e, + 0xfe, 0xc7, 0xec, 0x47, 0x0f, 0x98, 0x61, 0x6f, 0x33, 0x9e, 0x33, 0xa2, 0x35, 0x00, 0x16, 0x55, + 0x4a, 0x83, 0x91, 0xd2, 0x17, 0xd8, 0x3e, 0xa3, 0x6c, 0xf4, 0xc4, 0xc5, 0x36, 0xe4, 0x3b, 0x47, + 0x9a, 0xa6, 0xec, 0x1b, 0x6d, 0x97, 0x07, 0xe7, 0xc5, 0xc7, 0x91, 0x6f, 0xbd, 0xa8, 0x54, 0x1e, + 0xd3, 0x4c, 0x2c, 0xa8, 0x2d, 0x78, 0x96, 0x81, 0x48, 0x60, 0xbf, 0xd1, 0xd7, 0x80, 0x9f, 0xfe, + 0x51, 0x1c, 0xef, 0x2c, 0xdf, 0xda, 0xfc, 0xd9, 0xe9, 0x72, 0x4e, 0xa6, 0xd4, 0x46, 0xa3, 0x29, + 0xe7, 0x58, 0x86, 0x86, 0xe3, 0x5e, 0xe4, 0xbc, 0xc7, 0xec, 0xe4, 0xe7, 0x3d, 0xfe, 0x86, 0x00, + 0x57, 0xb8, 0x8e, 0x94, 0x3d, 0x1a, 0xe3, 0xae, 0xb6, 0x0d, 0xb7, 0xaf, 0x1c, 0x1e, 0x95, 0xb2, + 0xd4, 0xef, 0xfb, 0xd5, 0x58, 0x5d, 0x87, 0x9a, 0xb8, 0xec, 0x69, 0xbc, 0xff, 0x94, 0x33, 0x6f, + 0x1e, 0x55, 0x4d, 0xd7, 0xee, 0xaf, 0x5d, 0x3d, 0x3b, 0x5d, 0x5e, 0x1c, 0x4e, 0x7d, 0x21, 0x2f, + 0x3a, 0xc3, 0x2c, 0xa8, 0x06, 0x80, 0xfd, 0x2e, 0x46, 0xcd, 0x78, 0xfc, 0xfc, 0x1d, 0xdb, 0x17, + 0xe5, 0x10, 0x2f, 0xba, 0x0b, 0x22, 0x3f, 0x5f, 0xb3, 0x6f, 0xb4, 0xb1, 0xe2, 0x18, 0x9f, 0x63, + 0x6a, 0xf0, 0xd3, 0x72, 0x81, 0xd1, 0x89, 0x88, 0x86, 0xf1, 0x39, 0x46, 0x0f, 0xe0, 0x72, 0xd0, + 0x02, 0xca, 0x1e, 0x6e, 0x5b, 0xc7, 0x2c, 0x7b, 0x9e, 0x66, 0x47, 0xbe, 0xf6, 0xd7, 0x48, 0x12, + 0x61, 0x59, 0xfa, 0x36, 0x94, 0x46, 0x55, 0x38, 0x3c, 0x20, 0x72, 0x6c, 0xd3, 0xf6, 0x83, 0xe8, + 0x8a, 0xcd, 0x04, 0x1d, 0x97, 0xaf, 0xda, 0x7c, 0x98, 0xfa, 0x40, 0x90, 0xfe, 0x41, 0x0a, 0xe6, + 0xd7, 0x7a, 0xed, 0xc3, 0x67, 0xdd, 0x06, 0xbb, 0x9b, 0x00, 0xbd, 0xe1, 0x99, 0x0d, 0x52, 0x48, + 0x81, 0x9d, 0xb3, 0xa3, 0x76, 0x81, 0xd4, 0xe6, 0x0e, 0x14, 0x43, 0x01, 0x31, 0x3c, 0xec, 0x9f, + 0x56, 0x3b, 0x20, 0xd3, 0xc8, 0xfc, 0x0f, 0xa0, 0x14, 0xca, 0x48, 0x97, 0x57, 0x14, 0x6c, 0xba, + 0xb6, 0x81, 0xd9, 0x12, 0x61, 0x5a, 0x0e, 0x45, 0xed, 0xd4, 0x49, 0x72, 0x95, 0xa5, 0xa2, 0x26, + 0xcc, 0x91, 0x8c, 0x7d, 0x85, 0x4e, 0x05, 0xde, 0x12, 0xee, 0x83, 0x98, 0x6a, 0x45, 0xca, 0x5d, + 0xa6, 0xfa, 0xa9, 0x50, 0x1e, 0xfa, 0x53, 0xce, 0xe3, 0x80, 0xb2, 0xf4, 0x09, 0x88, 0x83, 0x19, + 0xc2, 0xba, 0xcc, 0x30, 0x5d, 0x5e, 0x0a, 0xeb, 0x32, 0x1d, 0xd2, 0xd3, 0x46, 0x26, 0x9b, 0x11, + 0xa7, 0xa5, 0x9f, 0xa4, 0xa1, 0xe0, 0xf5, 0xcc, 0x24, 0xb1, 0xc5, 0x1a, 0x4c, 0x93, 0x7e, 0xe4, + 0xc5, 0x98, 0xdc, 0x1e, 0x33, 0x20, 0x78, 0xa0, 0x39, 0xe9, 0x5f, 0x1e, 0x0c, 0xa6, 0xac, 0x49, + 0x98, 0x9f, 0xa5, 0xff, 0x21, 0x40, 0x86, 0xba, 0xf3, 0x0f, 0x20, 0x43, 0xa7, 0x0d, 0x61, 0x92, + 0x69, 0x83, 0x66, 0xf5, 0x67, 0xd7, 0x54, 0xc8, 0xc5, 0x5c, 0xa3, 0x41, 0x4e, 0x96, 0xed, 0x62, + 0x9d, 0xbb, 0xcb, 0x37, 0xce, 0x6b, 0x47, 0x6f, 0x2a, 0xf2, 0xf8, 0xd0, 0x35, 0x48, 0x13, 0xdb, + 0x35, 0xcb, 0xe2, 0x15, 0xce, 0x4e, 0x97, 0xd3, 0xc4, 0x6a, 0x11, 0x1a, 0x5a, 0x81, 0x7c, 0xd4, + 0x9a, 0x10, 0x8f, 0x8b, 0x9a, 0xc3, 0x90, 0x25, 0x80, 0xb6, 0x3f, 0x84, 0x18, 0x54, 0x64, 0x6d, + 0xc9, 0x23, 0x15, 0x7e, 0x5b, 0xe0, 0x81, 0x99, 0x0d, 0x8d, 0x4c, 0xdc, 0x76, 0x92, 0x93, 0xca, + 0x3d, 0x10, 0x6d, 0xd5, 0xd4, 0xad, 0x8e, 0xf1, 0x39, 0x66, 0x4b, 0x13, 0x0e, 0xdf, 0xb3, 0x29, + 0xfa, 0x74, 0xba, 0x86, 0xe0, 0x48, 0xff, 0x4d, 0xe0, 0x41, 0x9c, 0x7e, 0x31, 0x92, 0xdd, 0x59, + 0xcf, 0xf3, 0x75, 0x4d, 0x73, 0xdf, 0xf2, 0x62, 0x50, 0xde, 0x1c, 0x15, 0x71, 0x55, 0x37, 0xf7, + 0x2d, 0x6f, 0x8f, 0xd0, 0xf6, 0x08, 0xce, 0xd2, 0xaf, 0xc3, 0x34, 0x4d, 0x7e, 0x8d, 0xbe, 0xe1, + 0x07, 0x0e, 0xa7, 0xc4, 0xb4, 0xf4, 0xa7, 0x29, 0x78, 0x87, 0x56, 0xf5, 0x05, 0xb6, 0x8d, 0xfd, + 0xfe, 0x8e, 0x6d, 0xb9, 0x58, 0x73, 0xb1, 0x1e, 0x2c, 0xcd, 0x25, 0xd8, 0x04, 0x3a, 0xe4, 0xf8, + 0xa6, 0xa6, 0xa1, 0xf3, 0xeb, 0x43, 0x9e, 0x7c, 0x39, 0xc8, 0x9e, 0x65, 0x9b, 0xa1, 0xf5, 0x75, + 0x39, 0xcb, 0x24, 0xd7, 0x75, 0xb4, 0x0a, 0xb9, 0xae, 0x57, 0x8d, 0x0b, 0xc5, 0xcd, 0xf8, 0x5c, + 0x68, 0x13, 0x8a, 0xbc, 0xa0, 0x6a, 0xdb, 0x38, 0xc2, 0x8a, 0xea, 0x5e, 0x64, 0x08, 0xcf, 0x33, + 0xde, 0x55, 0xc2, 0xba, 0xea, 0x4a, 0x7f, 0x2b, 0x03, 0xb7, 0xce, 0x51, 0x71, 0x92, 0xdd, 0x6b, + 0x09, 0xb2, 0x47, 0xe4, 0x45, 0x06, 0xaf, 0x7d, 0x56, 0xf6, 0x9f, 0xd1, 0x5e, 0x64, 0x1e, 0xd8, + 0x57, 0x8d, 0x36, 0x99, 0x37, 0x58, 0xa4, 0xe2, 0xe8, 0x58, 0xa8, 0xf8, 0xc8, 0xbf, 0xd0, 0x8c, + 0xf1, 0x98, 0x0a, 0xa2, 0xd9, 0x1c, 0xf4, 0x5d, 0x01, 0x96, 0xd8, 0x0b, 0x59, 0xb8, 0xdc, 0xc0, + 0x6b, 0x32, 0xf4, 0x35, 0xeb, 0x31, 0xaf, 0x99, 0x48, 0x47, 0xe5, 0xd0, 0xbb, 0x78, 0x41, 0x4a, + 0xe1, 0xb7, 0x85, 0x8b, 0xb2, 0xf4, 0x3b, 0x02, 0xe4, 0x43, 0x04, 0x74, 0x7b, 0xe8, 0x70, 0x52, + 0xfe, 0x2c, 0xee, 0x44, 0xd2, 0xad, 0xa1, 0x13, 0x49, 0x6b, 0xd9, 0x2f, 0x4e, 0x97, 0x33, 0x32, + 0x0b, 0x7a, 0xf7, 0xce, 0x26, 0xdd, 0x0c, 0xee, 0xc2, 0x49, 0x0f, 0x64, 0xf2, 0x2e, 0xc3, 0xa1, + 0xd8, 0x56, 0xf5, 0xf6, 0xd2, 0x28, 0xb6, 0x25, 0x4f, 0xd2, 0x0f, 0x52, 0xb0, 0xb0, 0xaa, 0xeb, + 0x8d, 0x06, 0xc5, 0x43, 0x49, 0x8e, 0x31, 0x0f, 0x2b, 0xa4, 0x02, 0xac, 0x80, 0xde, 0x05, 0xa4, + 0x1b, 0x0e, 0xbb, 0x53, 0xc2, 0x39, 0x50, 0x75, 0xeb, 0x38, 0xd8, 0x32, 0x5f, 0xf0, 0x52, 0x1a, + 0x5e, 0x02, 0x6a, 0x00, 0x75, 0x5a, 0x15, 0xc7, 0x55, 0xfd, 0x2d, 0x81, 0x5b, 0x13, 0x1d, 0xcd, + 0x61, 0xde, 0xac, 0xff, 0x28, 0xe7, 0x88, 0x1c, 0xfa, 0x93, 0xf8, 0x68, 0x06, 0x69, 0x14, 0x57, + 0x51, 0x1d, 0xef, 0x50, 0x09, 0xbb, 0xcd, 0xa2, 0xc0, 0xe8, 0xab, 0x0e, 0x3b, 0x2b, 0xc2, 0x62, + 0xd1, 0x03, 0xd5, 0x24, 0x89, 0x6c, 0xfe, 0x9e, 0x00, 0x05, 0x19, 0xef, 0xdb, 0xd8, 0x49, 0x14, + 0xdb, 0x3d, 0x86, 0x39, 0x9b, 0x49, 0x55, 0xf6, 0x6d, 0xab, 0x73, 0x11, 0x5b, 0x91, 0xe7, 0x8c, + 0x8f, 0x6d, 0xab, 0xc3, 0x4d, 0xf2, 0x0b, 0x28, 0xfa, 0x65, 0x4c, 0xb2, 0xf2, 0x7f, 0x48, 0x8f, + 0x9d, 0x32, 0xc1, 0x49, 0xef, 0x5d, 0x27, 0xab, 0x01, 0xba, 0xa8, 0x1f, 0x2e, 0x68, 0x92, 0x6a, + 0xf8, 0xaf, 0x02, 0x14, 0x1a, 0xbd, 0x3d, 0x76, 0x57, 0x52, 0x72, 0x1a, 0xa8, 0x42, 0xae, 0x8d, + 0xf7, 0x5d, 0xe5, 0xb5, 0xa2, 0xa8, 0xb3, 0x84, 0x95, 0xc6, 0x90, 0x3f, 0x01, 0xb0, 0xe9, 0xb9, + 0x2b, 0x2a, 0x27, 0x7d, 0x41, 0x39, 0x39, 0xca, 0x4b, 0xc8, 0x64, 0xd6, 0x29, 0xfa, 0xd5, 0x4c, + 0x72, 0x7e, 0x79, 0x19, 0xb1, 0x0e, 0xe9, 0x8b, 0x58, 0x87, 0x05, 0xbe, 0x5d, 0x1f, 0x6f, 0x21, + 0xca, 0xb0, 0x48, 0xdd, 0x32, 0x45, 0xed, 0x76, 0xdb, 0x86, 0x87, 0x53, 0xa8, 0xfd, 0xc9, 0xc8, + 0x0b, 0x34, 0x69, 0x95, 0xa5, 0x50, 0x84, 0x82, 0xbe, 0x23, 0xc0, 0xdc, 0xbe, 0x8d, 0xf1, 0xe7, + 0x58, 0xa1, 0x26, 0x79, 0xb2, 0x78, 0x84, 0x75, 0x52, 0x86, 0x2f, 0xbd, 0x5f, 0x99, 0x67, 0x2f, + 0x6e, 0x90, 0xf7, 0xa2, 0x6d, 0x10, 0xb5, 0x36, 0xdb, 0x41, 0xf5, 0x63, 0x23, 0x66, 0x26, 0x1f, + 0x00, 0x45, 0xc6, 0x1c, 0x84, 0x47, 0x3c, 0x27, 0x83, 0x49, 0xd5, 0x15, 0x7e, 0x3f, 0x1d, 0x75, + 0xb6, 0xa3, 0xb1, 0x11, 0xe1, 0xf3, 0xe7, 0xa1, 0x6b, 0xed, 0xca, 0x32, 0x56, 0x75, 0xee, 0xb9, + 0x93, 0x71, 0xe5, 0x3f, 0xf0, 0x71, 0xf5, 0x12, 0x16, 0x68, 0xbf, 0x49, 0xfa, 0x18, 0xa9, 0xf4, + 0x8f, 0xd3, 0x80, 0xc2, 0x92, 0x7f, 0x71, 0xfd, 0x2d, 0x95, 0x5c, 0x7f, 0xdb, 0x00, 0x29, 0xe4, + 0x0c, 0xb5, 0x55, 0xc7, 0x55, 0x58, 0x10, 0x9e, 0xa3, 0x74, 0xb1, 0xad, 0x38, 0x58, 0xb3, 0xf8, + 0x4d, 0x42, 0x82, 0x7c, 0x3d, 0xc8, 0xf9, 0x54, 0x75, 0xdc, 0xe7, 0x2c, 0xdf, 0x0e, 0xb6, 0x1b, + 0x34, 0x17, 0x7a, 0x04, 0x57, 0x3a, 0xea, 0x49, 0x1c, 0xff, 0x34, 0xe5, 0x5f, 0xec, 0xa8, 0x27, + 0x43, 0x4c, 0x1f, 0xc2, 0x52, 0x3c, 0x93, 0xe2, 0x60, 0x6f, 0x93, 0xee, 0x4a, 0x0c, 0x63, 0x03, + 0xbb, 0x68, 0x15, 0x20, 0x00, 0x11, 0x7c, 0x8e, 0x9e, 0x04, 0x43, 0xe4, 0x7c, 0x0c, 0x21, 0x7d, + 0x4f, 0x80, 0xc2, 0x96, 0xd1, 0xb2, 0xd5, 0x44, 0xef, 0xe9, 0x41, 0x1f, 0x46, 0x77, 0x35, 0xf3, + 0x0f, 0x97, 0xe2, 0xa2, 0x56, 0x58, 0x0e, 0x6f, 0xd1, 0x8e, 0x33, 0x90, 0xa9, 0xcf, 0x2f, 0x51, + 0xa2, 0x97, 0xfc, 0x2c, 0xc1, 0x1c, 0x2f, 0xf7, 0xae, 0x69, 0x58, 0x26, 0x7a, 0x00, 0xe9, 0x16, + 0x5f, 0xdf, 0xcf, 0xc7, 0xae, 0xe8, 0x05, 0xb7, 0xe0, 0xd5, 0xa6, 0x64, 0x92, 0x97, 0xb0, 0x74, + 0x7b, 0x6e, 0x0c, 0xa0, 0x08, 0x02, 0xb9, 0xc3, 0x2c, 0xdd, 0x9e, 0x8b, 0x1a, 0x50, 0xd4, 0x82, + 0xab, 0xb7, 0x14, 0xc2, 0x9e, 0x1e, 0xb9, 0xcc, 0x15, 0x7b, 0x09, 0x5a, 0x6d, 0x4a, 0x2e, 0x68, + 0x91, 0x04, 0x54, 0x09, 0xdf, 0xf8, 0x94, 0x19, 0x8a, 0x12, 0x0b, 0xce, 0x0b, 0x47, 0x6f, 0x9b, + 0xaa, 0x4d, 0x85, 0x2e, 0x86, 0x42, 0x1f, 0xc2, 0x8c, 0x4e, 0xef, 0x16, 0xe2, 0x46, 0x33, 0xae, + 0xa1, 0x23, 0x57, 0x38, 0xd5, 0xa6, 0x64, 0xce, 0x81, 0x36, 0x60, 0x8e, 0xfd, 0x62, 0x2e, 0x3d, + 0x37, 0x75, 0xb7, 0x46, 0x4b, 0x08, 0x39, 0x1b, 0xb5, 0x29, 0x39, 0xaf, 0x07, 0x54, 0xf4, 0x04, + 0xf2, 0x5a, 0x1b, 0xab, 0x36, 0x17, 0x75, 0x7b, 0xe4, 0xd1, 0xb6, 0xa1, 0xfb, 0x88, 0x6a, 0x53, + 0x32, 0x68, 0x3e, 0x91, 0x14, 0xca, 0xa6, 0xd7, 0xd2, 0x70, 0x49, 0xef, 0x8d, 0x2c, 0xd4, 0xf0, + 0x1d, 0x3f, 0x35, 0xea, 0x84, 0xf8, 0x54, 0xf4, 0x75, 0xc8, 0x38, 0x9a, 0x6a, 0x72, 0xbb, 0x7b, + 0x7d, 0xc4, 0xbd, 0x21, 0x01, 0x33, 0xcd, 0x8d, 0x3e, 0x62, 0x68, 0xc0, 0x3d, 0xf1, 0xd6, 0x32, + 0xe3, 0x74, 0x1a, 0x39, 0x9f, 0x4e, 0x74, 0x8a, 0x29, 0x81, 0xe8, 0x41, 0x25, 0xf0, 0x47, 0xa1, + 0x87, 0x46, 0xe9, 0xe2, 0x65, 0xbc, 0x1e, 0x86, 0x0e, 0xf9, 0xd6, 0xe8, 0x21, 0x78, 0x8f, 0x88, + 0xb6, 0x60, 0x9e, 0x09, 0xea, 0xb1, 0xf3, 0xa7, 0xa5, 0x95, 0x91, 0x5b, 0xb5, 0x31, 0x27, 0x60, + 0x6b, 0x53, 0xf2, 0x9c, 0x1a, 0x22, 0x07, 0xe5, 0xea, 0x60, 0xbb, 0xc5, 0x56, 0x49, 0xc7, 0x94, + 0x2b, 0x1c, 0xff, 0xe6, 0x97, 0x8b, 0x12, 0xd1, 0x6f, 0xc1, 0x25, 0x26, 0xc8, 0xe5, 0x61, 0x3d, + 0x3c, 0x3a, 0xe4, 0xad, 0x91, 0xdb, 0xac, 0x23, 0xcf, 0x8c, 0xd6, 0xa6, 0x64, 0xa4, 0x0e, 0x25, + 0x22, 0x0d, 0x2e, 0xb3, 0x37, 0xf0, 0x43, 0x87, 0x36, 0x3f, 0x27, 0x57, 0x7a, 0x9b, 0xbe, 0xe2, + 0xdd, 0x51, 0xaf, 0x88, 0x3d, 0x0b, 0x59, 0x9b, 0x92, 0x17, 0xd5, 0xe1, 0xd4, 0xa0, 0x1a, 0x36, + 0x3f, 0xde, 0xc5, 0xbb, 0xdb, 0xbb, 0xe3, 0xab, 0x11, 0x77, 0x2c, 0xce, 0xaf, 0x46, 0x24, 0x91, + 0x34, 0xa0, 0x7f, 0xb8, 0x9d, 0x76, 0xa6, 0xb9, 0x91, 0x0d, 0x18, 0x73, 0x06, 0x8c, 0x34, 0xe0, + 0x41, 0x88, 0x8c, 0xca, 0x90, 0x6a, 0x69, 0xa5, 0xf9, 0x91, 0xf3, 0x83, 0x7f, 0xce, 0xa9, 0x36, + 0x25, 0xa7, 0x5a, 0x1a, 0xfa, 0x04, 0xb2, 0xec, 0xd0, 0xca, 0x89, 0x59, 0x2a, 0x8c, 0x34, 0xb8, + 0xd1, 0xa3, 0x3f, 0xb5, 0x29, 0x99, 0x9e, 0x93, 0xe1, 0x1d, 0x99, 0x1f, 0x48, 0xa0, 0x22, 0xca, + 0x63, 0xce, 0xaa, 0x0e, 0x1c, 0x0b, 0x21, 0x1d, 0xc6, 0xf6, 0x89, 0x68, 0x07, 0x0a, 0x36, 0x0b, + 0xd9, 0xf4, 0x02, 0xac, 0xc5, 0x91, 0x81, 0x0c, 0x71, 0x31, 0xd6, 0x35, 0xba, 0x0e, 0x13, 0xa2, + 0x93, 0xb6, 0x8b, 0x4a, 0xe4, 0x6d, 0xb7, 0x30, 0xb2, 0xed, 0x46, 0xc6, 0xfb, 0x92, 0xb6, 0xb3, + 0x87, 0x12, 0xd1, 0xfb, 0x30, 0xcd, 0xc6, 0x09, 0xa2, 0x22, 0xe3, 0x62, 0x73, 0x06, 0x86, 0x08, + 0xcb, 0x4f, 0xac, 0x97, 0xcb, 0xe3, 0x16, 0x95, 0xb6, 0xd5, 0x2a, 0x2d, 0x8e, 0xb4, 0x5e, 0xc3, + 0x11, 0x98, 0xc4, 0x7a, 0xb9, 0x01, 0x95, 0x74, 0x20, 0x9b, 0xa5, 0xf0, 0x21, 0x76, 0x69, 0x64, + 0x07, 0x8a, 0x09, 0x67, 0xac, 0xd1, 0x13, 0x25, 0x01, 0xd9, 0x37, 0xac, 0x0e, 0x56, 0xa8, 0x51, + 0xbc, 0x3c, 0xde, 0xb0, 0x46, 0x2e, 0x73, 0xf2, 0x0d, 0x2b, 0xa3, 0xa2, 0x17, 0x20, 0xf2, 0x1b, + 0x45, 0x14, 0x2f, 0xbc, 0xa6, 0x74, 0x85, 0xca, 0xbb, 0x17, 0x3b, 0x21, 0xc6, 0x45, 0x5e, 0xd5, + 0x88, 0xc3, 0x1c, 0x4d, 0x41, 0x9f, 0xc2, 0x02, 0x95, 0xa7, 0x68, 0xc1, 0x25, 0x30, 0xa5, 0xd2, + 0xd0, 0x95, 0x22, 0xa3, 0xef, 0x8b, 0xf1, 0x24, 0x8b, 0xda, 0x40, 0x12, 0x19, 0x0f, 0x86, 0x69, + 0xb8, 0x74, 0xee, 0x5e, 0x1a, 0x39, 0x1e, 0xa2, 0x17, 0x60, 0x92, 0xf1, 0x60, 0x30, 0x0a, 0xe9, + 0xc6, 0x03, 0x16, 0xef, 0xcd, 0x91, 0xdd, 0x78, 0x84, 0xb1, 0x9b, 0x77, 0x23, 0x76, 0x6e, 0x1d, + 0x80, 0xc1, 0x24, 0xea, 0xf9, 0x5d, 0x1f, 0xe9, 0x00, 0x0c, 0x86, 0x1b, 0x12, 0x07, 0xa0, 0xed, + 0xd1, 0xc8, 0x38, 0xa5, 0x8b, 0x30, 0x0a, 0xbd, 0x9a, 0xa9, 0xb4, 0x3c, 0x72, 0x9c, 0x0e, 0xed, + 0x86, 0x93, 0x71, 0x7a, 0xec, 0x13, 0x89, 0x27, 0xc1, 0x36, 0x07, 0x4a, 0x37, 0x46, 0xcf, 0x7a, + 0xe1, 0xed, 0x43, 0x3a, 0xeb, 0x51, 0x02, 0x5a, 0x85, 0x1c, 0x71, 0x7e, 0xfb, 0xd4, 0x54, 0xdc, + 0x1c, 0x89, 0x75, 0x07, 0x0e, 0x34, 0xd5, 0xa6, 0xe4, 0xec, 0x2b, 0x4e, 0x22, 0xdd, 0x93, 0x89, + 0xe0, 0x46, 0xe2, 0xfe, 0xc8, 0xee, 0x39, 0x7c, 0x92, 0x85, 0x74, 0xcf, 0x57, 0x01, 0x35, 0x98, + 0x3b, 0x1d, 0xb6, 0xec, 0x5f, 0x7a, 0x67, 0xfc, 0xdc, 0x19, 0xdd, 0xa4, 0xf0, 0xe7, 0x4e, 0x4e, + 0x66, 0x73, 0xa7, 0xae, 0x38, 0x0e, 0x0d, 0x87, 0x28, 0xdd, 0x1a, 0x33, 0x77, 0x0e, 0x2c, 0x04, + 0xb2, 0xb9, 0x53, 0x6f, 0x30, 0x4e, 0xe2, 0x46, 0xda, 0xde, 0x55, 0x3c, 0x1c, 0x06, 0xdd, 0x19, + 0xe9, 0x46, 0xc6, 0xde, 0x15, 0x44, 0xdc, 0x48, 0x3b, 0x92, 0x80, 0x7e, 0x0d, 0x66, 0xf9, 0xc2, + 0x4b, 0xe9, 0xee, 0x18, 0xc7, 0x3a, 0xbc, 0x56, 0x46, 0xfa, 0x35, 0xe7, 0x61, 0x56, 0x86, 0x2d, + 0xf8, 0x30, 0x2b, 0x7a, 0x6f, 0x8c, 0x95, 0x19, 0x5a, 0x73, 0x62, 0x56, 0x26, 0x20, 0x93, 0xd2, + 0x38, 0x6c, 0xb1, 0xa2, 0xf4, 0x2b, 0x23, 0x4b, 0x13, 0x5d, 0xb5, 0x21, 0xa5, 0xe1, 0x3c, 0x74, + 0xd6, 0xa1, 0x93, 0x3e, 0xd3, 0xce, 0xd7, 0x46, 0xcf, 0x3a, 0x83, 0xf0, 0xb7, 0xe6, 0x6d, 0xab, + 0x30, 0xad, 0xfc, 0x35, 0x01, 0x6e, 0xb0, 0x3e, 0x40, 0x17, 0x95, 0xfb, 0x8a, 0xbf, 0x27, 0x10, + 0xc2, 0xf6, 0x0f, 0xa8, 0xf8, 0xf7, 0x2f, 0xbe, 0x84, 0xed, 0xbd, 0xf1, 0x2d, 0x75, 0x5c, 0x3e, + 0xa2, 0x8c, 0x0e, 0x43, 0x41, 0xa5, 0x87, 0x23, 0x95, 0x11, 0x45, 0x6e, 0x44, 0x19, 0x9c, 0x67, + 0x6d, 0x96, 0x6f, 0x9b, 0xfa, 0xe7, 0x44, 0x8b, 0xa2, 0xb8, 0x91, 0xc9, 0x5e, 0x15, 0x4b, 0x1b, + 0x99, 0xec, 0x35, 0x71, 0x69, 0x23, 0x93, 0x7d, 0x43, 0x7c, 0x73, 0x23, 0x93, 0x95, 0xc4, 0xb7, + 0xa5, 0x9f, 0x5f, 0x83, 0x79, 0x0f, 0x3e, 0x31, 0x68, 0xf4, 0x30, 0x0c, 0x8d, 0xae, 0x8f, 0x82, + 0x46, 0x1c, 0x70, 0x71, 0x6c, 0xf4, 0x30, 0x8c, 0x8d, 0xae, 0x8f, 0xc2, 0x46, 0x01, 0x0f, 0x01, + 0x47, 0xcd, 0x51, 0xe0, 0xe8, 0xde, 0x04, 0xe0, 0xc8, 0x17, 0x35, 0x88, 0x8e, 0xd6, 0x87, 0xd1, + 0xd1, 0x3b, 0xe3, 0xd1, 0x91, 0x2f, 0x2a, 0x04, 0x8f, 0x3e, 0x1a, 0x80, 0x47, 0x37, 0xc7, 0xc0, + 0x23, 0x9f, 0xdf, 0xc3, 0x47, 0x9b, 0xb1, 0xf8, 0xe8, 0xf6, 0x79, 0xf8, 0xc8, 0x97, 0x13, 0x01, + 0x48, 0xb5, 0x38, 0x80, 0x74, 0xeb, 0x1c, 0x80, 0xe4, 0x8b, 0x0a, 0x23, 0xa4, 0xcd, 0x58, 0x84, + 0x74, 0xfb, 0x3c, 0x84, 0x14, 0x14, 0x2b, 0x0c, 0x91, 0xbe, 0x11, 0x81, 0x48, 0xcb, 0x23, 0x21, + 0x92, 0xcf, 0xcd, 0x30, 0xd2, 0xc7, 0x83, 0x18, 0xe9, 0xe6, 0x18, 0x8c, 0x14, 0x28, 0x96, 0x83, + 0xa4, 0x5a, 0x1c, 0x48, 0xba, 0x75, 0x0e, 0x48, 0x0a, 0x74, 0x11, 0x42, 0x49, 0xdb, 0xf1, 0x28, + 0xe9, 0xce, 0xb9, 0x28, 0xc9, 0x97, 0x16, 0x85, 0x49, 0xb5, 0x38, 0x98, 0x74, 0xeb, 0x1c, 0x98, + 0x34, 0x50, 0x32, 0x86, 0x93, 0xd4, 0xb1, 0x38, 0xe9, 0xdd, 0x09, 0x71, 0x92, 0x2f, 0x3a, 0x0e, + 0x28, 0xe9, 0xe3, 0x81, 0x52, 0x79, 0x52, 0xa0, 0xe4, 0xbf, 0x24, 0x16, 0x29, 0xa9, 0x63, 0x91, + 0xd2, 0xbb, 0x13, 0x22, 0xa5, 0x81, 0x8a, 0x44, 0xa1, 0xd2, 0x76, 0x3c, 0x54, 0xba, 0x73, 0x2e, + 0x54, 0x0a, 0x5a, 0x31, 0x82, 0x95, 0x56, 0x42, 0x58, 0xe9, 0xad, 0x11, 0x58, 0xc9, 0x67, 0x25, + 0x60, 0xe9, 0x9b, 0x43, 0x60, 0x49, 0x1a, 0x07, 0x96, 0x7c, 0x5e, 0x1f, 0x2d, 0xd5, 0xe2, 0xd0, + 0xd2, 0xad, 0x73, 0xd0, 0x52, 0xd0, 0x6f, 0x42, 0x70, 0xe9, 0xf9, 0x08, 0xb8, 0x74, 0xf7, 0x7c, + 0xb8, 0xe4, 0xcb, 0x1b, 0xc0, 0x4b, 0xea, 0x58, 0xbc, 0xf4, 0xee, 0x84, 0x78, 0x29, 0x68, 0xc1, + 0x18, 0xc0, 0xf4, 0x41, 0x14, 0x30, 0xdd, 0x18, 0x0d, 0x98, 0x7c, 0x31, 0x1c, 0x31, 0x6d, 0xc6, + 0x22, 0xa6, 0xdb, 0xe7, 0x21, 0xa6, 0xc0, 0x9a, 0x85, 0x21, 0xd3, 0x76, 0x3c, 0x64, 0xba, 0x73, + 0x2e, 0x64, 0x0a, 0x3a, 0x52, 0x04, 0x33, 0x6d, 0xc6, 0x62, 0xa6, 0xdb, 0xe7, 0x61, 0xa6, 0x01, + 0x53, 0xcb, 0x41, 0xd3, 0xcb, 0x91, 0xa0, 0xe9, 0xfe, 0x24, 0xa0, 0xc9, 0x17, 0x3a, 0x84, 0x9a, + 0x3e, 0x1b, 0x8d, 0x9a, 0x7e, 0xe5, 0x02, 0xb7, 0x6c, 0xc6, 0xc2, 0xa6, 0x6f, 0x0e, 0xc1, 0x26, + 0x69, 0x1c, 0x6c, 0x0a, 0x46, 0x86, 0x87, 0x9b, 0xaa, 0x31, 0x28, 0xe7, 0x9d, 0xf1, 0x28, 0x27, + 0x98, 0xc8, 0x03, 0x98, 0x53, 0x8b, 0x83, 0x39, 0xb7, 0xce, 0x81, 0x39, 0xc1, 0x00, 0x0b, 0xe1, + 0x9c, 0x8f, 0x06, 0x70, 0xce, 0xcd, 0x73, 0xa3, 0xc2, 0x42, 0x40, 0x67, 0x6d, 0x18, 0xe8, 0xbc, + 0x3d, 0x16, 0xe8, 0xf8, 0x12, 0x02, 0xa4, 0xb3, 0x19, 0x8b, 0x74, 0x6e, 0x9f, 0x87, 0x74, 0x82, + 0x4e, 0x15, 0x86, 0x3a, 0xdb, 0xf1, 0x50, 0xe7, 0xce, 0xb9, 0x50, 0x67, 0x60, 0x02, 0xf4, 0xb0, + 0x4e, 0x2d, 0x0e, 0xeb, 0xdc, 0x3a, 0x07, 0xeb, 0x84, 0x27, 0x40, 0x1f, 0xec, 0x34, 0x47, 0x81, + 0x9d, 0x7b, 0x13, 0x80, 0x9d, 0xc0, 0x2d, 0x1c, 0x40, 0x3b, 0x9f, 0x0c, 0xa2, 0x1d, 0x69, 0x1c, + 0xda, 0x09, 0xba, 0xa3, 0x07, 0x77, 0xb6, 0xe3, 0xe1, 0xce, 0x9d, 0x73, 0xe1, 0x4e, 0xd8, 0x42, + 0x84, 0xf0, 0xce, 0x27, 0x83, 0x78, 0x47, 0x1a, 0x87, 0x77, 0x82, 0xf2, 0x78, 0x80, 0xa7, 0x16, + 0x07, 0x78, 0x6e, 0x9d, 0x03, 0x78, 0x42, 0x13, 0x47, 0x80, 0x78, 0xfe, 0xfa, 0xe4, 0x88, 0xe7, + 0x83, 0xd7, 0x0d, 0xda, 0x39, 0x1f, 0xf2, 0x7c, 0x32, 0x08, 0x79, 0xa4, 0x71, 0x90, 0x27, 0xd0, + 0xc7, 0x85, 0x31, 0xcf, 0x9b, 0xe2, 0x5b, 0x1c, 0xf9, 0xfc, 0xf9, 0x0c, 0xcc, 0xf0, 0xaf, 0x46, + 0x45, 0x6e, 0x5a, 0x12, 0x5e, 0xe7, 0xa6, 0x25, 0xb4, 0x4e, 0x3a, 0x18, 0x75, 0x7d, 0xce, 0xbf, + 0x9f, 0x6f, 0xf8, 0x06, 0x39, 0xce, 0xfa, 0x1a, 0x47, 0x9e, 0xd1, 0x37, 0x60, 0xbe, 0xe7, 0x60, + 0x5b, 0xe9, 0xda, 0x86, 0x65, 0x1b, 0x2e, 0x3b, 0xbc, 0x21, 0xac, 0x89, 0x5f, 0x9c, 0x2e, 0xcf, + 0xed, 0x3a, 0xd8, 0xde, 0xe1, 0x74, 0x79, 0xae, 0x17, 0x7a, 0xf2, 0x3e, 0x94, 0x35, 0x3d, 0xf9, + 0x87, 0xb2, 0x9e, 0x83, 0x48, 0x77, 0xa5, 0xc3, 0xb3, 0x05, 0xbb, 0xd5, 0x28, 0x7e, 0x62, 0x53, + 0xf5, 0xd0, 0x84, 0x40, 0x6f, 0x37, 0x2a, 0xda, 0x51, 0x22, 0x6a, 0x00, 0xbd, 0x6f, 0x44, 0xe9, + 0x5a, 0x6d, 0x43, 0xeb, 0x53, 0x27, 0x20, 0x7a, 0xc3, 0xf3, 0xd8, 0x7b, 0xd6, 0x5f, 0xaa, 0x86, + 0xbb, 0x43, 0x39, 0x65, 0x38, 0xf6, 0x7f, 0xa3, 0x07, 0x70, 0xb9, 0xa3, 0x9e, 0xd0, 0x73, 0x16, + 0x8a, 0x37, 0xab, 0xd3, 0xcb, 0xbe, 0xd8, 0x27, 0xb3, 0x50, 0x47, 0x3d, 0xa1, 0x9f, 0xf2, 0x62, + 0x49, 0xf4, 0x3b, 0x1c, 0x37, 0x61, 0x8e, 0xc7, 0x8f, 0xb3, 0xcf, 0xf4, 0x14, 0x69, 0x4e, 0xfe, + 0xcd, 0x06, 0xf6, 0xa5, 0x9e, 0x5b, 0x50, 0xd0, 0x0d, 0xc7, 0x35, 0x4c, 0xcd, 0xe5, 0xb7, 0xea, + 0xb2, 0x7b, 0x69, 0xe7, 0x3d, 0x2a, 0xbb, 0x3a, 0xb7, 0x09, 0x0b, 0x5a, 0xdb, 0xf0, 0x7d, 0x25, + 0x36, 0x7b, 0x2d, 0x8c, 0xec, 0xd1, 0x15, 0x9a, 0x77, 0x70, 0x8f, 0xb6, 0xa8, 0x45, 0xc9, 0xa8, + 0x02, 0xc5, 0x96, 0xea, 0xe2, 0x63, 0xb5, 0xaf, 0x78, 0x67, 0xc4, 0xf2, 0xf4, 0x5c, 0xec, 0x1b, + 0x67, 0xa7, 0xcb, 0xf3, 0x4f, 0x58, 0xd2, 0xd0, 0x51, 0xb1, 0xf9, 0x56, 0x28, 0x41, 0x47, 0x77, + 0xa0, 0xa8, 0x3a, 0x7d, 0x53, 0xa3, 0x0d, 0x88, 0x4d, 0xa7, 0xe7, 0x50, 0x57, 0x37, 0x2b, 0x17, + 0x28, 0xb9, 0xe2, 0x51, 0xd1, 0x47, 0xb0, 0xc4, 0x2f, 0xcf, 0x3f, 0x56, 0x6d, 0x5d, 0xa1, 0x8d, + 0x1e, 0x0c, 0x0f, 0x91, 0xf2, 0x5c, 0x65, 0x97, 0xe5, 0x93, 0x0c, 0xa4, 0xa5, 0xc3, 0x97, 0xd2, + 0xb2, 0x4b, 0x77, 0x41, 0xcc, 0x6f, 0x64, 0xb2, 0x73, 0xe2, 0xfc, 0x46, 0x26, 0x5b, 0x10, 0x8b, + 0xd2, 0x77, 0xd2, 0x50, 0x24, 0xb6, 0xc2, 0x71, 0x0c, 0xcb, 0xac, 0xf9, 0x91, 0x8a, 0x7e, 0xaf, + 0x15, 0xe8, 0x71, 0x1d, 0xff, 0x19, 0x2d, 0xd3, 0x63, 0x51, 0xc4, 0xbb, 0xf3, 0x3f, 0x99, 0x91, + 0x96, 0x81, 0x91, 0xe8, 0xd9, 0x8c, 0x55, 0x98, 0x71, 0xac, 0x9e, 0xad, 0x79, 0x17, 0xb9, 0xdf, + 0x1b, 0x61, 0x9c, 0x42, 0x2f, 0x2c, 0x37, 0x28, 0x83, 0xcc, 0x19, 0xd1, 0x67, 0x50, 0x64, 0xbf, + 0xe8, 0x29, 0x08, 0x7a, 0x0a, 0x81, 0x1d, 0xf1, 0x78, 0x30, 0xb1, 0xac, 0xa7, 0x9c, 0x51, 0x2e, + 0x38, 0x91, 0x67, 0xf4, 0x09, 0xbc, 0x69, 0x5a, 0x4a, 0x07, 0x77, 0x2c, 0xbb, 0xaf, 0xd8, 0x98, + 0xf6, 0x61, 0x5d, 0x51, 0x5d, 0x85, 0x17, 0x9a, 0x85, 0xbe, 0x95, 0x4c, 0x6b, 0x8b, 0x66, 0x91, + 0x79, 0x8e, 0x55, 0x97, 0xc9, 0x95, 0xca, 0x30, 0xc3, 0x7e, 0xa1, 0x1c, 0x4c, 0x3f, 0x6b, 0xd6, + 0xaa, 0xb2, 0x38, 0x85, 0xe6, 0x20, 0xfb, 0x58, 0x7e, 0xb6, 0xa5, 0x34, 0x9e, 0x3f, 0x15, 0x05, + 0x94, 0x87, 0x59, 0xf9, 0xd9, 0xb3, 0xa6, 0xb2, 0xf9, 0x42, 0x4c, 0x49, 0x77, 0xa0, 0x10, 0x2d, + 0x11, 0x02, 0x98, 0x91, 0xab, 0x5b, 0xcf, 0xe8, 0xed, 0xe5, 0x39, 0x98, 0x7e, 0xfa, 0xac, 0xb2, + 0xfa, 0x54, 0x14, 0xa4, 0x3f, 0x13, 0x60, 0x2e, 0x72, 0xb8, 0xe9, 0xa3, 0x81, 0x0d, 0xf6, 0x6b, + 0xf1, 0xf0, 0x29, 0x7e, 0xb3, 0x7f, 0x15, 0xb2, 0x7c, 0x8c, 0x79, 0xd1, 0xf2, 0xcb, 0xa3, 0x9d, + 0x66, 0xba, 0xbe, 0xe4, 0x45, 0x3c, 0x79, 0x6c, 0xa8, 0x01, 0xa2, 0xea, 0xe9, 0x56, 0xe1, 0x25, + 0x19, 0x1d, 0xf7, 0x34, 0xd0, 0x0c, 0xde, 0x88, 0x51, 0xa3, 0xe4, 0x0f, 0x33, 0xdf, 0xff, 0xe1, + 0xf2, 0x94, 0xf4, 0xf3, 0x0c, 0xcc, 0x47, 0xcf, 0x47, 0xd5, 0x07, 0x2a, 0x1b, 0x37, 0x81, 0x47, + 0x38, 0xca, 0x63, 0x3e, 0xea, 0x92, 0x0b, 0xbe, 0x73, 0xc0, 0xea, 0x7e, 0x63, 0x4c, 0x6c, 0x42, + 0xb8, 0xf2, 0x01, 0xe3, 0xd2, 0x7f, 0x48, 0xfb, 0xb3, 0x50, 0x19, 0xa6, 0xd9, 0xb1, 0x34, 0x61, + 0xe8, 0xc4, 0x3c, 0xb5, 0x83, 0xc4, 0xc1, 0x24, 0xe9, 0x32, 0xcb, 0x46, 0x66, 0xad, 0xe6, 0x6b, + 0xdd, 0x0f, 0x18, 0x4c, 0xbb, 0x17, 0xff, 0x5c, 0x62, 0x8f, 0xdd, 0x0f, 0xf9, 0xff, 0x31, 0xd4, + 0x8a, 0xbc, 0x0f, 0xfd, 0x26, 0x14, 0x35, 0xab, 0xdd, 0x66, 0x7e, 0x09, 0xb3, 0xbf, 0xc3, 0x37, + 0xc6, 0xd0, 0x22, 0xf0, 0x2f, 0x64, 0x96, 0xfd, 0x2f, 0x65, 0x96, 0x65, 0xfe, 0xa5, 0xcc, 0x50, + 0x1c, 0x7c, 0xc1, 0x17, 0xc6, 0xcc, 0xf6, 0x40, 0x48, 0xfe, 0xec, 0xeb, 0x84, 0xe4, 0xb3, 0x83, + 0x0c, 0xbc, 0xe7, 0xfd, 0xb1, 0xc0, 0x03, 0xa2, 0x9e, 0x5a, 0xd6, 0x61, 0xcf, 0x0f, 0xa2, 0x5f, + 0x0a, 0xdf, 0xf6, 0x18, 0x44, 0x0b, 0xd3, 0xd3, 0x2e, 0x71, 0xf3, 0x6b, 0xea, 0xcb, 0xcd, 0xaf, + 0x37, 0x61, 0xae, 0x6b, 0xe3, 0x7d, 0xec, 0x6a, 0x07, 0x8a, 0xd9, 0xeb, 0xf0, 0xa3, 0x3e, 0x79, + 0x8f, 0xb6, 0xdd, 0xeb, 0xa0, 0x7b, 0x20, 0xfa, 0x59, 0x38, 0xea, 0xf4, 0xae, 0x1a, 0xf3, 0xe8, + 0x1c, 0xa3, 0x4a, 0xff, 0x4b, 0x80, 0xc5, 0x48, 0x9d, 0xf8, 0x98, 0xda, 0x80, 0xbc, 0xee, 0x7b, + 0x34, 0x4e, 0x49, 0xb8, 0x60, 0x1c, 0x79, 0x98, 0x19, 0x29, 0x70, 0xc5, 0x7b, 0x2d, 0xfd, 0x36, + 0x40, 0x20, 0x36, 0x75, 0x41, 0xb1, 0x97, 0x03, 0x39, 0xeb, 0xa1, 0x17, 0xf8, 0x83, 0x2c, 0x3d, + 0xd1, 0x20, 0x93, 0xfe, 0xb7, 0x00, 0x22, 0x7d, 0xc1, 0x63, 0x8c, 0xf5, 0x44, 0x4c, 0xa6, 0x77, + 0x60, 0x23, 0x35, 0xf9, 0x61, 0x9e, 0xc8, 0xf7, 0x4c, 0xd2, 0x03, 0xdf, 0x33, 0x89, 0xb3, 0x9f, + 0x99, 0x2f, 0x69, 0x3f, 0xa5, 0x1f, 0x0a, 0x50, 0xf0, 0xab, 0xcd, 0x3e, 0x64, 0x38, 0xe6, 0xa6, + 0xd2, 0xd7, 0xfb, 0x58, 0x9f, 0x77, 0xa3, 0xca, 0x44, 0xdf, 0x56, 0x0c, 0xdf, 0xa8, 0xc2, 0x3e, + 0x32, 0xf7, 0x77, 0xbc, 0xee, 0x48, 0x8a, 0x58, 0x09, 0xae, 0xb2, 0x78, 0x8d, 0xc3, 0x52, 0x32, + 0xfd, 0x06, 0xac, 0xd5, 0x3e, 0x62, 0x97, 0xe0, 0x4c, 0x64, 0x4b, 0x11, 0x8f, 0x2d, 0x04, 0xbe, + 0xe8, 0xa5, 0x37, 0x1b, 0xf4, 0xeb, 0xb0, 0xec, 0xb7, 0x23, 0x3d, 0x0e, 0x29, 0x90, 0xf6, 0x28, + 0xa2, 0xa5, 0x89, 0xec, 0xbb, 0xa7, 0x25, 0xd6, 0x01, 0x7f, 0x1c, 0x6e, 0x09, 0x76, 0x14, 0xfa, + 0x11, 0xa4, 0x8f, 0xd4, 0xf6, 0xb8, 0x78, 0xb8, 0x48, 0xcb, 0xc9, 0x24, 0x37, 0x7a, 0x1c, 0xb9, + 0x01, 0x24, 0x35, 0x7a, 0x45, 0x6a, 0x58, 0xa5, 0x91, 0x9b, 0x42, 0xde, 0x8f, 0x0e, 0xa0, 0xb1, + 0xaf, 0x0f, 0x8f, 0xa4, 0x0f, 0x33, 0x3f, 0xfa, 0xe1, 0xb2, 0x20, 0x7d, 0x0c, 0x88, 0xf8, 0x3a, + 0xee, 0xf3, 0x9e, 0x65, 0x07, 0xb7, 0xa9, 0x0c, 0x1e, 0xcc, 0x98, 0x8e, 0x3f, 0x98, 0x21, 0x5d, + 0x86, 0xc5, 0x08, 0x37, 0xb3, 0x40, 0xd2, 0xfb, 0x70, 0xed, 0x89, 0xe5, 0x38, 0x46, 0x97, 0x20, + 0x66, 0x3a, 0xd4, 0xc9, 0x7c, 0xe5, 0xdb, 0xdc, 0x6c, 0x97, 0x2e, 0x52, 0x98, 0xcc, 0x36, 0xe5, + 0x64, 0xff, 0x59, 0xfa, 0xb7, 0x02, 0x5c, 0x1d, 0xe6, 0x64, 0x5a, 0x8e, 0x3b, 0xdb, 0x39, 0xab, + 0x59, 0xc1, 0x65, 0x7f, 0xe7, 0xf7, 0x56, 0x2f, 0x3b, 0xf1, 0xbd, 0xf9, 0x3b, 0x95, 0x8e, 0x4a, + 0x6d, 0x12, 0x3f, 0x7b, 0x5e, 0xe0, 0xe4, 0x2d, 0x46, 0x0d, 0xcc, 0x53, 0x66, 0x32, 0xf3, 0xd4, + 0x84, 0xe2, 0x86, 0x65, 0x98, 0xc4, 0xc5, 0xf7, 0xea, 0xbb, 0x0a, 0x85, 0x3d, 0xc3, 0x54, 0xed, + 0xbe, 0xe2, 0x85, 0x61, 0x0a, 0xe7, 0x85, 0x61, 0xca, 0xf3, 0x8c, 0x83, 0x3f, 0x4a, 0x3f, 0x15, + 0x40, 0x0c, 0xc4, 0x72, 0x33, 0xff, 0x35, 0x00, 0xad, 0xdd, 0x73, 0x5c, 0x6c, 0x7b, 0xad, 0x34, + 0xc7, 0x8e, 0x7b, 0x54, 0x18, 0xb5, 0xbe, 0x2e, 0xe7, 0x78, 0x86, 0xba, 0x8e, 0xde, 0x8e, 0x5e, + 0x67, 0x31, 0xbd, 0x06, 0x67, 0x43, 0x97, 0x58, 0x90, 0x66, 0x77, 0x5c, 0xcb, 0xf6, 0xe1, 0x2e, + 0x6f, 0x76, 0xef, 0xa2, 0x1f, 0x7a, 0x96, 0x1b, 0xd3, 0x13, 0x5d, 0x05, 0xe2, 0x83, 0x1c, 0x61, + 0xbf, 0x4a, 0x99, 0xf3, 0xab, 0xc4, 0x38, 0xbc, 0x2a, 0xfd, 0x4b, 0x01, 0x8a, 0x15, 0xd6, 0x1a, + 0x7e, 0x0b, 0x8f, 0xb1, 0x68, 0xeb, 0x90, 0x75, 0x4f, 0x4c, 0xa5, 0x83, 0xfd, 0x6f, 0xd3, 0x5c, + 0xe0, 0x26, 0xbe, 0x59, 0x97, 0x3d, 0xd2, 0xcf, 0x1d, 0xf2, 0x6f, 0x6d, 0xf3, 0xe1, 0x72, 0xad, + 0xcc, 0x3e, 0xc6, 0x5d, 0xf6, 0x3e, 0xc6, 0x5d, 0x5e, 0xe7, 0x19, 0xd8, 0x4c, 0xf1, 0xfd, 0xff, + 0xbc, 0x2c, 0xc8, 0x3e, 0x13, 0x73, 0x26, 0xee, 0x37, 0x48, 0xaf, 0x1f, 0x9a, 0xee, 0x51, 0x01, + 0x20, 0xf4, 0xd1, 0x21, 0xfe, 0x79, 0xe7, 0xd5, 0x75, 0x65, 0x77, 0xbb, 0xf2, 0x6c, 0x6b, 0xab, + 0xde, 0x6c, 0x56, 0xd7, 0x45, 0x01, 0x89, 0x30, 0x17, 0xf9, 0x64, 0x51, 0x8a, 0x7d, 0xf0, 0xf9, + 0xfe, 0x5f, 0x02, 0x08, 0xbe, 0x7e, 0x46, 0x64, 0x6d, 0x56, 0x3f, 0x55, 0x5e, 0xac, 0x3e, 0xdd, + 0xad, 0x36, 0xc4, 0x29, 0x84, 0xa0, 0xb0, 0xb6, 0xda, 0xac, 0xd4, 0x14, 0xb9, 0xda, 0xd8, 0x79, + 0xb6, 0xdd, 0xa8, 0x7a, 0x1f, 0x8a, 0xbe, 0xbf, 0x0e, 0x73, 0xe1, 0xfb, 0x85, 0xd0, 0x22, 0x14, + 0x2b, 0xb5, 0x6a, 0x65, 0x53, 0x79, 0x51, 0x5f, 0x55, 0x9e, 0xef, 0x56, 0x77, 0x09, 0xde, 0x20, + 0x45, 0xa3, 0xc4, 0xc7, 0xbb, 0x4f, 0x09, 0x54, 0x29, 0x42, 0x9e, 0x3d, 0xd3, 0xcf, 0x1b, 0x89, + 0xa9, 0xfb, 0x5b, 0x90, 0x0f, 0xdd, 0x7b, 0x4c, 0x5e, 0xb7, 0xb3, 0xdb, 0xa8, 0x29, 0xcd, 0xfa, + 0x56, 0xb5, 0xd1, 0x5c, 0xdd, 0xda, 0x61, 0x32, 0x28, 0x6d, 0x75, 0xed, 0x99, 0xdc, 0x14, 0x05, + 0xff, 0xb9, 0xf9, 0x6c, 0xb7, 0x52, 0xf3, 0xaa, 0x21, 0x65, 0xb2, 0x69, 0x31, 0x7d, 0xff, 0x04, + 0xae, 0x8e, 0xb8, 0x6a, 0x87, 0xa0, 0xa4, 0x5d, 0x93, 0xde, 0x01, 0x2b, 0x4e, 0xa1, 0x79, 0xc8, + 0x91, 0xae, 0x47, 0xcf, 0xa0, 0x8a, 0x02, 0xca, 0x42, 0xe6, 0xc0, 0x75, 0xbb, 0x62, 0x0a, 0xcd, + 0x40, 0xca, 0x79, 0x24, 0xa6, 0xc9, 0xff, 0x96, 0x23, 0x66, 0x08, 0x60, 0x52, 0x3f, 0xef, 0xd9, + 0x58, 0x9c, 0x26, 0xa0, 0xab, 0xe7, 0x60, 0x7b, 0xdf, 0x68, 0x63, 0x71, 0x96, 0xb0, 0x98, 0xbd, + 0x76, 0x5b, 0xcc, 0x4a, 0x99, 0xec, 0x8c, 0x38, 0x73, 0xff, 0x26, 0x84, 0x0e, 0xfb, 0x13, 0xcc, + 0xf5, 0x54, 0x75, 0xb1, 0xe3, 0x8a, 0x53, 0x68, 0x16, 0xd2, 0xab, 0xed, 0xb6, 0x28, 0x3c, 0xfc, + 0x17, 0x19, 0xc8, 0x7a, 0x5f, 0xef, 0x41, 0x4f, 0x61, 0x9a, 0xad, 0x27, 0x2f, 0x8f, 0x46, 0x1e, + 0x74, 0x1c, 0x2f, 0xdd, 0x38, 0x0f, 0x9a, 0x48, 0x53, 0xe8, 0x2f, 0x43, 0x3e, 0xe4, 0x91, 0xa1, + 0x91, 0x0b, 0x80, 0x11, 0x2f, 0x74, 0xe9, 0xf6, 0x79, 0xd9, 0x7c, 0xf9, 0x2f, 0x21, 0xe7, 0x1b, + 0x73, 0xf4, 0xf6, 0x38, 0x53, 0xef, 0xc9, 0x1e, 0x3f, 0x1f, 0x90, 0x61, 0x27, 0x4d, 0xbd, 0x27, + 0x20, 0x1b, 0xd0, 0xb0, 0xdd, 0x45, 0x71, 0x31, 0x78, 0x23, 0x0d, 0xfb, 0xd2, 0xfd, 0x89, 0x72, + 0x07, 0xef, 0x24, 0xca, 0x0a, 0x26, 0x8f, 0x78, 0x65, 0x0d, 0x4d, 0x4d, 0xf1, 0xca, 0x8a, 0x99, + 0x83, 0xa6, 0xd0, 0x73, 0xc8, 0x10, 0xa3, 0x89, 0xe2, 0xdc, 0xae, 0x01, 0x23, 0xbd, 0xf4, 0xf6, + 0xd8, 0x3c, 0x9e, 0xc8, 0xb5, 0x7b, 0x3f, 0xfa, 0x2f, 0xd7, 0xa7, 0x7e, 0x74, 0x76, 0x5d, 0xf8, + 0xe9, 0xd9, 0x75, 0xe1, 0x4f, 0xce, 0xae, 0x0b, 0x7f, 0x7a, 0x76, 0x5d, 0xf8, 0xde, 0xcf, 0xae, + 0x4f, 0xfd, 0xf4, 0x67, 0xd7, 0xa7, 0xfe, 0xe4, 0x67, 0xd7, 0xa7, 0x3e, 0x9b, 0xe5, 0xdc, 0x7b, + 0x33, 0xd4, 0xa2, 0x3c, 0xfa, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x37, 0xb5, 0xb9, 0x4a, 0x45, + 0x81, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -15499,6 +15539,21 @@ func (m *AdmissionHeader) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if m.NoMemoryReservedAtSource { + i-- + if m.NoMemoryReservedAtSource { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x28 + } + if m.SourceLocation != 0 { + i = encodeVarintApi(dAtA, i, uint64(m.SourceLocation)) + i-- + dAtA[i] = 0x20 + } if m.Source != 0 { i = encodeVarintApi(dAtA, i, uint64(m.Source)) i-- @@ -19349,6 +19404,12 @@ func (m *AdmissionHeader) Size() (n int) { if m.Source != 0 { n += 1 + sovApi(uint64(m.Source)) } + if m.SourceLocation != 0 { + n += 1 + sovApi(uint64(m.SourceLocation)) + } + if m.NoMemoryReservedAtSource { + n += 2 + } return n } @@ -37670,6 +37731,45 @@ func (m *AdmissionHeader) Unmarshal(dAtA []byte) error { break } } + case 4: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field SourceLocation", wireType) + } + m.SourceLocation = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.SourceLocation |= AdmissionHeader_SourceLocation(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 5: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field NoMemoryReservedAtSource", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.NoMemoryReservedAtSource = bool(v != 0) default: iNdEx = preIndex skippy, err := skipApi(dAtA[iNdEx:]) diff --git a/pkg/roachpb/api.proto b/pkg/roachpb/api.proto index ba5faaa31d79..be2f3935841d 100644 --- a/pkg/roachpb/api.proto +++ b/pkg/roachpb/api.proto @@ -2015,6 +2015,7 @@ message AdmissionHeader { // request or a parent request. See admission.WorkInfo.Priority for details. // It is used to give preference to older requests. int64 create_time = 2; + // Source represents the immediate source of a request. FROM_SQL represents // a KV request originating in SQL, and ROOT_KV represents a request // originating within KV, but at the root of the tree of requests. @@ -2031,6 +2032,21 @@ message AdmissionHeader { ROOT_KV = 2; } Source source = 3; + + // SourceLocation specifies physically where the call originated. LOCAL is + // set on codepaths that are calling the KV api from the same node (not + // using gRPC). + enum SourceLocation { + REMOTE = 0; + LOCAL = 1; + } + SourceLocation source_location = 4; + + // NoMemoryReservedAtSource is read only when SourceLocation=LOCAL, where + // typically the client/source has already reserved enough memory based on + // previous responses, so the server avoids reserving more. This bit is set + // when the client has effectively reserved close to 0 bytes. + bool no_memory_reserved_at_source = 5; } // A BatchRequest contains one or more requests to be executed in diff --git a/pkg/rpc/context.go b/pkg/rpc/context.go index f2c38589375e..dc57770e5a4d 100644 --- a/pkg/rpc/context.go +++ b/pkg/rpc/context.go @@ -459,6 +459,9 @@ type internalClientAdapter struct { func (a internalClientAdapter) Batch( ctx context.Context, ba *roachpb.BatchRequest, _ ...grpc.CallOption, ) (*roachpb.BatchResponse, error) { + // Mark this as originating locally, which is useful for the decision about + // memory allocation tracking. + ba.AdmissionHeader.SourceLocation = roachpb.AdmissionHeader_LOCAL return a.InternalServer.Batch(ctx, ba) } @@ -568,6 +571,8 @@ func (a internalClientAdapter) RangeFeed( respStreamClientAdapter: makeRespStreamClientAdapter(ctx), } + // Mark this as originating locally. + args.AdmissionHeader.SourceLocation = roachpb.AdmissionHeader_LOCAL go func() { defer cancel() err := a.InternalServer.RangeFeed(args, rfAdapter) diff --git a/pkg/server/server.go b/pkg/server/server.go index 3e6a621e3e40..4f69e1127af6 100644 --- a/pkg/server/server.go +++ b/pkg/server/server.go @@ -88,6 +88,7 @@ import ( "github.com/cockroachdb/cockroach/pkg/util/log" "github.com/cockroachdb/cockroach/pkg/util/log/eventpb" "github.com/cockroachdb/cockroach/pkg/util/metric" + "github.com/cockroachdb/cockroach/pkg/util/mon" "github.com/cockroachdb/cockroach/pkg/util/netutil" "github.com/cockroachdb/cockroach/pkg/util/protoutil" "github.com/cockroachdb/cockroach/pkg/util/retry" @@ -177,7 +178,8 @@ type Server struct { // Created in NewServer but initialized (made usable) in `(*Server).Start`. externalStorageBuilder *externalStorageBuilder - gcoord *admission.GrantCoordinator + gcoord *admission.GrantCoordinator + kvMemoryMonitor *mon.BytesMonitor // The following fields are populated at start time, i.e. in `(*Server).Start`. startTime time.Time @@ -555,6 +557,10 @@ func NewServer(cfg Config, stopper *stop.Stopper) (*Server, error) { // ClosedTimestamp), but the Node needs a StoreConfig to be made. var lateBoundNode *Node + // Break a circular dependency: we need the Server which implements + // MemoryMonitorForKVProvider in the StoreConfig. + + lateBoundServer := &Server{} storeCfg := kvserver.StoreConfig{ DefaultZoneConfig: &cfg.DefaultZoneConfig, Settings: st, @@ -600,9 +606,10 @@ func NewServer(cfg Config, stopper *stop.Stopper) (*Server, error) { Dialer: nodeDialer.CTDialer(), }), - ExternalStorage: externalStorage, - ExternalStorageFromURI: externalStorageFromURI, - ProtectedTimestampCache: protectedtsProvider, + ExternalStorage: externalStorage, + ExternalStorageFromURI: externalStorageFromURI, + ProtectedTimestampCache: protectedtsProvider, + MemoryMonitorForKVProvider: lateBoundServer, } if storeTestingKnobs := cfg.TestingKnobs.Store; storeTestingKnobs != nil { storeCfg.TestingKnobs = *storeTestingKnobs.(*kvserver.StoreTestingKnobs) @@ -654,7 +661,6 @@ func NewServer(cfg Config, stopper *stop.Stopper) (*Server, error) { }) registry.AddMetricStruct(protectedtsReconciler.Metrics()) - lateBoundServer := &Server{} // TODO(tbg): give adminServer only what it needs (and avoid circular deps). sAdmin := newAdminServer(lateBoundServer, internalExecutor) sessionRegistry := sql.NewSessionRegistry() @@ -746,6 +752,12 @@ func NewServer(cfg Config, stopper *stop.Stopper) (*Server, error) { debugServer := debug.NewServer(st, sqlServer.pgServer.HBADebugFn()) node.InitLogger(sqlServer.execCfg) + kvMemoryMonitor := mon.NewMonitorInheritWithLimit( + "kv-mem", 0 /* limit */, sqlServer.rootSQLMemoryMonitor) + kvMemoryMonitor.Start(ctx, sqlServer.rootSQLMemoryMonitor, mon.BoundAccount{}) + stopper.AddCloser(stop.CloserFn(func() { + kvMemoryMonitor.Stop(ctx) + })) *lateBoundServer = Server{ nodeIDContainer: nodeIDContainer, cfg: cfg, @@ -783,6 +795,7 @@ func NewServer(cfg Config, stopper *stop.Stopper) (*Server, error) { drainSleepFn: drainSleepFn, externalStorageBuilder: externalStorageBuilder, gcoord: gcoord, + kvMemoryMonitor: kvMemoryMonitor, } return lateBoundServer, err } @@ -2750,3 +2763,8 @@ func (s *Server) RunLocalSQL( func (s *Server) Insecure() bool { return s.cfg.Insecure } + +// GetRootMemoryMonitor implements MemoryMonitorForKVProvider. +func (s *Server) GetRootMemoryMonitor() *mon.BytesMonitor { + return s.kvMemoryMonitor +} diff --git a/pkg/server/server_sql.go b/pkg/server/server_sql.go index 4fe974aeea28..c7a170cb6c2a 100644 --- a/pkg/server/server_sql.go +++ b/pkg/server/server_sql.go @@ -134,6 +134,8 @@ type SQLServer struct { // set to true when the server has started accepting client conns. // Used by health checks. acceptingClients syncutil.AtomicBool + + rootSQLMemoryMonitor *mon.BytesMonitor } // sqlServerOptionalKVArgs are the arguments supplied to newSQLServer which are @@ -758,6 +760,7 @@ func newSQLServer(ctx context.Context, cfg sqlServerArgs) (*SQLServer, error) { metricsRegistry: cfg.registry, diagnosticsReporter: reporter, settingsWatcher: settingsWatcher, + rootSQLMemoryMonitor: rootSQLMemoryMonitor, }, nil } diff --git a/pkg/sql/logictest/testdata/logic_test/mem_limit b/pkg/sql/logictest/testdata/logic_test/mem_limit new file mode 100644 index 000000000000..346c66a593e1 --- /dev/null +++ b/pkg/sql/logictest/testdata/logic_test/mem_limit @@ -0,0 +1,41 @@ +# LogicTest: local + +# logicTest.newCluster uses a 192MB limit. We can insert multiple large rows +# individually, but reading them out in a single scan caused by an index join +# trips the memory limit in KV during the scan. + +statement ok +CREATE TABLE foo (id INT PRIMARY KEY, attribute INT, blob TEXT, INDEX(attribute)) + +statement ok +INSERT INTO foo SELECT 1, 10, REPEAT('a', 60000000) + +statement ok +INSERT INTO foo SELECT 2, 10, REPEAT('a', 60000000) + +statement ok +INSERT INTO foo SELECT 3, 10, REPEAT('a', 60000000) + +statement ok +INSERT INTO foo SELECT 4, 10, REPEAT('a', 60000000) + +query T +EXPLAIN SELECT * FROM foo@foo_attribute_idx WHERE attribute=10 AND blob LIKE 'blah%' +---- +distribution: local +vectorized: true +· +• filter +│ filter: blob LIKE 'blah%' +│ +└── • index join + │ table: foo@primary + │ + └── • scan + missing stats + table: foo@foo_attribute_idx + spans: [/10 - /10] + +query error scan with start key .* memory budget exceeded +SELECT * FROM foo@foo_attribute_idx WHERE attribute=10 AND blob LIKE 'blah%' + diff --git a/pkg/sql/row/kv_batch_fetcher.go b/pkg/sql/row/kv_batch_fetcher.go index a2452bc2eda1..5dc55d0ae33e 100644 --- a/pkg/sql/row/kv_batch_fetcher.go +++ b/pkg/sql/row/kv_batch_fetcher.go @@ -428,6 +428,14 @@ func (f *txnKVFetcher) fetch(ctx context.Context) error { monitoring := f.acc.Monitor() != nil const tokenFetchAllocation = 1 << 10 + if !monitoring || f.acc.Used() < tokenFetchAllocation { + // In case part of this batch ends up being evaluated locally, we want + // that local evaluation to do memory accounting since we have reserved + // negligible bytes. Ideally, we would split the memory reserved across + // the various servers that DistSender will split this batch into, but we + // do not yet have that capability. + ba.AdmissionHeader.NoMemoryReservedAtSource = true + } if monitoring && f.acc.Used() < tokenFetchAllocation { // Pre-reserve a token fraction of the maximum amount of memory this scan // could return. Most of the time, scans won't use this amount of memory, @@ -445,6 +453,9 @@ func (f *txnKVFetcher) fetch(ctx context.Context) error { if err != nil { return err } + // TODO(sumeer): move admission control after the memory accounting below, + // since we are using the memory and must account for it even if the rest of + // the response processing has to wait. if f.responseAdmissionQ != nil { responseAdmission := admission.WorkInfo{ TenantID: roachpb.SystemTenantID, diff --git a/pkg/storage/BUILD.bazel b/pkg/storage/BUILD.bazel index b01a8ab14f0f..b2669397a09d 100644 --- a/pkg/storage/BUILD.bazel +++ b/pkg/storage/BUILD.bazel @@ -91,6 +91,7 @@ go_library( "//pkg/util/humanizeutil", "//pkg/util/iterutil", "//pkg/util/log", + "//pkg/util/mon", "//pkg/util/protoutil", "//pkg/util/stop", "//pkg/util/syncutil", diff --git a/pkg/storage/mvcc.go b/pkg/storage/mvcc.go index d7a5f1396591..5f77ac50f9b0 100644 --- a/pkg/storage/mvcc.go +++ b/pkg/storage/mvcc.go @@ -32,6 +32,7 @@ import ( "github.com/cockroachdb/cockroach/pkg/util/humanizeutil" "github.com/cockroachdb/cockroach/pkg/util/iterutil" "github.com/cockroachdb/cockroach/pkg/util/log" + "github.com/cockroachdb/cockroach/pkg/util/mon" "github.com/cockroachdb/cockroach/pkg/util/protoutil" "github.com/cockroachdb/cockroach/pkg/util/timeutil" "github.com/cockroachdb/errors" @@ -810,6 +811,8 @@ type MVCCGetOptions struct { // // The field is only set if Txn is also set. LocalUncertaintyLimit hlc.Timestamp + // MemoryMonitor is used for tracking memory allocations. + MemoryMonitor ScannerMemoryMonitor } func (opts *MVCCGetOptions) validate() error { @@ -888,6 +891,7 @@ func mvccGet( // key different than the start key. This is a bit of a hack. *mvccScanner = pebbleMVCCScanner{ parent: iter, + memMonitor: opts.MemoryMonitor, start: key, ts: timestamp, maxKeys: 1, @@ -2381,6 +2385,7 @@ func mvccScanToBytes( *mvccScanner = pebbleMVCCScanner{ parent: iter, + memMonitor: opts.MemoryMonitor, reverse: opts.Reverse, start: key, end: endKey, @@ -2478,6 +2483,32 @@ func buildScanIntents(data []byte) ([]roachpb.Intent, error) { return intents, nil } +// ScannerMemoryMonitor is used to track memory allocations when using +// pebbleMVCCScanner. There is only a Grow method since the provider of this +// monitor knows when the memory is no longer needed. It is possible that the +// pebbleMVCCScanner encounters an error and throws away the memory it has +// allocated, in which case there will be a short delay until the provider of +// this monitor sees that error and compensates the tracking. We consider this +// ok since we are operating in a garbage-collected language, and additionally +// don't know when grpc will throw away the rpc response memory, so our +// tracking in general is optimistic in when it stops tracking. So this one +// case of pessimism if fine and simplifies the code. An empty initialized +// ScannerMemoryMonitor is safe to use. +type ScannerMemoryMonitor struct { + B *mon.BoundAccount +} + +// Grow grows the reserved memory by x bytes. +func (b ScannerMemoryMonitor) Grow(ctx context.Context, x int64) error { + if b.B == nil { + return nil + } + if err := b.B.Grow(ctx, x); err != nil { + return errors.Wrapf(err, "used bytes %d", b.B.Used()) + } + return nil +} + // MVCCScanOptions bundles options for the MVCCScan family of functions. type MVCCScanOptions struct { // See the documentation for MVCCScan for information on these parameters. @@ -2530,6 +2561,8 @@ type MVCCScanOptions struct { // Not used in inconsistent scans. // The zero value indicates no limit. MaxIntents int64 + // MemoryMonitor is used for tracking memory allocations. + MemoryMonitor ScannerMemoryMonitor } func (opts *MVCCScanOptions) validate() error { diff --git a/pkg/storage/pebble_mvcc_scanner.go b/pkg/storage/pebble_mvcc_scanner.go index 0d4d5a977a30..d87c8f0b304e 100644 --- a/pkg/storage/pebble_mvcc_scanner.go +++ b/pkg/storage/pebble_mvcc_scanner.go @@ -12,6 +12,7 @@ package storage import ( "bytes" + "context" "encoding/binary" "sort" "sync" @@ -45,7 +46,7 @@ func (p *pebbleResults) clear() { // The repr that MVCCScan / MVCCGet expects to provide as output goes: // // This function adds to repr in that format. -func (p *pebbleResults) put(key []byte, value []byte) { +func (p *pebbleResults) put(key []byte, value []byte, monitor ScannerMemoryMonitor) error { // Key value lengths take up 8 bytes (2 x Uint32). const kvLenSize = 8 const minSize = 16 @@ -76,6 +77,9 @@ func (p *pebbleResults) put(key []byte, value []byte) { if len(p.repr) > 0 { p.bufs = append(p.bufs, p.repr) } + if err := monitor.Grow(context.TODO(), int64(newSize)); err != nil { + return err + } p.repr = nonZeroingMakeByteSlice(newSize)[:0] } @@ -87,6 +91,7 @@ func (p *pebbleResults) put(key []byte, value []byte) { copy(p.repr[startIdx+kvLenSize+lenKey:], value) p.count++ p.bytes += int64(lenToAdd) + return nil } func (p *pebbleResults) finish() [][]byte { @@ -100,9 +105,10 @@ func (p *pebbleResults) finish() [][]byte { // Go port of mvccScanner in libroach/mvcc.h. Stores all variables relating to // one MVCCGet / MVCCScan call. type pebbleMVCCScanner struct { - parent MVCCIterator - reverse bool - peeked bool + parent MVCCIterator + memMonitor ScannerMemoryMonitor + reverse bool + peeked bool // Iteration bounds. Does not contain MVCC timestamp. start, end roachpb.Key // Timestamp with which MVCCScan/MVCCGet was called. @@ -459,6 +465,14 @@ func (p *pebbleMVCCScanner) getAndAdvance() bool { // that lie before the resume key. return false } + // p.intents is a pebble.Batch which grows its byte slice capacity in + // chunks to amortize allocations. The memMonitor is under-counting here + // by only accounting for the key and value bytes. + if p.err = p.memMonitor.Grow( + context.TODO(), int64(len(p.curRawKey)+len(p.curValue))); p.err != nil { + p.err = errors.Wrapf(p.err, "scan with start key %s", p.start) + return false + } p.err = p.intents.Set(p.curRawKey, p.curValue, nil) if p.err != nil { return false @@ -479,6 +493,15 @@ func (p *pebbleMVCCScanner) getAndAdvance() bool { // Note that this will trigger an error higher up the stack. We // continue scanning so that we can return all of the intents // in the scan range. + // + // p.intents is a pebble.Batch which grows its byte slice capacity in + // chunks to amortize allocations. The memMonitor is under-counting here + // by only accounting for the key and value bytes. + if p.err = p.memMonitor.Grow( + context.TODO(), int64(len(p.curRawKey)+len(p.curValue))); p.err != nil { + p.err = errors.Wrapf(p.err, "scan with start key %s", p.start) + return false + } p.err = p.intents.Set(p.curRawKey, p.curValue, nil) if p.err != nil { return false @@ -673,7 +696,10 @@ func (p *pebbleMVCCScanner) addAndAdvance(rawKey []byte, val []byte) bool { // Don't include deleted versions len(val) == 0, unless we've been instructed // to include tombstones in the results. if len(val) > 0 || p.tombstones { - p.results.put(rawKey, val) + if err := p.results.put(rawKey, val, p.memMonitor); err != nil { + p.err = errors.Wrapf(err, "scan with start key %s", p.start) + return false + } if p.targetBytes > 0 && p.results.bytes >= p.targetBytes { // When the target bytes are met or exceeded, stop producing more // keys. We implement this by reducing maxKeys to the current