diff --git a/dgraph/cmd/debug/run.go b/dgraph/cmd/debug/run.go index 278760e211f..4b2dcb669f1 100644 --- a/dgraph/cmd/debug/run.go +++ b/dgraph/cmd/debug/run.go @@ -533,7 +533,10 @@ func lookup(db *badger.DB) { if err != nil { log.Fatal(err) } - fmt.Fprintf(&buf, " Length: %d", pl.Length(math.MaxUint64, 0)) + pl.RLock() + c, _, _ := pl.GetLength(math.MaxUint64) + pl.RUnlock() + fmt.Fprintf(&buf, " Length: %d", c) splits := pl.PartSplits() isMultiPart := len(splits) > 0 @@ -611,6 +614,13 @@ func printKeys(db *badger.DB) { } var sz, deltaCount int64 + pl, err := posting.GetNew(key, db, opt.readTs) + if err == nil { + pl.RLock() + c, _, _ := pl.GetLength(math.MaxUint64) + fmt.Fprintf(&buf, " countValue: [%d]", c) + pl.RUnlock() + } LOOP: for ; itr.ValidForPrefix(prefix); itr.Next() { item := itr.Item() diff --git a/posting/index.go b/posting/index.go index 123be08e66e..6620de531d1 100644 --- a/posting/index.go +++ b/posting/index.go @@ -233,6 +233,18 @@ type countParams struct { reverse bool } +// When we want to update count edges, we should set them with OVR instead of SET as SET will mess with count +func shouldAddCountEdge(found bool, edge *pb.DirectedEdge) bool { + if found { + if edge.Op != pb.DirectedEdge_DEL { + edge.Op = pb.DirectedEdge_OVR + } + return true + } else { + return edge.Op != pb.DirectedEdge_DEL + } +} + func (txn *Txn) addReverseMutationHelper(ctx context.Context, plist *List, hasCountIndex bool, edge *pb.DirectedEdge) (countParams, error) { countBefore, countAfter := 0, 0 @@ -242,12 +254,14 @@ func (txn *Txn) addReverseMutationHelper(ctx context.Context, plist *List, defer plist.Unlock() if hasCountIndex { countBefore, found, _ = plist.getPostingAndLengthNoSort(txn.StartTs, 0, edge.ValueId) - if countBefore == -1 { + if countBefore < 0 { return emptyCountParams, errors.Wrapf(ErrTsTooOld, "Adding reverse mutation helper count") } } - if err := plist.addMutationInternal(ctx, txn, edge); err != nil { - return emptyCountParams, err + if !(hasCountIndex && !shouldAddCountEdge(found, edge)) { + if err := plist.addMutationInternal(ctx, txn, edge); err != nil { + return emptyCountParams, err + } } if hasCountIndex { countAfter = countAfterMutation(countBefore, found, edge.Op) @@ -311,7 +325,7 @@ func (txn *Txn) addReverseAndCountMutation(ctx context.Context, t *pb.DirectedEd // entries for this key in the index are removed. pred, ok := schema.State().Get(ctx, t.Attr) isSingleUidUpdate := ok && !pred.GetList() && pred.GetValueType() == pb.Posting_UID && - t.Op == pb.DirectedEdge_SET && t.ValueId != 0 + t.Op != pb.DirectedEdge_DEL && t.ValueId != 0 if isSingleUidUpdate { dataKey := x.DataKey(t.Attr, t.Entity) dataList, err := getFn(dataKey) @@ -458,7 +472,7 @@ func (txn *Txn) updateCount(ctx context.Context, params countParams) error { } func countAfterMutation(countBefore int, found bool, op pb.DirectedEdge_Op) int { - if !found && op == pb.DirectedEdge_SET { + if !found && op != pb.DirectedEdge_DEL { return countBefore + 1 } else if found && op == pb.DirectedEdge_DEL { return countBefore - 1 @@ -531,8 +545,10 @@ func (txn *Txn) addMutationHelper(ctx context.Context, l *List, doUpdateIndex bo } } - if err = l.addMutationInternal(ctx, txn, t); err != nil { - return val, found, emptyCountParams, err + if !(hasCountIndex && !shouldAddCountEdge(found && currPost.Op != Del, t)) { + if err = l.addMutationInternal(ctx, txn, t); err != nil { + return val, found, emptyCountParams, err + } } if found && doUpdateIndex { @@ -596,7 +612,7 @@ func (l *List) AddMutationWithIndex(ctx context.Context, edge *pb.DirectedEdge, return err } } - if edge.Op == pb.DirectedEdge_SET { + if edge.Op != pb.DirectedEdge_DEL { val = types.Val{ Tid: types.TypeID(edge.ValueType), Value: edge.Value, @@ -895,15 +911,13 @@ func (r *rebuilder) Run(ctx context.Context) error { // We set it to 1 in case there are no keys found and NewStreamAt is called with ts=0. var counter uint64 = 1 - var txn *Txn - tmpWriter := tmpDB.NewManagedWriteBatch() stream := pstore.NewStreamAt(r.startTs) stream.LogPrefix = fmt.Sprintf("Rebuilding index for predicate %s (1/2):", r.attr) stream.Prefix = r.prefix //TODO We need to create a single transaction irrespective of the type of the predicate if pred.ValueType == pb.Posting_VFLOAT { - txn = NewTxn(r.startTs) + x.AssertTrue(false) } stream.KeyToList = func(key []byte, itr *badger.Iterator) (*bpb.KVList, error) { // We should return quickly if the context is no longer valid. @@ -923,44 +937,25 @@ func (r *rebuilder) Run(ctx context.Context) error { return nil, errors.Wrapf(err, "error reading posting list from disk") } - // We are using different transactions in each call to KeyToList function. This could - // be a problem for computing reverse count indexes if deltas for same key are added - // in different transactions. Such a case doesn't occur for now. - // TODO: Maybe we can always use txn initialized in rebuilder.Run(). - streamTxn := txn - if streamTxn == nil { - streamTxn = NewTxn(r.startTs) - } - edges, err := r.fn(pk.Uid, l, streamTxn) + kvs, err := l.Rollup(nil, r.startTs) if err != nil { return nil, err } - if txn != nil { - kvs := make([]*bpb.KV, 0, len(edges)) - for _, edge := range edges { - version := atomic.AddUint64(&counter, 1) - key := x.DataKey(edge.Attr, edge.Entity) - pl, err := txn.GetFromDelta(key) - if err != nil { - return &bpb.KVList{}, nil - } - data := pl.getMutation(r.startTs) - kv := bpb.KV{ - Key: x.DataKey(edge.Attr, edge.Entity), - Value: data, - UserMeta: []byte{BitDeltaPosting}, - Version: version, - } - kvs = append(kvs, &kv) - } - return &bpb.KVList{Kv: kvs}, nil + for _, kv := range kvs { + version := atomic.AddUint64(&counter, 1) + kv.Version = version + } + + streamTxn := NewTxn(r.startTs) + _, err = r.fn(pk.Uid, l, streamTxn) + if err != nil { + return nil, err } // Convert data into deltas. streamTxn.Update() // txn.cache.Lock() is not required because we are the only one making changes to txn. - kvs := make([]*bpb.KV, 0, len(streamTxn.cache.deltas)) for key, data := range streamTxn.cache.deltas { version := atomic.AddUint64(&counter, 1) kv := bpb.KV{ diff --git a/posting/list.go b/posting/list.go index d6b873112e4..bd2a3656997 100644 --- a/posting/list.go +++ b/posting/list.go @@ -55,10 +55,12 @@ var ( ) const ( - // Set means overwrite in mutation layer. It contributes 0 in Length. + // Set means set in mutation layer. It contributes 1 in Length. Set uint32 = 0x01 // Del means delete in mutation layer. It contributes -1 in Length. Del uint32 = 0x02 + // Ovr means overwrite in mutation layer. It contributes 0 in Length. + Ovr uint32 = 0x03 // BitSchemaPosting signals that the value stores a schema or type. BitSchemaPosting byte = 0x01 @@ -305,6 +307,8 @@ func NewPosting(t *pb.DirectedEdge) *pb.Posting { switch t.Op { case pb.DirectedEdge_SET: op = Set + case pb.DirectedEdge_OVR: + op = Set case pb.DirectedEdge_DEL: op = Del default: @@ -340,7 +344,7 @@ func hasDeleteAll(mpost *pb.Posting) bool { // Ensure that you either abort the uncommitted postings or commit them before calling me. func (l *List) updateMutationLayer(mpost *pb.Posting, singleUidUpdate bool) error { l.AssertLock() - x.AssertTrue(mpost.Op == Set || mpost.Op == Del) + x.AssertTrue(mpost.Op == Set || mpost.Op == Del || mpost.Op == Ovr) // If we have a delete all, then we replace the map entry with just one. if hasDeleteAll(mpost) { @@ -529,7 +533,7 @@ func (l *List) addMutationInternal(ctx context.Context, txn *Txn, t *pb.Directed } pred, ok := schema.State().Get(ctx, t.Attr) isSingleUidUpdate := ok && !pred.GetList() && pred.GetValueType() == pb.Posting_UID && - pk.IsData() && mpost.Op == Set && mpost.PostingType == pb.Posting_REF + pk.IsData() && mpost.Op != Del && mpost.PostingType == pb.Posting_REF if err != l.updateMutationLayer(mpost, isSingleUidUpdate) { return errors.Wrapf(err, "cannot update mutation layer of key %s with value %+v", @@ -555,6 +559,10 @@ func (l *List) getPosting(startTs uint64) *pb.PostingList { return nil } +func (l *List) GetPosting(startTs uint64) *pb.PostingList { + return l.getPosting(startTs) +} + // getMutation returns a marshaled version of posting list mutation stored internally. func (l *List) getMutation(startTs uint64) []byte { l.RLock() @@ -817,6 +825,10 @@ func (l *List) IsEmpty(readTs, afterUid uint64) (bool, error) { return count == 0, nil } +func (l *List) GetLength(readTs uint64) (int, bool, *pb.Posting) { + return l.getPostingAndLengthNoSort(readTs, 0, 0) +} + func (l *List) getPostingAndLengthNoSort(readTs, afterUid, uid uint64) (int, bool, *pb.Posting) { l.AssertRLock() @@ -824,24 +836,29 @@ func (l *List) getPostingAndLengthNoSort(readTs, afterUid, uid uint64) (int, boo uids := dec.Seek(uid, codec.SeekStart) length := codec.ExactLen(l.plist.Pack) found := len(uids) > 0 && uids[0] == uid + found_ts := uint64(0) for _, plist := range l.mutationMap { for _, mpost := range plist.Postings { + ts := mpost.CommitTs + if mpost.StartTs == readTs { + ts = mpost.StartTs + } if (mpost.CommitTs > 0 && mpost.CommitTs <= readTs) || (mpost.StartTs == readTs) { if hasDeleteAll(mpost) { found = false length = 0 continue } - if mpost.Uid == uid { - found = (mpost.Op == Set) + if mpost.Uid == uid && found_ts < ts { + found = (mpost.Op != Del) + found_ts = ts } if mpost.Op == Set { length += 1 - } else { + } else if mpost.Op == Del { length -= 1 } - } } } diff --git a/posting/mvcc.go b/posting/mvcc.go index 4790753addb..b91de83c332 100644 --- a/posting/mvcc.go +++ b/posting/mvcc.go @@ -555,6 +555,10 @@ func PostingListCacheEnabled() bool { return lCache != nil } +func GetNew(key []byte, pstore *badger.DB, readTs uint64) (*List, error) { + return getNew(key, pstore, readTs) +} + func getNew(key []byte, pstore *badger.DB, readTs uint64) (*List, error) { if PostingListCacheEnabled() { l, ok := lCache.Get(key) diff --git a/protos/pb.proto b/protos/pb.proto index 7c1993ee4e5..66a32a28f7e 100644 --- a/protos/pb.proto +++ b/protos/pb.proto @@ -237,6 +237,7 @@ message DirectedEdge { enum Op { SET = 0; DEL = 1; + OVR = 2; } Op op = 8; repeated api.Facet facets = 9; diff --git a/protos/pb/pb.pb.go b/protos/pb/pb.pb.go index 5f233d6c69e..90761bc80b4 100644 --- a/protos/pb/pb.pb.go +++ b/protos/pb/pb.pb.go @@ -35,16 +35,19 @@ type DirectedEdge_Op int32 const ( DirectedEdge_SET DirectedEdge_Op = 0 DirectedEdge_DEL DirectedEdge_Op = 1 + DirectedEdge_OVR DirectedEdge_Op = 2 ) var DirectedEdge_Op_name = map[int32]string{ 0: "SET", 1: "DEL", + 2: "OVR", } var DirectedEdge_Op_value = map[string]int32{ "SET": 0, "DEL": 1, + "OVR": 2, } func (x DirectedEdge_Op) String() string { @@ -5831,361 +5834,361 @@ func init() { func init() { proto.RegisterFile("pb.proto", fileDescriptor_f80abaa17e25ccc8) } var fileDescriptor_f80abaa17e25ccc8 = []byte{ - // 5660 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x7b, 0x4b, 0x6f, 0x1c, 0x57, - 0x76, 0x30, 0xfb, 0xdd, 0x75, 0xfa, 0xc1, 0xe6, 0x95, 0x2c, 0xb7, 0x29, 0x4b, 0x94, 0xcb, 0x96, - 0x4d, 0x4b, 0x16, 0x25, 0xd1, 0x9e, 0xf9, 0xc6, 0x1e, 0x0c, 0x30, 0xa4, 0x48, 0xca, 0xb4, 0x28, - 0x92, 0x53, 0xdd, 0xd2, 0x3c, 0x80, 0xef, 0x6b, 0x14, 0xab, 0x2e, 0xc9, 0x1a, 0x56, 0x57, 0xd5, - 0x54, 0x55, 0x73, 0x48, 0xef, 0x66, 0x35, 0x9b, 0x6f, 0x31, 0x48, 0xf6, 0x41, 0x90, 0x6d, 0xb2, - 0x0a, 0x02, 0x24, 0x08, 0x90, 0x45, 0x80, 0x20, 0x18, 0x64, 0x35, 0xd9, 0x05, 0x99, 0x44, 0x08, - 0x3c, 0x59, 0x69, 0x11, 0x20, 0xf9, 0x03, 0x09, 0xce, 0x39, 0xb7, 0x5e, 0xcd, 0xd6, 0xc3, 0x0e, - 0xb2, 0xc9, 0xaa, 0xef, 0x39, 0xf7, 0x7d, 0xce, 0xb9, 0xe7, 0x59, 0x0d, 0xcd, 0xe0, 0x60, 0x25, - 0x08, 0xfd, 0xd8, 0x17, 0xe5, 0xe0, 0x60, 0x51, 0x33, 0x03, 0x87, 0xc1, 0xc5, 0x5b, 0x47, 0x4e, - 0x7c, 0x3c, 0x39, 0x58, 0xb1, 0xfc, 0xf1, 0x5d, 0xfb, 0x28, 0x34, 0x83, 0xe3, 0x3b, 0x8e, 0x7f, - 0xf7, 0xc0, 0xb4, 0x8f, 0x64, 0x78, 0xf7, 0xf4, 0x93, 0xbb, 0xc1, 0xc1, 0xdd, 0x64, 0xea, 0xe2, - 0x9d, 0xdc, 0xd8, 0x23, 0xff, 0xc8, 0xbf, 0x4b, 0xe8, 0x83, 0xc9, 0x21, 0x41, 0x04, 0x50, 0x8b, - 0x87, 0xeb, 0x8b, 0x50, 0xdd, 0x71, 0xa2, 0x58, 0x08, 0xa8, 0x4e, 0x1c, 0x3b, 0xea, 0x97, 0x6e, - 0x54, 0x96, 0xeb, 0x06, 0xb5, 0xf5, 0xc7, 0xa0, 0x0d, 0xcd, 0xe8, 0xe4, 0xa9, 0xe9, 0x4e, 0xa4, - 0xe8, 0x41, 0xe5, 0xd4, 0x74, 0xfb, 0xa5, 0x1b, 0xa5, 0xe5, 0xb6, 0x81, 0x4d, 0xb1, 0x02, 0xcd, - 0x53, 0xd3, 0x1d, 0xc5, 0xe7, 0x81, 0xec, 0x97, 0x6f, 0x94, 0x96, 0xbb, 0xab, 0x97, 0x56, 0x82, - 0x83, 0x95, 0x7d, 0x3f, 0x8a, 0x1d, 0xef, 0x68, 0xe5, 0xa9, 0xe9, 0x0e, 0xcf, 0x03, 0x69, 0x34, - 0x4e, 0xb9, 0xa1, 0xef, 0x41, 0x6b, 0x10, 0x5a, 0x5b, 0x13, 0xcf, 0x8a, 0x1d, 0xdf, 0xc3, 0x1d, - 0x3d, 0x73, 0x2c, 0x69, 0x45, 0xcd, 0xa0, 0x36, 0xe2, 0xcc, 0xf0, 0x28, 0xea, 0x57, 0x6e, 0x54, - 0x10, 0x87, 0x6d, 0xd1, 0x87, 0x86, 0x13, 0x3d, 0xf0, 0x27, 0x5e, 0xdc, 0xaf, 0xde, 0x28, 0x2d, - 0x37, 0x8d, 0x04, 0xd4, 0xff, 0xbc, 0x02, 0xb5, 0x1f, 0x4c, 0x64, 0x78, 0x4e, 0xf3, 0xe2, 0x38, - 0x4c, 0xd6, 0xc2, 0xb6, 0xb8, 0x0c, 0x35, 0xd7, 0xf4, 0x8e, 0xa2, 0x7e, 0x99, 0x16, 0x63, 0x40, - 0x5c, 0x05, 0xcd, 0x3c, 0x8c, 0x65, 0x38, 0x9a, 0x38, 0x76, 0xbf, 0x72, 0xa3, 0xb4, 0x5c, 0x37, - 0x9a, 0x84, 0x78, 0xe2, 0xd8, 0xe2, 0x2d, 0x68, 0xda, 0xfe, 0xc8, 0xca, 0xef, 0x65, 0xfb, 0xb4, - 0x97, 0x78, 0x17, 0x9a, 0x13, 0xc7, 0x1e, 0xb9, 0x4e, 0x14, 0xf7, 0x6b, 0x37, 0x4a, 0xcb, 0xad, - 0xd5, 0x26, 0x5e, 0x16, 0x69, 0x67, 0x34, 0x26, 0x8e, 0x4d, 0x44, 0xbc, 0x05, 0xcd, 0x28, 0xb4, - 0x46, 0x87, 0x13, 0xcf, 0xea, 0xd7, 0x69, 0xd0, 0x3c, 0x0e, 0xca, 0xdd, 0xda, 0x68, 0x44, 0x0c, - 0xe0, 0xb5, 0x42, 0x79, 0x2a, 0xc3, 0x48, 0xf6, 0x1b, 0xbc, 0x95, 0x02, 0xc5, 0x3d, 0x68, 0x1d, - 0x9a, 0x96, 0x8c, 0x47, 0x81, 0x19, 0x9a, 0xe3, 0x7e, 0x33, 0x5b, 0x68, 0x0b, 0xd1, 0xfb, 0x88, - 0x8d, 0x0c, 0x38, 0x4c, 0x01, 0xf1, 0x31, 0x74, 0x08, 0x8a, 0x46, 0x87, 0x8e, 0x1b, 0xcb, 0xb0, - 0xaf, 0xd1, 0x9c, 0x2e, 0xcd, 0x21, 0xcc, 0x30, 0x94, 0xd2, 0x68, 0xf3, 0x20, 0xc6, 0x88, 0x6b, - 0x00, 0xf2, 0x2c, 0x30, 0x3d, 0x7b, 0x64, 0xba, 0x6e, 0x1f, 0xe8, 0x0c, 0x1a, 0x63, 0xd6, 0x5c, - 0x57, 0xbc, 0x89, 0xe7, 0x33, 0xed, 0x51, 0x1c, 0xf5, 0x3b, 0x37, 0x4a, 0xcb, 0x55, 0xa3, 0x8e, - 0xe0, 0x30, 0x42, 0xba, 0x5a, 0xa6, 0x75, 0x2c, 0xfb, 0xdd, 0x1b, 0xa5, 0xe5, 0x9a, 0xc1, 0x00, - 0x62, 0x0f, 0x9d, 0x30, 0x8a, 0xfb, 0xf3, 0x8c, 0x25, 0x40, 0x5c, 0x81, 0xba, 0x7f, 0x78, 0x18, - 0xc9, 0xb8, 0xdf, 0x23, 0xb4, 0x82, 0xf4, 0x55, 0xd0, 0x48, 0xaa, 0x88, 0x6a, 0x37, 0xa1, 0x7e, - 0x8a, 0x00, 0x0b, 0x5f, 0x6b, 0xb5, 0x83, 0xc7, 0x4e, 0x05, 0xcf, 0x50, 0x9d, 0xfa, 0x75, 0x68, - 0xee, 0x98, 0xde, 0x51, 0x22, 0xad, 0xc8, 0x4e, 0x9a, 0xa0, 0x19, 0xd4, 0xd6, 0xff, 0xb0, 0x02, - 0x75, 0x43, 0x46, 0x13, 0x37, 0x16, 0x1f, 0x00, 0x20, 0xb3, 0xc6, 0x66, 0x1c, 0x3a, 0x67, 0x6a, - 0xd5, 0x8c, 0x5d, 0xda, 0xc4, 0xb1, 0x1f, 0x53, 0x97, 0xb8, 0x07, 0x6d, 0x5a, 0x3d, 0x19, 0x5a, - 0xce, 0x0e, 0x90, 0x9e, 0xcf, 0x68, 0xd1, 0x10, 0x35, 0xe3, 0x0a, 0xd4, 0x49, 0x3e, 0x58, 0x46, - 0x3b, 0x86, 0x82, 0xc4, 0x4d, 0xe8, 0x3a, 0x5e, 0x8c, 0xfc, 0xb3, 0xe2, 0x91, 0x2d, 0xa3, 0x44, - 0x80, 0x3a, 0x29, 0x76, 0x43, 0x46, 0xb1, 0xb8, 0x0f, 0xcc, 0x84, 0x64, 0xc3, 0x1a, 0x6d, 0xd8, - 0x4d, 0x99, 0x1b, 0xf1, 0x8e, 0x34, 0x46, 0xed, 0x78, 0x07, 0x5a, 0x78, 0xbf, 0x64, 0x46, 0x9d, - 0x66, 0xb4, 0xe9, 0x36, 0x8a, 0x1c, 0x06, 0xe0, 0x00, 0x35, 0x1c, 0x49, 0x83, 0x42, 0xca, 0x42, - 0x45, 0x6d, 0xb1, 0x01, 0xdd, 0x53, 0x69, 0xc5, 0x7e, 0x38, 0x1a, 0xcb, 0x38, 0x74, 0xac, 0xa8, - 0xdf, 0xa4, 0x55, 0xae, 0xe1, 0x2a, 0x4c, 0xb3, 0x95, 0xa7, 0x34, 0xe0, 0x31, 0xf7, 0x6f, 0x7a, - 0x71, 0x78, 0x6e, 0x74, 0x4e, 0xf3, 0xb8, 0xc5, 0xef, 0x83, 0xb8, 0x38, 0x08, 0xf5, 0xc2, 0x89, - 0x3c, 0x57, 0x2f, 0x0f, 0x9b, 0x28, 0x0a, 0x44, 0x31, 0x52, 0x0a, 0x55, 0x83, 0x81, 0xcf, 0xca, - 0xdf, 0x29, 0xe9, 0x9b, 0x50, 0xdb, 0x0b, 0x6d, 0x19, 0xce, 0x7c, 0xaf, 0x02, 0xaa, 0xb6, 0x8c, - 0x2c, 0x9a, 0xd5, 0x34, 0xa8, 0x9d, 0xbd, 0xe1, 0x4a, 0xee, 0x0d, 0xeb, 0x7f, 0x50, 0x82, 0xd6, - 0xc0, 0x0f, 0xe3, 0xc7, 0x32, 0x8a, 0xcc, 0x23, 0x29, 0x96, 0xa0, 0xe6, 0xe3, 0xb2, 0x8a, 0xd3, - 0x1a, 0xde, 0x8a, 0xf6, 0x31, 0x18, 0x3f, 0x25, 0x0f, 0xe5, 0x17, 0xcb, 0x03, 0xca, 0x36, 0xbd, - 0xfe, 0x8a, 0x92, 0x6d, 0x7a, 0xfb, 0x99, 0x14, 0x57, 0xf3, 0x52, 0xfc, 0xc2, 0x27, 0xa2, 0x7f, - 0x0b, 0x00, 0xcf, 0xf7, 0x35, 0xa5, 0x51, 0xff, 0x65, 0x09, 0x5a, 0x86, 0x79, 0x18, 0x3f, 0xf0, - 0xbd, 0x58, 0x9e, 0xc5, 0xa2, 0x0b, 0x65, 0xc7, 0x26, 0x1a, 0xd5, 0x8d, 0xb2, 0x63, 0xe3, 0xe9, - 0x8e, 0x42, 0x7f, 0x12, 0x10, 0x89, 0x3a, 0x06, 0x03, 0x44, 0x4b, 0xdb, 0x0e, 0xe9, 0xc8, 0x48, - 0x4b, 0xdb, 0x0e, 0xc5, 0x12, 0xb4, 0x22, 0xcf, 0x0c, 0xa2, 0x63, 0x3f, 0xc6, 0xd3, 0x55, 0xe9, - 0x74, 0x90, 0xa0, 0x86, 0x11, 0x3e, 0x7e, 0x27, 0x1a, 0xb9, 0xd2, 0x0c, 0x3d, 0x19, 0x92, 0x42, - 0x6b, 0x1a, 0x9a, 0x13, 0xed, 0x30, 0x42, 0xff, 0x65, 0x05, 0xea, 0x8f, 0xe5, 0xf8, 0x40, 0x86, - 0x17, 0x0e, 0x71, 0x0f, 0x9a, 0xb4, 0xef, 0xc8, 0xb1, 0xf9, 0x1c, 0xeb, 0x6f, 0x3c, 0x7f, 0xb6, - 0xb4, 0x40, 0xb8, 0x6d, 0xfb, 0x23, 0x7f, 0xec, 0xc4, 0x72, 0x1c, 0xc4, 0xe7, 0x46, 0x43, 0xa1, - 0x66, 0x1e, 0xf0, 0x0a, 0xd4, 0x5d, 0x69, 0x22, 0xcf, 0xf8, 0x99, 0x28, 0x48, 0xdc, 0x81, 0x86, - 0x39, 0x1e, 0xd9, 0xd2, 0xb4, 0xf9, 0x50, 0xeb, 0x97, 0x9f, 0x3f, 0x5b, 0xea, 0x99, 0xe3, 0x0d, - 0x69, 0xe6, 0xd7, 0xae, 0x33, 0x46, 0x7c, 0x8a, 0x6f, 0x23, 0x8a, 0x47, 0x93, 0xc0, 0x36, 0x63, - 0x49, 0x3a, 0xb7, 0xba, 0xde, 0x7f, 0xfe, 0x6c, 0xe9, 0x32, 0xa2, 0x9f, 0x10, 0x36, 0x37, 0x0d, - 0x32, 0x2c, 0xea, 0xdf, 0xe4, 0xfa, 0x4a, 0xff, 0x2a, 0x50, 0x6c, 0xc3, 0x82, 0xe5, 0x4e, 0x22, - 0x34, 0x12, 0x8e, 0x77, 0xe8, 0x8f, 0x7c, 0xcf, 0x3d, 0x27, 0x06, 0x37, 0xd7, 0xaf, 0x3d, 0x7f, - 0xb6, 0xf4, 0x96, 0xea, 0xdc, 0xf6, 0x0e, 0xfd, 0x3d, 0xcf, 0x3d, 0xcf, 0xad, 0x3f, 0x3f, 0xd5, - 0x25, 0xbe, 0x0f, 0xdd, 0x43, 0x3f, 0xb4, 0xe4, 0x28, 0x25, 0x59, 0x97, 0xd6, 0x59, 0x7c, 0xfe, - 0x6c, 0xe9, 0x0a, 0xf5, 0x3c, 0xbc, 0x40, 0xb7, 0x76, 0x1e, 0xaf, 0xff, 0x73, 0x19, 0x6a, 0xd4, - 0x16, 0xf7, 0xa0, 0x31, 0x26, 0x96, 0x24, 0x7a, 0xf2, 0x0a, 0xca, 0x10, 0xf5, 0xad, 0x30, 0xaf, - 0xd4, 0xb3, 0x4d, 0x86, 0xe1, 0x8c, 0xd8, 0x3c, 0x70, 0x65, 0x1c, 0x29, 0x99, 0xcf, 0xcd, 0x18, - 0x72, 0x87, 0x9a, 0xa1, 0x86, 0x4d, 0xcb, 0x4d, 0xe5, 0x82, 0xdc, 0x2c, 0x42, 0xd3, 0x3a, 0x96, - 0xd6, 0x49, 0x34, 0x19, 0x2b, 0xa9, 0x4a, 0x61, 0xf1, 0x2e, 0x74, 0xa8, 0x1d, 0xf8, 0x8e, 0x47, - 0xd3, 0x6b, 0x34, 0xa0, 0x9d, 0x21, 0x87, 0xd1, 0xe2, 0x16, 0xb4, 0xf3, 0x87, 0xcd, 0xab, 0x8f, - 0x2a, 0xab, 0x8f, 0x1b, 0x79, 0xf5, 0xd1, 0x5a, 0x05, 0x3c, 0x33, 0x4f, 0xc9, 0xa9, 0x12, 0x5c, - 0x27, 0x7f, 0x85, 0x19, 0x6a, 0x68, 0xd6, 0x3a, 0x3c, 0x25, 0xaf, 0x92, 0x7c, 0x68, 0xec, 0x38, - 0x96, 0xf4, 0x22, 0x72, 0x3e, 0x26, 0x91, 0x4c, 0x95, 0x12, 0xb6, 0xf1, 0xbe, 0x63, 0xf3, 0x6c, - 0xd7, 0xb7, 0x65, 0xa4, 0xd4, 0x59, 0x0a, 0x63, 0x9f, 0x3c, 0x0b, 0x9c, 0xf0, 0x7c, 0xc8, 0x94, - 0xaa, 0x18, 0x29, 0x8c, 0xd2, 0x25, 0x3d, 0xdc, 0xcc, 0x4e, 0x1c, 0x09, 0x05, 0xea, 0x7f, 0x52, - 0x85, 0xf6, 0x4f, 0x64, 0xe8, 0xef, 0x87, 0x7e, 0xe0, 0x47, 0xa6, 0x2b, 0xd6, 0x8a, 0x34, 0x67, - 0xde, 0xde, 0xc0, 0xd3, 0xe6, 0x87, 0xad, 0x0c, 0x52, 0x26, 0x30, 0xcf, 0xf2, 0x5c, 0xd1, 0xa1, - 0xce, 0x3c, 0x9f, 0x41, 0x33, 0xd5, 0x83, 0x63, 0x98, 0xcb, 0x74, 0xd6, 0x22, 0x3d, 0x54, 0x0f, - 0xbe, 0xca, 0xb1, 0x79, 0xf6, 0x64, 0x7b, 0x43, 0xf1, 0x56, 0x41, 0x8a, 0x0a, 0xc3, 0x33, 0x6f, - 0x98, 0x30, 0x35, 0x85, 0xf1, 0xa6, 0x48, 0x91, 0x68, 0x7b, 0xa3, 0xdf, 0xa6, 0xae, 0x04, 0x14, - 0x6f, 0x83, 0x36, 0x36, 0xcf, 0x50, 0xa1, 0x6d, 0xdb, 0xfc, 0x34, 0x8d, 0x0c, 0x21, 0xde, 0x81, - 0x4a, 0x7c, 0xe6, 0xd1, 0xdb, 0x43, 0xef, 0x06, 0x9d, 0xdd, 0xe1, 0x99, 0xa7, 0x54, 0x9f, 0x81, - 0x7d, 0xc8, 0x53, 0xcb, 0xb1, 0xc9, 0x99, 0xd1, 0x0c, 0x6c, 0x8a, 0x9b, 0xd0, 0x70, 0x99, 0x5b, - 0xe4, 0xb0, 0xb4, 0x56, 0x5b, 0xac, 0x47, 0x09, 0x65, 0x24, 0x7d, 0xe2, 0x23, 0x68, 0x26, 0xd4, - 0xe9, 0xb7, 0x68, 0x5c, 0x2f, 0xa1, 0x67, 0x42, 0x46, 0x23, 0x1d, 0x21, 0xee, 0x81, 0x66, 0x4b, - 0x57, 0xc6, 0x72, 0xe4, 0xb1, 0x22, 0x6f, 0xb1, 0x23, 0xbb, 0x41, 0xc8, 0xdd, 0xc8, 0x90, 0x3f, - 0x9b, 0xc8, 0x28, 0x36, 0x9a, 0xb6, 0x42, 0x88, 0xf7, 0xb2, 0x87, 0xd5, 0x25, 0x76, 0xe5, 0x89, - 0x99, 0x74, 0x2d, 0x7e, 0x0f, 0xe6, 0xa7, 0x98, 0x96, 0x97, 0xd2, 0xce, 0x2b, 0x8c, 0xe5, 0x17, - 0xd5, 0x66, 0xb3, 0xa7, 0xe9, 0xff, 0x5e, 0x81, 0x79, 0xf5, 0x60, 0x8e, 0x9d, 0x60, 0x10, 0x2b, - 0xd5, 0x45, 0x86, 0x49, 0xc9, 0x6a, 0xd5, 0x48, 0x40, 0xf1, 0x7f, 0xa0, 0x4e, 0x9a, 0x26, 0x79, - 0xf0, 0x4b, 0x99, 0x20, 0xa4, 0xd3, 0x59, 0x01, 0x28, 0x29, 0x52, 0xc3, 0xc5, 0x27, 0x50, 0xfb, - 0x52, 0x86, 0x3e, 0x1b, 0xda, 0xd6, 0xea, 0xf5, 0x59, 0xf3, 0x90, 0x7c, 0x6a, 0x1a, 0x0f, 0xfe, - 0xef, 0xca, 0x0b, 0x7c, 0x1d, 0x79, 0x79, 0x0f, 0x8d, 0xed, 0xd8, 0x3f, 0x95, 0x76, 0xbf, 0x91, - 0xd1, 0x5c, 0x09, 0x79, 0xd2, 0x95, 0x88, 0x4c, 0x73, 0xa6, 0xc8, 0x68, 0x2f, 0x16, 0x99, 0xc5, - 0x0d, 0x68, 0xe5, 0xe8, 0x32, 0x83, 0x51, 0x4b, 0x45, 0x75, 0xa2, 0xa5, 0xaa, 0x34, 0xaf, 0x95, - 0x36, 0x00, 0x32, 0x2a, 0x7d, 0x53, 0xdd, 0xa6, 0xff, 0xa2, 0x04, 0xf3, 0x0f, 0x7c, 0xcf, 0x93, - 0x14, 0x32, 0x30, 0xcf, 0xb3, 0x27, 0x5e, 0x7a, 0xe1, 0x13, 0xff, 0x10, 0x6a, 0x11, 0x0e, 0x56, - 0xab, 0x5f, 0x9a, 0xc1, 0x44, 0x83, 0x47, 0xa0, 0xa2, 0x1f, 0x9b, 0x67, 0xa3, 0x40, 0x7a, 0xb6, - 0xe3, 0x1d, 0x25, 0x8a, 0x7e, 0x6c, 0x9e, 0xed, 0x33, 0x46, 0xff, 0x8b, 0x32, 0xc0, 0xe7, 0xd2, - 0x74, 0xe3, 0x63, 0x34, 0x66, 0xc8, 0x51, 0xc7, 0x8b, 0x62, 0xd3, 0xb3, 0x92, 0x80, 0x2d, 0x85, - 0x91, 0xa3, 0x68, 0xd3, 0x65, 0xc4, 0x2a, 0x52, 0x33, 0x12, 0x10, 0xe5, 0x03, 0xb7, 0x9b, 0x44, - 0xca, 0xf6, 0x2b, 0x28, 0x73, 0x64, 0xaa, 0x84, 0x56, 0x8e, 0x4c, 0x1f, 0x1a, 0x18, 0x00, 0x39, - 0xbe, 0x47, 0x42, 0xa3, 0x19, 0x09, 0x88, 0xeb, 0x4c, 0x82, 0xd8, 0x19, 0xb3, 0x85, 0xaf, 0x18, - 0x0a, 0xc2, 0x53, 0xa1, 0x45, 0xdf, 0xb4, 0x8e, 0x7d, 0x52, 0x24, 0x15, 0x23, 0x85, 0x71, 0x35, - 0xdf, 0x3b, 0xf2, 0xf1, 0x76, 0x4d, 0x72, 0x1e, 0x13, 0x90, 0xef, 0x62, 0xcb, 0x33, 0xec, 0xd2, - 0xa8, 0x2b, 0x85, 0x91, 0x2e, 0x52, 0x8e, 0x0e, 0xa5, 0x19, 0x4f, 0x42, 0x19, 0xf5, 0x81, 0xba, - 0x41, 0xca, 0x2d, 0x85, 0x11, 0xef, 0x40, 0x1b, 0x09, 0x67, 0x46, 0x91, 0x73, 0xe4, 0x49, 0x9b, - 0xd4, 0x4b, 0xd5, 0x40, 0x62, 0xae, 0x29, 0x94, 0xfe, 0x57, 0x65, 0xa8, 0xb3, 0x2e, 0x28, 0x38, - 0x4b, 0xa5, 0xd7, 0x72, 0x96, 0xde, 0x06, 0x2d, 0x08, 0xa5, 0xed, 0x58, 0x09, 0x1f, 0x35, 0x23, - 0x43, 0x50, 0x94, 0x85, 0xde, 0x01, 0xd1, 0xb3, 0x69, 0x30, 0x20, 0x74, 0xe8, 0xf8, 0xde, 0xc8, - 0x76, 0xa2, 0x93, 0xd1, 0xc1, 0x79, 0x2c, 0x23, 0x45, 0x8b, 0x96, 0xef, 0x6d, 0x38, 0xd1, 0xc9, - 0x3a, 0xa2, 0x90, 0x84, 0xfc, 0x46, 0xe8, 0x6d, 0x34, 0x0d, 0x05, 0x89, 0x8f, 0x41, 0x23, 0x1f, - 0x96, 0x9c, 0x1c, 0x8d, 0x9c, 0x93, 0x2b, 0xcf, 0x9f, 0x2d, 0x09, 0x44, 0x4e, 0x79, 0x37, 0xcd, - 0x04, 0x87, 0x5e, 0x1a, 0x4e, 0x46, 0x73, 0x45, 0x6f, 0x98, 0xbd, 0x34, 0x44, 0x0d, 0xa3, 0xbc, - 0x97, 0xc6, 0x18, 0x71, 0x07, 0xc4, 0xc4, 0xb3, 0xfc, 0x71, 0x80, 0x42, 0x21, 0x6d, 0x75, 0xc8, - 0x16, 0x1d, 0x72, 0x21, 0xdf, 0x43, 0x47, 0xd5, 0xff, 0xa9, 0x0c, 0xed, 0x0d, 0x27, 0x94, 0x56, - 0x2c, 0xed, 0x4d, 0xfb, 0x48, 0xe2, 0xd9, 0xa5, 0x17, 0x3b, 0xf1, 0xb9, 0x72, 0x43, 0x15, 0x94, - 0x46, 0x11, 0xe5, 0x62, 0xd4, 0xcf, 0x2f, 0xac, 0x42, 0x89, 0x0a, 0x06, 0xc4, 0x2a, 0x00, 0xc7, - 0x79, 0x94, 0xac, 0xa8, 0xbe, 0x38, 0x59, 0xa1, 0xd1, 0x30, 0x6c, 0x8a, 0xb7, 0x28, 0xbd, 0x31, - 0x91, 0xc8, 0xbb, 0x1a, 0xed, 0xdb, 0x20, 0x98, 0x3d, 0x5a, 0x0a, 0x3f, 0x1b, 0xbc, 0x31, 0xb6, - 0xc5, 0xbb, 0x50, 0xf6, 0x03, 0x22, 0xae, 0x5a, 0x3a, 0x7f, 0x85, 0x95, 0xbd, 0xc0, 0x28, 0xfb, - 0x01, 0xbe, 0x62, 0x8e, 0xc1, 0x49, 0xf0, 0xf0, 0x15, 0xa3, 0xdd, 0xa3, 0xc8, 0xcf, 0x50, 0x3d, - 0x42, 0x87, 0xb6, 0xe9, 0xba, 0xfe, 0xcf, 0xa5, 0xbd, 0x1f, 0x4a, 0x3b, 0x91, 0xc1, 0x02, 0x0e, - 0xa5, 0xc4, 0x33, 0xc7, 0x32, 0x0a, 0x4c, 0x4b, 0x2a, 0x11, 0xcc, 0x10, 0xfa, 0x15, 0x28, 0xef, - 0x05, 0xa2, 0x01, 0x95, 0xc1, 0xe6, 0xb0, 0x37, 0x87, 0x8d, 0x8d, 0xcd, 0x9d, 0x1e, 0x5a, 0x94, - 0x7a, 0xaf, 0xa1, 0x7f, 0x55, 0x06, 0xed, 0xf1, 0x24, 0x36, 0x51, 0xb7, 0x44, 0x78, 0xcb, 0xa2, - 0x84, 0x66, 0xa2, 0xf8, 0x16, 0x34, 0xa3, 0xd8, 0x0c, 0xc9, 0x2b, 0x61, 0xeb, 0xd4, 0x20, 0x78, - 0x18, 0x89, 0xf7, 0xa1, 0x26, 0xed, 0x23, 0x99, 0x98, 0x8b, 0xde, 0xf4, 0x7d, 0x0d, 0xee, 0x16, - 0xcb, 0x50, 0x8f, 0xac, 0x63, 0x39, 0x36, 0xfb, 0xd5, 0x6c, 0xe0, 0x80, 0x30, 0xec, 0x86, 0x1b, - 0xaa, 0x5f, 0xbc, 0x07, 0x35, 0xe4, 0x4d, 0xa4, 0xe2, 0x5b, 0x8a, 0x88, 0x91, 0x0d, 0x6a, 0x18, - 0x77, 0xa2, 0xe0, 0xd9, 0xa1, 0x1f, 0x8c, 0xfc, 0x80, 0x68, 0xdf, 0x5d, 0xbd, 0x4c, 0x3a, 0x2e, - 0xb9, 0xcd, 0xca, 0x46, 0xe8, 0x07, 0x7b, 0x81, 0x51, 0xb7, 0xe9, 0x17, 0xa3, 0x1c, 0x1a, 0xce, - 0x12, 0xc1, 0x46, 0x41, 0x43, 0x0c, 0xa7, 0xb4, 0x96, 0xa1, 0x39, 0x96, 0xb1, 0x69, 0x9b, 0xb1, - 0xa9, 0x6c, 0x43, 0x9b, 0x55, 0x26, 0xe3, 0x8c, 0xb4, 0x57, 0xbf, 0x0b, 0x75, 0x5e, 0x5a, 0x34, - 0xa1, 0xba, 0xbb, 0xb7, 0xbb, 0xc9, 0x64, 0x5d, 0xdb, 0xd9, 0xe9, 0x95, 0x10, 0xb5, 0xb1, 0x36, - 0x5c, 0xeb, 0x95, 0xb1, 0x35, 0xfc, 0xf1, 0xfe, 0x66, 0xaf, 0xa2, 0xff, 0x5d, 0x09, 0x9a, 0xc9, - 0x3a, 0xe2, 0x33, 0x00, 0x7c, 0xc2, 0xa3, 0x63, 0xc7, 0x4b, 0x1d, 0xbc, 0xab, 0xf9, 0x9d, 0x56, - 0x90, 0xab, 0x9f, 0x63, 0x2f, 0x9b, 0x57, 0x7a, 0xf1, 0x04, 0x2f, 0x0e, 0xa0, 0x5b, 0xec, 0x9c, - 0xe1, 0xe9, 0xde, 0xce, 0x5b, 0x95, 0xee, 0xea, 0x1b, 0x85, 0xa5, 0x71, 0x26, 0x89, 0x76, 0xce, - 0xc0, 0xdc, 0x81, 0x66, 0x82, 0x16, 0x2d, 0x68, 0x6c, 0x6c, 0x6e, 0xad, 0x3d, 0xd9, 0x41, 0x51, - 0x01, 0xa8, 0x0f, 0xb6, 0x77, 0x1f, 0xee, 0x6c, 0xf2, 0xb5, 0x76, 0xb6, 0x07, 0xc3, 0x5e, 0x59, - 0xff, 0xfd, 0x12, 0x34, 0x13, 0x4f, 0x46, 0x7c, 0x88, 0xce, 0x07, 0x39, 0x69, 0xca, 0x12, 0x51, - 0x66, 0x2a, 0x17, 0xb6, 0x1a, 0x49, 0x3f, 0xbe, 0x45, 0x52, 0xac, 0x89, 0x6f, 0x43, 0x40, 0x3e, - 0x6a, 0xae, 0x14, 0x12, 0x4b, 0x02, 0xaa, 0xb6, 0xef, 0x49, 0xe5, 0x30, 0x53, 0x9b, 0x64, 0xd0, - 0xf1, 0x2c, 0x99, 0x85, 0x13, 0x0d, 0x82, 0x87, 0x91, 0x1e, 0xb3, 0x1f, 0x9d, 0x1e, 0x2c, 0xdd, - 0xad, 0x94, 0xdf, 0xed, 0x42, 0x50, 0x52, 0xbe, 0x18, 0x94, 0x64, 0x86, 0xb3, 0xf6, 0x2a, 0xc3, - 0xa9, 0xff, 0xa2, 0x0e, 0x5d, 0x43, 0x46, 0xb1, 0x1f, 0x4a, 0xe5, 0x17, 0xbe, 0xec, 0x09, 0x5d, - 0x03, 0x08, 0x79, 0x70, 0xb6, 0xb5, 0xa6, 0x30, 0x1c, 0x4d, 0xb9, 0xbe, 0x45, 0xb2, 0xab, 0x2c, - 0x64, 0x0a, 0x8b, 0xab, 0xa0, 0x1d, 0x98, 0xd6, 0x09, 0x2f, 0xcb, 0x76, 0xb2, 0xc9, 0x08, 0x5e, - 0xd7, 0xb4, 0x2c, 0x19, 0x45, 0x23, 0x14, 0x05, 0xb6, 0x96, 0x1a, 0x63, 0x1e, 0xc9, 0x73, 0x71, - 0x0f, 0x20, 0x92, 0x56, 0x28, 0x63, 0xea, 0x46, 0x9b, 0xa9, 0xad, 0x2f, 0xfc, 0xfa, 0xd9, 0xd2, - 0xdc, 0x3f, 0x3e, 0x5b, 0xd2, 0x06, 0xd2, 0x8b, 0x9c, 0xd8, 0x39, 0x95, 0x86, 0xc6, 0x83, 0x70, - 0xc6, 0xb7, 0xa1, 0x13, 0xc9, 0x08, 0x8d, 0xed, 0x28, 0xf6, 0x4f, 0x24, 0xfb, 0xe5, 0x33, 0x27, - 0xb5, 0xd5, 0xb8, 0x21, 0x0e, 0x43, 0x45, 0x64, 0x7a, 0xbe, 0x77, 0x3e, 0xf6, 0x27, 0x91, 0xb2, - 0x2c, 0x19, 0x42, 0xac, 0xc0, 0x25, 0xe9, 0x59, 0xe1, 0x79, 0x80, 0x37, 0xc2, 0xb3, 0x8c, 0x0e, - 0x1d, 0x57, 0x2a, 0x87, 0x7e, 0x21, 0xeb, 0x7a, 0x24, 0xcf, 0xb7, 0x1c, 0x57, 0xe2, 0xb5, 0x4e, - 0xcd, 0x89, 0x1b, 0x8f, 0x28, 0x5f, 0x00, 0x7c, 0x2d, 0xc2, 0xac, 0xd9, 0x76, 0x28, 0x6e, 0xc1, - 0x02, 0x77, 0x87, 0xbe, 0x2b, 0x1d, 0x9b, 0x17, 0x6b, 0xd1, 0xa8, 0x79, 0xea, 0x30, 0x08, 0x4f, - 0x4b, 0xad, 0xc0, 0x25, 0x1e, 0xcb, 0x77, 0x4c, 0x46, 0xb7, 0x79, 0x6b, 0xea, 0x1a, 0xa8, 0x9e, - 0xe2, 0xd6, 0x81, 0x19, 0x1f, 0x53, 0x14, 0x90, 0x6c, 0xbd, 0x6f, 0xc6, 0xc7, 0xe8, 0x17, 0x70, - 0xf7, 0xa1, 0x23, 0x5d, 0x8e, 0xe2, 0x35, 0x83, 0x67, 0x6c, 0x21, 0x06, 0xfd, 0x02, 0x35, 0xc0, - 0x0f, 0xc7, 0x26, 0xa7, 0x41, 0x35, 0x83, 0x27, 0x6d, 0x11, 0x0a, 0xb7, 0x50, 0x1c, 0xf5, 0x26, - 0x63, 0x4a, 0x88, 0x56, 0x0d, 0xc5, 0xe3, 0xdd, 0xc9, 0x58, 0x7c, 0x08, 0x3d, 0xc7, 0xb3, 0x42, - 0x39, 0x96, 0x5e, 0x6c, 0xba, 0xa3, 0xc3, 0xd0, 0x1f, 0xf7, 0x17, 0x68, 0xd0, 0x7c, 0x0e, 0xbf, - 0x15, 0xfa, 0x63, 0x95, 0xbd, 0x09, 0xcc, 0x30, 0x76, 0x4c, 0xb7, 0x2f, 0x92, 0xec, 0xcd, 0x3e, - 0x23, 0xc4, 0x7b, 0xd0, 0xc1, 0xd9, 0xbb, 0xa9, 0x85, 0xb8, 0x44, 0xcb, 0x14, 0x91, 0xe2, 0x3b, - 0xf0, 0xa6, 0x13, 0xa5, 0xe0, 0xda, 0xcf, 0x4d, 0x94, 0x68, 0x92, 0xcc, 0xfe, 0x65, 0x5a, 0xf1, - 0x45, 0xdd, 0xfa, 0xf3, 0x0a, 0x34, 0xd3, 0xf0, 0xf5, 0x36, 0x68, 0xe3, 0x44, 0xff, 0x2a, 0xc7, - 0xb3, 0x53, 0x50, 0xca, 0x46, 0xd6, 0x2f, 0xae, 0x41, 0xf9, 0xe4, 0x54, 0xd9, 0x82, 0xce, 0x0a, - 0x17, 0x30, 0x82, 0x83, 0x4f, 0x56, 0x1e, 0x3d, 0x35, 0xca, 0x27, 0xa7, 0x5f, 0xe3, 0x1d, 0x8a, - 0x0f, 0x60, 0xde, 0x72, 0xa5, 0xe9, 0x8d, 0x32, 0x6f, 0x89, 0xe4, 0xdc, 0xe8, 0x12, 0x7a, 0x3f, - 0x75, 0x99, 0x6e, 0x42, 0xcd, 0x96, 0x6e, 0x6c, 0xe6, 0xf3, 0xe8, 0x7b, 0xa1, 0x69, 0xb9, 0x72, - 0x03, 0xd1, 0x06, 0xf7, 0xa2, 0x2d, 0x48, 0x43, 0xc6, 0x9c, 0x2d, 0x98, 0x11, 0x2e, 0xa6, 0x7a, - 0x06, 0xf2, 0x7a, 0xe6, 0x36, 0x2c, 0xc8, 0xb3, 0x80, 0x0c, 0xe0, 0x28, 0xcd, 0x90, 0xb0, 0x65, - 0xee, 0x25, 0x1d, 0x0f, 0x92, 0x4c, 0xc9, 0x47, 0xa8, 0x02, 0x99, 0xd4, 0x6d, 0xda, 0x4b, 0xa8, - 0x44, 0x6c, 0x4e, 0xad, 0x18, 0xc9, 0x10, 0xf1, 0x21, 0x68, 0x96, 0x6d, 0x8d, 0x98, 0x32, 0x9d, - 0xec, 0x6c, 0x0f, 0x36, 0x1e, 0x30, 0x49, 0x9a, 0x96, 0x6d, 0x71, 0x94, 0x50, 0x08, 0x65, 0xbb, - 0xaf, 0x13, 0xca, 0xe6, 0x8d, 0x7c, 0xaf, 0x60, 0xe4, 0xbf, 0xa8, 0x36, 0x1b, 0xbd, 0xa6, 0xfe, - 0x2e, 0x34, 0x93, 0x8d, 0x50, 0x75, 0x47, 0xd2, 0x53, 0x69, 0x0a, 0x52, 0xdd, 0x08, 0x0e, 0x23, - 0xdd, 0x82, 0xca, 0xa3, 0xa7, 0x03, 0xd2, 0xe0, 0x68, 0x4c, 0x6b, 0xe4, 0x7b, 0x51, 0x3b, 0xd5, - 0xea, 0xe5, 0x9c, 0x56, 0xbf, 0xce, 0x06, 0x91, 0x18, 0x94, 0xe4, 0x76, 0x73, 0x18, 0x24, 0x31, - 0x3b, 0x03, 0x55, 0x4e, 0xfb, 0x12, 0xa0, 0xff, 0x47, 0x05, 0x1a, 0xca, 0x5f, 0x43, 0x23, 0x38, - 0x49, 0xd3, 0x92, 0xd8, 0x2c, 0x06, 0xd2, 0xa9, 0xe3, 0x97, 0xaf, 0x51, 0x55, 0x5e, 0x5d, 0xa3, - 0x12, 0x9f, 0x41, 0x3b, 0xe0, 0xbe, 0xbc, 0xab, 0xf8, 0x66, 0x7e, 0x8e, 0xfa, 0xa5, 0x79, 0xad, - 0x20, 0x03, 0x90, 0x94, 0x94, 0xa8, 0x8f, 0xcd, 0x23, 0x45, 0x81, 0x06, 0xc2, 0x43, 0xf3, 0xe8, - 0xb5, 0xfc, 0xbe, 0x2e, 0x39, 0x90, 0x6d, 0x32, 0x20, 0xe8, 0x2b, 0xe6, 0x39, 0xd3, 0x29, 0xba, - 0x5f, 0x57, 0x41, 0xb3, 0xfc, 0xf1, 0xd8, 0xa1, 0xbe, 0xae, 0x4a, 0xc3, 0x11, 0x62, 0x18, 0xe9, - 0xbf, 0x57, 0x82, 0x86, 0xba, 0xd7, 0x05, 0xe3, 0xbe, 0xbe, 0xbd, 0xbb, 0x66, 0xfc, 0xb8, 0x57, - 0x42, 0xe7, 0x65, 0x7b, 0x77, 0xd8, 0x2b, 0x0b, 0x0d, 0x6a, 0x5b, 0x3b, 0x7b, 0x6b, 0xc3, 0x5e, - 0x05, 0x0d, 0xfe, 0xfa, 0xde, 0xde, 0x4e, 0xaf, 0x2a, 0xda, 0xd0, 0xdc, 0x58, 0x1b, 0x6e, 0x0e, - 0xb7, 0x1f, 0x6f, 0xf6, 0x6a, 0x38, 0xf6, 0xe1, 0xe6, 0x5e, 0xaf, 0x8e, 0x8d, 0x27, 0xdb, 0x1b, - 0xbd, 0x06, 0xf6, 0xef, 0xaf, 0x0d, 0x06, 0x3f, 0xdc, 0x33, 0x36, 0x7a, 0x4d, 0x72, 0x1a, 0x86, - 0xc6, 0xf6, 0xee, 0xc3, 0x9e, 0x86, 0xed, 0xbd, 0xf5, 0x2f, 0x36, 0x1f, 0x0c, 0x7b, 0x80, 0xed, - 0xa7, 0xbc, 0x76, 0x5b, 0xbf, 0x0f, 0xad, 0x1c, 0xdd, 0x70, 0x25, 0x63, 0x73, 0xab, 0x37, 0x87, - 0xdb, 0x3f, 0x5d, 0xdb, 0x79, 0x82, 0xfe, 0x46, 0x17, 0x80, 0x9a, 0xa3, 0x9d, 0xb5, 0xdd, 0x87, - 0xbd, 0xb2, 0xf2, 0x56, 0x7f, 0x00, 0xcd, 0x27, 0x8e, 0xbd, 0xee, 0xfa, 0xd6, 0x09, 0x8a, 0xd2, - 0x81, 0x19, 0x49, 0x25, 0x7b, 0xd4, 0xc6, 0xd8, 0x80, 0x1e, 0x70, 0xa4, 0xf8, 0xae, 0x20, 0xa4, - 0x9e, 0x37, 0x19, 0x8f, 0xa8, 0xa6, 0x59, 0x61, 0xa3, 0xec, 0x4d, 0xc6, 0x4f, 0x1c, 0x3b, 0xd2, - 0x4f, 0xa0, 0xf1, 0xc4, 0xb1, 0xf7, 0x4d, 0xeb, 0x84, 0x54, 0x32, 0x2e, 0x3d, 0x8a, 0x9c, 0x2f, - 0xa5, 0x32, 0xde, 0x1a, 0x61, 0x06, 0xce, 0x97, 0x52, 0xbc, 0x07, 0x75, 0x02, 0x92, 0x74, 0x0a, - 0x3d, 0xbb, 0xe4, 0x38, 0x86, 0xea, 0xa3, 0x92, 0xa2, 0xeb, 0xfa, 0xd6, 0x28, 0x94, 0x87, 0xfd, - 0x37, 0x99, 0x1b, 0x84, 0x30, 0xe4, 0xa1, 0xfe, 0xff, 0x4b, 0xe9, 0xcd, 0xa9, 0x72, 0xb5, 0x04, - 0xd5, 0xc0, 0xb4, 0x4e, 0x94, 0xef, 0xd4, 0x52, 0x0b, 0xe2, 0x61, 0x0c, 0xea, 0x10, 0x1f, 0x40, - 0x53, 0x09, 0x55, 0xb2, 0x6b, 0x2b, 0x27, 0x7d, 0x46, 0xda, 0x59, 0x14, 0x82, 0x4a, 0x51, 0x08, - 0x28, 0xf2, 0x0e, 0x5c, 0x27, 0xe6, 0x27, 0x84, 0x0f, 0x95, 0x20, 0xfd, 0x13, 0x80, 0xac, 0x88, - 0x38, 0xbb, 0x76, 0x63, 0xba, 0x8e, 0x99, 0x44, 0xf2, 0x0c, 0xe8, 0xbb, 0xd0, 0xca, 0x95, 0x1e, - 0x91, 0xb6, 0xa6, 0xeb, 0xa2, 0x3d, 0x67, 0x3d, 0xd0, 0x34, 0x1a, 0xa6, 0xeb, 0x3e, 0x92, 0xe7, - 0x11, 0xba, 0xf1, 0x5c, 0xb5, 0x2c, 0x4f, 0x15, 0xb6, 0x68, 0xaa, 0xc1, 0x9d, 0xfa, 0x47, 0x50, - 0xdf, 0x4a, 0x82, 0x9d, 0xe4, 0x61, 0x94, 0x5e, 0xf4, 0x30, 0xf4, 0x4f, 0xd5, 0x99, 0xa9, 0x36, - 0x26, 0x6e, 0xab, 0xea, 0x68, 0xc4, 0xb5, 0xd8, 0x52, 0x96, 0x0b, 0xe2, 0x41, 0xaa, 0x30, 0x4a, - 0x83, 0xf5, 0x0d, 0x68, 0xbe, 0xb4, 0xde, 0xac, 0x08, 0x50, 0xce, 0x08, 0x30, 0xa3, 0x02, 0xad, - 0xff, 0x14, 0x20, 0xab, 0xa2, 0xaa, 0x77, 0xca, 0xab, 0xe0, 0x3b, 0xbd, 0x05, 0x4d, 0xeb, 0xd8, - 0x71, 0xed, 0x50, 0x7a, 0x85, 0x5b, 0x67, 0x75, 0xd7, 0xb4, 0x5f, 0xdc, 0x80, 0x2a, 0x15, 0x87, - 0x2b, 0x99, 0x16, 0x4f, 0x2b, 0xc3, 0xd4, 0xa3, 0x9f, 0x41, 0x87, 0xe3, 0xa3, 0xd7, 0xf0, 0x2e, - 0x8b, 0x6a, 0xb4, 0x7c, 0x41, 0x8d, 0x5e, 0x81, 0x3a, 0xb9, 0x2b, 0xc9, 0x6d, 0x14, 0xf4, 0x02, - 0xf5, 0xfa, 0xf7, 0x65, 0x00, 0xde, 0x7a, 0xd7, 0xb7, 0x65, 0x31, 0x11, 0x51, 0x9a, 0x4e, 0x44, - 0x08, 0xa8, 0xa6, 0x75, 0x7f, 0xcd, 0xa0, 0x76, 0x66, 0x18, 0x55, 0x72, 0x82, 0x0d, 0xe3, 0xdb, - 0xa0, 0x91, 0x47, 0xe9, 0x7c, 0x49, 0xc5, 0x1e, 0xdc, 0x30, 0x43, 0xe4, 0xab, 0xe0, 0xb5, 0x62, - 0x15, 0x3c, 0x2d, 0xc5, 0xd5, 0x79, 0x35, 0x2e, 0xc5, 0xcd, 0xaa, 0x6e, 0x52, 0x76, 0x28, 0x92, - 0x61, 0x9c, 0xa4, 0x36, 0x18, 0x4a, 0xa3, 0x74, 0x4d, 0x8d, 0x35, 0x39, 0xbf, 0xe3, 0xf9, 0x23, - 0xcb, 0xf7, 0x0e, 0x5d, 0xc7, 0x8a, 0x55, 0xd5, 0x1b, 0x3c, 0xff, 0x81, 0xc2, 0xd0, 0x62, 0x9e, - 0xf3, 0xb3, 0x09, 0x3b, 0x96, 0xb8, 0x18, 0x41, 0xe2, 0x13, 0x68, 0xd1, 0x7d, 0x46, 0x51, 0x20, - 0xad, 0xa8, 0xdf, 0x26, 0x46, 0x93, 0x2d, 0xe1, 0x9a, 0xe8, 0x36, 0x76, 0x0e, 0x02, 0x69, 0x19, - 0xe0, 0x24, 0xcd, 0x48, 0xff, 0x0c, 0xda, 0x09, 0x37, 0xa9, 0x14, 0x78, 0x2b, 0x8d, 0x87, 0x4b, - 0x99, 0xa4, 0x64, 0x44, 0x5f, 0x2f, 0xf7, 0x4b, 0x49, 0x44, 0xac, 0xff, 0x75, 0x35, 0x99, 0xac, - 0x2a, 0x56, 0x2f, 0xe7, 0x48, 0x31, 0xc5, 0x51, 0x7e, 0xad, 0x14, 0xc7, 0x77, 0x40, 0xb3, 0x29, - 0x6a, 0x77, 0x4e, 0x13, 0xf3, 0xb8, 0x38, 0x1d, 0xa1, 0xab, 0xb8, 0x9e, 0xe2, 0x85, 0x74, 0xf0, - 0x2b, 0xb8, 0x9a, 0xf2, 0xae, 0x36, 0x8b, 0x77, 0xf5, 0x6f, 0xc8, 0xbb, 0x8c, 0x35, 0xdd, 0x02, - 0x6b, 0xde, 0x81, 0xb6, 0xe7, 0x7b, 0x23, 0x6f, 0xe2, 0xba, 0xe6, 0x81, 0x2b, 0x15, 0x53, 0x5b, - 0x9e, 0xef, 0xed, 0x2a, 0x14, 0x46, 0x0e, 0xf9, 0x21, 0xac, 0x3a, 0x98, 0xc1, 0xf3, 0xb9, 0x71, - 0xa4, 0x60, 0x96, 0xa1, 0xe7, 0x1f, 0xfc, 0x54, 0x5a, 0x31, 0x51, 0x72, 0x44, 0x3a, 0x83, 0xc3, - 0x86, 0x2e, 0xe3, 0x91, 0x74, 0xe8, 0x18, 0x4f, 0x0b, 0x53, 0xe7, 0x82, 0x30, 0x4d, 0x09, 0xcd, - 0xfc, 0xeb, 0x09, 0xcd, 0xa7, 0xa0, 0xa5, 0x34, 0xcf, 0xe5, 0x1b, 0x34, 0xa8, 0x6d, 0xef, 0x6e, - 0x6c, 0xfe, 0xa8, 0x57, 0x42, 0xb3, 0x6e, 0x6c, 0x3e, 0xdd, 0x34, 0x06, 0x9b, 0xbd, 0x32, 0x9a, - 0xd9, 0x8d, 0xcd, 0x9d, 0xcd, 0xe1, 0x66, 0xaf, 0xc2, 0x2e, 0x1b, 0x95, 0xa1, 0x5c, 0xc7, 0x72, - 0x62, 0x7d, 0x0f, 0xe6, 0xa7, 0x76, 0x9a, 0xa9, 0x06, 0x97, 0xa1, 0xe1, 0x07, 0x89, 0x07, 0x9f, - 0xca, 0xe5, 0x1e, 0xa1, 0xf6, 0x4d, 0x27, 0x34, 0x92, 0x6e, 0xb4, 0x1f, 0x19, 0xfa, 0x55, 0xb5, - 0x7f, 0x4d, 0x79, 0x61, 0xfa, 0x00, 0x20, 0xcb, 0xe5, 0xa0, 0xe1, 0xca, 0x28, 0xab, 0x92, 0xc9, - 0x71, 0x42, 0xd3, 0xe5, 0x54, 0x67, 0x95, 0x5f, 0x94, 0x31, 0xe2, 0x7e, 0x7d, 0x15, 0xb4, 0xc7, - 0x66, 0xf0, 0x39, 0xd7, 0x8d, 0x6f, 0x42, 0x97, 0xc2, 0xa1, 0x24, 0xd0, 0x64, 0x7b, 0xd2, 0x36, - 0x3a, 0x29, 0x16, 0xcd, 0x93, 0xfe, 0xa7, 0x25, 0xb8, 0xfc, 0xd8, 0x3f, 0x95, 0x69, 0x78, 0xb0, - 0x6f, 0x9e, 0xbb, 0xbe, 0x69, 0xbf, 0xe2, 0x6d, 0x5d, 0x03, 0x88, 0xfc, 0x09, 0xd5, 0x71, 0x93, - 0xaa, 0xb7, 0xa1, 0x31, 0xe6, 0xa1, 0xfa, 0x6c, 0x48, 0x46, 0x31, 0x75, 0x2a, 0x5f, 0x03, 0x61, - 0xec, 0x7a, 0x03, 0xea, 0xf1, 0x99, 0x97, 0xd5, 0xe0, 0x6b, 0x31, 0x15, 0x41, 0x66, 0x46, 0x0b, - 0xb5, 0xd9, 0xd1, 0x82, 0xfe, 0x00, 0xb4, 0xe1, 0x19, 0x95, 0x01, 0x26, 0x45, 0x7f, 0xbd, 0xf4, - 0x12, 0xaf, 0xb0, 0x3c, 0xe5, 0x15, 0xfe, 0x6b, 0x09, 0x5a, 0xb9, 0xb0, 0x47, 0xbc, 0x03, 0xd5, - 0xf8, 0xcc, 0x2b, 0x7e, 0x72, 0x93, 0x6c, 0x62, 0x50, 0xd7, 0x85, 0x54, 0x77, 0xf9, 0x42, 0xaa, - 0x5b, 0xec, 0xc0, 0x3c, 0x1b, 0xa7, 0xe4, 0x12, 0x49, 0x46, 0xf0, 0xdd, 0xa9, 0x30, 0x8b, 0x4b, - 0x25, 0xc9, 0x95, 0x54, 0x9a, 0xab, 0x7b, 0x54, 0x40, 0x2e, 0xae, 0xc1, 0xa5, 0x19, 0xc3, 0xbe, - 0x4e, 0xd1, 0x4c, 0x5f, 0x82, 0xce, 0xf0, 0xcc, 0x1b, 0x3a, 0x63, 0x19, 0xc5, 0xe6, 0x38, 0x20, - 0xaf, 0x5a, 0x39, 0x17, 0x55, 0xa3, 0x1c, 0x47, 0xfa, 0xfb, 0xd0, 0xde, 0x97, 0x32, 0x34, 0x64, - 0x14, 0xf8, 0x1e, 0xfb, 0x8f, 0xaa, 0x44, 0xc1, 0x9e, 0x8c, 0x82, 0xf4, 0xff, 0x07, 0x9a, 0x61, - 0x1e, 0xc6, 0xeb, 0x66, 0x6c, 0x1d, 0x7f, 0x9d, 0x9c, 0xd7, 0xfb, 0xd0, 0x08, 0x58, 0xa6, 0x54, - 0x30, 0xdc, 0x26, 0x8f, 0x46, 0xc9, 0x99, 0x91, 0x74, 0xea, 0xdf, 0x86, 0xae, 0xaa, 0x17, 0x26, - 0x27, 0xc9, 0x15, 0x15, 0x4b, 0x2f, 0x2c, 0x2a, 0xea, 0x47, 0xd0, 0x49, 0xe6, 0xb1, 0x7f, 0xf0, - 0x5a, 0xd3, 0xbe, 0xfe, 0x57, 0x1b, 0xfa, 0xff, 0x85, 0x4b, 0x83, 0xc9, 0x41, 0x64, 0x85, 0x0e, - 0xbd, 0xf7, 0x64, 0xbb, 0x45, 0x68, 0x06, 0xa1, 0x3c, 0x74, 0xce, 0x64, 0xf2, 0xc4, 0x52, 0x58, - 0xdc, 0x82, 0xc6, 0x18, 0xe9, 0x25, 0xb3, 0xc7, 0x9b, 0x85, 0xf8, 0x8f, 0xb1, 0xc7, 0x48, 0x06, - 0xe8, 0xdf, 0x85, 0xcb, 0xc5, 0xe5, 0x15, 0x15, 0xde, 0x85, 0xca, 0xc9, 0x69, 0xa4, 0xc8, 0xbc, - 0x50, 0x48, 0x11, 0xd0, 0xe7, 0x32, 0xd8, 0xab, 0xff, 0x65, 0x09, 0x2a, 0xbb, 0x93, 0x71, 0xfe, - 0x9b, 0xc4, 0x2a, 0x7f, 0x93, 0x78, 0x35, 0x5f, 0xce, 0xe0, 0x90, 0x33, 0x2b, 0x5b, 0xbc, 0x0d, - 0xda, 0xa1, 0x1f, 0xfe, 0xdc, 0x0c, 0x6d, 0x69, 0x2b, 0x27, 0x25, 0x43, 0x50, 0x74, 0x31, 0x19, - 0x07, 0xca, 0x66, 0x51, 0x5b, 0xdc, 0x54, 0x6e, 0x0e, 0x87, 0x81, 0x0b, 0x48, 0xd9, 0xdd, 0xc9, - 0x78, 0xc5, 0x95, 0x66, 0x44, 0x16, 0x94, 0x3d, 0x1f, 0xfd, 0x36, 0x68, 0x29, 0x0a, 0xf5, 0xf4, - 0xee, 0x60, 0xb4, 0xbd, 0xc1, 0x29, 0x62, 0x0c, 0x98, 0x4a, 0xa8, 0xa3, 0x87, 0x3f, 0xda, 0x1d, - 0x0d, 0x07, 0xbd, 0xb2, 0xfe, 0x13, 0x68, 0x25, 0xef, 0x67, 0xdb, 0xa6, 0x7a, 0x28, 0x3d, 0xe0, - 0x6d, 0xbb, 0xf0, 0x9e, 0xb7, 0x29, 0xa2, 0x95, 0x9e, 0xbd, 0x9d, 0x3c, 0x3c, 0x06, 0x8a, 0x37, - 0x54, 0xc5, 0xd5, 0xe4, 0x86, 0xfa, 0x26, 0x2c, 0x18, 0x54, 0xd7, 0x41, 0x6f, 0x22, 0x61, 0xd9, - 0x15, 0xa8, 0x7b, 0xbe, 0x2d, 0xd3, 0x0d, 0x14, 0x84, 0x3b, 0x2b, 0x66, 0x2b, 0x95, 0x96, 0xf2, - 0x5e, 0xc2, 0x02, 0x6a, 0xc9, 0xa2, 0xa0, 0x15, 0x6a, 0x0e, 0xa5, 0xa9, 0x9a, 0x03, 0x6e, 0xa2, - 0x3e, 0x2f, 0x60, 0xcd, 0x9f, 0x7c, 0x52, 0xb0, 0x08, 0x4d, 0x3b, 0x8a, 0xe9, 0x59, 0x2b, 0xdd, - 0x98, 0xc2, 0xfa, 0x5d, 0xb8, 0xb4, 0x16, 0x04, 0xee, 0x79, 0x52, 0x8c, 0x55, 0x1b, 0xf5, 0xb3, - 0x8a, 0x6d, 0x49, 0x85, 0xd1, 0x0c, 0xea, 0x5b, 0xd0, 0x4e, 0x12, 0x32, 0x8f, 0x65, 0x6c, 0x92, - 0xc6, 0x73, 0x9d, 0x42, 0x46, 0xa2, 0xc9, 0x88, 0x61, 0xb1, 0xb2, 0x31, 0x75, 0xbf, 0x15, 0xa8, - 0x2b, 0x75, 0x2a, 0xa0, 0x6a, 0xf9, 0x36, 0x6f, 0x54, 0x33, 0xa8, 0x8d, 0x52, 0x35, 0x8e, 0x8e, - 0x92, 0xa0, 0x60, 0x1c, 0x1d, 0xe9, 0xff, 0x59, 0x86, 0xce, 0x3a, 0x25, 0xea, 0x92, 0x33, 0xe6, - 0x92, 0xd8, 0xa5, 0x42, 0x12, 0x3b, 0x9f, 0xb0, 0x2e, 0x17, 0x12, 0xd6, 0x85, 0x03, 0x55, 0x8a, - 0x9e, 0xfc, 0x9b, 0xd0, 0x98, 0x78, 0xce, 0x59, 0x62, 0x27, 0x34, 0xf2, 0x6d, 0xce, 0x86, 0x91, - 0xb8, 0x01, 0x2d, 0x34, 0x25, 0x8e, 0xc7, 0x49, 0x62, 0xce, 0xf4, 0xe6, 0x51, 0x53, 0xa9, 0xe0, - 0xfa, 0xcb, 0x53, 0xc1, 0x8d, 0x6f, 0x92, 0x0a, 0x6e, 0x7e, 0x83, 0x54, 0xb0, 0x36, 0x9d, 0x0a, - 0x2e, 0xc6, 0x2a, 0x70, 0x21, 0x56, 0xb9, 0x06, 0xc0, 0x5f, 0x4a, 0x1d, 0x4e, 0x5c, 0x57, 0xb9, - 0x66, 0x1a, 0x61, 0xb6, 0x26, 0xae, 0xab, 0xef, 0x40, 0x37, 0x61, 0x80, 0x52, 0x14, 0x9f, 0xc1, - 0xbc, 0x2a, 0x05, 0xc9, 0x50, 0x65, 0x1f, 0x59, 0xff, 0xd1, 0x2b, 0xe5, 0x6a, 0x8d, 0xea, 0x31, - 0xba, 0x76, 0x1e, 0x8c, 0xf4, 0x5f, 0x95, 0xa0, 0x53, 0x18, 0x21, 0xee, 0x67, 0x85, 0xa5, 0x12, - 0xbd, 0xf5, 0xfe, 0x85, 0x55, 0x5e, 0x5e, 0x5c, 0x2a, 0x4f, 0x15, 0x97, 0xf4, 0x3b, 0x69, 0xc9, - 0x48, 0x15, 0x8a, 0xe6, 0xd2, 0x42, 0x11, 0xd5, 0x56, 0xd6, 0x86, 0x43, 0xa3, 0x57, 0x16, 0x75, - 0x28, 0xef, 0x0e, 0x7a, 0x15, 0xfd, 0xb7, 0x65, 0xe8, 0x6c, 0x9e, 0x05, 0xf4, 0xd5, 0xe0, 0x2b, - 0x03, 0xbf, 0x9c, 0xf4, 0x95, 0x0b, 0xd2, 0x97, 0x93, 0xa3, 0x8a, 0xaa, 0x94, 0xb3, 0x1c, 0x61, - 0x28, 0xc8, 0x89, 0x69, 0x25, 0x5f, 0x0c, 0xfd, 0xef, 0x91, 0xaf, 0x82, 0x76, 0x82, 0xe9, 0x8a, - 0xe8, 0x0e, 0x74, 0x13, 0xe2, 0x2a, 0xf1, 0x79, 0xad, 0x87, 0xcf, 0x5f, 0x35, 0xbb, 0x69, 0x8e, - 0x92, 0x01, 0xfd, 0x8f, 0xcb, 0xa0, 0xb1, 0x34, 0xe2, 0x7d, 0x3e, 0x54, 0x36, 0xa2, 0x94, 0x15, - 0xdf, 0xd2, 0xce, 0x95, 0x47, 0xf2, 0x3c, 0xb3, 0x13, 0x33, 0x0b, 0xd6, 0x2a, 0x93, 0xc9, 0x09, - 0x1c, 0xca, 0x64, 0x5e, 0x05, 0x8d, 0x5d, 0xbc, 0x89, 0xaa, 0xfc, 0x54, 0x0d, 0xf6, 0xf9, 0x9e, - 0x38, 0x64, 0xa5, 0x62, 0x19, 0x8e, 0x15, 0xa7, 0xa8, 0x5d, 0x0c, 0x95, 0x3b, 0x49, 0xb8, 0x55, - 0xa0, 0x48, 0x63, 0x9a, 0x22, 0xc7, 0xd0, 0x50, 0x67, 0xc3, 0x68, 0xe2, 0xc9, 0xee, 0xa3, 0xdd, - 0xbd, 0x1f, 0xee, 0x16, 0x64, 0x34, 0x8d, 0x37, 0xca, 0xf9, 0x78, 0xa3, 0x82, 0xf8, 0x07, 0x7b, - 0x4f, 0x76, 0x87, 0xbd, 0xaa, 0xe8, 0x80, 0x46, 0xcd, 0x91, 0xb1, 0xf9, 0xb4, 0x57, 0xa3, 0x44, - 0xe0, 0x83, 0xcf, 0x37, 0x1f, 0xaf, 0xf5, 0xea, 0x69, 0x29, 0xb4, 0xa1, 0xff, 0x51, 0x09, 0x16, - 0x98, 0x20, 0xf9, 0x3c, 0x58, 0xfe, 0xff, 0x06, 0x55, 0xfe, 0xbf, 0xc1, 0xff, 0x6c, 0xea, 0x0b, - 0x27, 0x4d, 0x9c, 0xe4, 0xe3, 0x03, 0xce, 0xcf, 0x36, 0x27, 0x8e, 0xfa, 0xe6, 0xe0, 0x6f, 0x4b, - 0xb0, 0xc8, 0xf1, 0xc5, 0xc3, 0xd0, 0x0c, 0x8e, 0x7f, 0xb0, 0x73, 0x21, 0x09, 0xf3, 0x22, 0xaf, - 0xfb, 0x26, 0x74, 0xe9, 0x1f, 0x19, 0x3f, 0x73, 0x47, 0x2a, 0xb4, 0x67, 0xee, 0x76, 0x14, 0x96, - 0x17, 0x12, 0x1f, 0x43, 0x9b, 0xff, 0xb9, 0x41, 0x05, 0x8b, 0x42, 0xe1, 0xbc, 0x10, 0xdd, 0xb4, - 0x78, 0x14, 0x97, 0xf9, 0xef, 0xa7, 0x93, 0xb2, 0x7c, 0xcd, 0xc5, 0xda, 0xb8, 0x9a, 0x32, 0xa4, - 0x2c, 0xce, 0x5d, 0xb8, 0x3a, 0xf3, 0x1e, 0x4a, 0xec, 0x73, 0x79, 0x73, 0x96, 0x36, 0xfd, 0xb7, - 0x25, 0x68, 0xae, 0x4f, 0xdc, 0x13, 0x32, 0xa8, 0xd7, 0x00, 0xa4, 0x7d, 0x24, 0xd5, 0x5f, 0x20, - 0x4a, 0xa4, 0x42, 0x34, 0xc4, 0xf0, 0x9f, 0x20, 0x3e, 0x03, 0xe0, 0x3b, 0x8e, 0xc6, 0x66, 0xa0, - 0x58, 0x44, 0x85, 0xec, 0x64, 0x01, 0x75, 0x97, 0xc7, 0x66, 0xa0, 0x0a, 0xd9, 0x51, 0x02, 0x67, - 0x05, 0xfe, 0xca, 0x4b, 0x0a, 0xfc, 0x8b, 0xbb, 0xd0, 0x2d, 0x2e, 0x31, 0x23, 0xc6, 0x7c, 0xbf, - 0xf8, 0x11, 0xd5, 0x45, 0x1a, 0xe6, 0xe2, 0x81, 0x2f, 0x60, 0x7e, 0xaa, 0xf6, 0xf1, 0x32, 0xbd, - 0x5a, 0x78, 0x32, 0xe5, 0xe9, 0x27, 0xf3, 0x11, 0x2c, 0x0c, 0xcd, 0xe8, 0x44, 0xc5, 0x48, 0x99, - 0x23, 0x10, 0x9b, 0xd1, 0xc9, 0x28, 0x25, 0x6a, 0x1d, 0xc1, 0x6d, 0x5b, 0xbf, 0x0f, 0x22, 0x3f, - 0x5a, 0xd1, 0x1f, 0x63, 0x5f, 0x1c, 0x3e, 0x96, 0xb1, 0x99, 0x78, 0x2c, 0x88, 0x40, 0xe2, 0xad, - 0xfe, 0x4d, 0x09, 0xaa, 0x18, 0x54, 0x88, 0x3b, 0xa0, 0x7d, 0x2e, 0xcd, 0x30, 0x3e, 0x90, 0x66, - 0x2c, 0x0a, 0x01, 0xc4, 0x22, 0xd1, 0x2d, 0xfb, 0x30, 0x4b, 0x9f, 0xbb, 0x57, 0x12, 0x2b, 0xfc, - 0xd9, 0x78, 0xf2, 0x39, 0x7c, 0x27, 0x09, 0x4e, 0x28, 0x78, 0x59, 0x2c, 0xcc, 0xd7, 0xe7, 0x96, - 0x69, 0xfc, 0x17, 0xbe, 0xe3, 0x3d, 0xe0, 0x8f, 0x95, 0xc5, 0x74, 0x30, 0x33, 0x3d, 0x43, 0xdc, - 0x81, 0xfa, 0x76, 0x84, 0x51, 0xd3, 0xc5, 0xa1, 0x44, 0xfc, 0x7c, 0x40, 0xa5, 0xcf, 0xad, 0xfe, - 0x59, 0x0d, 0xaa, 0x3f, 0x91, 0xa1, 0x2f, 0x3e, 0x82, 0x86, 0xfa, 0x8c, 0x4d, 0xe4, 0x3e, 0x57, - 0x5b, 0xa4, 0x04, 0xc8, 0xd4, 0xf7, 0x6d, 0xb4, 0x4b, 0x8f, 0xf9, 0x97, 0x55, 0xfc, 0x44, 0xf6, - 0x95, 0xdd, 0x85, 0x43, 0x7d, 0x0a, 0xbd, 0x41, 0x1c, 0x4a, 0x73, 0x9c, 0x1b, 0x5e, 0x24, 0xd5, - 0xac, 0xf2, 0x21, 0xd1, 0xeb, 0x36, 0xd4, 0x39, 0x34, 0x9d, 0x9a, 0x30, 0x5d, 0x1b, 0xa4, 0xc1, - 0x1f, 0x40, 0x6b, 0x70, 0xec, 0x4f, 0x5c, 0x7b, 0x20, 0xc3, 0x53, 0x29, 0x72, 0xd1, 0xd5, 0x62, - 0xae, 0xad, 0xcf, 0x89, 0xfb, 0x50, 0x47, 0x8e, 0x84, 0x63, 0xb1, 0x90, 0x8b, 0xc0, 0x58, 0x4c, - 0x16, 0x45, 0x1e, 0x95, 0x50, 0x4a, 0x7c, 0x00, 0x1a, 0x87, 0x02, 0x18, 0x08, 0x34, 0x54, 0x74, - 0xc1, 0xc7, 0xc8, 0x85, 0x08, 0xfa, 0x9c, 0x58, 0x06, 0xc8, 0xc5, 0xb4, 0x2f, 0x1b, 0xf9, 0x31, - 0x74, 0x1e, 0x90, 0x26, 0xdc, 0x0b, 0xd7, 0x0e, 0xfc, 0x30, 0x16, 0xd3, 0x9f, 0xd6, 0x2e, 0x4e, - 0x23, 0xf4, 0x39, 0x8c, 0x0e, 0x87, 0xe1, 0x39, 0x8f, 0x5f, 0x50, 0xa9, 0x80, 0x6c, 0xbf, 0x19, - 0x74, 0x11, 0x9f, 0xa4, 0xef, 0x2a, 0x8d, 0x00, 0x66, 0x15, 0x1a, 0x99, 0x44, 0xfc, 0x06, 0x88, - 0x44, 0x90, 0x85, 0x27, 0xe2, 0x0d, 0x2e, 0x7a, 0x4e, 0x85, 0x2b, 0x17, 0xa7, 0x64, 0xa1, 0x08, - 0x4f, 0xb9, 0x10, 0x9a, 0x4c, 0x4d, 0xf9, 0x16, 0xb4, 0xf3, 0x61, 0x85, 0xa0, 0xea, 0xdd, 0x8c, - 0x40, 0xa3, 0x38, 0x6d, 0xf5, 0xdf, 0x6a, 0x50, 0xff, 0xa1, 0x1f, 0x9e, 0xc8, 0x50, 0xdc, 0x82, - 0x3a, 0x95, 0xaf, 0xd5, 0x5b, 0x4a, 0x4b, 0xd9, 0xb3, 0x68, 0xf7, 0x1e, 0x68, 0x24, 0x19, 0xf8, - 0xd8, 0x59, 0x5e, 0xe9, 0x2f, 0x69, 0xbc, 0x38, 0xa7, 0x7d, 0x49, 0xb8, 0xbb, 0x2c, 0xad, 0xe9, - 0xe7, 0x2a, 0x85, 0xf2, 0xf2, 0x22, 0xb1, 0xf4, 0xd1, 0xd3, 0x01, 0xbe, 0xcf, 0x7b, 0x25, 0xf4, - 0x29, 0x06, 0xcc, 0x3c, 0x1c, 0x94, 0xfd, 0xd5, 0x85, 0x9f, 0x7f, 0xf6, 0xdf, 0x12, 0x7d, 0x4e, - 0xdc, 0x85, 0xba, 0x32, 0x31, 0x0b, 0x99, 0x22, 0x4c, 0x6e, 0xd8, 0xcb, 0xa3, 0xd4, 0x84, 0xfb, - 0x50, 0x67, 0x73, 0xcc, 0x13, 0x0a, 0x71, 0x0d, 0xcb, 0x69, 0xd1, 0xd3, 0xd6, 0xe7, 0xc4, 0x6d, - 0x68, 0xa8, 0xe2, 0xb4, 0x98, 0x51, 0xa9, 0xbe, 0xc0, 0xb1, 0x3a, 0xfb, 0x5a, 0xbc, 0x7e, 0xc1, - 0xa9, 0xe5, 0xf5, 0x8b, 0xae, 0x18, 0x3f, 0x7d, 0x43, 0x5a, 0xd2, 0xc9, 0x25, 0xe6, 0x44, 0x42, - 0x91, 0x19, 0xfa, 0xeb, 0x53, 0xe8, 0x14, 0x92, 0x78, 0xa2, 0x9f, 0x88, 0xc5, 0x74, 0x5e, 0xef, - 0x82, 0xd6, 0xf8, 0x2e, 0x68, 0x2a, 0xed, 0x70, 0xa0, 0x04, 0x63, 0x46, 0x92, 0x63, 0xf1, 0x62, - 0xde, 0x81, 0x54, 0xc1, 0x8f, 0xe0, 0xd2, 0x0c, 0xdb, 0x2a, 0xe8, 0x63, 0xe9, 0x17, 0x3b, 0x0f, - 0x8b, 0x4b, 0x2f, 0xec, 0x4f, 0x09, 0xf0, 0xcd, 0x9e, 0xd3, 0xf7, 0x00, 0x32, 0x13, 0xc3, 0x6f, - 0xe3, 0x82, 0x81, 0x5a, 0xbc, 0x32, 0x8d, 0x4e, 0x36, 0x5d, 0xef, 0xff, 0xfa, 0xab, 0xeb, 0xa5, - 0xdf, 0x7c, 0x75, 0xbd, 0xf4, 0x2f, 0x5f, 0x5d, 0x2f, 0xfd, 0xea, 0x77, 0xd7, 0xe7, 0x7e, 0xf3, - 0xbb, 0xeb, 0x73, 0xff, 0xf0, 0xbb, 0xeb, 0x73, 0x07, 0x75, 0xfa, 0x6f, 0xe8, 0xc7, 0xff, 0x15, - 0x00, 0x00, 0xff, 0xff, 0x69, 0xda, 0x2c, 0xa9, 0x91, 0x3a, 0x00, 0x00, + // 5663 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x3b, 0x4b, 0x6f, 0x1c, 0x67, + 0x72, 0x9c, 0x77, 0x77, 0xcd, 0x83, 0xc3, 0x4f, 0xb2, 0x3c, 0x1e, 0x59, 0x22, 0xdd, 0xb6, 0x6c, + 0x5a, 0xb2, 0x28, 0x89, 0xf6, 0x6e, 0xd6, 0x5e, 0x2c, 0xb0, 0x7c, 0x0c, 0x65, 0x5a, 0xe4, 0x90, + 0xdb, 0x33, 0xd4, 0x3e, 0x80, 0x64, 0xd0, 0xec, 0xfe, 0x48, 0xf6, 0xb2, 0xa7, 0xbb, 0xb7, 0xbb, + 0x87, 0x4b, 0xfa, 0xb6, 0xa7, 0xbd, 0xe4, 0xb0, 0x48, 0xee, 0x41, 0x90, 0x6b, 0x72, 0x0a, 0x02, + 0x24, 0x08, 0x90, 0x43, 0x80, 0x20, 0x58, 0xe4, 0xb4, 0xb9, 0x05, 0x59, 0x44, 0x08, 0xec, 0xe4, + 0xa2, 0x43, 0x80, 0xe4, 0x0f, 0x24, 0xa8, 0xfa, 0xbe, 0x7e, 0x0d, 0x87, 0x7a, 0x38, 0xc8, 0x25, + 0xa7, 0xf9, 0xaa, 0xbe, 0x77, 0x55, 0x7d, 0xf5, 0xec, 0x01, 0xc5, 0x3f, 0x5c, 0xf1, 0x03, 0x2f, + 0xf2, 0x58, 0xd1, 0x3f, 0xec, 0xaa, 0x86, 0x6f, 0x0b, 0xb0, 0x7b, 0xf7, 0xd8, 0x8e, 0x4e, 0x26, + 0x87, 0x2b, 0xa6, 0x37, 0x7e, 0x60, 0x1d, 0x07, 0x86, 0x7f, 0x72, 0xdf, 0xf6, 0x1e, 0x1c, 0x1a, + 0xd6, 0x31, 0x0f, 0x1e, 0x9c, 0x7d, 0xf2, 0xc0, 0x3f, 0x7c, 0x10, 0x4f, 0xed, 0xde, 0xcf, 0x8c, + 0x3d, 0xf6, 0x8e, 0xbd, 0x07, 0x84, 0x3e, 0x9c, 0x1c, 0x11, 0x44, 0x00, 0xb5, 0xc4, 0x70, 0xad, + 0x0b, 0xe5, 0x1d, 0x3b, 0x8c, 0x18, 0x83, 0xf2, 0xc4, 0xb6, 0xc2, 0x4e, 0x61, 0xa9, 0xb4, 0x5c, + 0xd5, 0xa9, 0xad, 0xed, 0x82, 0x3a, 0x34, 0xc2, 0xd3, 0xa7, 0x86, 0x33, 0xe1, 0xac, 0x0d, 0xa5, + 0x33, 0xc3, 0xe9, 0x14, 0x96, 0x0a, 0xcb, 0x0d, 0x1d, 0x9b, 0x6c, 0x05, 0x94, 0x33, 0xc3, 0x19, + 0x45, 0x17, 0x3e, 0xef, 0x14, 0x97, 0x0a, 0xcb, 0xad, 0xd5, 0x6b, 0x2b, 0xfe, 0xe1, 0xca, 0xbe, + 0x17, 0x46, 0xb6, 0x7b, 0xbc, 0xf2, 0xd4, 0x70, 0x86, 0x17, 0x3e, 0xd7, 0x6b, 0x67, 0xa2, 0xa1, + 0xed, 0x41, 0x7d, 0x10, 0x98, 0x5b, 0x13, 0xd7, 0x8c, 0x6c, 0xcf, 0xc5, 0x1d, 0x5d, 0x63, 0xcc, + 0x69, 0x45, 0x55, 0xa7, 0x36, 0xe2, 0x8c, 0xe0, 0x38, 0xec, 0x94, 0x96, 0x4a, 0x88, 0xc3, 0x36, + 0xeb, 0x40, 0xcd, 0x0e, 0x37, 0xbc, 0x89, 0x1b, 0x75, 0xca, 0x4b, 0x85, 0x65, 0x45, 0x8f, 0x41, + 0xed, 0x2f, 0x4b, 0x50, 0xf9, 0xc1, 0x84, 0x07, 0x17, 0x34, 0x2f, 0x8a, 0x82, 0x78, 0x2d, 0x6c, + 0xb3, 0xeb, 0x50, 0x71, 0x0c, 0xf7, 0x38, 0xec, 0x14, 0x69, 0x31, 0x01, 0xb0, 0x9b, 0xa0, 0x1a, + 0x47, 0x11, 0x0f, 0x46, 0x13, 0xdb, 0xea, 0x94, 0x96, 0x0a, 0xcb, 0x55, 0x5d, 0x21, 0xc4, 0x81, + 0x6d, 0xb1, 0xb7, 0x40, 0xb1, 0xbc, 0x91, 0x99, 0xdd, 0xcb, 0xf2, 0x68, 0x2f, 0xf6, 0x2e, 0x28, + 0x13, 0xdb, 0x1a, 0x39, 0x76, 0x18, 0x75, 0x2a, 0x4b, 0x85, 0xe5, 0xfa, 0xaa, 0x82, 0x97, 0x45, + 0xda, 0xe9, 0xb5, 0x89, 0x6d, 0x11, 0x11, 0xef, 0x82, 0x12, 0x06, 0xe6, 0xe8, 0x68, 0xe2, 0x9a, + 0x9d, 0x2a, 0x0d, 0x9a, 0xc7, 0x41, 0x99, 0x5b, 0xeb, 0xb5, 0x50, 0x00, 0x78, 0xad, 0x80, 0x9f, + 0xf1, 0x20, 0xe4, 0x9d, 0x9a, 0xd8, 0x4a, 0x82, 0xec, 0x21, 0xd4, 0x8f, 0x0c, 0x93, 0x47, 0x23, + 0xdf, 0x08, 0x8c, 0x71, 0x47, 0x49, 0x17, 0xda, 0x42, 0xf4, 0x3e, 0x62, 0x43, 0x1d, 0x8e, 0x12, + 0x80, 0x7d, 0x0c, 0x4d, 0x82, 0xc2, 0xd1, 0x91, 0xed, 0x44, 0x3c, 0xe8, 0xa8, 0x34, 0xa7, 0x45, + 0x73, 0x08, 0x33, 0x0c, 0x38, 0xd7, 0x1b, 0x62, 0x90, 0xc0, 0xb0, 0x5b, 0x00, 0xfc, 0xdc, 0x37, + 0x5c, 0x6b, 0x64, 0x38, 0x4e, 0x07, 0xe8, 0x0c, 0xaa, 0xc0, 0xac, 0x39, 0x0e, 0x7b, 0x13, 0xcf, + 0x67, 0x58, 0xa3, 0x28, 0xec, 0x34, 0x97, 0x0a, 0xcb, 0x65, 0xbd, 0x8a, 0xe0, 0x30, 0x44, 0xba, + 0x9a, 0x86, 0x79, 0xc2, 0x3b, 0xad, 0xa5, 0xc2, 0x72, 0x45, 0x17, 0x00, 0x62, 0x8f, 0xec, 0x20, + 0x8c, 0x3a, 0xf3, 0x02, 0x4b, 0x00, 0xbb, 0x01, 0x55, 0xef, 0xe8, 0x28, 0xe4, 0x51, 0xa7, 0x4d, + 0x68, 0x09, 0x69, 0xab, 0xa0, 0x92, 0x54, 0x11, 0xd5, 0xee, 0x40, 0xf5, 0x0c, 0x01, 0x21, 0x7c, + 0xf5, 0xd5, 0x26, 0x1e, 0x3b, 0x11, 0x3c, 0x5d, 0x76, 0x6a, 0xb7, 0x41, 0xd9, 0x31, 0xdc, 0xe3, + 0x58, 0x5a, 0x91, 0x9d, 0x34, 0x41, 0xd5, 0xa9, 0xad, 0xfd, 0x71, 0x09, 0xaa, 0x3a, 0x0f, 0x27, + 0x4e, 0xc4, 0x3e, 0x00, 0x40, 0x66, 0x8d, 0x8d, 0x28, 0xb0, 0xcf, 0xe5, 0xaa, 0x29, 0xbb, 0xd4, + 0x89, 0x6d, 0xed, 0x52, 0x17, 0x7b, 0x08, 0x0d, 0x5a, 0x3d, 0x1e, 0x5a, 0x4c, 0x0f, 0x90, 0x9c, + 0x4f, 0xaf, 0xd3, 0x10, 0x39, 0xe3, 0x06, 0x54, 0x49, 0x3e, 0x84, 0x8c, 0x36, 0x75, 0x09, 0xb1, + 0x3b, 0xd0, 0xb2, 0xdd, 0x08, 0xf9, 0x67, 0x46, 0x23, 0x8b, 0x87, 0xb1, 0x00, 0x35, 0x13, 0xec, + 0x26, 0x0f, 0x23, 0xf6, 0x08, 0x04, 0x13, 0xe2, 0x0d, 0x2b, 0xb4, 0x61, 0x2b, 0x61, 0x6e, 0x28, + 0x76, 0xa4, 0x31, 0x72, 0xc7, 0xfb, 0x50, 0xc7, 0xfb, 0xc5, 0x33, 0xaa, 0x34, 0xa3, 0x41, 0xb7, + 0x91, 0xe4, 0xd0, 0x01, 0x07, 0xc8, 0xe1, 0x48, 0x1a, 0x14, 0x52, 0x21, 0x54, 0xd4, 0x66, 0x9b, + 0xd0, 0x3a, 0xe3, 0x66, 0xe4, 0x05, 0xa3, 0x31, 0x8f, 0x02, 0xdb, 0x0c, 0x3b, 0x0a, 0xad, 0x72, + 0x0b, 0x57, 0x11, 0x34, 0x5b, 0x79, 0x4a, 0x03, 0x76, 0x45, 0x7f, 0xcf, 0x8d, 0x82, 0x0b, 0xbd, + 0x79, 0x96, 0xc5, 0x75, 0xbf, 0x0f, 0xec, 0xf2, 0x20, 0xd4, 0x0b, 0xa7, 0xfc, 0x42, 0xbe, 0x3c, + 0x6c, 0xa2, 0x28, 0x10, 0xc5, 0x48, 0x29, 0x94, 0x75, 0x01, 0x7c, 0x56, 0xfc, 0x4e, 0x41, 0xeb, + 0x41, 0x65, 0x2f, 0xb0, 0x78, 0x30, 0xf3, 0xbd, 0x32, 0x28, 0x5b, 0x3c, 0x34, 0x69, 0x96, 0xa2, + 0x53, 0x3b, 0x7d, 0xc3, 0xa5, 0xcc, 0x1b, 0xd6, 0xfe, 0xa8, 0x00, 0xf5, 0x81, 0x17, 0x44, 0xbb, + 0x3c, 0x0c, 0x8d, 0x63, 0xce, 0x16, 0xa1, 0xe2, 0xe1, 0xb2, 0x92, 0xd3, 0x2a, 0xde, 0x8a, 0xf6, + 0xd1, 0x05, 0x7e, 0x4a, 0x1e, 0x8a, 0x57, 0xcb, 0x03, 0xca, 0x36, 0xbd, 0xfe, 0x92, 0x94, 0x6d, + 0x7a, 0xfb, 0xa9, 0x14, 0x97, 0xb3, 0x52, 0x7c, 0xe5, 0x13, 0xd1, 0xbe, 0x05, 0x80, 0xe7, 0x7b, + 0x4d, 0x69, 0xd4, 0x7e, 0x59, 0x80, 0xba, 0x6e, 0x1c, 0x45, 0x1b, 0x9e, 0x1b, 0xf1, 0xf3, 0x88, + 0xb5, 0xa0, 0x68, 0x5b, 0x44, 0xa3, 0xaa, 0x5e, 0xb4, 0x2d, 0x3c, 0xdd, 0x71, 0xe0, 0x4d, 0x7c, + 0x22, 0x51, 0x53, 0x17, 0x00, 0xd1, 0xd2, 0xb2, 0x02, 0x3a, 0x32, 0xd2, 0xd2, 0xb2, 0x02, 0xb6, + 0x08, 0xf5, 0xd0, 0x35, 0xfc, 0xf0, 0xc4, 0x8b, 0xf0, 0x74, 0x65, 0x3a, 0x1d, 0xc4, 0xa8, 0x61, + 0x88, 0x8f, 0xdf, 0x0e, 0x47, 0x0e, 0x37, 0x02, 0x97, 0x07, 0xa4, 0xd0, 0x14, 0x5d, 0xb5, 0xc3, + 0x1d, 0x81, 0xd0, 0x7e, 0x59, 0x82, 0xea, 0x2e, 0x1f, 0x1f, 0xf2, 0xe0, 0xd2, 0x21, 0x1e, 0x82, + 0x42, 0xfb, 0x8e, 0x6c, 0x4b, 0x9c, 0x63, 0xfd, 0x8d, 0xe7, 0xcf, 0x16, 0x17, 0x08, 0xb7, 0x6d, + 0x7d, 0xe4, 0x8d, 0xed, 0x88, 0x8f, 0xfd, 0xe8, 0x42, 0xaf, 0x49, 0xd4, 0xcc, 0x03, 0xde, 0x80, + 0xaa, 0xc3, 0x0d, 0xe4, 0x99, 0x78, 0x26, 0x12, 0x62, 0xf7, 0xa1, 0x66, 0x8c, 0x47, 0x16, 0x37, + 0x2c, 0x71, 0xa8, 0xf5, 0xeb, 0xcf, 0x9f, 0x2d, 0xb6, 0x8d, 0xf1, 0x26, 0x37, 0xb2, 0x6b, 0x57, + 0x05, 0x86, 0x7d, 0x8a, 0x6f, 0x23, 0x8c, 0x46, 0x13, 0xdf, 0x32, 0x22, 0x4e, 0x3a, 0xb7, 0xbc, + 0xde, 0x79, 0xfe, 0x6c, 0xf1, 0x3a, 0xa2, 0x0f, 0x08, 0x9b, 0x99, 0x06, 0x29, 0x16, 0xf5, 0x6f, + 0x7c, 0x7d, 0xa9, 0x7f, 0x25, 0xc8, 0xb6, 0x61, 0xc1, 0x74, 0x26, 0x21, 0x1a, 0x09, 0xdb, 0x3d, + 0xf2, 0x46, 0x9e, 0xeb, 0x5c, 0x10, 0x83, 0x95, 0xf5, 0x5b, 0xcf, 0x9f, 0x2d, 0xbe, 0x25, 0x3b, + 0xb7, 0xdd, 0x23, 0x6f, 0xcf, 0x75, 0x2e, 0x32, 0xeb, 0xcf, 0x4f, 0x75, 0xb1, 0xef, 0x43, 0xeb, + 0xc8, 0x0b, 0x4c, 0x3e, 0x4a, 0x48, 0xd6, 0xa2, 0x75, 0xba, 0xcf, 0x9f, 0x2d, 0xde, 0xa0, 0x9e, + 0xc7, 0x97, 0xe8, 0xd6, 0xc8, 0xe2, 0xb5, 0x7f, 0x29, 0x42, 0x85, 0xda, 0xec, 0x21, 0xd4, 0xc6, + 0xc4, 0x92, 0x58, 0x4f, 0xde, 0x40, 0x19, 0xa2, 0xbe, 0x15, 0xc1, 0x2b, 0xf9, 0x6c, 0xe3, 0x61, + 0x38, 0x23, 0x32, 0x0e, 0x1d, 0x1e, 0x85, 0x52, 0xe6, 0x33, 0x33, 0x86, 0xa2, 0x43, 0xce, 0x90, + 0xc3, 0xa6, 0xe5, 0xa6, 0x74, 0x49, 0x6e, 0xba, 0xa0, 0x98, 0x27, 0xdc, 0x3c, 0x0d, 0x27, 0x63, + 0x29, 0x55, 0x09, 0xcc, 0xde, 0x85, 0x26, 0xb5, 0x7d, 0xcf, 0x76, 0x69, 0x7a, 0x85, 0x06, 0x34, + 0x52, 0xe4, 0x30, 0xec, 0x6e, 0x41, 0x23, 0x7b, 0xd8, 0xac, 0xfa, 0x28, 0x0b, 0xf5, 0xb1, 0x94, + 0x55, 0x1f, 0xf5, 0x55, 0xc0, 0x33, 0x8b, 0x29, 0x19, 0x55, 0x82, 0xeb, 0x64, 0xaf, 0x30, 0x43, + 0x0d, 0xcd, 0x5a, 0x47, 0x4c, 0xc9, 0xaa, 0x24, 0x0f, 0x6a, 0x3b, 0xb6, 0xc9, 0xdd, 0x90, 0x9c, + 0x8f, 0x49, 0xc8, 0x13, 0xa5, 0x84, 0x6d, 0xbc, 0xef, 0xd8, 0x38, 0xef, 0x7b, 0x16, 0x0f, 0xa5, + 0x3a, 0x4b, 0x60, 0xec, 0xe3, 0xe7, 0xbe, 0x1d, 0x5c, 0x0c, 0x05, 0xa5, 0x4a, 0x7a, 0x02, 0xa3, + 0x74, 0x71, 0x17, 0x37, 0xb3, 0x62, 0x47, 0x42, 0x82, 0xda, 0x9f, 0x95, 0xa1, 0xf1, 0x13, 0x1e, + 0x78, 0xfb, 0x81, 0xe7, 0x7b, 0xa1, 0xe1, 0xb0, 0xb5, 0x3c, 0xcd, 0x05, 0x6f, 0x97, 0xf0, 0xb4, + 0xd9, 0x61, 0x2b, 0x83, 0x84, 0x09, 0x82, 0x67, 0x59, 0xae, 0x68, 0x50, 0x15, 0x3c, 0x9f, 0x41, + 0x33, 0xd9, 0x83, 0x63, 0x04, 0x97, 0xe9, 0xac, 0x79, 0x7a, 0xc8, 0x1e, 0x7c, 0x95, 0x63, 0xe3, + 0xfc, 0x60, 0x7b, 0x53, 0xf2, 0x56, 0x42, 0x92, 0x0a, 0xc3, 0x73, 0x77, 0x18, 0x33, 0x35, 0x81, + 0xf1, 0xa6, 0x48, 0x91, 0x70, 0x7b, 0xb3, 0xd3, 0xa0, 0xae, 0x18, 0x64, 0x6f, 0x83, 0x3a, 0x36, + 0xce, 0x51, 0xa1, 0x6d, 0x5b, 0xe2, 0x69, 0xea, 0x29, 0x82, 0xbd, 0x03, 0xa5, 0xe8, 0xdc, 0xa5, + 0xb7, 0x87, 0xde, 0x0d, 0x3a, 0xbb, 0xc3, 0x73, 0x57, 0xaa, 0x3e, 0x1d, 0xfb, 0x90, 0xa7, 0xa6, + 0x6d, 0x91, 0x33, 0xa3, 0xea, 0xd8, 0x64, 0x77, 0xa0, 0xe6, 0x08, 0x6e, 0x91, 0xc3, 0x52, 0x5f, + 0xad, 0x0b, 0x3d, 0x4a, 0x28, 0x3d, 0xee, 0x63, 0x1f, 0x81, 0x12, 0x53, 0xa7, 0x53, 0xa7, 0x71, + 0xed, 0x98, 0x9e, 0x31, 0x19, 0xf5, 0x64, 0x04, 0x7b, 0x08, 0xaa, 0xc5, 0x1d, 0x1e, 0xf1, 0x91, + 0x2b, 0x14, 0x79, 0x5d, 0x38, 0xb2, 0x9b, 0x84, 0xec, 0x87, 0x3a, 0xff, 0xd9, 0x84, 0x87, 0x91, + 0xae, 0x58, 0x12, 0xc1, 0xde, 0x4b, 0x1f, 0x56, 0x8b, 0xd8, 0x95, 0x25, 0x66, 0xdc, 0xd5, 0xfd, + 0x1e, 0xcc, 0x4f, 0x31, 0x2d, 0x2b, 0xa5, 0xcd, 0x97, 0x18, 0xcb, 0x2f, 0xca, 0x8a, 0xd2, 0x56, + 0xb5, 0xff, 0x2c, 0xc1, 0xbc, 0x7c, 0x30, 0x27, 0xb6, 0x3f, 0x88, 0xa4, 0xea, 0x22, 0xc3, 0x24, + 0x65, 0xb5, 0xac, 0xc7, 0x20, 0xfb, 0x1d, 0xa8, 0x92, 0xa6, 0x89, 0x1f, 0xfc, 0x62, 0x2a, 0x08, + 0xc9, 0x74, 0xa1, 0x00, 0xa4, 0x14, 0xc9, 0xe1, 0xec, 0x13, 0xa8, 0x7c, 0xc9, 0x03, 0x4f, 0x18, + 0xda, 0xfa, 0xea, 0xed, 0x59, 0xf3, 0x90, 0x7c, 0x72, 0x9a, 0x18, 0xfc, 0xbf, 0x95, 0x17, 0x78, + 0x1d, 0x79, 0x79, 0x0f, 0x8d, 0xed, 0xd8, 0x3b, 0xe3, 0x56, 0xa7, 0x96, 0xd2, 0x5c, 0x0a, 0x79, + 0xdc, 0x15, 0x8b, 0x8c, 0x32, 0x53, 0x64, 0xd4, 0xab, 0x45, 0xa6, 0xbb, 0x09, 0xf5, 0x0c, 0x5d, + 0x66, 0x30, 0x6a, 0x31, 0xaf, 0x4e, 0xd4, 0x44, 0x95, 0x66, 0xb5, 0xd2, 0x26, 0x40, 0x4a, 0xa5, + 0x6f, 0xaa, 0xdb, 0xb4, 0x5f, 0x14, 0x60, 0x7e, 0xc3, 0x73, 0x5d, 0x4e, 0x21, 0x83, 0xe0, 0x79, + 0xfa, 0xc4, 0x0b, 0x57, 0x3e, 0xf1, 0x0f, 0xa1, 0x12, 0xe2, 0x60, 0xb9, 0xfa, 0xb5, 0x19, 0x4c, + 0xd4, 0xc5, 0x08, 0x54, 0xf4, 0x63, 0xe3, 0x7c, 0xe4, 0x73, 0xd7, 0xb2, 0xdd, 0xe3, 0x58, 0xd1, + 0x8f, 0x8d, 0xf3, 0x7d, 0x81, 0xd1, 0xfe, 0xaa, 0x08, 0xf0, 0x39, 0x37, 0x9c, 0xe8, 0x04, 0x8d, + 0x19, 0x72, 0xd4, 0x76, 0xc3, 0xc8, 0x70, 0xcd, 0x38, 0x60, 0x4b, 0x60, 0xe4, 0x28, 0xda, 0x74, + 0x1e, 0x0a, 0x15, 0xa9, 0xea, 0x31, 0x88, 0xf2, 0x81, 0xdb, 0x4d, 0x42, 0x69, 0xfb, 0x25, 0x94, + 0x3a, 0x32, 0x65, 0x42, 0x4b, 0x47, 0xa6, 0x03, 0x35, 0x0c, 0x80, 0x6c, 0xcf, 0x25, 0xa1, 0x51, + 0xf5, 0x18, 0xc4, 0x75, 0x26, 0x7e, 0x64, 0x8f, 0x85, 0x85, 0x2f, 0xe9, 0x12, 0xc2, 0x53, 0xa1, + 0x45, 0xef, 0x99, 0x27, 0x1e, 0x29, 0x92, 0x92, 0x9e, 0xc0, 0xb8, 0x9a, 0xe7, 0x1e, 0x7b, 0x78, + 0x3b, 0x85, 0x9c, 0xc7, 0x18, 0x14, 0x77, 0xb1, 0xf8, 0x39, 0x76, 0xa9, 0xd4, 0x95, 0xc0, 0x48, + 0x17, 0xce, 0x47, 0x47, 0xdc, 0x88, 0x26, 0x01, 0x0f, 0x3b, 0x40, 0xdd, 0xc0, 0xf9, 0x96, 0xc4, + 0xb0, 0x77, 0xa0, 0x81, 0x84, 0x33, 0xc2, 0xd0, 0x3e, 0x76, 0xb9, 0x45, 0xea, 0xa5, 0xac, 0x23, + 0x31, 0xd7, 0x24, 0x4a, 0xfb, 0x9b, 0x22, 0x54, 0x85, 0x2e, 0xc8, 0x39, 0x4b, 0x85, 0x57, 0x72, + 0x96, 0xde, 0x06, 0xd5, 0x0f, 0xb8, 0x65, 0x9b, 0x31, 0x1f, 0x55, 0x3d, 0x45, 0x50, 0x94, 0x85, + 0xde, 0x01, 0xd1, 0x53, 0xd1, 0x05, 0xc0, 0x34, 0x68, 0x7a, 0xee, 0xc8, 0xb2, 0xc3, 0xd3, 0xd1, + 0xe1, 0x45, 0xc4, 0x43, 0x49, 0x8b, 0xba, 0xe7, 0x6e, 0xda, 0xe1, 0xe9, 0x3a, 0xa2, 0x90, 0x84, + 0xe2, 0x8d, 0xd0, 0xdb, 0x50, 0x74, 0x09, 0xb1, 0x8f, 0x41, 0x25, 0x1f, 0x96, 0x9c, 0x1c, 0x95, + 0x9c, 0x93, 0x1b, 0xcf, 0x9f, 0x2d, 0x32, 0x44, 0x4e, 0x79, 0x37, 0x4a, 0x8c, 0x43, 0x2f, 0x0d, + 0x27, 0xa3, 0xb9, 0xa2, 0x37, 0x2c, 0xbc, 0x34, 0x44, 0x0d, 0xc3, 0xac, 0x97, 0x26, 0x30, 0xec, + 0x3e, 0xb0, 0x89, 0x6b, 0x7a, 0x63, 0x1f, 0x85, 0x82, 0x5b, 0xf2, 0x90, 0x75, 0x3a, 0xe4, 0x42, + 0xb6, 0x87, 0x8e, 0xaa, 0xfd, 0x7b, 0x11, 0x1a, 0x9b, 0x76, 0xc0, 0xcd, 0x88, 0x5b, 0x3d, 0xeb, + 0x98, 0xe3, 0xd9, 0xb9, 0x1b, 0xd9, 0xd1, 0x85, 0x74, 0x43, 0x25, 0x94, 0x44, 0x11, 0xc5, 0x7c, + 0xd4, 0x2f, 0x5e, 0x58, 0x89, 0x12, 0x15, 0x02, 0x60, 0xab, 0x00, 0x22, 0xce, 0xa3, 0x64, 0x45, + 0xf9, 0xea, 0x64, 0x85, 0x4a, 0xc3, 0xb0, 0xc9, 0xde, 0xa2, 0xf4, 0xc6, 0x84, 0x23, 0xef, 0x2a, + 0xb4, 0x6f, 0x8d, 0x60, 0xe1, 0xd1, 0x52, 0xf8, 0x59, 0x13, 0x1b, 0x63, 0x9b, 0xbd, 0x0b, 0x45, + 0xcf, 0x27, 0xe2, 0xca, 0xa5, 0xb3, 0x57, 0x58, 0xd9, 0xf3, 0xf5, 0xa2, 0xe7, 0xe3, 0x2b, 0x16, + 0x31, 0x38, 0x09, 0x1e, 0xbe, 0x62, 0xb4, 0x7b, 0x14, 0xf9, 0xe9, 0xb2, 0x87, 0x69, 0xd0, 0x30, + 0x1c, 0xc7, 0xfb, 0x39, 0xb7, 0xf6, 0x03, 0x6e, 0xc5, 0x32, 0x98, 0xc3, 0xa1, 0x94, 0xb8, 0xc6, + 0x98, 0x87, 0xbe, 0x61, 0x72, 0x29, 0x82, 0x29, 0x42, 0x5b, 0x84, 0xe2, 0x9e, 0xcf, 0x6a, 0x50, + 0x1a, 0xf4, 0x86, 0xed, 0x39, 0x6c, 0x6c, 0xf6, 0x76, 0xda, 0x05, 0x6c, 0xec, 0x3d, 0xd5, 0xdb, + 0xc5, 0x2f, 0xca, 0x4a, 0xb5, 0x5d, 0xd3, 0xbe, 0x2a, 0x82, 0xba, 0x3b, 0x89, 0x0c, 0x54, 0x32, + 0x21, 0x5e, 0x37, 0x2f, 0xaa, 0xa9, 0x4c, 0xbe, 0x05, 0x4a, 0x18, 0x19, 0x01, 0xb9, 0x27, 0xc2, + 0x4c, 0xd5, 0x08, 0x1e, 0x86, 0xec, 0x7d, 0xa8, 0x70, 0xeb, 0x98, 0xc7, 0x76, 0xa3, 0x3d, 0x7d, + 0x71, 0x5d, 0x74, 0xb3, 0x65, 0xa8, 0x86, 0xe6, 0x09, 0x1f, 0x1b, 0x9d, 0x72, 0x3a, 0x70, 0x40, + 0x18, 0xe1, 0x8f, 0xeb, 0xb2, 0x9f, 0xbd, 0x07, 0x15, 0x64, 0x52, 0x28, 0x03, 0x5d, 0x0a, 0x8d, + 0x91, 0x1f, 0x72, 0x98, 0xe8, 0x44, 0x09, 0xb4, 0x02, 0xcf, 0x1f, 0x79, 0x3e, 0x31, 0xa1, 0xb5, + 0x7a, 0x9d, 0x94, 0x5d, 0x7c, 0x9b, 0x95, 0xcd, 0xc0, 0xf3, 0xf7, 0x7c, 0xbd, 0x6a, 0xd1, 0x2f, + 0x86, 0x3b, 0x34, 0x5c, 0x88, 0x86, 0xb0, 0x0e, 0x2a, 0x62, 0x44, 0x6e, 0x6b, 0x19, 0x94, 0x31, + 0x8f, 0x0c, 0xcb, 0x88, 0x0c, 0x69, 0x24, 0x1a, 0x42, 0x77, 0x0a, 0x9c, 0x9e, 0xf4, 0x6a, 0x0f, + 0xa0, 0x2a, 0x96, 0x66, 0x0a, 0x94, 0xfb, 0x7b, 0xfd, 0x9e, 0xa0, 0xef, 0xda, 0x0e, 0xd2, 0x57, + 0x81, 0xf2, 0xe6, 0xda, 0x70, 0xad, 0x5d, 0xc4, 0xd6, 0xf0, 0xc7, 0xfb, 0xbd, 0x76, 0x49, 0xfb, + 0x87, 0x02, 0x28, 0xf1, 0x3a, 0xec, 0x33, 0x00, 0x7c, 0xcb, 0xa3, 0x13, 0xdb, 0x4d, 0x3c, 0xbd, + 0x9b, 0xd9, 0x9d, 0x56, 0x90, 0xbd, 0x9f, 0x63, 0xaf, 0xb0, 0xb3, 0xf4, 0xf4, 0x09, 0xee, 0x0e, + 0xa0, 0x95, 0xef, 0x9c, 0xe1, 0xf2, 0xde, 0xcb, 0x9a, 0x97, 0xd6, 0xea, 0x1b, 0xb9, 0xa5, 0x71, + 0x26, 0xc9, 0x78, 0xc6, 0xd2, 0xdc, 0x07, 0x25, 0x46, 0xb3, 0x3a, 0xd4, 0x36, 0x7b, 0x5b, 0x6b, + 0x07, 0x3b, 0x28, 0x33, 0x00, 0xd5, 0xc1, 0x76, 0xff, 0xf1, 0x4e, 0x4f, 0x5c, 0x6b, 0x67, 0x7b, + 0x30, 0x6c, 0x17, 0xb5, 0x3f, 0x2c, 0x80, 0x12, 0xbb, 0x34, 0xec, 0x43, 0xf4, 0x42, 0xc8, 0x5b, + 0x93, 0x26, 0x89, 0x52, 0x54, 0x99, 0xf8, 0x55, 0x8f, 0xfb, 0xf1, 0x51, 0x92, 0x86, 0x8d, 0x9d, + 0x1c, 0x02, 0xb2, 0xe1, 0x73, 0x29, 0x97, 0x61, 0x62, 0x50, 0xb6, 0x3c, 0x97, 0x4b, 0xcf, 0x99, + 0xda, 0x24, 0x83, 0xb6, 0x6b, 0xf2, 0x34, 0xae, 0xa8, 0x11, 0x3c, 0x0c, 0xb5, 0x48, 0x38, 0xd4, + 0xc9, 0xc1, 0x92, 0xdd, 0x0a, 0xd9, 0xdd, 0x2e, 0x45, 0x27, 0xc5, 0xcb, 0xd1, 0x49, 0x6a, 0x41, + 0x2b, 0x2f, 0xb3, 0xa0, 0xda, 0x2f, 0xaa, 0xd0, 0xd2, 0x79, 0x18, 0x79, 0x01, 0x97, 0x0e, 0xe2, + 0x8b, 0x9e, 0xd0, 0x2d, 0x80, 0x40, 0x0c, 0x4e, 0xb7, 0x56, 0x25, 0x46, 0x84, 0x55, 0x8e, 0x67, + 0x92, 0xec, 0x4a, 0x53, 0x99, 0xc0, 0xec, 0x26, 0xa8, 0x87, 0x86, 0x79, 0x2a, 0x96, 0x15, 0x06, + 0x53, 0x11, 0x08, 0xb1, 0xae, 0x61, 0x9a, 0x3c, 0x0c, 0x47, 0x28, 0x0a, 0xc2, 0x6c, 0xaa, 0x02, + 0xf3, 0x84, 0x5f, 0xb0, 0x87, 0x00, 0x21, 0x37, 0x03, 0x1e, 0x51, 0x37, 0x1a, 0x4f, 0x75, 0x7d, + 0xe1, 0xd7, 0xcf, 0x16, 0xe7, 0xfe, 0xf9, 0xd9, 0xa2, 0x3a, 0xe0, 0x6e, 0x68, 0x47, 0xf6, 0x19, + 0xd7, 0x55, 0x31, 0x08, 0x67, 0x7c, 0x1b, 0x9a, 0x21, 0x0f, 0xd1, 0xea, 0x8e, 0x22, 0xef, 0x94, + 0x0b, 0x07, 0x7d, 0xe6, 0xa4, 0x86, 0x1c, 0x37, 0xc4, 0x61, 0xa8, 0x91, 0x0c, 0xd7, 0x73, 0x2f, + 0xc6, 0xde, 0x24, 0x94, 0x26, 0x26, 0x45, 0xb0, 0x15, 0xb8, 0xc6, 0x5d, 0x33, 0xb8, 0xf0, 0xf1, + 0x46, 0x78, 0x96, 0xd1, 0x91, 0xed, 0x70, 0xe9, 0xd9, 0x2f, 0xa4, 0x5d, 0x4f, 0xf8, 0xc5, 0x96, + 0xed, 0x70, 0xbc, 0xd6, 0x99, 0x31, 0x71, 0xa2, 0x11, 0x25, 0x0e, 0x40, 0x5c, 0x8b, 0x30, 0x6b, + 0x96, 0x15, 0xb0, 0xbb, 0xb0, 0x20, 0xba, 0x03, 0xcf, 0xe1, 0xb6, 0x25, 0x16, 0xab, 0xd3, 0xa8, + 0x79, 0xea, 0xd0, 0x09, 0x4f, 0x4b, 0xad, 0xc0, 0x35, 0x31, 0x56, 0xdc, 0x31, 0x1e, 0xdd, 0x10, + 0x5b, 0x53, 0xd7, 0x40, 0xf6, 0xe4, 0xb7, 0xf6, 0x8d, 0xe8, 0x84, 0xc2, 0x81, 0x78, 0xeb, 0x7d, + 0x23, 0x3a, 0x41, 0x07, 0x41, 0x74, 0x1f, 0xd9, 0xdc, 0x11, 0xe1, 0xbc, 0xaa, 0x8b, 0x19, 0x5b, + 0x88, 0x41, 0x07, 0x41, 0x0e, 0xf0, 0x82, 0xb1, 0x21, 0xf2, 0xa1, 0xaa, 0x2e, 0x26, 0x6d, 0x11, + 0x0a, 0xb7, 0x90, 0x1c, 0x75, 0x27, 0x63, 0xca, 0x8c, 0x96, 0x75, 0xc9, 0xe3, 0xfe, 0x64, 0xcc, + 0x3e, 0x84, 0xb6, 0xed, 0x9a, 0x01, 0x1f, 0x73, 0x37, 0x32, 0x9c, 0xd1, 0x51, 0xe0, 0x8d, 0x3b, + 0x0b, 0x34, 0x68, 0x3e, 0x83, 0xdf, 0x0a, 0xbc, 0xb1, 0x4c, 0xe3, 0xf8, 0x46, 0x10, 0xd9, 0x86, + 0xd3, 0x61, 0x71, 0x1a, 0x67, 0x5f, 0x20, 0xd8, 0x7b, 0xd0, 0xc4, 0xd9, 0xfd, 0xc4, 0x54, 0x5c, + 0xa3, 0x65, 0xf2, 0x48, 0xf6, 0x1d, 0x78, 0xd3, 0x0e, 0x13, 0x70, 0xed, 0xe7, 0x06, 0x4a, 0x34, + 0x49, 0x66, 0xe7, 0x3a, 0xad, 0x78, 0x55, 0xb7, 0xf6, 0xbc, 0x04, 0x4a, 0x12, 0xc7, 0xde, 0x03, + 0x75, 0x1c, 0xeb, 0x5f, 0xe9, 0x81, 0x36, 0x73, 0x4a, 0x59, 0x4f, 0xfb, 0xd9, 0x2d, 0x28, 0x9e, + 0x9e, 0x49, 0x5b, 0xd0, 0x5c, 0x11, 0x95, 0x0c, 0xff, 0xf0, 0x93, 0x95, 0x27, 0x4f, 0xf5, 0xe2, + 0xe9, 0xd9, 0x6b, 0xbc, 0x43, 0xf6, 0x01, 0xcc, 0x9b, 0x0e, 0x37, 0xdc, 0x51, 0xea, 0x36, 0x91, + 0x9c, 0xeb, 0x2d, 0x42, 0xef, 0x27, 0xbe, 0xd3, 0x1d, 0xa8, 0x58, 0xdc, 0x89, 0x8c, 0x6c, 0x42, + 0x7d, 0x2f, 0x30, 0x4c, 0x87, 0x6f, 0x22, 0x5a, 0x17, 0xbd, 0x68, 0x0b, 0x92, 0xd8, 0x31, 0x63, + 0x0b, 0x66, 0xc4, 0x8d, 0x89, 0x9e, 0x81, 0xac, 0x9e, 0xb9, 0x07, 0x0b, 0xfc, 0xdc, 0x27, 0x03, + 0x38, 0x4a, 0x52, 0x25, 0xc2, 0x44, 0xb7, 0xe3, 0x8e, 0x8d, 0x38, 0x65, 0xf2, 0x11, 0xaa, 0x40, + 0x41, 0xea, 0x06, 0xed, 0xc5, 0x64, 0x46, 0x36, 0xa3, 0x56, 0xf4, 0x78, 0x08, 0xfb, 0x10, 0x54, + 0xd3, 0x32, 0x47, 0x82, 0x32, 0xcd, 0xf4, 0x6c, 0x1b, 0x9b, 0x1b, 0x82, 0x24, 0x8a, 0x69, 0x99, + 0x22, 0x5c, 0xc8, 0xc5, 0xb4, 0xad, 0x57, 0x89, 0x69, 0xb3, 0x46, 0xbe, 0x9d, 0x33, 0xf2, 0x5f, + 0x94, 0x95, 0x5a, 0x5b, 0xd1, 0xde, 0x05, 0x25, 0xde, 0x08, 0x55, 0x77, 0xc8, 0x5d, 0x99, 0xaf, + 0x20, 0xd5, 0x8d, 0xe0, 0x30, 0xd4, 0x4c, 0x28, 0x3d, 0x79, 0x3a, 0x20, 0x0d, 0x8e, 0xc6, 0xb4, + 0x42, 0x4e, 0x18, 0xb5, 0x13, 0xad, 0x5e, 0xcc, 0x68, 0xf5, 0xdb, 0xc2, 0x20, 0x12, 0x83, 0xe2, + 0x24, 0x6f, 0x06, 0x83, 0x24, 0x16, 0xce, 0x40, 0x59, 0xe4, 0x7f, 0x09, 0xd0, 0xfe, 0xab, 0x04, + 0x35, 0xe9, 0xb8, 0xa1, 0x11, 0x9c, 0x24, 0xf9, 0x49, 0x6c, 0xe6, 0x23, 0xea, 0xc4, 0x03, 0xcc, + 0x16, 0xab, 0x4a, 0x2f, 0x2f, 0x56, 0xb1, 0xcf, 0xa0, 0xe1, 0x8b, 0xbe, 0xac, 0xcf, 0xf8, 0x66, + 0x76, 0x8e, 0xfc, 0xa5, 0x79, 0x75, 0x3f, 0x05, 0x90, 0x94, 0x94, 0xb1, 0x8f, 0x8c, 0x63, 0x49, + 0x81, 0x1a, 0xc2, 0x43, 0xe3, 0xf8, 0x95, 0x1c, 0xc0, 0x16, 0x79, 0x92, 0x0d, 0x32, 0x20, 0xe8, + 0x34, 0x66, 0x39, 0xd3, 0xcc, 0xbb, 0x5f, 0x37, 0x41, 0x35, 0xbd, 0xf1, 0xd8, 0xa6, 0xbe, 0x96, + 0xcc, 0xc7, 0x11, 0x62, 0x18, 0x6a, 0x7f, 0x50, 0x80, 0x9a, 0xbc, 0xd7, 0x25, 0xe3, 0xbe, 0xbe, + 0xdd, 0x5f, 0xd3, 0x7f, 0x2c, 0x7c, 0xc2, 0xed, 0xfe, 0xb0, 0x5d, 0x64, 0x2a, 0x54, 0xb6, 0x76, + 0xf6, 0xd6, 0x86, 0xed, 0x12, 0x1a, 0xfc, 0xf5, 0xbd, 0xbd, 0x9d, 0x76, 0x99, 0x35, 0x40, 0xd9, + 0x5c, 0x1b, 0xf6, 0x86, 0xdb, 0xbb, 0xbd, 0x76, 0x05, 0xc7, 0x3e, 0xee, 0xed, 0xb5, 0xab, 0xd8, + 0x38, 0xd8, 0xde, 0x6c, 0xd7, 0xb0, 0x7f, 0x7f, 0x6d, 0x30, 0xf8, 0xe1, 0x9e, 0xbe, 0xd9, 0x56, + 0xc8, 0x69, 0x18, 0xea, 0xdb, 0xfd, 0xc7, 0x6d, 0x15, 0xdb, 0x7b, 0xeb, 0x5f, 0xf4, 0x36, 0x86, + 0x6d, 0xc0, 0xf6, 0x53, 0xb1, 0x76, 0x43, 0x7b, 0x04, 0xf5, 0x0c, 0xdd, 0x70, 0x25, 0xbd, 0xb7, + 0xd5, 0x9e, 0xc3, 0xed, 0x9f, 0xae, 0xed, 0x1c, 0xa0, 0xbf, 0xd1, 0x02, 0xa0, 0xe6, 0x68, 0x67, + 0xad, 0xff, 0x38, 0xf1, 0x56, 0x7f, 0x00, 0xca, 0x81, 0x6d, 0xad, 0x3b, 0x9e, 0x79, 0x8a, 0xa2, + 0x74, 0x68, 0x84, 0x5c, 0xca, 0x1e, 0xb5, 0x31, 0x48, 0xa0, 0x07, 0x1c, 0x4a, 0xbe, 0x4b, 0x08, + 0xa9, 0xe7, 0x4e, 0xc6, 0x23, 0x2a, 0x6e, 0x96, 0x84, 0x51, 0x76, 0x27, 0xe3, 0x03, 0xdb, 0x0a, + 0xb5, 0x53, 0xa8, 0x1d, 0xd8, 0xd6, 0xbe, 0x61, 0x9e, 0x92, 0x4a, 0xc6, 0xa5, 0x47, 0xa1, 0xfd, + 0x25, 0x97, 0xc6, 0x5b, 0x25, 0xcc, 0xc0, 0xfe, 0x92, 0xb3, 0xf7, 0xa0, 0x4a, 0x40, 0x9c, 0x57, + 0xa1, 0x67, 0x17, 0x1f, 0x47, 0x97, 0x7d, 0x54, 0x5b, 0x74, 0x1c, 0xcf, 0x1c, 0x05, 0xfc, 0xa8, + 0xf3, 0xa6, 0xe0, 0x06, 0x21, 0x74, 0x7e, 0xa4, 0xfd, 0x7e, 0x21, 0xb9, 0x39, 0x95, 0xb0, 0x16, + 0xa1, 0xec, 0x1b, 0xe6, 0xa9, 0xf4, 0x9d, 0xea, 0x72, 0x41, 0x3c, 0x8c, 0x4e, 0x1d, 0xec, 0x03, + 0x50, 0xa4, 0x50, 0xc5, 0xbb, 0xd6, 0x33, 0xd2, 0xa7, 0x27, 0x9d, 0x79, 0x21, 0x28, 0xe5, 0x85, + 0x80, 0x42, 0x70, 0xdf, 0xb1, 0x23, 0xf1, 0x84, 0xf0, 0xa1, 0x12, 0xa4, 0x7d, 0x02, 0x90, 0x56, + 0x13, 0x67, 0x17, 0x71, 0x0c, 0xc7, 0x36, 0xe2, 0x90, 0x5e, 0x00, 0x5a, 0x1f, 0xea, 0x99, 0x1a, + 0x24, 0xd2, 0xd6, 0x70, 0x1c, 0xb4, 0xe7, 0x42, 0x0f, 0x28, 0x7a, 0xcd, 0x70, 0x9c, 0x27, 0xfc, + 0x22, 0x44, 0x37, 0x5e, 0x94, 0x2f, 0x8b, 0x53, 0x15, 0x2e, 0x9a, 0xaa, 0x8b, 0x4e, 0xed, 0x23, + 0xa8, 0x6e, 0xc5, 0x51, 0x4f, 0xfc, 0x30, 0x0a, 0x57, 0x3d, 0x0c, 0xed, 0x53, 0x79, 0x66, 0x2a, + 0x92, 0xb1, 0x7b, 0xb2, 0x4c, 0x1a, 0x8a, 0xa2, 0x6c, 0x21, 0x4d, 0x0a, 0x89, 0x41, 0xb2, 0x42, + 0x4a, 0x83, 0xb5, 0x4d, 0x50, 0x5e, 0x58, 0x78, 0x96, 0x04, 0x28, 0xa6, 0x04, 0x98, 0x51, 0x8a, + 0xd6, 0x7e, 0x0a, 0x90, 0x96, 0x53, 0xe5, 0x3b, 0x15, 0xab, 0xe0, 0x3b, 0xbd, 0x0b, 0x8a, 0x79, + 0x62, 0x3b, 0x56, 0xc0, 0xdd, 0xdc, 0xad, 0xd3, 0x02, 0x6c, 0xd2, 0xcf, 0x96, 0xa0, 0x4c, 0x55, + 0xe2, 0x52, 0xaa, 0xc5, 0x93, 0x12, 0x31, 0xf5, 0x68, 0xe7, 0xd0, 0x14, 0xf1, 0xd1, 0x2b, 0x78, + 0x97, 0x79, 0x35, 0x5a, 0xbc, 0xa4, 0x46, 0x6f, 0x40, 0x95, 0xdc, 0x95, 0xf8, 0x36, 0x12, 0xba, + 0x42, 0xbd, 0xfe, 0x63, 0x11, 0x40, 0x6c, 0xdd, 0xf7, 0x2c, 0x9e, 0xcf, 0x48, 0x14, 0xa6, 0x33, + 0x12, 0x0c, 0xca, 0xc9, 0x07, 0x00, 0xaa, 0x4e, 0xed, 0xd4, 0x30, 0xca, 0x2c, 0x85, 0x30, 0x8c, + 0x6f, 0x83, 0x4a, 0x1e, 0xa5, 0xfd, 0x25, 0x55, 0x7d, 0x70, 0xc3, 0x14, 0x91, 0x2d, 0x87, 0x57, + 0xf2, 0xe5, 0xf0, 0xa4, 0x26, 0x57, 0x15, 0xab, 0x89, 0x9a, 0xdc, 0xac, 0x32, 0x27, 0xa5, 0x89, + 0x42, 0x1e, 0x44, 0x71, 0x8e, 0x43, 0x40, 0x49, 0xb8, 0xae, 0xca, 0xb1, 0x86, 0x48, 0xf4, 0xb8, + 0xde, 0xc8, 0xf4, 0xdc, 0x23, 0xc7, 0x36, 0x23, 0x59, 0xfe, 0x06, 0xd7, 0xdb, 0x90, 0x18, 0x5a, + 0xcc, 0xb5, 0x7f, 0x36, 0x11, 0x8e, 0x25, 0x2e, 0x46, 0x10, 0xfb, 0x04, 0xea, 0x74, 0x9f, 0x51, + 0xe8, 0x73, 0x33, 0xec, 0x34, 0x88, 0xd1, 0x64, 0x4b, 0x44, 0x71, 0x74, 0x1b, 0x3b, 0x07, 0x3e, + 0x37, 0x75, 0xb0, 0xe3, 0x66, 0xa8, 0x7d, 0x06, 0x8d, 0x98, 0x9b, 0x54, 0x13, 0xbc, 0x9b, 0xc4, + 0xc3, 0x85, 0x54, 0x52, 0x52, 0xa2, 0xaf, 0x17, 0x3b, 0x85, 0x38, 0x22, 0xd6, 0xfe, 0xb6, 0x1c, + 0x4f, 0x96, 0xa5, 0xab, 0x17, 0x73, 0x24, 0x9f, 0xeb, 0x28, 0xbe, 0x52, 0xae, 0xe3, 0x3b, 0xa0, + 0x5a, 0x14, 0xb5, 0xdb, 0x67, 0xb1, 0x79, 0xec, 0x4e, 0x47, 0xe8, 0x32, 0xae, 0xa7, 0x78, 0x21, + 0x19, 0xfc, 0x12, 0xae, 0x26, 0xbc, 0xab, 0xcc, 0xe2, 0x5d, 0xf5, 0x1b, 0xf2, 0x2e, 0x65, 0x4d, + 0x2b, 0xc7, 0x9a, 0x77, 0xa0, 0xe1, 0x7a, 0xee, 0xc8, 0x9d, 0x38, 0x8e, 0x71, 0xe8, 0x70, 0xc9, + 0xd4, 0xba, 0xeb, 0xb9, 0x7d, 0x89, 0xc2, 0xc8, 0x21, 0x3b, 0x44, 0xa8, 0x0e, 0xc1, 0xe0, 0xf9, + 0xcc, 0x38, 0x52, 0x30, 0xcb, 0xd0, 0xf6, 0x0e, 0x7f, 0xca, 0xcd, 0x88, 0x28, 0x39, 0x22, 0x9d, + 0x21, 0xc2, 0x86, 0x96, 0xc0, 0x23, 0xe9, 0xd0, 0x31, 0x9e, 0x16, 0xa6, 0xe6, 0x25, 0x61, 0x9a, + 0x12, 0x9a, 0xf9, 0x57, 0x13, 0x9a, 0x4f, 0x41, 0x4d, 0x68, 0x9e, 0xc9, 0x37, 0xa8, 0x50, 0xd9, + 0xee, 0x6f, 0xf6, 0x7e, 0xd4, 0x2e, 0xa0, 0x59, 0xd7, 0x7b, 0x4f, 0x7b, 0xfa, 0xa0, 0xd7, 0x2e, + 0xa2, 0x99, 0xdd, 0xec, 0xed, 0xf4, 0x86, 0xbd, 0x76, 0x49, 0xb8, 0x6c, 0x54, 0x8f, 0x72, 0x6c, + 0xd3, 0x8e, 0xb4, 0x3d, 0x98, 0x9f, 0xda, 0x69, 0xa6, 0x1a, 0x5c, 0x86, 0x9a, 0xe7, 0xc7, 0x1e, + 0x7c, 0x22, 0x97, 0x7b, 0x84, 0xda, 0x37, 0xec, 0x40, 0x8f, 0xbb, 0xd1, 0x7e, 0xa4, 0xe8, 0x97, + 0x7d, 0x04, 0xa0, 0x4a, 0x2f, 0x4c, 0x1b, 0x00, 0xa4, 0xb9, 0x1c, 0x34, 0x5c, 0x29, 0x65, 0x65, + 0x56, 0x39, 0x8a, 0x69, 0xba, 0x9c, 0xe8, 0xac, 0xe2, 0x55, 0x19, 0x23, 0xd1, 0xaf, 0xad, 0x82, + 0xba, 0x6b, 0xf8, 0x9f, 0x8b, 0x02, 0xf2, 0x1d, 0x68, 0x51, 0x38, 0x14, 0x07, 0x9a, 0xc2, 0x9e, + 0x34, 0xf4, 0x66, 0x82, 0x45, 0xf3, 0xa4, 0xfd, 0x79, 0x01, 0xae, 0xef, 0x7a, 0x67, 0x3c, 0x09, + 0x0f, 0xf6, 0x8d, 0x0b, 0xc7, 0x33, 0xac, 0x97, 0xbc, 0xad, 0x5b, 0x00, 0xa1, 0x37, 0xa1, 0x82, + 0x6e, 0x5c, 0xfe, 0xd6, 0x55, 0x81, 0x79, 0x2c, 0xbf, 0x1f, 0xe2, 0x61, 0x44, 0x9d, 0xd2, 0xd7, + 0x40, 0x18, 0xbb, 0xde, 0x80, 0x6a, 0x74, 0xee, 0xa6, 0xc5, 0xf8, 0x4a, 0x44, 0xd5, 0x90, 0x99, + 0xd1, 0x42, 0x65, 0x76, 0xb4, 0xa0, 0x6d, 0x80, 0x3a, 0x3c, 0xa7, 0x7a, 0xc0, 0x24, 0xef, 0xaf, + 0x17, 0x5e, 0xe0, 0x15, 0x16, 0xa7, 0xbc, 0xc2, 0x7f, 0x2b, 0x40, 0x3d, 0x13, 0xf6, 0xb0, 0x77, + 0xa0, 0x1c, 0x9d, 0xbb, 0xf9, 0x6f, 0x6f, 0xe2, 0x4d, 0x74, 0xea, 0xba, 0x94, 0xf3, 0x2e, 0x5e, + 0xca, 0x79, 0xb3, 0x1d, 0x98, 0x17, 0xc6, 0x29, 0xbe, 0x44, 0x9c, 0x11, 0x7c, 0x77, 0x2a, 0xcc, + 0x12, 0x35, 0x93, 0xf8, 0x4a, 0x32, 0xcd, 0xd5, 0x3a, 0xce, 0x21, 0xbb, 0x6b, 0x70, 0x6d, 0xc6, + 0xb0, 0xd7, 0xa9, 0x9e, 0x69, 0x8b, 0xd0, 0x1c, 0x9e, 0xbb, 0x43, 0x7b, 0xcc, 0xc3, 0xc8, 0x18, + 0xfb, 0xe4, 0x55, 0x4b, 0xe7, 0xa2, 0xac, 0x17, 0xa3, 0x50, 0x7b, 0x1f, 0x1a, 0xfb, 0x9c, 0x07, + 0x3a, 0x0f, 0x7d, 0xcf, 0x15, 0xfe, 0xa3, 0xac, 0x55, 0x08, 0x4f, 0x46, 0x42, 0xda, 0xef, 0x81, + 0xaa, 0x1b, 0x47, 0xd1, 0xba, 0x11, 0x99, 0x27, 0xaf, 0x93, 0xf3, 0x7a, 0x1f, 0x6a, 0xbe, 0x90, + 0x29, 0x19, 0x0c, 0x37, 0xc8, 0xa3, 0x91, 0x72, 0xa6, 0xc7, 0x9d, 0xda, 0xb7, 0xa1, 0x25, 0x0b, + 0x87, 0xf1, 0x49, 0x32, 0xd5, 0xc5, 0xc2, 0x95, 0xd5, 0x45, 0xed, 0x18, 0x9a, 0xf1, 0x3c, 0xe1, + 0x1f, 0xbc, 0xd2, 0xb4, 0xd7, 0xff, 0x7c, 0x43, 0xfb, 0x5d, 0xb8, 0x36, 0x98, 0x1c, 0x86, 0x66, + 0x60, 0xd3, 0x7b, 0x8f, 0xb7, 0xeb, 0x82, 0xe2, 0x07, 0xfc, 0xc8, 0x3e, 0xe7, 0xf1, 0x13, 0x4b, + 0x60, 0x76, 0x17, 0x6a, 0x63, 0xa4, 0x17, 0x4f, 0x1f, 0x6f, 0x1a, 0xe2, 0xef, 0x62, 0x8f, 0x1e, + 0x0f, 0xd0, 0xbe, 0x0b, 0xd7, 0xf3, 0xcb, 0x4b, 0x2a, 0xbc, 0x0b, 0xa5, 0xd3, 0xb3, 0x50, 0x92, + 0x79, 0x21, 0x97, 0x22, 0xa0, 0xef, 0x66, 0xb0, 0x57, 0xfb, 0xeb, 0x02, 0x94, 0xfa, 0x93, 0x71, + 0xf6, 0xe3, 0xc4, 0xb2, 0xf8, 0x38, 0xf1, 0x66, 0xb6, 0xae, 0x21, 0x42, 0xce, 0xb4, 0x7e, 0xf1, + 0x36, 0xa8, 0x47, 0x5e, 0xf0, 0x73, 0x23, 0xb0, 0xb8, 0x25, 0x9d, 0x94, 0x14, 0x41, 0xd1, 0xc5, + 0x64, 0xec, 0x4b, 0x9b, 0x45, 0x6d, 0x76, 0x47, 0xba, 0x39, 0x22, 0x0c, 0x5c, 0x40, 0xca, 0xf6, + 0x27, 0xe3, 0x15, 0x87, 0x1b, 0x21, 0x59, 0x50, 0xe1, 0xf9, 0x68, 0xf7, 0x40, 0x4d, 0x50, 0xa8, + 0xa7, 0xfb, 0x83, 0xd1, 0xf6, 0xa6, 0x48, 0x11, 0x63, 0xc0, 0x54, 0x40, 0x1d, 0x3d, 0xfc, 0x51, + 0x7f, 0x34, 0x1c, 0xb4, 0x8b, 0xda, 0x4f, 0xa0, 0x1e, 0xbf, 0x9f, 0x6d, 0x8b, 0x0a, 0xa3, 0xf4, + 0x80, 0xb7, 0xad, 0xdc, 0x7b, 0xde, 0xa6, 0x88, 0x96, 0xbb, 0xd6, 0x76, 0xfc, 0xf0, 0x04, 0x90, + 0xbf, 0xa1, 0xac, 0xb2, 0xc6, 0x37, 0xd4, 0x7a, 0xb0, 0xa0, 0x53, 0x81, 0x07, 0xbd, 0x89, 0x98, + 0x65, 0x37, 0xa0, 0xea, 0x7a, 0x16, 0x4f, 0x36, 0x90, 0x10, 0xee, 0x2c, 0x99, 0x2d, 0x55, 0x5a, + 0xc2, 0x7b, 0x0e, 0x0b, 0xa8, 0x25, 0xf3, 0x82, 0x96, 0x2b, 0x3e, 0x14, 0xa6, 0x8a, 0x0f, 0xb8, + 0x89, 0xfc, 0xce, 0x40, 0x68, 0xfe, 0xf8, 0xdb, 0x82, 0x2e, 0x28, 0x56, 0x18, 0xd1, 0xb3, 0x96, + 0xba, 0x31, 0x81, 0xb5, 0x07, 0x70, 0x6d, 0xcd, 0xf7, 0x9d, 0x8b, 0xb8, 0x2a, 0x2b, 0x37, 0xea, + 0xa4, 0xa5, 0xdb, 0x82, 0x0c, 0xa3, 0x05, 0xa8, 0x6d, 0x41, 0x23, 0x4e, 0xc8, 0xec, 0xf2, 0xc8, + 0x20, 0x8d, 0xe7, 0xd8, 0xb9, 0x8c, 0x84, 0x22, 0x10, 0xc3, 0x7c, 0x65, 0x63, 0xea, 0x7e, 0x2b, + 0x50, 0x95, 0xea, 0x94, 0x41, 0xd9, 0xf4, 0x2c, 0xb1, 0x51, 0x45, 0xa7, 0x36, 0x4a, 0xd5, 0x38, + 0x3c, 0x8e, 0x83, 0x82, 0x71, 0x78, 0xac, 0xfd, 0x77, 0x11, 0x9a, 0xeb, 0x94, 0xa8, 0x8b, 0xcf, + 0x98, 0x49, 0x62, 0x17, 0x72, 0x49, 0xec, 0x6c, 0xc2, 0xba, 0x98, 0x4b, 0x58, 0xe7, 0x0e, 0x54, + 0xca, 0x7b, 0xf2, 0x6f, 0x42, 0x6d, 0xe2, 0xda, 0xe7, 0xb1, 0x9d, 0x50, 0xc9, 0xb7, 0x39, 0x1f, + 0x86, 0x6c, 0x09, 0xea, 0x68, 0x4a, 0x6c, 0x57, 0x24, 0x89, 0x45, 0xa6, 0x37, 0x8b, 0x9a, 0x4a, + 0x05, 0x57, 0x5f, 0x9c, 0x0a, 0xae, 0x7d, 0x93, 0x54, 0xb0, 0xf2, 0x0d, 0x52, 0xc1, 0xea, 0x74, + 0x2a, 0x38, 0x1f, 0xab, 0xc0, 0xa5, 0x58, 0xe5, 0x16, 0x80, 0xf8, 0x64, 0xea, 0x68, 0xe2, 0x38, + 0xd2, 0x35, 0x53, 0x09, 0xb3, 0x35, 0x71, 0x1c, 0x6d, 0x07, 0x5a, 0x31, 0x03, 0xa4, 0xa2, 0xf8, + 0x0c, 0xe6, 0x65, 0x29, 0x88, 0x07, 0x32, 0xfb, 0x28, 0xf4, 0x1f, 0xbd, 0x52, 0x51, 0xad, 0x91, + 0x3d, 0x7a, 0xcb, 0xca, 0x82, 0xa1, 0xf6, 0xab, 0x02, 0x34, 0x73, 0x23, 0xd8, 0xa3, 0xb4, 0xb0, + 0x54, 0xa0, 0xb7, 0xde, 0xb9, 0xb4, 0xca, 0x8b, 0x8b, 0x4b, 0xc5, 0xa9, 0xe2, 0x92, 0x76, 0x3f, + 0x29, 0x19, 0xc9, 0x42, 0xd1, 0x5c, 0x52, 0x28, 0xa2, 0xda, 0xca, 0xda, 0x70, 0xa8, 0xb7, 0x8b, + 0xac, 0x0a, 0xc5, 0xfe, 0xa0, 0x5d, 0xd2, 0x7e, 0x5b, 0x84, 0x66, 0xef, 0xdc, 0xa7, 0xcf, 0x07, + 0x5f, 0x1a, 0xf8, 0x65, 0xa4, 0xaf, 0x98, 0x93, 0xbe, 0x8c, 0x1c, 0x95, 0x64, 0xc9, 0x5c, 0xc8, + 0x11, 0x86, 0x82, 0x22, 0x31, 0x2d, 0xe5, 0x4b, 0x40, 0xff, 0x7f, 0xe4, 0x2b, 0xa7, 0x9d, 0x60, + 0xba, 0x34, 0xba, 0x03, 0xad, 0x98, 0xb8, 0x52, 0x7c, 0x5e, 0xe9, 0xe1, 0x8b, 0xcf, 0x9b, 0x9d, + 0x24, 0x47, 0x29, 0x00, 0xed, 0x4f, 0x8b, 0xa0, 0x0a, 0x69, 0xc4, 0xfb, 0x7c, 0x28, 0x6d, 0x44, + 0x21, 0x2d, 0xbe, 0x25, 0x9d, 0x2b, 0x4f, 0xf8, 0x45, 0x6a, 0x27, 0x66, 0x56, 0xae, 0x65, 0x26, + 0x53, 0x24, 0x70, 0x28, 0x93, 0x79, 0x13, 0x54, 0xe1, 0xe2, 0x4d, 0x64, 0xe5, 0xa7, 0xac, 0x0b, + 0x9f, 0xef, 0xc0, 0x26, 0x2b, 0x15, 0xf1, 0x60, 0x2c, 0x39, 0x45, 0xed, 0x7c, 0xa8, 0xdc, 0x8c, + 0xc3, 0xad, 0x1c, 0x45, 0x6a, 0xd3, 0x14, 0x39, 0x81, 0x9a, 0x3c, 0x1b, 0x46, 0x13, 0x07, 0xfd, + 0x27, 0xfd, 0xbd, 0x1f, 0xf6, 0x73, 0x32, 0x9a, 0xc4, 0x1b, 0xc5, 0x6c, 0xbc, 0x51, 0x42, 0xfc, + 0xc6, 0xde, 0x41, 0x7f, 0xd8, 0x2e, 0xb3, 0x26, 0xa8, 0xd4, 0x1c, 0xe9, 0xbd, 0xa7, 0xed, 0x0a, + 0x25, 0x02, 0x37, 0x3e, 0xef, 0xed, 0xae, 0xb5, 0xab, 0x49, 0x29, 0xb4, 0xa6, 0xfd, 0x49, 0x01, + 0x16, 0x04, 0x41, 0xb2, 0x79, 0xb0, 0xec, 0x1f, 0x0f, 0xca, 0xe2, 0x8f, 0x07, 0xff, 0xb7, 0xa9, + 0x2f, 0x9c, 0x34, 0xb1, 0xe3, 0xaf, 0x10, 0x44, 0x7e, 0x56, 0x99, 0xd8, 0xf2, 0xe3, 0x83, 0xbf, + 0x2f, 0x40, 0x57, 0xc4, 0x17, 0x8f, 0x03, 0xc3, 0x3f, 0xf9, 0xc1, 0xce, 0xa5, 0x24, 0xcc, 0x55, + 0x5e, 0xf7, 0x1d, 0x68, 0xd1, 0x5f, 0x33, 0x7e, 0xe6, 0x8c, 0x64, 0x68, 0x2f, 0xb8, 0xdb, 0x94, + 0x58, 0xb1, 0x10, 0xfb, 0x18, 0x1a, 0xe2, 0x2f, 0x1c, 0x54, 0xb0, 0xc8, 0x15, 0xce, 0x73, 0xd1, + 0x4d, 0x5d, 0x8c, 0x12, 0xf5, 0xfe, 0x47, 0xc9, 0xa4, 0x34, 0x5f, 0x73, 0xb9, 0x36, 0x2e, 0xa7, + 0x0c, 0x29, 0x8b, 0xf3, 0x00, 0x6e, 0xce, 0xbc, 0x87, 0x14, 0xfb, 0x4c, 0xde, 0x5c, 0x48, 0x9b, + 0xf6, 0xdb, 0x02, 0x28, 0xeb, 0x13, 0xe7, 0x94, 0x0c, 0xea, 0x2d, 0x00, 0x6e, 0x1d, 0x73, 0xf9, + 0x5f, 0x88, 0x02, 0xa9, 0x10, 0x15, 0x31, 0xe2, 0xdf, 0x10, 0x9f, 0x01, 0x88, 0x3b, 0x8e, 0xc6, + 0x86, 0x2f, 0x59, 0x44, 0x85, 0xec, 0x78, 0x01, 0x79, 0x97, 0x5d, 0xc3, 0x97, 0x85, 0xec, 0x30, + 0x86, 0xd3, 0x02, 0x7f, 0xe9, 0x05, 0x05, 0xfe, 0x6e, 0x1f, 0x5a, 0xf9, 0x25, 0x66, 0xc4, 0x98, + 0xef, 0xe7, 0xbf, 0xa6, 0xba, 0x4c, 0xc3, 0x4c, 0x3c, 0xf0, 0x05, 0xcc, 0x4f, 0xd5, 0x3e, 0x5e, + 0xa4, 0x57, 0x73, 0x4f, 0xa6, 0x38, 0xfd, 0x64, 0x3e, 0x82, 0x85, 0xa1, 0x11, 0x9e, 0xca, 0x18, + 0x29, 0x75, 0x04, 0x22, 0x23, 0x3c, 0x1d, 0x25, 0x44, 0xad, 0x22, 0xb8, 0x6d, 0x69, 0x8f, 0x80, + 0x65, 0x47, 0x4b, 0xfa, 0x63, 0xec, 0x8b, 0xc3, 0xc7, 0x3c, 0x32, 0x62, 0x8f, 0x05, 0x11, 0x48, + 0xbc, 0xd5, 0xbf, 0x2b, 0x40, 0x19, 0x83, 0x0a, 0x76, 0x1f, 0xd4, 0xcf, 0xb9, 0x11, 0x44, 0x87, + 0xdc, 0x88, 0x58, 0x2e, 0x80, 0xe8, 0x12, 0xdd, 0xd2, 0x2f, 0xb4, 0xb4, 0xb9, 0x87, 0x05, 0xb6, + 0x22, 0xbe, 0x1f, 0x8f, 0xbf, 0x8b, 0x6f, 0xc6, 0xc1, 0x09, 0x05, 0x2f, 0xdd, 0xdc, 0x7c, 0x6d, + 0x6e, 0x99, 0xc6, 0x7f, 0xe1, 0xd9, 0xee, 0x86, 0xf8, 0x6a, 0x99, 0x4d, 0x07, 0x33, 0xd3, 0x33, + 0xd8, 0x7d, 0xa8, 0x6e, 0x87, 0x18, 0x35, 0x5d, 0x1e, 0x4a, 0xc4, 0xcf, 0x06, 0x54, 0xda, 0xdc, + 0xea, 0x5f, 0x54, 0xa0, 0xfc, 0x13, 0x1e, 0x78, 0xec, 0x23, 0xa8, 0xc9, 0xef, 0xd9, 0x58, 0xe6, + 0xbb, 0xb5, 0x2e, 0x25, 0x40, 0xa6, 0x3e, 0x74, 0xa3, 0x5d, 0xda, 0x82, 0x7f, 0x69, 0xc5, 0x8f, + 0xa5, 0x9f, 0xdb, 0x5d, 0x3a, 0xd4, 0xa7, 0xd0, 0x1e, 0x44, 0x01, 0x37, 0xc6, 0x99, 0xe1, 0x79, + 0x52, 0xcd, 0x2a, 0x1f, 0x12, 0xbd, 0xee, 0x41, 0x55, 0x84, 0xa6, 0x53, 0x13, 0xa6, 0x6b, 0x83, + 0x34, 0xf8, 0x03, 0xa8, 0x0f, 0x4e, 0xbc, 0x89, 0x63, 0x0d, 0x78, 0x70, 0xc6, 0x59, 0x26, 0xba, + 0xea, 0x66, 0xda, 0xda, 0x1c, 0x7b, 0x04, 0x55, 0xe4, 0x48, 0x30, 0x66, 0x0b, 0x99, 0x08, 0x4c, + 0x88, 0x49, 0x97, 0x65, 0x51, 0x31, 0xa5, 0xd8, 0x07, 0xa0, 0x8a, 0x50, 0x00, 0x03, 0x81, 0x9a, + 0x8c, 0x2e, 0xc4, 0x31, 0x32, 0x21, 0x82, 0x36, 0xc7, 0x96, 0x01, 0x32, 0x31, 0xed, 0x8b, 0x46, + 0x7e, 0x0c, 0xcd, 0x0d, 0xd2, 0x84, 0x7b, 0xc1, 0xda, 0xa1, 0x17, 0x44, 0x6c, 0xfa, 0x1b, 0xdb, + 0xee, 0x34, 0x42, 0x9b, 0xc3, 0xe8, 0x70, 0x18, 0x5c, 0x88, 0xf1, 0x0b, 0x32, 0x15, 0x90, 0xee, + 0x37, 0x83, 0x2e, 0xec, 0x93, 0xe4, 0x5d, 0x25, 0x11, 0xc0, 0xac, 0x42, 0xa3, 0x20, 0x91, 0x78, + 0x03, 0x44, 0x22, 0x48, 0xc3, 0x13, 0xf6, 0x86, 0x28, 0x7a, 0x4e, 0x85, 0x2b, 0x97, 0xa7, 0xa4, + 0xa1, 0x88, 0x98, 0x72, 0x29, 0x34, 0x99, 0x9a, 0xf2, 0x2d, 0x68, 0x64, 0xc3, 0x0a, 0x46, 0xd5, + 0xbb, 0x19, 0x81, 0x46, 0x7e, 0xda, 0xea, 0x7f, 0x54, 0xa0, 0xfa, 0x43, 0x2f, 0x38, 0xe5, 0x01, + 0xbb, 0x0b, 0x55, 0x2a, 0x5f, 0xcb, 0xb7, 0x94, 0x94, 0xb2, 0x67, 0xd1, 0xee, 0x3d, 0x50, 0x49, + 0x32, 0xf0, 0xb1, 0x0b, 0x79, 0xa5, 0xff, 0xa6, 0x89, 0xc5, 0x45, 0xda, 0x97, 0x84, 0xbb, 0x25, + 0xa4, 0x35, 0xf9, 0x5c, 0x25, 0x57, 0x5e, 0xee, 0x12, 0x4b, 0x9f, 0x3c, 0x1d, 0xe0, 0xfb, 0x7c, + 0x58, 0x40, 0x9f, 0x62, 0x20, 0x98, 0x87, 0x83, 0xd2, 0xff, 0xbc, 0x88, 0xe7, 0x9f, 0xfe, 0xc9, + 0x44, 0x9b, 0x63, 0x0f, 0xa0, 0x2a, 0x4d, 0xcc, 0x42, 0xaa, 0x08, 0xe3, 0x1b, 0xb6, 0xb3, 0x28, + 0x39, 0xe1, 0x11, 0x54, 0x85, 0x39, 0x16, 0x13, 0x72, 0x71, 0x8d, 0x90, 0xd3, 0xbc, 0xa7, 0xad, + 0xcd, 0xb1, 0x7b, 0x50, 0x93, 0xc5, 0x69, 0x36, 0xa3, 0x52, 0x7d, 0x89, 0x63, 0x55, 0xe1, 0x6b, + 0x89, 0xf5, 0x73, 0x4e, 0xad, 0x58, 0x3f, 0xef, 0x8a, 0x89, 0xa7, 0xaf, 0x73, 0x93, 0xdb, 0x99, + 0xc4, 0x1c, 0x8b, 0x29, 0x32, 0x43, 0x7f, 0x7d, 0x0a, 0xcd, 0x5c, 0x12, 0x8f, 0x75, 0x62, 0xb1, + 0x98, 0xce, 0xeb, 0x5d, 0xd2, 0x1a, 0xdf, 0x05, 0x55, 0xa6, 0x1d, 0x0e, 0xa5, 0x60, 0xcc, 0x48, + 0x72, 0x74, 0x2f, 0xe7, 0x1d, 0x48, 0x15, 0xfc, 0x08, 0xae, 0xcd, 0xb0, 0xad, 0x8c, 0xbe, 0x9a, + 0xbe, 0xda, 0x79, 0xe8, 0x2e, 0x5e, 0xd9, 0x9f, 0x10, 0xe0, 0x9b, 0x3d, 0xa7, 0xef, 0x01, 0xa4, + 0x26, 0x46, 0xbc, 0x8d, 0x4b, 0x06, 0xaa, 0x7b, 0x63, 0x1a, 0x1d, 0x6f, 0xba, 0xde, 0xf9, 0xf5, + 0x57, 0xb7, 0x0b, 0xbf, 0xf9, 0xea, 0x76, 0xe1, 0x5f, 0xbf, 0xba, 0x5d, 0xf8, 0xd5, 0xd7, 0xb7, + 0xe7, 0x7e, 0xf3, 0xf5, 0xed, 0xb9, 0x7f, 0xfa, 0xfa, 0xf6, 0xdc, 0x61, 0x95, 0xfe, 0x24, 0xfa, + 0xf1, 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, 0x5c, 0xe4, 0xed, 0xa1, 0x9a, 0x3a, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/worker/mutation.go b/worker/mutation.go index 53572525e5d..0b6d9f76999 100644 --- a/worker/mutation.go +++ b/worker/mutation.go @@ -68,7 +68,7 @@ func runMutation(ctx context.Context, edge *pb.DirectedEdge, txn *posting.Txn) e // We shouldn't check whether this Alpha serves this predicate or not. Membership information // isn't consistent across the entire cluster. We should just apply whatever is given to us. su, ok := schema.State().Get(ctx, edge.Attr) - if edge.Op == pb.DirectedEdge_SET { + if edge.Op != pb.DirectedEdge_DEL { if !ok { return errors.Errorf("runMutation: Unable to find schema for %s", edge.Attr) } diff --git a/worker/mutation_unit_test.go b/worker/mutation_unit_test.go index d2b1053e95c..d69efea5d9b 100644 --- a/worker/mutation_unit_test.go +++ b/worker/mutation_unit_test.go @@ -17,16 +17,58 @@ package worker import ( + "context" + "os" "reflect" "testing" "github.com/stretchr/testify/require" + "github.com/dgraph-io/badger/v4" + "github.com/dgraph-io/dgraph/v24/posting" "github.com/dgraph-io/dgraph/v24/protos/pb" + "github.com/dgraph-io/dgraph/v24/schema" "github.com/dgraph-io/dgraph/v24/types" "github.com/dgraph-io/dgraph/v24/x" ) +func TestReverseEdge(t *testing.T) { + dir, err := os.MkdirTemp("", "storetest_") + x.Check(err) + defer os.RemoveAll(dir) + + opt := badger.DefaultOptions(dir) + ps, err := badger.OpenManaged(opt) + x.Check(err) + pstore = ps + // Not using posting list cache + posting.Init(ps, 0) + Init(ps) + err = schema.ParseBytes([]byte("revc: [uid] @reverse @count ."), 1) + require.NoError(t, err) + + ctx := context.Background() + txn := posting.Oracle().RegisterStartTs(5) + attr := x.GalaxyAttr("revc") + + edge := &pb.DirectedEdge{ + ValueId: 2, + Attr: attr, + Entity: 1, + Op: pb.DirectedEdge_DEL, + } + + x.Check(runMutation(ctx, edge, txn)) + x.Check(runMutation(ctx, edge, txn)) + + pl, err := txn.Get(x.DataKey(attr, 1)) + require.NoError(t, err) + pl.RLock() + c, _, _ := pl.GetLength(5) + pl.RUnlock() + require.Equal(t, c, 0) +} + func TestConvertEdgeType(t *testing.T) { var testEdges = []struct { input *pb.DirectedEdge diff --git a/worker/upgrade_test.go b/worker/upgrade_test.go new file mode 100644 index 00000000000..973d04fd685 --- /dev/null +++ b/worker/upgrade_test.go @@ -0,0 +1,120 @@ +//go:build upgrade + +/* + * Copyright 2023 Dgraph Labs, Inc. and Contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package worker + +import ( + "context" + "fmt" + "testing" + "time" + + "github.com/dgraph-io/dgo/v240/protos/api" + "github.com/dgraph-io/dgraph/v24/dgraphapi" + "github.com/dgraph-io/dgraph/v24/dgraphtest" + "github.com/dgraph-io/dgraph/v24/testutil" + "github.com/dgraph-io/dgraph/v24/x" + "github.com/stretchr/testify/require" +) + +var client *dgraphapi.GrpcClient +var ( + schemaIndexed = `friend: [uid] @count @reverse .` + schemaNonIndexed = `friend: [uid] .` +) + +func setClusterEdge(t *testing.T, rdf string) error { + mu := &api.Mutation{SetNquads: []byte(rdf), CommitNow: true} + return testutil.RetryMutation(client.Dgraph, mu) +} + +func delClusterEdge(t *testing.T, rdf string) error { + mu := &api.Mutation{DelNquads: []byte(rdf), CommitNow: true} + return testutil.RetryMutation(client.Dgraph, mu) +} + +func setSchema(schema string) { + var err error + for retry := 0; retry < 60; retry++ { + err = client.Alter(context.Background(), &api.Operation{Schema: schema}) + if err == nil { + return + } + time.Sleep(time.Second) + } + panic(fmt.Sprintf("Could not alter schema. Got error %v", err.Error())) +} + +func populateCluster(t *testing.T, dc dgraphapi.Cluster) { + x.Panic(client.Alter(context.Background(), &api.Operation{DropAll: true})) + x.Panic(dc.AssignUids(client.Dgraph, 65536)) + + setSchema(schemaIndexed) + + require.NoError(t, delClusterEdge(t, fmt.Sprintf("<%#x> <%#x> .", 1, 2))) +} + +func TestCountReverseIndex(t *testing.T) { + uc := &dgraphtest.UpgradeCombo{ + Before: "v24.0.4", + After: "local", + Strategy: dgraphtest.InPlace, + } + + conf := dgraphtest.NewClusterConfig().WithNumAlphas(1).WithNumZeros(1). + WithReplicas(1).WithACL(time.Hour).WithVersion(uc.Before) + c, err := dgraphtest.NewLocalCluster(conf) + x.Panic(err) + fmt.Println(c) + + var code = 2 + + defer func() { c.Cleanup(code != 0) }() + x.Panic(c.Start()) + + dg, cleanup, err := c.Client() + client = dg + x.Panic(err) + defer cleanup() + x.Panic(dg.LoginIntoNamespace(context.Background(), dgraphapi.DefaultUser, + dgraphapi.DefaultPassword, x.GalaxyNamespace)) + + populateCluster(t, c) + + err = delClusterEdge(t, fmt.Sprintf("<%#x> <%#x> .", 1, 2)) + require.Contains(t, err.Error(), "Transaction is too old") + + x.Panic(c.Upgrade(uc.After, uc.Strategy)) + + dg, cleanup, err = c.Client() + client = dg + x.Panic(err) + defer cleanup() + x.Panic(dg.LoginIntoNamespace(context.Background(), dgraphapi.DefaultUser, + dgraphapi.DefaultPassword, x.GalaxyNamespace)) + + setSchema(schemaNonIndexed) + setSchema(schemaIndexed) + + require.NoError(t, delClusterEdge(t, fmt.Sprintf("<%#x> <%#x> .", 1, 2))) + require.NoError(t, delClusterEdge(t, fmt.Sprintf("<%#x> <%#x> .", 1, 2))) + require.NoError(t, delClusterEdge(t, fmt.Sprintf("<%#x> <%#x> .", 1, 2))) + require.NoError(t, delClusterEdge(t, fmt.Sprintf("<%#x> <%#x> .", 1, 2))) + + code = 0 +} diff --git a/worker/worker_test.go b/worker/worker_test.go index 8b8f2736794..bd9abcac994 100644 --- a/worker/worker_test.go +++ b/worker/worker_test.go @@ -22,6 +22,7 @@ import ( "context" "fmt" "math" + "math/rand" "os" "strings" "sync/atomic" @@ -314,6 +315,46 @@ func TestProcessTaskIndexMLayer(t *testing.T) { ) } +func TestCountReverseWithDeletes(t *testing.T) { + schemaStr := "friend: [uid] @reverse @count ." + dg, err := testutil.DgraphClient(testutil.SockAddr) + if err != nil { + t.Fatalf("Error while getting a dgraph client: %v", err) + } + testutil.DropAll(t, dg) + + require.NoError(t, dg.Alter(context.Background(), &api.Operation{Schema: schemaStr})) + + n := 100 + for i := 0; i < 1000; i++ { + node := rand.Intn(n-1) + 2 + if i%2 == 0 { + setClusterEdge(t, dg, fmt.Sprintf("<%#x> <%#x> .", 1, node)) + } else { + delClusterEdge(t, dg, fmt.Sprintf("<%#x> <%#x> .", 1, node)) + } + } + + for i := 2; i <= n; i++ { + delClusterEdge(t, dg, fmt.Sprintf("<%#x> <%#x> .", 1, i)) + } + setClusterEdge(t, dg, fmt.Sprintf("<%#x> <%#x> .", 1, 2)) + + resp, err := runQuery(dg, "friend", []uint64{1}, nil) + require.NoError(t, err) + require.JSONEq(t, `{ + "q": [ + { + "friend": [ + { "uid": "0x2" } + ] + } + ] + }`, + string(resp.Json), + ) +} + // Index-related test. Similar to TestProcessTaskIndeMLayer except we call // MergeLists in between a lot of updates. func TestProcessTaskIndex(t *testing.T) {