diff --git a/chancloser.go b/chancloser.go index bcd0ec8b..4dc28d40 100644 --- a/chancloser.go +++ b/chancloser.go @@ -347,6 +347,21 @@ func (c *channelCloser) ProcessCloseMsg(msg lnwire.Message) ([]lnwire.Message, b "instead have %v", spew.Sdump(msg)) } + // As we're the responder to this shutdown (the other party + // wants to close), we'll check if this is a frozen channel or + // not. If the channel is frozen as we were also the initiator + // of the channel opening, then we'll deny their close attempt. + chanInitiator := c.cfg.channel.IsInitiator() + if !chanInitiator && c.cfg.channel.State().ChanType.IsFrozen() && + c.negotiationHeight < c.cfg.channel.State().ThawHeight { + + return nil, false, fmt.Errorf("initiator attempting "+ + "to co-op close frozen ChannelPoint(%v) "+ + "(current_height=%v, thaw_height=%v)", + c.chanPoint, c.negotiationHeight, + c.cfg.channel.State().ThawHeight) + } + // If the remote node opened the channel with option upfront shutdown // script, check that the script they provided matches. if err := maybeMatchScript( @@ -382,7 +397,7 @@ func (c *channelCloser) ProcessCloseMsg(msg lnwire.Message) ([]lnwire.Message, b // We'll also craft our initial close proposal in order to keep // the negotiation moving, but only if we're the negotiator. - if c.cfg.channel.IsInitiator() { + if chanInitiator { closeSigned, err := c.proposeCloseSigned(c.idealFeeSat) if err != nil { return nil, false, err diff --git a/channeldb/channel.go b/channeldb/channel.go index 65b0f67e..27f8887c 100644 --- a/channeldb/channel.go +++ b/channeldb/channel.go @@ -102,6 +102,11 @@ var ( // channel closure. This key should be accessed from within the // sub-bucket of a target channel, identified by its channel point. revocationLogBucket = []byte("revocation-log-key") + + // frozenChanKey is the key where we store the information for any + // active "frozen" channels. This key is present only in the leaf + // bucket for a given channel. + frozenChanKey = []byte("frozen-chans") ) var ( @@ -191,6 +196,11 @@ const ( // channel type also uses a delayed to_remote output script. If bit is // set, we'll find the size of the anchor outputs in the database. AnchorOutputsBit ChannelType = 1 << 3 + + // FrozenBit indicates that the channel is a frozen channel, meaning + // that only the responder can decide to cooperatively close the + // channel. + FrozenBit ChannelType = 1 << 4 ) // IsSingleFunder returns true if the channel type if one of the known single @@ -222,6 +232,13 @@ func (c ChannelType) HasAnchors() bool { return c&AnchorOutputsBit == AnchorOutputsBit } +// IsFrozen returns true if the channel is considered to be "frozen". A frozen +// channel means that only the responder can initiate a cooperative channel +// closure. +func (c ChannelType) IsFrozen() bool { + return c&FrozenBit == FrozenBit +} + // ChannelConstraints represents a set of constraints meant to allow a node to // limit their exposure, enact flow control and ensure that all HTLCs are // economically relevant. This struct will be mirrored for both sides of the @@ -635,6 +652,11 @@ type OpenChannel struct { // was not set, the field is empty. RemoteShutdownScript lnwire.DeliveryAddress + // ThawHeight is the height when a frozen channel once again becomes a + // normal channel. If this is zero, then there're no restrictions on + // this channel. + ThawHeight uint32 + // TODO(roasbeef): eww Db *DB @@ -1229,6 +1251,17 @@ func putOpenChannel(chanBucket kvdb.RwBucket, channel *OpenChannel) error { return fmt.Errorf("unable to store chan commitments: %v", err) } + // Next, if this is a frozen channel, we'll add in the axillary + // information we need to store. + if channel.ChanType.IsFrozen() { + err := storeThawHeight( + chanBucket, channel.ThawHeight, + ) + if err != nil { + return fmt.Errorf("unable to store thaw height: %v", err) + } + } + // Finally, we'll write out the revocation state for both parties // within a distinct key space. if err := putChanRevocationState(chanBucket, channel); err != nil { @@ -1259,6 +1292,18 @@ func fetchOpenChannel(chanBucket kvdb.ReadBucket, return nil, fmt.Errorf("unable to fetch chan commitments: %v", err) } + // Next, if this is a frozen channel, we'll add in the axillary + // information we need to store. + if channel.ChanType.IsFrozen() { + thawHeight, err := fetchThawHeight(chanBucket) + if err != nil { + return nil, fmt.Errorf("unable to store thaw "+ + "height: %v", err) + } + + channel.ThawHeight = thawHeight + } + // Finally, we'll retrieve the current revocation state so we can // properly if err := fetchChanRevocationState(chanBucket, channel); err != nil { @@ -2517,6 +2562,15 @@ func (c *OpenChannel) CloseChannel(summary *ChannelCloseSummary, return err } + // We'll also remove the channel from the frozen channel bucket + // if we need to. + if c.ChanType.IsFrozen() { + err := deleteThawHeight(chanBucket) + if err != nil { + return err + } + } + // With the base channel data deleted, attempt to delete the // information stored within the revocation log. logBucket := chanBucket.NestedReadWriteBucket(revocationLogBucket) @@ -3213,3 +3267,29 @@ func fetchChannelLogEntry(log kvdb.ReadBucket, commitReader := bytes.NewReader(commitBytes) return deserializeChanCommit(commitReader) } + +func fetchThawHeight(chanBucket kvdb.ReadBucket) (uint32, error) { + var height uint32 + + heightBytes := chanBucket.Get(frozenChanKey) + heightReader := bytes.NewReader(heightBytes) + + if err := ReadElements(heightReader, &height); err != nil { + return 0, err + } + + return height, nil +} + +func storeThawHeight(chanBucket kvdb.RwBucket, height uint32) error { + var heightBuf bytes.Buffer + if err := WriteElements(&heightBuf, height); err != nil { + return err + } + + return chanBucket.Put(frozenChanKey, heightBuf.Bytes()) +} + +func deleteThawHeight(chanBucket kvdb.RwBucket) error { + return chanBucket.Delete(frozenChanKey) +} diff --git a/channeldb/channel_test.go b/channeldb/channel_test.go index 2d143437..eb068485 100644 --- a/channeldb/channel_test.go +++ b/channeldb/channel_test.go @@ -349,7 +349,7 @@ func createTestChannelState(t *testing.T, cdb *DB) *OpenChannel { chanID := lnwire.NewShortChanIDFromInt(uint64(rand.Int63())) return &OpenChannel{ - ChanType: SingleFunderBit, + ChanType: SingleFunderBit | FrozenBit, ChainHash: key, FundingOutpoint: wire.OutPoint{Hash: key, Index: rand.Uint32()}, ShortChannelID: chanID, @@ -387,6 +387,7 @@ func createTestChannelState(t *testing.T, cdb *DB) *OpenChannel { Db: cdb, Packager: NewChannelPackager(chanID), FundingTxn: testTx, + ThawHeight: uint32(defaultPendingHeight), } } diff --git a/lnrpc/rpc.pb.go b/lnrpc/rpc.pb.go index edf18f53..fcc66a4d 100644 --- a/lnrpc/rpc.pb.go +++ b/lnrpc/rpc.pb.go @@ -3086,7 +3086,14 @@ type Channel struct { //not push any funds to the remote peer. If the initiator field is true, we //pushed this amount to our peer, if it is false, the remote peer pushed this //amount to us. - PushAmountSat uint64 `protobuf:"varint,27,opt,name=push_amount_sat,json=pushAmountSat,proto3" json:"push_amount_sat,omitempty"` + PushAmountSat uint64 `protobuf:"varint,27,opt,name=push_amount_sat,json=pushAmountSat,proto3" json:"push_amount_sat,omitempty"` + //* + //This uint32 indicates if this channel is to be considered 'frozen'. A + //frozen channel doest not allow a cooperative channel close by the + //initiator. The thaw_height is the height that this restriction stops + //applying to the channel. This field is optional, not setting it or using a + //value of zero will mean the channel has no additional restrictions. + ThawHeight uint32 `protobuf:"varint,28,opt,name=thaw_height,json=thawHeight,proto3" json:"thaw_height,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -3307,6 +3314,13 @@ func (m *Channel) GetPushAmountSat() uint64 { return 0 } +func (m *Channel) GetThawHeight() uint32 { + if m != nil { + return m.ThawHeight + } + return 0 +} + type ListChannelsRequest struct { ActiveOnly bool `protobuf:"varint,1,opt,name=active_only,json=activeOnly,proto3" json:"active_only,omitempty"` InactiveOnly bool `protobuf:"varint,2,opt,name=inactive_only,json=inactiveOnly,proto3" json:"inactive_only,omitempty"` @@ -5036,7 +5050,13 @@ type ChanPointShim struct { //protocol to initate the funding request. This is an optional field, and //should only be set if the responder is already expecting a specific pending //channel ID. - PendingChanId []byte `protobuf:"bytes,5,opt,name=pending_chan_id,json=pendingChanId,proto3" json:"pending_chan_id,omitempty"` + PendingChanId []byte `protobuf:"bytes,5,opt,name=pending_chan_id,json=pendingChanId,proto3" json:"pending_chan_id,omitempty"` + //* + //This uint32 indicates if this channel is to be considered 'frozen'. A + //frozen channel does not allow a cooperative channel close by the + //initiator. The thaw_height is the height that this restriction stops + //applying to the channel. + ThawHeight uint32 `protobuf:"varint,6,opt,name=thaw_height,json=thawHeight,proto3" json:"thaw_height,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -5102,6 +5122,13 @@ func (m *ChanPointShim) GetPendingChanId() []byte { return nil } +func (m *ChanPointShim) GetThawHeight() uint32 { + if m != nil { + return m.ThawHeight + } + return 0 +} + type FundingShim struct { // Types that are valid to be assigned to Shim: // *FundingShim_ChanPointShim @@ -11339,718 +11366,719 @@ func init() { func init() { proto.RegisterFile("rpc.proto", fileDescriptor_77a6da22d6a3feb1) } var fileDescriptor_77a6da22d6a3feb1 = []byte{ - // 11364 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0xbd, 0x5b, 0x8f, 0x24, 0x47, - 0x76, 0x18, 0x3c, 0x75, 0xeb, 0xaa, 0x3a, 0x75, 0xed, 0xe8, 0x5b, 0x4d, 0x0f, 0x87, 0x33, 0x4c, - 0x72, 0xc9, 0xd9, 0xe1, 0x6e, 0xcf, 0x70, 0x76, 0xc9, 0x5d, 0x91, 0x9f, 0x56, 0x5b, 0xdd, 0x5d, - 0x3d, 0x5d, 0x3b, 0x7d, 0x63, 0x56, 0x35, 0x29, 0xae, 0x3e, 0x39, 0x37, 0xbb, 0x2a, 0xba, 0x3b, - 0x35, 0x55, 0x99, 0xc5, 0xcc, 0xac, 0xbe, 0xec, 0x82, 0x7e, 0x30, 0x6c, 0xc1, 0x30, 0x6c, 0x03, - 0x82, 0x2d, 0xc3, 0x96, 0x2d, 0xd8, 0xb0, 0x61, 0x18, 0x86, 0x01, 0x41, 0xc6, 0xca, 0x80, 0x1f, - 0xfc, 0xae, 0x17, 0x1b, 0x82, 0x21, 0xf9, 0xc5, 0x10, 0x04, 0xc8, 0x97, 0xf5, 0x9b, 0xe1, 0x9f, - 0x60, 0xc4, 0x39, 0x11, 0x99, 0x91, 0x55, 0xd9, 0x33, 0xc3, 0x5d, 0x7a, 0x5f, 0x66, 0x3a, 0x4f, - 0x9c, 0xb8, 0x9f, 0x38, 0x71, 0xae, 0x51, 0x50, 0xf6, 0x27, 0x83, 0x8d, 0x89, 0xef, 0x85, 0x1e, - 0x2b, 0x8c, 0x5c, 0x7f, 0x32, 0x58, 0x7f, 0xed, 0xcc, 0xf3, 0xce, 0x46, 0xfc, 0x91, 0x3d, 0x71, - 0x1e, 0xd9, 0xae, 0xeb, 0x85, 0x76, 0xe8, 0x78, 0x6e, 0x40, 0x48, 0xc6, 0x8f, 0xa0, 0xfe, 0x94, - 0xbb, 0x3d, 0xce, 0x87, 0x26, 0xff, 0x7c, 0xca, 0x83, 0x90, 0xbd, 0x0b, 0x8b, 0x36, 0xff, 0x31, - 0xe7, 0x43, 0x6b, 0x62, 0x07, 0xc1, 0xe4, 0xdc, 0xb7, 0x03, 0xde, 0xca, 0xdc, 0xcf, 0x3c, 0xa8, - 0x9a, 0x4d, 0x2a, 0x38, 0x8a, 0xe0, 0xec, 0x0d, 0xa8, 0x06, 0x02, 0x95, 0xbb, 0xa1, 0xef, 0x4d, - 0xae, 0x5b, 0x59, 0xc4, 0xab, 0x08, 0x58, 0x87, 0x40, 0xc6, 0x08, 0x1a, 0x51, 0x0f, 0xc1, 0xc4, - 0x73, 0x03, 0xce, 0x1e, 0xc3, 0xf2, 0xc0, 0x99, 0x9c, 0x73, 0xdf, 0xc2, 0xca, 0x63, 0x97, 0x8f, - 0x3d, 0xd7, 0x19, 0xb4, 0x32, 0xf7, 0x73, 0x0f, 0xca, 0x26, 0xa3, 0x32, 0x51, 0x63, 0x5f, 0x96, - 0xb0, 0x77, 0xa0, 0xc1, 0x5d, 0x82, 0xf3, 0x21, 0xd6, 0x92, 0x5d, 0xd5, 0x63, 0xb0, 0xa8, 0x60, - 0xfc, 0xcd, 0x2c, 0x2c, 0x76, 0x5d, 0x27, 0xfc, 0xd4, 0x1e, 0x8d, 0x78, 0xa8, 0xe6, 0xf4, 0x0e, - 0x34, 0x2e, 0x11, 0x80, 0x73, 0xba, 0xf4, 0xfc, 0xa1, 0x9c, 0x51, 0x9d, 0xc0, 0x47, 0x12, 0x7a, - 0xe3, 0xc8, 0xb2, 0x37, 0x8e, 0x2c, 0x75, 0xb9, 0x72, 0x37, 0x2c, 0xd7, 0x3b, 0xd0, 0xf0, 0xf9, - 0xc0, 0xbb, 0xe0, 0xfe, 0xb5, 0x75, 0xe9, 0xb8, 0x43, 0xef, 0xb2, 0x95, 0xbf, 0x9f, 0x79, 0x50, - 0x30, 0xeb, 0x0a, 0xfc, 0x29, 0x42, 0xd9, 0x26, 0x34, 0x06, 0xe7, 0xb6, 0xeb, 0xf2, 0x91, 0x75, - 0x62, 0x0f, 0x9e, 0x4f, 0x27, 0x41, 0xab, 0x70, 0x3f, 0xf3, 0xa0, 0xf2, 0xe4, 0xf6, 0x06, 0xee, - 0xea, 0xc6, 0xd6, 0xb9, 0xed, 0x6e, 0x62, 0x49, 0xcf, 0xb5, 0x27, 0xc1, 0xb9, 0x17, 0x9a, 0x75, - 0x59, 0x83, 0xc0, 0x81, 0xb1, 0x0c, 0x4c, 0x5f, 0x09, 0x5a, 0x7b, 0xe3, 0xdf, 0x64, 0x60, 0xe9, - 0xd8, 0x1d, 0x79, 0x83, 0xe7, 0x3f, 0xe7, 0x12, 0xa5, 0xcc, 0x21, 0xfb, 0xaa, 0x73, 0xc8, 0x7d, - 0xd9, 0x39, 0xac, 0xc2, 0x72, 0x72, 0xb0, 0x72, 0x16, 0x1c, 0x56, 0x44, 0xed, 0x33, 0xae, 0x86, - 0xa5, 0xa6, 0xf1, 0x75, 0x68, 0x0e, 0xa6, 0xbe, 0xcf, 0xdd, 0xb9, 0x79, 0x34, 0x24, 0x3c, 0x9a, - 0xc8, 0x1b, 0x50, 0x75, 0xf9, 0x65, 0x8c, 0x26, 0x69, 0xd7, 0xe5, 0x97, 0x0a, 0xc5, 0x68, 0xc1, - 0xea, 0x6c, 0x37, 0x72, 0x00, 0x3f, 0xcb, 0x40, 0xfe, 0x38, 0xbc, 0xf2, 0xd8, 0xfb, 0x50, 0xb5, - 0x87, 0x43, 0x9f, 0x07, 0x81, 0x15, 0x5e, 0x4f, 0xe8, 0xa4, 0xd4, 0x9f, 0x30, 0x39, 0xc5, 0x36, - 0x15, 0xf5, 0xaf, 0x27, 0xdc, 0xac, 0xd8, 0xf1, 0x07, 0x6b, 0x41, 0x51, 0x7e, 0x62, 0xbf, 0x65, - 0x53, 0x7d, 0xb2, 0xbb, 0x00, 0xf6, 0xd8, 0x9b, 0xba, 0xa1, 0x15, 0xd8, 0x21, 0xae, 0x58, 0xce, - 0x2c, 0x13, 0xa4, 0x67, 0x87, 0xec, 0x0e, 0x94, 0x27, 0xcf, 0xad, 0x60, 0xe0, 0x3b, 0x93, 0x10, - 0x89, 0xa7, 0x6c, 0x96, 0x26, 0xcf, 0x7b, 0xf8, 0xcd, 0xde, 0x85, 0x92, 0x37, 0x0d, 0x27, 0x9e, - 0xe3, 0x86, 0x92, 0x5e, 0x1a, 0x72, 0x20, 0x87, 0xd3, 0xf0, 0x48, 0x80, 0xcd, 0x08, 0x81, 0xbd, - 0x05, 0xb5, 0x81, 0xe7, 0x9e, 0x3a, 0xfe, 0x98, 0x38, 0x42, 0x6b, 0x01, 0xfb, 0x4a, 0x02, 0x8d, - 0x3f, 0xcc, 0x42, 0xa5, 0xef, 0xdb, 0x6e, 0x60, 0x0f, 0x04, 0x80, 0xad, 0x41, 0x31, 0xbc, 0xb2, - 0xce, 0xed, 0xe0, 0x1c, 0xa7, 0x5a, 0x36, 0x17, 0xc2, 0xab, 0x5d, 0x3b, 0x38, 0x67, 0xab, 0xb0, - 0x40, 0xa3, 0xc4, 0x09, 0xe5, 0x4c, 0xf9, 0x25, 0x0e, 0x88, 0x3b, 0x1d, 0x5b, 0xc9, 0xae, 0x72, - 0x48, 0x31, 0x4d, 0x77, 0x3a, 0xde, 0xd2, 0xe1, 0x62, 0xf2, 0x27, 0x62, 0xbb, 0xa9, 0x03, 0x9a, - 0x5e, 0x19, 0x21, 0xd8, 0xc7, 0x1b, 0x50, 0x95, 0xc5, 0xdc, 0x39, 0x3b, 0xa7, 0x39, 0x16, 0xcc, - 0x0a, 0x21, 0x20, 0x48, 0xb4, 0x10, 0x3a, 0x63, 0x6e, 0x05, 0xa1, 0x3d, 0x9e, 0xc8, 0x29, 0x95, - 0x05, 0xa4, 0x27, 0x00, 0x58, 0xec, 0x85, 0xf6, 0xc8, 0x3a, 0xe5, 0x3c, 0x68, 0x15, 0x65, 0xb1, - 0x80, 0xec, 0x70, 0x1e, 0xb0, 0xaf, 0x41, 0x7d, 0xc8, 0x83, 0xd0, 0x92, 0x9b, 0xc1, 0x83, 0x56, - 0x09, 0x4f, 0x7e, 0x4d, 0x40, 0xdb, 0x0a, 0xc8, 0x5e, 0x03, 0xf0, 0xed, 0x4b, 0x4b, 0x2c, 0x04, - 0xbf, 0x6a, 0x95, 0x69, 0x17, 0x7c, 0xfb, 0xb2, 0x7f, 0xb5, 0xcb, 0xaf, 0x04, 0xd5, 0x3c, 0xe5, - 0xa1, 0xb6, 0x68, 0x81, 0xa4, 0x4e, 0x63, 0x0f, 0x98, 0x06, 0xde, 0xe6, 0xa1, 0xed, 0x8c, 0x02, - 0xf6, 0x01, 0x54, 0x43, 0x0d, 0x19, 0xd9, 0x60, 0x25, 0x22, 0x21, 0xad, 0x82, 0x99, 0xc0, 0x33, - 0xce, 0xa1, 0xb4, 0xc3, 0xf9, 0x9e, 0x33, 0x76, 0x42, 0xb6, 0x0a, 0x85, 0x53, 0xe7, 0x8a, 0x13, - 0xb1, 0xe7, 0x76, 0x6f, 0x99, 0xf4, 0xc9, 0xee, 0x01, 0xe0, 0x1f, 0xd6, 0x38, 0xa2, 0xa6, 0xdd, - 0x5b, 0x66, 0x19, 0x61, 0xfb, 0x81, 0x1d, 0xb2, 0x75, 0x28, 0x4e, 0xb8, 0x3f, 0xe0, 0x6a, 0xdf, - 0x76, 0x6f, 0x99, 0x0a, 0xb0, 0x59, 0x84, 0xc2, 0x48, 0xb4, 0x6e, 0xfc, 0x71, 0x01, 0x2a, 0x3d, - 0xee, 0x46, 0xa7, 0x8c, 0x41, 0x5e, 0x2c, 0x88, 0x3c, 0x59, 0xf8, 0x37, 0x7b, 0x13, 0x2a, 0xb8, - 0x74, 0x41, 0xe8, 0x3b, 0xee, 0x19, 0x51, 0xf5, 0x66, 0xb6, 0x95, 0x31, 0x41, 0x80, 0x7b, 0x08, - 0x65, 0x4d, 0xc8, 0xd9, 0x63, 0x45, 0xd5, 0xe2, 0x4f, 0x76, 0x1b, 0x4a, 0xf6, 0x38, 0xa4, 0xe1, - 0x55, 0x11, 0x5c, 0xb4, 0xc7, 0x21, 0x0e, 0xed, 0x0d, 0xa8, 0x4e, 0xec, 0xeb, 0xb1, 0x38, 0xcb, - 0x11, 0x39, 0x54, 0xcd, 0x8a, 0x84, 0x21, 0x41, 0x3c, 0x81, 0x25, 0x1d, 0x45, 0x75, 0x5e, 0x88, - 0x3a, 0x5f, 0xd4, 0xb0, 0xe5, 0x18, 0xde, 0x81, 0x86, 0xaa, 0xe3, 0xd3, 0x7c, 0x90, 0x4c, 0xca, - 0x66, 0x5d, 0x82, 0xd5, 0x2c, 0x1f, 0x40, 0xf3, 0xd4, 0x71, 0xed, 0x91, 0x35, 0x18, 0x85, 0x17, - 0xd6, 0x90, 0x8f, 0x42, 0x1b, 0x29, 0xa6, 0x60, 0xd6, 0x11, 0xbe, 0x35, 0x0a, 0x2f, 0xb6, 0x05, - 0x94, 0x7d, 0x03, 0xca, 0xa7, 0x9c, 0x5b, 0xb8, 0x58, 0xad, 0x52, 0xe2, 0xe0, 0xa9, 0x1d, 0x32, - 0x4b, 0xa7, 0x6a, 0xaf, 0xbe, 0x01, 0x4d, 0x6f, 0x1a, 0x9e, 0x79, 0x8e, 0x7b, 0x66, 0x09, 0x7e, - 0x67, 0x39, 0x43, 0xa4, 0xa1, 0xfc, 0x66, 0xf6, 0x71, 0xc6, 0xac, 0xab, 0x32, 0xc1, 0x79, 0xba, - 0x43, 0xf6, 0x36, 0x34, 0x46, 0x76, 0x10, 0x5a, 0xe7, 0xde, 0xc4, 0x9a, 0x4c, 0x4f, 0x9e, 0xf3, - 0xeb, 0x56, 0x0d, 0x17, 0xa2, 0x26, 0xc0, 0xbb, 0xde, 0xe4, 0x08, 0x81, 0x82, 0xb2, 0x71, 0x9c, - 0x34, 0x08, 0xb8, 0x9f, 0x79, 0x50, 0x33, 0xcb, 0x02, 0x42, 0x9d, 0x7e, 0x06, 0x4b, 0xb8, 0x3d, - 0x83, 0x69, 0x10, 0x7a, 0x63, 0x4b, 0xf0, 0x6a, 0x7f, 0x18, 0xb4, 0x2a, 0x48, 0x6b, 0x5f, 0x97, - 0x83, 0xd5, 0xf6, 0x78, 0x63, 0x9b, 0x07, 0xe1, 0x16, 0x22, 0x9b, 0x84, 0x2b, 0x2e, 0xf4, 0x6b, - 0x73, 0x71, 0x38, 0x0b, 0x67, 0xdf, 0x00, 0x66, 0x8f, 0x46, 0xde, 0xa5, 0x15, 0xf0, 0xd1, 0xa9, - 0x25, 0x17, 0xb1, 0x55, 0xbf, 0x9f, 0x79, 0x50, 0x32, 0x9b, 0x58, 0xd2, 0xe3, 0xa3, 0xd3, 0x23, - 0x82, 0xb3, 0x0f, 0x00, 0x0f, 0x93, 0x75, 0xca, 0xed, 0x70, 0xea, 0xf3, 0xa0, 0xd5, 0xb8, 0x9f, - 0x7b, 0x50, 0x7f, 0xb2, 0x18, 0xad, 0x17, 0x82, 0x37, 0x9d, 0xd0, 0xac, 0x0a, 0x3c, 0xf9, 0x1d, - 0xac, 0x6f, 0xc3, 0x6a, 0xfa, 0x90, 0x04, 0x51, 0x89, 0x55, 0x11, 0xc4, 0x98, 0x37, 0xc5, 0x9f, - 0x6c, 0x19, 0x0a, 0x17, 0xf6, 0x68, 0xca, 0x25, 0x4f, 0xa7, 0x8f, 0x0f, 0xb3, 0xdf, 0xcd, 0x18, - 0x7f, 0x94, 0x81, 0x2a, 0xcd, 0x52, 0xca, 0x22, 0x6f, 0x42, 0x4d, 0x51, 0x03, 0xf7, 0x7d, 0xcf, - 0x97, 0x5c, 0x4d, 0x51, 0x5e, 0x47, 0xc0, 0xc4, 0xad, 0xa2, 0x90, 0x26, 0x3e, 0x77, 0xc6, 0xf6, - 0x99, 0x6a, 0x5a, 0x91, 0xd2, 0x91, 0x04, 0xb3, 0xf7, 0xe2, 0xf6, 0x7c, 0x6f, 0x1a, 0x72, 0x79, - 0xe7, 0x55, 0xe5, 0xf4, 0x4c, 0x01, 0x8b, 0x5a, 0xc7, 0xaf, 0x57, 0xa0, 0x73, 0xe3, 0x77, 0x33, - 0xc0, 0xc4, 0xb0, 0xfb, 0x1e, 0x35, 0x20, 0x29, 0x74, 0xb6, 0x66, 0xe6, 0x95, 0x4f, 0x48, 0xf6, - 0x45, 0x27, 0xc4, 0x80, 0x02, 0x8d, 0x3d, 0x9f, 0x32, 0x76, 0x2a, 0xfa, 0x41, 0xbe, 0x94, 0x6b, - 0xe6, 0x8d, 0xff, 0x9a, 0x83, 0xe5, 0x2d, 0xba, 0xb2, 0xdb, 0x83, 0x01, 0x9f, 0x44, 0x67, 0xe7, - 0x1e, 0x54, 0x5c, 0x6f, 0xc8, 0x15, 0xc5, 0xd2, 0xc0, 0x40, 0x80, 0x34, 0x72, 0x3d, 0xb7, 0x1d, - 0x97, 0x06, 0x4e, 0x8b, 0x59, 0x46, 0x08, 0x0e, 0xfb, 0x6d, 0x68, 0x4c, 0xb8, 0x3b, 0xd4, 0x8f, - 0x08, 0x09, 0x55, 0x35, 0x09, 0x96, 0xa7, 0xe3, 0x1e, 0x54, 0x4e, 0xa7, 0x84, 0x27, 0x18, 0x4b, - 0x1e, 0x69, 0x00, 0x24, 0xa8, 0x4d, 0xfc, 0x65, 0x32, 0x0d, 0xce, 0xb1, 0xb4, 0x80, 0xa5, 0x45, - 0xf1, 0x2d, 0x8a, 0xee, 0x02, 0x0c, 0xa7, 0x41, 0x28, 0x4f, 0xcc, 0x02, 0x16, 0x96, 0x05, 0x84, - 0x4e, 0xcc, 0x37, 0x61, 0x69, 0x6c, 0x5f, 0x59, 0x48, 0x3b, 0x96, 0xe3, 0x5a, 0xa7, 0x23, 0xbc, - 0x73, 0x8a, 0x88, 0xd7, 0x1c, 0xdb, 0x57, 0x9f, 0x88, 0x92, 0xae, 0xbb, 0x83, 0x70, 0xc1, 0x56, - 0x94, 0xb8, 0xe3, 0xf3, 0x80, 0xfb, 0x17, 0x1c, 0x39, 0x41, 0x3e, 0x92, 0x69, 0x4c, 0x82, 0x8a, - 0x11, 0x8d, 0xc5, 0xbc, 0xc3, 0xd1, 0x80, 0x8e, 0xbd, 0x59, 0x1c, 0x3b, 0xee, 0x6e, 0x38, 0x1a, - 0x88, 0x7b, 0x45, 0xf0, 0x91, 0x09, 0xf7, 0xad, 0xe7, 0x97, 0x78, 0x86, 0xf3, 0xc8, 0x37, 0x8e, - 0xb8, 0xff, 0xec, 0x52, 0x5c, 0xfd, 0x83, 0x00, 0x19, 0x91, 0x7d, 0xdd, 0xaa, 0xe0, 0x01, 0x2f, - 0x0d, 0x02, 0xc1, 0x82, 0xec, 0x6b, 0x71, 0x08, 0xc5, 0x68, 0x6d, 0xdc, 0x05, 0x3e, 0xc4, 0xe6, - 0x03, 0xe4, 0xa8, 0x35, 0x1c, 0x6c, 0x5b, 0x16, 0x88, 0x7e, 0x02, 0x41, 0xf5, 0x6a, 0xb0, 0xa7, - 0x23, 0xfb, 0x2c, 0x40, 0x96, 0x52, 0x33, 0xab, 0x12, 0xb8, 0x23, 0x60, 0xc6, 0xa7, 0x24, 0x64, - 0x69, 0x7b, 0x2b, 0xcf, 0x8c, 0xb8, 0xea, 0x11, 0x82, 0xfb, 0x5a, 0x32, 0xe5, 0x57, 0xda, 0xa6, - 0x65, 0x53, 0x36, 0xcd, 0xf8, 0xfd, 0x0c, 0x54, 0x65, 0xcb, 0x28, 0x94, 0xb0, 0x0d, 0x60, 0x6a, - 0x17, 0xc3, 0x2b, 0x67, 0x68, 0x9d, 0x5c, 0x87, 0x3c, 0x20, 0xa2, 0xd9, 0xbd, 0x65, 0x36, 0x65, - 0x59, 0xff, 0xca, 0x19, 0x6e, 0x8a, 0x12, 0xf6, 0x10, 0x9a, 0x09, 0xfc, 0x20, 0xf4, 0x89, 0xa2, - 0x77, 0x6f, 0x99, 0x75, 0x0d, 0xbb, 0x17, 0xfa, 0xe2, 0x8c, 0x08, 0x91, 0x67, 0x1a, 0x5a, 0x8e, - 0x3b, 0xe4, 0x57, 0x48, 0x46, 0x35, 0xb3, 0x42, 0xb0, 0xae, 0x00, 0x6d, 0xd6, 0xa1, 0xaa, 0x37, - 0x67, 0x9c, 0x41, 0x49, 0xc9, 0x4b, 0x28, 0x30, 0xcc, 0x0c, 0xc9, 0x2c, 0x87, 0xd1, 0x48, 0x6e, - 0x43, 0x29, 0x39, 0x02, 0xb3, 0x18, 0xbe, 0x72, 0xc7, 0xc6, 0xf7, 0xa0, 0xb9, 0x27, 0x88, 0xc7, - 0x15, 0xc4, 0x2a, 0xe5, 0xbf, 0x55, 0x58, 0xd0, 0x0e, 0x4d, 0xd9, 0x94, 0x5f, 0xe2, 0xce, 0x3d, - 0xf7, 0x82, 0x50, 0xf6, 0x82, 0x7f, 0x1b, 0x7f, 0x9c, 0x01, 0xd6, 0x09, 0x42, 0x67, 0x6c, 0x87, - 0x7c, 0x87, 0x47, 0x6c, 0xe1, 0x10, 0xaa, 0xa2, 0xb5, 0xbe, 0xd7, 0x26, 0x81, 0x8c, 0x04, 0x8a, - 0x77, 0xe5, 0x31, 0x9e, 0xaf, 0xb0, 0xa1, 0x63, 0x13, 0x9b, 0x4f, 0x34, 0x20, 0x4e, 0x59, 0x68, - 0xfb, 0x67, 0x3c, 0x44, 0x31, 0x4e, 0xca, 0xfb, 0x40, 0x20, 0x21, 0xc0, 0xad, 0xff, 0x1a, 0x2c, - 0xce, 0xb5, 0xa1, 0xf3, 0xe5, 0x72, 0x0a, 0x5f, 0xce, 0xe9, 0x7c, 0xd9, 0x82, 0xa5, 0xc4, 0xb8, - 0x24, 0xa5, 0xad, 0x41, 0x51, 0x1c, 0x08, 0x21, 0x1c, 0x64, 0x48, 0xaa, 0x3c, 0xe5, 0x5c, 0x88, - 0xc1, 0x8f, 0x60, 0xf9, 0x94, 0x73, 0xdf, 0x0e, 0xb1, 0x10, 0x4f, 0x8c, 0xd8, 0x21, 0xd9, 0xf0, - 0xa2, 0x2c, 0xeb, 0xd9, 0xe1, 0x11, 0xf7, 0xc5, 0x4e, 0x19, 0xff, 0x3d, 0x03, 0x0d, 0xc1, 0x41, - 0xf7, 0x6d, 0xf7, 0x5a, 0xad, 0xd3, 0x5e, 0xea, 0x3a, 0x3d, 0xd0, 0x2e, 0x43, 0x0d, 0xfb, 0xcb, - 0x2e, 0x52, 0x6e, 0x76, 0x91, 0xd8, 0x7d, 0xa8, 0x26, 0xc6, 0x5a, 0xc0, 0xb1, 0x42, 0x10, 0x0d, - 0xf2, 0x17, 0x5f, 0xc6, 0xb7, 0xa1, 0x19, 0x0f, 0x5b, 0xae, 0x21, 0x83, 0xbc, 0x20, 0x49, 0xd9, - 0x00, 0xfe, 0x6d, 0xfc, 0x93, 0x0c, 0x21, 0x6e, 0x79, 0x4e, 0x24, 0x9d, 0x0a, 0x44, 0x21, 0xf7, - 0x2a, 0x44, 0xf1, 0xf7, 0x8d, 0x52, 0xfd, 0x2f, 0x3e, 0x59, 0x71, 0x74, 0x02, 0xee, 0x0e, 0x2d, - 0x7b, 0x34, 0x42, 0xe6, 0x5b, 0x32, 0x8b, 0xe2, 0xbb, 0x3d, 0x1a, 0x19, 0xef, 0xc0, 0xa2, 0x36, - 0xba, 0x17, 0xcc, 0xe3, 0x00, 0xd8, 0x9e, 0x13, 0x84, 0xc7, 0x6e, 0x30, 0xd1, 0x04, 0xb7, 0x3b, - 0x50, 0x16, 0x1c, 0x56, 0x8c, 0x8c, 0x8e, 0x6c, 0xc1, 0x14, 0x2c, 0x57, 0x8c, 0x2b, 0xc0, 0x42, - 0xfb, 0x4a, 0x16, 0x66, 0x65, 0xa1, 0x7d, 0x85, 0x85, 0xc6, 0x77, 0x61, 0x29, 0xd1, 0x9e, 0xec, - 0xfa, 0x0d, 0x28, 0x4c, 0xc3, 0x2b, 0x4f, 0x89, 0xe6, 0x15, 0x49, 0x21, 0x42, 0x01, 0x34, 0xa9, - 0xc4, 0xf8, 0x08, 0x16, 0x0f, 0xf8, 0xa5, 0x3c, 0xc4, 0x6a, 0x20, 0x6f, 0x43, 0xfe, 0x25, 0x4a, - 0x21, 0x96, 0x1b, 0x1b, 0xc0, 0xf4, 0xca, 0xb2, 0x57, 0x4d, 0x47, 0xcc, 0x24, 0x74, 0x44, 0xe3, - 0x6d, 0x60, 0x3d, 0xe7, 0xcc, 0xdd, 0xe7, 0x41, 0x60, 0x9f, 0x45, 0xc7, 0xbe, 0x09, 0xb9, 0x71, - 0x70, 0x26, 0x79, 0x94, 0xf8, 0xd3, 0xf8, 0x16, 0x2c, 0x25, 0xf0, 0x64, 0xc3, 0xaf, 0x41, 0x39, - 0x70, 0xce, 0x5c, 0x14, 0xac, 0x64, 0xd3, 0x31, 0xc0, 0xd8, 0x81, 0xe5, 0x4f, 0xb8, 0xef, 0x9c, - 0x5e, 0xbf, 0xac, 0xf9, 0x64, 0x3b, 0xd9, 0xd9, 0x76, 0x3a, 0xb0, 0x32, 0xd3, 0x8e, 0xec, 0x9e, - 0xc8, 0x57, 0xee, 0x64, 0xc9, 0xa4, 0x0f, 0x8d, 0xef, 0x65, 0x75, 0xbe, 0x67, 0x1c, 0x03, 0xdb, - 0xf2, 0x5c, 0x97, 0x0f, 0xc2, 0x23, 0xce, 0xfd, 0xd8, 0x4a, 0x15, 0xd3, 0x6a, 0xe5, 0xc9, 0x9a, - 0x5c, 0xd9, 0x59, 0x66, 0x2a, 0x89, 0x98, 0x41, 0x7e, 0xc2, 0xfd, 0x31, 0x36, 0x5c, 0x32, 0xf1, - 0x6f, 0x63, 0x05, 0x96, 0x12, 0xcd, 0x4a, 0xbd, 0xfe, 0x31, 0xac, 0x6c, 0x3b, 0xc1, 0x60, 0xbe, - 0xc3, 0x35, 0x28, 0x4e, 0xa6, 0x27, 0x56, 0x92, 0x2f, 0x3f, 0xe3, 0xd7, 0x42, 0xdb, 0x9b, 0xad, - 0x21, 0xdb, 0xfa, 0xeb, 0x19, 0xc8, 0xef, 0xf6, 0xf7, 0xb6, 0xd8, 0x3a, 0x94, 0x1c, 0x77, 0xe0, - 0x8d, 0x85, 0xe0, 0x45, 0x73, 0x8e, 0xbe, 0x6f, 0x3c, 0x60, 0x77, 0xa0, 0x8c, 0xf2, 0x9a, 0x50, - 0x6d, 0xa5, 0xe8, 0x53, 0x12, 0x80, 0x3d, 0x6f, 0xf0, 0x5c, 0xe8, 0xd4, 0xfc, 0x6a, 0xe2, 0xf8, - 0xa8, 0x35, 0x2b, 0x65, 0x38, 0x4f, 0x77, 0x7d, 0x5c, 0x40, 0x1a, 0xb1, 0xf1, 0x0f, 0x4b, 0x50, - 0x94, 0xb7, 0x2d, 0xdd, 0xdc, 0xa1, 0x73, 0xc1, 0xe3, 0x9b, 0x5b, 0x7c, 0x09, 0x79, 0xc0, 0xe7, - 0x63, 0x2f, 0x8c, 0x04, 0x36, 0xda, 0x83, 0x2a, 0x01, 0xa5, 0xc8, 0xa6, 0x09, 0x0d, 0x64, 0x62, - 0xc8, 0x11, 0xd2, 0x40, 0xbf, 0xca, 0xef, 0x40, 0x51, 0xdd, 0xfd, 0xf9, 0x48, 0xa7, 0x59, 0x18, - 0x90, 0xb4, 0xb6, 0x0e, 0xa5, 0x81, 0x3d, 0xb1, 0x07, 0x4e, 0x78, 0x2d, 0x19, 0x42, 0xf4, 0x2d, - 0x5a, 0x1f, 0x79, 0x03, 0x7b, 0x64, 0x9d, 0xd8, 0x23, 0xdb, 0x1d, 0x70, 0xa9, 0xbb, 0x57, 0x11, - 0xb8, 0x49, 0x30, 0xa1, 0x9f, 0xcb, 0x71, 0x2a, 0x2c, 0x52, 0xe1, 0xe5, 0xe8, 0x15, 0x9a, 0x10, - 0x2e, 0xbd, 0xf1, 0xd8, 0x11, 0x5a, 0x06, 0x89, 0x61, 0x39, 0xb3, 0x4c, 0x90, 0x1d, 0x8e, 0xb3, - 0x95, 0xc5, 0x97, 0xb4, 0x74, 0x65, 0xea, 0x8a, 0x80, 0x9f, 0x92, 0x21, 0x61, 0x5e, 0x16, 0xcb, - 0x69, 0xb2, 0xd8, 0xbb, 0xb0, 0x38, 0x75, 0x03, 0x1e, 0x86, 0x23, 0x3e, 0x8c, 0xc6, 0x52, 0x41, - 0xa4, 0x66, 0x54, 0xa0, 0x86, 0xb3, 0x01, 0x4b, 0x64, 0x74, 0x08, 0xec, 0xd0, 0x0b, 0xce, 0x9d, - 0xc0, 0x0a, 0x84, 0x86, 0x44, 0xea, 0xee, 0x22, 0x16, 0xf5, 0x64, 0x49, 0x8f, 0x54, 0xa4, 0xb5, - 0x19, 0x7c, 0x9f, 0x0f, 0xb8, 0x73, 0xc1, 0x87, 0x28, 0xa7, 0xe5, 0xcc, 0x95, 0x44, 0x1d, 0x53, - 0x16, 0xa2, 0xd0, 0x3d, 0x1d, 0x5b, 0xd3, 0xc9, 0xd0, 0x16, 0xc2, 0x4a, 0x9d, 0x84, 0x61, 0x77, - 0x3a, 0x3e, 0x26, 0x08, 0x7b, 0x0c, 0x4a, 0x12, 0x93, 0xf2, 0x61, 0x23, 0xc1, 0xcf, 0x04, 0xb1, - 0x9a, 0x55, 0x89, 0x41, 0x82, 0x62, 0x42, 0xe6, 0x6c, 0xce, 0xc8, 0x9c, 0x2d, 0x28, 0x4e, 0x7c, - 0xe7, 0xc2, 0x0e, 0x79, 0x6b, 0x91, 0x18, 0xb8, 0xfc, 0x14, 0x9c, 0xc1, 0x71, 0x9d, 0xd0, 0xb1, - 0x43, 0xcf, 0x6f, 0x31, 0x2c, 0x8b, 0x01, 0xec, 0x21, 0x2c, 0x22, 0x8d, 0x04, 0xa1, 0x1d, 0x4e, - 0x03, 0x29, 0x81, 0x2e, 0x21, 0x31, 0xa1, 0x0c, 0xdd, 0x43, 0x38, 0x0a, 0xa1, 0xec, 0x5b, 0xb0, - 0x4a, 0x64, 0x81, 0x35, 0xa4, 0x64, 0x8d, 0x02, 0xc1, 0x32, 0x2e, 0xc5, 0x12, 0x96, 0x0a, 0xfa, - 0x96, 0xf2, 0xb5, 0x90, 0x0e, 0xde, 0x87, 0x35, 0x49, 0x26, 0x73, 0xb5, 0x56, 0xb0, 0xd6, 0x32, - 0x15, 0xcf, 0x54, 0xdb, 0x80, 0x45, 0x31, 0x24, 0x67, 0x60, 0xc9, 0xda, 0xe2, 0x24, 0xac, 0x8a, - 0xd1, 0xa3, 0xa6, 0xd4, 0xa0, 0x42, 0x13, 0xcb, 0x9e, 0xf1, 0x6b, 0xf6, 0x3d, 0x68, 0x10, 0xc9, - 0xa0, 0x7a, 0x85, 0x9c, 0x7e, 0x1d, 0x39, 0xfd, 0x8a, 0xb2, 0x70, 0x46, 0xa5, 0xc8, 0xec, 0xeb, - 0x83, 0xc4, 0xb7, 0x38, 0x0e, 0x23, 0xe7, 0x94, 0x87, 0xce, 0x98, 0xb7, 0xd6, 0x88, 0xc0, 0xd4, - 0xb7, 0x38, 0xa9, 0xd3, 0x09, 0x96, 0xb4, 0x88, 0x2f, 0xd0, 0x17, 0xd2, 0xee, 0xc8, 0x0b, 0xb8, - 0x32, 0x51, 0xb5, 0x6e, 0xcb, 0x43, 0x28, 0x80, 0x4a, 0x86, 0x14, 0x82, 0x38, 0x29, 0x3d, 0x91, - 0x21, 0xf1, 0x0e, 0x12, 0x43, 0x8d, 0x74, 0x1f, 0x69, 0x4c, 0x34, 0x7e, 0x9a, 0xa1, 0xfb, 0x4e, - 0xb2, 0x87, 0x40, 0xd3, 0xde, 0x88, 0x31, 0x58, 0x9e, 0x3b, 0xba, 0x96, 0xbc, 0x02, 0x08, 0x74, - 0xe8, 0x8e, 0xf0, 0xb0, 0x3a, 0xae, 0x8e, 0x42, 0xac, 0xb5, 0xaa, 0x80, 0x88, 0x74, 0x0f, 0x2a, - 0x93, 0xe9, 0xc9, 0xc8, 0x19, 0x10, 0x4a, 0x8e, 0x5a, 0x21, 0x10, 0x22, 0x08, 0xf5, 0x95, 0x08, - 0x86, 0x30, 0xf2, 0x88, 0x51, 0x91, 0x30, 0x44, 0x41, 0xd6, 0xcd, 0x7d, 0xe4, 0x16, 0x55, 0x13, - 0xff, 0x36, 0x36, 0x61, 0x39, 0x39, 0x68, 0x79, 0xaf, 0x3c, 0x84, 0x92, 0x64, 0x45, 0xca, 0xae, - 0x51, 0xd7, 0x2c, 0xcd, 0x42, 0x03, 0x8b, 0xca, 0x8d, 0xdf, 0x5e, 0x80, 0x25, 0x09, 0xdd, 0x12, - 0x2b, 0xd7, 0x9b, 0x8e, 0xc7, 0xb6, 0x9f, 0xc2, 0xe3, 0x32, 0x2f, 0xe6, 0x71, 0xd9, 0x39, 0x1e, - 0x97, 0x54, 0x6c, 0x89, 0x45, 0x26, 0x15, 0x5b, 0xb1, 0x55, 0xa4, 0x6b, 0xe8, 0x66, 0xce, 0x9a, - 0x04, 0xf7, 0xc9, 0x9c, 0x3a, 0xc7, 0x91, 0x0b, 0x29, 0x1c, 0x59, 0xe7, 0xa7, 0x0b, 0x33, 0xfc, - 0xf4, 0x0d, 0x20, 0x9a, 0x50, 0xd7, 0x43, 0x91, 0xd4, 0x0f, 0x84, 0x49, 0x5b, 0xe9, 0x3b, 0xd0, - 0x98, 0x65, 0x61, 0xc4, 0x2b, 0xeb, 0x29, 0x0c, 0xcc, 0x19, 0x73, 0xbc, 0x8c, 0x34, 0xe4, 0xb2, - 0x64, 0x60, 0xce, 0x98, 0xef, 0x61, 0x89, 0xc2, 0xef, 0x00, 0x50, 0xdf, 0x78, 0x26, 0x00, 0xcf, - 0xc4, 0xdb, 0xc9, 0xbd, 0xd0, 0x57, 0x7d, 0x43, 0x7c, 0x4c, 0x7d, 0x8e, 0x87, 0xa4, 0x8c, 0x35, - 0xf1, 0x7c, 0x3c, 0x83, 0xba, 0x37, 0xe1, 0xae, 0x15, 0xb3, 0x92, 0x0a, 0x36, 0xf5, 0xd6, 0x0b, - 0x9a, 0xea, 0x2a, 0x5c, 0xb3, 0x26, 0xea, 0x46, 0x9f, 0x6c, 0x9f, 0x16, 0x9e, 0x6b, 0xad, 0x55, - 0xbf, 0x44, 0x6b, 0x75, 0xac, 0x1c, 0x7d, 0x1b, 0x7f, 0x2b, 0x03, 0x15, 0x6d, 0xd8, 0x6c, 0x05, - 0x16, 0xb7, 0x0e, 0x0f, 0x8f, 0x3a, 0x66, 0xbb, 0xdf, 0xfd, 0xa4, 0x63, 0x6d, 0xed, 0x1d, 0xf6, - 0x3a, 0xcd, 0x5b, 0x02, 0xbc, 0x77, 0xb8, 0xd5, 0xde, 0xb3, 0x76, 0x0e, 0xcd, 0x2d, 0x05, 0xce, - 0xb0, 0x55, 0x60, 0x66, 0x67, 0xff, 0xb0, 0xdf, 0x49, 0xc0, 0xb3, 0xac, 0x09, 0xd5, 0x4d, 0xb3, - 0xd3, 0xde, 0xda, 0x95, 0x90, 0x1c, 0x5b, 0x86, 0xe6, 0xce, 0xf1, 0xc1, 0x76, 0xf7, 0xe0, 0xa9, - 0xb5, 0xd5, 0x3e, 0xd8, 0xea, 0xec, 0x75, 0xb6, 0x9b, 0x79, 0x56, 0x83, 0x72, 0x7b, 0xb3, 0x7d, - 0xb0, 0x7d, 0x78, 0xd0, 0xd9, 0x6e, 0x16, 0x8c, 0x5f, 0x81, 0x72, 0x3c, 0xd1, 0x0a, 0x14, 0x8f, - 0x0f, 0x9e, 0x1d, 0x1c, 0x7e, 0x7a, 0xd0, 0xbc, 0xc5, 0xca, 0x50, 0xc0, 0xfe, 0x9b, 0x19, 0x06, - 0xb0, 0x40, 0x7d, 0x36, 0xb3, 0xac, 0x04, 0xf9, 0xcd, 0xc3, 0xfe, 0x6e, 0x33, 0x67, 0xfc, 0x45, - 0x06, 0x56, 0x70, 0xca, 0xc3, 0x59, 0x26, 0x70, 0x1f, 0x2a, 0x03, 0xcf, 0x9b, 0x08, 0x45, 0x2a, - 0x16, 0x18, 0x74, 0x90, 0x38, 0xe0, 0xc4, 0x9b, 0x4f, 0x3d, 0x7f, 0xc0, 0x25, 0x0f, 0x00, 0x04, - 0xed, 0x08, 0x88, 0xa0, 0x41, 0x49, 0xc4, 0x84, 0x41, 0x2c, 0xa0, 0x42, 0x30, 0x42, 0x59, 0x85, - 0x85, 0x13, 0x9f, 0xdb, 0x83, 0x73, 0x79, 0xfa, 0xe5, 0x17, 0xfb, 0x7a, 0xac, 0xe2, 0x0f, 0x04, - 0x4d, 0x8d, 0xf8, 0x10, 0x8f, 0x40, 0xc9, 0x6c, 0x48, 0xf8, 0x96, 0x04, 0x8b, 0xcb, 0xc6, 0x3e, - 0xb1, 0xdd, 0xa1, 0xe7, 0xf2, 0xa1, 0xd4, 0x24, 0x62, 0x80, 0x71, 0x04, 0xab, 0xb3, 0xf3, 0x93, - 0xfc, 0xe2, 0x03, 0x8d, 0x5f, 0x90, 0x60, 0xbf, 0x7e, 0x33, 0x29, 0x68, 0xbc, 0xe3, 0xef, 0xe4, - 0x21, 0x2f, 0x04, 0xbd, 0x1b, 0x65, 0x42, 0x5d, 0x72, 0xcf, 0xcd, 0x79, 0x77, 0xd0, 0x92, 0x40, - 0x12, 0x00, 0x99, 0xab, 0xca, 0x08, 0xc1, 0x9b, 0x3f, 0x2a, 0xf6, 0xf9, 0xe0, 0x42, 0xda, 0xab, - 0xa8, 0xd8, 0xe4, 0x83, 0x0b, 0x54, 0x99, 0xec, 0x90, 0xea, 0xd2, 0x79, 0x2f, 0x06, 0x76, 0x88, - 0x35, 0x65, 0x11, 0xd6, 0x2b, 0x46, 0x45, 0x58, 0xab, 0x05, 0x45, 0xc7, 0x3d, 0xf1, 0xa6, 0xee, - 0x10, 0x8f, 0x77, 0xc9, 0x54, 0x9f, 0xe8, 0x4c, 0x42, 0x4e, 0x24, 0xee, 0x19, 0x3a, 0xcd, 0x25, - 0x01, 0xe8, 0x8b, 0x9b, 0xe6, 0x3d, 0x28, 0x07, 0xd7, 0xee, 0x40, 0x3f, 0xc3, 0xcb, 0x72, 0x7d, - 0xc4, 0xec, 0x37, 0x7a, 0xd7, 0xee, 0x00, 0x4f, 0x6c, 0x29, 0x90, 0x7f, 0xb1, 0xf7, 0xa1, 0x14, - 0x99, 0x75, 0x89, 0x03, 0xdf, 0xd6, 0x6b, 0x28, 0x5b, 0x2e, 0x69, 0xcf, 0x11, 0x2a, 0x7b, 0x04, - 0x0b, 0x68, 0x7b, 0x0d, 0x5a, 0x55, 0xac, 0xa4, 0xc4, 0x79, 0x31, 0x0c, 0xf4, 0xe3, 0xf0, 0x21, - 0xda, 0x61, 0x4d, 0x89, 0xb6, 0xfe, 0x0c, 0x6a, 0x89, 0xb6, 0x74, 0x1d, 0xb9, 0x46, 0x3a, 0xf2, - 0x5b, 0xba, 0x8e, 0x1c, 0xdf, 0x04, 0xb2, 0x9a, 0xae, 0x33, 0xff, 0x1a, 0x94, 0xd4, 0x54, 0xc4, - 0xf9, 0x93, 0x67, 0xc7, 0xea, 0x7d, 0x76, 0xb0, 0xd5, 0xbc, 0xc5, 0x1a, 0x50, 0x69, 0x6f, 0xe1, - 0x91, 0x46, 0x40, 0x46, 0xa0, 0x1c, 0xb5, 0x7b, 0xbd, 0x08, 0x92, 0x35, 0x76, 0xa0, 0x39, 0x3b, - 0x52, 0x41, 0x93, 0xa1, 0x82, 0x49, 0xcb, 0x74, 0x0c, 0x10, 0x1a, 0x10, 0x19, 0x9b, 0x49, 0xcc, - 0xa6, 0x0f, 0xe3, 0x7d, 0x68, 0x8a, 0x7b, 0x4d, 0x2c, 0x55, 0xa0, 0x59, 0x78, 0x47, 0x42, 0x74, - 0xd3, 0xad, 0xd3, 0x25, 0xb3, 0x42, 0x30, 0xec, 0xca, 0xf8, 0x00, 0x16, 0xb5, 0x6a, 0xb1, 0xc6, - 0x2a, 0xee, 0xca, 0x59, 0x8d, 0x15, 0xf5, 0x13, 0x2a, 0x31, 0xd6, 0x60, 0x45, 0x7c, 0x76, 0x2e, - 0xb8, 0x1b, 0xf6, 0xa6, 0x27, 0xe4, 0x52, 0x74, 0x3c, 0x57, 0xe8, 0x2d, 0xe5, 0xa8, 0xe4, 0x66, - 0x22, 0xdf, 0x90, 0xca, 0x6d, 0x16, 0x49, 0x63, 0x5d, 0xeb, 0x01, 0x2b, 0x6e, 0xe0, 0xbf, 0x09, - 0x25, 0xb7, 0x1c, 0x81, 0xc4, 0xb2, 0x1e, 0x75, 0x3a, 0xa6, 0x75, 0x78, 0xb0, 0xd7, 0x3d, 0x10, + // 11387 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0xbd, 0xeb, 0x8f, 0x24, 0xd7, + 0x75, 0x18, 0xbe, 0xfd, 0x9a, 0xee, 0x3e, 0xfd, 0x9c, 0x3b, 0xaf, 0xde, 0x59, 0x2e, 0x77, 0x59, + 0xa4, 0xc8, 0xd5, 0x52, 0x9a, 0x5d, 0xae, 0x44, 0x4a, 0x26, 0x7f, 0x96, 0xd5, 0x33, 0xd3, 0xb3, + 0xd3, 0xda, 0x79, 0xb1, 0xba, 0x87, 0x34, 0xe5, 0x9f, 0x53, 0xaa, 0xe9, 0xbe, 0x33, 0x53, 0xde, + 0xee, 0xaa, 0x66, 0x55, 0xf5, 0x3c, 0x24, 0x30, 0x1f, 0x82, 0xc4, 0x08, 0x82, 0x24, 0x80, 0x91, + 0x38, 0x40, 0x9c, 0x18, 0x09, 0x12, 0x04, 0x41, 0x10, 0xc0, 0x70, 0x20, 0x07, 0x48, 0x80, 0x7c, + 0xf7, 0x97, 0x04, 0x41, 0x60, 0xe7, 0x4b, 0x60, 0x18, 0x70, 0x1e, 0xca, 0xb7, 0xc0, 0x7f, 0x42, + 0x70, 0xcf, 0xb9, 0xb7, 0xea, 0x56, 0x77, 0xcd, 0xee, 0x52, 0x62, 0xf4, 0x65, 0xa6, 0xeb, 0xdc, + 0x73, 0x9f, 0x75, 0xee, 0xb9, 0xe7, 0x79, 0x0b, 0xca, 0xfe, 0x64, 0xb0, 0x31, 0xf1, 0xbd, 0xd0, + 0x63, 0x85, 0x91, 0xeb, 0x4f, 0x06, 0xeb, 0xaf, 0x9d, 0x79, 0xde, 0xd9, 0x88, 0x3f, 0xb2, 0x27, + 0xce, 0x23, 0xdb, 0x75, 0xbd, 0xd0, 0x0e, 0x1d, 0xcf, 0x0d, 0x08, 0xc9, 0xf8, 0x11, 0xd4, 0x9f, + 0x72, 0xb7, 0xc7, 0xf9, 0xd0, 0xe4, 0x9f, 0x4f, 0x79, 0x10, 0xb2, 0x77, 0x61, 0xd1, 0xe6, 0x3f, + 0xe6, 0x7c, 0x68, 0x4d, 0xec, 0x20, 0x98, 0x9c, 0xfb, 0x76, 0xc0, 0x5b, 0x99, 0xfb, 0x99, 0x07, + 0x55, 0xb3, 0x49, 0x05, 0x47, 0x11, 0x9c, 0xbd, 0x01, 0xd5, 0x40, 0xa0, 0x72, 0x37, 0xf4, 0xbd, + 0xc9, 0x75, 0x2b, 0x8b, 0x78, 0x15, 0x01, 0xeb, 0x10, 0xc8, 0x18, 0x41, 0x23, 0xea, 0x21, 0x98, + 0x78, 0x6e, 0xc0, 0xd9, 0x63, 0x58, 0x1e, 0x38, 0x93, 0x73, 0xee, 0x5b, 0x58, 0x79, 0xec, 0xf2, + 0xb1, 0xe7, 0x3a, 0x83, 0x56, 0xe6, 0x7e, 0xee, 0x41, 0xd9, 0x64, 0x54, 0x26, 0x6a, 0xec, 0xcb, + 0x12, 0xf6, 0x0e, 0x34, 0xb8, 0x4b, 0x70, 0x3e, 0xc4, 0x5a, 0xb2, 0xab, 0x7a, 0x0c, 0x16, 0x15, + 0x8c, 0xbf, 0x99, 0x85, 0xc5, 0xae, 0xeb, 0x84, 0x9f, 0xda, 0xa3, 0x11, 0x0f, 0xd5, 0x9c, 0xde, + 0x81, 0xc6, 0x25, 0x02, 0x70, 0x4e, 0x97, 0x9e, 0x3f, 0x94, 0x33, 0xaa, 0x13, 0xf8, 0x48, 0x42, + 0x6f, 0x1c, 0x59, 0xf6, 0xc6, 0x91, 0xa5, 0x2e, 0x57, 0xee, 0x86, 0xe5, 0x7a, 0x07, 0x1a, 0x3e, + 0x1f, 0x78, 0x17, 0xdc, 0xbf, 0xb6, 0x2e, 0x1d, 0x77, 0xe8, 0x5d, 0xb6, 0xf2, 0xf7, 0x33, 0x0f, + 0x0a, 0x66, 0x5d, 0x81, 0x3f, 0x45, 0x28, 0xdb, 0x84, 0xc6, 0xe0, 0xdc, 0x76, 0x5d, 0x3e, 0xb2, + 0x4e, 0xec, 0xc1, 0xf3, 0xe9, 0x24, 0x68, 0x15, 0xee, 0x67, 0x1e, 0x54, 0x9e, 0xdc, 0xde, 0xc0, + 0xb7, 0xba, 0xb1, 0x75, 0x6e, 0xbb, 0x9b, 0x58, 0xd2, 0x73, 0xed, 0x49, 0x70, 0xee, 0x85, 0x66, + 0x5d, 0xd6, 0x20, 0x70, 0x60, 0x2c, 0x03, 0xd3, 0x57, 0x82, 0xd6, 0xde, 0xf8, 0xd7, 0x19, 0x58, + 0x3a, 0x76, 0x47, 0xde, 0xe0, 0xf9, 0xcf, 0xb9, 0x44, 0x29, 0x73, 0xc8, 0xbe, 0xea, 0x1c, 0x72, + 0x5f, 0x76, 0x0e, 0xab, 0xb0, 0x9c, 0x1c, 0xac, 0x9c, 0x05, 0x87, 0x15, 0x51, 0xfb, 0x8c, 0xab, + 0x61, 0xa9, 0x69, 0x7c, 0x1d, 0x9a, 0x83, 0xa9, 0xef, 0x73, 0x77, 0x6e, 0x1e, 0x0d, 0x09, 0x8f, + 0x26, 0xf2, 0x06, 0x54, 0x5d, 0x7e, 0x19, 0xa3, 0x49, 0xda, 0x75, 0xf9, 0xa5, 0x42, 0x31, 0x5a, + 0xb0, 0x3a, 0xdb, 0x8d, 0x1c, 0xc0, 0xcf, 0x32, 0x90, 0x3f, 0x0e, 0xaf, 0x3c, 0xf6, 0x3e, 0x54, + 0xed, 0xe1, 0xd0, 0xe7, 0x41, 0x60, 0x85, 0xd7, 0x13, 0xda, 0x29, 0xf5, 0x27, 0x4c, 0x4e, 0xb1, + 0x4d, 0x45, 0xfd, 0xeb, 0x09, 0x37, 0x2b, 0x76, 0xfc, 0xc0, 0x5a, 0x50, 0x94, 0x8f, 0xd8, 0x6f, + 0xd9, 0x54, 0x8f, 0xec, 0x2e, 0x80, 0x3d, 0xf6, 0xa6, 0x6e, 0x68, 0x05, 0x76, 0x88, 0x2b, 0x96, + 0x33, 0xcb, 0x04, 0xe9, 0xd9, 0x21, 0xbb, 0x03, 0xe5, 0xc9, 0x73, 0x2b, 0x18, 0xf8, 0xce, 0x24, + 0x44, 0xe2, 0x29, 0x9b, 0xa5, 0xc9, 0xf3, 0x1e, 0x3e, 0xb3, 0x77, 0xa1, 0xe4, 0x4d, 0xc3, 0x89, + 0xe7, 0xb8, 0xa1, 0xa4, 0x97, 0x86, 0x1c, 0xc8, 0xe1, 0x34, 0x3c, 0x12, 0x60, 0x33, 0x42, 0x60, + 0x6f, 0x41, 0x6d, 0xe0, 0xb9, 0xa7, 0x8e, 0x3f, 0x26, 0x8e, 0xd0, 0x5a, 0xc0, 0xbe, 0x92, 0x40, + 0xe3, 0x0f, 0xb3, 0x50, 0xe9, 0xfb, 0xb6, 0x1b, 0xd8, 0x03, 0x01, 0x60, 0x6b, 0x50, 0x0c, 0xaf, + 0xac, 0x73, 0x3b, 0x38, 0xc7, 0xa9, 0x96, 0xcd, 0x85, 0xf0, 0x6a, 0xd7, 0x0e, 0xce, 0xd9, 0x2a, + 0x2c, 0xd0, 0x28, 0x71, 0x42, 0x39, 0x53, 0x3e, 0x89, 0x0d, 0xe2, 0x4e, 0xc7, 0x56, 0xb2, 0xab, + 0x1c, 0x52, 0x4c, 0xd3, 0x9d, 0x8e, 0xb7, 0x74, 0xb8, 0x98, 0xfc, 0x89, 0x78, 0xdd, 0xd4, 0x01, + 0x4d, 0xaf, 0x8c, 0x10, 0xec, 0xe3, 0x0d, 0xa8, 0xca, 0x62, 0xee, 0x9c, 0x9d, 0xd3, 0x1c, 0x0b, + 0x66, 0x85, 0x10, 0x10, 0x24, 0x5a, 0x08, 0x9d, 0x31, 0xb7, 0x82, 0xd0, 0x1e, 0x4f, 0xe4, 0x94, + 0xca, 0x02, 0xd2, 0x13, 0x00, 0x2c, 0xf6, 0x42, 0x7b, 0x64, 0x9d, 0x72, 0x1e, 0xb4, 0x8a, 0xb2, + 0x58, 0x40, 0x76, 0x38, 0x0f, 0xd8, 0xd7, 0xa0, 0x3e, 0xe4, 0x41, 0x68, 0xc9, 0x97, 0xc1, 0x83, + 0x56, 0x09, 0x77, 0x7e, 0x4d, 0x40, 0xdb, 0x0a, 0xc8, 0x5e, 0x03, 0xf0, 0xed, 0x4b, 0x4b, 0x2c, + 0x04, 0xbf, 0x6a, 0x95, 0xe9, 0x2d, 0xf8, 0xf6, 0x65, 0xff, 0x6a, 0x97, 0x5f, 0x09, 0xaa, 0x79, + 0xca, 0x43, 0x6d, 0xd1, 0x02, 0x49, 0x9d, 0xc6, 0x1e, 0x30, 0x0d, 0xbc, 0xcd, 0x43, 0xdb, 0x19, + 0x05, 0xec, 0x03, 0xa8, 0x86, 0x1a, 0x32, 0xb2, 0xc1, 0x4a, 0x44, 0x42, 0x5a, 0x05, 0x33, 0x81, + 0x67, 0x9c, 0x43, 0x69, 0x87, 0xf3, 0x3d, 0x67, 0xec, 0x84, 0x6c, 0x15, 0x0a, 0xa7, 0xce, 0x15, + 0x27, 0x62, 0xcf, 0xed, 0xde, 0x32, 0xe9, 0x91, 0xdd, 0x03, 0xc0, 0x1f, 0xd6, 0x38, 0xa2, 0xa6, + 0xdd, 0x5b, 0x66, 0x19, 0x61, 0xfb, 0x81, 0x1d, 0xb2, 0x75, 0x28, 0x4e, 0xb8, 0x3f, 0xe0, 0xea, + 0xbd, 0xed, 0xde, 0x32, 0x15, 0x60, 0xb3, 0x08, 0x85, 0x91, 0x68, 0xdd, 0xf8, 0xe3, 0x02, 0x54, + 0x7a, 0xdc, 0x8d, 0x76, 0x19, 0x83, 0xbc, 0x58, 0x10, 0xb9, 0xb3, 0xf0, 0x37, 0x7b, 0x13, 0x2a, + 0xb8, 0x74, 0x41, 0xe8, 0x3b, 0xee, 0x19, 0x51, 0xf5, 0x66, 0xb6, 0x95, 0x31, 0x41, 0x80, 0x7b, + 0x08, 0x65, 0x4d, 0xc8, 0xd9, 0x63, 0x45, 0xd5, 0xe2, 0x27, 0xbb, 0x0d, 0x25, 0x7b, 0x1c, 0xd2, + 0xf0, 0xaa, 0x08, 0x2e, 0xda, 0xe3, 0x10, 0x87, 0xf6, 0x06, 0x54, 0x27, 0xf6, 0xf5, 0x58, 0xec, + 0xe5, 0x88, 0x1c, 0xaa, 0x66, 0x45, 0xc2, 0x90, 0x20, 0x9e, 0xc0, 0x92, 0x8e, 0xa2, 0x3a, 0x2f, + 0x44, 0x9d, 0x2f, 0x6a, 0xd8, 0x72, 0x0c, 0xef, 0x40, 0x43, 0xd5, 0xf1, 0x69, 0x3e, 0x48, 0x26, + 0x65, 0xb3, 0x2e, 0xc1, 0x6a, 0x96, 0x0f, 0xa0, 0x79, 0xea, 0xb8, 0xf6, 0xc8, 0x1a, 0x8c, 0xc2, + 0x0b, 0x6b, 0xc8, 0x47, 0xa1, 0x8d, 0x14, 0x53, 0x30, 0xeb, 0x08, 0xdf, 0x1a, 0x85, 0x17, 0xdb, + 0x02, 0xca, 0xbe, 0x01, 0xe5, 0x53, 0xce, 0x2d, 0x5c, 0xac, 0x56, 0x29, 0xb1, 0xf1, 0xd4, 0x1b, + 0x32, 0x4b, 0xa7, 0xea, 0x5d, 0x7d, 0x03, 0x9a, 0xde, 0x34, 0x3c, 0xf3, 0x1c, 0xf7, 0xcc, 0x12, + 0xfc, 0xce, 0x72, 0x86, 0x48, 0x43, 0xf9, 0xcd, 0xec, 0xe3, 0x8c, 0x59, 0x57, 0x65, 0x82, 0xf3, + 0x74, 0x87, 0xec, 0x6d, 0x68, 0x8c, 0xec, 0x20, 0xb4, 0xce, 0xbd, 0x89, 0x35, 0x99, 0x9e, 0x3c, + 0xe7, 0xd7, 0xad, 0x1a, 0x2e, 0x44, 0x4d, 0x80, 0x77, 0xbd, 0xc9, 0x11, 0x02, 0x05, 0x65, 0xe3, + 0x38, 0x69, 0x10, 0x70, 0x3f, 0xf3, 0xa0, 0x66, 0x96, 0x05, 0x84, 0x3a, 0xfd, 0x0c, 0x96, 0xf0, + 0xf5, 0x0c, 0xa6, 0x41, 0xe8, 0x8d, 0x2d, 0xc1, 0xab, 0xfd, 0x61, 0xd0, 0xaa, 0x20, 0xad, 0x7d, + 0x5d, 0x0e, 0x56, 0x7b, 0xc7, 0x1b, 0xdb, 0x3c, 0x08, 0xb7, 0x10, 0xd9, 0x24, 0x5c, 0x71, 0xa0, + 0x5f, 0x9b, 0x8b, 0xc3, 0x59, 0x38, 0xfb, 0x06, 0x30, 0x7b, 0x34, 0xf2, 0x2e, 0xad, 0x80, 0x8f, + 0x4e, 0x2d, 0xb9, 0x88, 0xad, 0xfa, 0xfd, 0xcc, 0x83, 0x92, 0xd9, 0xc4, 0x92, 0x1e, 0x1f, 0x9d, + 0x1e, 0x11, 0x9c, 0x7d, 0x00, 0xb8, 0x99, 0xac, 0x53, 0x6e, 0x87, 0x53, 0x9f, 0x07, 0xad, 0xc6, + 0xfd, 0xdc, 0x83, 0xfa, 0x93, 0xc5, 0x68, 0xbd, 0x10, 0xbc, 0xe9, 0x84, 0x66, 0x55, 0xe0, 0xc9, + 0xe7, 0x60, 0x7d, 0x1b, 0x56, 0xd3, 0x87, 0x24, 0x88, 0x4a, 0xac, 0x8a, 0x20, 0xc6, 0xbc, 0x29, + 0x7e, 0xb2, 0x65, 0x28, 0x5c, 0xd8, 0xa3, 0x29, 0x97, 0x3c, 0x9d, 0x1e, 0x3e, 0xcc, 0x7e, 0x37, + 0x63, 0xfc, 0x51, 0x06, 0xaa, 0x34, 0x4b, 0x29, 0x8b, 0xbc, 0x09, 0x35, 0x45, 0x0d, 0xdc, 0xf7, + 0x3d, 0x5f, 0x72, 0x35, 0x45, 0x79, 0x1d, 0x01, 0x13, 0xa7, 0x8a, 0x42, 0x9a, 0xf8, 0xdc, 0x19, + 0xdb, 0x67, 0xaa, 0x69, 0x45, 0x4a, 0x47, 0x12, 0xcc, 0xde, 0x8b, 0xdb, 0xf3, 0xbd, 0x69, 0xc8, + 0xe5, 0x99, 0x57, 0x95, 0xd3, 0x33, 0x05, 0x2c, 0x6a, 0x1d, 0x9f, 0x5e, 0x81, 0xce, 0x8d, 0xdf, + 0xcd, 0x00, 0x13, 0xc3, 0xee, 0x7b, 0xd4, 0x80, 0xa4, 0xd0, 0xd9, 0x9a, 0x99, 0x57, 0xde, 0x21, + 0xd9, 0x17, 0xed, 0x10, 0x03, 0x0a, 0x34, 0xf6, 0x7c, 0xca, 0xd8, 0xa9, 0xe8, 0x07, 0xf9, 0x52, + 0xae, 0x99, 0x37, 0xfe, 0x5b, 0x0e, 0x96, 0xb7, 0xe8, 0xc8, 0x6e, 0x0f, 0x06, 0x7c, 0x12, 0xed, + 0x9d, 0x7b, 0x50, 0x71, 0xbd, 0x21, 0x57, 0x14, 0x4b, 0x03, 0x03, 0x01, 0xd2, 0xc8, 0xf5, 0xdc, + 0x76, 0x5c, 0x1a, 0x38, 0x2d, 0x66, 0x19, 0x21, 0x38, 0xec, 0xb7, 0xa1, 0x31, 0xe1, 0xee, 0x50, + 0xdf, 0x22, 0x24, 0x54, 0xd5, 0x24, 0x58, 0xee, 0x8e, 0x7b, 0x50, 0x39, 0x9d, 0x12, 0x9e, 0x60, + 0x2c, 0x79, 0xa4, 0x01, 0x90, 0xa0, 0x36, 0xf1, 0x97, 0xc9, 0x34, 0x38, 0xc7, 0xd2, 0x02, 0x96, + 0x16, 0xc5, 0xb3, 0x28, 0xba, 0x0b, 0x30, 0x9c, 0x06, 0xa1, 0xdc, 0x31, 0x0b, 0x58, 0x58, 0x16, + 0x10, 0xda, 0x31, 0xdf, 0x84, 0xa5, 0xb1, 0x7d, 0x65, 0x21, 0xed, 0x58, 0x8e, 0x6b, 0x9d, 0x8e, + 0xf0, 0xcc, 0x29, 0x22, 0x5e, 0x73, 0x6c, 0x5f, 0x7d, 0x22, 0x4a, 0xba, 0xee, 0x0e, 0xc2, 0x05, + 0x5b, 0x51, 0xe2, 0x8e, 0xcf, 0x03, 0xee, 0x5f, 0x70, 0xe4, 0x04, 0xf9, 0x48, 0xa6, 0x31, 0x09, + 0x2a, 0x46, 0x34, 0x16, 0xf3, 0x0e, 0x47, 0x03, 0xda, 0xf6, 0x66, 0x71, 0xec, 0xb8, 0xbb, 0xe1, + 0x68, 0x20, 0xce, 0x15, 0xc1, 0x47, 0x26, 0xdc, 0xb7, 0x9e, 0x5f, 0xe2, 0x1e, 0xce, 0x23, 0xdf, + 0x38, 0xe2, 0xfe, 0xb3, 0x4b, 0x71, 0xf4, 0x0f, 0x02, 0x64, 0x44, 0xf6, 0x75, 0xab, 0x82, 0x1b, + 0xbc, 0x34, 0x08, 0x04, 0x0b, 0xb2, 0xaf, 0xc5, 0x26, 0x14, 0xa3, 0xb5, 0xf1, 0x2d, 0xf0, 0x21, + 0x36, 0x1f, 0x20, 0x47, 0xad, 0xe1, 0x60, 0xdb, 0xb2, 0x40, 0xf4, 0x13, 0x08, 0xaa, 0x57, 0x83, + 0x3d, 0x1d, 0xd9, 0x67, 0x01, 0xb2, 0x94, 0x9a, 0x59, 0x95, 0xc0, 0x1d, 0x01, 0x33, 0x3e, 0x25, + 0x21, 0x4b, 0x7b, 0xb7, 0x72, 0xcf, 0x88, 0xa3, 0x1e, 0x21, 0xf8, 0x5e, 0x4b, 0xa6, 0x7c, 0x4a, + 0x7b, 0x69, 0xd9, 0x94, 0x97, 0x66, 0xfc, 0x7e, 0x06, 0xaa, 0xb2, 0x65, 0x14, 0x4a, 0xd8, 0x06, + 0x30, 0xf5, 0x16, 0xc3, 0x2b, 0x67, 0x68, 0x9d, 0x5c, 0x87, 0x3c, 0x20, 0xa2, 0xd9, 0xbd, 0x65, + 0x36, 0x65, 0x59, 0xff, 0xca, 0x19, 0x6e, 0x8a, 0x12, 0xf6, 0x10, 0x9a, 0x09, 0xfc, 0x20, 0xf4, + 0x89, 0xa2, 0x77, 0x6f, 0x99, 0x75, 0x0d, 0xbb, 0x17, 0xfa, 0x62, 0x8f, 0x08, 0x91, 0x67, 0x1a, + 0x5a, 0x8e, 0x3b, 0xe4, 0x57, 0x48, 0x46, 0x35, 0xb3, 0x42, 0xb0, 0xae, 0x00, 0x6d, 0xd6, 0xa1, + 0xaa, 0x37, 0x67, 0x9c, 0x41, 0x49, 0xc9, 0x4b, 0x28, 0x30, 0xcc, 0x0c, 0xc9, 0x2c, 0x87, 0xd1, + 0x48, 0x6e, 0x43, 0x29, 0x39, 0x02, 0xb3, 0x18, 0xbe, 0x72, 0xc7, 0xc6, 0xf7, 0xa0, 0xb9, 0x27, + 0x88, 0xc7, 0x15, 0xc4, 0x2a, 0xe5, 0xbf, 0x55, 0x58, 0xd0, 0x36, 0x4d, 0xd9, 0x94, 0x4f, 0xe2, + 0xcc, 0x3d, 0xf7, 0x82, 0x50, 0xf6, 0x82, 0xbf, 0x8d, 0x3f, 0xce, 0x00, 0xeb, 0x04, 0xa1, 0x33, + 0xb6, 0x43, 0xbe, 0xc3, 0x23, 0xb6, 0x70, 0x08, 0x55, 0xd1, 0x5a, 0xdf, 0x6b, 0x93, 0x40, 0x46, + 0x02, 0xc5, 0xbb, 0x72, 0x1b, 0xcf, 0x57, 0xd8, 0xd0, 0xb1, 0x89, 0xcd, 0x27, 0x1a, 0x10, 0xbb, + 0x2c, 0xb4, 0xfd, 0x33, 0x1e, 0xa2, 0x18, 0x27, 0xe5, 0x7d, 0x20, 0x90, 0x10, 0xe0, 0xd6, 0x7f, + 0x0d, 0x16, 0xe7, 0xda, 0xd0, 0xf9, 0x72, 0x39, 0x85, 0x2f, 0xe7, 0x74, 0xbe, 0x6c, 0xc1, 0x52, + 0x62, 0x5c, 0x92, 0xd2, 0xd6, 0xa0, 0x28, 0x36, 0x84, 0x10, 0x0e, 0x32, 0x24, 0x55, 0x9e, 0x72, + 0x2e, 0xc4, 0xe0, 0x47, 0xb0, 0x7c, 0xca, 0xb9, 0x6f, 0x87, 0x58, 0x88, 0x3b, 0x46, 0xbc, 0x21, + 0xd9, 0xf0, 0xa2, 0x2c, 0xeb, 0xd9, 0xe1, 0x11, 0xf7, 0xc5, 0x9b, 0x32, 0xfe, 0x47, 0x06, 0x1a, + 0x82, 0x83, 0xee, 0xdb, 0xee, 0xb5, 0x5a, 0xa7, 0xbd, 0xd4, 0x75, 0x7a, 0xa0, 0x1d, 0x86, 0x1a, + 0xf6, 0x97, 0x5d, 0xa4, 0xdc, 0xec, 0x22, 0xb1, 0xfb, 0x50, 0x4d, 0x8c, 0xb5, 0x80, 0x63, 0x85, + 0x20, 0x1a, 0xe4, 0x2f, 0xbe, 0x8c, 0x6f, 0x43, 0x33, 0x1e, 0xb6, 0x5c, 0x43, 0x06, 0x79, 0x41, + 0x92, 0xb2, 0x01, 0xfc, 0x6d, 0xfc, 0xe3, 0x0c, 0x21, 0x6e, 0x79, 0x4e, 0x24, 0x9d, 0x0a, 0x44, + 0x21, 0xf7, 0x2a, 0x44, 0xf1, 0xfb, 0x46, 0xa9, 0xfe, 0x17, 0x9f, 0xac, 0xd8, 0x3a, 0x01, 0x77, + 0x87, 0x96, 0x3d, 0x1a, 0x21, 0xf3, 0x2d, 0x99, 0x45, 0xf1, 0xdc, 0x1e, 0x8d, 0x8c, 0x77, 0x60, + 0x51, 0x1b, 0xdd, 0x0b, 0xe6, 0x71, 0x00, 0x6c, 0xcf, 0x09, 0xc2, 0x63, 0x37, 0x98, 0x68, 0x82, + 0xdb, 0x1d, 0x28, 0x0b, 0x0e, 0x2b, 0x46, 0x46, 0x5b, 0xb6, 0x60, 0x0a, 0x96, 0x2b, 0xc6, 0x15, + 0x60, 0xa1, 0x7d, 0x25, 0x0b, 0xb3, 0xb2, 0xd0, 0xbe, 0xc2, 0x42, 0xe3, 0xbb, 0xb0, 0x94, 0x68, + 0x4f, 0x76, 0xfd, 0x06, 0x14, 0xa6, 0xe1, 0x95, 0xa7, 0x44, 0xf3, 0x8a, 0xa4, 0x10, 0xa1, 0x00, + 0x9a, 0x54, 0x62, 0x7c, 0x04, 0x8b, 0x07, 0xfc, 0x52, 0x6e, 0x62, 0x35, 0x90, 0xb7, 0x21, 0xff, + 0x12, 0xa5, 0x10, 0xcb, 0x8d, 0x0d, 0x60, 0x7a, 0x65, 0xd9, 0xab, 0xa6, 0x23, 0x66, 0x12, 0x3a, + 0xa2, 0xf1, 0x36, 0xb0, 0x9e, 0x73, 0xe6, 0xee, 0xf3, 0x20, 0xb0, 0xcf, 0xa2, 0x6d, 0xdf, 0x84, + 0xdc, 0x38, 0x38, 0x93, 0x3c, 0x4a, 0xfc, 0x34, 0xbe, 0x05, 0x4b, 0x09, 0x3c, 0xd9, 0xf0, 0x6b, + 0x50, 0x0e, 0x9c, 0x33, 0x17, 0x05, 0x2b, 0xd9, 0x74, 0x0c, 0x30, 0x76, 0x60, 0xf9, 0x13, 0xee, + 0x3b, 0xa7, 0xd7, 0x2f, 0x6b, 0x3e, 0xd9, 0x4e, 0x76, 0xb6, 0x9d, 0x0e, 0xac, 0xcc, 0xb4, 0x23, + 0xbb, 0x27, 0xf2, 0x95, 0x6f, 0xb2, 0x64, 0xd2, 0x83, 0xc6, 0xf7, 0xb2, 0x3a, 0xdf, 0x33, 0x8e, + 0x81, 0x6d, 0x79, 0xae, 0xcb, 0x07, 0xe1, 0x11, 0xe7, 0x7e, 0x6c, 0xa5, 0x8a, 0x69, 0xb5, 0xf2, + 0x64, 0x4d, 0xae, 0xec, 0x2c, 0x33, 0x95, 0x44, 0xcc, 0x20, 0x3f, 0xe1, 0xfe, 0x18, 0x1b, 0x2e, + 0x99, 0xf8, 0xdb, 0x58, 0x81, 0xa5, 0x44, 0xb3, 0x52, 0xaf, 0x7f, 0x0c, 0x2b, 0xdb, 0x4e, 0x30, + 0x98, 0xef, 0x70, 0x0d, 0x8a, 0x93, 0xe9, 0x89, 0x95, 0xe4, 0xcb, 0xcf, 0xf8, 0xb5, 0xd0, 0xf6, + 0x66, 0x6b, 0xc8, 0xb6, 0xfe, 0x7a, 0x06, 0xf2, 0xbb, 0xfd, 0xbd, 0x2d, 0xb6, 0x0e, 0x25, 0xc7, + 0x1d, 0x78, 0x63, 0x21, 0x78, 0xd1, 0x9c, 0xa3, 0xe7, 0x1b, 0x37, 0xd8, 0x1d, 0x28, 0xa3, 0xbc, + 0x26, 0x54, 0x5b, 0x29, 0xfa, 0x94, 0x04, 0x60, 0xcf, 0x1b, 0x3c, 0x17, 0x3a, 0x35, 0xbf, 0x9a, + 0x38, 0x3e, 0x6a, 0xcd, 0x4a, 0x19, 0xce, 0xd3, 0x59, 0x1f, 0x17, 0x90, 0x46, 0x6c, 0xfc, 0xfb, + 0x12, 0x14, 0xe5, 0x69, 0x4b, 0x27, 0x77, 0xe8, 0x5c, 0xf0, 0xf8, 0xe4, 0x16, 0x4f, 0x42, 0x1e, + 0xf0, 0xf9, 0xd8, 0x0b, 0x23, 0x81, 0x8d, 0xde, 0x41, 0x95, 0x80, 0x52, 0x64, 0xd3, 0x84, 0x06, + 0x32, 0x31, 0xe4, 0x08, 0x69, 0xa0, 0x1f, 0xe5, 0x77, 0xa0, 0xa8, 0xce, 0xfe, 0x7c, 0xa4, 0xd3, + 0x2c, 0x0c, 0x48, 0x5a, 0x5b, 0x87, 0xd2, 0xc0, 0x9e, 0xd8, 0x03, 0x27, 0xbc, 0x96, 0x0c, 0x21, + 0x7a, 0x16, 0xad, 0x8f, 0xbc, 0x81, 0x3d, 0xb2, 0x4e, 0xec, 0x91, 0xed, 0x0e, 0xb8, 0xd4, 0xdd, + 0xab, 0x08, 0xdc, 0x24, 0x98, 0xd0, 0xcf, 0xe5, 0x38, 0x15, 0x16, 0xa9, 0xf0, 0x72, 0xf4, 0x0a, + 0x4d, 0x08, 0x97, 0xde, 0x78, 0xec, 0x08, 0x2d, 0x83, 0xc4, 0xb0, 0x9c, 0x59, 0x26, 0xc8, 0x0e, + 0xc7, 0xd9, 0xca, 0xe2, 0x4b, 0x5a, 0xba, 0x32, 0x75, 0x45, 0xc0, 0x4f, 0xc9, 0x90, 0x30, 0x2f, + 0x8b, 0xe5, 0x34, 0x59, 0xec, 0x5d, 0x58, 0x9c, 0xba, 0x01, 0x0f, 0xc3, 0x11, 0x1f, 0x46, 0x63, + 0xa9, 0x20, 0x52, 0x33, 0x2a, 0x50, 0xc3, 0xd9, 0x80, 0x25, 0x32, 0x3a, 0x04, 0x76, 0xe8, 0x05, + 0xe7, 0x4e, 0x60, 0x05, 0x42, 0x43, 0x22, 0x75, 0x77, 0x11, 0x8b, 0x7a, 0xb2, 0xa4, 0x47, 0x2a, + 0xd2, 0xda, 0x0c, 0xbe, 0xcf, 0x07, 0xdc, 0xb9, 0xe0, 0x43, 0x94, 0xd3, 0x72, 0xe6, 0x4a, 0xa2, + 0x8e, 0x29, 0x0b, 0x51, 0xe8, 0x9e, 0x8e, 0xad, 0xe9, 0x64, 0x68, 0x0b, 0x61, 0xa5, 0x4e, 0xc2, + 0xb0, 0x3b, 0x1d, 0x1f, 0x13, 0x84, 0x3d, 0x06, 0x25, 0x89, 0x49, 0xf9, 0xb0, 0x91, 0xe0, 0x67, + 0x82, 0x58, 0xcd, 0xaa, 0xc4, 0x20, 0x41, 0x31, 0x21, 0x73, 0x36, 0x67, 0x64, 0xce, 0x16, 0x14, + 0x27, 0xbe, 0x73, 0x61, 0x87, 0xbc, 0xb5, 0x48, 0x0c, 0x5c, 0x3e, 0x0a, 0xce, 0xe0, 0xb8, 0x4e, + 0xe8, 0xd8, 0xa1, 0xe7, 0xb7, 0x18, 0x96, 0xc5, 0x00, 0xf6, 0x10, 0x16, 0x91, 0x46, 0x82, 0xd0, + 0x0e, 0xa7, 0x81, 0x94, 0x40, 0x97, 0x90, 0x98, 0x50, 0x86, 0xee, 0x21, 0x1c, 0x85, 0x50, 0xf6, + 0x2d, 0x58, 0x25, 0xb2, 0xc0, 0x1a, 0x52, 0xb2, 0x46, 0x81, 0x60, 0x19, 0x97, 0x62, 0x09, 0x4b, + 0x05, 0x7d, 0x4b, 0xf9, 0x5a, 0x48, 0x07, 0xef, 0xc3, 0x9a, 0x24, 0x93, 0xb9, 0x5a, 0x2b, 0x58, + 0x6b, 0x99, 0x8a, 0x67, 0xaa, 0x6d, 0xc0, 0xa2, 0x18, 0x92, 0x33, 0xb0, 0x64, 0x6d, 0xb1, 0x13, + 0x56, 0xc5, 0xe8, 0x51, 0x53, 0x6a, 0x50, 0xa1, 0x89, 0x65, 0xcf, 0xf8, 0x35, 0xfb, 0x1e, 0x34, + 0x88, 0x64, 0x50, 0xbd, 0x42, 0x4e, 0xbf, 0x8e, 0x9c, 0x7e, 0x45, 0x59, 0x38, 0xa3, 0x52, 0x64, + 0xf6, 0xf5, 0x41, 0xe2, 0x59, 0x6c, 0x87, 0x91, 0x73, 0xca, 0x43, 0x67, 0xcc, 0x5b, 0x6b, 0x44, + 0x60, 0xea, 0x59, 0xec, 0xd4, 0xe9, 0x04, 0x4b, 0x5a, 0xc4, 0x17, 0xe8, 0x09, 0x69, 0x77, 0xe4, + 0x05, 0x5c, 0x99, 0xa8, 0x5a, 0xb7, 0xe5, 0x26, 0x14, 0x40, 0x25, 0x43, 0x0a, 0x41, 0x9c, 0x94, + 0x9e, 0xc8, 0x90, 0x78, 0x07, 0x89, 0xa1, 0x46, 0xba, 0x8f, 0x32, 0x26, 0x8a, 0x53, 0xfc, 0xdc, + 0xbe, 0x54, 0x1c, 0xe4, 0x35, 0x7c, 0xbf, 0x20, 0x40, 0x92, 0x77, 0xfc, 0x34, 0x43, 0x07, 0xa2, + 0xe4, 0x1f, 0x81, 0xa6, 0xde, 0x11, 0xe7, 0xb0, 0x3c, 0x77, 0x74, 0x2d, 0x99, 0x09, 0x10, 0xe8, + 0xd0, 0x1d, 0xe1, 0x6e, 0x76, 0x5c, 0x1d, 0x85, 0x78, 0x6f, 0x55, 0x01, 0x11, 0xe9, 0x1e, 0x54, + 0x26, 0xd3, 0x93, 0x91, 0x33, 0x20, 0x94, 0x1c, 0xb5, 0x42, 0x20, 0x44, 0x10, 0xfa, 0x2d, 0x51, + 0x14, 0x61, 0xe4, 0x11, 0xa3, 0x22, 0x61, 0x88, 0x82, 0xbc, 0x9d, 0xfb, 0xc8, 0x4e, 0xaa, 0x26, + 0xfe, 0x36, 0x36, 0x61, 0x39, 0x39, 0x68, 0x79, 0xf0, 0x3c, 0x84, 0x92, 0xe4, 0x55, 0xca, 0xf0, + 0x51, 0xd7, 0x4c, 0xd1, 0x42, 0x45, 0x8b, 0xca, 0x8d, 0xdf, 0x5e, 0x80, 0x25, 0x09, 0xdd, 0x12, + 0x4b, 0xdb, 0x9b, 0x8e, 0xc7, 0xb6, 0x9f, 0xc2, 0x04, 0x33, 0x2f, 0x66, 0x82, 0xd9, 0x39, 0x26, + 0x98, 0xd4, 0x7c, 0x89, 0x87, 0x26, 0x35, 0x5f, 0xf1, 0x2e, 0x49, 0x19, 0xd1, 0xed, 0xa0, 0x35, + 0x09, 0xee, 0x93, 0xbd, 0x75, 0x8e, 0x65, 0x17, 0x52, 0x58, 0xb6, 0xce, 0x70, 0x17, 0x66, 0x18, + 0xee, 0x1b, 0x40, 0x44, 0xa3, 0xde, 0x7e, 0x91, 0xf4, 0x13, 0x84, 0x49, 0x63, 0xea, 0x3b, 0xd0, + 0x98, 0xe5, 0x71, 0xc4, 0x4c, 0xeb, 0x29, 0x1c, 0xce, 0x19, 0x73, 0x3c, 0xad, 0x34, 0xe4, 0xb2, + 0xe4, 0x70, 0xce, 0x98, 0xef, 0x61, 0x89, 0xc2, 0xef, 0x00, 0x50, 0xdf, 0xb8, 0x69, 0x00, 0x37, + 0xcd, 0xdb, 0xc9, 0x77, 0xa1, 0xaf, 0xfa, 0x86, 0x78, 0x98, 0xfa, 0x1c, 0x77, 0x51, 0x19, 0x6b, + 0xe2, 0x06, 0x7a, 0x06, 0x75, 0x6f, 0xc2, 0x5d, 0x2b, 0xe6, 0x35, 0x15, 0x6c, 0xea, 0xad, 0x17, + 0x34, 0xd5, 0x55, 0xb8, 0x66, 0x4d, 0xd4, 0x8d, 0x1e, 0xd9, 0x3e, 0x2d, 0x3c, 0xd7, 0x5a, 0xab, + 0x7e, 0x89, 0xd6, 0xea, 0x58, 0x39, 0x7a, 0x36, 0xfe, 0x56, 0x06, 0x2a, 0xda, 0xb0, 0xd9, 0x0a, + 0x2c, 0x6e, 0x1d, 0x1e, 0x1e, 0x75, 0xcc, 0x76, 0xbf, 0xfb, 0x49, 0xc7, 0xda, 0xda, 0x3b, 0xec, + 0x75, 0x9a, 0xb7, 0x04, 0x78, 0xef, 0x70, 0xab, 0xbd, 0x67, 0xed, 0x1c, 0x9a, 0x5b, 0x0a, 0x9c, + 0x61, 0xab, 0xc0, 0xcc, 0xce, 0xfe, 0x61, 0xbf, 0x93, 0x80, 0x67, 0x59, 0x13, 0xaa, 0x9b, 0x66, + 0xa7, 0xbd, 0xb5, 0x2b, 0x21, 0x39, 0xb6, 0x0c, 0xcd, 0x9d, 0xe3, 0x83, 0xed, 0xee, 0xc1, 0x53, + 0x6b, 0xab, 0x7d, 0xb0, 0xd5, 0xd9, 0xeb, 0x6c, 0x37, 0xf3, 0xac, 0x06, 0xe5, 0xf6, 0x66, 0xfb, + 0x60, 0xfb, 0xf0, 0xa0, 0xb3, 0xdd, 0x2c, 0x18, 0xbf, 0x02, 0xe5, 0x78, 0xa2, 0x15, 0x28, 0x1e, + 0x1f, 0x3c, 0x3b, 0x38, 0xfc, 0xf4, 0xa0, 0x79, 0x8b, 0x95, 0xa1, 0x80, 0xfd, 0x37, 0x33, 0x0c, + 0x60, 0x81, 0xfa, 0x6c, 0x66, 0x59, 0x09, 0xf2, 0x9b, 0x87, 0xfd, 0xdd, 0x66, 0xce, 0xf8, 0xf3, + 0x0c, 0xac, 0xe0, 0x94, 0x87, 0xb3, 0x4c, 0xe0, 0x3e, 0x54, 0x06, 0x9e, 0x37, 0x11, 0x9a, 0x56, + 0x2c, 0x51, 0xe8, 0x20, 0xb1, 0xc1, 0x89, 0x79, 0x9f, 0x7a, 0xfe, 0x80, 0x4b, 0x1e, 0x00, 0x08, + 0xda, 0x11, 0x10, 0x41, 0x83, 0x92, 0x88, 0x09, 0x83, 0x58, 0x40, 0x85, 0x60, 0x84, 0xb2, 0x0a, + 0x0b, 0x27, 0x3e, 0xb7, 0x07, 0xe7, 0x72, 0xf7, 0xcb, 0x27, 0xf6, 0xf5, 0xd8, 0x06, 0x30, 0x10, + 0x34, 0x35, 0xe2, 0x43, 0xdc, 0x02, 0x25, 0xb3, 0x21, 0xe1, 0x5b, 0x12, 0x2c, 0x4e, 0x23, 0xfb, + 0xc4, 0x76, 0x87, 0x9e, 0xcb, 0x87, 0x52, 0xd5, 0x88, 0x01, 0xc6, 0x11, 0xac, 0xce, 0xce, 0x4f, + 0xf2, 0x8b, 0x0f, 0x34, 0x7e, 0x41, 0x92, 0xff, 0xfa, 0xcd, 0xa4, 0xa0, 0xf1, 0x8e, 0xbf, 0x93, + 0x87, 0xbc, 0x90, 0x04, 0x6f, 0x14, 0x1a, 0x75, 0xd1, 0x3e, 0x37, 0xe7, 0xfe, 0x41, 0x53, 0x03, + 0x89, 0x08, 0x64, 0xcf, 0x2a, 0x23, 0x04, 0x45, 0x83, 0xa8, 0xd8, 0xe7, 0x83, 0x0b, 0x69, 0xd0, + 0xa2, 0x62, 0x93, 0x0f, 0x2e, 0x50, 0xa7, 0xb2, 0x43, 0xaa, 0x4b, 0xfb, 0xbd, 0x18, 0xd8, 0x21, + 0xd6, 0x94, 0x45, 0x58, 0xaf, 0x18, 0x15, 0x61, 0xad, 0x16, 0x14, 0x1d, 0xf7, 0xc4, 0x9b, 0xba, + 0x43, 0xdc, 0xde, 0x25, 0x53, 0x3d, 0xa2, 0xb7, 0x09, 0x39, 0x91, 0x38, 0x88, 0x68, 0x37, 0x97, + 0x04, 0xa0, 0x2f, 0x8e, 0xa2, 0xf7, 0xa0, 0x1c, 0x5c, 0xbb, 0x03, 0x7d, 0x0f, 0x2f, 0xcb, 0xf5, + 0x11, 0xb3, 0xdf, 0xe8, 0x5d, 0xbb, 0x03, 0xdc, 0xb1, 0xa5, 0x40, 0xfe, 0x62, 0xef, 0x43, 0x29, + 0xb2, 0xfb, 0x12, 0x07, 0xbe, 0xad, 0xd7, 0x50, 0xc6, 0x5e, 0x52, 0xaf, 0x23, 0x54, 0xf6, 0x08, + 0x16, 0xd0, 0x38, 0x1b, 0xb4, 0xaa, 0x58, 0x49, 0xc9, 0xfb, 0x62, 0x18, 0xe8, 0xe8, 0xe1, 0x43, + 0x34, 0xd4, 0x9a, 0x12, 0x6d, 0xfd, 0x19, 0xd4, 0x12, 0x6d, 0xe9, 0x4a, 0x74, 0x8d, 0x94, 0xe8, + 0xb7, 0x74, 0x25, 0x3a, 0x3e, 0x09, 0x64, 0x35, 0x5d, 0xa9, 0xfe, 0x35, 0x28, 0xa9, 0xa9, 0x88, + 0xfd, 0x27, 0xf7, 0x8e, 0xd5, 0xfb, 0xec, 0x60, 0xab, 0x79, 0x8b, 0x35, 0xa0, 0xd2, 0xde, 0xc2, + 0x2d, 0x8d, 0x80, 0x8c, 0x40, 0x39, 0x6a, 0xf7, 0x7a, 0x11, 0x24, 0x6b, 0xec, 0x40, 0x73, 0x76, + 0xa4, 0x82, 0x26, 0x43, 0x05, 0x93, 0xa6, 0xeb, 0x18, 0x20, 0x54, 0x24, 0xb2, 0x46, 0x93, 0x1c, + 0x4e, 0x0f, 0xc6, 0xfb, 0xd0, 0x14, 0xe7, 0x9a, 0x58, 0xaa, 0x40, 0x33, 0x01, 0x8f, 0x84, 0x6c, + 0xa7, 0x9b, 0xaf, 0x4b, 0x66, 0x85, 0x60, 0xd8, 0x95, 0xf1, 0x01, 0x2c, 0x6a, 0xd5, 0x62, 0x95, + 0x56, 0x9c, 0x95, 0xb3, 0x2a, 0x2d, 0x2a, 0x30, 0x54, 0x62, 0xac, 0xc1, 0x8a, 0x78, 0xec, 0x5c, + 0x70, 0x37, 0xec, 0x4d, 0x4f, 0xc8, 0xe7, 0xe8, 0x78, 0xae, 0x50, 0x6c, 0xca, 0x51, 0xc9, 0xcd, + 0x44, 0xbe, 0x21, 0xb5, 0xdf, 0x2c, 0x92, 0xc6, 0xba, 0xd6, 0x03, 0x56, 0xdc, 0xc0, 0xbf, 0x09, + 0x2d, 0xb8, 0x1c, 0x81, 0xc4, 0xb2, 0x1e, 0x75, 0x3a, 0xa6, 0x75, 0x78, 0xb0, 0xd7, 0x3d, 0x10, 0x8c, 0x52, 0x2c, 0x2b, 0x02, 0x76, 0x76, 0x10, 0x92, 0x31, 0x9a, 0x50, 0x7f, 0xca, 0xc3, 0xae, - 0x7b, 0xea, 0x29, 0xf7, 0xd9, 0xcf, 0x0a, 0xd0, 0x88, 0x40, 0xb1, 0x92, 0x7c, 0xc1, 0xfd, 0xc0, - 0xf1, 0x5c, 0x94, 0x77, 0xcb, 0xa6, 0xfa, 0x14, 0xb7, 0x9b, 0x33, 0xe4, 0x6e, 0xe8, 0x84, 0xd7, - 0x56, 0xc2, 0xa2, 0x56, 0x57, 0x60, 0x79, 0x8b, 0x2e, 0x43, 0xc1, 0x1e, 0x39, 0xb6, 0xf2, 0xc4, - 0xd2, 0x87, 0x80, 0x0e, 0xbc, 0x91, 0xe7, 0xa3, 0x68, 0x5b, 0x36, 0xe9, 0x83, 0x3d, 0x86, 0x65, - 0x21, 0x62, 0xeb, 0x66, 0x4e, 0xe4, 0x1f, 0x64, 0xdc, 0x63, 0xee, 0x74, 0x7c, 0x14, 0x9b, 0x3a, - 0x45, 0x89, 0xb8, 0x3b, 0x45, 0x0d, 0x29, 0x2c, 0x45, 0x15, 0x48, 0x5b, 0x5b, 0x74, 0xa7, 0xe3, + 0x7b, 0xea, 0x29, 0xff, 0xda, 0xcf, 0x0a, 0xd0, 0x88, 0x40, 0xb1, 0x16, 0x7d, 0xc1, 0xfd, 0xc0, + 0xf1, 0x5c, 0x14, 0x88, 0xcb, 0xa6, 0x7a, 0x14, 0xa7, 0x9b, 0x33, 0xe4, 0x6e, 0xe8, 0x84, 0xd7, + 0x56, 0xc2, 0xe4, 0x56, 0x57, 0x60, 0x79, 0x8a, 0x2e, 0x43, 0xc1, 0x1e, 0x39, 0xb6, 0x72, 0xd5, + 0xd2, 0x83, 0x80, 0x0e, 0xbc, 0x91, 0xe7, 0xa3, 0xec, 0x5b, 0x36, 0xe9, 0x81, 0x3d, 0x86, 0x65, + 0x21, 0x83, 0xeb, 0x76, 0x50, 0xe4, 0x1f, 0x64, 0xfd, 0x63, 0xee, 0x74, 0x7c, 0x14, 0xdb, 0x42, + 0x45, 0x89, 0x38, 0x3b, 0x45, 0x0d, 0x29, 0x2c, 0x45, 0x15, 0x48, 0x9d, 0x5b, 0x74, 0xa7, 0xe3, 0x36, 0x96, 0x44, 0xf8, 0x4f, 0x60, 0x45, 0xe0, 0x47, 0xe2, 0x55, 0x54, 0xa3, 0x81, 0x35, 0x44, - 0x63, 0x5d, 0x59, 0x16, 0xd5, 0xb9, 0x03, 0x65, 0x1a, 0x95, 0xd8, 0xf1, 0x02, 0x49, 0xe9, 0x38, - 0x14, 0xee, 0x07, 0x73, 0x4e, 0xd3, 0x05, 0x12, 0x04, 0x66, 0x9c, 0xa6, 0x9a, 0xdb, 0xb5, 0x34, - 0xeb, 0x76, 0x7d, 0x02, 0x2b, 0x27, 0x82, 0x04, 0xcf, 0xb9, 0x3d, 0xe4, 0xbe, 0x15, 0x13, 0x36, - 0x69, 0x23, 0x4b, 0xa2, 0x70, 0x17, 0xcb, 0xa2, 0x73, 0x20, 0xe4, 0x1c, 0xc1, 0x16, 0xf8, 0xd0, - 0x0a, 0x3d, 0x0b, 0xc5, 0x1f, 0x64, 0x30, 0x25, 0xb3, 0x46, 0xe0, 0xbe, 0xb7, 0x25, 0x80, 0x49, - 0xbc, 0x33, 0xdf, 0x9e, 0x9c, 0x4b, 0x7d, 0x21, 0xc2, 0x7b, 0x2a, 0x80, 0xec, 0x35, 0x28, 0x0a, - 0x92, 0x77, 0x39, 0xf9, 0xb6, 0x48, 0x22, 0x57, 0x20, 0xf6, 0x16, 0x2c, 0x60, 0x1f, 0x41, 0xab, - 0x89, 0xf4, 0x5e, 0x8d, 0x19, 0xb9, 0xe3, 0x9a, 0xb2, 0x4c, 0x08, 0x93, 0x53, 0xdf, 0x21, 0x2e, - 0x53, 0x36, 0xf1, 0x6f, 0xf6, 0x7d, 0x8d, 0x65, 0x2d, 0x61, 0x5d, 0x25, 0x0f, 0xcc, 0x50, 0xda, + 0x63, 0x5d, 0x59, 0x16, 0xd5, 0xb9, 0x03, 0x65, 0x1a, 0x95, 0x78, 0xe3, 0x05, 0x12, 0xe3, 0x71, + 0x28, 0xdc, 0x0f, 0xe6, 0xbc, 0xaa, 0x0b, 0x24, 0x08, 0xcc, 0x78, 0x55, 0x35, 0xbf, 0x6c, 0x69, + 0xd6, 0x2f, 0xfb, 0x04, 0x56, 0x4e, 0x04, 0x09, 0x9e, 0x73, 0x7b, 0xc8, 0x7d, 0x2b, 0x26, 0x6c, + 0x52, 0x57, 0x96, 0x44, 0xe1, 0x2e, 0x96, 0x45, 0xfb, 0x40, 0xc8, 0x39, 0x82, 0x2d, 0xf0, 0xa1, + 0x15, 0x7a, 0x16, 0x8a, 0x3f, 0xc8, 0x60, 0x4a, 0x66, 0x8d, 0xc0, 0x7d, 0x6f, 0x4b, 0x00, 0x93, + 0x78, 0x67, 0xbe, 0x3d, 0x39, 0x97, 0x0a, 0x45, 0x84, 0xf7, 0x54, 0x00, 0xd9, 0x6b, 0x50, 0x14, + 0x24, 0xef, 0x72, 0x72, 0x7e, 0x91, 0xc8, 0xae, 0x40, 0xec, 0x2d, 0x58, 0xc0, 0x3e, 0x82, 0x56, + 0x13, 0xe9, 0xbd, 0x1a, 0x33, 0x72, 0xc7, 0x35, 0x65, 0x99, 0x10, 0x26, 0xa7, 0xbe, 0x43, 0x5c, + 0xa6, 0x6c, 0xe2, 0x6f, 0xf6, 0x7d, 0x8d, 0x65, 0x2d, 0x61, 0x5d, 0x25, 0x0f, 0xcc, 0x50, 0xda, 0x4d, 0xdc, 0xeb, 0x2b, 0x65, 0x46, 0x3f, 0xc8, 0x97, 0x2a, 0xcd, 0xaa, 0xf1, 0x1d, 0x28, 0xd0, 0xea, 0x08, 0x22, 0xc4, 0xb5, 0xcb, 0x48, 0x22, 0x44, 0x68, 0x0b, 0x8a, 0x2e, 0x0f, 0x2f, 0x3d, - 0xff, 0xb9, 0xb2, 0x39, 0xcb, 0x4f, 0xe3, 0xc7, 0x68, 0x2c, 0x89, 0x1c, 0xea, 0xa4, 0xf7, 0x09, - 0xf2, 0xa0, 0xed, 0x0d, 0xce, 0x6d, 0x69, 0xbf, 0x29, 0x21, 0xa0, 0x77, 0x6e, 0xcf, 0x91, 0x47, - 0x76, 0xde, 0xa7, 0xfe, 0x16, 0xd4, 0x95, 0x0b, 0x3f, 0xb0, 0x46, 0xfc, 0x34, 0x94, 0xe4, 0x5e, - 0x95, 0xfe, 0xfb, 0x60, 0x8f, 0x9f, 0x86, 0xc6, 0x3e, 0x2c, 0x4a, 0x82, 0x3c, 0x9c, 0x70, 0xd5, - 0xf5, 0x77, 0xd3, 0xe4, 0xe9, 0xca, 0x93, 0xa5, 0xe4, 0x45, 0x4b, 0xa1, 0x09, 0x09, 0x21, 0xdb, - 0xf8, 0x18, 0x98, 0x7e, 0x0d, 0xcb, 0xf6, 0xa4, 0x54, 0xab, 0x4c, 0xf5, 0xca, 0xe3, 0x15, 0xc9, - 0xce, 0xce, 0x50, 0xac, 0x4e, 0x30, 0x1d, 0x0c, 0x54, 0x68, 0x45, 0xc9, 0x54, 0x9f, 0xc6, 0x9f, - 0x66, 0x60, 0x09, 0x1b, 0x53, 0xfa, 0x80, 0x64, 0xb2, 0x3f, 0xf7, 0x20, 0xc5, 0xfe, 0xe8, 0xb2, - 0x0f, 0x7d, 0x7c, 0x79, 0xe3, 0x68, 0x7e, 0xce, 0x38, 0xfa, 0x75, 0x68, 0x0e, 0xf9, 0xc8, 0xc1, - 0x28, 0x1b, 0x25, 0x4a, 0x90, 0x06, 0xd0, 0x50, 0x70, 0xa9, 0xec, 0x19, 0xff, 0x20, 0x03, 0x8b, - 0x24, 0xa9, 0xa0, 0xda, 0x2c, 0x17, 0xea, 0x23, 0xa5, 0x27, 0x4a, 0x56, 0x25, 0xe7, 0x14, 0xdf, - 0xe0, 0x08, 0x25, 0xe4, 0xdd, 0x5b, 0x52, 0x7f, 0x94, 0x50, 0xf6, 0x21, 0xea, 0x30, 0xae, 0x85, - 0xc0, 0x94, 0xa8, 0x9d, 0xe4, 0xa6, 0xec, 0xde, 0x42, 0x05, 0xc7, 0x45, 0xd0, 0x66, 0x49, 0x28, - 0xae, 0x02, 0x6c, 0xec, 0x40, 0x2d, 0xd1, 0x4d, 0xc2, 0x82, 0x5b, 0x25, 0x0b, 0xee, 0x9c, 0x97, - 0x24, 0x3b, 0xef, 0x25, 0xf9, 0x1b, 0x79, 0x60, 0x82, 0xa4, 0x66, 0x76, 0x6d, 0xc6, 0xc5, 0x98, - 0x9d, 0x73, 0x31, 0x3e, 0x06, 0xa6, 0x21, 0x28, 0xcf, 0x67, 0x2e, 0xf2, 0x7c, 0x36, 0x63, 0x5c, - 0xe9, 0xf8, 0x7c, 0x0c, 0xcb, 0x52, 0xa0, 0x8d, 0x7c, 0x8a, 0x68, 0x9a, 0xa3, 0xfd, 0x61, 0x24, - 0xd9, 0x2a, 0xdf, 0x22, 0x9a, 0xe9, 0x94, 0x7b, 0x51, 0xa8, 0xd8, 0x64, 0xd1, 0x42, 0xf7, 0x62, - 0xcf, 0x9e, 0x33, 0x91, 0x2f, 0xbc, 0x94, 0x0a, 0x8a, 0x73, 0x54, 0xa0, 0x19, 0x58, 0x4a, 0x49, - 0x03, 0x8b, 0x01, 0x35, 0xe5, 0x44, 0xa4, 0xd8, 0x09, 0x92, 0xde, 0x2a, 0xd2, 0x93, 0x88, 0xf1, - 0x13, 0x0f, 0xa0, 0xa9, 0xac, 0x20, 0x91, 0x09, 0x87, 0xe2, 0x02, 0xa4, 0x11, 0x6d, 0x4b, 0x19, - 0x72, 0x12, 0x06, 0xf3, 0xca, 0x8c, 0xc1, 0xfc, 0x5d, 0x58, 0x0c, 0x04, 0x11, 0x59, 0x53, 0x57, - 0x06, 0xf1, 0xf0, 0x21, 0xaa, 0x4e, 0x25, 0xb3, 0x89, 0x05, 0xc7, 0x31, 0x7c, 0xde, 0x3c, 0x51, - 0x4b, 0x31, 0x4f, 0xbc, 0x1f, 0xfb, 0xdb, 0x82, 0x73, 0x67, 0x8c, 0x17, 0x77, 0x1c, 0xf0, 0x22, - 0x17, 0xb8, 0x77, 0xee, 0x8c, 0x4d, 0xe5, 0xdc, 0x15, 0x1f, 0xc6, 0xbf, 0xcf, 0x40, 0x53, 0xd0, - 0x41, 0x82, 0xce, 0x7f, 0x05, 0xf0, 0x44, 0xbe, 0x22, 0x99, 0x57, 0x04, 0xae, 0xa2, 0xf2, 0xef, - 0x00, 0x92, 0xad, 0x25, 0xf4, 0x44, 0x49, 0xe4, 0xad, 0x24, 0x91, 0xc7, 0x8c, 0x6c, 0xf7, 0x16, - 0x29, 0x00, 0x02, 0x92, 0xe6, 0xe7, 0xcc, 0xa7, 0xf8, 0x39, 0xb5, 0xa3, 0xb0, 0x0b, 0xf0, 0x8c, - 0x5f, 0xef, 0x79, 0x03, 0xd4, 0xd0, 0xee, 0x02, 0x08, 0x82, 0x3c, 0xb5, 0xc7, 0x8e, 0xb4, 0xae, - 0x14, 0xcc, 0xf2, 0x73, 0x7e, 0xbd, 0x83, 0x00, 0xb1, 0x1b, 0xa2, 0x38, 0x3e, 0x0f, 0x05, 0xb3, - 0xf4, 0x9c, 0x5f, 0xd3, 0x61, 0xb0, 0xa0, 0xf6, 0x8c, 0x5f, 0x6f, 0x73, 0x12, 0xd7, 0x3c, 0x5f, - 0x50, 0x82, 0x6f, 0x5f, 0x0a, 0xf9, 0x2c, 0xe1, 0xa3, 0xac, 0xf8, 0xf6, 0xe5, 0x33, 0x7e, 0xad, - 0xfc, 0xa5, 0x45, 0x51, 0x3e, 0xf2, 0x06, 0xf2, 0x06, 0x52, 0xd1, 0x16, 0xf1, 0xa0, 0xcc, 0x85, - 0xe7, 0xf8, 0xb7, 0xf1, 0x27, 0x19, 0xa8, 0x89, 0xf1, 0x23, 0x83, 0x13, 0xeb, 0xae, 0x82, 0x76, - 0x32, 0x71, 0xd0, 0xce, 0x13, 0xc9, 0x1f, 0x88, 0x5b, 0x66, 0x6f, 0xe6, 0x96, 0xb8, 0xc0, 0xc4, - 0x2a, 0xdf, 0x83, 0x32, 0x9d, 0x2d, 0x71, 0x58, 0x73, 0x89, 0x5d, 0x4a, 0x4c, 0xc8, 0x2c, 0x21, - 0xda, 0x33, 0x8a, 0x11, 0xd0, 0x0c, 0x71, 0xb4, 0xc4, 0x65, 0x3f, 0x32, 0xbf, 0xa5, 0x6c, 0x43, - 0x21, 0xcd, 0xdd, 0x7c, 0x0c, 0x15, 0x8d, 0xa6, 0xd0, 0x6a, 0x17, 0x0d, 0x9e, 0x08, 0x30, 0x49, - 0x34, 0x89, 0xd9, 0xef, 0xde, 0x32, 0x6b, 0x03, 0x1d, 0xb0, 0xb9, 0x00, 0x79, 0x51, 0xc9, 0xf8, - 0x08, 0x16, 0xb5, 0x66, 0x49, 0x1b, 0x4d, 0x1b, 0x53, 0x26, 0x6d, 0x4c, 0xff, 0x28, 0x03, 0xcb, - 0xb2, 0x36, 0x06, 0x78, 0x39, 0xe2, 0xba, 0xde, 0x0f, 0xce, 0xd8, 0xaf, 0x40, 0x4d, 0xb4, 0x6e, - 0xf9, 0xfc, 0xcc, 0x09, 0x42, 0xae, 0x3c, 0x1c, 0x29, 0x87, 0x43, 0x70, 0x6d, 0x81, 0x6a, 0x4a, - 0x4c, 0xf6, 0x11, 0x54, 0xb0, 0x2a, 0xe9, 0xcb, 0x72, 0x5b, 0x5a, 0xf3, 0x15, 0x69, 0xa8, 0xbb, - 0xb7, 0x4c, 0x08, 0xa2, 0xaf, 0xcd, 0x32, 0x14, 0x43, 0xdf, 0x39, 0x3b, 0xe3, 0xbe, 0xb1, 0x1a, - 0x0d, 0x4d, 0x9c, 0x34, 0xde, 0x0b, 0xf9, 0x44, 0x08, 0x41, 0xc6, 0x7f, 0xcc, 0x40, 0x45, 0x9e, - 0x9d, 0x9f, 0xdb, 0xad, 0xb1, 0xae, 0x45, 0x28, 0x92, 0x6a, 0x1c, 0x07, 0x24, 0xbe, 0x03, 0x8d, - 0xb1, 0x10, 0x88, 0x84, 0xc0, 0x9e, 0xf0, 0x69, 0xd4, 0x15, 0x58, 0xca, 0x23, 0x1b, 0xb0, 0x84, - 0xe2, 0x49, 0x60, 0x85, 0xce, 0xc8, 0x52, 0x85, 0x32, 0x1a, 0x70, 0x91, 0x8a, 0xfa, 0xce, 0x68, - 0x5f, 0x16, 0x88, 0x5b, 0x3a, 0x08, 0xed, 0x33, 0x2e, 0x45, 0x5f, 0xfa, 0x30, 0x5a, 0xb0, 0x3a, - 0x23, 0xab, 0x2b, 0x3d, 0xe3, 0xbf, 0x35, 0x60, 0x6d, 0xae, 0x48, 0xea, 0x1b, 0x91, 0x2d, 0x7f, - 0xe4, 0x8c, 0x4f, 0xbc, 0xc8, 0x14, 0x96, 0xd1, 0x6c, 0xf9, 0x7b, 0xa2, 0x44, 0x99, 0xc2, 0x38, - 0xac, 0x28, 0x82, 0x40, 0x5b, 0x56, 0x24, 0xce, 0x67, 0x51, 0xd8, 0x7c, 0x2f, 0xc9, 0xa8, 0x66, - 0xbb, 0x53, 0x70, 0xfd, 0xfa, 0x5b, 0x9a, 0xcc, 0xc1, 0x02, 0x76, 0x0a, 0xad, 0x88, 0xee, 0xa4, - 0x7c, 0xa4, 0xe9, 0x26, 0xa2, 0xa7, 0x6f, 0xbc, 0xa4, 0xa7, 0x84, 0x91, 0xc4, 0x5c, 0x55, 0xe4, - 0x4a, 0x8d, 0x45, 0xfd, 0x5c, 0xc0, 0xeb, 0xaa, 0x1f, 0x94, 0x75, 0xe6, 0x7b, 0xcb, 0xbf, 0xd2, - 0xbc, 0xd0, 0xf8, 0x93, 0xec, 0xf2, 0x8e, 0x6c, 0x38, 0x2a, 0xd2, 0xfb, 0x3d, 0x87, 0xd5, 0x4b, - 0xdb, 0x09, 0xd5, 0xfc, 0x34, 0xb5, 0xa8, 0x80, 0xfd, 0x3d, 0x79, 0x49, 0x7f, 0x9f, 0x52, 0xe5, - 0x84, 0xf4, 0xb7, 0x7c, 0x39, 0x0f, 0x0c, 0xd6, 0xff, 0x6d, 0x16, 0xea, 0xc9, 0x56, 0xc4, 0xa1, - 0x96, 0x7c, 0x48, 0xc9, 0x13, 0x52, 0x1e, 0x97, 0x26, 0xda, 0x03, 0x92, 0x23, 0xe6, 0x8d, 0xc7, - 0xd9, 0x14, 0xe3, 0xb1, 0x6e, 0xb3, 0xcd, 0xbd, 0xcc, 0x07, 0x96, 0x7f, 0x25, 0x1f, 0x58, 0x21, - 0xcd, 0x07, 0x76, 0xb3, 0xe3, 0x64, 0xe1, 0xe7, 0x72, 0x9c, 0x14, 0x6f, 0x76, 0x9c, 0xac, 0xff, - 0x9f, 0x0c, 0xb0, 0x79, 0x4a, 0x65, 0x4f, 0xc9, 0x4e, 0xee, 0xf2, 0x91, 0xe4, 0x62, 0xdf, 0x7c, - 0x35, 0x6a, 0x57, 0x1b, 0xa4, 0x6a, 0xb3, 0x47, 0xb0, 0xa4, 0xc7, 0x0f, 0xeb, 0xaa, 0x4a, 0xcd, - 0x64, 0x7a, 0x51, 0xac, 0xd0, 0x6a, 0x0e, 0xc0, 0xfc, 0x4b, 0x1d, 0x80, 0x85, 0x97, 0x3a, 0x00, - 0x17, 0x92, 0x0e, 0xc0, 0xf5, 0xff, 0x9c, 0x81, 0xa5, 0x14, 0xa2, 0xfa, 0xea, 0xe6, 0x2c, 0x68, - 0x21, 0xc1, 0x62, 0xb2, 0x92, 0x16, 0x74, 0xee, 0xb2, 0x07, 0x95, 0xd8, 0xa7, 0xa4, 0xe2, 0xeb, - 0x1f, 0xbe, 0xec, 0xa4, 0xc7, 0x35, 0x4c, 0xbd, 0xfa, 0xfa, 0x17, 0x50, 0xd1, 0xca, 0xc4, 0x22, - 0x12, 0x05, 0x69, 0x61, 0x17, 0x74, 0x87, 0xa3, 0x9e, 0x75, 0x0f, 0xa4, 0x21, 0x97, 0xca, 0x89, - 0xd6, 0xe5, 0x85, 0x8d, 0x08, 0x1b, 0xb0, 0xa4, 0x5c, 0x18, 0x3c, 0x8e, 0xae, 0x92, 0x6c, 0x7f, - 0x51, 0x3a, 0x32, 0x78, 0x14, 0xac, 0xb5, 0xfe, 0x13, 0xa8, 0x25, 0x38, 0xc2, 0x57, 0xb7, 0x96, - 0xb3, 0x5a, 0x23, 0x8d, 0x55, 0xd7, 0x1a, 0xd7, 0xff, 0x77, 0x0e, 0xd8, 0x3c, 0x53, 0xfa, 0x65, - 0x0e, 0x61, 0x7e, 0xc7, 0x73, 0x29, 0x3b, 0xfe, 0xff, 0xec, 0x92, 0x7c, 0x17, 0x16, 0x65, 0x02, - 0x87, 0xe6, 0xe1, 0x21, 0xaa, 0x6f, 0x46, 0x05, 0x6a, 0x14, 0xdf, 0x99, 0x75, 0x24, 0x97, 0x12, - 0x31, 0xeb, 0x9a, 0x94, 0x30, 0xe3, 0x4f, 0x3e, 0x86, 0x05, 0xdb, 0x1d, 0x9c, 0x7b, 0x3e, 0x2a, - 0x2c, 0xf5, 0x27, 0xbf, 0xfa, 0xa5, 0xef, 0x89, 0x8d, 0x36, 0xd6, 0x47, 0xd1, 0xc4, 0x94, 0x8d, - 0x19, 0xef, 0x41, 0x45, 0x03, 0xa3, 0xd7, 0xa3, 0xbb, 0xbf, 0x79, 0xd8, 0xbc, 0xc5, 0x6a, 0x50, - 0x36, 0x3b, 0x5b, 0x87, 0x9f, 0x74, 0xcc, 0xce, 0x76, 0x33, 0xc3, 0x4a, 0x90, 0xdf, 0x3b, 0xec, - 0xf5, 0x9b, 0x59, 0x63, 0x1d, 0x5a, 0xb2, 0xc5, 0x79, 0x0b, 0xe8, 0xef, 0xe6, 0x23, 0xe3, 0x03, - 0x16, 0x4a, 0x5d, 0xe3, 0x5b, 0x50, 0xd5, 0xef, 0x70, 0x49, 0x11, 0x33, 0x4e, 0x46, 0xa1, 0x65, - 0x78, 0x1a, 0x13, 0xdc, 0x02, 0x72, 0x1d, 0x0d, 0xa3, 0x6a, 0x24, 0x98, 0xbd, 0xc0, 0xd7, 0x80, - 0x32, 0x67, 0x82, 0x0c, 0xff, 0x3f, 0xa8, 0x27, 0xcd, 0x81, 0xf2, 0xa8, 0xa7, 0x09, 0xdd, 0xa2, - 0x76, 0xc2, 0x3e, 0xc8, 0xbe, 0x0f, 0xcd, 0x59, 0x73, 0xa2, 0x0c, 0xed, 0xbd, 0xa1, 0x7e, 0xc3, - 0x49, 0x5a, 0x18, 0xd9, 0x2e, 0x2c, 0xa7, 0x49, 0x31, 0x48, 0x1f, 0x37, 0x6b, 0x5b, 0x6c, 0x5e, - 0x52, 0x61, 0xdf, 0x95, 0x56, 0xe3, 0x42, 0x9a, 0xef, 0x4d, 0x5b, 0xec, 0x0d, 0xfa, 0x4f, 0xb3, - 0x1f, 0x5f, 0x00, 0xc4, 0x30, 0xd6, 0x84, 0xea, 0xe1, 0x51, 0xe7, 0xc0, 0xda, 0xda, 0x6d, 0x1f, - 0x1c, 0x74, 0xf6, 0x9a, 0xb7, 0x18, 0x83, 0x3a, 0x3a, 0xcd, 0xb6, 0x23, 0x58, 0x46, 0xc0, 0xa4, - 0xf5, 0x5e, 0xc1, 0xb2, 0x6c, 0x19, 0x9a, 0xdd, 0x83, 0x19, 0x68, 0x8e, 0xb5, 0x60, 0xf9, 0xa8, - 0x43, 0x7e, 0xb6, 0x44, 0xbb, 0x79, 0x21, 0x19, 0xcb, 0xe9, 0x0a, 0xc9, 0x98, 0x12, 0x91, 0xe4, - 0x39, 0x50, 0x02, 0xe3, 0xef, 0x65, 0x60, 0x65, 0xa6, 0x20, 0x0e, 0x2f, 0x27, 0x71, 0x31, 0x29, - 0x28, 0x56, 0x11, 0xa8, 0x4e, 0xd3, 0xbb, 0xb0, 0x18, 0x69, 0xd0, 0x33, 0xec, 0xbe, 0x19, 0x15, - 0x28, 0xe4, 0x47, 0xb0, 0xa4, 0x29, 0xe2, 0x33, 0xbc, 0x82, 0x69, 0x45, 0xb2, 0x82, 0xb1, 0x16, - 0x85, 0xf1, 0xce, 0x8c, 0x7a, 0x48, 0xd9, 0x4d, 0x7a, 0x41, 0x6c, 0x54, 0x4f, 0x8e, 0x57, 0x7d, - 0xb2, 0xc7, 0x33, 0x84, 0x90, 0x1c, 0xad, 0xbe, 0xe1, 0xaa, 0xfb, 0x3f, 0x58, 0x00, 0xf6, 0xf1, - 0x94, 0xfb, 0xd7, 0x18, 0x3e, 0x1e, 0xbc, 0x2c, 0x9e, 0x4a, 0x69, 0x9b, 0xd9, 0x57, 0x4a, 0x11, - 0x49, 0x4b, 0xd1, 0xc8, 0xbf, 0x3c, 0x45, 0xa3, 0xf0, 0xb2, 0x14, 0x8d, 0x37, 0xa1, 0xe6, 0x9c, - 0xb9, 0x9e, 0x60, 0x85, 0x42, 0xe4, 0x0b, 0x5a, 0x0b, 0xf7, 0x73, 0x0f, 0xaa, 0x66, 0x55, 0x02, - 0x85, 0xc0, 0x17, 0xb0, 0x8f, 0x62, 0x24, 0x3e, 0x3c, 0xc3, 0x74, 0x22, 0x9d, 0x09, 0x76, 0x86, - 0x67, 0x5c, 0x2a, 0xd7, 0x68, 0x6e, 0x52, 0x95, 0x05, 0x3c, 0x60, 0x6f, 0x41, 0x3d, 0xf0, 0xa6, - 0x42, 0x82, 0x56, 0xcb, 0x40, 0x66, 0xf7, 0x2a, 0x41, 0x8f, 0x94, 0x8f, 0x65, 0x69, 0x1a, 0x70, - 0x6b, 0xec, 0x04, 0x81, 0x90, 0x7b, 0x06, 0x9e, 0x1b, 0xfa, 0xde, 0x48, 0x5a, 0xd2, 0x17, 0xa7, - 0x01, 0xdf, 0xa7, 0x92, 0x2d, 0x2a, 0x60, 0xdf, 0x8e, 0x87, 0x34, 0xb1, 0x1d, 0x3f, 0x68, 0x01, - 0x0e, 0x49, 0xcd, 0x14, 0x05, 0x55, 0xdb, 0xf1, 0xa3, 0xb1, 0x88, 0x8f, 0x60, 0x26, 0x75, 0xa4, - 0x32, 0x9b, 0x3a, 0xf2, 0xa3, 0xf4, 0xd4, 0x91, 0x1a, 0x36, 0xfd, 0x58, 0x36, 0x3d, 0xbf, 0xc5, - 0x5f, 0x2a, 0x83, 0x64, 0x3e, 0x23, 0xa6, 0xfe, 0x65, 0x32, 0x62, 0x1a, 0x69, 0x19, 0x31, 0xef, - 0x41, 0x05, 0x73, 0x15, 0xac, 0x73, 0x47, 0x08, 0x47, 0xe4, 0x19, 0x68, 0xea, 0xc9, 0x0c, 0xbb, - 0x8e, 0x1b, 0x9a, 0xe0, 0xab, 0x3f, 0x83, 0xf9, 0xe4, 0x94, 0xc5, 0x5f, 0x62, 0x72, 0x8a, 0xcc, - 0xa9, 0xd8, 0x80, 0x92, 0xda, 0x27, 0xc6, 0x20, 0x7f, 0xea, 0x7b, 0x63, 0x65, 0x31, 0x15, 0x7f, - 0xb3, 0x3a, 0x64, 0x43, 0x4f, 0x56, 0xce, 0x86, 0x9e, 0xf1, 0x9b, 0x50, 0xd1, 0x48, 0x8d, 0xbd, - 0x41, 0xb6, 0x19, 0xa1, 0x84, 0x48, 0xa9, 0x8d, 0x56, 0xb1, 0x2c, 0xa1, 0xdd, 0xa1, 0xe0, 0x37, - 0x43, 0xc7, 0xe7, 0x98, 0x46, 0x66, 0xf9, 0xfc, 0x82, 0xfb, 0x81, 0xb2, 0x60, 0x37, 0xa3, 0x02, - 0x93, 0xe0, 0xc6, 0x5f, 0x81, 0xa5, 0xc4, 0xde, 0x4a, 0x16, 0xf1, 0x16, 0x2c, 0xe0, 0xba, 0x29, - 0x0f, 0x63, 0x32, 0x49, 0x44, 0x96, 0x61, 0x7e, 0x30, 0x19, 0xdf, 0xad, 0x89, 0xef, 0x9d, 0x60, - 0x27, 0x19, 0xb3, 0x22, 0x61, 0x47, 0xbe, 0x77, 0x62, 0xfc, 0x79, 0x0e, 0x72, 0xbb, 0xde, 0x44, - 0x0f, 0xaa, 0xc9, 0xcc, 0x05, 0xd5, 0x48, 0xcd, 0xca, 0x8a, 0x34, 0x27, 0x29, 0x0c, 0xa3, 0xd9, - 0x59, 0x69, 0x4f, 0x0f, 0xa0, 0x2e, 0xf8, 0x44, 0xe8, 0x09, 0xd5, 0xf4, 0xd2, 0xf6, 0x49, 0xd4, - 0xcc, 0xd1, 0xe1, 0xb3, 0xc7, 0x61, 0xdf, 0xdb, 0x21, 0x38, 0x5b, 0x86, 0x5c, 0xa4, 0x17, 0x60, - 0xb1, 0xf8, 0x64, 0xab, 0xb0, 0x80, 0xc1, 0x93, 0xd7, 0xd2, 0x85, 0x26, 0xbf, 0xd8, 0x37, 0x61, - 0x29, 0xd9, 0x2e, 0xb1, 0x22, 0x29, 0x1b, 0xe9, 0x0d, 0x23, 0x4f, 0xba, 0x0d, 0x82, 0x8f, 0x10, - 0x8e, 0xf4, 0xc4, 0x9f, 0x72, 0x8e, 0x45, 0x1a, 0xd3, 0x2b, 0x25, 0x98, 0xde, 0x3d, 0xa8, 0x84, - 0xa3, 0x0b, 0x6b, 0x62, 0x5f, 0x8f, 0x3c, 0x7b, 0x28, 0xcf, 0x37, 0x84, 0xa3, 0x8b, 0x23, 0x82, - 0xb0, 0x47, 0x00, 0xe3, 0xc9, 0x44, 0x9e, 0x3d, 0xb4, 0xe2, 0xc6, 0xa4, 0xbc, 0x7f, 0x74, 0x44, - 0x24, 0x67, 0x96, 0xc7, 0x93, 0x09, 0xfd, 0xc9, 0xb6, 0xa1, 0x9e, 0x9a, 0xea, 0x75, 0x57, 0xc5, - 0xfa, 0x79, 0x93, 0x8d, 0x94, 0xc3, 0x59, 0x1b, 0xe8, 0xb0, 0xf5, 0xef, 0x03, 0xfb, 0x05, 0x13, - 0xae, 0xfa, 0x50, 0x8e, 0xc6, 0xa7, 0xe7, 0x2b, 0x61, 0xf4, 0x6e, 0x25, 0x91, 0xaf, 0xd4, 0x1e, - 0x0e, 0x7d, 0xc1, 0x17, 0xe9, 0xc2, 0x8c, 0x58, 0x3e, 0x68, 0x37, 0x66, 0x9b, 0xf8, 0xbe, 0xf1, - 0x97, 0x19, 0x28, 0x50, 0xf2, 0xd4, 0xdb, 0xd0, 0x20, 0xfc, 0x28, 0x40, 0x49, 0x3a, 0xde, 0xe8, - 0xde, 0xed, 0xcb, 0xd8, 0x24, 0x71, 0x2c, 0xb4, 0xc4, 0xcf, 0x6c, 0xb4, 0xf3, 0x5a, 0xf2, 0xe7, - 0x3d, 0x28, 0x47, 0x5d, 0x6b, 0xa4, 0x53, 0x52, 0x3d, 0xb3, 0xd7, 0x21, 0x7f, 0xee, 0x4d, 0x94, - 0x89, 0x03, 0xe2, 0x95, 0x34, 0x11, 0x1e, 0x8f, 0x45, 0xf4, 0x41, 0x83, 0x97, 0xaa, 0x79, 0xd4, - 0x09, 0x92, 0xc1, 0xfc, 0x1c, 0x17, 0x52, 0xe6, 0x78, 0x0c, 0x0d, 0xc1, 0x07, 0x34, 0x07, 0xf8, - 0xcd, 0x97, 0xe6, 0xd7, 0x85, 0x84, 0x37, 0x18, 0x4d, 0x87, 0x5c, 0x37, 0x30, 0x61, 0xb4, 0x8c, - 0x84, 0x2b, 0xc9, 0xda, 0xf8, 0x83, 0x0c, 0xf1, 0x17, 0xd1, 0x2e, 0x7b, 0x00, 0x79, 0x71, 0xbf, - 0xcd, 0x18, 0x40, 0xa3, 0x30, 0x6a, 0x81, 0x67, 0x22, 0x06, 0x66, 0x4b, 0x4f, 0xc7, 0xc9, 0xd6, - 0x6b, 0x66, 0xc5, 0x9d, 0x8e, 0x23, 0x1b, 0xcd, 0xd7, 0xd4, 0xb4, 0x66, 0xec, 0x1b, 0x34, 0xfb, - 0xe8, 0x98, 0x6e, 0x68, 0x61, 0x37, 0xf9, 0xc4, 0x8d, 0xa9, 0xa4, 0xc0, 0xe1, 0x19, 0xd7, 0xc2, - 0x6d, 0xfe, 0x28, 0x0b, 0xb5, 0xc4, 0x88, 0x30, 0xee, 0x48, 0x5c, 0x00, 0x64, 0x5c, 0x97, 0xfb, - 0x0d, 0x02, 0x24, 0x05, 0x75, 0x6d, 0x9d, 0xb2, 0x89, 0x75, 0x8a, 0x5c, 0xfd, 0x39, 0xdd, 0xd5, - 0xff, 0x18, 0xca, 0x71, 0xc2, 0x6f, 0x72, 0x48, 0xa2, 0x3f, 0x15, 0x4c, 0x1e, 0x23, 0xc5, 0xc1, - 0x01, 0x05, 0x3d, 0x38, 0xe0, 0x7b, 0x9a, 0x2f, 0x79, 0x01, 0x9b, 0x31, 0xd2, 0x56, 0xf4, 0x97, - 0xe2, 0x49, 0x36, 0x3e, 0x82, 0x8a, 0x36, 0x78, 0xdd, 0x67, 0x9c, 0x49, 0xf8, 0x8c, 0xa3, 0xb4, - 0x8f, 0x6c, 0x9c, 0xf6, 0x61, 0xfc, 0x76, 0x16, 0x6a, 0xe2, 0x7c, 0x39, 0xee, 0xd9, 0x91, 0x37, - 0x72, 0x06, 0x68, 0x6c, 0x8f, 0x4e, 0x98, 0x14, 0xb4, 0xd4, 0x39, 0x93, 0x47, 0x8c, 0xe4, 0x2c, - 0x3d, 0xbb, 0x8d, 0x98, 0x74, 0x94, 0xdd, 0x66, 0x40, 0x4d, 0x30, 0xc6, 0x13, 0x3b, 0xe0, 0x5a, - 0x3a, 0xb2, 0x59, 0x39, 0xe5, 0x7c, 0xd3, 0x0e, 0x88, 0x43, 0x7e, 0x13, 0x96, 0x04, 0x0e, 0x26, - 0xf6, 0x8c, 0x9d, 0xd1, 0xc8, 0x21, 0x4c, 0xb2, 0xe0, 0x34, 0x4f, 0x39, 0x37, 0xed, 0x90, 0xef, - 0x8b, 0x02, 0x99, 0xbd, 0x5c, 0x1a, 0x3a, 0x81, 0x7d, 0x12, 0x47, 0x87, 0x45, 0xdf, 0xe8, 0x22, - 0xb3, 0xaf, 0x34, 0x17, 0x19, 0x65, 0xf8, 0x55, 0xc6, 0xf6, 0x55, 0xe4, 0x22, 0x9b, 0xa1, 0xa4, - 0xe2, 0x2c, 0x25, 0x19, 0xff, 0x21, 0x0b, 0x15, 0x8d, 0x2c, 0x5f, 0xe5, 0x76, 0xbd, 0x3b, 0xe7, - 0x1c, 0x29, 0xeb, 0x7e, 0x90, 0x37, 0x93, 0x5d, 0xa2, 0x27, 0x9d, 0xf2, 0xa4, 0x35, 0x02, 0xbe, - 0x03, 0x65, 0x71, 0xea, 0xde, 0x43, 0x5b, 0xa3, 0xcc, 0xf2, 0x47, 0xc0, 0xd1, 0xf4, 0x44, 0x15, - 0x3e, 0xc1, 0xc2, 0x42, 0x5c, 0xf8, 0x44, 0x14, 0xbe, 0x28, 0x24, 0xf4, 0x3b, 0x50, 0x95, 0xad, - 0xe2, 0x9e, 0xe2, 0x74, 0xe3, 0x53, 0x9f, 0xd8, 0x6f, 0xb3, 0x42, 0xdd, 0xd1, 0xe6, 0xcb, 0x8a, - 0x4f, 0x54, 0xc5, 0xd2, 0xcb, 0x2a, 0x3e, 0xa1, 0x0f, 0x63, 0x27, 0x8a, 0xb2, 0xc5, 0x28, 0x0e, - 0xc5, 0xc7, 0x1e, 0xc1, 0x92, 0x62, 0x57, 0x53, 0xd7, 0x76, 0x5d, 0x6f, 0xea, 0x0e, 0xb8, 0xca, - 0x07, 0x61, 0xb2, 0xe8, 0x38, 0x2e, 0x31, 0x86, 0x51, 0xc2, 0x20, 0x45, 0x83, 0x3c, 0x84, 0x02, - 0xc9, 0xe5, 0x24, 0x7c, 0xa4, 0x33, 0x2e, 0x42, 0x61, 0x0f, 0xa0, 0x40, 0xe2, 0x79, 0xf6, 0x46, - 0x66, 0x43, 0x08, 0xc6, 0x06, 0x34, 0x50, 0xc4, 0xd4, 0x38, 0xee, 0x8b, 0xa4, 0x12, 0x63, 0x19, - 0xd8, 0x01, 0x1d, 0x22, 0x3d, 0x4a, 0xe9, 0xbf, 0xe4, 0xa0, 0xa2, 0x81, 0x05, 0x5b, 0xc4, 0xb8, - 0x16, 0x6b, 0xe8, 0xd8, 0x63, 0xae, 0x5c, 0x3a, 0x35, 0xb3, 0x86, 0xd0, 0x6d, 0x09, 0x14, 0x97, - 0x82, 0x7d, 0x71, 0x66, 0x79, 0xd3, 0xd0, 0x1a, 0xf2, 0x33, 0x9f, 0x73, 0x29, 0x2c, 0x55, 0xed, - 0x8b, 0xb3, 0xc3, 0x69, 0xb8, 0x8d, 0x30, 0x81, 0x25, 0x88, 0x5a, 0xc3, 0x92, 0xa1, 0x18, 0x63, - 0xfb, 0x2a, 0xc6, 0x92, 0xf1, 0x40, 0xb4, 0x44, 0xf9, 0x28, 0x1e, 0x88, 0xd4, 0x96, 0x59, 0x4e, - 0x5e, 0x98, 0xe7, 0xe4, 0xdf, 0x86, 0x55, 0xe2, 0xe4, 0x92, 0x47, 0x58, 0x33, 0x24, 0xb5, 0x8c, - 0xa5, 0x72, 0x92, 0x9a, 0xfc, 0xd5, 0x14, 0x33, 0x50, 0xe7, 0x23, 0x70, 0x7e, 0x4c, 0x27, 0x2a, - 0x63, 0x8a, 0x99, 0xc9, 0xc6, 0x7b, 0xce, 0x8f, 0xb9, 0xc0, 0x44, 0x7f, 0xb3, 0x8e, 0x29, 0x23, - 0x8f, 0xc7, 0x8e, 0x3b, 0x8b, 0x69, 0x5f, 0x25, 0x31, 0xcb, 0x12, 0xd3, 0xbe, 0xd2, 0x31, 0xdf, - 0x87, 0xb5, 0x31, 0x1f, 0x3a, 0x76, 0xb2, 0x59, 0x2b, 0x96, 0x20, 0x96, 0xa9, 0x58, 0xab, 0xd3, - 0x23, 0x0d, 0x52, 0xac, 0xc6, 0x8f, 0xbd, 0xf1, 0x89, 0x43, 0x97, 0x27, 0x79, 0xc0, 0xf3, 0x66, - 0xdd, 0x9d, 0x8e, 0x7f, 0x88, 0x60, 0x51, 0x25, 0x30, 0x6a, 0x50, 0xe9, 0x85, 0xde, 0x44, 0x6d, - 0x73, 0x1d, 0xaa, 0xf4, 0x29, 0xb3, 0x7d, 0xee, 0xc0, 0x6d, 0xa4, 0xcd, 0xbe, 0x37, 0xf1, 0x46, - 0xde, 0xd9, 0x75, 0xc2, 0xa0, 0xf4, 0x9f, 0x32, 0xb0, 0x94, 0x28, 0x95, 0xe7, 0xfc, 0xdb, 0x74, - 0xb0, 0xa2, 0x94, 0x0d, 0x22, 0xe7, 0x45, 0xed, 0xf2, 0x21, 0x44, 0x3a, 0x55, 0x2a, 0x8d, 0xa3, - 0x1d, 0xa7, 0x1a, 0xab, 0x8a, 0x44, 0xdb, 0xad, 0x79, 0xda, 0x96, 0xf5, 0x55, 0x12, 0xb2, 0x6a, - 0xe2, 0x57, 0x65, 0x74, 0xf8, 0x50, 0x4e, 0x39, 0x97, 0x8c, 0x7f, 0xd5, 0x8d, 0x4f, 0x6a, 0x04, - 0xb1, 0x45, 0x2a, 0x30, 0xfe, 0x79, 0x06, 0x20, 0x1e, 0x1d, 0x46, 0xe0, 0x46, 0x17, 0x28, 0xbd, - 0xe2, 0xa3, 0x5d, 0x96, 0x6f, 0x40, 0x35, 0x0a, 0xc4, 0x8b, 0xaf, 0xe4, 0x8a, 0x82, 0x89, 0x7b, - 0xf9, 0x1d, 0x68, 0x9c, 0x8d, 0xbc, 0x13, 0x14, 0x9d, 0xe4, 0x05, 0x4a, 0x39, 0x4f, 0x75, 0x02, - 0xab, 0x6b, 0x31, 0xbe, 0xc0, 0xf3, 0xa9, 0xb1, 0x7a, 0xfa, 0x75, 0x6c, 0xfc, 0x4e, 0x36, 0x8a, - 0x48, 0x8a, 0x57, 0xe2, 0xc5, 0x7a, 0xc6, 0xcf, 0xe3, 0xd8, 0x7e, 0x91, 0x43, 0xe7, 0x23, 0xa8, - 0xfb, 0xc4, 0x1d, 0x15, 0xeb, 0xcc, 0xbf, 0x80, 0x75, 0xd6, 0xfc, 0xc4, 0x95, 0xfb, 0x75, 0x68, - 0xda, 0xc3, 0x0b, 0xee, 0x87, 0x0e, 0x9a, 0x8d, 0x51, 0x50, 0x93, 0x31, 0x40, 0x1a, 0x1c, 0x25, - 0xa2, 0x77, 0xa0, 0x21, 0x33, 0xd0, 0x22, 0x4c, 0xf9, 0xa6, 0x45, 0x0c, 0x16, 0x88, 0xc6, 0xbf, - 0x52, 0x21, 0x50, 0xc9, 0xdd, 0x7d, 0xf1, 0xaa, 0xe8, 0x33, 0xcc, 0xce, 0xbb, 0xac, 0x24, 0x21, - 0x49, 0x6b, 0xb4, 0xe4, 0x47, 0x04, 0x94, 0xb6, 0xe8, 0xe4, 0xb2, 0xe6, 0x5f, 0x65, 0x59, 0x8d, - 0x3f, 0xc9, 0x40, 0x71, 0xd7, 0x9b, 0x08, 0xbd, 0x5c, 0xc8, 0x73, 0x78, 0x4c, 0x22, 0x37, 0xc4, - 0x82, 0xf8, 0xec, 0x0e, 0x5f, 0x9c, 0x89, 0x91, 0x2a, 0x6f, 0xd4, 0x92, 0xf2, 0xc6, 0xf7, 0xe0, - 0x0e, 0x3a, 0x79, 0x7c, 0x6f, 0xe2, 0xf9, 0xe2, 0xa8, 0xda, 0x23, 0x92, 0x3b, 0x3c, 0x37, 0x3c, - 0x57, 0xbc, 0xf3, 0xf6, 0x29, 0xe7, 0x47, 0x1a, 0xc6, 0x7e, 0x84, 0x80, 0xa9, 0x4c, 0xa3, 0xf0, - 0xc2, 0x22, 0x55, 0x51, 0x0a, 0x46, 0xc4, 0x51, 0x1b, 0xa2, 0xa0, 0x83, 0x70, 0x14, 0x8d, 0x8c, - 0xef, 0x42, 0x39, 0xb2, 0x3a, 0xb0, 0x77, 0xa1, 0x7c, 0xee, 0x4d, 0xa4, 0x69, 0x22, 0x93, 0xc8, - 0x56, 0x91, 0xb3, 0x36, 0x4b, 0xe7, 0xf4, 0x47, 0x60, 0xfc, 0x79, 0x11, 0x8a, 0x5d, 0xf7, 0xc2, - 0x73, 0x06, 0x18, 0x44, 0x35, 0xe6, 0x63, 0x4f, 0xa5, 0xc1, 0x8a, 0xbf, 0x31, 0x50, 0x22, 0x7e, - 0x99, 0x22, 0x27, 0x03, 0x25, 0xa2, 0x37, 0x29, 0x56, 0x60, 0xc1, 0xd7, 0x9f, 0x96, 0x28, 0xf8, - 0x18, 0xd6, 0x19, 0x29, 0x6d, 0x05, 0x2d, 0x8d, 0x58, 0xb4, 0x45, 0x4f, 0x1e, 0xe0, 0x92, 0x51, - 0x5a, 0x52, 0x19, 0x21, 0xb8, 0x60, 0xaf, 0x41, 0x51, 0x26, 0x87, 0x50, 0xa8, 0x3d, 0xc5, 0x61, - 0x4a, 0x10, 0x52, 0x83, 0xcf, 0xc9, 0x49, 0x17, 0x49, 0x54, 0x42, 0x4f, 0x97, 0xc0, 0x6d, 0x41, - 0x6b, 0xf7, 0xa0, 0x42, 0xf8, 0x84, 0x52, 0x92, 0x61, 0x4f, 0x08, 0x42, 0x84, 0x94, 0x17, 0x5a, - 0xca, 0xa9, 0x2f, 0xb4, 0x60, 0x94, 0x5c, 0xc4, 0x65, 0x69, 0x8a, 0x40, 0xef, 0x72, 0x68, 0x70, - 0xf5, 0x3c, 0x91, 0x54, 0xee, 0x29, 0x4b, 0x4f, 0x29, 0xf7, 0x6f, 0x42, 0xed, 0xd4, 0x1e, 0x8d, - 0x4e, 0xec, 0xc1, 0x73, 0xd2, 0x49, 0xab, 0x64, 0x86, 0x53, 0x40, 0x54, 0x4a, 0xef, 0x41, 0x45, - 0xdb, 0x65, 0x8c, 0x69, 0xca, 0x9b, 0x10, 0xef, 0xef, 0xac, 0xa9, 0xa9, 0xfe, 0x0a, 0xa6, 0x26, - 0x2d, 0xb6, 0xab, 0x91, 0x8c, 0xed, 0xba, 0x83, 0xdc, 0x54, 0xc6, 0xff, 0x34, 0xe9, 0x11, 0x08, - 0x7b, 0x38, 0xc4, 0xf8, 0x1f, 0x7a, 0x71, 0x0d, 0x17, 0x8f, 0xca, 0x17, 0x49, 0xa8, 0x25, 0x18, - 0xa1, 0xdc, 0x25, 0x7b, 0xe9, 0xc4, 0x76, 0x86, 0x18, 0x4b, 0x4b, 0x6a, 0x6c, 0xd1, 0x1e, 0x87, - 0x47, 0xb6, 0x33, 0x64, 0xf7, 0xa1, 0xaa, 0x8a, 0xf1, 0x76, 0x5c, 0xa2, 0xf5, 0x97, 0xc5, 0xe2, - 0x4e, 0x34, 0xa0, 0x16, 0x61, 0x8c, 0xe3, 0x54, 0xbb, 0x8a, 0x44, 0x41, 0x3a, 0x78, 0x0f, 0x63, - 0x2a, 0x42, 0x8e, 0x09, 0x75, 0xf5, 0x27, 0x77, 0xe4, 0x5c, 0x25, 0x95, 0xaa, 0xff, 0xc9, 0x4b, - 0x43, 0x98, 0x42, 0x10, 0x23, 0x67, 0xd1, 0x6a, 0x42, 0x10, 0x93, 0xa8, 0xe8, 0x2c, 0x22, 0x04, - 0xf6, 0x5d, 0x4d, 0x91, 0x6a, 0x21, 0xf2, 0x6b, 0x33, 0xed, 0xdf, 0x94, 0x4a, 0x70, 0x17, 0xc0, - 0x09, 0xc4, 0x2d, 0x13, 0x70, 0x77, 0x88, 0xb9, 0x71, 0x25, 0xb3, 0xec, 0x04, 0xcf, 0x08, 0xf0, - 0xd5, 0x6a, 0x58, 0x6d, 0xa8, 0xea, 0xd3, 0x64, 0x25, 0xc8, 0x1f, 0x1e, 0x75, 0x0e, 0x9a, 0xb7, - 0x58, 0x05, 0x8a, 0xbd, 0x4e, 0xbf, 0xbf, 0x87, 0x2e, 0xa7, 0x2a, 0x94, 0xa2, 0xcc, 0x9d, 0xac, - 0xf8, 0x6a, 0x6f, 0x6d, 0x75, 0x8e, 0xfa, 0x9d, 0xed, 0x66, 0xee, 0x07, 0xf9, 0x52, 0xb6, 0x99, - 0x33, 0xfe, 0x22, 0x07, 0x15, 0x6d, 0x15, 0x5e, 0xcc, 0x8c, 0xef, 0x02, 0xa0, 0x4a, 0x13, 0x87, - 0x87, 0xe5, 0xcd, 0xb2, 0x80, 0xd0, 0xe6, 0xeb, 0xc6, 0xf2, 0x1c, 0xbd, 0x2e, 0xa2, 0x8c, 0xe5, - 0x6f, 0x42, 0x8d, 0x1e, 0xea, 0xd0, 0x1d, 0x87, 0x05, 0xb3, 0x4a, 0x40, 0xc9, 0xaa, 0x31, 0xf5, - 0x0f, 0x91, 0x30, 0x29, 0x44, 0xa6, 0xed, 0x13, 0x08, 0xd3, 0x42, 0x30, 0xa7, 0x27, 0xf0, 0x46, - 0x17, 0x9c, 0x30, 0x48, 0x22, 0xac, 0x48, 0x58, 0x5f, 0xe6, 0x28, 0x4a, 0x7e, 0xa8, 0xe5, 0x9e, - 0x15, 0xcc, 0x2a, 0x01, 0x65, 0x47, 0xdf, 0x54, 0x04, 0x54, 0x42, 0x02, 0x5a, 0x9b, 0xa7, 0x86, - 0x04, 0xf1, 0xec, 0xcd, 0xd9, 0xb3, 0xca, 0x48, 0x18, 0x5f, 0x9b, 0xaf, 0xf7, 0x72, 0xbb, 0x16, - 0x7b, 0x17, 0xd8, 0x78, 0x32, 0xb1, 0x52, 0x2c, 0x4d, 0x79, 0xb3, 0x31, 0x9e, 0x4c, 0xfa, 0x9a, - 0x21, 0xe6, 0x2b, 0x30, 0x82, 0x7d, 0x0e, 0xac, 0x2d, 0x0e, 0x30, 0x0e, 0x31, 0x32, 0xa1, 0xc6, - 0x6c, 0x39, 0xa3, 0xb3, 0xe5, 0x14, 0xee, 0x97, 0x4d, 0xe5, 0x7e, 0x2f, 0xe2, 0x13, 0xc6, 0x0e, - 0x54, 0x8e, 0xb4, 0x67, 0x80, 0xee, 0x8b, 0x1b, 0x42, 0x3d, 0x00, 0x44, 0x77, 0x07, 0x19, 0xb7, - 0x7c, 0xf9, 0xee, 0x8f, 0x36, 0x9a, 0xac, 0x36, 0x1a, 0xe3, 0x9f, 0x65, 0xe8, 0x89, 0x85, 0x68, - 0xf0, 0xf1, 0xcb, 0x43, 0xca, 0x0f, 0x14, 0xa7, 0x88, 0x56, 0x94, 0xff, 0x47, 0x66, 0x77, 0xe2, - 0xd0, 0x2c, 0xef, 0xf4, 0x34, 0xe0, 0x2a, 0xd9, 0xa9, 0x82, 0xb0, 0x43, 0x04, 0x29, 0xe1, 0x5b, - 0x48, 0xf8, 0x0e, 0xb5, 0x1f, 0xc8, 0xa4, 0x27, 0x21, 0x7c, 0xef, 0xdb, 0x57, 0xb2, 0xd7, 0x40, - 0x88, 0x20, 0xd2, 0x50, 0xad, 0x52, 0xbc, 0xa2, 0x6f, 0xe3, 0x1f, 0xcb, 0x2c, 0xd6, 0xd9, 0xf5, - 0x7d, 0x08, 0xa5, 0xa8, 0xd5, 0xe4, 0x0d, 0xab, 0x30, 0xa3, 0x72, 0x71, 0x8f, 0xa3, 0x56, 0x9e, - 0x18, 0x31, 0x1d, 0x2e, 0x74, 0x36, 0x74, 0xb5, 0x51, 0x7f, 0x03, 0xd8, 0xa9, 0xe3, 0xcf, 0x22, - 0xd3, 0x61, 0x6b, 0x62, 0x89, 0x86, 0x6d, 0x1c, 0xc3, 0x92, 0xe2, 0x12, 0x9a, 0x46, 0x90, 0xdc, - 0xbc, 0xcc, 0x4b, 0x98, 0x7c, 0x76, 0x8e, 0xc9, 0x1b, 0x3f, 0xcd, 0x43, 0x51, 0x3d, 0xa9, 0x95, - 0xf6, 0x0c, 0x54, 0x39, 0xf9, 0x0c, 0x54, 0x2b, 0xf1, 0x64, 0x08, 0x6e, 0xbd, 0xbc, 0xef, 0xdf, - 0x99, 0xbd, 0xb2, 0x35, 0xa3, 0x79, 0xe2, 0xda, 0x5e, 0x85, 0xfc, 0xc4, 0x0e, 0xcf, 0xd1, 0x40, - 0x46, 0xc4, 0x83, 0xdf, 0xca, 0x98, 0x5e, 0x48, 0x1a, 0xd3, 0xd3, 0x9e, 0xcc, 0x22, 0x91, 0x74, - 0xee, 0xc9, 0xac, 0x3b, 0x40, 0xf2, 0x85, 0x16, 0x66, 0x54, 0x42, 0x80, 0xb8, 0x8b, 0x92, 0xe2, - 0x48, 0x69, 0x56, 0x1c, 0x79, 0x65, 0x51, 0xe1, 0xdb, 0xb0, 0x40, 0xe9, 0xe6, 0x32, 0x95, 0x4d, - 0x5d, 0x28, 0x72, 0x0d, 0xd5, 0xff, 0x14, 0x5b, 0x6c, 0x4a, 0x5c, 0xfd, 0xfd, 0x99, 0x4a, 0xe2, - 0xfd, 0x19, 0xdd, 0xc8, 0x5f, 0x4d, 0x1a, 0xf9, 0x1f, 0x40, 0x33, 0x5a, 0x50, 0x34, 0x99, 0xb9, - 0x81, 0x4c, 0x94, 0xa9, 0x2b, 0xb8, 0xe0, 0x92, 0x07, 0x41, 0x7c, 0x21, 0xd6, 0x13, 0x17, 0xa2, - 0xe0, 0x61, 0xed, 0x30, 0xe4, 0xe3, 0x49, 0x28, 0x2f, 0x44, 0x0c, 0xa5, 0xd7, 0x07, 0x98, 0x4c, - 0xf2, 0xac, 0x41, 0xb9, 0x7b, 0x60, 0xed, 0xec, 0x75, 0x9f, 0xee, 0xf6, 0x9b, 0x19, 0xf1, 0xd9, - 0x3b, 0xde, 0xda, 0xea, 0x74, 0xb6, 0xf1, 0xc6, 0x01, 0x58, 0xd8, 0x69, 0x77, 0xc5, 0xed, 0x93, - 0x33, 0x7e, 0x2f, 0x0b, 0x15, 0xad, 0x79, 0xf6, 0x7e, 0xb4, 0x2a, 0xf4, 0x44, 0xc9, 0xdd, 0xf9, - 0x21, 0x6c, 0x28, 0x56, 0xac, 0x2d, 0x4b, 0xf4, 0x40, 0x58, 0xf6, 0xc6, 0x07, 0xc2, 0xd8, 0xdb, - 0xd0, 0xb0, 0xa9, 0x85, 0x68, 0x15, 0xa4, 0x39, 0x58, 0x82, 0xe5, 0x22, 0x60, 0x70, 0x5d, 0x7c, - 0x9f, 0x08, 0xbc, 0xbc, 0x8a, 0x67, 0x8b, 0xae, 0x14, 0x5c, 0xac, 0xe2, 0xa9, 0xed, 0x8c, 0xa6, - 0x3e, 0x97, 0xee, 0xdb, 0xe8, 0x66, 0x26, 0xa8, 0xa9, 0x8a, 0x8d, 0x0f, 0x00, 0xe2, 0x31, 0x27, - 0x17, 0xe7, 0x56, 0x72, 0x71, 0x32, 0xda, 0xe2, 0x64, 0x8d, 0x6d, 0x62, 0x23, 0x72, 0xa1, 0x23, - 0x4f, 0xf5, 0x37, 0x41, 0x59, 0xa4, 0x2c, 0x0c, 0x6f, 0x9d, 0x8c, 0x78, 0xa8, 0xd2, 0x61, 0x17, - 0x65, 0x49, 0x37, 0x2a, 0x50, 0xd9, 0xe9, 0x71, 0x2b, 0x31, 0x37, 0x92, 0x24, 0x39, 0xcb, 0x8d, - 0x24, 0xaa, 0x19, 0x95, 0x1b, 0xeb, 0xd0, 0xda, 0xe6, 0xa2, 0xb5, 0xf6, 0x68, 0x34, 0x33, 0x1c, - 0xe3, 0x0e, 0xdc, 0x4e, 0x29, 0x93, 0x46, 0x88, 0x8f, 0x61, 0xa5, 0x4d, 0x99, 0xaf, 0x5f, 0x55, - 0x8a, 0x8b, 0xd1, 0x82, 0xd5, 0xd9, 0x26, 0x65, 0x67, 0x3b, 0xb0, 0xb8, 0xcd, 0x4f, 0xa6, 0x67, - 0x7b, 0xfc, 0x22, 0xee, 0x88, 0x41, 0x3e, 0x38, 0xf7, 0x2e, 0xe5, 0xfa, 0xe0, 0xdf, 0x18, 0x48, - 0x26, 0x70, 0xac, 0x60, 0xc2, 0x07, 0xca, 0x22, 0x8a, 0x90, 0xde, 0x84, 0x0f, 0x8c, 0xf7, 0x81, - 0xe9, 0xed, 0xc8, 0xf5, 0x12, 0x5a, 0xc2, 0xf4, 0xc4, 0x0a, 0xae, 0x83, 0x90, 0x8f, 0xd5, 0x0b, - 0x38, 0x10, 0x4c, 0x4f, 0x7a, 0x04, 0x31, 0xde, 0x81, 0xea, 0x91, 0x7d, 0x6d, 0xf2, 0xcf, 0x65, - 0xf2, 0xc6, 0x1a, 0x14, 0x27, 0xf6, 0xb5, 0x60, 0x03, 0x91, 0x73, 0x04, 0x8b, 0x8d, 0x3f, 0xcc, - 0xc3, 0x02, 0x61, 0xb2, 0xfb, 0xf4, 0x48, 0xa5, 0xe3, 0xe2, 0x31, 0x54, 0x8c, 0x52, 0x03, 0xcd, - 0xf1, 0xd2, 0xec, 0x3c, 0x2f, 0x95, 0x06, 0x34, 0xf5, 0x38, 0x87, 0x32, 0x63, 0xbb, 0xd3, 0xb1, - 0x7a, 0x91, 0x23, 0x99, 0xfe, 0x99, 0x8f, 0x1f, 0x21, 0xa5, 0xdc, 0xb8, 0xa4, 0xa3, 0x31, 0xd6, - 0x45, 0x68, 0x74, 0xea, 0x8a, 0x90, 0xec, 0x52, 0x07, 0xa5, 0x2a, 0x3c, 0x45, 0x95, 0x16, 0x94, - 0x54, 0x78, 0xe6, 0x14, 0x9b, 0xd2, 0xcb, 0x15, 0x1b, 0xb2, 0xac, 0xbd, 0x40, 0xb1, 0x81, 0x57, - 0x50, 0x6c, 0x5e, 0xc1, 0xc9, 0x77, 0x1b, 0x4a, 0x78, 0xef, 0x6b, 0xdc, 0x53, 0xdc, 0xf7, 0x82, - 0x7b, 0x7e, 0x47, 0x13, 0xfd, 0x29, 0xc2, 0xe0, 0x4e, 0x7c, 0x4c, 0x4c, 0xfe, 0xf9, 0x2f, 0xc7, - 0x79, 0xf2, 0x19, 0x14, 0x25, 0x54, 0x10, 0xb4, 0x6b, 0x8f, 0xd5, 0xfb, 0x46, 0xf8, 0xb7, 0x58, - 0x36, 0x7c, 0x94, 0xe5, 0xf3, 0xa9, 0xe3, 0xf3, 0xa1, 0x7a, 0xd9, 0xc2, 0xc1, 0x33, 0x2a, 0x20, - 0x62, 0x82, 0x42, 0x0d, 0x71, 0xbd, 0x4b, 0x57, 0xe6, 0xb5, 0x17, 0x9d, 0xe0, 0x99, 0xf8, 0x34, - 0x18, 0x34, 0xf1, 0x85, 0xb3, 0x89, 0xe7, 0xab, 0xcb, 0xc9, 0xf8, 0x69, 0x06, 0x9a, 0xf2, 0x74, - 0x45, 0x65, 0xba, 0x16, 0x50, 0xb8, 0xc9, 0x21, 0xfe, 0xe2, 0x77, 0x2a, 0x0c, 0xa8, 0xa1, 0xf1, - 0x23, 0xba, 0xa9, 0xc8, 0x78, 0x53, 0x11, 0xc0, 0x1d, 0x79, 0x5b, 0xbd, 0x0e, 0x15, 0x15, 0xe5, - 0x3a, 0x76, 0x46, 0xea, 0xbd, 0x61, 0x0a, 0x73, 0xdd, 0x77, 0x46, 0xea, 0xa2, 0xf3, 0x6d, 0x99, - 0xa6, 0x96, 0xc1, 0x8b, 0xce, 0xb4, 0x43, 0x6e, 0xfc, 0xbb, 0x0c, 0x2c, 0x6a, 0x53, 0x91, 0xe7, - 0xf6, 0x43, 0xa8, 0x46, 0x4f, 0x0b, 0xf2, 0x48, 0xf2, 0x5a, 0x4b, 0x32, 0x9a, 0xb8, 0x5a, 0x65, - 0x10, 0x41, 0x02, 0x31, 0x98, 0xa1, 0x7d, 0x8d, 0xe3, 0x0d, 0xa6, 0x63, 0xa5, 0xdc, 0x0c, 0xed, - 0xeb, 0x1d, 0xce, 0x7b, 0xd3, 0xb1, 0x50, 0x5d, 0x2f, 0x39, 0x7f, 0x1e, 0x21, 0x90, 0xcc, 0x05, - 0x02, 0x26, 0x31, 0x0c, 0xa8, 0x8d, 0x3d, 0x37, 0x3c, 0x8f, 0x50, 0xa4, 0xd4, 0x89, 0x40, 0xc2, - 0x31, 0xfe, 0x2c, 0x0b, 0x4b, 0x64, 0x62, 0x93, 0xa6, 0x4d, 0xc9, 0xba, 0x5a, 0xb0, 0x40, 0xd6, - 0x46, 0x62, 0x5e, 0xbb, 0xb7, 0x4c, 0xf9, 0xcd, 0xbe, 0xfd, 0x8a, 0x66, 0x41, 0x95, 0x09, 0x77, - 0xc3, 0xf2, 0xe7, 0xe6, 0x97, 0xff, 0xe6, 0xe5, 0x4d, 0xf3, 0xb8, 0x15, 0xd2, 0x3c, 0x6e, 0xaf, - 0xe2, 0xe7, 0x9a, 0x4b, 0x17, 0x2b, 0x4a, 0x1c, 0x2d, 0x5d, 0xec, 0x7d, 0x58, 0x4b, 0xe0, 0x20, - 0xb7, 0x76, 0x4e, 0x1d, 0xae, 0x9e, 0x0d, 0x58, 0xd6, 0xb0, 0x7b, 0xaa, 0x6c, 0xb3, 0x08, 0x85, - 0x60, 0xe0, 0x4d, 0xb8, 0xb1, 0x0a, 0xcb, 0xc9, 0x55, 0x95, 0xd7, 0xc4, 0xef, 0x67, 0xa0, 0x25, - 0xe3, 0x23, 0x1c, 0xf7, 0x6c, 0xd7, 0x09, 0x42, 0xcf, 0x8f, 0x9e, 0xe0, 0xbb, 0x0b, 0x10, 0x84, - 0xb6, 0x2f, 0xb5, 0x4d, 0x99, 0x28, 0x8f, 0x10, 0xd4, 0x24, 0x6f, 0x43, 0x89, 0xbb, 0x43, 0x2a, - 0x24, 0x6a, 0x28, 0x72, 0x77, 0xa8, 0xf4, 0xd0, 0x39, 0xf9, 0xbb, 0x96, 0x54, 0x2f, 0x64, 0xde, - 0xaa, 0x58, 0x1d, 0x7e, 0x81, 0x17, 0x6f, 0x3e, 0xca, 0x5b, 0xdd, 0xb7, 0xaf, 0x30, 0xda, 0x30, - 0x30, 0xfe, 0x7e, 0x16, 0x1a, 0xf1, 0xf8, 0x28, 0xe9, 0xfd, 0xc5, 0xe9, 0xfb, 0xf7, 0x25, 0x39, - 0x38, 0x42, 0x7e, 0xd7, 0x0c, 0x8f, 0x25, 0x3a, 0x9c, 0x5d, 0x97, 0x19, 0x50, 0x51, 0x18, 0xde, - 0x34, 0xd4, 0x5e, 0xc2, 0x2a, 0x13, 0xca, 0xe1, 0x34, 0x14, 0x0a, 0x97, 0xd0, 0x3c, 0x1d, 0x57, - 0xaa, 0x3c, 0x05, 0x7b, 0x1c, 0x76, 0xf1, 0x81, 0x6d, 0x01, 0x16, 0xd5, 0x68, 0x23, 0x05, 0x96, - 0xc0, 0x6f, 0x92, 0x9c, 0x4d, 0x3b, 0x87, 0x32, 0xb6, 0x2e, 0x84, 0xd2, 0x5b, 0xa3, 0x91, 0x10, - 0xfa, 0x3a, 0x54, 0xa8, 0xf1, 0x38, 0x3b, 0x30, 0x6f, 0x96, 0xb1, 0x07, 0x2c, 0x97, 0x46, 0x20, - 0x6f, 0x9a, 0x50, 0x7d, 0x81, 0xba, 0xc2, 0xf0, 0x83, 0xbf, 0x9d, 0x81, 0xdb, 0x29, 0xdb, 0x26, - 0x4f, 0xf9, 0x16, 0x2c, 0x9e, 0x46, 0x85, 0x6a, 0x75, 0xe9, 0xa8, 0xaf, 0x2a, 0xb6, 0x9a, 0x5c, - 0x53, 0xb3, 0x79, 0x9a, 0x04, 0xc4, 0x4a, 0x17, 0xed, 0x60, 0x22, 0x01, 0x14, 0x95, 0x2e, 0xda, - 0x46, 0xd2, 0x77, 0x8e, 0x60, 0xbd, 0x73, 0x25, 0x38, 0xc6, 0x96, 0xfe, 0x42, 0xbc, 0x22, 0xa3, - 0xa4, 0x81, 0x39, 0xf3, 0x4a, 0x06, 0xe6, 0x21, 0xe5, 0xb9, 0x45, 0x6d, 0xfd, 0x3c, 0x8d, 0xe0, - 0x05, 0x2a, 0xea, 0xd0, 0x0b, 0xf7, 0x2a, 0x09, 0x75, 0x10, 0xbd, 0x6c, 0x6f, 0x04, 0xd0, 0xd8, - 0x9f, 0x8e, 0x42, 0x27, 0x7e, 0xec, 0x9e, 0x7d, 0x5b, 0xd6, 0xc1, 0x7e, 0xd4, 0xaa, 0xa5, 0x76, - 0x04, 0x51, 0x47, 0xb8, 0x58, 0x63, 0xd1, 0x90, 0x35, 0xdf, 0x5f, 0x63, 0x9c, 0xec, 0xc1, 0xb8, - 0x0d, 0x6b, 0xf1, 0x17, 0x2d, 0x9b, 0xba, 0x6a, 0xfe, 0x69, 0x86, 0x42, 0x9b, 0x93, 0x0f, 0xef, - 0xb3, 0x0e, 0x2c, 0x05, 0x8e, 0x7b, 0x36, 0xe2, 0x7a, 0xf3, 0x81, 0x5c, 0x84, 0x95, 0xe4, 0xd8, - 0xe4, 0xe3, 0xfc, 0xe6, 0x22, 0xd5, 0x88, 0x5b, 0x0b, 0xd8, 0xe6, 0x4d, 0x83, 0x8c, 0xc9, 0x62, - 0x66, 0x35, 0xe6, 0x07, 0xdf, 0x85, 0x7a, 0xb2, 0x23, 0xf6, 0x1d, 0x99, 0xe3, 0x19, 0x8f, 0x2a, - 0x37, 0x93, 0xae, 0x17, 0x13, 0x44, 0x25, 0x5e, 0xfb, 0xc0, 0xf8, 0xbb, 0x19, 0x68, 0x99, 0x5c, - 0x50, 0xae, 0x36, 0x4a, 0x45, 0x33, 0x1f, 0xce, 0xb5, 0x7a, 0xf3, 0x5c, 0x55, 0xea, 0xa8, 0x1a, - 0xd1, 0x37, 0x6e, 0xdc, 0x8c, 0xdd, 0x5b, 0x73, 0x33, 0xda, 0x2c, 0xc1, 0x02, 0xa1, 0x18, 0x6b, - 0xb0, 0x22, 0xc7, 0xa3, 0xc6, 0x12, 0x7b, 0x0f, 0x13, 0x3d, 0x26, 0xbc, 0x87, 0xeb, 0xd0, 0xa2, - 0x97, 0x14, 0xf5, 0x49, 0xc8, 0x8a, 0xdb, 0xc0, 0xf6, 0xed, 0x81, 0xed, 0x7b, 0x9e, 0x7b, 0xc4, - 0x7d, 0x19, 0x28, 0x8a, 0x12, 0x26, 0x3a, 0xd7, 0x94, 0x28, 0x4c, 0x5f, 0xea, 0xfd, 0x3f, 0xcf, - 0x55, 0x71, 0x31, 0xf4, 0x65, 0x98, 0xb0, 0xb4, 0x69, 0x3f, 0xe7, 0xaa, 0x25, 0xb5, 0x44, 0x1f, - 0x41, 0x65, 0x12, 0x35, 0xaa, 0xd6, 0x5d, 0x25, 0x82, 0xcf, 0x77, 0x6b, 0xea, 0xd8, 0xc6, 0x13, - 0x58, 0x4e, 0xb6, 0x29, 0x59, 0xc7, 0x3a, 0x94, 0xc6, 0x12, 0x26, 0x47, 0x17, 0x7d, 0x1b, 0xbf, - 0x5b, 0x82, 0xa2, 0xd4, 0xe7, 0xd8, 0x06, 0xe4, 0x07, 0x2a, 0x36, 0x29, 0x7e, 0x5f, 0x44, 0x96, - 0xaa, 0xff, 0xb7, 0x30, 0x42, 0x49, 0xe0, 0xb1, 0x8f, 0xa0, 0x9e, 0xf4, 0x8a, 0xce, 0x64, 0x99, - 0x26, 0xdd, 0x99, 0xb5, 0xc1, 0x8c, 0xff, 0xab, 0x1c, 0x5f, 0x8e, 0x24, 0x33, 0x94, 0xce, 0xb5, - 0xdb, 0xd3, 0x73, 0x85, 0xbc, 0x1d, 0x9c, 0xdb, 0xd6, 0x93, 0xf7, 0x3f, 0x90, 0x69, 0xa6, 0x15, - 0x04, 0xf6, 0xce, 0xed, 0x27, 0xef, 0x7f, 0x30, 0x2b, 0x49, 0x53, 0xa6, 0xa1, 0x2e, 0x49, 0x2f, - 0x43, 0x81, 0x1e, 0xba, 0xa3, 0x20, 0x13, 0xfa, 0x60, 0x8f, 0x61, 0x59, 0xaa, 0xad, 0x96, 0x0c, - 0x07, 0x26, 0x2e, 0x58, 0xa2, 0xd4, 0x26, 0x59, 0xd6, 0xc3, 0x22, 0xb2, 0x0d, 0xad, 0xc2, 0xc2, - 0x79, 0xfc, 0x6a, 0x61, 0xcd, 0x94, 0x5f, 0xc6, 0x9f, 0x15, 0xa0, 0xa2, 0x2d, 0x0a, 0xab, 0x42, - 0xc9, 0xec, 0xf4, 0x3a, 0xe6, 0x27, 0x9d, 0xed, 0xe6, 0x2d, 0xf6, 0x00, 0xde, 0xea, 0x1e, 0x6c, - 0x1d, 0x9a, 0x66, 0x67, 0xab, 0x6f, 0x1d, 0x9a, 0x96, 0x7a, 0xe5, 0xe6, 0xa8, 0xfd, 0xd9, 0x7e, - 0xe7, 0xa0, 0x6f, 0x6d, 0x77, 0xfa, 0xed, 0xee, 0x5e, 0xaf, 0x99, 0x61, 0xaf, 0x41, 0x2b, 0xc6, - 0x54, 0xc5, 0xed, 0xfd, 0xc3, 0xe3, 0x83, 0x7e, 0x33, 0xcb, 0xee, 0xc1, 0x9d, 0x9d, 0xee, 0x41, - 0x7b, 0xcf, 0x8a, 0x71, 0xb6, 0xf6, 0xfa, 0x9f, 0x58, 0x9d, 0x5f, 0x3f, 0xea, 0x9a, 0x9f, 0x35, - 0x73, 0x69, 0x08, 0x42, 0x19, 0x57, 0x2d, 0xe4, 0xd9, 0x6d, 0x58, 0x21, 0x04, 0xaa, 0x62, 0xf5, - 0x0f, 0x0f, 0xad, 0xde, 0xe1, 0xe1, 0x41, 0xb3, 0xc0, 0x16, 0xa1, 0xd6, 0x3d, 0xf8, 0xa4, 0xbd, - 0xd7, 0xdd, 0xb6, 0xcc, 0x4e, 0x7b, 0x6f, 0xbf, 0xb9, 0xc0, 0x96, 0xa0, 0x31, 0x8b, 0x57, 0x14, - 0x4d, 0x28, 0xbc, 0xc3, 0x83, 0xee, 0xe1, 0x81, 0xf5, 0x49, 0xc7, 0xec, 0x75, 0x0f, 0x0f, 0x9a, - 0x25, 0xb6, 0x0a, 0x2c, 0x59, 0xb4, 0xbb, 0xdf, 0xde, 0x6a, 0x96, 0xd9, 0x0a, 0x2c, 0x26, 0xe1, - 0xcf, 0x3a, 0x9f, 0x35, 0x81, 0xb5, 0x60, 0x99, 0x06, 0x66, 0x6d, 0x76, 0xf6, 0x0e, 0x3f, 0xb5, - 0xf6, 0xbb, 0x07, 0xdd, 0xfd, 0xe3, 0xfd, 0x66, 0x05, 0xdf, 0xdd, 0xea, 0x74, 0xac, 0xee, 0x41, - 0xef, 0x78, 0x67, 0xa7, 0xbb, 0xd5, 0xed, 0x1c, 0xf4, 0x9b, 0x55, 0xea, 0x39, 0x6d, 0xe2, 0x35, - 0x51, 0x41, 0xe6, 0x0c, 0x58, 0xdb, 0xdd, 0x5e, 0x7b, 0x73, 0xaf, 0xb3, 0xdd, 0xac, 0xb3, 0xbb, - 0x70, 0xbb, 0xdf, 0xd9, 0x3f, 0x3a, 0x34, 0xdb, 0xe6, 0x67, 0x2a, 0xa7, 0xc0, 0xda, 0x69, 0x77, - 0xf7, 0x8e, 0xcd, 0x4e, 0xb3, 0xc1, 0xde, 0x80, 0xbb, 0x66, 0xe7, 0xe3, 0xe3, 0xae, 0xd9, 0xd9, - 0xb6, 0x0e, 0x0e, 0xb7, 0x3b, 0xd6, 0x4e, 0xa7, 0xdd, 0x3f, 0x36, 0x3b, 0xd6, 0x7e, 0xb7, 0xd7, - 0xeb, 0x1e, 0x3c, 0x6d, 0x36, 0xd9, 0x5b, 0x70, 0x3f, 0x42, 0x89, 0x1a, 0x98, 0xc1, 0x5a, 0x14, - 0xf3, 0x53, 0x5b, 0x7a, 0xd0, 0xf9, 0xf5, 0xbe, 0x75, 0xd4, 0xe9, 0x98, 0x4d, 0xc6, 0xd6, 0x61, - 0x35, 0xee, 0x9e, 0x3a, 0x90, 0x7d, 0x2f, 0x89, 0xb2, 0xa3, 0x8e, 0xb9, 0xdf, 0x3e, 0x10, 0x1b, - 0x9c, 0x28, 0x5b, 0x16, 0xc3, 0x8e, 0xcb, 0x66, 0x87, 0xbd, 0xc2, 0x18, 0xd4, 0xb5, 0x5d, 0xd9, - 0x69, 0x9b, 0xcd, 0x55, 0xd6, 0x80, 0xca, 0xfe, 0xd1, 0x91, 0xd5, 0xef, 0xee, 0x77, 0x0e, 0x8f, - 0xfb, 0xcd, 0x35, 0xb6, 0x02, 0xcd, 0xee, 0x41, 0xbf, 0x63, 0x8a, 0xbd, 0x56, 0x55, 0xff, 0x67, - 0x91, 0x2d, 0x43, 0x43, 0x8d, 0x54, 0x41, 0x7f, 0x56, 0x64, 0x6b, 0xc0, 0x8e, 0x0f, 0xcc, 0x4e, - 0x7b, 0x5b, 0x2c, 0x5c, 0x54, 0xf0, 0xbf, 0x8a, 0xd2, 0x43, 0xf2, 0xd3, 0x5c, 0x74, 0x59, 0xc7, - 0x21, 0x07, 0xc9, 0x37, 0x6c, 0xab, 0xda, 0xdb, 0xb3, 0x2f, 0x7b, 0x5d, 0x5e, 0x53, 0xad, 0x72, - 0x73, 0xaa, 0xd5, 0x9c, 0xee, 0x5e, 0xd3, 0x65, 0xbf, 0x37, 0xa1, 0x36, 0xa6, 0xf7, 0x6c, 0xe5, - 0xbb, 0x95, 0x20, 0xe3, 0x6f, 0x08, 0x48, 0x8f, 0x56, 0xce, 0x3d, 0xaf, 0x5e, 0x98, 0x7f, 0x5e, - 0x3d, 0x4d, 0xbe, 0x5f, 0x48, 0x93, 0xef, 0x1f, 0xc2, 0x22, 0xb1, 0x26, 0xc7, 0x75, 0xc6, 0x4a, - 0x6b, 0x26, 0x29, 0xb0, 0x81, 0x2c, 0x8a, 0xe0, 0x4a, 0x9d, 0x50, 0x2a, 0x87, 0x64, 0x21, 0x45, - 0xa9, 0x6d, 0x24, 0x34, 0x0d, 0xe2, 0x1c, 0x91, 0xa6, 0x11, 0xf5, 0x60, 0x5f, 0xc5, 0x3d, 0x54, - 0xb4, 0x1e, 0x08, 0x8e, 0x3d, 0x3c, 0x84, 0x45, 0x7e, 0x15, 0xfa, 0xb6, 0xe5, 0x4d, 0xec, 0xcf, - 0xa7, 0xe8, 0xc2, 0xb5, 0x51, 0x87, 0xaf, 0x9a, 0x0d, 0x2c, 0x38, 0x44, 0xf8, 0xb6, 0x1d, 0xda, - 0x0f, 0xbf, 0x80, 0x8a, 0xf6, 0xd6, 0x31, 0x5b, 0x83, 0xa5, 0x4f, 0xbb, 0xfd, 0x83, 0x4e, 0xaf, - 0x67, 0x1d, 0x1d, 0x6f, 0x3e, 0xeb, 0x7c, 0x66, 0xed, 0xb6, 0x7b, 0xbb, 0xcd, 0x5b, 0xe2, 0xd0, - 0x1e, 0x74, 0x7a, 0xfd, 0xce, 0x76, 0x02, 0x9e, 0x61, 0xaf, 0xc3, 0xfa, 0xf1, 0xc1, 0x71, 0xaf, - 0xb3, 0x6d, 0xa5, 0xd5, 0xcb, 0x0a, 0x2a, 0x95, 0xe5, 0x29, 0xd5, 0x73, 0x0f, 0xbf, 0x0f, 0xf5, - 0xe4, 0x03, 0x9c, 0x0c, 0x60, 0x61, 0xaf, 0xf3, 0xb4, 0xbd, 0xf5, 0x19, 0xbd, 0xcc, 0xd7, 0xeb, - 0xb7, 0xfb, 0xdd, 0x2d, 0x4b, 0xbe, 0xc4, 0x27, 0x38, 0x42, 0x86, 0x55, 0xa0, 0xd8, 0x3e, 0xd8, - 0xda, 0x3d, 0x34, 0x7b, 0xcd, 0xec, 0xc3, 0x8f, 0xa0, 0x39, 0xeb, 0x8f, 0x4a, 0x38, 0xf0, 0x5e, - 0xe4, 0xe9, 0x7b, 0xf8, 0x2f, 0x73, 0x00, 0x71, 0xc2, 0x80, 0x60, 0x35, 0xdb, 0xed, 0x7e, 0x7b, - 0xef, 0x50, 0x4c, 0xc3, 0x3c, 0xec, 0x0b, 0x0e, 0x62, 0x76, 0x3e, 0x6e, 0xde, 0x4a, 0x2d, 0x39, - 0x3c, 0xea, 0x37, 0x33, 0x62, 0xc5, 0xba, 0x07, 0xdd, 0x7e, 0xb7, 0xbd, 0x67, 0x99, 0x87, 0xc7, - 0xdd, 0x83, 0xa7, 0xf4, 0xe4, 0x18, 0x72, 0xd9, 0xe3, 0xa3, 0x1d, 0xf3, 0xf0, 0xa0, 0x6f, 0xf5, - 0x76, 0x8f, 0xfb, 0xdb, 0xf8, 0x60, 0xd9, 0x96, 0xd9, 0x3d, 0xa2, 0x36, 0xf3, 0x2f, 0x42, 0x10, - 0x4d, 0x17, 0xc4, 0x9a, 0x3f, 0x3d, 0xec, 0xf5, 0xba, 0x47, 0xd6, 0xc7, 0xc7, 0x1d, 0xb3, 0xdb, - 0xe9, 0x61, 0xc5, 0x85, 0x14, 0xb8, 0xc0, 0x2f, 0x0a, 0xde, 0xdc, 0xdf, 0xfb, 0x44, 0x32, 0x4f, - 0x81, 0x5a, 0x4a, 0x82, 0x04, 0x56, 0x59, 0xf0, 0x14, 0xc1, 0x7d, 0x52, 0x5a, 0x86, 0x1b, 0xca, - 0x44, 0xbd, 0x8a, 0xe0, 0xab, 0x73, 0x9b, 0x81, 0xd5, 0xaa, 0xe9, 0x45, 0xa2, 0x16, 0xb2, 0xdc, - 0xe8, 0x82, 0xda, 0xde, 0x36, 0xb1, 0x42, 0x7d, 0x0e, 0x2a, 0x70, 0x1b, 0x62, 0xa3, 0x04, 0x7b, - 0x12, 0x28, 0x4d, 0xf5, 0x21, 0x4a, 0x16, 0x9f, 0xfc, 0x4e, 0x0e, 0xea, 0x94, 0xbc, 0x45, 0x3f, - 0x35, 0xc5, 0x7d, 0xb6, 0x0f, 0x45, 0xf9, 0x9b, 0x65, 0x6c, 0x25, 0x7a, 0x0d, 0x4a, 0xff, 0x95, - 0xb4, 0xf5, 0xd5, 0x59, 0xb0, 0x14, 0xc7, 0x96, 0xfe, 0xda, 0x9f, 0xfe, 0x8f, 0xbf, 0x97, 0xad, - 0xb1, 0xca, 0xa3, 0x8b, 0xf7, 0x1e, 0x9d, 0x71, 0x37, 0x10, 0x6d, 0xfc, 0xff, 0x00, 0xf1, 0x2f, - 0x71, 0xb1, 0x56, 0xe4, 0x84, 0x9a, 0xf9, 0x99, 0xb2, 0xf5, 0xdb, 0x29, 0x25, 0xb2, 0xdd, 0xdb, - 0xd8, 0xee, 0x92, 0x51, 0x17, 0xed, 0x3a, 0xae, 0x13, 0xd2, 0xaf, 0x72, 0x7d, 0x98, 0x79, 0xc8, - 0x86, 0x50, 0xd5, 0x7f, 0x23, 0x8b, 0x29, 0x49, 0x29, 0xe5, 0x57, 0xbe, 0xd6, 0xef, 0xa4, 0x96, - 0x29, 0x19, 0x14, 0xfb, 0x58, 0x31, 0x9a, 0xa2, 0x8f, 0x29, 0x62, 0xc4, 0xbd, 0x8c, 0x48, 0x2a, - 0x8f, 0x7f, 0x0a, 0x8b, 0xbd, 0xa6, 0xc9, 0x55, 0x73, 0x3f, 0xc4, 0xb5, 0x7e, 0xf7, 0x86, 0x52, - 0xd9, 0xd7, 0x5d, 0xec, 0x6b, 0xcd, 0x60, 0xa2, 0xaf, 0x01, 0xe2, 0xa8, 0x1f, 0xe2, 0xfa, 0x30, - 0xf3, 0xf0, 0xc9, 0x5f, 0x3e, 0x80, 0x72, 0x14, 0xcc, 0xc9, 0x7e, 0x0b, 0x6a, 0x89, 0xec, 0x3a, - 0xa6, 0xa6, 0x91, 0x96, 0x8c, 0xb7, 0xfe, 0x5a, 0x7a, 0xa1, 0xec, 0xf8, 0x75, 0xec, 0xb8, 0xc5, - 0x56, 0x45, 0xc7, 0x32, 0x7b, 0xed, 0x11, 0x66, 0xc3, 0xd2, 0xdb, 0x5a, 0xcf, 0x35, 0xed, 0x83, - 0x3a, 0x7b, 0x6d, 0x56, 0x23, 0x48, 0xf4, 0x76, 0xf7, 0x86, 0x52, 0xd9, 0xdd, 0x6b, 0xd8, 0xdd, - 0x2a, 0x5b, 0xd6, 0xbb, 0x53, 0xa1, 0x97, 0x8c, 0xe3, 0x7b, 0x76, 0xfa, 0x2f, 0x45, 0xb1, 0xbb, - 0xf1, 0xeb, 0x63, 0x29, 0xbf, 0x20, 0x15, 0x91, 0xc8, 0xfc, 0xcf, 0x48, 0x19, 0x2d, 0xec, 0x8a, - 0x31, 0xdc, 0x3e, 0xfd, 0x87, 0xa2, 0xd8, 0x09, 0x54, 0xb4, 0x1f, 0x57, 0x60, 0xb7, 0x6f, 0xfc, - 0x21, 0x88, 0xf5, 0xf5, 0xb4, 0xa2, 0xb4, 0xa9, 0xe8, 0xed, 0x3f, 0x3a, 0xe5, 0x9c, 0xfd, 0x06, - 0x94, 0xa3, 0x27, 0xfb, 0xd9, 0x9a, 0xf6, 0x13, 0x0a, 0xfa, 0x4f, 0x0c, 0xac, 0xb7, 0xe6, 0x0b, - 0xd2, 0x88, 0x4f, 0x6f, 0x5d, 0x10, 0xdf, 0xa7, 0x50, 0xd1, 0x9e, 0xe5, 0x8f, 0x26, 0x30, 0xff, - 0xf4, 0x7f, 0x34, 0x81, 0x94, 0x57, 0xfc, 0x8d, 0x45, 0xec, 0xa2, 0xc2, 0xca, 0x48, 0xdf, 0xe1, - 0x95, 0x17, 0xb0, 0x3d, 0x58, 0x91, 0x9a, 0xd6, 0x09, 0xff, 0x32, 0xdb, 0x90, 0xf2, 0xe3, 0x5c, - 0x8f, 0x33, 0xec, 0x23, 0x28, 0xa9, 0x5f, 0x5f, 0x60, 0xab, 0xe9, 0xbf, 0x22, 0xb1, 0xbe, 0x36, - 0x07, 0x97, 0x6a, 0xd1, 0x67, 0x00, 0xf1, 0x6f, 0x00, 0x44, 0x4c, 0x62, 0xee, 0x37, 0x05, 0x22, - 0x0a, 0x98, 0xff, 0xc1, 0x00, 0x63, 0x15, 0x27, 0xd8, 0x64, 0xc8, 0x24, 0x5c, 0x7e, 0xa9, 0x1e, - 0x1d, 0xfd, 0x11, 0x54, 0xb4, 0x9f, 0x01, 0x88, 0x96, 0x6f, 0xfe, 0x27, 0x04, 0xa2, 0xe5, 0x4b, - 0xf9, 0xd5, 0x00, 0x63, 0x1d, 0x5b, 0x5f, 0x36, 0x1a, 0xa2, 0x75, 0x21, 0x6a, 0x49, 0x91, 0x47, - 0x6c, 0xd0, 0x39, 0xd4, 0x12, 0x6f, 0xfd, 0x47, 0x27, 0x34, 0xed, 0x97, 0x04, 0xa2, 0x13, 0x9a, - 0xfa, 0xf3, 0x00, 0x8a, 0xce, 0x8c, 0x45, 0xd1, 0xcf, 0x05, 0xa2, 0x68, 0x3d, 0xfd, 0x10, 0x2a, - 0xda, 0xbb, 0xfd, 0xd1, 0x5c, 0xe6, 0x7f, 0x22, 0x20, 0x9a, 0x4b, 0xda, 0x33, 0xff, 0xcb, 0xd8, - 0x47, 0xdd, 0x40, 0x52, 0xc0, 0x67, 0x13, 0x45, 0xdb, 0xbf, 0x05, 0xf5, 0xe4, 0x53, 0xfe, 0xd1, - 0xd9, 0x4f, 0xfd, 0x4d, 0x80, 0xe8, 0xec, 0xdf, 0xf0, 0xfe, 0xbf, 0x24, 0xe9, 0x87, 0x4b, 0x51, - 0x27, 0x8f, 0x7e, 0x22, 0xd3, 0x52, 0xbe, 0x60, 0x1f, 0x0b, 0x06, 0x27, 0x5f, 0xed, 0x64, 0x6b, - 0x1a, 0xd5, 0xea, 0xcf, 0x7f, 0x46, 0xe7, 0x65, 0xee, 0x81, 0xcf, 0x24, 0x31, 0x63, 0xe3, 0xec, - 0x29, 0x2c, 0x45, 0xc4, 0x1c, 0x3d, 0xc3, 0x19, 0x44, 0x73, 0x48, 0x7d, 0xec, 0x73, 0xbd, 0x39, - 0x5b, 0xfa, 0x38, 0x43, 0xd7, 0x1f, 0x3e, 0x7e, 0xa8, 0x5d, 0x7f, 0xfa, 0x4b, 0x9c, 0xda, 0xf5, - 0x97, 0x78, 0x23, 0x71, 0xf6, 0xfa, 0x0b, 0x1d, 0xd1, 0x86, 0x0b, 0x8d, 0xd9, 0x47, 0x31, 0xef, - 0xde, 0x94, 0xf6, 0x4f, 0xcd, 0xbf, 0xfe, 0xe2, 0x57, 0x01, 0x92, 0xac, 0x48, 0x71, 0xd3, 0x47, - 0x32, 0xf8, 0x84, 0xfd, 0x26, 0x54, 0xf5, 0xf7, 0xc1, 0x99, 0xce, 0x13, 0x66, 0x7b, 0xba, 0x93, - 0x5a, 0x96, 0xa4, 0x12, 0x56, 0xd5, 0xbb, 0x61, 0x9f, 0xc0, 0x6a, 0xb4, 0xcc, 0x7a, 0xde, 0x7a, - 0xc0, 0xee, 0xa5, 0x64, 0xb3, 0x27, 0x16, 0xfb, 0xf6, 0x8d, 0xe9, 0xee, 0x8f, 0x33, 0x82, 0xfa, - 0x92, 0x0f, 0x15, 0xc7, 0x37, 0x4f, 0xda, 0xfb, 0xcc, 0xf1, 0xcd, 0x93, 0xfa, 0xba, 0xb1, 0xa2, - 0x3e, 0xb6, 0x94, 0x58, 0x23, 0x0a, 0xcb, 0x65, 0x3f, 0x84, 0x86, 0x96, 0x94, 0xdf, 0xbb, 0x76, - 0x07, 0xd1, 0x49, 0x9a, 0x7f, 0x69, 0x6f, 0x3d, 0xcd, 0x36, 0x69, 0xac, 0x61, 0xfb, 0x8b, 0x46, - 0x62, 0x71, 0xc4, 0x29, 0xda, 0x82, 0x8a, 0x9e, 0xf0, 0xff, 0x82, 0x76, 0xd7, 0xb4, 0x22, 0xfd, - 0x51, 0xb7, 0xc7, 0x19, 0xb6, 0x07, 0xcd, 0xd9, 0x37, 0xa8, 0x22, 0x9e, 0x92, 0xf6, 0x6e, 0xd6, - 0xfa, 0x4c, 0x61, 0xe2, 0xe5, 0x2a, 0x76, 0x44, 0x89, 0x1d, 0xd1, 0x2f, 0x59, 0x79, 0xfe, 0xec, - 0xad, 0x9e, 0xfc, 0x85, 0xab, 0xa8, 0xb5, 0xb4, 0xdf, 0x36, 0x7b, 0x90, 0x79, 0x9c, 0x61, 0xbf, - 0x97, 0x81, 0x6a, 0xe2, 0xdd, 0x97, 0x44, 0xe8, 0xfc, 0xcc, 0x3c, 0x5b, 0x7a, 0x99, 0x3e, 0x51, - 0xc3, 0xc4, 0x45, 0xdc, 0x7b, 0xf8, 0x83, 0xc4, 0x26, 0xfd, 0x24, 0xe1, 0xda, 0xdb, 0x98, 0xfd, - 0xa9, 0xab, 0x2f, 0x66, 0x11, 0xf4, 0x07, 0x14, 0xbf, 0x78, 0x9c, 0x61, 0xff, 0x3a, 0x03, 0xf5, - 0xa4, 0xcf, 0x3e, 0x9a, 0x6e, 0x6a, 0x74, 0x40, 0x44, 0x4a, 0x37, 0x38, 0xfa, 0x7f, 0x88, 0xa3, - 0xec, 0x3f, 0x34, 0x13, 0xa3, 0x94, 0x4f, 0x6c, 0xff, 0x62, 0xa3, 0x65, 0x1f, 0xd2, 0x2f, 0x4b, - 0xaa, 0x50, 0x26, 0x36, 0xff, 0x4b, 0x84, 0x11, 0xf9, 0xe9, 0xbf, 0xdb, 0x87, 0x9b, 0xf0, 0x23, - 0xfa, 0x49, 0x27, 0x15, 0x19, 0x23, 0xa8, 0xf8, 0x55, 0xeb, 0x1b, 0x6f, 0xe1, 0x9c, 0x5e, 0x37, - 0x6e, 0x27, 0xe6, 0x34, 0x2b, 0x78, 0xb4, 0x69, 0x74, 0xf2, 0x67, 0xf7, 0xe2, 0x9b, 0x73, 0xee, - 0xa7, 0xf8, 0x6e, 0x1e, 0xe4, 0x98, 0x06, 0x29, 0xd1, 0x13, 0x47, 0xed, 0x15, 0x9b, 0x31, 0x1e, - 0xe2, 0x58, 0xdf, 0x32, 0xee, 0xdd, 0x38, 0xd6, 0x47, 0xe8, 0x7f, 0x17, 0x23, 0x3e, 0x02, 0x88, - 0x43, 0x0d, 0xd9, 0x4c, 0xc0, 0x5b, 0xc4, 0x80, 0xe6, 0xa3, 0x11, 0x93, 0xe7, 0x59, 0xc5, 0xc5, - 0x89, 0x16, 0x7f, 0x83, 0xd8, 0x69, 0x14, 0x8a, 0xa7, 0x4b, 0x5f, 0xc9, 0xa8, 0xc0, 0x84, 0xf4, - 0x35, 0xdb, 0x7e, 0x82, 0x99, 0x46, 0x71, 0x77, 0xc7, 0x50, 0xdb, 0xf3, 0xbc, 0xe7, 0xd3, 0x49, - 0x14, 0xde, 0x9e, 0x0c, 0x8a, 0xd9, 0xb5, 0x83, 0xf3, 0xf5, 0x99, 0x59, 0x18, 0xf7, 0xb1, 0xa9, - 0x75, 0xd6, 0xd2, 0x9a, 0x7a, 0xf4, 0x93, 0x38, 0xbe, 0xf1, 0x0b, 0x66, 0xc3, 0x62, 0xc4, 0xa3, - 0xe3, 0x18, 0xc2, 0x64, 0x33, 0x09, 0xce, 0x3c, 0xdb, 0x45, 0x42, 0x4d, 0x50, 0xa3, 0x7d, 0x14, - 0xa8, 0x36, 0x1f, 0x67, 0xd8, 0x11, 0x54, 0xb7, 0xf9, 0x00, 0x13, 0xf5, 0x31, 0xb4, 0x64, 0x29, - 0x11, 0xa6, 0x40, 0x31, 0x29, 0xeb, 0xb5, 0x04, 0x30, 0x79, 0x6f, 0x4d, 0xec, 0x6b, 0x9f, 0x7f, - 0xfe, 0xe8, 0x27, 0x32, 0x68, 0xe5, 0x0b, 0x75, 0x6f, 0xa9, 0xa0, 0x9e, 0xc4, 0xbd, 0x35, 0x13, - 0x05, 0x94, 0xb8, 0xb7, 0xe6, 0xa2, 0x80, 0x12, 0x4b, 0xad, 0x82, 0x8a, 0xd8, 0x08, 0x16, 0xe7, - 0x02, 0x87, 0xa2, 0x2b, 0xeb, 0xa6, 0x70, 0xa3, 0xf5, 0xfb, 0x37, 0x23, 0x24, 0x7b, 0x7b, 0x98, - 0xec, 0xad, 0x07, 0x35, 0x7a, 0xd3, 0xf1, 0x84, 0x53, 0xca, 0xde, 0xcc, 0x7b, 0x37, 0x7a, 0x3e, - 0xe0, 0xec, 0x05, 0x83, 0x65, 0x49, 0x09, 0x07, 0x73, 0xe5, 0xd8, 0x6f, 0x40, 0xe5, 0x29, 0x0f, - 0x55, 0x8e, 0x5e, 0x24, 0x63, 0xcf, 0x24, 0xed, 0xad, 0xa7, 0xa4, 0xf8, 0x25, 0x69, 0x06, 0x5b, - 0x7b, 0xc4, 0x87, 0x67, 0x9c, 0x98, 0x93, 0xe5, 0x0c, 0xbf, 0x60, 0xbf, 0x8e, 0x8d, 0x47, 0xa9, - 0xd1, 0xab, 0x5a, 0x12, 0x96, 0xde, 0x78, 0x63, 0x06, 0x9e, 0xd6, 0xb2, 0xeb, 0x0d, 0xb9, 0x26, - 0xeb, 0xb9, 0x50, 0xd1, 0x9e, 0x50, 0x88, 0x0e, 0xd0, 0xfc, 0x93, 0x19, 0xd1, 0x01, 0x4a, 0x79, - 0x71, 0xc1, 0x78, 0x80, 0xfd, 0x18, 0xec, 0x7e, 0xdc, 0x0f, 0xbd, 0xb2, 0x10, 0xf7, 0xf4, 0xe8, - 0x27, 0xf6, 0x38, 0xfc, 0x82, 0x7d, 0x8a, 0x2f, 0xa7, 0xeb, 0x39, 0x88, 0xb1, 0xd2, 0x30, 0x9b, - 0xae, 0x18, 0x2d, 0x96, 0x56, 0x94, 0x54, 0x24, 0xa8, 0x2b, 0x94, 0xe4, 0xde, 0x07, 0xe8, 0x85, - 0xde, 0x64, 0xdb, 0xe6, 0x63, 0xcf, 0x8d, 0x79, 0x6d, 0x9c, 0x15, 0x17, 0xf3, 0x2f, 0x2d, 0x35, - 0x8e, 0x7d, 0xaa, 0x69, 0x59, 0x89, 0x34, 0x4e, 0x45, 0x5c, 0x37, 0x26, 0xce, 0x45, 0x0b, 0x92, - 0x92, 0x3c, 0xf7, 0x38, 0xc3, 0xda, 0x00, 0x71, 0xe4, 0x58, 0xa4, 0x33, 0xcd, 0x05, 0xa5, 0x45, - 0x6c, 0x2f, 0x25, 0xcc, 0xec, 0x08, 0xca, 0x71, 0xc8, 0xcd, 0x5a, 0xfc, 0x22, 0x4c, 0x22, 0x40, - 0x27, 0xba, 0xc1, 0xe7, 0xc2, 0x5d, 0x8c, 0x26, 0x2e, 0x15, 0xb0, 0x92, 0x58, 0xaa, 0x53, 0xce, - 0x03, 0xe6, 0xc0, 0x12, 0x0d, 0x30, 0x12, 0x97, 0x30, 0x9b, 0x2b, 0x7a, 0x20, 0x7f, 0x3e, 0xf2, - 0x24, 0x3a, 0xcd, 0xa9, 0xf1, 0x13, 0x09, 0xd3, 0x8f, 0xa0, 0x56, 0xca, 0x24, 0x13, 0xac, 0x79, - 0x0c, 0x8b, 0x73, 0x2e, 0xfa, 0xe8, 0x48, 0xdf, 0x14, 0x73, 0x11, 0x1d, 0xe9, 0x1b, 0xbd, 0xfb, - 0xc6, 0x0a, 0x76, 0xd9, 0x30, 0x00, 0x55, 0xbd, 0x4b, 0x27, 0x1c, 0x9c, 0x8b, 0xee, 0xfe, 0x45, - 0x06, 0x96, 0x52, 0x9c, 0xf0, 0xec, 0x0d, 0x65, 0x35, 0xb8, 0xd1, 0x41, 0xbf, 0x9e, 0xea, 0xac, - 0x35, 0x7a, 0xd8, 0xcf, 0x3e, 0x7b, 0x96, 0xb8, 0xd8, 0xc8, 0x57, 0x2a, 0x4f, 0xe6, 0x0b, 0x85, - 0x8a, 0x54, 0x89, 0xe2, 0x73, 0x58, 0xa3, 0x81, 0xb4, 0x47, 0xa3, 0x19, 0x47, 0xf2, 0xeb, 0x73, - 0xbf, 0x3c, 0x9f, 0x70, 0x8e, 0xaf, 0xdf, 0xfc, 0xcb, 0xf4, 0x37, 0x88, 0xd3, 0x34, 0x54, 0x36, - 0x85, 0xe6, 0xac, 0x83, 0x96, 0xdd, 0xdc, 0xd6, 0xfa, 0xbd, 0x84, 0xfe, 0x9b, 0xe2, 0xd4, 0xfd, - 0x1a, 0x76, 0x76, 0xcf, 0x58, 0x4f, 0x5b, 0x17, 0x52, 0x89, 0xc5, 0x7e, 0xfc, 0xd5, 0xc8, 0x9b, - 0x3c, 0x33, 0x4f, 0xd5, 0xc1, 0x4d, 0xbe, 0xef, 0x48, 0x03, 0x4f, 0x77, 0x46, 0xbf, 0x8d, 0xdd, - 0xdf, 0x37, 0xee, 0xa4, 0x75, 0xef, 0x53, 0x15, 0xd2, 0xc5, 0xd7, 0x66, 0xcf, 0xb5, 0x1a, 0xc1, - 0xfd, 0xb4, 0xfd, 0xbe, 0x51, 0x17, 0x9a, 0x59, 0xeb, 0x5b, 0x28, 0xdb, 0x55, 0x75, 0xef, 0x71, - 0x74, 0x7c, 0x52, 0xdc, 0xd4, 0xd1, 0xf1, 0x49, 0x73, 0x37, 0x27, 0xe5, 0x1a, 0xe5, 0x68, 0xfe, - 0x30, 0xf3, 0x70, 0xf3, 0x9d, 0x1f, 0x7e, 0xed, 0xcc, 0x09, 0xcf, 0xa7, 0x27, 0x1b, 0x03, 0x6f, - 0xfc, 0x68, 0xa4, 0xac, 0x8d, 0x32, 0xe5, 0xf9, 0xd1, 0xc8, 0x1d, 0x3e, 0xc2, 0x66, 0x4f, 0x16, - 0x26, 0xbe, 0x17, 0x7a, 0xdf, 0xfa, 0xbf, 0x01, 0x00, 0x00, 0xff, 0xff, 0xc3, 0xc3, 0x75, 0xd6, - 0x5c, 0x83, 0x00, 0x00, + 0xff, 0xb9, 0x32, 0x4a, 0xcb, 0x47, 0xe3, 0xc7, 0x68, 0x4d, 0x89, 0x3c, 0xee, 0xa4, 0x18, 0x0a, + 0xf2, 0xa0, 0xd7, 0x1b, 0x9c, 0xdb, 0xd2, 0xc0, 0x53, 0x42, 0x40, 0xef, 0xdc, 0x9e, 0x23, 0x8f, + 0xec, 0xbc, 0xd3, 0xfd, 0x2d, 0xa8, 0x2b, 0x1f, 0x7f, 0x60, 0x8d, 0xf8, 0x69, 0x28, 0xc9, 0xbd, + 0x2a, 0x1d, 0xfc, 0xc1, 0x1e, 0x3f, 0x0d, 0x8d, 0x7d, 0x58, 0x94, 0x04, 0x79, 0x38, 0xe1, 0xaa, + 0xeb, 0xef, 0xa6, 0xc9, 0xd3, 0x95, 0x27, 0x4b, 0xc9, 0x83, 0x96, 0x62, 0x17, 0x12, 0x42, 0xb6, + 0xf1, 0x31, 0x30, 0xfd, 0x18, 0x96, 0xed, 0x49, 0xa9, 0x56, 0xd9, 0xf2, 0x95, 0x4b, 0x2c, 0x92, + 0x9d, 0x9d, 0xa1, 0x58, 0x9d, 0x60, 0x3a, 0x18, 0xa8, 0xd8, 0x8b, 0x92, 0xa9, 0x1e, 0x8d, 0x3f, + 0xc9, 0xc0, 0x12, 0x36, 0xa6, 0xf4, 0x01, 0xc9, 0x64, 0x7f, 0xee, 0x41, 0x8a, 0xf7, 0xa3, 0xcb, + 0x3e, 0xf4, 0xf0, 0xe5, 0xad, 0xa7, 0xf9, 0x39, 0xeb, 0xe9, 0xd7, 0xa1, 0x39, 0xe4, 0x23, 0x07, + 0xc3, 0x70, 0x94, 0x28, 0x41, 0x1a, 0x40, 0x43, 0xc1, 0xa5, 0x36, 0x68, 0xfc, 0x83, 0x0c, 0x2c, + 0x92, 0xa4, 0x82, 0x7a, 0xb5, 0x5c, 0xa8, 0x8f, 0x94, 0x22, 0x29, 0x59, 0x95, 0x9c, 0x53, 0x7c, + 0x82, 0x23, 0x94, 0x90, 0x77, 0x6f, 0x49, 0x05, 0x53, 0x42, 0xd9, 0x87, 0xa8, 0xc3, 0xb8, 0x16, + 0x02, 0x53, 0xc2, 0x7a, 0x92, 0x2f, 0x65, 0xf7, 0x16, 0x2a, 0x38, 0x2e, 0x82, 0x36, 0x4b, 0x42, + 0xb3, 0x15, 0x60, 0x63, 0x07, 0x6a, 0x89, 0x6e, 0x12, 0x26, 0xde, 0x2a, 0x99, 0x78, 0xe7, 0xdc, + 0x28, 0xd9, 0x79, 0x37, 0xca, 0xdf, 0xc8, 0x03, 0x13, 0x24, 0x35, 0xf3, 0xd6, 0x66, 0x7c, 0x90, + 0xd9, 0x39, 0x1f, 0xe4, 0x63, 0x60, 0x1a, 0x82, 0x72, 0x8d, 0xe6, 0x22, 0xd7, 0x68, 0x33, 0xc6, + 0x95, 0x9e, 0xd1, 0xc7, 0xb0, 0x2c, 0x05, 0xda, 0xc8, 0xe9, 0x88, 0xb6, 0x3b, 0x7a, 0x3f, 0x8c, + 0x24, 0x5b, 0xe5, 0x7c, 0x44, 0x3b, 0x9e, 0xf2, 0x3f, 0x0a, 0x1d, 0x9c, 0x4c, 0x5e, 0xe8, 0x7f, + 0x54, 0xda, 0xb7, 0x46, 0x05, 0x0b, 0x2f, 0xa5, 0x82, 0xe2, 0x1c, 0x15, 0x68, 0x16, 0x98, 0x52, + 0xd2, 0x02, 0x63, 0x40, 0x4d, 0x79, 0x19, 0x29, 0xb8, 0x82, 0xa4, 0xb7, 0x8a, 0x74, 0x35, 0x62, + 0x80, 0xc5, 0x03, 0x68, 0x2a, 0x33, 0x49, 0x64, 0xe3, 0xa1, 0xc0, 0x01, 0x69, 0x65, 0xdb, 0x52, + 0x96, 0x9e, 0x84, 0x45, 0xbd, 0x32, 0x63, 0x51, 0x7f, 0x17, 0x16, 0x03, 0x41, 0x44, 0xd6, 0xd4, + 0x95, 0x51, 0x3e, 0x7c, 0x88, 0xaa, 0x53, 0xc9, 0x6c, 0x62, 0xc1, 0x71, 0x0c, 0x9f, 0xb7, 0x5f, + 0xd4, 0x52, 0xec, 0x17, 0xef, 0xc7, 0x0e, 0xb9, 0xe0, 0xdc, 0x19, 0xe3, 0xc1, 0x1d, 0x47, 0xc4, + 0xc8, 0x05, 0xee, 0x9d, 0x3b, 0x63, 0x53, 0x79, 0x7f, 0xc5, 0x83, 0xf1, 0xef, 0x32, 0xd0, 0x14, + 0x74, 0x90, 0xa0, 0xf3, 0x5f, 0x01, 0xdc, 0x91, 0xaf, 0x48, 0xe6, 0x15, 0x81, 0xab, 0xa8, 0xfc, + 0x3b, 0x80, 0x64, 0x6b, 0x09, 0x3d, 0x51, 0x12, 0x79, 0x2b, 0x49, 0xe4, 0x31, 0x23, 0xdb, 0xbd, + 0x45, 0x0a, 0x80, 0x80, 0xa4, 0x39, 0x42, 0xf3, 0x29, 0x8e, 0x50, 0x6d, 0x2b, 0xec, 0x02, 0x3c, + 0xe3, 0xd7, 0x7b, 0xde, 0x00, 0x35, 0xb4, 0xbb, 0x00, 0x82, 0x20, 0x4f, 0xed, 0xb1, 0x23, 0xad, + 0x2b, 0x05, 0xb3, 0xfc, 0x9c, 0x5f, 0xef, 0x20, 0x40, 0xbc, 0x0d, 0x51, 0x1c, 0xef, 0x87, 0x82, + 0x59, 0x7a, 0xce, 0xaf, 0x69, 0x33, 0x58, 0x50, 0x7b, 0xc6, 0xaf, 0xb7, 0x39, 0x89, 0x6b, 0x9e, + 0x2f, 0x28, 0xc1, 0xb7, 0x2f, 0x85, 0x7c, 0x96, 0x70, 0x62, 0x56, 0x7c, 0xfb, 0xf2, 0x19, 0xbf, + 0x56, 0x0e, 0xd5, 0xa2, 0x28, 0x1f, 0x79, 0x03, 0x79, 0x02, 0xa9, 0x70, 0x8c, 0x78, 0x50, 0xe6, + 0xc2, 0x73, 0xfc, 0x6d, 0xfc, 0x65, 0x06, 0x6a, 0x62, 0xfc, 0xc8, 0xe0, 0xc4, 0xba, 0xab, 0xa8, + 0x9e, 0x4c, 0x1c, 0xd5, 0xf3, 0x44, 0xf2, 0x07, 0xe2, 0x96, 0xd9, 0x9b, 0xb9, 0x25, 0x2e, 0x30, + 0xb1, 0xca, 0xf7, 0xa0, 0x4c, 0x7b, 0x4b, 0x6c, 0xd6, 0x5c, 0xe2, 0x2d, 0x25, 0x26, 0x64, 0x96, + 0x10, 0xed, 0x19, 0x05, 0x11, 0x68, 0x96, 0x3a, 0x5a, 0xe2, 0xb2, 0x1f, 0xd9, 0xe7, 0x52, 0x5e, + 0x43, 0xe1, 0x86, 0x20, 0x02, 0xdd, 0x0c, 0xb6, 0x30, 0x67, 0x06, 0x3b, 0x86, 0x8a, 0x46, 0x74, + 0x68, 0xf7, 0x8b, 0x66, 0x47, 0x14, 0x9a, 0xa4, 0xaa, 0xc4, 0xf2, 0xec, 0xde, 0x32, 0x6b, 0x03, + 0x1d, 0xb0, 0xb9, 0x00, 0x79, 0x51, 0xc9, 0xf8, 0x08, 0x16, 0xb5, 0x66, 0x49, 0x5d, 0x4d, 0x1b, + 0x74, 0x26, 0xcd, 0x89, 0xfe, 0x0f, 0x33, 0xb0, 0x2c, 0x6b, 0x63, 0x88, 0x98, 0x23, 0xce, 0xf3, + 0xfd, 0xe0, 0x8c, 0xfd, 0x0a, 0xd4, 0x44, 0xeb, 0x96, 0xcf, 0xcf, 0x9c, 0x20, 0xe4, 0xca, 0x47, + 0x92, 0xb2, 0x7b, 0x04, 0x5b, 0x17, 0xa8, 0xa6, 0xc4, 0x64, 0x1f, 0x41, 0x05, 0xab, 0x92, 0x42, + 0x2d, 0xdf, 0x5b, 0x6b, 0xbe, 0x22, 0x0d, 0x75, 0xf7, 0x96, 0x09, 0x41, 0xf4, 0xb4, 0x59, 0x86, + 0x62, 0xe8, 0x3b, 0x67, 0x67, 0xdc, 0x37, 0x56, 0xa3, 0xa1, 0x89, 0xad, 0xc8, 0x7b, 0x21, 0x9f, + 0x08, 0x29, 0xc9, 0xf8, 0x8f, 0x19, 0xa8, 0xc8, 0xcd, 0xf5, 0x73, 0x3b, 0x46, 0xd6, 0xb5, 0x18, + 0x47, 0xd2, 0x9d, 0xe3, 0x90, 0xc6, 0x77, 0xa0, 0x31, 0x16, 0x12, 0x93, 0x90, 0xe8, 0x13, 0x5e, + 0x91, 0xba, 0x02, 0x4b, 0x81, 0x65, 0x03, 0x96, 0x50, 0x7e, 0x09, 0xac, 0xd0, 0x19, 0x59, 0xaa, + 0x50, 0xc6, 0x13, 0x2e, 0x52, 0x51, 0xdf, 0x19, 0xed, 0xcb, 0x02, 0x71, 0x8c, 0x07, 0xa1, 0x7d, + 0xc6, 0x25, 0x6d, 0xd0, 0x83, 0xd1, 0x82, 0xd5, 0x19, 0x61, 0x5e, 0x29, 0x22, 0xff, 0xbd, 0x01, + 0x6b, 0x73, 0x45, 0x52, 0x21, 0x89, 0xbc, 0x01, 0x23, 0x67, 0x7c, 0xe2, 0x45, 0xb6, 0xb2, 0x8c, + 0xe6, 0x0d, 0xd8, 0x13, 0x25, 0xca, 0x56, 0xc6, 0x61, 0x45, 0x11, 0x04, 0x1a, 0xbb, 0x22, 0x79, + 0x3f, 0x8b, 0xd2, 0xe8, 0x7b, 0x49, 0x4e, 0x36, 0xdb, 0x9d, 0x82, 0xeb, 0xe7, 0xe3, 0xd2, 0x64, + 0x0e, 0x16, 0xb0, 0x53, 0x68, 0x45, 0x74, 0x27, 0x05, 0x28, 0x4d, 0x79, 0x11, 0x3d, 0x7d, 0xe3, + 0x25, 0x3d, 0x25, 0xac, 0x28, 0xe6, 0xaa, 0x22, 0x57, 0x6a, 0x2c, 0xea, 0xe7, 0x02, 0x5e, 0x57, + 0xfd, 0xa0, 0x30, 0x34, 0xdf, 0x5b, 0xfe, 0x95, 0xe6, 0x85, 0xd6, 0xa1, 0x64, 0x97, 0x77, 0x64, + 0xc3, 0x51, 0x91, 0xde, 0xef, 0x39, 0xac, 0x5e, 0xda, 0x4e, 0xa8, 0xe6, 0xa7, 0xe9, 0x4d, 0x05, + 0xec, 0xef, 0xc9, 0x4b, 0xfa, 0xfb, 0x94, 0x2a, 0x27, 0xc4, 0xc3, 0xe5, 0xcb, 0x79, 0x60, 0xb0, + 0xfe, 0x6f, 0xb2, 0x50, 0x4f, 0xb6, 0x22, 0x36, 0xb5, 0x64, 0x54, 0x4a, 0xe0, 0x90, 0x02, 0xbb, + 0xb4, 0xe1, 0x1e, 0x90, 0xa0, 0x31, 0x6f, 0x5d, 0xce, 0xa6, 0x58, 0x97, 0x75, 0xa3, 0x6e, 0xee, + 0x65, 0x5e, 0xb4, 0xfc, 0x2b, 0x79, 0xd1, 0x0a, 0x69, 0x5e, 0xb4, 0x9b, 0x5d, 0x2f, 0x0b, 0x3f, + 0x97, 0xeb, 0xa5, 0x78, 0xb3, 0xeb, 0x65, 0xfd, 0x2f, 0x33, 0xc0, 0xe6, 0x29, 0x95, 0x3d, 0x25, + 0x43, 0xba, 0xcb, 0x47, 0x92, 0x8b, 0x7d, 0xf3, 0xd5, 0xa8, 0x5d, 0xbd, 0x20, 0x55, 0x9b, 0x3d, + 0x82, 0x25, 0x3d, 0x02, 0x59, 0xd7, 0x65, 0x6a, 0x26, 0xd3, 0x8b, 0x62, 0x8d, 0x57, 0x73, 0x21, + 0xe6, 0x5f, 0xea, 0x42, 0x2c, 0xbc, 0xd4, 0x85, 0xb8, 0x90, 0x74, 0x21, 0xae, 0xff, 0x97, 0x0c, + 0x2c, 0xa5, 0x10, 0xd5, 0x57, 0x37, 0x67, 0x41, 0x0b, 0x09, 0x16, 0x93, 0x95, 0xb4, 0xa0, 0x73, + 0x97, 0x3d, 0xa8, 0xc4, 0x5e, 0x29, 0x15, 0xa1, 0xff, 0xf0, 0x65, 0x3b, 0x3d, 0xae, 0x61, 0xea, + 0xd5, 0xd7, 0xbf, 0x80, 0x8a, 0x56, 0x26, 0x16, 0x91, 0x28, 0x48, 0x0b, 0xdc, 0xa0, 0x43, 0x1e, + 0x15, 0xb1, 0x7b, 0x20, 0x2d, 0xbd, 0x54, 0x4e, 0xb4, 0x2e, 0x4f, 0x74, 0x44, 0xd8, 0x80, 0x25, + 0xe5, 0xe3, 0xe0, 0x71, 0x7c, 0x96, 0x64, 0xfb, 0x8b, 0xd2, 0xd3, 0xc1, 0xa3, 0x70, 0xaf, 0xf5, + 0x9f, 0x40, 0x2d, 0xc1, 0x11, 0xbe, 0xba, 0xb5, 0x9c, 0x55, 0x2b, 0x69, 0xac, 0xba, 0x5a, 0xb9, + 0xfe, 0x7f, 0x72, 0xc0, 0xe6, 0x99, 0xd2, 0x2f, 0x73, 0x08, 0xf3, 0x6f, 0x3c, 0x97, 0xf2, 0xc6, + 0xff, 0x9f, 0x1d, 0x92, 0xef, 0xc2, 0xa2, 0x4c, 0x01, 0xd1, 0x5c, 0x40, 0x44, 0xf5, 0xcd, 0xa8, + 0x40, 0x8d, 0xe2, 0x3b, 0xb3, 0xae, 0xe8, 0x52, 0x22, 0xea, 0x5d, 0x93, 0x12, 0x66, 0x3c, 0xd2, + 0xc7, 0xb0, 0x60, 0xbb, 0x83, 0x73, 0xcf, 0x47, 0x8d, 0xa6, 0xfe, 0xe4, 0x57, 0xbf, 0xf4, 0x39, + 0xb1, 0xd1, 0xc6, 0xfa, 0x28, 0x9a, 0x98, 0xb2, 0x31, 0xe3, 0x3d, 0xa8, 0x68, 0x60, 0x74, 0x8b, + 0x74, 0xf7, 0x37, 0x0f, 0x9b, 0xb7, 0x58, 0x0d, 0xca, 0x66, 0x67, 0xeb, 0xf0, 0x93, 0x8e, 0xd9, + 0xd9, 0x6e, 0x66, 0x58, 0x09, 0xf2, 0x7b, 0x87, 0xbd, 0x7e, 0x33, 0x6b, 0xac, 0x43, 0x4b, 0xb6, + 0x38, 0x6f, 0x22, 0xfd, 0xdd, 0x7c, 0x64, 0x9d, 0xc0, 0x42, 0xa9, 0x8c, 0x7c, 0x0b, 0xaa, 0xfa, + 0x19, 0x2e, 0x29, 0x62, 0xc6, 0x0b, 0x29, 0xd4, 0x10, 0x4f, 0x63, 0x82, 0x5b, 0x40, 0xbe, 0xa5, + 0x61, 0x54, 0x8d, 0x04, 0xb3, 0x17, 0x38, 0x23, 0x50, 0xe6, 0x4c, 0x90, 0xe1, 0xff, 0x07, 0xf5, + 0xa4, 0xbd, 0x50, 0x6e, 0xf5, 0x34, 0xa9, 0x5c, 0xd4, 0x4e, 0x18, 0x10, 0xd9, 0xf7, 0xa1, 0x39, + 0x6b, 0x6f, 0x94, 0xc1, 0xc1, 0x37, 0xd4, 0x6f, 0x38, 0x49, 0x13, 0x24, 0xdb, 0x85, 0xe5, 0x34, + 0x29, 0x06, 0xe9, 0xe3, 0x66, 0x75, 0x8c, 0xcd, 0x4b, 0x2a, 0xec, 0xbb, 0xd2, 0xac, 0x5c, 0x48, + 0x73, 0xce, 0x69, 0x8b, 0xbd, 0x41, 0xff, 0x34, 0x03, 0xf3, 0x05, 0x40, 0x0c, 0x63, 0x4d, 0xa8, + 0x1e, 0x1e, 0x75, 0x0e, 0xac, 0xad, 0xdd, 0xf6, 0xc1, 0x41, 0x67, 0xaf, 0x79, 0x8b, 0x31, 0xa8, + 0xa3, 0x57, 0x6d, 0x3b, 0x82, 0x65, 0x04, 0x4c, 0x9a, 0xf7, 0x15, 0x2c, 0xcb, 0x96, 0xa1, 0xd9, + 0x3d, 0x98, 0x81, 0xe6, 0x58, 0x0b, 0x96, 0x8f, 0x3a, 0xe4, 0x88, 0x4b, 0xb4, 0x9b, 0x17, 0x92, + 0xb1, 0x9c, 0xae, 0x90, 0x8c, 0x29, 0x95, 0x49, 0xee, 0x03, 0x25, 0x30, 0xfe, 0x5e, 0x06, 0x56, + 0x66, 0x0a, 0xe2, 0x00, 0x75, 0x12, 0x17, 0x93, 0x82, 0x62, 0x15, 0x81, 0x6a, 0x37, 0xbd, 0x0b, + 0x8b, 0x91, 0x8a, 0x3d, 0xc3, 0xee, 0x9b, 0x51, 0x81, 0x42, 0x7e, 0x04, 0x4b, 0x9a, 0xa6, 0x3e, + 0xc3, 0x2b, 0x98, 0x56, 0x24, 0x2b, 0x18, 0x6b, 0x51, 0x20, 0xf0, 0xcc, 0xa8, 0x87, 0x94, 0x1f, + 0xa5, 0x17, 0xc4, 0x56, 0xf7, 0xe4, 0x78, 0xd5, 0x23, 0x7b, 0x3c, 0x43, 0x08, 0xc9, 0xd1, 0xea, + 0x2f, 0x5c, 0x75, 0xff, 0x07, 0x0b, 0xc0, 0x3e, 0x9e, 0x72, 0xff, 0x1a, 0x03, 0xd0, 0x83, 0x97, + 0x45, 0x64, 0x29, 0x75, 0x34, 0xfb, 0x4a, 0x49, 0x26, 0x69, 0x49, 0x1e, 0xf9, 0x97, 0x27, 0x79, + 0x14, 0x5e, 0x96, 0xe4, 0xf1, 0x26, 0xd4, 0x9c, 0x33, 0xd7, 0x13, 0xac, 0x50, 0x88, 0x7c, 0x41, + 0x6b, 0xe1, 0x7e, 0xee, 0x41, 0xd5, 0xac, 0x4a, 0xa0, 0x10, 0xf8, 0x02, 0xf6, 0x51, 0x8c, 0xc4, + 0x87, 0x67, 0x98, 0x90, 0xa4, 0x33, 0xc1, 0xce, 0xf0, 0x8c, 0x4b, 0xed, 0x1b, 0xed, 0x51, 0xaa, + 0xb2, 0x80, 0x07, 0xec, 0x2d, 0xa8, 0x07, 0xde, 0x54, 0x48, 0xd0, 0x6a, 0x19, 0xc8, 0x2e, 0x5f, + 0x25, 0xe8, 0x91, 0x72, 0xc2, 0x2c, 0x4d, 0x03, 0x6e, 0x8d, 0x9d, 0x20, 0x10, 0x72, 0xcf, 0xc0, + 0x73, 0x43, 0xdf, 0x1b, 0x49, 0x53, 0xfb, 0xe2, 0x34, 0xe0, 0xfb, 0x54, 0xb2, 0x45, 0x05, 0xec, + 0xdb, 0xf1, 0x90, 0x26, 0xb6, 0xe3, 0x07, 0x2d, 0xc0, 0x21, 0xa9, 0x99, 0xa2, 0xa0, 0x6a, 0x3b, + 0x7e, 0x34, 0x16, 0xf1, 0x10, 0xcc, 0x24, 0x9f, 0x54, 0x66, 0x93, 0x4f, 0x7e, 0x94, 0x9e, 0x7c, + 0x52, 0xc3, 0xa6, 0x1f, 0xcb, 0xa6, 0xe7, 0x5f, 0xf1, 0x97, 0xca, 0x41, 0x99, 0xcf, 0xa9, 0xa9, + 0x7f, 0x99, 0x9c, 0x9a, 0x46, 0x5a, 0x4e, 0xcd, 0x7b, 0x50, 0xc1, 0x6c, 0x07, 0xeb, 0xdc, 0x11, + 0xc2, 0x11, 0xb9, 0x0e, 0x9a, 0x7a, 0x3a, 0xc4, 0xae, 0xe3, 0x86, 0x26, 0xf8, 0xea, 0x67, 0x30, + 0x9f, 0xde, 0xb2, 0xf8, 0x4b, 0x4c, 0x6f, 0x91, 0x59, 0x19, 0x1b, 0x50, 0x52, 0xef, 0x89, 0x31, + 0xc8, 0x9f, 0xfa, 0xde, 0x58, 0x99, 0x54, 0xc5, 0x6f, 0x56, 0x87, 0x6c, 0xe8, 0xc9, 0xca, 0xd9, + 0xd0, 0x33, 0x7e, 0x13, 0x2a, 0x1a, 0xa9, 0xb1, 0x37, 0xc8, 0x78, 0x23, 0x94, 0x10, 0x29, 0xb5, + 0xd1, 0x2a, 0x96, 0x25, 0xb4, 0x3b, 0x14, 0xfc, 0x66, 0xe8, 0xf8, 0x1c, 0x13, 0xd1, 0x2c, 0x9f, + 0x5f, 0x70, 0x3f, 0x50, 0x26, 0xee, 0x66, 0x54, 0x60, 0x12, 0xdc, 0xf8, 0x2b, 0xb0, 0x94, 0x78, + 0xb7, 0x92, 0x45, 0xbc, 0x05, 0x0b, 0xb8, 0x6e, 0xca, 0x05, 0x99, 0x4c, 0x33, 0x91, 0x65, 0x98, + 0x61, 0x4c, 0xd6, 0x79, 0x6b, 0xe2, 0x7b, 0x27, 0xd8, 0x49, 0xc6, 0xac, 0x48, 0xd8, 0x91, 0xef, + 0x9d, 0x18, 0x7f, 0x96, 0x83, 0xdc, 0xae, 0x37, 0xd1, 0xa3, 0x6e, 0x32, 0x73, 0x51, 0x37, 0x52, + 0xb3, 0xb2, 0x22, 0xcd, 0x49, 0x0a, 0xc3, 0x68, 0x97, 0x56, 0xda, 0xd3, 0x03, 0xa8, 0x0b, 0x3e, + 0x11, 0x7a, 0x42, 0x35, 0xbd, 0xb4, 0x7d, 0x12, 0x35, 0x73, 0xb4, 0xf9, 0xec, 0x71, 0xd8, 0xf7, + 0x76, 0x08, 0xce, 0x96, 0x21, 0x17, 0xe9, 0x05, 0x58, 0x2c, 0x1e, 0xd9, 0x2a, 0x2c, 0x60, 0xf8, + 0xe5, 0xb5, 0xf4, 0xb1, 0xc9, 0x27, 0xf6, 0x4d, 0x58, 0x4a, 0xb6, 0x4b, 0xac, 0x48, 0xca, 0x46, + 0x7a, 0xc3, 0xc8, 0x93, 0x6e, 0x83, 0xe0, 0x23, 0x84, 0x23, 0x5d, 0xf5, 0xa7, 0x9c, 0x63, 0x91, + 0xc6, 0xf4, 0x4a, 0x09, 0xa6, 0x77, 0x0f, 0x2a, 0xe1, 0xe8, 0xc2, 0x9a, 0xd8, 0xd7, 0x23, 0xcf, + 0x1e, 0xca, 0xfd, 0x0d, 0xe1, 0xe8, 0xe2, 0x88, 0x20, 0xec, 0x11, 0xc0, 0x78, 0x32, 0x91, 0x7b, + 0x0f, 0xcd, 0xbc, 0x31, 0x29, 0xef, 0x1f, 0x1d, 0x11, 0xc9, 0x99, 0xe5, 0xf1, 0x64, 0x42, 0x3f, + 0xd9, 0x36, 0xd4, 0x53, 0x93, 0xc5, 0xee, 0xaa, 0x68, 0x41, 0x6f, 0xb2, 0x91, 0xb2, 0x39, 0x6b, + 0x03, 0x1d, 0xb6, 0xfe, 0x7d, 0x60, 0xbf, 0x60, 0xca, 0x56, 0x1f, 0xca, 0xd1, 0xf8, 0xf4, 0x8c, + 0x27, 0x8c, 0xff, 0xad, 0x24, 0x32, 0x9e, 0xda, 0xc3, 0xa1, 0x2f, 0xf8, 0x22, 0x1d, 0x98, 0x11, + 0xcb, 0x07, 0xed, 0xc4, 0x6c, 0x13, 0xdf, 0x37, 0xfe, 0x22, 0x03, 0x05, 0x4a, 0xbf, 0x7a, 0x1b, + 0x1a, 0x84, 0x1f, 0x45, 0x30, 0x49, 0xcf, 0x1c, 0x9d, 0xbb, 0x7d, 0x19, 0xbc, 0x24, 0xb6, 0x85, + 0x96, 0x3a, 0x9a, 0x8d, 0xde, 0xbc, 0x96, 0x3e, 0x7a, 0x0f, 0xca, 0x51, 0xd7, 0x1a, 0xe9, 0x94, + 0x54, 0xcf, 0xec, 0x75, 0xc8, 0x9f, 0x7b, 0x13, 0x65, 0xe2, 0x80, 0x78, 0x25, 0x4d, 0x84, 0xc7, + 0x63, 0x11, 0x7d, 0xd0, 0xe0, 0xa5, 0x6a, 0x1e, 0x75, 0x82, 0x64, 0x30, 0x3f, 0xc7, 0x85, 0x94, + 0x39, 0x1e, 0x43, 0x43, 0xf0, 0x01, 0xcd, 0x43, 0x7e, 0xf3, 0xa1, 0xf9, 0x75, 0x21, 0xe1, 0x0d, + 0x46, 0xd3, 0x21, 0xd7, 0x0d, 0x4c, 0x18, 0x4e, 0x23, 0xe1, 0x4a, 0xb2, 0x36, 0xfe, 0x20, 0x43, + 0xfc, 0x45, 0xb4, 0xcb, 0x1e, 0x40, 0x5e, 0x9c, 0x6f, 0x33, 0x06, 0xd0, 0x28, 0x10, 0x5b, 0xe0, + 0x99, 0x88, 0x81, 0xf9, 0xd6, 0xd3, 0x71, 0xb2, 0xf5, 0x9a, 0x59, 0x71, 0xa7, 0xe3, 0xc8, 0x46, + 0xf3, 0x35, 0x35, 0xad, 0x19, 0xfb, 0x06, 0xcd, 0x3e, 0xda, 0xa6, 0x1b, 0x5a, 0x5c, 0x4e, 0x3e, + 0x71, 0x62, 0x2a, 0x29, 0x70, 0x78, 0xc6, 0xb5, 0x78, 0x9c, 0x3f, 0xca, 0x42, 0x2d, 0x31, 0x22, + 0x0c, 0x4c, 0x12, 0x07, 0x00, 0x59, 0xdf, 0xe5, 0xfb, 0x06, 0x01, 0x92, 0x82, 0xba, 0xb6, 0x4e, + 0xd9, 0xc4, 0x3a, 0x45, 0xb1, 0x00, 0x39, 0x3d, 0x16, 0xe0, 0x31, 0x94, 0xe3, 0x94, 0xe1, 0xe4, + 0x90, 0x44, 0x7f, 0x2a, 0x1c, 0x3d, 0x46, 0x8a, 0xa3, 0x07, 0x0a, 0x7a, 0xf4, 0xc0, 0xf7, 0x34, + 0x67, 0xf3, 0x02, 0x36, 0x63, 0xa4, 0xad, 0xe8, 0x2f, 0xc5, 0xd5, 0x6c, 0x7c, 0x04, 0x15, 0x6d, + 0xf0, 0xba, 0x53, 0x39, 0x93, 0x70, 0x2a, 0x47, 0x89, 0x23, 0xd9, 0x38, 0x71, 0xc4, 0xf8, 0xed, + 0x2c, 0xd4, 0xc4, 0xfe, 0x72, 0xdc, 0xb3, 0x23, 0x6f, 0xe4, 0x0c, 0xd0, 0x1a, 0x1f, 0xed, 0x30, + 0x29, 0x68, 0xa9, 0x7d, 0x26, 0xb7, 0x18, 0xc9, 0x59, 0x7a, 0x7e, 0x1c, 0x31, 0xe9, 0x28, 0x3f, + 0xce, 0x80, 0x9a, 0x60, 0x8c, 0x27, 0x76, 0xc0, 0xb5, 0x84, 0x66, 0xb3, 0x72, 0xca, 0xf9, 0xa6, + 0x1d, 0x10, 0x87, 0xfc, 0x26, 0x2c, 0x09, 0x1c, 0x4c, 0x0d, 0x1a, 0x3b, 0xa3, 0x91, 0x43, 0x98, + 0x64, 0xc1, 0x69, 0x9e, 0x72, 0x6e, 0xda, 0x21, 0xdf, 0x17, 0x05, 0x32, 0xff, 0xb9, 0x34, 0x74, + 0x02, 0xfb, 0x24, 0x0e, 0x1f, 0x8b, 0x9e, 0xd1, 0x87, 0x66, 0x5f, 0x69, 0x3e, 0x34, 0xca, 0x11, + 0xac, 0x8c, 0xed, 0xab, 0xc8, 0x87, 0x36, 0x43, 0x49, 0xc5, 0x59, 0x4a, 0x32, 0xfe, 0x43, 0x16, + 0x2a, 0x1a, 0x59, 0xbe, 0xca, 0xe9, 0x7a, 0x77, 0xce, 0x7b, 0x52, 0xd6, 0x1d, 0x25, 0x6f, 0x26, + 0xbb, 0x44, 0x57, 0x3b, 0x65, 0x5a, 0x6b, 0x04, 0x7c, 0x07, 0xca, 0x62, 0xd7, 0xbd, 0x87, 0xb6, + 0x46, 0x79, 0x4f, 0x00, 0x02, 0x8e, 0xa6, 0x27, 0xaa, 0xf0, 0x09, 0x16, 0x16, 0xe2, 0xc2, 0x27, + 0xa2, 0xf0, 0x45, 0x31, 0xa3, 0xdf, 0x81, 0xaa, 0x6c, 0x15, 0xdf, 0x29, 0x4e, 0x37, 0xde, 0xf5, + 0x89, 0xf7, 0x6d, 0x56, 0xa8, 0x3b, 0x7a, 0xf9, 0xb2, 0xe2, 0x13, 0x55, 0xb1, 0xf4, 0xb2, 0x8a, + 0x4f, 0xe8, 0xc1, 0xd8, 0x89, 0xc2, 0x70, 0x31, 0xcc, 0x43, 0xf1, 0xb1, 0x47, 0xb0, 0xa4, 0xd8, + 0xd5, 0xd4, 0xb5, 0x5d, 0xd7, 0x9b, 0xba, 0x03, 0xae, 0x32, 0x4a, 0x98, 0x2c, 0x3a, 0x8e, 0x4b, + 0x8c, 0x61, 0x94, 0x72, 0x48, 0xe1, 0x22, 0x0f, 0xa1, 0x40, 0x72, 0x39, 0x09, 0x1f, 0xe9, 0x8c, + 0x8b, 0x50, 0xd8, 0x03, 0x28, 0x90, 0x78, 0x9e, 0xbd, 0x91, 0xd9, 0x10, 0x82, 0xb1, 0x01, 0x0d, + 0x14, 0x31, 0x35, 0x8e, 0xfb, 0x22, 0xa9, 0xc4, 0x58, 0x06, 0x76, 0x40, 0x9b, 0x48, 0x0f, 0x63, + 0xfa, 0xaf, 0x39, 0xa8, 0x68, 0x60, 0xc1, 0x16, 0x31, 0xf0, 0xc5, 0x1a, 0x3a, 0xf6, 0x98, 0x2b, + 0x97, 0x4e, 0xcd, 0xac, 0x21, 0x74, 0x5b, 0x02, 0xc5, 0xa1, 0x60, 0x5f, 0x9c, 0x59, 0xde, 0x34, + 0xb4, 0x86, 0xfc, 0xcc, 0xe7, 0x5c, 0x0a, 0x4b, 0x55, 0xfb, 0xe2, 0xec, 0x70, 0x1a, 0x6e, 0x23, + 0x4c, 0x60, 0x09, 0xa2, 0xd6, 0xb0, 0x64, 0xac, 0xc6, 0xd8, 0xbe, 0x8a, 0xb1, 0x64, 0xc0, 0x10, + 0x2d, 0x51, 0x3e, 0x0a, 0x18, 0x22, 0xb5, 0x65, 0x96, 0x93, 0x17, 0xe6, 0x39, 0xf9, 0xb7, 0x61, + 0x95, 0x38, 0xb9, 0xe4, 0x11, 0xd6, 0x0c, 0x49, 0x2d, 0x63, 0xa9, 0x9c, 0xa4, 0x26, 0x7f, 0x35, + 0xc5, 0x0c, 0xd4, 0xfe, 0x08, 0x9c, 0x1f, 0xd3, 0x8e, 0xca, 0x98, 0x62, 0x66, 0xb2, 0xf1, 0x9e, + 0xf3, 0x63, 0x2e, 0x30, 0xd1, 0x21, 0xad, 0x63, 0xca, 0xd0, 0xe4, 0xb1, 0xe3, 0xce, 0x62, 0xda, + 0x57, 0x49, 0xcc, 0xb2, 0xc4, 0xb4, 0xaf, 0x74, 0xcc, 0xf7, 0x61, 0x6d, 0xcc, 0x87, 0x8e, 0x9d, + 0x6c, 0xd6, 0x8a, 0x25, 0x88, 0x65, 0x2a, 0xd6, 0xea, 0xf4, 0x48, 0x83, 0x14, 0xab, 0xf1, 0x63, + 0x6f, 0x7c, 0xe2, 0xd0, 0xe1, 0x49, 0x2e, 0xf2, 0xbc, 0x59, 0x77, 0xa7, 0xe3, 0x1f, 0x22, 0x58, + 0x54, 0x09, 0x8c, 0x1a, 0x54, 0x7a, 0xa1, 0x37, 0x51, 0xaf, 0xb9, 0x0e, 0x55, 0x7a, 0x94, 0xf9, + 0x42, 0x77, 0xe0, 0x36, 0xd2, 0x66, 0xdf, 0x9b, 0x78, 0x23, 0xef, 0xec, 0x3a, 0x61, 0x50, 0xfa, + 0x4f, 0x19, 0x58, 0x4a, 0x94, 0xca, 0x7d, 0xfe, 0x6d, 0xda, 0x58, 0x51, 0xd2, 0x07, 0x91, 0xf3, + 0xa2, 0x76, 0xf8, 0x10, 0x22, 0xed, 0x2a, 0x95, 0x08, 0xd2, 0x8e, 0x93, 0x95, 0x55, 0x45, 0xa2, + 0xed, 0xd6, 0x3c, 0x6d, 0xcb, 0xfa, 0x2a, 0x8d, 0x59, 0x35, 0xf1, 0xab, 0x32, 0x7c, 0x7c, 0x28, + 0xa7, 0x9c, 0x4b, 0x06, 0xc8, 0xea, 0xc6, 0x27, 0x35, 0x82, 0xd8, 0x22, 0x15, 0x18, 0xff, 0x2c, + 0x03, 0x10, 0x8f, 0x0e, 0x43, 0x74, 0xa3, 0x03, 0x94, 0xee, 0x01, 0xd2, 0x0e, 0xcb, 0x37, 0xa0, + 0x1a, 0x45, 0xea, 0xc5, 0x47, 0x72, 0x45, 0xc1, 0xc4, 0xb9, 0xfc, 0x0e, 0x34, 0xce, 0x46, 0xde, + 0x09, 0x8a, 0x4e, 0xf2, 0x00, 0xa5, 0xac, 0xa9, 0x3a, 0x81, 0xd5, 0xb1, 0x18, 0x1f, 0xe0, 0xf9, + 0xd4, 0x60, 0x3e, 0xfd, 0x38, 0x36, 0x7e, 0x27, 0x1b, 0x85, 0x2c, 0xc5, 0x2b, 0xf1, 0x62, 0x3d, + 0xe3, 0xe7, 0xf1, 0x7c, 0xbf, 0xc8, 0xa1, 0xf3, 0x11, 0xd4, 0x7d, 0xe2, 0x8e, 0x8a, 0x75, 0xe6, + 0x5f, 0xc0, 0x3a, 0x6b, 0x7e, 0xe2, 0xc8, 0xfd, 0x3a, 0x34, 0xed, 0xe1, 0x05, 0xf7, 0x43, 0x07, + 0xcd, 0xc6, 0x28, 0xa8, 0xc9, 0x20, 0x21, 0x0d, 0x8e, 0x12, 0xd1, 0x3b, 0xd0, 0x90, 0x39, 0x6c, + 0x11, 0xa6, 0xbc, 0x15, 0x23, 0x06, 0x0b, 0x44, 0xe3, 0x5f, 0xaa, 0x18, 0xa9, 0xe4, 0xdb, 0x7d, + 0xf1, 0xaa, 0xe8, 0x33, 0xcc, 0xce, 0xbb, 0xac, 0x24, 0x21, 0x49, 0x6b, 0xb4, 0xe4, 0x47, 0x04, + 0x94, 0xb6, 0xe8, 0xe4, 0xb2, 0xe6, 0x5f, 0x65, 0x59, 0x8d, 0xff, 0x9c, 0x81, 0xe2, 0xae, 0x37, + 0x11, 0x7a, 0xb9, 0x90, 0xe7, 0x70, 0x9b, 0x44, 0x6e, 0x88, 0x05, 0xf1, 0xd8, 0x1d, 0xbe, 0x38, + 0x55, 0x23, 0x55, 0xde, 0xa8, 0x25, 0xe5, 0x8d, 0xef, 0xc1, 0x1d, 0x74, 0xf2, 0xf8, 0xde, 0xc4, + 0xf3, 0xc5, 0x56, 0xb5, 0x47, 0x24, 0x77, 0x78, 0x6e, 0x78, 0xae, 0x78, 0xe7, 0xed, 0x53, 0xce, + 0x8f, 0x34, 0x8c, 0xfd, 0x08, 0x01, 0x93, 0xa1, 0x46, 0xe1, 0x85, 0x45, 0xaa, 0xa2, 0x14, 0x8c, + 0x88, 0xa3, 0x36, 0x44, 0x41, 0x07, 0xe1, 0x28, 0x1a, 0x19, 0xdf, 0x85, 0x72, 0x64, 0x75, 0x60, + 0xef, 0x42, 0xf9, 0xdc, 0x9b, 0x48, 0xd3, 0x44, 0x26, 0x91, 0xce, 0x22, 0x67, 0x6d, 0x96, 0xce, + 0xe9, 0x47, 0x60, 0xfc, 0x59, 0x11, 0x8a, 0x5d, 0xf7, 0xc2, 0x73, 0x06, 0x18, 0x65, 0x35, 0xe6, + 0x63, 0x4f, 0x25, 0xd2, 0x8a, 0xdf, 0x18, 0x49, 0x11, 0xdf, 0x6d, 0x91, 0x93, 0x91, 0x14, 0xd1, + 0xad, 0x16, 0x2b, 0xb0, 0xe0, 0xeb, 0x97, 0x53, 0x14, 0x7c, 0x8c, 0xfb, 0x8c, 0x94, 0xb6, 0x82, + 0x96, 0x88, 0x2c, 0xda, 0xa2, 0x4b, 0x13, 0x70, 0xc9, 0x28, 0xb1, 0xa9, 0x8c, 0x10, 0x5c, 0xb0, + 0xd7, 0xa0, 0x28, 0xb3, 0x47, 0x28, 0x16, 0x9f, 0x02, 0x35, 0x25, 0x08, 0xa9, 0xc1, 0xe7, 0xe4, + 0xa4, 0x8b, 0x24, 0x2a, 0xa1, 0xa7, 0x4b, 0xe0, 0xb6, 0xa0, 0xb5, 0x7b, 0x50, 0x21, 0x7c, 0x42, + 0x29, 0xc9, 0xb8, 0x28, 0x04, 0x21, 0x42, 0xca, 0x1d, 0x2f, 0xe5, 0xd4, 0x3b, 0x5e, 0x30, 0x8c, + 0x2e, 0xe2, 0xb2, 0x34, 0x45, 0xa0, 0x9b, 0x3d, 0x34, 0xb8, 0xba, 0xe0, 0x48, 0x2a, 0xf7, 0x94, + 0xe7, 0xa7, 0x94, 0xfb, 0x37, 0xa1, 0x76, 0x6a, 0x8f, 0x46, 0x27, 0xf6, 0xe0, 0x39, 0xe9, 0xa4, + 0x55, 0x32, 0xc3, 0x29, 0x20, 0x2a, 0xa5, 0xf7, 0xa0, 0xa2, 0xbd, 0x65, 0x0c, 0x7a, 0xca, 0x9b, + 0x10, 0xbf, 0xdf, 0x59, 0x53, 0x53, 0xfd, 0x15, 0x4c, 0x4d, 0x5a, 0xf0, 0x57, 0x23, 0x19, 0xfc, + 0x75, 0x07, 0xb9, 0xa9, 0x0c, 0x10, 0x6a, 0xd2, 0x35, 0x12, 0xf6, 0x70, 0x88, 0x01, 0x42, 0x74, + 0x67, 0x1b, 0x2e, 0x1e, 0x95, 0x2f, 0x92, 0x50, 0x4b, 0x30, 0x42, 0xb9, 0x4b, 0xf6, 0xd2, 0x89, + 0xed, 0x0c, 0x31, 0xd8, 0x96, 0xd4, 0xd8, 0xa2, 0x3d, 0x0e, 0x8f, 0x6c, 0x67, 0xc8, 0xee, 0x43, + 0x55, 0x15, 0xe3, 0xe9, 0xb8, 0x44, 0xeb, 0x2f, 0x8b, 0xc5, 0x99, 0x68, 0x40, 0x2d, 0xc2, 0x18, + 0xc7, 0xc9, 0x7a, 0x15, 0x89, 0x82, 0x74, 0xf0, 0x1e, 0xc6, 0x54, 0x84, 0x1c, 0x53, 0xf2, 0xea, + 0x4f, 0xee, 0xc8, 0xb9, 0x4a, 0x2a, 0x55, 0xff, 0xc9, 0x4b, 0x43, 0x98, 0x42, 0x10, 0x23, 0x67, + 0xd1, 0x6a, 0x42, 0x10, 0x93, 0xa8, 0xe8, 0x2c, 0x22, 0x04, 0xf6, 0x5d, 0x4d, 0x91, 0x6a, 0x21, + 0xf2, 0x6b, 0x33, 0xed, 0xdf, 0x94, 0x6b, 0x70, 0x17, 0xc0, 0x09, 0xc4, 0x29, 0x13, 0x70, 0x77, + 0x88, 0xd9, 0x75, 0x25, 0xb3, 0xec, 0x04, 0xcf, 0x08, 0xf0, 0xd5, 0x6a, 0x58, 0x6d, 0xa8, 0xea, + 0xd3, 0x64, 0x25, 0xc8, 0x1f, 0x1e, 0x75, 0x0e, 0x9a, 0xb7, 0x58, 0x05, 0x8a, 0xbd, 0x4e, 0xbf, + 0xbf, 0x87, 0x2e, 0xa7, 0x2a, 0x94, 0xa2, 0xd4, 0x9e, 0xac, 0x78, 0x6a, 0x6f, 0x6d, 0x75, 0x8e, + 0xfa, 0x9d, 0xed, 0x66, 0xee, 0x07, 0xf9, 0x52, 0xb6, 0x99, 0x33, 0xfe, 0x3c, 0x07, 0x15, 0x6d, + 0x15, 0x5e, 0xcc, 0x8c, 0xef, 0x02, 0xa0, 0x4a, 0x13, 0xc7, 0x8f, 0xe5, 0xcd, 0xb2, 0x80, 0xd0, + 0xcb, 0xd7, 0x8d, 0xe5, 0x39, 0xba, 0x9f, 0x44, 0x19, 0xcb, 0xdf, 0x84, 0x1a, 0x5d, 0xf5, 0xa1, + 0x3b, 0x0e, 0x0b, 0x66, 0x95, 0x80, 0x92, 0x55, 0x63, 0x6e, 0x20, 0x22, 0x61, 0xd6, 0x88, 0x4c, + 0xfc, 0x27, 0x10, 0xe6, 0x8d, 0x60, 0xd2, 0x4f, 0xe0, 0x8d, 0x2e, 0x38, 0x61, 0x90, 0x44, 0x58, + 0x91, 0xb0, 0xbe, 0xcc, 0x72, 0x94, 0xfc, 0x50, 0x4b, 0x4e, 0x2b, 0x98, 0x55, 0x02, 0xca, 0x8e, + 0xbe, 0xa9, 0x08, 0xa8, 0x84, 0x04, 0xb4, 0x36, 0x4f, 0x0d, 0x09, 0xe2, 0xd9, 0x9b, 0xb3, 0x67, + 0x95, 0x91, 0x30, 0xbe, 0x36, 0x5f, 0xef, 0xe5, 0x76, 0x2d, 0xf6, 0x2e, 0xb0, 0xf1, 0x64, 0x62, + 0xa5, 0x58, 0x9a, 0xf2, 0x66, 0x63, 0x3c, 0x99, 0xf4, 0x35, 0x43, 0xcc, 0x57, 0x60, 0x04, 0xfb, + 0x1c, 0x58, 0x5b, 0x6c, 0x60, 0x1c, 0x62, 0x64, 0x42, 0x8d, 0xd9, 0x72, 0x46, 0x67, 0xcb, 0x29, + 0xdc, 0x2f, 0x9b, 0xca, 0xfd, 0x5e, 0xc4, 0x27, 0x8c, 0x1d, 0xa8, 0x1c, 0x69, 0x17, 0x09, 0xdd, + 0x17, 0x27, 0x84, 0xba, 0x42, 0x88, 0xce, 0x0e, 0x32, 0x6e, 0xf9, 0xf2, 0xe6, 0x20, 0x6d, 0x34, + 0x59, 0x6d, 0x34, 0xc6, 0x3f, 0xcd, 0xd0, 0x25, 0x0d, 0xd1, 0xe0, 0xe3, 0xbb, 0x8b, 0x94, 0x1f, + 0x28, 0xce, 0x21, 0xad, 0x28, 0xff, 0x8f, 0x4c, 0xff, 0xc4, 0xa1, 0x59, 0xde, 0xe9, 0x69, 0xc0, + 0x55, 0x36, 0x54, 0x05, 0x61, 0x87, 0x08, 0x52, 0xc2, 0xb7, 0x90, 0xf0, 0x1d, 0x6a, 0x3f, 0x90, + 0x59, 0x51, 0x42, 0xf8, 0xde, 0xb7, 0xaf, 0x64, 0xaf, 0x81, 0x10, 0x41, 0xa4, 0xa1, 0x5a, 0xe5, + 0x80, 0x45, 0xcf, 0xc6, 0x3f, 0x92, 0x69, 0xae, 0xb3, 0xeb, 0xfb, 0x10, 0x4a, 0x51, 0xab, 0xc9, + 0x13, 0x56, 0x61, 0x46, 0xe5, 0xe2, 0x1c, 0x47, 0xad, 0x3c, 0x31, 0x62, 0xda, 0x5c, 0xe8, 0x6c, + 0xe8, 0x6a, 0xa3, 0xfe, 0x06, 0xb0, 0x53, 0xc7, 0x9f, 0x45, 0xa6, 0xcd, 0xd6, 0xc4, 0x12, 0x0d, + 0xdb, 0x38, 0x86, 0x25, 0xc5, 0x25, 0x34, 0x8d, 0x20, 0xf9, 0xf2, 0x32, 0x2f, 0x61, 0xf2, 0xd9, + 0x39, 0x26, 0x6f, 0xfc, 0x34, 0x0f, 0x45, 0x75, 0x29, 0x57, 0xda, 0x45, 0x52, 0xe5, 0xe4, 0x45, + 0x52, 0xad, 0xc4, 0xa5, 0x23, 0xf8, 0xea, 0xe5, 0x79, 0xff, 0xce, 0xec, 0x91, 0xad, 0x19, 0xcd, + 0x13, 0xc7, 0xf6, 0x2a, 0xe4, 0x27, 0x76, 0x78, 0x8e, 0x06, 0x32, 0x22, 0x1e, 0x7c, 0x56, 0xc6, + 0xf4, 0x42, 0xd2, 0x98, 0x9e, 0x76, 0xe9, 0x16, 0x89, 0xa4, 0x73, 0x97, 0x6e, 0xdd, 0x01, 0x92, + 0x2f, 0xb4, 0x30, 0xa3, 0x12, 0x02, 0xc4, 0x59, 0x94, 0x14, 0x47, 0x4a, 0xb3, 0xe2, 0xc8, 0x2b, + 0x8b, 0x0a, 0xdf, 0x86, 0x05, 0x4a, 0x58, 0x97, 0xb9, 0x6e, 0xea, 0x40, 0x91, 0x6b, 0xa8, 0xfe, + 0x53, 0xf0, 0xb1, 0x29, 0x71, 0xf5, 0x1b, 0x6c, 0x2a, 0x89, 0x1b, 0x6c, 0x74, 0x23, 0x7f, 0x35, + 0x69, 0xe4, 0x7f, 0x00, 0xcd, 0x68, 0x41, 0xd1, 0x64, 0xe6, 0x06, 0x32, 0x93, 0xa6, 0xae, 0xe0, + 0x82, 0x4b, 0x1e, 0x04, 0xf1, 0x81, 0x58, 0x4f, 0x1c, 0x88, 0x82, 0x87, 0xb5, 0xc3, 0x90, 0x8f, + 0x27, 0xa1, 0x3c, 0x10, 0x31, 0xd6, 0x5e, 0x1f, 0x60, 0x32, 0x0b, 0xb4, 0x06, 0xe5, 0xee, 0x81, + 0xb5, 0xb3, 0xd7, 0x7d, 0xba, 0xdb, 0x6f, 0x66, 0xc4, 0x63, 0xef, 0x78, 0x6b, 0xab, 0xd3, 0xd9, + 0xc6, 0x13, 0x07, 0x60, 0x61, 0xa7, 0xdd, 0x15, 0xa7, 0x4f, 0xce, 0xf8, 0xbd, 0x2c, 0x54, 0xb4, + 0xe6, 0xd9, 0xfb, 0xd1, 0xaa, 0xd0, 0x25, 0x27, 0x77, 0xe7, 0x87, 0xb0, 0xa1, 0x58, 0xb1, 0xb6, + 0x2c, 0xd1, 0x15, 0x63, 0xd9, 0x1b, 0xaf, 0x18, 0x63, 0x6f, 0x43, 0xc3, 0xa6, 0x16, 0xa2, 0x55, + 0x90, 0xe6, 0x60, 0x09, 0x96, 0x8b, 0x80, 0xc1, 0x75, 0xf1, 0x79, 0x22, 0xf0, 0xf2, 0x2a, 0x9e, + 0x2d, 0x3a, 0x52, 0x70, 0xb1, 0x8a, 0xa7, 0xb6, 0x33, 0x9a, 0xfa, 0x5c, 0xba, 0x6f, 0xa3, 0x93, + 0x99, 0xa0, 0xa6, 0x2a, 0x36, 0x3e, 0x00, 0x88, 0xc7, 0x9c, 0x5c, 0x9c, 0x5b, 0xc9, 0xc5, 0xc9, + 0x68, 0x8b, 0x93, 0x35, 0xb6, 0x89, 0x8d, 0xc8, 0x85, 0x8e, 0x3c, 0xd5, 0xdf, 0x04, 0x65, 0x91, + 0xb2, 0x30, 0xbc, 0x75, 0x32, 0xe2, 0xa1, 0xca, 0x97, 0x5d, 0x94, 0x25, 0xdd, 0xa8, 0x40, 0xa5, + 0xaf, 0xc7, 0xad, 0xc4, 0xdc, 0x48, 0x92, 0xe4, 0x2c, 0x37, 0x92, 0xa8, 0x66, 0x54, 0x6e, 0xac, + 0x43, 0x6b, 0x9b, 0x8b, 0xd6, 0xda, 0xa3, 0xd1, 0xcc, 0x70, 0x8c, 0x3b, 0x70, 0x3b, 0xa5, 0x4c, + 0x1a, 0x21, 0x3e, 0x86, 0x95, 0x36, 0xa5, 0xc6, 0x7e, 0x55, 0x39, 0x30, 0x46, 0x0b, 0x56, 0x67, + 0x9b, 0x94, 0x9d, 0xed, 0xc0, 0xe2, 0x36, 0x3f, 0x99, 0x9e, 0xed, 0xf1, 0x8b, 0xb8, 0x23, 0x06, + 0xf9, 0xe0, 0xdc, 0xbb, 0x94, 0xeb, 0x83, 0xbf, 0x31, 0x90, 0x4c, 0xe0, 0x58, 0xc1, 0x84, 0x0f, + 0x94, 0x45, 0x14, 0x21, 0xbd, 0x09, 0x1f, 0x18, 0xef, 0x03, 0xd3, 0xdb, 0x91, 0xeb, 0x25, 0xb4, + 0x84, 0xe9, 0x89, 0x15, 0x5c, 0x07, 0x21, 0x1f, 0xab, 0x3b, 0x74, 0x20, 0x98, 0x9e, 0xf4, 0x08, + 0x62, 0xbc, 0x03, 0xd5, 0x23, 0xfb, 0xda, 0xe4, 0x9f, 0xcb, 0xec, 0x8e, 0x35, 0x28, 0x4e, 0xec, + 0x6b, 0xc1, 0x06, 0x22, 0xe7, 0x08, 0x16, 0x1b, 0x7f, 0x98, 0x87, 0x05, 0xc2, 0x64, 0xf7, 0xe9, + 0x9a, 0x4b, 0xc7, 0xc5, 0x6d, 0xa8, 0x18, 0xa5, 0x06, 0x9a, 0xe3, 0xa5, 0xd9, 0x79, 0x5e, 0x2a, + 0x0d, 0x68, 0xea, 0x7a, 0x0f, 0x65, 0xc6, 0x76, 0xa7, 0x63, 0x75, 0xa7, 0x47, 0x32, 0x3f, 0x34, + 0x1f, 0x5f, 0x63, 0x4a, 0xc9, 0x73, 0x49, 0x47, 0x63, 0xac, 0x8b, 0xd0, 0xe8, 0xd4, 0x11, 0x21, + 0xd9, 0xa5, 0x0e, 0x4a, 0x55, 0x78, 0x8a, 0x2a, 0x6f, 0x28, 0xa9, 0xf0, 0xcc, 0x29, 0x36, 0xa5, + 0x97, 0x2b, 0x36, 0x64, 0x59, 0x7b, 0x81, 0x62, 0x03, 0xaf, 0xa0, 0xd8, 0xbc, 0x82, 0x93, 0xef, + 0x36, 0x94, 0xf0, 0xdc, 0xd7, 0xb8, 0xa7, 0x38, 0xef, 0x05, 0xf7, 0xfc, 0x8e, 0x26, 0xfa, 0x53, + 0x84, 0xc1, 0x9d, 0x78, 0x9b, 0x98, 0xfc, 0xf3, 0x5f, 0x8e, 0xf3, 0xe4, 0x33, 0x28, 0x4a, 0xa8, + 0x20, 0x68, 0xd7, 0x1e, 0xab, 0x1b, 0x92, 0xf0, 0xb7, 0x58, 0x36, 0xbc, 0xd6, 0xe5, 0xf3, 0xa9, + 0xe3, 0xf3, 0xa1, 0xba, 0xfa, 0xc2, 0xc1, 0x3d, 0x2a, 0x20, 0x62, 0x82, 0x42, 0x0d, 0x71, 0xbd, + 0x4b, 0x57, 0x26, 0xbe, 0x17, 0x9d, 0xe0, 0x99, 0x78, 0x34, 0x18, 0x34, 0xf1, 0x8e, 0xb4, 0x89, + 0xe7, 0xab, 0xc3, 0xc9, 0xf8, 0x69, 0x06, 0x9a, 0x72, 0x77, 0x45, 0x65, 0xba, 0x16, 0x50, 0xb8, + 0xc9, 0x21, 0xfe, 0xe2, 0x8b, 0x2c, 0x0c, 0xa8, 0xa1, 0xf1, 0x23, 0x3a, 0xa9, 0xc8, 0x78, 0x53, + 0x11, 0xc0, 0x1d, 0x79, 0x5a, 0xbd, 0x0e, 0x15, 0x15, 0xe5, 0x3a, 0x76, 0x46, 0xea, 0xc6, 0x62, + 0x0a, 0x73, 0xdd, 0x77, 0x46, 0xea, 0xa0, 0xf3, 0x6d, 0x99, 0xc7, 0x96, 0xc1, 0x83, 0xce, 0xb4, + 0x43, 0x6e, 0xfc, 0xdb, 0x0c, 0x2c, 0x6a, 0x53, 0x91, 0xfb, 0xf6, 0x43, 0xa8, 0x46, 0x97, 0x13, + 0xf2, 0x48, 0xf2, 0x5a, 0x4b, 0x32, 0x9a, 0xb8, 0x5a, 0x65, 0x10, 0x41, 0x02, 0x31, 0x98, 0xa1, + 0x7d, 0x8d, 0xe3, 0x0d, 0xa6, 0x63, 0xa5, 0xdc, 0x0c, 0xed, 0xeb, 0x1d, 0xce, 0x7b, 0xd3, 0xb1, + 0x50, 0x5d, 0x2f, 0x39, 0x7f, 0x1e, 0x21, 0x90, 0xcc, 0x05, 0x02, 0x26, 0x31, 0x0c, 0xa8, 0x8d, + 0x3d, 0x37, 0x3c, 0x8f, 0x50, 0xa4, 0xd4, 0x89, 0x40, 0xc2, 0x31, 0xfe, 0x34, 0x0b, 0x4b, 0x64, + 0x62, 0x93, 0xa6, 0x4d, 0xc9, 0xba, 0x5a, 0xb0, 0x40, 0xd6, 0x46, 0x62, 0x5e, 0xbb, 0xb7, 0x4c, + 0xf9, 0xcc, 0xbe, 0xfd, 0x8a, 0x66, 0x41, 0x95, 0x2a, 0x77, 0xc3, 0xf2, 0xe7, 0xe6, 0x97, 0xff, + 0xe6, 0xe5, 0x4d, 0xf3, 0xb8, 0x15, 0xd2, 0x3c, 0x6e, 0xaf, 0xe2, 0xe7, 0x9a, 0xcb, 0x27, 0x2b, + 0x4a, 0x1c, 0x2d, 0x9f, 0xec, 0x7d, 0x58, 0x4b, 0xe0, 0x20, 0xb7, 0x76, 0x4e, 0x1d, 0xae, 0xee, + 0x15, 0x58, 0xd6, 0xb0, 0x7b, 0xaa, 0x6c, 0xb3, 0x08, 0x85, 0x60, 0xe0, 0x4d, 0xb8, 0xb1, 0x0a, + 0xcb, 0xc9, 0x55, 0x95, 0xc7, 0xc4, 0xef, 0x67, 0xa0, 0x25, 0xe3, 0x23, 0x1c, 0xf7, 0x6c, 0xd7, + 0x09, 0x42, 0xcf, 0x8f, 0x2e, 0xf1, 0xbb, 0x0b, 0x10, 0x84, 0xb6, 0x2f, 0xb5, 0x4d, 0x99, 0x49, + 0x8f, 0x10, 0xd4, 0x24, 0x6f, 0x43, 0x89, 0xbb, 0x43, 0x2a, 0x24, 0x6a, 0x28, 0x72, 0x77, 0xa8, + 0xf4, 0xd0, 0x39, 0xf9, 0xbb, 0x96, 0x54, 0x2f, 0x64, 0x62, 0xab, 0x58, 0x1d, 0x7e, 0x81, 0x07, + 0x6f, 0x3e, 0x4a, 0x6c, 0xdd, 0xb7, 0xaf, 0x30, 0xda, 0x30, 0x30, 0xfe, 0x7e, 0x16, 0x1a, 0xf1, + 0xf8, 0x28, 0x2b, 0xfe, 0xc5, 0xf9, 0xfd, 0xf7, 0x25, 0x39, 0x38, 0x42, 0x7e, 0xd7, 0x0c, 0x8f, + 0x25, 0xda, 0x9c, 0x5d, 0x97, 0x19, 0x50, 0x51, 0x18, 0xde, 0x34, 0xd4, 0xee, 0xd2, 0x2a, 0x13, + 0xca, 0xe1, 0x34, 0x14, 0x0a, 0x97, 0xd0, 0x3c, 0x1d, 0x57, 0xaa, 0x3c, 0x05, 0x7b, 0x1c, 0x76, + 0xf1, 0x8a, 0x6e, 0x01, 0x16, 0xd5, 0xe8, 0x45, 0x0a, 0x2c, 0x81, 0xdf, 0x24, 0x39, 0x9b, 0xde, + 0x1c, 0xca, 0xd8, 0xba, 0x10, 0x4a, 0xb7, 0x95, 0x46, 0x42, 0xe8, 0xeb, 0x50, 0xa1, 0xc6, 0xe3, + 0xf4, 0xc1, 0xbc, 0x59, 0xc6, 0x1e, 0xb0, 0x5c, 0x1a, 0x81, 0xbc, 0x69, 0x42, 0xf5, 0x05, 0xea, + 0x0a, 0xc3, 0x0f, 0xfe, 0x76, 0x06, 0x6e, 0xa7, 0xbc, 0x36, 0xb9, 0xcb, 0xb7, 0x60, 0xf1, 0x34, + 0x2a, 0x54, 0xab, 0x4b, 0x5b, 0x7d, 0x55, 0xb1, 0xd5, 0xe4, 0x9a, 0x9a, 0xcd, 0xd3, 0x24, 0x20, + 0x56, 0xba, 0xe8, 0x0d, 0x26, 0x32, 0x44, 0x51, 0xe9, 0xa2, 0xd7, 0x48, 0xfa, 0xce, 0x11, 0xac, + 0x77, 0xae, 0x04, 0xc7, 0xd8, 0xd2, 0xef, 0x98, 0x57, 0x64, 0x94, 0x34, 0x30, 0x67, 0x5e, 0xc9, + 0xc0, 0x3c, 0xa4, 0x44, 0xb8, 0xa8, 0xad, 0x9f, 0xa7, 0x11, 0x3c, 0x40, 0x45, 0x1d, 0xba, 0x23, + 0x5f, 0x65, 0xa9, 0x0e, 0xa2, 0xbb, 0xf1, 0x8d, 0x00, 0x1a, 0xfb, 0xd3, 0x51, 0xe8, 0xc4, 0xd7, + 0xe5, 0xb3, 0x6f, 0xcb, 0x3a, 0xd8, 0x8f, 0x5a, 0xb5, 0xd4, 0x8e, 0x20, 0xea, 0x08, 0x17, 0x6b, + 0x2c, 0x1a, 0xb2, 0xe6, 0xfb, 0x6b, 0x8c, 0x93, 0x3d, 0x18, 0xb7, 0x61, 0x2d, 0x7e, 0xa2, 0x65, + 0x53, 0x47, 0xcd, 0x3f, 0xc9, 0x50, 0x68, 0x73, 0xf2, 0xea, 0x7e, 0xd6, 0x81, 0xa5, 0xc0, 0x71, + 0xcf, 0x46, 0x5c, 0x6f, 0x3e, 0x90, 0x8b, 0xb0, 0x92, 0x1c, 0x9b, 0xbc, 0xde, 0xdf, 0x5c, 0xa4, + 0x1a, 0x71, 0x6b, 0x01, 0xdb, 0xbc, 0x69, 0x90, 0x31, 0x59, 0xcc, 0xac, 0xc6, 0xfc, 0xe0, 0xbb, + 0x50, 0x4f, 0x76, 0xc4, 0xbe, 0x23, 0x93, 0x40, 0xe3, 0x51, 0xe5, 0x66, 0xd2, 0xf5, 0x62, 0x82, + 0xa8, 0xc4, 0x6b, 0x1f, 0x18, 0x7f, 0x37, 0x03, 0x2d, 0x93, 0x0b, 0xca, 0xd5, 0x46, 0xa9, 0x68, + 0xe6, 0xc3, 0xb9, 0x56, 0x6f, 0x9e, 0xab, 0xca, 0x2d, 0x55, 0x23, 0xfa, 0xc6, 0x8d, 0x2f, 0x63, + 0xf7, 0xd6, 0xdc, 0x8c, 0x36, 0x4b, 0xb0, 0x40, 0x28, 0xc6, 0x1a, 0xac, 0xc8, 0xf1, 0xa8, 0xb1, + 0xc4, 0xde, 0xc3, 0x44, 0x8f, 0x09, 0xef, 0xe1, 0x3a, 0xb4, 0xe8, 0x2e, 0x46, 0x7d, 0x12, 0xb2, + 0xe2, 0x36, 0xb0, 0x7d, 0x7b, 0x60, 0xfb, 0x9e, 0xe7, 0x1e, 0x71, 0x5f, 0x06, 0x8a, 0xa2, 0x84, + 0x89, 0xce, 0x35, 0x25, 0x0a, 0xd3, 0x93, 0xba, 0x41, 0xd0, 0x73, 0x55, 0x5c, 0x0c, 0x3d, 0x19, + 0x26, 0x2c, 0x6d, 0xda, 0xcf, 0xb9, 0x6a, 0x49, 0x2d, 0xd1, 0x47, 0x50, 0x99, 0x44, 0x8d, 0xaa, + 0x75, 0x57, 0x99, 0xe2, 0xf3, 0xdd, 0x9a, 0x3a, 0xb6, 0xf1, 0x04, 0x96, 0x93, 0x6d, 0x4a, 0xd6, + 0xb1, 0x0e, 0xa5, 0xb1, 0x84, 0xc9, 0xd1, 0x45, 0xcf, 0xc6, 0xef, 0x96, 0xa0, 0x28, 0xf5, 0x39, + 0xb6, 0x01, 0xf9, 0x81, 0x8a, 0x4d, 0x8a, 0x2f, 0x20, 0x91, 0xa5, 0xea, 0xff, 0x16, 0x46, 0x28, + 0x09, 0x3c, 0xf6, 0x11, 0xd4, 0x93, 0x5e, 0xd1, 0x99, 0x34, 0xd4, 0xa4, 0x3b, 0xb3, 0x36, 0x98, + 0xf1, 0x7f, 0x95, 0xe3, 0xc3, 0x91, 0x64, 0x86, 0xd2, 0xb9, 0x76, 0x7a, 0x7a, 0xae, 0x90, 0xb7, + 0x83, 0x73, 0xdb, 0x7a, 0xf2, 0xfe, 0x07, 0x32, 0x0f, 0xb5, 0x82, 0xc0, 0xde, 0xb9, 0xfd, 0xe4, + 0xfd, 0x0f, 0x66, 0x25, 0x69, 0x99, 0x85, 0xaa, 0x49, 0xd2, 0xcb, 0x50, 0xa0, 0xab, 0xf2, 0x28, + 0xc8, 0x84, 0x1e, 0xd8, 0x63, 0x58, 0x96, 0x6a, 0xab, 0x25, 0xc3, 0x81, 0x89, 0x0b, 0x96, 0x28, + 0xb5, 0x49, 0x96, 0xf5, 0xb0, 0x88, 0x6c, 0x43, 0xab, 0xb0, 0x70, 0x1e, 0xdf, 0x7b, 0x58, 0x33, + 0xe5, 0x93, 0xf1, 0xa7, 0x05, 0xa8, 0x68, 0x8b, 0xc2, 0xaa, 0x50, 0x32, 0x3b, 0xbd, 0x8e, 0xf9, + 0x49, 0x67, 0xbb, 0x79, 0x8b, 0x3d, 0x80, 0xb7, 0xba, 0x07, 0x5b, 0x87, 0xa6, 0xd9, 0xd9, 0xea, + 0x5b, 0x87, 0xa6, 0xa5, 0xae, 0xc1, 0x39, 0x6a, 0x7f, 0xb6, 0xdf, 0x39, 0xe8, 0x5b, 0xdb, 0x9d, + 0x7e, 0xbb, 0xbb, 0xd7, 0x6b, 0x66, 0xd8, 0x6b, 0xd0, 0x8a, 0x31, 0x55, 0x71, 0x7b, 0xff, 0xf0, + 0xf8, 0xa0, 0xdf, 0xcc, 0xb2, 0x7b, 0x70, 0x67, 0xa7, 0x7b, 0xd0, 0xde, 0xb3, 0x62, 0x9c, 0xad, + 0xbd, 0xfe, 0x27, 0x56, 0xe7, 0xd7, 0x8f, 0xba, 0xe6, 0x67, 0xcd, 0x5c, 0x1a, 0x82, 0x50, 0xc6, + 0x55, 0x0b, 0x79, 0x76, 0x1b, 0x56, 0x08, 0x81, 0xaa, 0x58, 0xfd, 0xc3, 0x43, 0xab, 0x77, 0x78, + 0x78, 0xd0, 0x2c, 0xb0, 0x45, 0xa8, 0x75, 0x0f, 0x3e, 0x69, 0xef, 0x75, 0xb7, 0x2d, 0xb3, 0xd3, + 0xde, 0xdb, 0x6f, 0x2e, 0xb0, 0x25, 0x68, 0xcc, 0xe2, 0x15, 0x45, 0x13, 0x0a, 0xef, 0xf0, 0xa0, + 0x7b, 0x78, 0x60, 0x7d, 0xd2, 0x31, 0x7b, 0xdd, 0xc3, 0x83, 0x66, 0x89, 0xad, 0x02, 0x4b, 0x16, + 0xed, 0xee, 0xb7, 0xb7, 0x9a, 0x65, 0xb6, 0x02, 0x8b, 0x49, 0xf8, 0xb3, 0xce, 0x67, 0x4d, 0x60, + 0x2d, 0x58, 0xa6, 0x81, 0x59, 0x9b, 0x9d, 0xbd, 0xc3, 0x4f, 0xad, 0xfd, 0xee, 0x41, 0x77, 0xff, + 0x78, 0xbf, 0x59, 0xc1, 0x8b, 0xb9, 0x3a, 0x1d, 0xab, 0x7b, 0xd0, 0x3b, 0xde, 0xd9, 0xe9, 0x6e, + 0x75, 0x3b, 0x07, 0xfd, 0x66, 0x95, 0x7a, 0x4e, 0x9b, 0x78, 0x4d, 0x54, 0x90, 0x39, 0x03, 0xd6, + 0x76, 0xb7, 0xd7, 0xde, 0xdc, 0xeb, 0x6c, 0x37, 0xeb, 0xec, 0x2e, 0xdc, 0xee, 0x77, 0xf6, 0x8f, + 0x0e, 0xcd, 0xb6, 0xf9, 0x99, 0xca, 0x29, 0xb0, 0x76, 0xda, 0xdd, 0xbd, 0x63, 0xb3, 0xd3, 0x6c, + 0xb0, 0x37, 0xe0, 0xae, 0xd9, 0xf9, 0xf8, 0xb8, 0x6b, 0x76, 0xb6, 0xad, 0x83, 0xc3, 0xed, 0x8e, + 0xb5, 0xd3, 0x69, 0xf7, 0x8f, 0xcd, 0x8e, 0xb5, 0xdf, 0xed, 0xf5, 0xba, 0x07, 0x4f, 0x9b, 0x4d, + 0xf6, 0x16, 0xdc, 0x8f, 0x50, 0xa2, 0x06, 0x66, 0xb0, 0x16, 0xc5, 0xfc, 0xd4, 0x2b, 0x3d, 0xe8, + 0xfc, 0x7a, 0xdf, 0x3a, 0xea, 0x74, 0xcc, 0x26, 0x63, 0xeb, 0xb0, 0x1a, 0x77, 0x4f, 0x1d, 0xc8, + 0xbe, 0x97, 0x44, 0xd9, 0x51, 0xc7, 0xdc, 0x6f, 0x1f, 0x88, 0x17, 0x9c, 0x28, 0x5b, 0x16, 0xc3, + 0x8e, 0xcb, 0x66, 0x87, 0xbd, 0xc2, 0x18, 0xd4, 0xb5, 0xb7, 0xb2, 0xd3, 0x36, 0x9b, 0xab, 0xac, + 0x01, 0x95, 0xfd, 0xa3, 0x23, 0xab, 0xdf, 0xdd, 0xef, 0x1c, 0x1e, 0xf7, 0x9b, 0x6b, 0x6c, 0x05, + 0x9a, 0xdd, 0x83, 0x7e, 0xc7, 0x14, 0xef, 0x5a, 0x55, 0xfd, 0x5f, 0x45, 0xb6, 0x0c, 0x0d, 0x35, + 0x52, 0x05, 0xfd, 0x59, 0x91, 0xad, 0x01, 0x3b, 0x3e, 0x30, 0x3b, 0xed, 0x6d, 0xb1, 0x70, 0x51, + 0xc1, 0xff, 0x2e, 0x4a, 0x0f, 0xc9, 0x4f, 0x73, 0xd1, 0x61, 0x1d, 0x87, 0x1c, 0x24, 0x6f, 0xc1, + 0xad, 0x6a, 0xb7, 0xd7, 0xbe, 0xec, 0x7e, 0x7a, 0x4d, 0xb5, 0xca, 0xcd, 0xa9, 0x56, 0x73, 0xba, + 0x7b, 0x4d, 0x97, 0xfd, 0xde, 0x84, 0xda, 0x98, 0x6e, 0xc4, 0x95, 0x37, 0x5f, 0x82, 0x8c, 0xbf, + 0x21, 0x20, 0x5d, 0x7b, 0x39, 0x77, 0x41, 0x7b, 0x61, 0xfe, 0x82, 0xf6, 0x34, 0xf9, 0x7e, 0x21, + 0x4d, 0xbe, 0x7f, 0x08, 0x8b, 0xc4, 0x9a, 0x1c, 0xd7, 0x19, 0x2b, 0xad, 0x99, 0xa4, 0xc0, 0x06, + 0xb2, 0x28, 0x82, 0x2b, 0x75, 0x42, 0xa9, 0x1c, 0x92, 0x85, 0x14, 0xa5, 0xb6, 0x91, 0xd0, 0x34, + 0x88, 0x73, 0x44, 0x9a, 0x46, 0xd4, 0x83, 0x7d, 0x15, 0xf7, 0x50, 0xd1, 0x7a, 0x20, 0x38, 0xf6, + 0xf0, 0x10, 0x16, 0xf9, 0x55, 0xe8, 0xdb, 0x96, 0x37, 0xb1, 0x3f, 0x9f, 0xa2, 0x0b, 0xd7, 0x46, + 0x1d, 0xbe, 0x6a, 0x36, 0xb0, 0xe0, 0x10, 0xe1, 0xdb, 0x76, 0x68, 0x3f, 0xfc, 0x02, 0x2a, 0xda, + 0x6d, 0xc9, 0x6c, 0x0d, 0x96, 0x3e, 0xed, 0xf6, 0x0f, 0x3a, 0xbd, 0x9e, 0x75, 0x74, 0xbc, 0xf9, + 0xac, 0xf3, 0x99, 0xb5, 0xdb, 0xee, 0xed, 0x36, 0x6f, 0x89, 0x4d, 0x7b, 0xd0, 0xe9, 0xf5, 0x3b, + 0xdb, 0x09, 0x78, 0x86, 0xbd, 0x0e, 0xeb, 0xc7, 0x07, 0xc7, 0xbd, 0xce, 0xb6, 0x95, 0x56, 0x2f, + 0x2b, 0xa8, 0x54, 0x96, 0xa7, 0x54, 0xcf, 0x3d, 0xfc, 0x3e, 0xd4, 0x93, 0x57, 0x78, 0x32, 0x80, + 0x85, 0xbd, 0xce, 0xd3, 0xf6, 0xd6, 0x67, 0x74, 0x75, 0x5f, 0xaf, 0xdf, 0xee, 0x77, 0xb7, 0x2c, + 0x79, 0x55, 0x9f, 0xe0, 0x08, 0x19, 0x56, 0x81, 0x62, 0xfb, 0x60, 0x6b, 0xf7, 0xd0, 0xec, 0x35, + 0xb3, 0x0f, 0x3f, 0x82, 0xe6, 0xac, 0x3f, 0x2a, 0xe1, 0xc0, 0x7b, 0x91, 0xa7, 0xef, 0xe1, 0xbf, + 0xc8, 0x01, 0xc4, 0x09, 0x03, 0x82, 0xd5, 0x6c, 0xb7, 0xfb, 0xed, 0xbd, 0x43, 0x31, 0x0d, 0xf3, + 0xb0, 0x2f, 0x38, 0x88, 0xd9, 0xf9, 0xb8, 0x79, 0x2b, 0xb5, 0xe4, 0xf0, 0xa8, 0xdf, 0xcc, 0x88, + 0x15, 0xeb, 0x1e, 0x74, 0xfb, 0xdd, 0xf6, 0x9e, 0x65, 0x1e, 0x1e, 0x77, 0x0f, 0x9e, 0xd2, 0x9d, + 0x64, 0xc8, 0x65, 0x8f, 0x8f, 0x76, 0xcc, 0xc3, 0x83, 0xbe, 0xd5, 0xdb, 0x3d, 0xee, 0x6f, 0xe3, + 0x8d, 0x66, 0x5b, 0x66, 0xf7, 0x88, 0xda, 0xcc, 0xbf, 0x08, 0x41, 0x34, 0x5d, 0x10, 0x6b, 0xfe, + 0xf4, 0xb0, 0xd7, 0xeb, 0x1e, 0x59, 0x1f, 0x1f, 0x77, 0xcc, 0x6e, 0xa7, 0x87, 0x15, 0x17, 0x52, + 0xe0, 0x02, 0xbf, 0x28, 0x78, 0x73, 0x7f, 0xef, 0x13, 0xc9, 0x3c, 0x05, 0x6a, 0x29, 0x09, 0x12, + 0x58, 0x65, 0xc1, 0x53, 0x04, 0xf7, 0x49, 0x69, 0x19, 0x6e, 0x28, 0x13, 0xf5, 0x2a, 0x82, 0xaf, + 0xce, 0xbd, 0x0c, 0xac, 0x56, 0x4d, 0x2f, 0x12, 0xb5, 0x90, 0xe5, 0x46, 0x07, 0xd4, 0xf6, 0xb6, + 0x89, 0x15, 0xea, 0x73, 0x50, 0x81, 0xdb, 0x10, 0x2f, 0x4a, 0xb0, 0x27, 0x81, 0xd2, 0x54, 0x0f, + 0xa2, 0x64, 0xf1, 0xc9, 0xef, 0xe4, 0xa0, 0x4e, 0xc9, 0x5b, 0xf4, 0xb1, 0x2a, 0xee, 0xb3, 0x7d, + 0x28, 0xca, 0xaf, 0x9e, 0xb1, 0x95, 0xe8, 0xba, 0x28, 0xfd, 0x3b, 0x6b, 0xeb, 0xab, 0xb3, 0x60, + 0x29, 0x8e, 0x2d, 0xfd, 0xb5, 0x3f, 0xf9, 0x9f, 0x7f, 0x2f, 0x5b, 0x63, 0x95, 0x47, 0x17, 0xef, + 0x3d, 0x3a, 0xe3, 0x6e, 0x20, 0xda, 0xf8, 0xff, 0x01, 0xe2, 0x6f, 0x79, 0xb1, 0x56, 0xe4, 0x84, + 0x9a, 0xf9, 0xd0, 0xd9, 0xfa, 0xed, 0x94, 0x12, 0xd9, 0xee, 0x6d, 0x6c, 0x77, 0xc9, 0xa8, 0x8b, + 0x76, 0x1d, 0xd7, 0x09, 0xe9, 0xbb, 0x5e, 0x1f, 0x66, 0x1e, 0xb2, 0x21, 0x54, 0xf5, 0xaf, 0x6c, + 0x31, 0x25, 0x29, 0xa5, 0x7c, 0x27, 0x6c, 0xfd, 0x4e, 0x6a, 0x99, 0x92, 0x41, 0xb1, 0x8f, 0x15, + 0xa3, 0x29, 0xfa, 0x98, 0x22, 0x46, 0xdc, 0xcb, 0x88, 0xa4, 0xf2, 0xf8, 0x63, 0x5a, 0xec, 0x35, + 0x4d, 0xae, 0x9a, 0xfb, 0x94, 0xd7, 0xfa, 0xdd, 0x1b, 0x4a, 0x65, 0x5f, 0x77, 0xb1, 0xaf, 0x35, + 0x83, 0x89, 0xbe, 0x06, 0x88, 0xa3, 0x3e, 0xe5, 0xf5, 0x61, 0xe6, 0xe1, 0x93, 0xbf, 0x78, 0x00, + 0xe5, 0x28, 0x98, 0x93, 0xfd, 0x16, 0xd4, 0x12, 0xd9, 0x75, 0x4c, 0x4d, 0x23, 0x2d, 0x19, 0x6f, + 0xfd, 0xb5, 0xf4, 0x42, 0xd9, 0xf1, 0xeb, 0xd8, 0x71, 0x8b, 0xad, 0x8a, 0x8e, 0x65, 0xf6, 0xda, + 0x23, 0xcc, 0x86, 0xa5, 0xcb, 0xb7, 0x9e, 0x6b, 0xda, 0x07, 0x75, 0xf6, 0xda, 0xac, 0x46, 0x90, + 0xe8, 0xed, 0xee, 0x0d, 0xa5, 0xb2, 0xbb, 0xd7, 0xb0, 0xbb, 0x55, 0xb6, 0xac, 0x77, 0xa7, 0x42, + 0x2f, 0x19, 0xc7, 0x0b, 0xef, 0xf4, 0x6f, 0x4d, 0xb1, 0xbb, 0xf1, 0xf5, 0x64, 0x29, 0xdf, 0xa0, + 0x8a, 0x48, 0x64, 0xfe, 0x43, 0x54, 0x46, 0x0b, 0xbb, 0x62, 0x0c, 0x5f, 0x9f, 0xfe, 0xa9, 0x29, + 0x76, 0x02, 0x15, 0xed, 0xf3, 0x0c, 0xec, 0xf6, 0x8d, 0x9f, 0x92, 0x58, 0x5f, 0x4f, 0x2b, 0x4a, + 0x9b, 0x8a, 0xde, 0xfe, 0xa3, 0x53, 0xce, 0xd9, 0x6f, 0x40, 0x39, 0xba, 0xf4, 0x9f, 0xad, 0x69, + 0x1f, 0x61, 0xd0, 0x3f, 0x52, 0xb0, 0xde, 0x9a, 0x2f, 0x48, 0x23, 0x3e, 0xbd, 0x75, 0x41, 0x7c, + 0x9f, 0x42, 0x45, 0xbb, 0xd8, 0x3f, 0x9a, 0xc0, 0xfc, 0xc7, 0x03, 0xa2, 0x09, 0xa4, 0x7c, 0x07, + 0xc0, 0x58, 0xc4, 0x2e, 0x2a, 0xac, 0x8c, 0xf4, 0x1d, 0x5e, 0x79, 0x01, 0xdb, 0x83, 0x15, 0xa9, + 0x69, 0x9d, 0xf0, 0x2f, 0xf3, 0x1a, 0x52, 0x3e, 0xef, 0xf5, 0x38, 0xc3, 0x3e, 0x82, 0x92, 0xfa, + 0x7e, 0x03, 0x5b, 0x4d, 0xff, 0x0e, 0xc5, 0xfa, 0xda, 0x1c, 0x5c, 0xaa, 0x45, 0x9f, 0x01, 0xc4, + 0x5f, 0x11, 0x88, 0x98, 0xc4, 0xdc, 0x57, 0x09, 0x22, 0x0a, 0x98, 0xff, 0xe4, 0x80, 0xb1, 0x8a, + 0x13, 0x6c, 0x32, 0x64, 0x12, 0x2e, 0xbf, 0x54, 0xb7, 0x92, 0xfe, 0x08, 0x2a, 0xda, 0x87, 0x04, + 0xa2, 0xe5, 0x9b, 0xff, 0x08, 0x41, 0xb4, 0x7c, 0x29, 0xdf, 0x1d, 0x30, 0xd6, 0xb1, 0xf5, 0x65, + 0xa3, 0x21, 0x5a, 0x17, 0xa2, 0x96, 0x14, 0x79, 0xc4, 0x0b, 0x3a, 0x87, 0x5a, 0xe2, 0x6b, 0x01, + 0xd1, 0x0e, 0x4d, 0xfb, 0x16, 0x41, 0xb4, 0x43, 0x53, 0x3f, 0x30, 0xa0, 0xe8, 0xcc, 0x58, 0x14, + 0xfd, 0x5c, 0x20, 0x8a, 0xd6, 0xd3, 0x0f, 0xa1, 0xa2, 0xdd, 0xfc, 0x1f, 0xcd, 0x65, 0xfe, 0x23, + 0x03, 0xd1, 0x5c, 0xd2, 0x3e, 0x14, 0xb0, 0x8c, 0x7d, 0xd4, 0x0d, 0x24, 0x05, 0xbc, 0x57, 0x51, + 0xb4, 0xfd, 0x5b, 0x50, 0x4f, 0x7e, 0x0c, 0x20, 0xda, 0xfb, 0xa9, 0x5f, 0x15, 0x88, 0xf6, 0xfe, + 0x0d, 0x5f, 0x10, 0x90, 0x24, 0xfd, 0x70, 0x29, 0xea, 0xe4, 0xd1, 0x4f, 0x64, 0x5a, 0xca, 0x17, + 0xec, 0x63, 0xc1, 0xe0, 0xe4, 0xb5, 0x9e, 0x6c, 0x4d, 0xa3, 0x5a, 0xfd, 0x7e, 0xd0, 0x68, 0xbf, + 0xcc, 0xdd, 0x00, 0x9a, 0x24, 0x66, 0x6c, 0x9c, 0x3d, 0x85, 0xa5, 0x88, 0x98, 0xa3, 0x7b, 0x3a, + 0x83, 0x68, 0x0e, 0xa9, 0xb7, 0x81, 0xae, 0x37, 0x67, 0x4b, 0x1f, 0x67, 0xe8, 0xf8, 0xc3, 0xdb, + 0x11, 0xb5, 0xe3, 0x4f, 0xbf, 0xaa, 0x53, 0x3b, 0xfe, 0x12, 0x97, 0x28, 0xce, 0x1e, 0x7f, 0xa1, + 0x23, 0xda, 0x70, 0xa1, 0x31, 0x7b, 0x6b, 0xe6, 0xdd, 0x9b, 0xd2, 0xfe, 0xa9, 0xf9, 0xd7, 0x5f, + 0x7c, 0x2b, 0x40, 0x92, 0x15, 0x29, 0x6e, 0xfa, 0x48, 0x06, 0x9f, 0xb0, 0xdf, 0x84, 0xaa, 0x7e, + 0x81, 0x38, 0xd3, 0x79, 0xc2, 0x6c, 0x4f, 0x77, 0x52, 0xcb, 0x92, 0x54, 0xc2, 0xaa, 0x7a, 0x37, + 0xec, 0x13, 0x58, 0x8d, 0x96, 0x59, 0xcf, 0x5b, 0x0f, 0xd8, 0xbd, 0x94, 0x6c, 0xf6, 0xc4, 0x62, + 0xdf, 0xbe, 0x31, 0xdd, 0xfd, 0x71, 0x46, 0x50, 0x5f, 0xf2, 0x26, 0xe3, 0xf8, 0xe4, 0x49, 0xbb, + 0xc0, 0x39, 0x3e, 0x79, 0x52, 0xaf, 0x3f, 0x56, 0xd4, 0xc7, 0x96, 0x12, 0x6b, 0x44, 0x61, 0xb9, + 0xec, 0x87, 0xd0, 0xd0, 0x92, 0xf2, 0x7b, 0xd7, 0xee, 0x20, 0xda, 0x49, 0xf3, 0x57, 0xf1, 0xad, + 0xa7, 0xd9, 0x26, 0x8d, 0x35, 0x6c, 0x7f, 0xd1, 0x48, 0x2c, 0x8e, 0xd8, 0x45, 0x5b, 0x50, 0xd1, + 0x13, 0xfe, 0x5f, 0xd0, 0xee, 0x9a, 0x56, 0xa4, 0xdf, 0xfa, 0xf6, 0x38, 0xc3, 0xf6, 0xa0, 0x39, + 0x7b, 0x07, 0x55, 0xc4, 0x53, 0xd2, 0xee, 0xcd, 0x5a, 0x9f, 0x29, 0x4c, 0xdc, 0x5c, 0xc5, 0x8e, + 0x28, 0xb1, 0x23, 0xfa, 0x16, 0x96, 0xe7, 0xcf, 0x9e, 0xea, 0xc9, 0x6f, 0x64, 0x45, 0xad, 0xa5, + 0x7d, 0x1d, 0xed, 0x41, 0xe6, 0x71, 0x86, 0xfd, 0x5e, 0x06, 0xaa, 0x89, 0x7b, 0x5f, 0x12, 0xa1, + 0xf3, 0x33, 0xf3, 0x6c, 0xe9, 0x65, 0xfa, 0x44, 0x0d, 0x13, 0x17, 0x71, 0xef, 0xe1, 0x0f, 0x12, + 0x2f, 0xe9, 0x27, 0x09, 0xd7, 0xde, 0xc6, 0xec, 0xc7, 0xb2, 0xbe, 0x98, 0x45, 0xd0, 0x6f, 0x58, + 0xfc, 0xe2, 0x71, 0x86, 0xfd, 0xab, 0x0c, 0xd4, 0x93, 0x3e, 0xfb, 0x68, 0xba, 0xa9, 0xd1, 0x01, + 0x11, 0x29, 0xdd, 0xe0, 0xe8, 0xff, 0x21, 0x8e, 0xb2, 0xff, 0xd0, 0x4c, 0x8c, 0x52, 0xde, 0xc1, + 0xfd, 0x8b, 0x8d, 0x96, 0x7d, 0x48, 0xdf, 0xa6, 0x54, 0xa1, 0x4c, 0x6c, 0xfe, 0x5b, 0x86, 0x11, + 0xf9, 0xe9, 0x5f, 0xfe, 0xc3, 0x97, 0xf0, 0x23, 0xfa, 0x28, 0x94, 0x8a, 0x8c, 0x11, 0x54, 0xfc, + 0xaa, 0xf5, 0x8d, 0xb7, 0x70, 0x4e, 0xaf, 0x1b, 0xb7, 0x13, 0x73, 0x9a, 0x15, 0x3c, 0xda, 0x34, + 0x3a, 0xf9, 0xe1, 0xbe, 0xf8, 0xe4, 0x9c, 0xfb, 0x98, 0xdf, 0xcd, 0x83, 0x1c, 0xd3, 0x20, 0x25, + 0x7a, 0x62, 0xab, 0xbd, 0x62, 0x33, 0xc6, 0x43, 0x1c, 0xeb, 0x5b, 0xc6, 0xbd, 0x1b, 0xc7, 0xfa, + 0x08, 0xfd, 0xef, 0x62, 0xc4, 0x47, 0x00, 0x71, 0xa8, 0x21, 0x9b, 0x09, 0x78, 0x8b, 0x18, 0xd0, + 0x7c, 0x34, 0x62, 0x72, 0x3f, 0xab, 0xb8, 0x38, 0xd1, 0xe2, 0x6f, 0x10, 0x3b, 0x8d, 0x42, 0xf1, + 0x74, 0xe9, 0x2b, 0x19, 0x15, 0x98, 0x90, 0xbe, 0x66, 0xdb, 0x4f, 0x30, 0xd3, 0x28, 0xee, 0xee, + 0x18, 0x6a, 0x7b, 0x9e, 0xf7, 0x7c, 0x3a, 0x89, 0xc2, 0xdb, 0x93, 0x41, 0x31, 0xbb, 0x76, 0x70, + 0xbe, 0x3e, 0x33, 0x0b, 0xe3, 0x3e, 0x36, 0xb5, 0xce, 0x5a, 0x5a, 0x53, 0x8f, 0x7e, 0x12, 0xc7, + 0x37, 0x7e, 0xc1, 0x6c, 0x58, 0x8c, 0x78, 0x74, 0x1c, 0x43, 0x98, 0x6c, 0x26, 0xc1, 0x99, 0x67, + 0xbb, 0x48, 0xa8, 0x09, 0x6a, 0xb4, 0x8f, 0x02, 0xd5, 0xe6, 0xe3, 0x0c, 0x3b, 0x82, 0xea, 0x36, + 0x1f, 0x60, 0xa2, 0x3e, 0x86, 0x96, 0x2c, 0x25, 0xc2, 0x14, 0x28, 0x26, 0x65, 0xbd, 0x96, 0x00, + 0x26, 0xcf, 0xad, 0x89, 0x7d, 0xed, 0xf3, 0xcf, 0x1f, 0xfd, 0x44, 0x06, 0xad, 0x7c, 0xa1, 0xce, + 0x2d, 0x15, 0xd4, 0x93, 0x38, 0xb7, 0x66, 0xa2, 0x80, 0x12, 0xe7, 0xd6, 0x5c, 0x14, 0x50, 0x62, + 0xa9, 0x55, 0x50, 0x11, 0x1b, 0xc1, 0xe2, 0x5c, 0xe0, 0x50, 0x74, 0x64, 0xdd, 0x14, 0x6e, 0xb4, + 0x7e, 0xff, 0x66, 0x84, 0x64, 0x6f, 0x0f, 0x93, 0xbd, 0xf5, 0xa0, 0x46, 0x97, 0x3e, 0x9e, 0x70, + 0x4a, 0xd9, 0x9b, 0xb9, 0xef, 0x46, 0xcf, 0x07, 0x9c, 0x3d, 0x60, 0xb0, 0x2c, 0x29, 0xe1, 0x60, + 0xae, 0x1c, 0xfb, 0x0d, 0xa8, 0x3c, 0xe5, 0xa1, 0xca, 0xd1, 0x8b, 0x64, 0xec, 0x99, 0xa4, 0xbd, + 0xf5, 0x94, 0x14, 0xbf, 0x24, 0xcd, 0x60, 0x6b, 0x8f, 0xf8, 0xf0, 0x8c, 0x13, 0x73, 0xb2, 0x9c, + 0xe1, 0x17, 0xec, 0xd7, 0xb1, 0xf1, 0x28, 0x35, 0x7a, 0x55, 0x4b, 0xc2, 0xd2, 0x1b, 0x6f, 0xcc, + 0xc0, 0xd3, 0x5a, 0x76, 0xbd, 0x21, 0xd7, 0x64, 0x3d, 0x17, 0x2a, 0xda, 0x15, 0x0a, 0xd1, 0x06, + 0x9a, 0xbf, 0x32, 0x23, 0xda, 0x40, 0x29, 0x37, 0x2e, 0x18, 0x0f, 0xb0, 0x1f, 0x83, 0xdd, 0x8f, + 0xfb, 0xa1, 0x5b, 0x16, 0xe2, 0x9e, 0x1e, 0xfd, 0xc4, 0x1e, 0x87, 0x5f, 0xb0, 0x4f, 0xf1, 0x6a, + 0x75, 0x3d, 0x07, 0x31, 0x56, 0x1a, 0x66, 0xd3, 0x15, 0xa3, 0xc5, 0xd2, 0x8a, 0x92, 0x8a, 0x04, + 0x75, 0x85, 0x92, 0xdc, 0xfb, 0x00, 0xbd, 0xd0, 0x9b, 0x6c, 0xdb, 0x7c, 0xec, 0xb9, 0x31, 0xaf, + 0x8d, 0xb3, 0xe2, 0x62, 0xfe, 0xa5, 0xa5, 0xc6, 0xb1, 0x4f, 0x35, 0x2d, 0x2b, 0x91, 0xc6, 0xa9, + 0x88, 0xeb, 0xc6, 0xc4, 0xb9, 0x68, 0x41, 0x52, 0x92, 0xe7, 0x1e, 0x67, 0x58, 0x1b, 0x20, 0x8e, + 0x1c, 0x8b, 0x74, 0xa6, 0xb9, 0xa0, 0xb4, 0x88, 0xed, 0xa5, 0x84, 0x99, 0x1d, 0x41, 0x39, 0x0e, + 0xb9, 0x59, 0x8b, 0x6f, 0x84, 0x49, 0x04, 0xe8, 0x44, 0x27, 0xf8, 0x5c, 0xb8, 0x8b, 0xd1, 0xc4, + 0xa5, 0x02, 0x56, 0x12, 0x4b, 0x75, 0xca, 0x79, 0xc0, 0x1c, 0x58, 0xa2, 0x01, 0x46, 0xe2, 0x12, + 0x66, 0x73, 0x45, 0x37, 0xe8, 0xcf, 0x47, 0x9e, 0x44, 0xbb, 0x39, 0x35, 0x7e, 0x22, 0x61, 0xfa, + 0x11, 0xd4, 0x4a, 0x99, 0x64, 0x82, 0x35, 0x8f, 0x61, 0x71, 0xce, 0x45, 0x1f, 0x6d, 0xe9, 0x9b, + 0x62, 0x2e, 0xa2, 0x2d, 0x7d, 0xa3, 0x77, 0xdf, 0x58, 0xc1, 0x2e, 0x1b, 0x06, 0xa0, 0xaa, 0x77, + 0xe9, 0x84, 0x83, 0x73, 0xd1, 0xdd, 0x3f, 0xcf, 0xc0, 0x52, 0x8a, 0x13, 0x9e, 0xbd, 0xa1, 0xac, + 0x06, 0x37, 0x3a, 0xe8, 0xd7, 0x53, 0x9d, 0xb5, 0x46, 0x0f, 0xfb, 0xd9, 0x67, 0xcf, 0x12, 0x07, + 0x1b, 0xf9, 0x4a, 0xe5, 0xce, 0x7c, 0xa1, 0x50, 0x91, 0x2a, 0x51, 0x7c, 0x0e, 0x6b, 0x34, 0x90, + 0xf6, 0x68, 0x34, 0xe3, 0x48, 0x7e, 0x7d, 0xee, 0xdb, 0xf5, 0x09, 0xe7, 0xf8, 0xfa, 0xcd, 0xdf, + 0xb6, 0xbf, 0x41, 0x9c, 0xa6, 0xa1, 0xb2, 0x29, 0x34, 0x67, 0x1d, 0xb4, 0xec, 0xe6, 0xb6, 0xd6, + 0xef, 0x25, 0xf4, 0xdf, 0x14, 0xa7, 0xee, 0xd7, 0xb0, 0xb3, 0x7b, 0xc6, 0x7a, 0xda, 0xba, 0x90, + 0x4a, 0x2c, 0xde, 0xc7, 0x5f, 0x8d, 0xbc, 0xc9, 0x33, 0xf3, 0x54, 0x1d, 0xdc, 0xe4, 0xfb, 0x8e, + 0x34, 0xf0, 0x74, 0x67, 0xf4, 0xdb, 0xd8, 0xfd, 0x7d, 0xe3, 0x4e, 0x5a, 0xf7, 0x3e, 0x55, 0x21, + 0x5d, 0x7c, 0x6d, 0x76, 0x5f, 0xab, 0x11, 0xdc, 0x4f, 0x7b, 0xdf, 0x37, 0xea, 0x42, 0x33, 0x6b, + 0x7d, 0x0b, 0x65, 0xbb, 0xaa, 0xee, 0x3d, 0x8e, 0xb6, 0x4f, 0x8a, 0x9b, 0x3a, 0xda, 0x3e, 0x69, + 0xee, 0xe6, 0xa4, 0x5c, 0xa3, 0x1c, 0xcd, 0x1f, 0x66, 0x1e, 0x6e, 0xbe, 0xf3, 0xc3, 0xaf, 0x9d, + 0x39, 0xe1, 0xf9, 0xf4, 0x64, 0x63, 0xe0, 0x8d, 0x1f, 0x8d, 0x94, 0xb5, 0x51, 0xa6, 0x3c, 0x3f, + 0x1a, 0xb9, 0xc3, 0x47, 0xd8, 0xec, 0xc9, 0xc2, 0xc4, 0xf7, 0x42, 0xef, 0x5b, 0xff, 0x37, 0x00, + 0x00, 0xff, 0xff, 0x1f, 0xcc, 0xbd, 0x51, 0x9e, 0x83, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/lnrpc/rpc.proto b/lnrpc/rpc.proto index f15cbfa4..5a34ab62 100644 --- a/lnrpc/rpc.proto +++ b/lnrpc/rpc.proto @@ -1437,6 +1437,15 @@ message Channel { amount to us. */ uint64 push_amount_sat = 27; + + /** + This uint32 indicates if this channel is to be considered 'frozen'. A + frozen channel doest not allow a cooperative channel close by the + initiator. The thaw_height is the height that this restriction stops + applying to the channel. This field is optional, not setting it or using a + value of zero will mean the channel has no additional restrictions. + */ + uint32 thaw_height = 28; } message ListChannelsRequest { @@ -1881,6 +1890,14 @@ message ChanPointShim { channel ID. */ bytes pending_chan_id = 5; + + /** + This uint32 indicates if this channel is to be considered 'frozen'. A + frozen channel does not allow a cooperative channel close by the + initiator. The thaw_height is the height that this restriction stops + applying to the channel. + */ + uint32 thaw_height = 6; } message FundingShim { diff --git a/lnrpc/rpc.swagger.json b/lnrpc/rpc.swagger.json index 6d96ac69..feab931a 100644 --- a/lnrpc/rpc.swagger.json +++ b/lnrpc/rpc.swagger.json @@ -1847,6 +1847,11 @@ "type": "string", "format": "byte", "description": "*\nIf non-zero, then this will be used as the pending channel ID on the wire\nprotocol to initate the funding request. This is an optional field, and\nshould only be set if the responder is already expecting a specific pending\nchannel ID." + }, + "thaw_height": { + "type": "integer", + "format": "int64", + "description": "*\nThis uint32 indicates if this channel is to be considered 'frozen'. A\nfrozen channel does not allow a cooperative channel close by the\ninitiator. The thaw_height is the height that this restriction stops\napplying to the channel." } } }, @@ -2002,6 +2007,11 @@ "type": "string", "format": "uint64", "description": "The amount that the initiator of the channel optionally pushed to the remote\nparty on channel open. This amount will be zero if the channel initiator did\nnot push any funds to the remote peer. If the initiator field is true, we\npushed this amount to our peer, if it is false, the remote peer pushed this\namount to us." + }, + "thaw_height": { + "type": "integer", + "format": "int64", + "description": "*\nThis uint32 indicates if this channel is to be considered 'frozen'. A\nfrozen channel doest not allow a cooperative channel close by the\ninitiator. The thaw_height is the height that this restriction stops\napplying to the channel. This field is optional, not setting it or using a\nvalue of zero will mean the channel has no additional restrictions." } } }, diff --git a/lntest/itest/lnd_test.go b/lntest/itest/lnd_test.go index d84ed114..c097bdab 100644 --- a/lntest/itest/lnd_test.go +++ b/lntest/itest/lnd_test.go @@ -15060,16 +15060,23 @@ func testExternalFundingChanPoint(net *lntest.NetworkHarness, t *harnessTest) { t.Fatalf("unable to gen pending chan ID: %v", err) } + _, currentHeight, err := net.Miner.Node.GetBestBlock() + if err != nil { + t.Fatalf("unable to get current blockheight %v", err) + } + // Now that we have the pending channel ID, Dave (our responder) will // register the intent to receive a new channel funding workflow using // the pending channel ID. - chanPointShim := &lnrpc.ChanPointShim{ - Amt: int64(chanSize), - ChanPoint: &lnrpc.ChannelPoint{ - FundingTxid: &lnrpc.ChannelPoint_FundingTxidBytes{ - FundingTxidBytes: txid[:], - }, + chanPoint := &lnrpc.ChannelPoint{ + FundingTxid: &lnrpc.ChannelPoint_FundingTxidBytes{ + FundingTxidBytes: txid[:], }, + } + thawHeight := uint32(currentHeight + 10) + chanPointShim := &lnrpc.ChanPointShim{ + Amt: int64(chanSize), + ChanPoint: chanPoint, LocalKey: &lnrpc.KeyDescriptor{ RawKeyBytes: daveFundingKey.RawKeyBytes, KeyLoc: &lnrpc.KeyLocator{ @@ -15079,6 +15086,7 @@ func testExternalFundingChanPoint(net *lntest.NetworkHarness, t *harnessTest) { }, RemoteKey: carolFundingKey.RawKeyBytes, PendingChanId: pendingChanID[:], + ThawHeight: thawHeight, } fundingShim := &lnrpc.FundingShim{ Shim: &lnrpc.FundingShim_ChanPointShim{ @@ -15121,13 +15129,24 @@ func testExternalFundingChanPoint(net *lntest.NetworkHarness, t *harnessTest) { // At this point, we'll now carry out the normal basic channel funding // test as everything should now proceed as normal (a regular channel // funding flow). - _, _, closeChans, err := basicChannelFundingTest( + carolChan, daveChan, _, err := basicChannelFundingTest( t, net, carol, dave, fundingShim, ) if err != nil { t.Fatalf("unable to open channels: %v", err) } + // Both channels should be marked as frozen with the proper thaw + // height. + if carolChan.ThawHeight != thawHeight { + t.Fatalf("expected thaw height of %v, got %v", + carolChan.ThawHeight, thawHeight) + } + if daveChan.ThawHeight != thawHeight { + t.Fatalf("expected thaw height of %v, got %v", + daveChan.ThawHeight, thawHeight) + } + // Next, to make sure the channel functions as normal, we'll make some // payments within the channel. payAmt := btcutil.Amount(100000) @@ -15148,10 +15167,24 @@ func testExternalFundingChanPoint(net *lntest.NetworkHarness, t *harnessTest) { t.Fatalf("unable to make payments between Carol and Dave") } - // To conclude, we'll close the newly created channel between Carol and - // Dave. - closeChans() + // Now that the channels are open, and we've confirmed that they're + // operational, we'll now ensure that the channels are frozen as + // intended (if requested). + // + // First, we'll try to close the channel as Carol, the initiator. This + // should fail as a frozen channel only allows the responder to + // initiate a channel close. + ctxt, _ = context.WithTimeout(ctxb, channelCloseTimeout) + _, _, err = net.CloseChannel(ctxt, carol, chanPoint, false) + if err == nil { + t.Fatalf("carol wasn't denied a co-op close attempt for a " + + "frozen channel") + } + // Next we'll try but this time with Dave (the responder) as the + // initiator. This time the channel should be closed as normal. + ctxt, _ = context.WithTimeout(ctxb, channelCloseTimeout) + closeChannelAndAssert(ctxt, t, net, dave, chanPoint, false) } type testCase struct { diff --git a/lnwallet/chanfunding/canned_assembler.go b/lnwallet/chanfunding/canned_assembler.go index 36ebba15..b512a722 100644 --- a/lnwallet/chanfunding/canned_assembler.go +++ b/lnwallet/chanfunding/canned_assembler.go @@ -30,6 +30,11 @@ type ShimIntent struct { // chanPoint is the final channel point for the to be created channel. chanPoint *wire.OutPoint + + // thawHeight, if non-zero is the height where this channel will become + // a normal channel. Until this height, it's considered frozen, so it + // can only be cooperatively closed by the responding party. + thawHeight uint32 } // FundingOutput returns the witness script, and the output that creates the @@ -87,6 +92,12 @@ func (s *ShimIntent) ChanPoint() (*wire.OutPoint, error) { return s.chanPoint, nil } +// ThawHeight returns the height where this channel goes back to being a normal +// channel. +func (s *ShimIntent) ThawHeight() uint32 { + return s.thawHeight +} + // FundingKeys couples our multi-sig key along with the remote party's key. type FundingKeys struct { // LocalKey is our multi-sig key. @@ -131,12 +142,17 @@ type CannedAssembler struct { // initiator indicates if we're the initiator or the channel or not. initiator bool + + // thawHeight, if non-zero is the height where this channel will become + // a normal channel. Until this height, it's considered frozen, so it + // can only be cooperatively closed by the responding party. + thawHeight uint32 } // NewCannedAssembler creates a new CannedAssembler from the material required // to construct a funding output and channel point. -func NewCannedAssembler(chanPoint wire.OutPoint, fundingAmt btcutil.Amount, - localKey *keychain.KeyDescriptor, +func NewCannedAssembler(thawHeight uint32, chanPoint wire.OutPoint, + fundingAmt btcutil.Amount, localKey *keychain.KeyDescriptor, remoteKey *btcec.PublicKey, initiator bool) *CannedAssembler { return &CannedAssembler{ @@ -145,6 +161,7 @@ func NewCannedAssembler(chanPoint wire.OutPoint, fundingAmt btcutil.Amount, remoteKey: remoteKey, fundingAmt: fundingAmt, chanPoint: chanPoint, + thawHeight: thawHeight, } } @@ -162,9 +179,10 @@ func (c *CannedAssembler) ProvisionChannel(req *Request) (Intent, error) { } intent := &ShimIntent{ - localKey: c.localKey, - remoteKey: c.remoteKey, - chanPoint: &c.chanPoint, + localKey: c.localKey, + remoteKey: c.remoteKey, + chanPoint: &c.chanPoint, + thawHeight: c.thawHeight, } if c.initiator { diff --git a/lnwallet/interface_test.go b/lnwallet/interface_test.go index aae62cf3..faadaca2 100644 --- a/lnwallet/interface_test.go +++ b/lnwallet/interface_test.go @@ -701,7 +701,7 @@ func testCancelNonExistentReservation(miner *rpctest.Harness, res, err := lnwallet.NewChannelReservation( 10000, 10000, feePerKw, alice, 22, 10, &testHdSeed, lnwire.FFAnnounceChannel, lnwallet.CommitmentTypeTweakless, - nil, [32]byte{}, + nil, [32]byte{}, 0, ) if err != nil { t.Fatalf("unable to create res: %v", err) @@ -796,8 +796,8 @@ func assertContributionInitPopulated(t *testing.T, c *lnwallet.ChannelContributi func testSingleFunderReservationWorkflow(miner *rpctest.Harness, alice, bob *lnwallet.LightningWallet, t *testing.T, commitType lnwallet.CommitmentType, - aliceChanFunder chanfunding.Assembler, - fetchFundingTx func() *wire.MsgTx, pendingChanID [32]byte) { + aliceChanFunder chanfunding.Assembler, fetchFundingTx func() *wire.MsgTx, + pendingChanID [32]byte, thawHeight uint32) { // For this scenario, Alice will be the channel initiator while bob // will act as the responder to the workflow. @@ -1045,6 +1045,24 @@ func testSingleFunderReservationWorkflow(miner *rpctest.Harness, t.Fatalf("incorrect transaction was mined") } + // If a frozen channel was requested, then we expect that both channel + // types show as being a frozen channel type. + aliceChanFrozen := aliceChannels[0].ChanType.IsFrozen() + bobChanFrozen := bobChannels[0].ChanType.IsFrozen() + if thawHeight != 0 && (!aliceChanFrozen || !bobChanFrozen) { + t.Fatalf("expected both alice and bob to have frozen chans: "+ + "alice_frozen=%v, bob_frozen=%v", aliceChanFrozen, + bobChanFrozen) + } + if thawHeight != bobChannels[0].ThawHeight { + t.Fatalf("wrong thaw height: expected %v got %v", thawHeight, + bobChannels[0].ThawHeight) + } + if thawHeight != aliceChannels[0].ThawHeight { + t.Fatalf("wrong thaw height: expected %v got %v", thawHeight, + aliceChannels[0].ThawHeight) + } + assertReservationDeleted(aliceChanReservation, t) assertReservationDeleted(bobChanReservation, t) } @@ -2546,8 +2564,8 @@ var walletTests = []walletTestCase{ testSingleFunderReservationWorkflow( miner, alice, bob, t, - lnwallet.CommitmentTypeLegacy, nil, nil, - [32]byte{}, + lnwallet.CommitmentTypeLegacy, nil, + nil, [32]byte{}, 0, ) }, }, @@ -2558,8 +2576,8 @@ var walletTests = []walletTestCase{ testSingleFunderReservationWorkflow( miner, alice, bob, t, - lnwallet.CommitmentTypeTweakless, nil, nil, - [32]byte{}, + lnwallet.CommitmentTypeTweakless, nil, + nil, [32]byte{}, 0, ) }, }, @@ -2777,12 +2795,13 @@ func testSingleFunderExternalFundingTx(miner *rpctest.Harness, // Now that we have the fully constructed funding transaction, we'll // create a new shim external funder out of it for Alice, and prep a // shim intent for Bob. + thawHeight := uint32(200) aliceExternalFunder := chanfunding.NewCannedAssembler( - *chanPoint, btcutil.Amount(chanAmt), &aliceFundingKey, + thawHeight, *chanPoint, btcutil.Amount(chanAmt), &aliceFundingKey, bobFundingKey.PubKey, true, ) bobShimIntent, err := chanfunding.NewCannedAssembler( - *chanPoint, btcutil.Amount(chanAmt), &bobFundingKey, + thawHeight, *chanPoint, btcutil.Amount(chanAmt), &bobFundingKey, aliceFundingKey.PubKey, false, ).ProvisionChannel(&chanfunding.Request{ LocalAmt: btcutil.Amount(chanAmt), @@ -2816,7 +2835,7 @@ func testSingleFunderExternalFundingTx(miner *rpctest.Harness, miner, alice, bob, t, lnwallet.CommitmentTypeTweakless, aliceExternalFunder, func() *wire.MsgTx { return fundingTx - }, pendingChanID, + }, pendingChanID, thawHeight, ) } diff --git a/lnwallet/reservation.go b/lnwallet/reservation.go index 823aec4a..3c9188a6 100644 --- a/lnwallet/reservation.go +++ b/lnwallet/reservation.go @@ -171,7 +171,7 @@ func NewChannelReservation(capacity, localFundingAmt btcutil.Amount, id uint64, pushMSat lnwire.MilliSatoshi, chainHash *chainhash.Hash, flags lnwire.FundingFlag, commitType CommitmentType, fundingAssembler chanfunding.Assembler, - pendingChanID [32]byte) (*ChannelReservation, error) { + pendingChanID [32]byte, thawHeight uint32) (*ChannelReservation, error) { var ( ourBalance lnwire.MilliSatoshi @@ -306,6 +306,12 @@ func NewChannelReservation(capacity, localFundingAmt btcutil.Amount, chanType |= channeldb.AnchorOutputsBit } + // If the channel is meant to be frozen, then we'll set the frozen bit + // now so once the channel is open, it can be interpreted properly. + if thawHeight != 0 { + chanType |= channeldb.FrozenBit + } + return &ChannelReservation{ ourContribution: &ChannelContribution{ FundingAmount: ourBalance.ToSatoshis(), @@ -334,7 +340,8 @@ func NewChannelReservation(capacity, localFundingAmt btcutil.Amount, FeePerKw: btcutil.Amount(commitFeePerKw), CommitFee: commitFee, }, - Db: wallet.Cfg.Database, + ThawHeight: thawHeight, + Db: wallet.Cfg.Database, }, pushMSat: pushMSat, pendingChanID: pendingChanID, diff --git a/lnwallet/wallet.go b/lnwallet/wallet.go index dbada608..06fb9bb7 100644 --- a/lnwallet/wallet.go +++ b/lnwallet/wallet.go @@ -560,6 +560,26 @@ func (l *LightningWallet) handleFundingReserveRequest(req *InitFundingReserveMsg remoteFundingAmt = fundingIntent.RemoteFundingAmt() } + // If this is a shim intent, then it may be attempting to use an + // existing set of keys for the funding workflow. In this case, we'll + // make a simple wrapper keychain.KeyRing that will proxy certain + // derivation calls to future callers. + var ( + keyRing keychain.KeyRing = l.SecretKeyRing + thawHeight uint32 + ) + if shimIntent, ok := fundingIntent.(*chanfunding.ShimIntent); ok { + keyRing = &shimKeyRing{ + KeyRing: keyRing, + ShimIntent: shimIntent, + } + + // As this was a registered shim intent, we'll obtain the thaw + // height of the intent, if present at all. If this is + // non-zero, then we'll mark this as the proper channel type. + thawHeight = shimIntent.ThawHeight() + } + // The total channel capacity will be the size of the funding output we // created plus the remote contribution. capacity := localFundingAmt + remoteFundingAmt @@ -569,6 +589,7 @@ func (l *LightningWallet) handleFundingReserveRequest(req *InitFundingReserveMsg capacity, localFundingAmt, req.CommitFeePerKw, l, id, req.PushMSat, l.Cfg.NetParams.GenesisHash, req.Flags, req.CommitType, req.ChanFunder, req.PendingChanID, + thawHeight, ) if err != nil { if fundingIntent != nil { @@ -580,19 +601,6 @@ func (l *LightningWallet) handleFundingReserveRequest(req *InitFundingReserveMsg return } - var keyRing keychain.KeyRing = l.SecretKeyRing - - // If this is a shim intent, then it may be attempting to use an - // existing set of keys for the funding workflow. In this case, we'll - // make a simple wrapper keychain.KeyRing that will proxy certain - // derivation calls to future callers. - if shimIntent, ok := fundingIntent.(*chanfunding.ShimIntent); ok { - keyRing = &shimKeyRing{ - KeyRing: keyRing, - ShimIntent: shimIntent, - } - } - err = l.initOurContribution( reservation, fundingIntent, req.NodeAddr, req.NodeID, keyRing, ) diff --git a/rpcserver.go b/rpcserver.go index baf7c057..1cf9935d 100644 --- a/rpcserver.go +++ b/rpcserver.go @@ -1470,8 +1470,8 @@ func extractOpenChannelMinConfs(in *lnrpc.OpenChannelRequest) (int32, error) { // newFundingShimAssembler returns a new fully populated // chanfunding.CannedAssembler using a FundingShim obtained from an RPC caller. -func newFundingShimAssembler(chanPointShim *lnrpc.ChanPointShim, - initiator bool, keyRing keychain.KeyRing) (chanfunding.Assembler, error) { +func newFundingShimAssembler(chanPointShim *lnrpc.ChanPointShim, initiator bool, + keyRing keychain.KeyRing) (chanfunding.Assembler, error) { // Perform some basic sanity checks to ensure that all the expected // fields are populated. @@ -1545,8 +1545,9 @@ func newFundingShimAssembler(chanPointShim *lnrpc.ChanPointShim, // With all the parts assembled, we can now make the canned assembler // to pass into the wallet. return chanfunding.NewCannedAssembler( - *chanPoint, btcutil.Amount(chanPointShim.Amt), - &localKeyDesc, remoteKey, initiator, + chanPointShim.ThawHeight, *chanPoint, + btcutil.Amount(chanPointShim.Amt), &localKeyDesc, + remoteKey, initiator, ), nil } @@ -1956,15 +1957,25 @@ func (r *rpcServer) CloseChannel(in *lnrpc.CloseChannelRequest, return err } + // If this is a frozen channel, then we only allow the close to proceed + // if we were the responder to this channel. + _, bestHeight, err := r.server.cc.chainIO.GetBestBlock() + if err != nil { + return err + } + if channel.State().ChanType.IsFrozen() && channel.IsInitiator() && + uint32(bestHeight) < channel.State().ThawHeight { + + return fmt.Errorf("cannot co-op close frozen channel as "+ + "initiator until height=%v, (current_height=%v)", + channel.State().ThawHeight, bestHeight) + } + // If a force closure was requested, then we'll handle all the details // around the creation and broadcast of the unilateral closure // transaction here rather than going to the switch as we don't require // interaction from the peer. if force { - _, bestHeight, err := r.server.cc.chainIO.GetBestBlock() - if err != nil { - return err - } // As we're force closing this channel, as a precaution, we'll // ensure that the switch doesn't continue to see this channel @@ -3179,6 +3190,7 @@ func createRPCOpenChannel(r *rpcServer, graph *channeldb.ChannelGraph, RemoteChanReserveSat: int64(dbChannel.RemoteChanCfg.ChanReserve), StaticRemoteKey: commitmentType == lnrpc.CommitmentType_STATIC_REMOTE_KEY, CommitmentType: commitmentType, + ThawHeight: dbChannel.ThawHeight, } for i, htlc := range localCommit.Htlcs {