From a3c860c9d7c5caecc20415147d2377d354fa6513 Mon Sep 17 00:00:00 2001 From: Max Neverov Date: Fri, 5 Nov 2021 17:59:07 +0100 Subject: [PATCH] kv: RangeKeyMismatchError cleanup. Fixes #72399 Release note: None --- pkg/kv/bulk/sst_batcher.go | 2 +- pkg/kv/kvclient/kvcoord/dist_sender.go | 6 +- .../kvclient/kvcoord/txn_coord_sender_test.go | 4 +- pkg/kv/kvserver/replica_test.go | 6 +- pkg/kv/kvserver/store_send.go | 2 +- pkg/kv/txn_test.go | 3 +- pkg/roachpb/errors.go | 28 +- pkg/roachpb/errors.pb.go | 538 +++++++----------- pkg/roachpb/errors.proto | 17 +- 9 files changed, 233 insertions(+), 373 deletions(-) diff --git a/pkg/kv/bulk/sst_batcher.go b/pkg/kv/bulk/sst_batcher.go index 242cb2df1d3a..61a5f2cb570d 100644 --- a/pkg/kv/bulk/sst_batcher.go +++ b/pkg/kv/bulk/sst_batcher.go @@ -460,7 +460,7 @@ func AddSSTable( if m := (*roachpb.RangeKeyMismatchError)(nil); errors.As(err, &m) { // TODO(andrei): We just use the first of m.Ranges; presumably we // should be using all of them to avoid further retries. - split := m.Ranges()[0].Desc.EndKey.AsRawKey() + split := m.Ranges[0].Desc.EndKey.AsRawKey() log.Infof(ctx, "SSTable cannot be added spanning range bounds %v, retrying...", split) left, right, err := createSplitSSTable(ctx, db, item.start, split, item.disallowShadowing, iter, settings) if err != nil { diff --git a/pkg/kv/kvclient/kvcoord/dist_sender.go b/pkg/kv/kvclient/kvcoord/dist_sender.go index ecca32f9a73c..f52da52a69d5 100644 --- a/pkg/kv/kvclient/kvcoord/dist_sender.go +++ b/pkg/kv/kvclient/kvcoord/dist_sender.go @@ -1636,7 +1636,7 @@ func (ds *DistSender) sendPartialBatch( // Range descriptor might be out of date - evict it. This is likely the // result of a range split. If we have new range descriptors, insert them // instead. - for _, ri := range tErr.Ranges() { + for _, ri := range tErr.Ranges { // Sanity check that we got the different descriptors. Getting the same // descriptor and putting it in the cache would be bad, as we'd go through // an infinite loops of retries. @@ -1646,7 +1646,7 @@ func (ds *DistSender) sendPartialBatch( routingTok.Desc(), ri.Desc, pErr))} } } - routingTok.EvictAndReplace(ctx, tErr.Ranges()...) + routingTok.EvictAndReplace(ctx, tErr.Ranges...) // On addressing errors (likely a split), we need to re-invoke // the range descriptor lookup machinery, so we recurse by // sending batch to just the partial span this descriptor was @@ -1655,7 +1655,7 @@ func (ds *DistSender) sendPartialBatch( // to it matches the positions into our batch (using the full // batch here would give a potentially larger response slice // with unknown mapping to our truncated reply). - log.VEventf(ctx, 1, "likely split; will resend. Got new descriptors: %s", tErr.Ranges()) + log.VEventf(ctx, 1, "likely split; will resend. Got new descriptors: %s", tErr.Ranges) reply, pErr = ds.divideAndSendBatchToRanges(ctx, ba, rs, withCommit, batchIdx) return response{reply: reply, positions: positions, pErr: pErr} } diff --git a/pkg/kv/kvclient/kvcoord/txn_coord_sender_test.go b/pkg/kv/kvclient/kvcoord/txn_coord_sender_test.go index aeaa961a6998..7716fea1028c 100644 --- a/pkg/kv/kvclient/kvcoord/txn_coord_sender_test.go +++ b/pkg/kv/kvclient/kvcoord/txn_coord_sender_test.go @@ -1422,7 +1422,9 @@ func TestAbortTransactionOnCommitErrors(t *testing.T) { {err: &roachpb.TransactionPushError{}, asyncAbort: false}, {err: &roachpb.TransactionRetryError{}, asyncAbort: false}, {err: &roachpb.RangeNotFoundError{}, asyncAbort: false}, - {err: &roachpb.RangeKeyMismatchError{}, asyncAbort: false}, + {err: &roachpb.RangeKeyMismatchError{ + Ranges: []roachpb.RangeInfo{{}}}, asyncAbort: false, + }, {err: &roachpb.TransactionStatusError{}, asyncAbort: false}, } diff --git a/pkg/kv/kvserver/replica_test.go b/pkg/kv/kvserver/replica_test.go index 6646c56618f5..700d765417fc 100644 --- a/pkg/kv/kvserver/replica_test.go +++ b/pkg/kv/kvserver/replica_test.go @@ -918,9 +918,9 @@ func TestReplicaRangeBoundsChecking(t *testing.T) { if mismatchErr, ok := pErr.GetDetail().(*roachpb.RangeKeyMismatchError); !ok { t.Errorf("expected range key mismatch error: %s", pErr) } else { - require.Len(t, mismatchErr.Ranges(), 2) - mismatchedDesc := mismatchErr.Ranges()[0].Desc - suggestedDesc := mismatchErr.Ranges()[1].Desc + require.Len(t, mismatchErr.Ranges, 2) + mismatchedDesc := mismatchErr.Ranges[0].Desc + suggestedDesc := mismatchErr.Ranges[1].Desc if mismatchedDesc.RangeID != firstRepl.RangeID { t.Errorf("expected mismatched range to be %d, found %v", firstRepl.RangeID, mismatchedDesc) } diff --git a/pkg/kv/kvserver/store_send.go b/pkg/kv/kvserver/store_send.go index 6e787d183075..53c9b7ccaf89 100644 --- a/pkg/kv/kvserver/store_send.go +++ b/pkg/kv/kvserver/store_send.go @@ -216,7 +216,7 @@ func (s *Store) Send( // We'll return info on the range that the request ended up being routed to // and, to the extent that we have the info, the ranges containing the keys // that the client requested, and all the ranges in between. - ri := t.Ranges()[0] + ri := t.Ranges[0] skipRID := ri.Desc.RangeID // We already have info on one range, so don't add it again below. startKey := ri.Desc.StartKey if rSpan.Key.Less(startKey) { diff --git a/pkg/kv/txn_test.go b/pkg/kv/txn_test.go index 15b34194564f..502628b07c1f 100644 --- a/pkg/kv/txn_test.go +++ b/pkg/kv/txn_test.go @@ -259,8 +259,7 @@ func TestRunTransactionRetryOnErrors(t *testing.T) { {&roachpb.TransactionPushError{}, true}, {&roachpb.TransactionRetryError{}, true}, {&roachpb.WriteTooOldError{}, true}, - {&roachpb.RangeNotFoundError{}, false}, - {&roachpb.RangeKeyMismatchError{}, false}, + {&roachpb.RangeKeyMismatchError{Ranges: []roachpb.RangeInfo{{}}}, false}, {&roachpb.TransactionStatusError{}, false}, } diff --git a/pkg/roachpb/errors.go b/pkg/roachpb/errors.go index e2310b17523d..ee5cbc6b2344 100644 --- a/pkg/roachpb/errors.go +++ b/pkg/roachpb/errors.go @@ -574,9 +574,8 @@ func NewRangeKeyMismatchError( } } e := &RangeKeyMismatchError{ - RequestStartKey: start, - RequestEndKey: end, - DeprecatedMismatchedRange: *desc, + RequestStartKey: start, + RequestEndKey: end, } // More ranges are sometimes added to rangesInternal later. e.AppendRangeInfo(ctx, *desc, l) @@ -588,9 +587,9 @@ func (e *RangeKeyMismatchError) Error() string { } func (e *RangeKeyMismatchError) message(_ *Error) string { - desc := &e.Ranges()[0].Desc + desc := &e.Ranges[0].Desc return fmt.Sprintf("key range %s-%s outside of bounds of range %s-%s; suggested ranges: %s", - e.RequestStartKey, e.RequestEndKey, desc.StartKey, desc.EndKey, e.Ranges()) + e.RequestStartKey, e.RequestEndKey, desc.StartKey, desc.EndKey, e.Ranges) } // Type is part of the ErrorDetailInterface. @@ -598,23 +597,6 @@ func (e *RangeKeyMismatchError) Type() ErrorDetailType { return RangeKeyMismatchErrType } -// Ranges returns the range info for the range that the request was erroneously -// routed to. It deals with legacy errors coming from 20.1 nodes by returning -// empty lease for the respective descriptors. -// -// At least one RangeInfo is returned. -func (e *RangeKeyMismatchError) Ranges() []RangeInfo { - if len(e.rangesInternal) != 0 { - return e.rangesInternal - } - // Fallback for 20.1 errors. Remove in 21.1. - ranges := []RangeInfo{{Desc: e.DeprecatedMismatchedRange}} - if e.DeprecatedSuggestedRange != nil { - ranges = append(ranges, RangeInfo{Desc: *e.DeprecatedSuggestedRange}) - } - return ranges -} - // AppendRangeInfo appends info about one range to the set returned to the // kvclient. // @@ -628,7 +610,7 @@ func (e *RangeKeyMismatchError) AppendRangeInfo( log.Fatalf(ctx, "lease names missing replica; lease: %s, desc: %s", l, desc) } } - e.rangesInternal = append(e.rangesInternal, RangeInfo{ + e.Ranges = append(e.Ranges, RangeInfo{ Desc: desc, Lease: l, }) diff --git a/pkg/roachpb/errors.pb.go b/pkg/roachpb/errors.pb.go index ddc554fd3390..f380c9894a5c 100644 --- a/pkg/roachpb/errors.pb.go +++ b/pkg/roachpb/errors.pb.go @@ -583,21 +583,12 @@ var xxx_messageInfo_RangeNotFoundError proto.InternalMessageInfo type RangeKeyMismatchError struct { RequestStartKey Key `protobuf:"bytes,1,opt,name=request_start_key,json=requestStartKey,casttype=Key" json:"request_start_key,omitempty"` RequestEndKey Key `protobuf:"bytes,2,opt,name=request_end_key,json=requestEndKey,casttype=Key" json:"request_end_key,omitempty"` - // deprecated_mismatched_range is an older version of mismatched_range. Can go - // away in 21.1, when we don't worry about 20.1 kvservers not populating rangesInternal. - DeprecatedMismatchedRange RangeDescriptor `protobuf:"bytes,3,opt,name=deprecated_mismatched_range,json=deprecatedMismatchedRange" json:"deprecated_mismatched_range"` - // deprecated_suggested_range is an older version of suggested_range. Can go - // away in 21.1, when we don't worry about 20.1 kvservers not populating - // rangesInternal. - DeprecatedSuggestedRange *RangeDescriptor `protobuf:"bytes,4,opt,name=deprecated_suggested_range,json=deprecatedSuggestedRange" json:"deprecated_suggested_range,omitempty"` - // ranges contains information intended for the client's range cache. The + // Ranges contains information intended for the client's range cache. The // server populates it with info on the range with the ID addressed by the // client (always the first in the array) and then all other ranges // overlapping the requested key range, or in between the addressed range and // the requested key range. - // - // In 21.1 the customname can be removed, together with the Ranges() accessor. - rangesInternal []RangeInfo `protobuf:"bytes,5,rep,name=ranges" json:"ranges"` + Ranges []RangeInfo `protobuf:"bytes,5,rep,name=ranges" json:"ranges"` } func (m *RangeKeyMismatchError) Reset() { *m = RangeKeyMismatchError{} } @@ -2314,214 +2305,210 @@ func init() { func init() { proto.RegisterFile("roachpb/errors.proto", fileDescriptor_123941c6716fd549) } var fileDescriptor_123941c6716fd549 = []byte{ - // 3309 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x59, 0x4b, 0x73, 0x1b, 0xc7, - 0xb5, 0xc6, 0x8b, 0x24, 0x78, 0xf8, 0xd0, 0xb0, 0xf9, 0x1a, 0x52, 0x12, 0x48, 0x41, 0x92, 0x2d, - 0xc9, 0x65, 0xf0, 0x96, 0x7c, 0x7d, 0xef, 0xb5, 0xaf, 0xee, 0x02, 0x8f, 0x21, 0x31, 0x24, 0x5e, - 0x1e, 0x80, 0xa2, 0x64, 0x95, 0xab, 0x3d, 0x04, 0x9a, 0xe0, 0x5c, 0x0d, 0x66, 0xe0, 0x99, 0x01, - 0x45, 0x56, 0x65, 0x91, 0xc4, 0x1b, 0x57, 0xb2, 0xc9, 0x26, 0x95, 0x2c, 0x53, 0xe5, 0xca, 0x22, - 0x55, 0xa9, 0x54, 0x7e, 0x41, 0x56, 0x59, 0x78, 0x95, 0x72, 0x65, 0xe5, 0xca, 0x42, 0x49, 0xa4, - 0xfc, 0x0a, 0xaf, 0x52, 0xfd, 0x18, 0x60, 0x00, 0x0c, 0x28, 0xca, 0xbb, 0x99, 0xf3, 0xea, 0xd3, - 0xa7, 0xbb, 0xcf, 0xf9, 0x4e, 0x37, 0xac, 0x38, 0xb6, 0xde, 0x3c, 0xed, 0x1e, 0xef, 0x10, 0xc7, - 0xb1, 0x1d, 0x37, 0xd3, 0x75, 0x6c, 0xcf, 0x46, 0x4b, 0x4d, 0xbb, 0xf9, 0x9c, 0x71, 0x32, 0xcf, - 0xcf, 0x32, 0xcf, 0xcf, 0xba, 0xc7, 0x9b, 0xab, 0x5c, 0x60, 0x44, 0x72, 0x13, 0xf9, 0xfa, 0x2d, - 0xdd, 0xd3, 0x05, 0x6d, 0xcd, 0xa7, 0x75, 0x88, 0xa7, 0x07, 0xe8, 0x72, 0xcf, 0x33, 0xcc, 0x9d, - 0x53, 0xb3, 0xb9, 0xe3, 0x19, 0x1d, 0xe2, 0x7a, 0x7a, 0xa7, 0x2b, 0x38, 0x2b, 0x6d, 0xbb, 0x6d, - 0xb3, 0xcf, 0x1d, 0xfa, 0xc5, 0xa9, 0xe9, 0x3f, 0xc6, 0x60, 0xb9, 0x62, 0x7b, 0x25, 0xa2, 0xbb, - 0xa4, 0x68, 0x9b, 0x2d, 0xe2, 0x28, 0x74, 0x68, 0x54, 0x80, 0x19, 0x87, 0x74, 0x4d, 0xa3, 0xa9, - 0xcb, 0xd1, 0xed, 0xe8, 0xbd, 0xb9, 0x87, 0x77, 0x32, 0x03, 0x7f, 0xc5, 0xd8, 0x19, 0x8d, 0x4b, - 0x14, 0x88, 0xdb, 0x74, 0x8c, 0xae, 0x67, 0x3b, 0xb9, 0xc4, 0x37, 0x2f, 0xb7, 0x22, 0x9a, 0xaf, - 0x8a, 0xf6, 0x60, 0xde, 0xa4, 0x96, 0xf1, 0x29, 0x33, 0x2d, 0xc7, 0xae, 0x6e, 0x4a, 0x9b, 0x33, - 0x07, 0x3e, 0xa1, 0x0c, 0x4c, 0xb1, 0x5f, 0x39, 0xc1, 0x2c, 0xc8, 0x21, 0x16, 0xd8, 0x14, 0x34, - 0x2e, 0x86, 0x3e, 0x84, 0xa4, 0xa3, 0x5b, 0x6d, 0x82, 0x8d, 0x96, 0x1c, 0xdf, 0x8e, 0xde, 0x8b, - 0xe7, 0x36, 0xa9, 0x67, 0xaf, 0x5e, 0x6e, 0xcd, 0x68, 0x94, 0xae, 0x16, 0xbe, 0x1f, 0x7c, 0x6a, - 0x33, 0x4c, 0x56, 0x6d, 0xa1, 0xdb, 0x00, 0xcd, 0x9e, 0xeb, 0xd9, 0x1d, 0xdc, 0x71, 0xdb, 0xf2, - 0xd4, 0x76, 0xf4, 0xde, 0xac, 0x98, 0xd2, 0x2c, 0xa7, 0x97, 0xdd, 0x76, 0x7a, 0x0d, 0x56, 0x2a, - 0x76, 0x8b, 0x1c, 0x5a, 0xfa, 0x99, 0x6e, 0x98, 0xfa, 0xb1, 0x49, 0x58, 0xc8, 0xd2, 0x1b, 0xb0, - 0x7e, 0x68, 0xb9, 0xbd, 0x6e, 0xd7, 0x76, 0x3c, 0xd2, 0xd2, 0xc8, 0x17, 0x3d, 0xe2, 0x7a, 0x9c, - 0xf5, 0xd3, 0x28, 0x20, 0x36, 0x58, 0xc5, 0xf6, 0x76, 0xed, 0x9e, 0xd5, 0xe2, 0x41, 0x0e, 0x7a, - 0x19, 0xbd, 0xba, 0x97, 0x1f, 0x42, 0xd2, 0xf5, 0x6c, 0x87, 0xa9, 0xc5, 0x86, 0xd5, 0xea, 0x94, - 0xce, 0xd5, 0xc4, 0xa7, 0x36, 0xc3, 0x64, 0xd5, 0x56, 0xfa, 0x57, 0x71, 0x58, 0x65, 0xb6, 0x0e, - 0xc8, 0x45, 0xd9, 0x70, 0x3b, 0xba, 0xd7, 0x3c, 0xe5, 0x7e, 0x7c, 0x00, 0x4b, 0x0e, 0x77, 0x17, - 0xbb, 0x9e, 0xee, 0x78, 0xf8, 0x39, 0xb9, 0x60, 0x0e, 0xcd, 0xe7, 0x66, 0xbe, 0x7f, 0xb9, 0x15, - 0x3f, 0x20, 0x17, 0xda, 0x35, 0x21, 0x51, 0xa7, 0x02, 0x07, 0xe4, 0x02, 0xed, 0x80, 0x4f, 0xc2, - 0xc4, 0x6a, 0x31, 0x95, 0xd8, 0xb0, 0xca, 0x82, 0xe0, 0x2b, 0x56, 0x8b, 0x2a, 0x9c, 0xc2, 0xf5, - 0x16, 0xe9, 0x3a, 0xa4, 0xa9, 0x7b, 0xa4, 0x85, 0x3b, 0xc2, 0x03, 0xd2, 0xc2, 0x6c, 0x5e, 0x6c, - 0x99, 0xe6, 0x1e, 0xa6, 0xc3, 0xf6, 0x06, 0xe5, 0x8f, 0x6d, 0xb2, 0x8d, 0x81, 0xb1, 0x72, 0xdf, - 0x16, 0x13, 0x45, 0x9f, 0xc3, 0x66, 0x60, 0x24, 0xb7, 0xd7, 0x6e, 0x13, 0xd7, 0xeb, 0x0f, 0x94, - 0xb8, 0xea, 0x40, 0x9a, 0x3c, 0xb0, 0x52, 0xf7, 0x8d, 0xf0, 0x11, 0x4a, 0x30, 0xcd, 0x8c, 0xb9, - 0xf2, 0xd4, 0x76, 0xfc, 0xde, 0xdc, 0xc3, 0x1b, 0x93, 0xac, 0xa9, 0xd6, 0x89, 0x9d, 0x5b, 0x13, - 0xcb, 0xb3, 0xc8, 0x75, 0x54, 0xcb, 0x23, 0x8e, 0xa5, 0x9b, 0x9a, 0xb0, 0x91, 0x7e, 0x1d, 0x87, - 0xb4, 0x46, 0xf4, 0xd6, 0x91, 0xe1, 0x9d, 0x1a, 0xd6, 0xa1, 0xd5, 0x24, 0x8e, 0xa7, 0x1b, 0x96, - 0x77, 0xc1, 0x24, 0xcf, 0x74, 0x93, 0x2f, 0xd3, 0x3e, 0x2c, 0x3a, 0x44, 0x6f, 0xe1, 0xfe, 0xc9, - 0x16, 0x47, 0xf3, 0x66, 0x60, 0x70, 0x7a, 0xfc, 0x33, 0xa7, 0x66, 0x33, 0xd3, 0xf0, 0x85, 0x44, - 0xb8, 0x16, 0xa8, 0x6a, 0x9f, 0x88, 0x34, 0x40, 0xe4, 0xdc, 0x70, 0x3d, 0xc3, 0x6a, 0x07, 0xec, - 0xc5, 0xae, 0x6e, 0x6f, 0xc9, 0x57, 0x1f, 0xd8, 0x7c, 0x06, 0xeb, 0xa6, 0xdd, 0xd4, 0x4d, 0xdc, - 0x1b, 0xcc, 0x00, 0x9b, 0x46, 0xc7, 0xf0, 0xd8, 0x51, 0xba, 0xa2, 0xe1, 0x55, 0x66, 0x23, 0x10, - 0x84, 0x12, 0xb5, 0x80, 0x3e, 0x03, 0xb9, 0x6d, 0xda, 0xc7, 0xa1, 0xd6, 0xe3, 0x57, 0xb7, 0xbe, - 0xc6, 0x8d, 0x8c, 0x99, 0x7f, 0x06, 0xcb, 0xf6, 0xb1, 0x4b, 0x9c, 0x33, 0x12, 0x88, 0xaf, 0x2b, - 0x27, 0xd8, 0xea, 0x86, 0x25, 0xac, 0xaa, 0x90, 0x1e, 0x1d, 0x00, 0xd9, 0xa3, 0x0c, 0xf7, 0xe3, - 0xc4, 0xaf, 0x7f, 0xb3, 0x15, 0x49, 0xb7, 0x60, 0xbd, 0xe1, 0xe8, 0x96, 0xab, 0x37, 0x3d, 0xc3, - 0xb6, 0xb2, 0xc7, 0x2c, 0x4d, 0xf0, 0x95, 0x55, 0x61, 0xda, 0x21, 0xba, 0x6b, 0x5b, 0x6c, 0x45, - 0x17, 0x1f, 0xbe, 0x97, 0x19, 0x2b, 0x0e, 0x99, 0x71, 0x5d, 0x8d, 0xa9, 0x88, 0x71, 0x85, 0x81, - 0xf4, 0x33, 0x58, 0x09, 0x48, 0xd6, 0x7a, 0xae, 0x38, 0xe3, 0x79, 0x80, 0x6e, 0xcf, 0x3d, 0x25, - 0x04, 0x7b, 0xe7, 0x96, 0xd8, 0x38, 0xa9, 0x90, 0x79, 0x05, 0x94, 0xfd, 0xd4, 0xc7, 0xf5, 0x1a, - 0xe7, 0x56, 0xfa, 0xcb, 0x28, 0xac, 0x06, 0x04, 0x34, 0xe2, 0x39, 0x17, 0xdc, 0xfc, 0xde, 0xc8, - 0x0c, 0xee, 0x5f, 0x3e, 0x03, 0xa6, 0x19, 0xe6, 0x3f, 0xba, 0x05, 0xb3, 0xe4, 0xdc, 0x73, 0x74, - 0x96, 0x81, 0x63, 0x81, 0x0c, 0x9c, 0x64, 0x64, 0x9a, 0x80, 0xff, 0x14, 0x85, 0xb5, 0x80, 0xad, - 0xba, 0xa7, 0x7b, 0x3d, 0x97, 0xbb, 0xb1, 0x06, 0x71, 0xaa, 0x17, 0x0d, 0xe8, 0x51, 0x02, 0xaa, - 0xf4, 0xdd, 0x8b, 0x31, 0xf7, 0xfe, 0xe3, 0x72, 0xf7, 0x02, 0x26, 0x33, 0xa1, 0x51, 0x7e, 0x04, - 0xd3, 0x9c, 0x8e, 0x10, 0x2c, 0x6a, 0x4a, 0xb6, 0x5e, 0xad, 0xe0, 0xc3, 0xca, 0x41, 0xa5, 0x7a, - 0x54, 0x91, 0x22, 0x48, 0x86, 0x15, 0x41, 0x6b, 0x3c, 0xa9, 0xe0, 0x7c, 0xb5, 0x5c, 0x56, 0x1b, - 0x0d, 0xa5, 0x20, 0xc5, 0xd2, 0x89, 0x64, 0x54, 0x8a, 0xa6, 0xff, 0x1e, 0x03, 0xe9, 0xc8, 0x31, - 0x3c, 0x42, 0xcf, 0xb7, 0xc5, 0x6b, 0x04, 0xfa, 0x08, 0x66, 0x0c, 0xf6, 0xeb, 0xca, 0x51, 0xb6, - 0xeb, 0x36, 0x42, 0x56, 0x87, 0x2b, 0xf8, 0x65, 0x56, 0xc8, 0xa3, 0x47, 0xb0, 0xc8, 0xcb, 0xac, - 0x4b, 0x13, 0xae, 0xd5, 0x24, 0xa2, 0xe6, 0xad, 0x52, 0xb1, 0xef, 0x5f, 0x6e, 0x2d, 0xb0, 0xda, - 0x58, 0x17, 0x4c, 0x6d, 0xc1, 0x0c, 0xfe, 0xa2, 0x62, 0x3f, 0x36, 0x09, 0x16, 0x9b, 0x07, 0x21, - 0xb1, 0x19, 0xf5, 0x36, 0x3c, 0x2a, 0x3f, 0x89, 0xf6, 0xc3, 0xb2, 0x06, 0xa8, 0x1f, 0x96, 0x7a, - 0x4d, 0xc9, 0xab, 0xbb, 0xaa, 0x52, 0x90, 0x22, 0x01, 0xfa, 0x51, 0x56, 0x6d, 0xe0, 0x5a, 0xb5, - 0xa4, 0xe6, 0x9f, 0x4a, 0x51, 0xb4, 0x0e, 0xcb, 0x82, 0x5e, 0xaa, 0xe6, 0x0f, 0x70, 0x43, 0x2d, - 0x2b, 0xd5, 0xc3, 0x86, 0x14, 0x43, 0x19, 0x78, 0x10, 0x64, 0x30, 0xad, 0x4f, 0x0e, 0x95, 0x43, - 0x05, 0x97, 0xb3, 0x4f, 0x70, 0x49, 0xa9, 0xec, 0x35, 0x8a, 0x58, 0x79, 0x92, 0x57, 0x94, 0x82, - 0x52, 0x90, 0xe2, 0xfb, 0x89, 0x64, 0x4c, 0x8a, 0xa7, 0x7f, 0x1b, 0x15, 0x11, 0x6e, 0xd8, 0x76, - 0xd5, 0x14, 0xa7, 0x2c, 0x0b, 0xb3, 0x3f, 0x28, 0x75, 0x0e, 0xb4, 0x50, 0x05, 0x24, 0xbd, 0xe9, - 0xf5, 0x74, 0xf3, 0x87, 0x25, 0xcd, 0x6b, 0x5c, 0xb9, 0x4f, 0x4e, 0xaf, 0x00, 0xaa, 0x76, 0x29, - 0x54, 0x30, 0x1c, 0xe2, 0x36, 0xce, 0x2d, 0x0e, 0x17, 0xea, 0xb0, 0x92, 0xb7, 0xad, 0x96, 0x41, - 0xb7, 0xe2, 0xae, 0x6e, 0x98, 0x7e, 0x9a, 0xf8, 0x5f, 0x98, 0x17, 0xa3, 0x9f, 0xe9, 0x66, 0x8f, - 0x88, 0x39, 0x84, 0x81, 0xa1, 0xc7, 0x94, 0xaf, 0xcd, 0x71, 0x69, 0xf6, 0x93, 0xfe, 0x43, 0x14, - 0x10, 0xc7, 0x48, 0xe4, 0xff, 0x49, 0xb3, 0x9f, 0x7a, 0x52, 0x30, 0xd3, 0x21, 0xae, 0xab, 0xb7, - 0xc9, 0xd0, 0xa9, 0xf1, 0x89, 0xe8, 0x11, 0xcc, 0x8a, 0x32, 0x4e, 0x5a, 0x62, 0xaa, 0x13, 0xd1, - 0x97, 0x1f, 0xaf, 0xbe, 0x02, 0xfa, 0x18, 0x92, 0x7e, 0x9d, 0x10, 0x59, 0xfa, 0x4d, 0xca, 0x7d, - 0xf9, 0xf4, 0x17, 0xb0, 0x92, 0xed, 0x1c, 0x1b, 0xed, 0x9e, 0xdd, 0x73, 0x35, 0xe2, 0xf6, 0x4c, - 0xef, 0x6a, 0x1e, 0x7f, 0x04, 0x73, 0x2f, 0x1c, 0xbd, 0xdb, 0x25, 0x2d, 0x4c, 0x1c, 0x27, 0xc4, - 0x67, 0x7f, 0x53, 0x33, 0x73, 0x1a, 0x08, 0x61, 0xc5, 0x71, 0xd2, 0xeb, 0x14, 0x21, 0x9d, 0x78, - 0x7b, 0x8e, 0xdd, 0xeb, 0x16, 0x88, 0x49, 0xfc, 0x28, 0xa5, 0x31, 0xac, 0x09, 0x84, 0x9a, 0xb7, - 0x1d, 0xa7, 0xd7, 0xa5, 0x2b, 0xc3, 0xbd, 0xa1, 0xf9, 0x8a, 0x7e, 0xe0, 0xd1, 0xbc, 0x93, 0x64, - 0xe4, 0xb2, 0xdb, 0x46, 0x69, 0x98, 0xed, 0x3a, 0x76, 0x93, 0xb8, 0xae, 0x08, 0x61, 0xb2, 0x9f, - 0x59, 0x7d, 0x72, 0xba, 0x0e, 0x48, 0x0c, 0x10, 0xdc, 0xb1, 0xff, 0x07, 0x20, 0xa0, 0xb4, 0x0f, - 0x11, 0xa7, 0x72, 0x29, 0x01, 0x26, 0x66, 0x85, 0x3c, 0x43, 0x7b, 0x83, 0x1f, 0x1a, 0x7d, 0xfe, - 0xd9, 0x4a, 0x1f, 0x00, 0x62, 0x28, 0x70, 0x0c, 0x75, 0xf6, 0xe1, 0x63, 0xf4, 0xea, 0xf0, 0xb1, - 0x4e, 0xe1, 0xed, 0xa9, 0x6e, 0xb5, 0x4c, 0x5a, 0x79, 0x3c, 0xe7, 0xa2, 0x8f, 0x7c, 0xd1, 0x43, - 0x48, 0x74, 0x15, 0xc7, 0x09, 0xd9, 0x8f, 0x43, 0xa1, 0x16, 0xb3, 0x66, 0xb2, 0xa2, 0x26, 0xfe, - 0x2b, 0x0a, 0x77, 0x47, 0xcb, 0x02, 0x45, 0x41, 0x35, 0xda, 0x9c, 0x68, 0xe4, 0xc4, 0x21, 0x7e, - 0xfd, 0x9a, 0x94, 0xd9, 0x9f, 0xc1, 0xb4, 0x77, 0x6e, 0xf9, 0x50, 0x78, 0x3e, 0x57, 0xa0, 0xac, - 0xbf, 0xbd, 0xdc, 0xfa, 0xa0, 0x6d, 0x78, 0xa7, 0xbd, 0xe3, 0x4c, 0xd3, 0xee, 0xec, 0xf4, 0xfd, - 0x69, 0x1d, 0x0f, 0xbe, 0x77, 0xba, 0xcf, 0xdb, 0x3b, 0xac, 0x5b, 0xea, 0xf5, 0x8c, 0x56, 0xe6, - 0xf0, 0x50, 0x2d, 0xbc, 0x7a, 0xb9, 0x35, 0xd5, 0x38, 0xb7, 0xd4, 0x82, 0x36, 0xe5, 0x9d, 0x5b, - 0x6a, 0x0b, 0xed, 0xc2, 0x9c, 0x37, 0xf0, 0x4e, 0xec, 0xe0, 0xab, 0x55, 0xcd, 0xa0, 0x62, 0x7a, - 0x17, 0xb6, 0x1a, 0xe7, 0x56, 0xd6, 0xa4, 0x18, 0xec, 0x42, 0xb1, 0x9a, 0x76, 0x8f, 0x02, 0x3b, - 0xb1, 0xb9, 0xf8, 0xfc, 0x6e, 0x03, 0x74, 0x1d, 0x72, 0x86, 0xd9, 0xae, 0x19, 0x9a, 0xe6, 0x2c, - 0xa5, 0xf3, 0x6d, 0xf8, 0xf3, 0x28, 0xac, 0xd0, 0x2c, 0xdc, 0x26, 0x4e, 0xf5, 0x8c, 0x38, 0x27, - 0xa6, 0xfd, 0x82, 0x6b, 0x6f, 0x40, 0x3c, 0x04, 0xb3, 0x53, 0x1a, 0xba, 0x0f, 0x0b, 0xcd, 0x9e, - 0xe3, 0x10, 0xcb, 0x13, 0x59, 0x83, 0xb7, 0x0c, 0xdc, 0xf6, 0xbc, 0x60, 0xb1, 0x14, 0x81, 0xde, - 0x87, 0x6b, 0x86, 0xd5, 0x74, 0x48, 0x67, 0x20, 0x1c, 0x0f, 0x08, 0x2f, 0xf6, 0x99, 0x3c, 0xa3, - 0x7c, 0x1d, 0x85, 0xeb, 0x39, 0x8a, 0xbb, 0x07, 0x69, 0x8e, 0x9c, 0xd8, 0x0e, 0xd9, 0xcb, 0xf7, - 0xf3, 0x6d, 0xe3, 0x07, 0xe5, 0xdb, 0x01, 0xa4, 0xa4, 0x26, 0x4e, 0xe9, 0x26, 0xb0, 0xcd, 0xd6, - 0xdb, 0x24, 0xda, 0x81, 0x56, 0xba, 0x03, 0x88, 0x17, 0xae, 0xb2, 0xe1, 0xba, 0x86, 0xd5, 0xe6, - 0xbe, 0x3d, 0x82, 0xf9, 0x17, 0x8e, 0x6d, 0xb5, 0x31, 0xaf, 0xa1, 0xc2, 0xbd, 0xc9, 0x25, 0x57, - 0x9b, 0x63, 0xe2, 0xfc, 0xc7, 0x0f, 0x77, 0x6c, 0x3c, 0xdc, 0xb4, 0x3b, 0x2c, 0x13, 0x87, 0x02, - 0xff, 0x9a, 0x63, 0xb7, 0x1d, 0xe2, 0x72, 0x18, 0x91, 0xfe, 0x5d, 0x0c, 0x96, 0x59, 0x47, 0xb0, - 0x4b, 0xc4, 0xf9, 0xe1, 0x8e, 0x1c, 0x8c, 0x00, 0xa7, 0xf7, 0x43, 0x4e, 0x4f, 0x88, 0x5e, 0x78, - 0x01, 0xfe, 0xf3, 0xa0, 0x00, 0x6f, 0xc2, 0x9a, 0xa8, 0x9b, 0x9a, 0x52, 0x2b, 0xa9, 0xf9, 0x2c, - 0xd6, 0x94, 0x72, 0xf5, 0xf1, 0x48, 0x11, 0xd6, 0xb2, 0x95, 0x3d, 0x05, 0xd7, 0x6b, 0x25, 0xb5, - 0x31, 0x54, 0x84, 0x39, 0xbd, 0xac, 0x68, 0x7b, 0x14, 0xb6, 0x04, 0x00, 0x8d, 0x96, 0xdd, 0x6d, - 0xe0, 0x7a, 0x25, 0x5b, 0xab, 0x17, 0xab, 0x0d, 0x29, 0x8e, 0x52, 0xb0, 0xd9, 0x2f, 0xcf, 0x7b, - 0x6a, 0x3e, 0x5b, 0xc2, 0xd5, 0x5a, 0x1d, 0x97, 0xd5, 0x7a, 0x5d, 0xad, 0xec, 0x49, 0x89, 0x80, - 0x66, 0xbd, 0x54, 0x3d, 0xc2, 0xf9, 0x6a, 0xa5, 0x7e, 0x58, 0x56, 0x34, 0x69, 0x0a, 0x6d, 0xc0, - 0xaa, 0xe0, 0x54, 0xaa, 0xb8, 0xa4, 0x64, 0xeb, 0x4a, 0xb1, 0x5a, 0x2a, 0x28, 0x9a, 0x34, 0x9d, - 0xd6, 0x41, 0x56, 0xad, 0x16, 0xf1, 0x88, 0xd3, 0x31, 0x2c, 0xdd, 0x23, 0x79, 0xbb, 0xd3, 0x31, - 0x44, 0xf6, 0x57, 0x60, 0xce, 0xf5, 0xf4, 0x36, 0xeb, 0x5b, 0xde, 0x12, 0xc8, 0x82, 0x50, 0xa4, - 0x48, 0x76, 0x19, 0x96, 0x54, 0xeb, 0x4c, 0x37, 0x8d, 0x16, 0x2b, 0x3e, 0x7c, 0x8d, 0x52, 0x70, - 0xa3, 0xda, 0xf5, 0x8c, 0x0e, 0x2d, 0x40, 0x4d, 0xe5, 0x4c, 0x37, 0xf3, 0xb6, 0x75, 0x62, 0x1a, - 0x4d, 0x4f, 0xac, 0xe1, 0x5f, 0xa2, 0x70, 0xbb, 0x6c, 0x58, 0x83, 0xcd, 0x46, 0x93, 0xea, 0xa1, - 0xe5, 0xea, 0x9e, 0xe1, 0x9e, 0x18, 0x83, 0x7c, 0x58, 0x87, 0xe5, 0x8e, 0x61, 0x0d, 0x20, 0x02, - 0x3e, 0xa6, 0x82, 0x6f, 0x73, 0x04, 0x96, 0x3a, 0xa3, 0xc3, 0xd0, 0x8e, 0xcd, 0x21, 0xae, 0x6d, - 0x0e, 0x75, 0x28, 0x6f, 0xd5, 0xb1, 0xf9, 0xea, 0x03, 0xf8, 0xf1, 0xcb, 0x75, 0x98, 0x63, 0x2e, - 0x17, 0x88, 0xa7, 0x1b, 0x26, 0xd2, 0x40, 0xb2, 0x6c, 0x0f, 0x0f, 0xdd, 0xd9, 0x70, 0xaf, 0xdf, - 0x09, 0xd9, 0x96, 0x21, 0xf7, 0x46, 0xc5, 0x88, 0xb6, 0x68, 0x0d, 0x91, 0x51, 0x15, 0xae, 0xf1, - 0x4b, 0x0e, 0x6a, 0xf9, 0x84, 0x05, 0x82, 0x3b, 0x7d, 0x77, 0xd2, 0x4e, 0x1f, 0x2a, 0x57, 0x45, - 0xda, 0xba, 0x06, 0xa9, 0xe8, 0x09, 0x20, 0x6e, 0xf0, 0x39, 0xb9, 0xe8, 0x5f, 0x23, 0x88, 0xdc, - 0x7c, 0x6f, 0x92, 0xcd, 0xd1, 0x3b, 0x8f, 0x62, 0x44, 0x93, 0x9c, 0x11, 0x06, 0xfa, 0x71, 0x14, - 0xb6, 0x59, 0x87, 0xfd, 0x82, 0x35, 0xe2, 0x43, 0x9d, 0xa6, 0x21, 0x5a, 0x71, 0x71, 0x7d, 0xf0, - 0x61, 0xd8, 0x40, 0x6f, 0x6c, 0xe1, 0x8b, 0x11, 0xed, 0xa6, 0x73, 0x99, 0x14, 0xfa, 0x0c, 0x96, - 0x03, 0x85, 0x03, 0xeb, 0xbc, 0xd3, 0x13, 0xfd, 0xf3, 0x83, 0x2b, 0xb5, 0x85, 0xfe, 0x48, 0xc8, - 0x1b, 0x63, 0xa1, 0x06, 0x48, 0x41, 0xf3, 0xb4, 0xb3, 0x93, 0xa7, 0x99, 0xed, 0x77, 0x2f, 0xb7, - 0xdd, 0x6f, 0x24, 0x8b, 0x11, 0xed, 0x9a, 0x37, 0x4c, 0x47, 0x47, 0xb0, 0x14, 0xb4, 0xea, 0xd0, - 0x2c, 0x25, 0xcf, 0x4c, 0x5c, 0x90, 0xd0, 0x0e, 0x92, 0x2e, 0x88, 0x37, 0xc2, 0x40, 0x9f, 0x42, - 0x70, 0x12, 0xd8, 0x65, 0x6d, 0x99, 0x9c, 0x64, 0x96, 0xef, 0x5f, 0xb9, 0x85, 0x2b, 0x46, 0xb4, - 0xa0, 0x7f, 0x9c, 0x83, 0x8a, 0xb4, 0x02, 0x18, 0x1e, 0xf1, 0x2b, 0xc0, 0x2c, 0xb3, 0x7a, 0xfb, - 0x0a, 0xcd, 0x4f, 0x31, 0x42, 0xab, 0x41, 0x9f, 0x86, 0x54, 0x58, 0xe0, 0x96, 0x3c, 0xdb, 0xc6, - 0xb4, 0x50, 0xc1, 0xe5, 0xa6, 0x02, 0x08, 0xaf, 0x6f, 0x8a, 0xd3, 0xe8, 0x61, 0xb1, 0xbb, 0xd8, - 0x11, 0x0d, 0x01, 0xcb, 0x70, 0x73, 0x13, 0x0f, 0xcb, 0x78, 0xe7, 0x40, 0x0f, 0x8b, 0x1d, 0xa4, - 0xd2, 0x05, 0x6f, 0xfa, 0xad, 0x04, 0x3e, 0x61, 0xbd, 0x84, 0x3c, 0x3f, 0x71, 0xc1, 0xc3, 0xba, - 0x0e, 0xba, 0xe0, 0xcd, 0x61, 0x3a, 0xaa, 0xf8, 0x0d, 0xa7, 0x23, 0x7a, 0x09, 0x79, 0x61, 0xa2, - 0x97, 0xe3, 0x3d, 0x07, 0xf5, 0xd2, 0x0c, 0x52, 0xa9, 0x97, 0x96, 0xdd, 0x22, 0xb8, 0x37, 0xb8, - 0x53, 0x95, 0x17, 0x27, 0x7a, 0x19, 0x76, 0xfb, 0x4a, 0xbd, 0xb4, 0x86, 0xe9, 0x3c, 0x51, 0x9c, - 0x78, 0xb8, 0x4d, 0xe1, 0x3c, 0x6e, 0x71, 0x3c, 0x2f, 0x4b, 0x97, 0x24, 0x8a, 0x10, 0xe8, 0xcf, - 0x13, 0xc5, 0x30, 0x83, 0xee, 0x4b, 0x1f, 0x97, 0x37, 0xfb, 0xfd, 0x80, 0xbc, 0x34, 0x71, 0x5f, - 0x86, 0xf7, 0x0e, 0x45, 0x96, 0x93, 0x47, 0x38, 0x2c, 0x5f, 0x0a, 0xdb, 0xfe, 0x7e, 0x42, 0x93, - 0xf3, 0xe5, 0x58, 0xcf, 0xc0, 0xf2, 0x65, 0x90, 0x4a, 0x83, 0xab, 0xfb, 0x7d, 0x14, 0x76, 0x58, - 0x23, 0x25, 0x6f, 0x4e, 0x0c, 0x6e, 0x58, 0xcb, 0x45, 0x83, 0xab, 0x0f, 0xd3, 0xa9, 0x9b, 0xbc, - 0x8b, 0x18, 0xa4, 0xf5, 0xeb, 0x13, 0xdd, 0x1c, 0xef, 0x42, 0xa8, 0x9b, 0x6e, 0x90, 0x8a, 0x7e, - 0x16, 0x85, 0x3b, 0x63, 0x59, 0x84, 0x65, 0x62, 0xcc, 0x9e, 0x2a, 0xb0, 0xc3, 0xdb, 0x01, 0xf9, - 0x06, 0x1b, 0xe6, 0x7f, 0xae, 0x90, 0x58, 0x42, 0x3b, 0x89, 0x62, 0x44, 0xdb, 0xf6, 0xde, 0x20, - 0x48, 0x63, 0x66, 0x70, 0x9c, 0x8d, 0x6d, 0x01, 0xb4, 0xe5, 0xad, 0x89, 0x31, 0x0b, 0x83, 0xe4, - 0x34, 0x66, 0xc6, 0x30, 0x9d, 0x26, 0xf7, 0xde, 0xe0, 0x85, 0x00, 0x8b, 0x36, 0x59, 0xde, 0x9e, - 0x98, 0xdc, 0x27, 0xbc, 0x27, 0xd0, 0xe4, 0xde, 0x1b, 0x63, 0xa1, 0x67, 0x20, 0x05, 0x20, 0x07, - 0x83, 0xe2, 0x72, 0x9a, 0xd9, 0xce, 0x84, 0xd8, 0xbe, 0x04, 0xb9, 0xb3, 0x1c, 0x3f, 0xcc, 0x41, - 0x2f, 0xe0, 0x26, 0xed, 0xb3, 0x74, 0xde, 0xc3, 0x60, 0x32, 0x68, 0x62, 0x44, 0xcb, 0x72, 0x9b, - 0x8d, 0xf4, 0x30, 0x6c, 0x59, 0x2e, 0x6f, 0x7d, 0x8a, 0x11, 0x6d, 0xd3, 0x9b, 0x28, 0x42, 0x73, - 0x0d, 0xcf, 0xd0, 0xb4, 0xd6, 0x53, 0x00, 0x2f, 0xdf, 0x99, 0xb8, 0xcf, 0xc6, 0x81, 0x3e, 0xdd, - 0x67, 0x46, 0x90, 0x8a, 0x0e, 0x61, 0xa9, 0x43, 0x01, 0x3a, 0x36, 0x2c, 0xba, 0xb1, 0x18, 0x44, - 0x97, 0xef, 0x4e, 0x5c, 0xdb, 0x30, 0x30, 0x4f, 0xe3, 0xd3, 0x19, 0xa6, 0xa3, 0x4f, 0x04, 0xcc, - 0x39, 0x21, 0x6c, 0x65, 0x69, 0x05, 0x7c, 0x67, 0x22, 0x72, 0x0a, 0x01, 0xf4, 0x14, 0x39, 0xf5, - 0x0d, 0xf0, 0xea, 0xf7, 0x39, 0xac, 0x18, 0x41, 0x18, 0x8c, 0x9b, 0x0c, 0x07, 0xcb, 0xef, 0x32, - 0xbb, 0xef, 0x85, 0xce, 0x3f, 0x1c, 0x35, 0x17, 0x23, 0xda, 0xb2, 0x31, 0xce, 0x43, 0x8f, 0x61, - 0xd9, 0xe0, 0x28, 0x58, 0x60, 0x3e, 0xbe, 0x94, 0xf7, 0xc6, 0x9e, 0xe9, 0x06, 0x03, 0x8c, 0x60, - 0x66, 0x9a, 0xc3, 0x8c, 0x51, 0x22, 0xea, 0xc0, 0x86, 0xdd, 0x07, 0xd2, 0x98, 0x9c, 0xe9, 0x26, - 0x6e, 0xfa, 0x50, 0x5a, 0xbe, 0xcf, 0xac, 0xef, 0x84, 0x16, 0xb4, 0xc9, 0xe0, 0xbb, 0x18, 0xd1, - 0xd6, 0xed, 0x70, 0x3e, 0xfa, 0x32, 0x0a, 0xb7, 0x42, 0x00, 0x37, 0xee, 0x05, 0xa1, 0xb9, 0xfc, - 0x80, 0x8d, 0xfb, 0x5f, 0x61, 0x6b, 0xfc, 0x66, 0x4c, 0x5f, 0x8c, 0x68, 0xa9, 0xce, 0xa5, 0x62, - 0xb9, 0x19, 0x98, 0x62, 0x3d, 0xf3, 0x7e, 0x22, 0x79, 0x4d, 0x92, 0xf6, 0x13, 0xc9, 0x65, 0x69, - 0x65, 0x3f, 0x91, 0x5c, 0x91, 0x56, 0xf7, 0x13, 0xc9, 0x55, 0x69, 0x6d, 0x3f, 0x91, 0x5c, 0x93, - 0xd6, 0xf7, 0x13, 0xc9, 0x75, 0x49, 0xde, 0x4f, 0x24, 0x65, 0x69, 0x63, 0x3f, 0x91, 0xdc, 0x90, - 0x36, 0xf7, 0x13, 0xc9, 0x9b, 0x52, 0x6a, 0x3f, 0x91, 0x4c, 0x49, 0x5b, 0xfb, 0x89, 0xe4, 0x2d, - 0x29, 0x9d, 0xbe, 0xcf, 0x60, 0x79, 0xcd, 0x76, 0x59, 0xd1, 0x45, 0x9b, 0x30, 0x45, 0x57, 0xef, - 0x5c, 0xdc, 0x00, 0x71, 0x38, 0xcf, 0x49, 0xe9, 0xaf, 0xa6, 0x60, 0xca, 0x7f, 0xc5, 0x1b, 0xb9, - 0x17, 0xdb, 0x10, 0xd7, 0x3a, 0x4b, 0x81, 0x97, 0x32, 0x2e, 0x30, 0xb8, 0x2c, 0xfb, 0xd1, 0x30, - 0xde, 0x74, 0x08, 0x7b, 0x00, 0x64, 0x68, 0x7a, 0x31, 0xf4, 0x88, 0x0d, 0xe5, 0x58, 0x26, 0x9c, - 0xbb, 0x23, 0xc6, 0xb9, 0x31, 0x18, 0x67, 0x5c, 0x6a, 0x08, 0x8e, 0x0a, 0x1a, 0xca, 0xc3, 0x42, - 0xcf, 0x22, 0xe7, 0x5d, 0xdb, 0xa5, 0x4d, 0xcd, 0xb9, 0x25, 0xc0, 0xf5, 0x1b, 0xda, 0x39, 0x6d, - 0xbe, 0xaf, 0x44, 0x21, 0xce, 0x0e, 0xcc, 0xd9, 0x8e, 0xd1, 0x36, 0x2c, 0x4c, 0x01, 0x00, 0x83, - 0xca, 0x53, 0xb9, 0x45, 0x71, 0xf5, 0x3d, 0x4d, 0xc1, 0x82, 0x5a, 0xd0, 0x80, 0x8b, 0xd0, 0x3f, - 0x54, 0x83, 0xe9, 0x16, 0xeb, 0x77, 0x04, 0xf4, 0x4d, 0x4d, 0xba, 0xb0, 0xe2, 0x5d, 0x51, 0x4e, - 0x16, 0xf3, 0x93, 0x06, 0xf3, 0xe3, 0x1c, 0x4d, 0xd8, 0x41, 0x07, 0xb0, 0x40, 0x13, 0x62, 0xab, - 0x9f, 0x0c, 0x39, 0x98, 0xdc, 0x0e, 0x18, 0xf6, 0x9f, 0xf6, 0x33, 0x0a, 0x17, 0x0c, 0xde, 0x88, - 0xcd, 0x93, 0x00, 0x0d, 0xfd, 0xa7, 0xbf, 0xda, 0x33, 0x97, 0x79, 0xe7, 0x6f, 0x0e, 0xb1, 0x0f, - 0x50, 0x0f, 0xe2, 0x96, 0xfd, 0x42, 0x60, 0xe3, 0x37, 0xf4, 0x83, 0x05, 0x11, 0x9c, 0x47, 0x57, - 0xbf, 0x23, 0xa3, 0x06, 0xf2, 0xa6, 0xdd, 0x7c, 0xde, 0xb7, 0xa2, 0xd1, 0xf1, 0xf8, 0x35, 0x1e, - 0xbf, 0x74, 0x7f, 0xf0, 0xd7, 0x18, 0xc8, 0x93, 0x5e, 0xa9, 0x90, 0x0c, 0x2b, 0xd9, 0x5c, 0x55, - 0x6b, 0xe0, 0xb1, 0xd7, 0x92, 0xbb, 0x70, 0x6b, 0x88, 0xc3, 0x7e, 0x94, 0x02, 0xd6, 0x94, 0x7c, - 0x55, 0x2b, 0xe0, 0xdd, 0xea, 0x61, 0xa5, 0x20, 0x45, 0x51, 0x0a, 0x36, 0x87, 0xc4, 0xf2, 0x25, - 0x55, 0xa9, 0xd0, 0xbf, 0x7d, 0x25, 0xdf, 0x90, 0xe2, 0x68, 0x0b, 0xae, 0x0f, 0xf1, 0x6b, 0x87, - 0xf5, 0xa2, 0xa2, 0xf9, 0xd6, 0xa4, 0x04, 0xba, 0x0e, 0xeb, 0xe3, 0xe3, 0xe0, 0x7a, 0x2d, 0x5b, - 0x91, 0xa6, 0xd0, 0x7f, 0xc3, 0x07, 0x43, 0x4c, 0x31, 0x78, 0xb6, 0xa4, 0x29, 0xd9, 0xc2, 0x53, - 0x7c, 0xa4, 0xa9, 0x8d, 0x86, 0x52, 0xc1, 0xb5, 0x6a, 0xbd, 0xae, 0xe6, 0x4a, 0x0a, 0xbb, 0x54, - 0xc9, 0x3e, 0x95, 0xa6, 0xd1, 0xbb, 0x70, 0x7b, 0x48, 0xb1, 0xa2, 0x1c, 0xf1, 0xdb, 0x0c, 0x5c, - 0xd3, 0x94, 0xc7, 0x4a, 0xa5, 0x51, 0xc7, 0x8d, 0x27, 0x15, 0x29, 0x89, 0xee, 0xc3, 0xdd, 0x21, - 0xc1, 0x86, 0x5a, 0x56, 0xea, 0x8d, 0x6c, 0xb9, 0x86, 0xf3, 0xd9, 0x7c, 0x51, 0x11, 0x13, 0x51, - 0x0a, 0xd2, 0xcc, 0x66, 0xe2, 0xab, 0xaf, 0x53, 0x91, 0x34, 0x0d, 0x6a, 0xec, 0xc1, 0xef, 0x87, - 0x1f, 0xbb, 0x02, 0x0f, 0x67, 0xfc, 0x6e, 0xa5, 0xa1, 0x3d, 0x1d, 0x0f, 0x29, 0xbb, 0xc8, 0xa1, - 0x1c, 0xea, 0xb7, 0x82, 0x1b, 0xd5, 0x2a, 0xae, 0x96, 0x68, 0x10, 0xd9, 0xcd, 0x0f, 0x65, 0xd4, - 0x15, 0x4d, 0xcd, 0x96, 0xd4, 0x4f, 0xb3, 0xb9, 0x92, 0x22, 0xc5, 0xd1, 0x4d, 0xd8, 0xe0, 0xf4, - 0x6c, 0xfd, 0x69, 0x25, 0x2f, 0xd4, 0x76, 0xb3, 0x6a, 0xe9, 0x50, 0x53, 0xa4, 0x29, 0x94, 0x86, - 0x14, 0x67, 0xf3, 0xb7, 0x2c, 0x5c, 0x50, 0xb2, 0x85, 0x92, 0x5a, 0x51, 0x06, 0x0f, 0x2f, 0xd3, - 0xdc, 0xe9, 0x07, 0x1f, 0x03, 0x1a, 0x3f, 0xfb, 0x28, 0x09, 0x89, 0x4a, 0xb5, 0xa2, 0x48, 0x11, - 0x34, 0x07, 0x33, 0xb9, 0x6c, 0xfe, 0xa0, 0xba, 0xbb, 0x2b, 0x45, 0xd1, 0x02, 0xcc, 0xaa, 0xe5, - 0xb2, 0x52, 0x50, 0xb3, 0x0d, 0x45, 0x8a, 0xe5, 0xee, 0x7f, 0xf3, 0xcf, 0x54, 0xe4, 0x9b, 0x57, - 0xa9, 0xe8, 0xb7, 0xaf, 0x52, 0xd1, 0xef, 0x5e, 0xa5, 0xa2, 0xff, 0x78, 0x95, 0x8a, 0xfe, 0xe2, - 0x75, 0x2a, 0xf2, 0xed, 0xeb, 0x54, 0xe4, 0xbb, 0xd7, 0xa9, 0xc8, 0xa7, 0x33, 0x22, 0x1b, 0xfc, - 0x3b, 0x00, 0x00, 0xff, 0xff, 0x90, 0xa5, 0x78, 0xbd, 0x53, 0x23, 0x00, 0x00, + // 3248 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x59, 0xcd, 0x6f, 0xdb, 0xd8, + 0xb5, 0x17, 0x65, 0xd9, 0x96, 0x8f, 0x3f, 0x42, 0x5f, 0x7f, 0xd1, 0x4e, 0x22, 0x3b, 0x4a, 0x32, + 0x93, 0x64, 0x30, 0xf2, 0x43, 0xe6, 0xcd, 0x7b, 0x6f, 0xf2, 0xf2, 0x16, 0xb2, 0x44, 0x5b, 0xb4, + 0xf5, 0x35, 0x94, 0x1c, 0x27, 0x13, 0x0c, 0xee, 0xa3, 0xa5, 0x6b, 0x99, 0x2f, 0x14, 0xa9, 0x21, + 0x29, 0xc7, 0x06, 0xde, 0xa2, 0xed, 0x6c, 0x06, 0xed, 0xa6, 0x9b, 0x02, 0x5d, 0x16, 0x18, 0x74, + 0x51, 0xa0, 0x28, 0xba, 0xed, 0xa6, 0xab, 0x2e, 0x66, 0x55, 0x0c, 0xba, 0x1a, 0x74, 0x91, 0xb6, + 0x49, 0xff, 0x8a, 0x59, 0x15, 0xf7, 0x83, 0x12, 0x25, 0x51, 0x8e, 0x33, 0x3b, 0xf2, 0x7c, 0xdd, + 0x73, 0xcf, 0x3d, 0x3c, 0xe7, 0x77, 0x2e, 0x61, 0xd9, 0x75, 0x8c, 0xc6, 0x69, 0xe7, 0x78, 0x9b, + 0xb8, 0xae, 0xe3, 0x7a, 0x99, 0x8e, 0xeb, 0xf8, 0x0e, 0x5a, 0x6c, 0x38, 0x8d, 0x17, 0x8c, 0x93, + 0x79, 0x71, 0x96, 0x79, 0x71, 0xd6, 0x39, 0xde, 0x58, 0xe1, 0x02, 0x43, 0x92, 0x1b, 0x28, 0xd0, + 0x6f, 0x1a, 0xbe, 0x21, 0x68, 0xab, 0x01, 0xad, 0x4d, 0x7c, 0x23, 0x44, 0x57, 0xba, 0xbe, 0x69, + 0x6d, 0x9f, 0x5a, 0x8d, 0x6d, 0xdf, 0x6c, 0x13, 0xcf, 0x37, 0xda, 0x1d, 0xc1, 0x59, 0x6e, 0x39, + 0x2d, 0x87, 0x3d, 0x6e, 0xd3, 0x27, 0x4e, 0x4d, 0xff, 0x3e, 0x0e, 0x4b, 0x65, 0xc7, 0x2f, 0x12, + 0xc3, 0x23, 0x05, 0xc7, 0x6a, 0x12, 0x57, 0xa5, 0x4b, 0xa3, 0x3c, 0x4c, 0xbb, 0xa4, 0x63, 0x99, + 0x0d, 0x43, 0x91, 0xb6, 0xa4, 0x7b, 0xb3, 0x0f, 0xef, 0x64, 0xfa, 0xfe, 0x8a, 0xb5, 0x33, 0x3a, + 0x97, 0xc8, 0x13, 0xaf, 0xe1, 0x9a, 0x1d, 0xdf, 0x71, 0x77, 0x12, 0xdf, 0xbc, 0xda, 0x8c, 0xe9, + 0x81, 0x2a, 0xda, 0x83, 0x39, 0x8b, 0x5a, 0xc6, 0xa7, 0xcc, 0xb4, 0x12, 0xbf, 0xba, 0x29, 0x7d, + 0xd6, 0xea, 0xfb, 0x84, 0x32, 0x30, 0xc9, 0x5e, 0x95, 0x04, 0xb3, 0xa0, 0x44, 0x58, 0x60, 0x5b, + 0xd0, 0xb9, 0x18, 0xfa, 0x18, 0x92, 0xae, 0x61, 0xb7, 0x08, 0x36, 0x9b, 0xca, 0xc4, 0x96, 0x74, + 0x6f, 0x62, 0x67, 0x83, 0x7a, 0xf6, 0xfa, 0xd5, 0xe6, 0xb4, 0x4e, 0xe9, 0x5a, 0xfe, 0xfb, 0xfe, + 0xa3, 0x3e, 0xcd, 0x64, 0xb5, 0x26, 0xba, 0x0d, 0xd0, 0xe8, 0x7a, 0xbe, 0xd3, 0xc6, 0x6d, 0xaf, + 0xa5, 0x4c, 0x6e, 0x49, 0xf7, 0x66, 0xc4, 0x96, 0x66, 0x38, 0xbd, 0xe4, 0xb5, 0xd2, 0xab, 0xb0, + 0x5c, 0x76, 0x9a, 0xe4, 0xd0, 0x36, 0xce, 0x0c, 0xd3, 0x32, 0x8e, 0x2d, 0xc2, 0x42, 0x96, 0x5e, + 0x87, 0xb5, 0x43, 0xdb, 0xeb, 0x76, 0x3a, 0x8e, 0xeb, 0x93, 0xa6, 0x4e, 0xbe, 0xe8, 0x12, 0xcf, + 0xe7, 0xac, 0x9f, 0x48, 0x80, 0xd8, 0x62, 0x65, 0xc7, 0xdf, 0x75, 0xba, 0x76, 0x93, 0x07, 0x39, + 0xec, 0xa5, 0x74, 0x75, 0x2f, 0x3f, 0x86, 0xa4, 0xe7, 0x3b, 0x2e, 0x53, 0x8b, 0x0f, 0xaa, 0xd5, + 0x28, 0x9d, 0xab, 0x89, 0x47, 0x7d, 0x9a, 0xc9, 0x6a, 0xcd, 0xf4, 0x1f, 0x24, 0x58, 0x61, 0xb6, + 0x0e, 0xc8, 0x45, 0xc9, 0xf4, 0xda, 0x86, 0xdf, 0x38, 0xe5, 0x7e, 0x7c, 0x04, 0x8b, 0x2e, 0x77, + 0x17, 0x7b, 0xbe, 0xe1, 0xfa, 0xf8, 0x05, 0xb9, 0x60, 0x0e, 0xcd, 0xed, 0x4c, 0x7f, 0xff, 0x6a, + 0x73, 0xe2, 0x80, 0x5c, 0xe8, 0xd7, 0x84, 0x44, 0x8d, 0x0a, 0x1c, 0x90, 0x0b, 0xb4, 0x0d, 0x01, + 0x09, 0x13, 0xbb, 0xc9, 0x54, 0xe2, 0x83, 0x2a, 0xf3, 0x82, 0xaf, 0xda, 0x4d, 0xaa, 0xf0, 0x08, + 0xa6, 0xd8, 0x0e, 0x3c, 0x65, 0x72, 0x6b, 0xe2, 0xde, 0xec, 0xc3, 0x1b, 0x51, 0x69, 0xc0, 0xb6, + 0x68, 0x9f, 0x38, 0x22, 0xec, 0x42, 0x23, 0xfd, 0x66, 0x02, 0xd2, 0x3a, 0x31, 0x9a, 0x47, 0xa6, + 0x7f, 0x6a, 0xda, 0x87, 0x76, 0x83, 0xb8, 0xbe, 0x61, 0xda, 0xfe, 0x85, 0x66, 0xfb, 0xc4, 0x3d, + 0x33, 0x2c, 0xbe, 0x91, 0x7d, 0x58, 0x70, 0x89, 0xd1, 0xc4, 0xbd, 0xdc, 0x17, 0xc9, 0x7b, 0x33, + 0xb4, 0x14, 0xfd, 0x40, 0x32, 0xa7, 0x56, 0x23, 0x53, 0x0f, 0x84, 0xc4, 0x5a, 0xf3, 0x54, 0xb5, + 0x47, 0x44, 0x3a, 0x20, 0x72, 0x6e, 0x7a, 0xbe, 0x69, 0xb7, 0x42, 0xf6, 0xe2, 0x57, 0xb7, 0xb7, + 0x18, 0xa8, 0xf7, 0x6d, 0x3e, 0x87, 0x35, 0xcb, 0x69, 0x18, 0x16, 0xee, 0xf6, 0x77, 0x80, 0x2d, + 0xb3, 0x6d, 0xfa, 0x2c, 0xd9, 0xae, 0x68, 0x78, 0x85, 0xd9, 0x08, 0x05, 0xa1, 0x48, 0x2d, 0xa0, + 0xcf, 0x41, 0x69, 0x59, 0xce, 0x71, 0xa4, 0xf5, 0x89, 0xab, 0x5b, 0x5f, 0xe5, 0x46, 0x46, 0xcc, + 0x3f, 0x87, 0x25, 0xe7, 0xd8, 0x23, 0xee, 0x19, 0x09, 0xc5, 0xd7, 0x53, 0x12, 0xec, 0x2c, 0xa3, + 0x3e, 0xe9, 0x8a, 0x90, 0x1e, 0x5e, 0x00, 0x39, 0xc3, 0x0c, 0xef, 0x51, 0xe2, 0x97, 0xbf, 0xda, + 0x8c, 0xa5, 0x9b, 0xb0, 0x56, 0x77, 0x0d, 0xdb, 0x33, 0x1a, 0xbe, 0xe9, 0xd8, 0xd9, 0x63, 0xf6, + 0x21, 0xf1, 0x93, 0xd5, 0x60, 0xca, 0x25, 0x86, 0xe7, 0xd8, 0xec, 0x44, 0x17, 0x1e, 0x7e, 0x90, + 0x19, 0x29, 0x9f, 0x99, 0x51, 0x5d, 0x9d, 0xa9, 0xf4, 0x72, 0x89, 0xbd, 0xa5, 0x9f, 0xc3, 0x72, + 0x48, 0xb2, 0xda, 0xf5, 0xc4, 0x57, 0x90, 0x03, 0xe8, 0x74, 0xbd, 0x53, 0x42, 0xb0, 0x7f, 0x6e, + 0x8b, 0xc4, 0x49, 0x45, 0xec, 0x2b, 0xa4, 0x1c, 0x14, 0x07, 0xae, 0x57, 0x3f, 0xb7, 0xd3, 0x5f, + 0x4a, 0xb0, 0x12, 0x12, 0xd0, 0x89, 0xef, 0x5e, 0x70, 0xf3, 0x7b, 0x43, 0x3b, 0xb8, 0x7f, 0xf9, + 0x0e, 0x98, 0x66, 0x94, 0xff, 0xe8, 0x16, 0xcc, 0x90, 0x73, 0xdf, 0x35, 0x58, 0x8d, 0x8a, 0x87, + 0x6a, 0x54, 0x92, 0x91, 0x69, 0x89, 0xfa, 0xa3, 0x04, 0xab, 0x21, 0x5b, 0x35, 0xdf, 0xf0, 0xbb, + 0x1e, 0x77, 0x63, 0x15, 0x26, 0xa8, 0x9e, 0x14, 0xd2, 0xa3, 0x04, 0x54, 0xee, 0xb9, 0x17, 0x67, + 0xee, 0xfd, 0xdb, 0xe5, 0xee, 0x85, 0x4c, 0x66, 0x22, 0xa3, 0xfc, 0x18, 0xa6, 0x38, 0x1d, 0x21, + 0x58, 0xd0, 0xd5, 0x6c, 0xad, 0x52, 0xc6, 0x87, 0xe5, 0x83, 0x72, 0xe5, 0xa8, 0x2c, 0xc7, 0x90, + 0x02, 0xcb, 0x82, 0x56, 0x7f, 0x5a, 0xc6, 0xb9, 0x4a, 0xa9, 0xa4, 0xd5, 0xeb, 0x6a, 0x5e, 0x8e, + 0xa7, 0x13, 0x49, 0x49, 0x96, 0xd2, 0x7f, 0x8b, 0x83, 0x7c, 0xe4, 0x9a, 0x3e, 0xa1, 0xdf, 0xb7, + 0xcd, 0xab, 0x28, 0xfa, 0x04, 0xa6, 0x4d, 0xf6, 0xea, 0x29, 0x12, 0xcb, 0xba, 0xf5, 0x88, 0xd3, + 0xe1, 0x0a, 0x41, 0x23, 0x12, 0xf2, 0xe8, 0x31, 0x2c, 0xf0, 0x46, 0xe4, 0xd1, 0x92, 0x64, 0x37, + 0x88, 0xe8, 0x0a, 0x2b, 0x54, 0xec, 0xfb, 0x57, 0x9b, 0xf3, 0xac, 0x7b, 0xd4, 0x04, 0x53, 0x9f, + 0xb7, 0xc2, 0xaf, 0xa8, 0xd0, 0x8b, 0x4d, 0x82, 0xc5, 0xe6, 0x41, 0x44, 0x6c, 0x86, 0xbd, 0x8d, + 0x8e, 0xca, 0x8f, 0xa5, 0x5e, 0x58, 0x56, 0x01, 0xf5, 0xc2, 0x52, 0xab, 0xaa, 0x39, 0x6d, 0x57, + 0x53, 0xf3, 0x72, 0x2c, 0x44, 0x3f, 0xca, 0x6a, 0x75, 0x5c, 0xad, 0x14, 0xb5, 0xdc, 0x33, 0x59, + 0x42, 0x6b, 0xb0, 0x24, 0xe8, 0xc5, 0x4a, 0xee, 0x00, 0xd7, 0xb5, 0x92, 0x5a, 0x39, 0xac, 0xcb, + 0x71, 0x94, 0x81, 0x07, 0x61, 0x06, 0xd3, 0xfa, 0xf4, 0x50, 0x3d, 0x54, 0x71, 0x29, 0xfb, 0x14, + 0x17, 0xd5, 0xf2, 0x5e, 0xbd, 0x80, 0xd5, 0xa7, 0x39, 0x55, 0xcd, 0xab, 0x79, 0x79, 0x62, 0x3f, + 0x91, 0x8c, 0xcb, 0x13, 0xe9, 0x5f, 0x4b, 0x22, 0xc2, 0x75, 0xc7, 0xa9, 0x58, 0xe2, 0x2b, 0xcb, + 0xc2, 0xcc, 0x0f, 0x2a, 0x9d, 0x7d, 0x2d, 0x54, 0x06, 0xd9, 0x68, 0xf8, 0x5d, 0xc3, 0xfa, 0x61, + 0x45, 0xf3, 0x1a, 0x57, 0xee, 0x91, 0xd3, 0xcb, 0x80, 0x2a, 0x1d, 0xda, 0x4c, 0x4d, 0x97, 0x78, + 0xf5, 0x73, 0x9b, 0x37, 0xd4, 0x1a, 0x2c, 0xe7, 0x1c, 0xbb, 0x69, 0xd2, 0x54, 0xdc, 0x35, 0x4c, + 0x2b, 0x28, 0x13, 0xff, 0x0d, 0x73, 0x62, 0xf5, 0x33, 0xc3, 0xea, 0x12, 0xb1, 0x87, 0x28, 0xb8, + 0xf0, 0x84, 0xf2, 0xf5, 0x59, 0x2e, 0xcd, 0x5e, 0xd2, 0xbf, 0x93, 0x00, 0x71, 0x14, 0x41, 0xfe, + 0x8f, 0x34, 0x7a, 0xa5, 0x27, 0x05, 0xd3, 0x6d, 0xe2, 0x79, 0x46, 0x8b, 0x0c, 0x7c, 0x35, 0x01, + 0x11, 0x3d, 0x86, 0x19, 0xd1, 0xe8, 0x48, 0x53, 0x6c, 0x75, 0x2c, 0x3e, 0x09, 0xe2, 0xd5, 0x53, + 0x40, 0x8f, 0x20, 0x19, 0xf4, 0x09, 0x51, 0xa5, 0xdf, 0xa6, 0xdc, 0x93, 0x4f, 0x7f, 0x01, 0xcb, + 0xd9, 0xf6, 0xb1, 0xd9, 0xea, 0x3a, 0x5d, 0x4f, 0x27, 0x5e, 0xd7, 0xf2, 0xaf, 0xe6, 0xf1, 0x27, + 0x30, 0xfb, 0xd2, 0x35, 0x3a, 0x1d, 0xd2, 0xc4, 0xc4, 0x75, 0x23, 0x7c, 0x0e, 0x92, 0x9a, 0x99, + 0xd3, 0x41, 0x08, 0xab, 0xae, 0x9b, 0x5e, 0xa3, 0x18, 0xe2, 0xc4, 0xdf, 0x73, 0x9d, 0x6e, 0x27, + 0x4f, 0x2c, 0x12, 0x44, 0x29, 0x8d, 0x61, 0x55, 0x60, 0xb8, 0x9c, 0xe3, 0xba, 0xdd, 0x0e, 0x3d, + 0x19, 0xee, 0x0d, 0xad, 0x57, 0xf4, 0x01, 0x0f, 0xd7, 0x9d, 0x24, 0x23, 0x97, 0xbc, 0x16, 0x4a, + 0xc3, 0x4c, 0xc7, 0x75, 0x1a, 0xc4, 0xf3, 0x44, 0x08, 0x93, 0xbd, 0xca, 0x1a, 0x90, 0xd3, 0x35, + 0x40, 0x62, 0x81, 0x70, 0xc6, 0xfe, 0x0f, 0x80, 0x00, 0x9b, 0x01, 0x88, 0x9a, 0xdc, 0x49, 0x09, + 0x34, 0x34, 0x23, 0xe4, 0x19, 0x1e, 0xea, 0xbf, 0xd0, 0xe8, 0xf3, 0xc7, 0x66, 0xfa, 0x00, 0x10, + 0xc3, 0x49, 0x23, 0xb8, 0xac, 0x07, 0xb0, 0xa4, 0xab, 0x03, 0xac, 0x1a, 0x05, 0x80, 0xa7, 0x86, + 0xdd, 0xb4, 0x68, 0xe7, 0xf1, 0xdd, 0x8b, 0x1e, 0x36, 0x44, 0x0f, 0x21, 0xd1, 0x51, 0x5d, 0x37, + 0x22, 0x1f, 0x07, 0x42, 0x2d, 0x76, 0xcd, 0x64, 0x45, 0x4f, 0xfc, 0xa7, 0x04, 0x77, 0x87, 0xdb, + 0x02, 0x45, 0x41, 0x55, 0x0a, 0xdf, 0x75, 0x72, 0xe2, 0x92, 0xa0, 0x7f, 0x8d, 0xab, 0xec, 0xcf, + 0x61, 0xca, 0x3f, 0xb7, 0x03, 0xb0, 0x38, 0xb7, 0x93, 0xa7, 0xac, 0xbf, 0xbe, 0xda, 0xfc, 0xa8, + 0x65, 0xfa, 0xa7, 0xdd, 0xe3, 0x4c, 0xc3, 0x69, 0x6f, 0xf7, 0xfc, 0x69, 0x1e, 0xf7, 0x9f, 0xb7, + 0x3b, 0x2f, 0x5a, 0xdb, 0x6c, 0x9e, 0xe8, 0x76, 0xcd, 0x66, 0xe6, 0xf0, 0x50, 0xcb, 0xbf, 0x7e, + 0xb5, 0x39, 0x59, 0x3f, 0xb7, 0xb5, 0xbc, 0x3e, 0xe9, 0x9f, 0xdb, 0x5a, 0x13, 0xed, 0xc2, 0xac, + 0xdf, 0xf7, 0x4e, 0x64, 0xf0, 0xd5, 0xba, 0x66, 0x58, 0x31, 0xbd, 0x0b, 0x9b, 0xf5, 0x73, 0x3b, + 0x6b, 0x51, 0x0c, 0x76, 0xa1, 0xda, 0x0d, 0xa7, 0x4b, 0x81, 0x9d, 0x48, 0x2e, 0xbe, 0xbf, 0xdb, + 0x00, 0x1d, 0x97, 0x9c, 0x61, 0x96, 0x35, 0x03, 0xdb, 0x9c, 0xa1, 0x74, 0x9e, 0x86, 0x3f, 0x93, + 0x60, 0x99, 0x56, 0xe1, 0x16, 0x71, 0x2b, 0x67, 0xc4, 0x3d, 0xb1, 0x9c, 0x97, 0x5c, 0x7b, 0x1d, + 0x26, 0x22, 0x50, 0x2d, 0xa5, 0xa1, 0xfb, 0x30, 0xdf, 0xe8, 0xba, 0x2e, 0xb1, 0x7d, 0x51, 0x35, + 0x38, 0xa8, 0xe6, 0xb6, 0xe7, 0x04, 0x8b, 0x95, 0x08, 0xf4, 0x21, 0x5c, 0x33, 0xed, 0x86, 0x4b, + 0xda, 0x7d, 0xe1, 0x89, 0x90, 0xf0, 0x42, 0x8f, 0xc9, 0x2b, 0xca, 0xd7, 0x12, 0x5c, 0xdf, 0xa1, + 0x38, 0xbb, 0x5f, 0xe6, 0xc8, 0x89, 0xe3, 0x92, 0xbd, 0x5c, 0xaf, 0xde, 0xd6, 0x7f, 0x50, 0xbd, + 0xed, 0x43, 0x4a, 0x6a, 0xe2, 0x94, 0x26, 0x81, 0x63, 0x35, 0xdf, 0xa5, 0xd0, 0xf6, 0xb5, 0xd2, + 0x6d, 0x40, 0xbc, 0x71, 0x95, 0x4c, 0xcf, 0x33, 0xed, 0x16, 0xf7, 0xed, 0x31, 0xcc, 0xbd, 0x74, + 0x1d, 0xbb, 0x85, 0x79, 0x0f, 0x15, 0xee, 0x8d, 0x6f, 0xb9, 0xfa, 0x2c, 0x13, 0xe7, 0x2f, 0x41, + 0xb8, 0xe3, 0xa3, 0xe1, 0xa6, 0xf3, 0x53, 0x89, 0xb8, 0x14, 0xe6, 0x57, 0x5d, 0xa7, 0xe5, 0x12, + 0x8f, 0xc3, 0x88, 0xf4, 0x6f, 0xe2, 0xb0, 0xc4, 0xf0, 0xff, 0x2e, 0x11, 0xdf, 0x0f, 0x77, 0xe4, + 0x60, 0x08, 0x38, 0x7d, 0x18, 0xf1, 0xf5, 0x44, 0xe8, 0x45, 0x37, 0xe0, 0x3f, 0xf5, 0x1b, 0xf0, + 0x06, 0xac, 0x8a, 0xbe, 0xa9, 0xab, 0xd5, 0xa2, 0x96, 0xcb, 0x62, 0x5d, 0x2d, 0x55, 0x9e, 0x0c, + 0x35, 0x61, 0x3d, 0x5b, 0xde, 0x53, 0x71, 0xad, 0x5a, 0xd4, 0xea, 0x03, 0x4d, 0x98, 0xd3, 0x4b, + 0xaa, 0xbe, 0x47, 0x61, 0x4b, 0x08, 0xd0, 0xe8, 0xd9, 0xdd, 0x3a, 0xae, 0x95, 0xb3, 0xd5, 0x5a, + 0xa1, 0x52, 0x97, 0x27, 0x50, 0x0a, 0x36, 0x7a, 0xed, 0x79, 0x4f, 0xcb, 0x65, 0x8b, 0xb8, 0x52, + 0xad, 0xe1, 0x92, 0x56, 0xab, 0x69, 0xe5, 0x3d, 0x39, 0x11, 0xd2, 0xac, 0x15, 0x2b, 0x47, 0x38, + 0x57, 0x29, 0xd7, 0x0e, 0x4b, 0xaa, 0x2e, 0x4f, 0xa2, 0x75, 0x58, 0x11, 0x9c, 0x72, 0x05, 0x17, + 0xd5, 0x6c, 0x4d, 0x2d, 0x54, 0x8a, 0x79, 0x55, 0x97, 0xa7, 0xd2, 0x06, 0x28, 0x9a, 0xdd, 0x24, + 0x3e, 0x71, 0xdb, 0xa6, 0x6d, 0xf8, 0x24, 0xe7, 0xb4, 0xdb, 0xa6, 0xa8, 0xfe, 0x2a, 0xcc, 0x7a, + 0xbe, 0xd1, 0x62, 0x73, 0xcb, 0x3b, 0x02, 0x59, 0x10, 0x8a, 0x14, 0xc9, 0x2e, 0xc1, 0xa2, 0x66, + 0x9f, 0x19, 0x96, 0xd9, 0x64, 0xcd, 0x87, 0x9f, 0x51, 0x0a, 0x6e, 0x54, 0x3a, 0xbe, 0xd9, 0xa6, + 0x0d, 0xa8, 0xa1, 0x9e, 0x19, 0x56, 0xce, 0xb1, 0x4f, 0x2c, 0xb3, 0xe1, 0x8b, 0x33, 0xfc, 0xb3, + 0x04, 0xb7, 0x4b, 0xa6, 0xdd, 0x4f, 0x36, 0x5a, 0x54, 0x0f, 0x6d, 0xcf, 0xf0, 0x4d, 0xef, 0xc4, + 0xec, 0xd7, 0xc3, 0x1a, 0x2c, 0xb5, 0x4d, 0xbb, 0x0f, 0x11, 0xf0, 0x31, 0x15, 0x7c, 0x97, 0x4f, + 0x60, 0xb1, 0x3d, 0xbc, 0x0c, 0x9d, 0xd8, 0x5c, 0xe2, 0x39, 0xd6, 0xc0, 0x84, 0xf2, 0x4e, 0x13, + 0x5b, 0xa0, 0xde, 0x87, 0x1f, 0xbf, 0x58, 0x83, 0x59, 0xe6, 0x72, 0x9e, 0xf8, 0x86, 0x69, 0x21, + 0x1d, 0x64, 0xdb, 0xf1, 0xf1, 0xc0, 0xad, 0x06, 0xf7, 0xfa, 0xbd, 0x88, 0xb4, 0x8c, 0xb8, 0x59, + 0x29, 0xc4, 0xf4, 0x05, 0x7b, 0x80, 0x8c, 0x2a, 0x70, 0x8d, 0x5f, 0x03, 0x50, 0xcb, 0x27, 0x2c, + 0x10, 0xdc, 0xe9, 0xbb, 0xe3, 0x32, 0x7d, 0xa0, 0x5d, 0x15, 0xe8, 0xe8, 0x1a, 0xa6, 0xa2, 0xa7, + 0x80, 0xb8, 0xc1, 0x17, 0xe4, 0x02, 0xb7, 0xc5, 0xa8, 0x2f, 0x6a, 0xf3, 0xbd, 0x71, 0x36, 0x87, + 0x6f, 0x05, 0x0a, 0x31, 0x5d, 0x76, 0x87, 0x18, 0xe8, 0x47, 0x12, 0x6c, 0xb1, 0x09, 0xfb, 0x25, + 0x1b, 0xc4, 0x07, 0x26, 0x4d, 0x53, 0x8c, 0xe2, 0xe2, 0x8e, 0xe6, 0xe3, 0xa8, 0x85, 0xde, 0x3a, + 0xc2, 0x17, 0x62, 0xfa, 0x4d, 0xf7, 0x32, 0x29, 0xf4, 0x39, 0x2c, 0x85, 0x1a, 0x07, 0x36, 0xf8, + 0xa4, 0x27, 0xe6, 0xe7, 0x07, 0x57, 0x1a, 0x0b, 0x83, 0x95, 0x90, 0x3f, 0xc2, 0x42, 0x75, 0x90, + 0xc3, 0xe6, 0xe9, 0x64, 0xa7, 0x4c, 0x31, 0xdb, 0xef, 0x5f, 0x6e, 0xbb, 0x37, 0x48, 0x16, 0x62, + 0xfa, 0x35, 0x7f, 0x90, 0x8e, 0x8e, 0x60, 0x31, 0x6c, 0xd5, 0xa5, 0x55, 0x4a, 0x99, 0x1e, 0x7b, + 0x20, 0x91, 0x13, 0x24, 0x3d, 0x10, 0x7f, 0x88, 0x81, 0x3e, 0x83, 0xf0, 0x26, 0xb0, 0xc7, 0xc6, + 0x32, 0x25, 0xc9, 0x2c, 0xdf, 0xbf, 0xf2, 0x08, 0x57, 0x88, 0xe9, 0x61, 0xff, 0x38, 0x07, 0x15, + 0x68, 0x07, 0x30, 0x7d, 0x12, 0x74, 0x80, 0x19, 0x66, 0xf5, 0xf6, 0x15, 0x86, 0x9f, 0x42, 0x8c, + 0x76, 0x83, 0x1e, 0x0d, 0x69, 0x30, 0xcf, 0x2d, 0xf9, 0x8e, 0x83, 0x69, 0xa3, 0x82, 0xcb, 0x4d, + 0x85, 0x10, 0x5e, 0xcf, 0x14, 0xa7, 0xd1, 0x8f, 0xc5, 0xe9, 0x60, 0x57, 0x0c, 0x04, 0xac, 0xc2, + 0xcd, 0x8e, 0xfd, 0x58, 0x46, 0x27, 0x07, 0xfa, 0xb1, 0x38, 0x61, 0x2a, 0x3d, 0xf0, 0x46, 0x30, + 0x4a, 0xe0, 0x13, 0x36, 0x4b, 0x28, 0x73, 0x63, 0x0f, 0x3c, 0x6a, 0xea, 0xa0, 0x07, 0xde, 0x18, + 0xa4, 0xa3, 0x72, 0x30, 0x70, 0xba, 0x62, 0x96, 0x50, 0xe6, 0xc7, 0x7a, 0x39, 0x3a, 0x73, 0x50, + 0x2f, 0xad, 0x30, 0x95, 0x7a, 0x69, 0x3b, 0x4d, 0x82, 0xbb, 0xfd, 0x5b, 0x47, 0x65, 0x61, 0xac, + 0x97, 0x51, 0xf7, 0x93, 0xd4, 0x4b, 0x7b, 0x90, 0xce, 0x0b, 0xc5, 0x89, 0x8f, 0x5b, 0x14, 0xce, + 0xe3, 0x26, 0xc7, 0xf3, 0x8a, 0x7c, 0x49, 0xa1, 0x88, 0x80, 0xfe, 0xbc, 0x50, 0x0c, 0x32, 0x68, + 0x5e, 0x06, 0xb8, 0xbc, 0xd1, 0x9b, 0x07, 0x94, 0xc5, 0xb1, 0x79, 0x19, 0x3d, 0x3b, 0x14, 0x58, + 0x4d, 0x1e, 0xe2, 0xb0, 0x7a, 0x29, 0x6c, 0x07, 0xf9, 0x84, 0xc6, 0xd7, 0xcb, 0x91, 0x99, 0x81, + 0xd5, 0xcb, 0x30, 0x95, 0x06, 0xd7, 0x08, 0xe6, 0x28, 0xec, 0xb2, 0x41, 0x4a, 0xd9, 0x18, 0x1b, + 0xdc, 0xa8, 0x91, 0x8b, 0x06, 0xd7, 0x18, 0xa4, 0x53, 0x37, 0xf9, 0x14, 0xd1, 0x2f, 0xeb, 0xd7, + 0xc7, 0xba, 0x39, 0x3a, 0x85, 0x50, 0x37, 0xbd, 0x30, 0x15, 0xfd, 0x54, 0x82, 0x3b, 0x23, 0x55, + 0x84, 0x55, 0x62, 0xcc, 0x2e, 0xf3, 0xb1, 0xcb, 0xc7, 0x01, 0xe5, 0x06, 0x5b, 0xe6, 0xbf, 0xae, + 0x50, 0x58, 0x22, 0x27, 0x89, 0x42, 0x4c, 0xdf, 0xf2, 0xdf, 0x22, 0x48, 0x63, 0x66, 0x72, 0x9c, + 0x8d, 0x1d, 0x01, 0xb4, 0x95, 0xcd, 0xb1, 0x31, 0x8b, 0x82, 0xe4, 0x34, 0x66, 0xe6, 0x20, 0x9d, + 0x16, 0xf7, 0x6e, 0xff, 0x0e, 0x1d, 0x8b, 0x31, 0x59, 0xd9, 0x1a, 0x5b, 0xdc, 0xc7, 0xdc, 0xb8, + 0xd3, 0xe2, 0xde, 0x1d, 0x61, 0xa1, 0xe7, 0x20, 0x87, 0x20, 0x07, 0x83, 0xe2, 0x4a, 0x9a, 0xd9, + 0xce, 0x44, 0xd8, 0xbe, 0x04, 0xb9, 0xb3, 0x1a, 0x3f, 0xc8, 0x41, 0x2f, 0xe1, 0x26, 0x9d, 0xb3, + 0x0c, 0x3e, 0xc3, 0x60, 0xd2, 0x1f, 0x62, 0xc4, 0xc8, 0x72, 0x9b, 0xad, 0xf4, 0x30, 0xea, 0x58, + 0x2e, 0x1f, 0x7d, 0x0a, 0x31, 0x7d, 0xc3, 0x1f, 0x2b, 0x42, 0x6b, 0x0d, 0xaf, 0xd0, 0xb4, 0xd7, + 0x53, 0x00, 0xaf, 0xdc, 0x19, 0x9b, 0x67, 0xa3, 0x40, 0x9f, 0xe6, 0x99, 0x19, 0xa6, 0xa2, 0x43, + 0x58, 0x6c, 0x53, 0x80, 0x8e, 0x4d, 0x9b, 0x26, 0x16, 0x83, 0xe8, 0xca, 0xdd, 0xb1, 0x67, 0x1b, + 0x05, 0xe6, 0x69, 0x7c, 0xda, 0x83, 0x74, 0xf4, 0xa9, 0x80, 0x39, 0x27, 0x84, 0x9d, 0x2c, 0xed, + 0x80, 0xef, 0x8d, 0x45, 0x4e, 0x11, 0x80, 0x9e, 0x22, 0xa7, 0x9e, 0x01, 0xde, 0xfd, 0xfe, 0x17, + 0x96, 0xcd, 0x30, 0x0c, 0xc6, 0x0d, 0x86, 0x83, 0x95, 0xf7, 0x99, 0xdd, 0x0f, 0x22, 0xf7, 0x1f, + 0x8d, 0x9a, 0x0b, 0x31, 0x7d, 0xc9, 0x1c, 0xe5, 0xa1, 0x27, 0xb0, 0x64, 0x72, 0x14, 0x2c, 0x30, + 0x1f, 0x3f, 0xca, 0x7b, 0x23, 0x3f, 0xb2, 0xfa, 0x0b, 0x0c, 0x61, 0x66, 0x5a, 0xc3, 0xcc, 0x61, + 0x22, 0x6a, 0xc3, 0xba, 0xd3, 0x03, 0xd2, 0x98, 0x9c, 0x19, 0x16, 0x6e, 0x04, 0x50, 0x5a, 0xb9, + 0xcf, 0xac, 0x6f, 0x47, 0x36, 0xb4, 0xf1, 0xe0, 0xbb, 0x10, 0xd3, 0xd7, 0x9c, 0x68, 0x3e, 0xfa, + 0x52, 0x82, 0x5b, 0x11, 0x80, 0x1b, 0x77, 0xc3, 0xd0, 0x5c, 0x79, 0xc0, 0xd6, 0xfd, 0x8f, 0xa8, + 0x33, 0x7e, 0x3b, 0xa6, 0x2f, 0xc4, 0xf4, 0x54, 0xfb, 0x52, 0xb1, 0x9d, 0x69, 0x98, 0x64, 0x33, + 0xf3, 0x7e, 0x22, 0x79, 0x4d, 0x96, 0xf7, 0x13, 0xc9, 0x25, 0x79, 0x79, 0x3f, 0x91, 0x5c, 0x96, + 0x57, 0xf6, 0x13, 0xc9, 0x15, 0x79, 0x75, 0x3f, 0x91, 0x5c, 0x95, 0xd7, 0xf6, 0x13, 0xc9, 0x35, + 0x59, 0xd9, 0x4f, 0x24, 0x15, 0x79, 0x7d, 0x3f, 0x91, 0x5c, 0x97, 0x37, 0xf6, 0x13, 0xc9, 0x9b, + 0x72, 0x6a, 0x3f, 0x91, 0x4c, 0xc9, 0x9b, 0xfb, 0x89, 0xe4, 0x2d, 0x39, 0x9d, 0xbe, 0xcf, 0x60, + 0x79, 0xd5, 0xf1, 0x58, 0xd3, 0x45, 0x1b, 0x30, 0x49, 0x4f, 0xef, 0x5c, 0xdc, 0x00, 0x71, 0x38, + 0xcf, 0x49, 0xe9, 0xaf, 0x26, 0x61, 0x32, 0xf8, 0xcf, 0x35, 0x74, 0x2f, 0xb6, 0x2e, 0xae, 0x75, + 0x16, 0x9b, 0xa4, 0xe3, 0x92, 0x86, 0xe1, 0x93, 0x66, 0x89, 0x0b, 0xf4, 0x2f, 0xcb, 0xfe, 0x7f, + 0x10, 0x6f, 0xba, 0x84, 0xfd, 0x22, 0x63, 0x68, 0x7a, 0x21, 0xf2, 0x13, 0x1b, 0xa8, 0xb1, 0x4c, + 0x78, 0xe7, 0x8e, 0x58, 0xe7, 0x46, 0x7f, 0x9d, 0x51, 0xa9, 0x01, 0x38, 0x2a, 0x68, 0x28, 0x07, + 0xf3, 0x5d, 0x9b, 0x9c, 0x77, 0x1c, 0x8f, 0x0e, 0x35, 0xe7, 0xb6, 0x00, 0xd7, 0x6f, 0x19, 0xe7, + 0xf4, 0xb9, 0x9e, 0x12, 0x85, 0x38, 0xdb, 0x30, 0xeb, 0xb8, 0x66, 0xcb, 0xb4, 0x31, 0x05, 0x00, + 0x0c, 0x2a, 0x4f, 0xee, 0x2c, 0x88, 0xab, 0xef, 0x29, 0x0a, 0x16, 0xb4, 0xbc, 0x0e, 0x5c, 0x84, + 0xbe, 0xa1, 0x2a, 0x4c, 0x35, 0xd9, 0xbc, 0x23, 0xa0, 0x6f, 0x6a, 0xdc, 0x85, 0x15, 0x9f, 0x8a, + 0x76, 0x14, 0xb1, 0x3f, 0xb9, 0xbf, 0x3f, 0xce, 0xd1, 0x85, 0x1d, 0x74, 0x00, 0xf3, 0xb4, 0x20, + 0x36, 0x7b, 0xc5, 0x90, 0x83, 0xc9, 0xad, 0x90, 0xe1, 0xe0, 0xe7, 0x77, 0x46, 0xe5, 0x82, 0xe1, + 0x1b, 0xb1, 0x39, 0x12, 0xa2, 0xa1, 0x7f, 0x0f, 0x4e, 0x7b, 0xfa, 0x32, 0xef, 0x82, 0xe4, 0x10, + 0x79, 0x80, 0xba, 0x30, 0x61, 0x3b, 0x2f, 0x05, 0x36, 0x7e, 0xcb, 0x3c, 0x98, 0x17, 0xc1, 0x79, + 0x7c, 0xf5, 0x3b, 0x32, 0x6a, 0x20, 0x67, 0x39, 0x8d, 0x17, 0x3d, 0x2b, 0x3a, 0x5d, 0x8f, 0x5f, + 0xe3, 0xf1, 0x4b, 0xf7, 0x07, 0x7f, 0x89, 0x83, 0x32, 0xee, 0x2f, 0x15, 0x52, 0x60, 0x39, 0xbb, + 0x53, 0xd1, 0xeb, 0x78, 0xe4, 0x6f, 0xc9, 0x5d, 0xb8, 0x35, 0xc0, 0x61, 0x2f, 0x6a, 0x1e, 0xeb, + 0x6a, 0xae, 0xa2, 0xe7, 0xf1, 0x6e, 0xe5, 0xb0, 0x9c, 0x97, 0x25, 0x94, 0x82, 0x8d, 0x01, 0xb1, + 0x5c, 0x51, 0x53, 0xcb, 0xf4, 0x6d, 0x5f, 0xcd, 0xd5, 0xe5, 0x09, 0xb4, 0x09, 0xd7, 0x07, 0xf8, + 0xd5, 0xc3, 0x5a, 0x41, 0xd5, 0x03, 0x6b, 0x72, 0x02, 0x5d, 0x87, 0xb5, 0xd1, 0x75, 0x70, 0xad, + 0x9a, 0x2d, 0xcb, 0x93, 0xe8, 0x3f, 0xe1, 0xa3, 0x01, 0xa6, 0x58, 0x3c, 0x5b, 0xd4, 0xd5, 0x6c, + 0xfe, 0x19, 0x3e, 0xd2, 0xb5, 0x7a, 0x5d, 0x2d, 0xe3, 0x6a, 0xa5, 0x56, 0xd3, 0x76, 0x8a, 0x2a, + 0xbb, 0x54, 0xc9, 0x3e, 0x93, 0xa7, 0xd0, 0xfb, 0x70, 0x7b, 0x40, 0xb1, 0xac, 0x1e, 0xf1, 0xdb, + 0x0c, 0x5c, 0xd5, 0xd5, 0x27, 0x6a, 0xb9, 0x5e, 0xc3, 0xf5, 0xa7, 0x65, 0x39, 0x89, 0xee, 0xc3, + 0xdd, 0x01, 0xc1, 0xba, 0x56, 0x52, 0x6b, 0xf5, 0x6c, 0xa9, 0x8a, 0x73, 0xd9, 0x5c, 0x41, 0x15, + 0x1b, 0x51, 0xf3, 0xf2, 0xf4, 0x46, 0xe2, 0xab, 0xaf, 0x53, 0xb1, 0x34, 0x0d, 0x6a, 0xfc, 0xc1, + 0x6f, 0x07, 0x7f, 0x76, 0x85, 0x7e, 0x9c, 0xf1, 0xbb, 0x95, 0xba, 0xfe, 0x6c, 0x34, 0xa4, 0xec, + 0x22, 0x87, 0x72, 0xa8, 0xdf, 0x2a, 0xae, 0x57, 0x2a, 0xb8, 0x52, 0xa4, 0x41, 0x64, 0x37, 0x3f, + 0x94, 0x51, 0x53, 0x75, 0x2d, 0x5b, 0xd4, 0x3e, 0xcb, 0xee, 0x14, 0x55, 0x79, 0x02, 0xdd, 0x84, + 0x75, 0x4e, 0xcf, 0xd6, 0x9e, 0x95, 0x73, 0x42, 0x6d, 0x37, 0xab, 0x15, 0x0f, 0x75, 0x55, 0x9e, + 0x44, 0x69, 0x48, 0x71, 0x36, 0xff, 0x97, 0x85, 0xf3, 0x6a, 0x36, 0x5f, 0xd4, 0xca, 0x6a, 0xff, + 0xc7, 0xcb, 0x14, 0x77, 0xfa, 0xc1, 0x23, 0x40, 0xa3, 0xdf, 0x3e, 0x4a, 0x42, 0xa2, 0x5c, 0x29, + 0xab, 0x72, 0x0c, 0xcd, 0xc2, 0xf4, 0x4e, 0x36, 0x77, 0x50, 0xd9, 0xdd, 0x95, 0x25, 0x34, 0x0f, + 0x33, 0x5a, 0xa9, 0xa4, 0xe6, 0xb5, 0x6c, 0x5d, 0x95, 0xe3, 0x3b, 0xf7, 0xbf, 0xf9, 0x47, 0x2a, + 0xf6, 0xcd, 0xeb, 0x94, 0xf4, 0xed, 0xeb, 0x94, 0xf4, 0xdd, 0xeb, 0x94, 0xf4, 0xf7, 0xd7, 0x29, + 0xe9, 0xe7, 0x6f, 0x52, 0xb1, 0x6f, 0xdf, 0xa4, 0x62, 0xdf, 0xbd, 0x49, 0xc5, 0x3e, 0x9b, 0x16, + 0xd5, 0xe0, 0x5f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x4e, 0x43, 0xbd, 0x62, 0x75, 0x22, 0x00, 0x00, } func (m *NotLeaseHolderError) Marshal() (dAtA []byte, err error) { @@ -2684,10 +2671,10 @@ func (m *RangeKeyMismatchError) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - if len(m.rangesInternal) > 0 { - for iNdEx := len(m.rangesInternal) - 1; iNdEx >= 0; iNdEx-- { + if len(m.Ranges) > 0 { + for iNdEx := len(m.Ranges) - 1; iNdEx >= 0; iNdEx-- { { - size, err := m.rangesInternal[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + size, err := m.Ranges[iNdEx].MarshalToSizedBuffer(dAtA[:i]) if err != nil { return 0, err } @@ -2698,28 +2685,6 @@ func (m *RangeKeyMismatchError) MarshalToSizedBuffer(dAtA []byte) (int, error) { dAtA[i] = 0x2a } } - if m.DeprecatedSuggestedRange != nil { - { - size, err := m.DeprecatedSuggestedRange.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintErrors(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x22 - } - { - size, err := m.DeprecatedMismatchedRange.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintErrors(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x1a if m.RequestEndKey != nil { i -= len(m.RequestEndKey) copy(dAtA[i:], m.RequestEndKey) @@ -4586,14 +4551,8 @@ func (m *RangeKeyMismatchError) Size() (n int) { l = len(m.RequestEndKey) n += 1 + l + sovErrors(uint64(l)) } - l = m.DeprecatedMismatchedRange.Size() - n += 1 + l + sovErrors(uint64(l)) - if m.DeprecatedSuggestedRange != nil { - l = m.DeprecatedSuggestedRange.Size() - n += 1 + l + sovErrors(uint64(l)) - } - if len(m.rangesInternal) > 0 { - for _, e := range m.rangesInternal { + if len(m.Ranges) > 0 { + for _, e := range m.Ranges { l = e.Size() n += 1 + l + sovErrors(uint64(l)) } @@ -5853,78 +5812,9 @@ func (m *RangeKeyMismatchError) Unmarshal(dAtA []byte) error { m.RequestEndKey = []byte{} } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field DeprecatedMismatchedRange", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowErrors - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthErrors - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthErrors - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.DeprecatedMismatchedRange.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field DeprecatedSuggestedRange", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowErrors - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthErrors - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthErrors - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if m.DeprecatedSuggestedRange == nil { - m.DeprecatedSuggestedRange = &RangeDescriptor{} - } - if err := m.DeprecatedSuggestedRange.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex case 5: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field rangesInternal", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Ranges", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -5951,8 +5841,8 @@ func (m *RangeKeyMismatchError) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.rangesInternal = append(m.rangesInternal, RangeInfo{}) - if err := m.rangesInternal[len(m.rangesInternal)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + m.Ranges = append(m.Ranges, RangeInfo{}) + if err := m.Ranges[len(m.Ranges)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex diff --git a/pkg/roachpb/errors.proto b/pkg/roachpb/errors.proto index 5a06dc54ff62..f4736119eedf 100644 --- a/pkg/roachpb/errors.proto +++ b/pkg/roachpb/errors.proto @@ -89,25 +89,12 @@ message RangeNotFoundError { message RangeKeyMismatchError { optional bytes request_start_key = 1 [(gogoproto.casttype) = "Key"]; optional bytes request_end_key = 2 [(gogoproto.casttype) = "Key"]; - - // deprecated_mismatched_range is an older version of mismatched_range. Can go - // away in 21.1, when we don't worry about 20.1 kvservers not populating rangesInternal. - optional roachpb.RangeDescriptor deprecated_mismatched_range = 3 [(gogoproto.nullable) = false]; - // deprecated_suggested_range is an older version of suggested_range. Can go - // away in 21.1, when we don't worry about 20.1 kvservers not populating - // rangesInternal. - optional roachpb.RangeDescriptor deprecated_suggested_range = 4; - - // ranges contains information intended for the client's range cache. The + // Ranges contains information intended for the client's range cache. The // server populates it with info on the range with the ID addressed by the // client (always the first in the array) and then all other ranges // overlapping the requested key range, or in between the addressed range and // the requested key range. - // - // In 21.1 the customname can be removed, together with the Ranges() accessor. - repeated roachpb.RangeInfo ranges = 5 [(gogoproto.customname) = "rangesInternal", - (gogoproto.nullable) = false]; - + repeated roachpb.RangeInfo ranges = 5 [(gogoproto.nullable) = false]; } // A ReadWithinUncertaintyIntervalError indicates that a read at timestamp