refactor: improve wrapped community description naming

This commit is contained in:
Patryk Osmaczko 2023-07-10 17:35:15 +02:00 committed by osmaczko
parent 9eaf229161
commit 47c568fb08
10 changed files with 218 additions and 218 deletions

View File

@ -5,7 +5,7 @@ import (
)
func (o *Community) ToSyncCommunityProtobuf(clock uint64, communitySettings *CommunitySettings) (*protobuf.SyncCommunity, error) {
md, err := o.ToBytes()
wrappedCommunity, err := o.ToProtocolMessageBytes()
if err != nil {
return nil, err
}
@ -29,7 +29,7 @@ func (o *Community) ToSyncCommunityProtobuf(clock uint64, communitySettings *Com
return &protobuf.SyncCommunity{
Clock: clock,
Id: o.ID(),
Description: md,
Description: wrappedCommunity,
Joined: o.Joined(),
Verified: o.Verified(),
Muted: o.Muted(),

View File

@ -25,22 +25,22 @@ import (
const signatureLength = 65
type Config struct {
PrivateKey *ecdsa.PrivateKey
CommunityDescription *protobuf.CommunityDescription
MarshaledCommunityDescription []byte
ID *ecdsa.PublicKey
Joined bool
Requested bool
Verified bool
Spectated bool
Muted bool
MuteTill time.Time
Logger *zap.Logger
RequestedToJoinAt uint64
RequestsToJoin []*RequestToJoin
MemberIdentity *ecdsa.PublicKey
SyncedAt uint64
EventsData *EventsData
PrivateKey *ecdsa.PrivateKey
CommunityDescription *protobuf.CommunityDescription
CommunityDescriptionProtocolMessage []byte // community in a wrapped & signed (by owner) protocol message
ID *ecdsa.PublicKey
Joined bool
Requested bool
Verified bool
Spectated bool
Muted bool
MuteTill time.Time
Logger *zap.Logger
RequestedToJoinAt uint64
RequestsToJoin []*RequestToJoin
MemberIdentity *ecdsa.PublicKey
SyncedAt uint64
EventsData *EventsData
}
type EventsData struct {
@ -612,11 +612,11 @@ func (o *Community) InviteUserToOrg(pk *ecdsa.PublicKey) (*protobuf.CommunityInv
}
response := &protobuf.CommunityInvitation{}
marshaledCommunity, err := o.toBytes()
wrappedCommunity, err := o.toProtocolMessageBytes()
if err != nil {
return nil, err
}
response.CommunityDescription = marshaledCommunity
response.WrappedCommunityDescription = wrappedCommunity
grant, err := o.buildGrant(pk, "")
if err != nil {
@ -654,11 +654,11 @@ func (o *Community) InviteUserToChat(pk *ecdsa.PublicKey, chatID string) (*proto
o.increaseClock()
response := &protobuf.CommunityInvitation{}
marshaledCommunity, err := o.toBytes()
wrappedCommunity, err := o.toProtocolMessageBytes()
if err != nil {
return nil, err
}
response.CommunityDescription = marshaledCommunity
response.WrappedCommunityDescription = wrappedCommunity
grant, err := o.buildGrant(pk, chatID)
if err != nil {
@ -1070,7 +1070,7 @@ func (o *Community) UpdateCommunityDescription(description *protobuf.CommunityDe
}
o.config.CommunityDescription = description
o.config.MarshaledCommunityDescription = rawMessage
o.config.CommunityDescriptionProtocolMessage = rawMessage
return response, nil
}
@ -1337,17 +1337,16 @@ func (o *Community) MarshaledDescription() ([]byte, error) {
return o.marshaledDescription()
}
func (o *Community) toBytes() ([]byte, error) {
func (o *Community) toProtocolMessageBytes() ([]byte, error) {
// This should not happen, as we can only serialize on our side if we
// created the community
if !o.IsControlNode() && len(o.config.MarshaledCommunityDescription) == 0 {
if !o.IsControlNode() && len(o.config.CommunityDescriptionProtocolMessage) == 0 {
return nil, ErrNotControlNode
}
// If we are not a control node, use the received serialized version
if !o.IsControlNode() {
return o.config.MarshaledCommunityDescription, nil
return o.config.CommunityDescriptionProtocolMessage, nil
}
// serialize and sign
@ -1359,11 +1358,11 @@ func (o *Community) toBytes() ([]byte, error) {
return protocol.WrapMessageV1(payload, protobuf.ApplicationMetadataMessage_COMMUNITY_DESCRIPTION, o.config.PrivateKey)
}
// ToBytes returns the community in a wrapped & signed protocol message
func (o *Community) ToBytes() ([]byte, error) {
// ToProtocolMessageBytes returns the community in a wrapped & signed protocol message
func (o *Community) ToProtocolMessageBytes() ([]byte, error) {
o.mutex.Lock()
defer o.mutex.Unlock()
return o.toBytes()
return o.toProtocolMessageBytes()
}
func (o *Community) Chats() map[string]*protobuf.CommunityChat {
@ -2027,21 +2026,21 @@ func (o *Community) AddMemberWithRevealedAccounts(dbRequest *RequestToJoin, role
func (o *Community) CreateDeepCopy() *Community {
return &Community{
config: &Config{
PrivateKey: o.config.PrivateKey,
CommunityDescription: proto.Clone(o.config.CommunityDescription).(*protobuf.CommunityDescription),
MarshaledCommunityDescription: o.config.MarshaledCommunityDescription,
ID: o.config.ID,
Joined: o.config.Joined,
Requested: o.config.Requested,
Verified: o.config.Verified,
Spectated: o.config.Spectated,
Muted: o.config.Muted,
Logger: o.config.Logger,
RequestedToJoinAt: o.config.RequestedToJoinAt,
RequestsToJoin: o.config.RequestsToJoin,
MemberIdentity: o.config.MemberIdentity,
SyncedAt: o.config.SyncedAt,
EventsData: o.config.EventsData,
PrivateKey: o.config.PrivateKey,
CommunityDescription: proto.Clone(o.config.CommunityDescription).(*protobuf.CommunityDescription),
CommunityDescriptionProtocolMessage: o.config.CommunityDescriptionProtocolMessage,
ID: o.config.ID,
Joined: o.config.Joined,
Requested: o.config.Requested,
Verified: o.config.Verified,
Spectated: o.config.Spectated,
Muted: o.config.Muted,
Logger: o.config.Logger,
RequestedToJoinAt: o.config.RequestedToJoinAt,
RequestsToJoin: o.config.RequestsToJoin,
MemberIdentity: o.config.MemberIdentity,
SyncedAt: o.config.SyncedAt,
EventsData: o.config.EventsData,
},
}
}

View File

@ -218,7 +218,7 @@ func (o *Community) UpdateCommunityByEvents(communityEventMessage *CommunityEven
return nil, err
}
copy.config.MarshaledCommunityDescription = rawMessage
copy.config.CommunityDescriptionProtocolMessage = rawMessage
changes.Community = copy
@ -384,16 +384,16 @@ func (o *Community) addNewCommunityEvent(event *CommunityEvent) error {
}
// All events must be built on top of the control node CommunityDescription
// If there were no events before, extract CommunityDescription from MarshaledCommunityDescription
// If there were no events before, extract CommunityDescription from CommunityDescriptionProtocolMessage
// and check the signature
if o.config.EventsData == nil || len(o.config.EventsData.EventsBaseCommunityDescription) == 0 {
_, err := validateAndGetEventsMessageCommunityDescription(o.config.MarshaledCommunityDescription, o.config.ID)
_, err := validateAndGetEventsMessageCommunityDescription(o.config.CommunityDescriptionProtocolMessage, o.config.ID)
if err != nil {
return err
}
o.config.EventsData = &EventsData{
EventsBaseCommunityDescription: o.config.MarshaledCommunityDescription,
EventsBaseCommunityDescription: o.config.CommunityDescriptionProtocolMessage,
Events: []CommunityEvent{},
}
}

View File

@ -123,12 +123,12 @@ func (s *CommunitySuite) TestInviteUserToOrg() {
s.Require().True(org.HasMember(&newMember.PublicKey))
// Check member has been added to response
s.Require().NotNil(response.CommunityDescription)
s.Require().NotNil(response.WrappedCommunityDescription)
metadata := &protobuf.ApplicationMetadataMessage{}
description := &protobuf.CommunityDescription{}
s.Require().NoError(proto.Unmarshal(response.CommunityDescription, metadata))
s.Require().NoError(proto.Unmarshal(response.WrappedCommunityDescription, metadata))
s.Require().NoError(proto.Unmarshal(metadata.Payload, description))
_, ok := description.Members[common.PubkeyToHex(&newMember.PublicKey)]
@ -299,12 +299,12 @@ func (s *CommunitySuite) TestInviteUserToChat() {
s.Require().True(org.IsMemberInChat(&newMember.PublicKey, testChatID1))
// Check member has been added to response
s.Require().NotNil(response.CommunityDescription)
s.Require().NotNil(response.WrappedCommunityDescription)
metadata := &protobuf.ApplicationMetadataMessage{}
description := &protobuf.CommunityDescription{}
s.Require().NoError(proto.Unmarshal(response.CommunityDescription, metadata))
s.Require().NoError(proto.Unmarshal(response.WrappedCommunityDescription, metadata))
s.Require().NoError(proto.Unmarshal(metadata.Payload, description))
_, ok := description.Members[common.PubkeyToHex(&newMember.PublicKey)]

View File

@ -1215,11 +1215,11 @@ func (m *Manager) HandleCommunityDescriptionMessage(signer *ecdsa.PublicKey, des
if community == nil {
config := Config{
CommunityDescription: description,
Logger: m.logger,
MarshaledCommunityDescription: payload,
MemberIdentity: &m.identity.PublicKey,
ID: signer,
CommunityDescription: description,
Logger: m.logger,
CommunityDescriptionProtocolMessage: payload,
MemberIdentity: &m.identity.PublicKey,
ID: signer,
}
community, err = New(config)

View File

@ -39,14 +39,14 @@ const communitiesBaseQuery = `
func (p *Persistence) SaveCommunity(community *Community) error {
id := community.ID()
privateKey := community.PrivateKey()
description, err := community.ToBytes()
wrappedCommunity, err := community.ToProtocolMessageBytes()
if err != nil {
return err
}
_, err = p.db.Exec(`
INSERT INTO communities_communities (id, private_key, description, joined, spectated, verified, muted, muted_till) VALUES (?, ?, ?, ?, ?, ?, ?, ?)`,
id, crypto.FromECDSA(privateKey), description, community.config.Joined, community.config.Spectated, community.config.Verified, community.config.Muted, community.config.MuteTill)
id, crypto.FromECDSA(privateKey), wrappedCommunity, community.config.Joined, community.config.Spectated, community.config.Verified, community.config.Muted, community.config.MuteTill)
return err
}
@ -282,7 +282,7 @@ func (p *Persistence) GetByID(memberIdentity *ecdsa.PublicKey, id []byte) (*Comm
return unmarshalCommunityFromDB(memberIdentity, publicKeyBytes, privateKeyBytes, descriptionBytes, joined, spectated, verified, muted, muteTill.Time, uint64(requestedToJoinAt.Int64), eventsBytes, eventsDescriptionBytes, p.logger)
}
func unmarshalCommunityFromDB(memberIdentity *ecdsa.PublicKey, publicKeyBytes, privateKeyBytes, descriptionBytes []byte, joined,
func unmarshalCommunityFromDB(memberIdentity *ecdsa.PublicKey, publicKeyBytes, privateKeyBytes, wrappedCommunity []byte, joined,
spectated, verified, muted bool, muteTill time.Time, requestedToJoinAt uint64, eventsBytes []byte,
eventsDescriptionBytes []byte, logger *zap.Logger) (*Community, error) {
@ -296,7 +296,7 @@ func unmarshalCommunityFromDB(memberIdentity *ecdsa.PublicKey, publicKeyBytes, p
}
}
description, err := decodeCommunityDescription(descriptionBytes)
description, err := decodeWrappedCommunityDescription(wrappedCommunity)
if err != nil {
return nil, err
}
@ -312,19 +312,19 @@ func unmarshalCommunityFromDB(memberIdentity *ecdsa.PublicKey, publicKeyBytes, p
}
config := Config{
PrivateKey: privateKey,
CommunityDescription: description,
MemberIdentity: memberIdentity,
MarshaledCommunityDescription: descriptionBytes,
Logger: logger,
ID: id,
Verified: verified,
Muted: muted,
MuteTill: muteTill,
RequestedToJoinAt: requestedToJoinAt,
Joined: joined,
Spectated: spectated,
EventsData: eventsData,
PrivateKey: privateKey,
CommunityDescription: description,
MemberIdentity: memberIdentity,
CommunityDescriptionProtocolMessage: wrappedCommunity,
Logger: logger,
ID: id,
Verified: verified,
Muted: muted,
MuteTill: muteTill,
RequestedToJoinAt: requestedToJoinAt,
Joined: joined,
Spectated: spectated,
EventsData: eventsData,
}
community, err := New(config)
if err != nil {
@ -1234,7 +1234,7 @@ func (p *Persistence) getCommunityTokensInternal(rows *sql.Rows) ([]*CommunityTo
func (p *Persistence) AddCommunityToken(token *CommunityToken) error {
_, err := p.db.Exec(`INSERT INTO community_tokens (community_id, address, type, name, symbol, description, supply_str,
infinite_supply, transferable, remote_self_destruct, chain_id, deploy_state, image_base64, decimals)
infinite_supply, transferable, remote_self_destruct, chain_id, deploy_state, image_base64, decimals)
VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)`, token.CommunityID, token.Address, token.TokenType, token.Name,
token.Symbol, token.Description, token.Supply.String(), token.InfiniteSupply, token.Transferable, token.RemoteSelfDestruct,
token.ChainID, token.DeployState, token.Base64Image, token.Decimals)
@ -1256,10 +1256,10 @@ func (p *Persistence) RemoveCommunityToken(chainID int, contractAddress string)
return err
}
func decodeCommunityDescription(descriptionBytes []byte) (*protobuf.CommunityDescription, error) {
func decodeWrappedCommunityDescription(wrappedDescriptionBytes []byte) (*protobuf.CommunityDescription, error) {
metadata := &protobuf.ApplicationMetadataMessage{}
err := proto.Unmarshal(descriptionBytes, metadata)
err := proto.Unmarshal(wrappedDescriptionBytes, metadata)
if err != nil {
return nil, err
}

View File

@ -266,7 +266,7 @@ func (s *PersistenceSuite) makeNewCommunity(identity *ecdsa.PrivateKey) *Communi
md, err := com.MarshaledDescription()
s.NoError(err, "Community.MarshaledDescription shouldn't give any error")
com.config.MarshaledCommunityDescription = md
com.config.CommunityDescriptionProtocolMessage = md
return com
}

View File

@ -2214,7 +2214,7 @@ func (m *Messenger) sendChatMessage(ctx context.Context, message *common.Message
return nil, errors.New("community not found")
}
wrappedCommunity, err := community.ToBytes()
wrappedCommunity, err := community.ToProtocolMessageBytes()
if err != nil {
return nil, err
}
@ -4315,7 +4315,7 @@ func (m *Messenger) handleRetrievedMessages(chatWithMessages map[transport.Filte
logger.Debug("Handling CommunityInvitation")
invitation := msg.ParsedMessage.Interface().(protobuf.CommunityInvitation)
m.outputToCSV(msg.TransportMessage.Timestamp, msg.ID, senderID, filter.Topic, filter.ChatID, msg.Type, invitation)
err = m.HandleCommunityInvitation(messageState, publicKey, invitation, invitation.CommunityDescription)
err = m.HandleCommunityInvitation(messageState, publicKey, invitation, invitation.WrappedCommunityDescription)
if err != nil {
logger.Warn("failed to handle CommunityInvitation", zap.Error(err))
allMessagesProcessed = false

View File

@ -874,13 +874,13 @@ func (m *CommunityCategory) GetPosition() int32 {
}
type CommunityInvitation struct {
CommunityDescription []byte `protobuf:"bytes,1,opt,name=community_description,json=communityDescription,proto3" json:"community_description,omitempty"`
Grant []byte `protobuf:"bytes,2,opt,name=grant,proto3" json:"grant,omitempty"`
ChatId string `protobuf:"bytes,3,opt,name=chat_id,json=chatId,proto3" json:"chat_id,omitempty"`
PublicKey []byte `protobuf:"bytes,4,opt,name=public_key,json=publicKey,proto3" json:"public_key,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
WrappedCommunityDescription []byte `protobuf:"bytes,1,opt,name=wrapped_community_description,json=wrappedCommunityDescription,proto3" json:"wrapped_community_description,omitempty"`
Grant []byte `protobuf:"bytes,2,opt,name=grant,proto3" json:"grant,omitempty"`
ChatId string `protobuf:"bytes,3,opt,name=chat_id,json=chatId,proto3" json:"chat_id,omitempty"`
PublicKey []byte `protobuf:"bytes,4,opt,name=public_key,json=publicKey,proto3" json:"public_key,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *CommunityInvitation) Reset() { *m = CommunityInvitation{} }
@ -908,9 +908,9 @@ func (m *CommunityInvitation) XXX_DiscardUnknown() {
var xxx_messageInfo_CommunityInvitation proto.InternalMessageInfo
func (m *CommunityInvitation) GetCommunityDescription() []byte {
func (m *CommunityInvitation) GetWrappedCommunityDescription() []byte {
if m != nil {
return m.CommunityDescription
return m.WrappedCommunityDescription
}
return nil
}
@ -1734,135 +1734,136 @@ func init() {
}
var fileDescriptor_f937943d74c1cd8b = []byte{
// 2079 bytes of a gzipped FileDescriptorProto
// 2086 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x58, 0x4f, 0x73, 0x23, 0x47,
0x15, 0xcf, 0xe8, 0x8f, 0x2d, 0x3d, 0x49, 0xb6, 0xdc, 0xbb, 0x6b, 0x8f, 0xbd, 0xbb, 0x59, 0xed,
0x00, 0x85, 0x13, 0x0a, 0x6d, 0xe2, 0x40, 0xb1, 0x95, 0x40, 0x12, 0xad, 0x3c, 0x6c, 0xc4, 0xae,
0x46, 0x4e, 0x4b, 0xce, 0x42, 0x0a, 0x98, 0x6a, 0xcf, 0xb4, 0xed, 0xae, 0x95, 0x66, 0xc4, 0x74,
0xcb, 0x85, 0x38, 0x84, 0x2a, 0x8a, 0x4f, 0xc0, 0x89, 0x23, 0x55, 0xdc, 0xf9, 0x06, 0x14, 0x07,
0x15, 0xcf, 0xe8, 0x8f, 0x2d, 0x3d, 0x49, 0xb6, 0xdc, 0xd9, 0xb5, 0xc7, 0xde, 0x75, 0x56, 0x19,
0xa0, 0x70, 0x42, 0xa1, 0x4d, 0x0c, 0x14, 0x5b, 0x09, 0x24, 0xd1, 0xca, 0xc3, 0x46, 0xec, 0x6a,
0xe4, 0xb4, 0xe4, 0x2c, 0xa4, 0x80, 0xa9, 0xf6, 0x4c, 0xdb, 0xee, 0x5a, 0x69, 0x46, 0x4c, 0xb7,
0x0c, 0xe2, 0x10, 0xaa, 0x28, 0x3e, 0x01, 0x9f, 0x80, 0x2a, 0x0e, 0xdc, 0xf8, 0x06, 0x14, 0x07,
0xee, 0xdc, 0xb9, 0xc1, 0x8d, 0x23, 0x27, 0xce, 0x54, 0x77, 0xcf, 0x8c, 0x66, 0x64, 0x69, 0xff,
0x10, 0xa8, 0xe2, 0xa4, 0x79, 0xaf, 0x5f, 0xbf, 0x7e, 0xfd, 0xde, 0xef, 0xbd, 0x7e, 0x4f, 0xb0,
0xe3, 0x85, 0x93, 0xc9, 0x2c, 0x60, 0x82, 0x51, 0xde, 0x9e, 0x46, 0xa1, 0x08, 0x51, 0x45, 0xfd,
0x9c, 0xcd, 0xce, 0x0f, 0x6e, 0x78, 0x97, 0x44, 0xb8, 0xcc, 0xa7, 0x81, 0x60, 0x62, 0xae, 0x97,
0x0f, 0x6a, 0x34, 0x98, 0x4d, 0x62, 0x59, 0xeb, 0x0a, 0xca, 0x8f, 0x23, 0x12, 0x08, 0x74, 0x1f,
0xea, 0x89, 0xa6, 0xb9, 0xcb, 0x7c, 0xd3, 0x68, 0x19, 0x87, 0x75, 0x5c, 0x4b, 0x79, 0x3d, 0x1f,
0xdd, 0x86, 0xea, 0x84, 0x4e, 0xce, 0x68, 0x24, 0xd7, 0x0b, 0x6a, 0xbd, 0xa2, 0x19, 0x3d, 0x1f,
0xed, 0xc1, 0x66, 0x7c, 0x98, 0x59, 0x6c, 0x19, 0x87, 0x55, 0xbc, 0x21, 0xc9, 0x9e, 0x8f, 0x6e,
0x42, 0xd9, 0x1b, 0x87, 0xde, 0x73, 0xb3, 0xd4, 0x32, 0x0e, 0x4b, 0x58, 0x13, 0xd6, 0x1f, 0x0b,
0xb0, 0xdd, 0x4d, 0x74, 0xf7, 0x95, 0x12, 0xf4, 0x6d, 0x28, 0x47, 0xe1, 0x98, 0x72, 0xd3, 0x68,
0x15, 0x0f, 0xb7, 0x8e, 0xee, 0xb5, 0x93, 0x7b, 0xb4, 0x97, 0x24, 0xdb, 0x58, 0x8a, 0x61, 0x2d,
0x8d, 0xbe, 0x0f, 0x3b, 0x11, 0xbd, 0xa2, 0x64, 0x4c, 0x7d, 0x97, 0x78, 0x5e, 0x38, 0x0b, 0x04,
0x37, 0x0b, 0xad, 0xe2, 0x61, 0xed, 0x68, 0x7f, 0xa1, 0x02, 0xc7, 0x22, 0x1d, 0x2d, 0x81, 0x9b,
0x51, 0x9e, 0xc1, 0xd1, 0xdb, 0xb0, 0x33, 0x26, 0x5c, 0xb8, 0xb3, 0xa9, 0x4f, 0x04, 0x75, 0xb5,
0xd1, 0x45, 0x65, 0xf4, 0xb6, 0x5c, 0x38, 0x55, 0xfc, 0xae, 0x32, 0xff, 0x97, 0x50, 0x56, 0x36,
0xa0, 0x06, 0x54, 0xf1, 0xe0, 0xa9, 0xed, 0x3a, 0x03, 0xc7, 0x6e, 0xbe, 0x81, 0xb6, 0x00, 0x14,
0x39, 0x78, 0xe6, 0xd8, 0xb8, 0x69, 0xa0, 0x5b, 0xb0, 0xa3, 0xe8, 0x7e, 0xc7, 0xe9, 0x3c, 0xb6,
0xdd, 0xd3, 0xa1, 0x8d, 0x87, 0xcd, 0x02, 0xda, 0x87, 0x5b, 0x9a, 0x3d, 0x38, 0xb6, 0x71, 0x67,
0x64, 0xbb, 0xdd, 0x81, 0x33, 0xb2, 0x9d, 0x51, 0xb3, 0x98, 0x6a, 0xe8, 0x1c, 0xf7, 0x7b, 0x4e,
0xb3, 0x94, 0x6a, 0x18, 0x0d, 0x9e, 0xd8, 0x8e, 0xdb, 0xef, 0x0c, 0x47, 0x36, 0x6e, 0x96, 0xad,
0x5f, 0x15, 0x61, 0x37, 0xf5, 0xca, 0x28, 0x7c, 0x4e, 0x83, 0x3e, 0x15, 0xc4, 0x27, 0x82, 0xa0,
0x73, 0x40, 0x5e, 0x18, 0x88, 0x88, 0x78, 0xc2, 0x25, 0xbe, 0x1f, 0x51, 0xce, 0x63, 0x9f, 0xd6,
0x8e, 0xbe, 0xb3, 0xc2, 0xa7, 0xb9, 0xdd, 0xed, 0x6e, 0xbc, 0xb5, 0x93, 0xec, 0xb4, 0x03, 0x11,
0xcd, 0xf1, 0x8e, 0xb7, 0xcc, 0x47, 0x2d, 0xa8, 0xf9, 0x94, 0x7b, 0x11, 0x9b, 0x0a, 0x16, 0x06,
0x0a, 0x10, 0x55, 0x9c, 0x65, 0xc9, 0xd0, 0xb3, 0x09, 0xb9, 0xa0, 0x31, 0x22, 0x34, 0x81, 0xde,
0x87, 0xaa, 0x90, 0x47, 0x8e, 0xe6, 0x53, 0xaa, 0x40, 0xb1, 0x75, 0x74, 0x67, 0x9d, 0x59, 0x52,
0x06, 0x2f, 0xc4, 0xd1, 0x2e, 0x6c, 0xf0, 0xf9, 0xe4, 0x2c, 0x1c, 0x9b, 0x65, 0x0d, 0x32, 0x4d,
0x21, 0x04, 0xa5, 0x80, 0x4c, 0xa8, 0xb9, 0xa1, 0xb8, 0xea, 0x1b, 0x1d, 0x40, 0xc5, 0xa7, 0x1e,
0x9b, 0x90, 0x31, 0x37, 0x37, 0x5b, 0xc6, 0x61, 0x03, 0xa7, 0xf4, 0xc1, 0xb1, 0xf4, 0xde, 0xaa,
0x8b, 0xa2, 0x26, 0x14, 0x9f, 0xd3, 0xb9, 0x82, 0x7f, 0x09, 0xcb, 0x4f, 0x79, 0x8b, 0x2b, 0x32,
0x9e, 0xd1, 0xf8, 0x86, 0x9a, 0x78, 0xbf, 0xf0, 0xd0, 0xb0, 0xfe, 0x66, 0xc0, 0xcd, 0xd4, 0xde,
0x13, 0x1a, 0x4d, 0x18, 0xe7, 0x2c, 0x0c, 0x38, 0xda, 0x87, 0x0a, 0x0d, 0xb8, 0x1b, 0x06, 0x63,
0xad, 0xa9, 0x82, 0x37, 0x69, 0xc0, 0x07, 0xc1, 0x78, 0x8e, 0x4c, 0xd8, 0x9c, 0x46, 0xec, 0x8a,
0x08, 0xad, 0xaf, 0x82, 0x13, 0x12, 0x7d, 0x0f, 0x36, 0x88, 0xe7, 0x51, 0xce, 0x95, 0xbb, 0xb6,
0x8e, 0xbe, 0xb6, 0xc2, 0x29, 0x99, 0x43, 0xda, 0x1d, 0x25, 0x8c, 0xe3, 0x4d, 0xd6, 0x08, 0x36,
0x34, 0x07, 0x21, 0xd8, 0x3a, 0x75, 0x9e, 0x38, 0x83, 0x67, 0x8e, 0xdb, 0xe9, 0x76, 0xed, 0xe1,
0xb0, 0xf9, 0x06, 0xda, 0x81, 0x86, 0x33, 0x70, 0xfb, 0x76, 0xff, 0x91, 0x8d, 0x87, 0x9f, 0xf4,
0x4e, 0x9a, 0x06, 0xba, 0x01, 0xdb, 0x3d, 0xe7, 0xb3, 0xde, 0xa8, 0x33, 0xea, 0x0d, 0x1c, 0x77,
0xe0, 0x3c, 0xfd, 0x51, 0xb3, 0x20, 0xe1, 0x37, 0x70, 0x5c, 0x6c, 0x7f, 0x7a, 0x6a, 0x0f, 0x47,
0xcd, 0xa2, 0xf5, 0xeb, 0x22, 0x34, 0x54, 0x24, 0xba, 0x11, 0x13, 0x34, 0x62, 0x04, 0xfd, 0xe4,
0x05, 0xf0, 0x6a, 0x2f, 0x4c, 0xce, 0x6d, 0x7a, 0x0d, 0x54, 0xbd, 0x03, 0x25, 0x21, 0x81, 0x51,
0x78, 0x05, 0x60, 0x28, 0xc9, 0x0c, 0x26, 0x8a, 0x2b, 0x31, 0x51, 0xca, 0x60, 0x62, 0x17, 0x36,
0xc8, 0x44, 0xa6, 0x7b, 0x82, 0x1f, 0x4d, 0xc9, 0xd2, 0xa6, 0x40, 0xe6, 0x32, 0x9f, 0x9b, 0x1b,
0xad, 0xe2, 0x61, 0x09, 0x57, 0x14, 0xa3, 0xe7, 0x73, 0x74, 0x0f, 0x6a, 0x32, 0x9a, 0x53, 0x22,
0x04, 0x8d, 0x02, 0x85, 0xa5, 0x2a, 0x06, 0x1a, 0xf0, 0x13, 0xcd, 0xc9, 0x21, 0xad, 0xa2, 0x80,
0xf3, 0xdf, 0x46, 0xda, 0xdf, 0x0b, 0x60, 0xe6, 0x1d, 0xb0, 0x40, 0x02, 0xda, 0x82, 0x42, 0x5c,
0xb0, 0xab, 0xb8, 0xc0, 0x7c, 0xf4, 0x41, 0xce, 0x85, 0x5f, 0x5f, 0xe7, 0xc2, 0x85, 0x86, 0x76,
0xc6, 0x9b, 0x1f, 0xc2, 0x96, 0xf6, 0x84, 0x17, 0xc7, 0xce, 0x2c, 0xaa, 0xd0, 0xee, 0xad, 0x09,
0x2d, 0x6e, 0x88, 0x1c, 0x3c, 0xf6, 0xa1, 0x12, 0xbf, 0x03, 0xdc, 0x2c, 0xb5, 0x8a, 0x87, 0x55,
0xbc, 0xa9, 0x1f, 0x02, 0x8e, 0xee, 0x02, 0x30, 0xee, 0x26, 0xe8, 0x2f, 0x2b, 0xf4, 0x57, 0x19,
0x3f, 0xd1, 0x0c, 0xeb, 0x0b, 0x28, 0xa9, 0x1c, 0xbf, 0x03, 0x66, 0x02, 0x5f, 0x5d, 0xf4, 0x4e,
0x6c, 0xdc, 0xef, 0x0d, 0x87, 0xbd, 0x81, 0xd3, 0x7c, 0x03, 0x35, 0xa1, 0xfe, 0xc8, 0xee, 0x0e,
0xfa, 0x49, 0x85, 0x34, 0x24, 0xb4, 0x63, 0x8e, 0x86, 0x77, 0xb3, 0x80, 0x6e, 0x42, 0xb3, 0xdb,
0x71, 0xdc, 0xcf, 0x7a, 0xf6, 0x33, 0xb7, 0xfb, 0x49, 0xc7, 0x71, 0xec, 0xa7, 0xcd, 0x22, 0xba,
0x0b, 0xfb, 0x29, 0xb7, 0xe3, 0x1c, 0xbb, 0x27, 0x83, 0xe1, 0x28, 0x5d, 0x2e, 0x59, 0xff, 0xaa,
0x66, 0xb2, 0xf9, 0x38, 0x5f, 0xc6, 0xf4, 0x63, 0x60, 0x64, 0x5e, 0x30, 0x64, 0xc3, 0xa6, 0x7e,
0xfc, 0x92, 0xc7, 0xe6, 0x1b, 0x2b, 0x1c, 0x9d, 0x51, 0xd3, 0xd6, 0x6f, 0x57, 0x8c, 0xfc, 0x64,
0x2f, 0xfa, 0x18, 0x6a, 0xd3, 0x45, 0x52, 0x2b, 0x08, 0xd7, 0x8e, 0xde, 0x7c, 0x71, 0xea, 0xe3,
0xec, 0x16, 0x74, 0x04, 0x95, 0xe4, 0x85, 0x57, 0x4e, 0xad, 0x1d, 0xed, 0x66, 0xb6, 0x2b, 0xdf,
0xeb, 0x55, 0x9c, 0xca, 0xa1, 0x8f, 0xa0, 0x2c, 0xa3, 0xa2, 0xb1, 0x5e, 0x3b, 0x7a, 0xeb, 0x25,
0xa6, 0x4b, 0x2d, 0xb1, 0xe1, 0x7a, 0x9f, 0x0c, 0xf3, 0x19, 0x09, 0xdc, 0x31, 0xe3, 0xc2, 0xdc,
0xd4, 0x61, 0x3e, 0x23, 0xc1, 0x53, 0xc6, 0x05, 0x72, 0x00, 0x3c, 0x22, 0xe8, 0x45, 0x18, 0x31,
0x2a, 0xf3, 0x61, 0xa9, 0x30, 0xac, 0x3e, 0x20, 0xdd, 0xa0, 0x4f, 0xc9, 0x68, 0x40, 0x0f, 0xc1,
0x24, 0x91, 0x77, 0xc9, 0xae, 0xa8, 0x3b, 0x21, 0x17, 0x01, 0x15, 0x63, 0x16, 0x3c, 0x8f, 0x9f,
0xe7, 0xaa, 0x8a, 0xc8, 0x6e, 0xbc, 0xde, 0x4f, 0x97, 0xd5, 0x2b, 0x8d, 0x1e, 0xc3, 0x16, 0xf1,
0x27, 0x2c, 0x70, 0x39, 0x15, 0x82, 0x05, 0x17, 0xdc, 0x04, 0xe5, 0x9f, 0xd6, 0x0a, 0x6b, 0x3a,
0x52, 0x70, 0x18, 0xcb, 0xe1, 0x06, 0xc9, 0x92, 0xe8, 0x2b, 0xd0, 0x60, 0x81, 0x88, 0x42, 0x77,
0x42, 0x39, 0x97, 0x0f, 0x5a, 0x4d, 0x25, 0x5b, 0x5d, 0x31, 0xfb, 0x9a, 0x27, 0x85, 0xc2, 0x59,
0x56, 0xa8, 0xae, 0x85, 0x14, 0x33, 0x11, 0xba, 0x03, 0x55, 0x1a, 0x78, 0xd1, 0x7c, 0x2a, 0xa8,
0x6f, 0x36, 0x74, 0x0a, 0xa4, 0x0c, 0x59, 0xb2, 0x04, 0xb9, 0xe0, 0xe6, 0x96, 0xf2, 0xa8, 0xfa,
0x46, 0x04, 0x76, 0x74, 0x42, 0x66, 0x61, 0xb2, 0xad, 0xbc, 0xfa, 0xad, 0x97, 0x78, 0x75, 0x29,
0xcd, 0x63, 0xdf, 0x36, 0xc5, 0x12, 0x1b, 0xfd, 0x18, 0xf6, 0x17, 0xbd, 0x9f, 0x5a, 0xe5, 0xee,
0x24, 0x6e, 0x08, 0xcc, 0xa6, 0x3a, 0xaa, 0xf5, 0xb2, 0xc6, 0x01, 0xef, 0x79, 0x39, 0x3e, 0x4f,
0xfb, 0x91, 0x77, 0xe0, 0x26, 0xf1, 0x84, 0x0a, 0x9f, 0xc6, 0xbc, 0xab, 0x1a, 0x2e, 0x73, 0x47,
0xc5, 0x0e, 0xe9, 0xb5, 0x38, 0x39, 0xba, 0x72, 0xe5, 0xe0, 0x14, 0xea, 0xd9, 0x64, 0xc9, 0x56,
0xca, 0xaa, 0xae, 0x94, 0x0f, 0xb2, 0x95, 0x32, 0xd7, 0xe7, 0x2d, 0xb5, 0x8a, 0x99, 0x22, 0x7a,
0xf0, 0x29, 0xc0, 0x02, 0xc8, 0x2b, 0x94, 0x7e, 0x33, 0xaf, 0x74, 0x6f, 0x85, 0x52, 0xb9, 0x3f,
0xab, 0xf2, 0x73, 0xd8, 0x5e, 0x82, 0xee, 0x0a, 0xbd, 0xef, 0xe6, 0xf5, 0xde, 0x5e, 0xa5, 0x57,
0x2b, 0x99, 0x67, 0x75, 0x5f, 0xc0, 0xad, 0x95, 0x01, 0x5c, 0x71, 0xc2, 0xc3, 0xfc, 0x09, 0xd6,
0xcb, 0x4b, 0x7e, 0xf6, 0x71, 0xf9, 0x69, 0xa6, 0x95, 0xcc, 0xa5, 0x01, 0x3a, 0x86, 0x7b, 0x53,
0x16, 0x24, 0x80, 0x76, 0xc9, 0x78, 0x9c, 0xc6, 0x90, 0x06, 0xe4, 0x6c, 0x4c, 0xfd, 0xb8, 0xbd,
0xb9, 0x3d, 0x65, 0x41, 0x0c, 0xf1, 0xce, 0x78, 0x9c, 0x06, 0x4f, 0x89, 0x58, 0x7f, 0x2d, 0x40,
0x23, 0xe7, 0x41, 0xf4, 0xe1, 0xa2, 0x76, 0xea, 0xc6, 0xe1, 0xab, 0x6b, 0x7c, 0xfd, 0x6a, 0x45,
0xb3, 0xf0, 0xe5, 0x8a, 0x66, 0xf1, 0x15, 0x8b, 0xe6, 0x3d, 0xa8, 0xc5, 0x65, 0x49, 0x4d, 0x48,
0xba, 0xaf, 0x48, 0x2a, 0x95, 0x1c, 0x90, 0x0e, 0xa0, 0x32, 0x0d, 0x39, 0x53, 0xed, 0xb0, 0xac,
0xc4, 0x65, 0x9c, 0xd2, 0xff, 0x23, 0x4c, 0x5b, 0x3e, 0xec, 0x5c, 0x03, 0xd1, 0xb2, 0xa1, 0xc6,
0x35, 0x43, 0x93, 0xd6, 0xa8, 0x90, 0x6f, 0x97, 0x53, 0xe3, 0x8b, 0x79, 0xe3, 0xad, 0xdf, 0x1a,
0x70, 0x23, 0x3d, 0xa6, 0x17, 0x5c, 0x31, 0x41, 0xd4, 0xcb, 0xf8, 0x1e, 0xdc, 0x5a, 0x14, 0x8e,
0xec, 0x30, 0xa0, 0xa7, 0xc7, 0x9b, 0xde, 0x9a, 0xe7, 0xf4, 0x42, 0x8e, 0x9c, 0xf1, 0x08, 0xa9,
0x89, 0xf5, 0xf3, 0xe3, 0x5d, 0x80, 0xe9, 0xec, 0x6c, 0xcc, 0x3c, 0x57, 0xfa, 0xab, 0xa4, 0xf6,
0x54, 0x35, 0xe7, 0x09, 0x9d, 0x5b, 0xbf, 0x31, 0x60, 0x7b, 0x69, 0xb6, 0x93, 0x3d, 0x76, 0xdc,
0x99, 0xc6, 0x77, 0x4f, 0x48, 0x59, 0x7e, 0x39, 0xbb, 0x08, 0x88, 0x98, 0x45, 0x34, 0x3e, 0x7f,
0xc1, 0x90, 0x5d, 0xa0, 0x77, 0x49, 0x98, 0xee, 0x02, 0x8b, 0xba, 0x0b, 0x54, 0x0c, 0xd9, 0xbd,
0xbc, 0x0d, 0x4d, 0xc6, 0x3b, 0x2c, 0xf2, 0xa3, 0x70, 0x1a, 0x77, 0x72, 0xca, 0x9a, 0x0a, 0xbe,
0xc6, 0xb7, 0xfe, 0x69, 0x64, 0x52, 0x0a, 0xd3, 0x9f, 0xcd, 0x28, 0x17, 0xa3, 0xf0, 0x07, 0x21,
0x5b, 0xd7, 0x4c, 0xc4, 0x03, 0x43, 0x26, 0x28, 0x72, 0x60, 0x70, 0x64, 0x5c, 0xd6, 0x3a, 0x66,
0x79, 0x62, 0x2f, 0x5d, 0x9f, 0xd8, 0xef, 0x43, 0xdd, 0x67, 0x7c, 0x3a, 0x26, 0x73, 0xad, 0xba,
0x1c, 0xcf, 0x68, 0x9a, 0xa7, 0xd4, 0xaf, 0x9c, 0x9e, 0x37, 0x5e, 0x7b, 0x7a, 0xb6, 0x7e, 0x67,
0xc0, 0xdd, 0xf4, 0xca, 0xb6, 0xcf, 0x04, 0x5e, 0x9e, 0xaf, 0x57, 0xdf, 0x7c, 0xf9, 0x16, 0x85,
0xeb, 0xb7, 0x58, 0x69, 0x62, 0xf1, 0xf5, 0x4d, 0xfc, 0x83, 0x01, 0x77, 0x32, 0xc9, 0x12, 0x78,
0x74, 0xfc, 0x7f, 0x1d, 0x1b, 0xeb, 0x1f, 0x06, 0xbc, 0xb9, 0x1a, 0x46, 0x98, 0xf2, 0x69, 0x18,
0x70, 0xba, 0xc6, 0xe4, 0xef, 0x42, 0x35, 0x3d, 0xea, 0x05, 0xd5, 0x31, 0x93, 0x95, 0x78, 0xb1,
0x41, 0x56, 0x02, 0x39, 0x53, 0xaa, 0x16, 0xa5, 0xa8, 0x10, 0x9e, 0xd2, 0x8b, 0xe4, 0x2d, 0x65,
0x93, 0x77, 0xf9, 0xba, 0xe5, 0xeb, 0xd7, 0xbd, 0x0b, 0xa0, 0xbb, 0x37, 0x77, 0x16, 0xb1, 0x78,
0x4e, 0xaf, 0x6a, 0xce, 0x69, 0xc4, 0x2c, 0x0c, 0x7b, 0xd7, 0x6f, 0xfa, 0x94, 0x92, 0x2b, 0xfa,
0x1f, 0xe3, 0xc6, 0xfa, 0x21, 0xdc, 0xcf, 0x54, 0x4e, 0xfd, 0x38, 0x2d, 0x37, 0x8a, 0x6b, 0xb4,
0xe7, 0xad, 0x2d, 0x2c, 0x5b, 0xfb, 0x27, 0x03, 0x6a, 0xcf, 0xc8, 0xf3, 0x59, 0xd2, 0xd5, 0x35,
0xa1, 0xc8, 0xd9, 0x45, 0x5c, 0xf5, 0xe4, 0xa7, 0x2c, 0x34, 0x82, 0x4d, 0x28, 0x17, 0x64, 0x32,
0x55, 0xfb, 0x4b, 0x78, 0xc1, 0x90, 0x87, 0x8a, 0x70, 0xca, 0x3c, 0xe5, 0xde, 0x3a, 0xd6, 0x84,
0xfa, 0x6b, 0x80, 0xcc, 0xc7, 0x21, 0x49, 0xf0, 0x92, 0x90, 0x7a, 0xc5, 0xf7, 0x59, 0x70, 0x11,
0xbb, 0x36, 0x21, 0x65, 0x25, 0xbf, 0x24, 0xfc, 0x52, 0x39, 0xb4, 0x8e, 0xd5, 0x37, 0xb2, 0xa0,
0x2e, 0x2e, 0x59, 0xe4, 0x9f, 0x90, 0x48, 0xfa, 0x21, 0x1e, 0x58, 0x73, 0x3c, 0xeb, 0x0b, 0x38,
0xc8, 0x5c, 0x20, 0x71, 0x4b, 0xd2, 0xb2, 0x99, 0xb0, 0x79, 0x45, 0x23, 0x9e, 0x54, 0xf2, 0x06,
0x4e, 0x48, 0x79, 0xde, 0x79, 0x14, 0x4e, 0xe2, 0x2b, 0xa9, 0x6f, 0x39, 0x7f, 0x8a, 0x30, 0xfe,
0xa7, 0xac, 0x20, 0x42, 0x79, 0xbe, 0x9c, 0xeb, 0x69, 0x20, 0x46, 0xea, 0x92, 0x72, 0x0c, 0xac,
0xe3, 0x1c, 0xcf, 0xfa, 0xbd, 0x01, 0xe8, 0xba, 0x01, 0x2f, 0x38, 0xf8, 0x63, 0xa8, 0xa4, 0x2d,
0xa9, 0x46, 0x74, 0xa6, 0x67, 0x58, 0x7f, 0x15, 0x9c, 0xee, 0x42, 0xef, 0x4a, 0x0d, 0x4a, 0x26,
0xa9, 0x1e, 0xb7, 0x56, 0x6a, 0xc0, 0xa9, 0x98, 0xf5, 0x67, 0x03, 0xee, 0x5d, 0xd7, 0xdd, 0x0b,
0x7c, 0xfa, 0xf3, 0x57, 0xf0, 0xd5, 0x97, 0x37, 0x79, 0x17, 0x36, 0xc2, 0xf3, 0x73, 0x4e, 0x45,
0xec, 0xdd, 0x98, 0x92, 0x51, 0xe0, 0xec, 0x17, 0x34, 0xfe, 0x4b, 0x55, 0x7d, 0x2f, 0x63, 0xa4,
0x94, 0x62, 0xc4, 0xfa, 0x8b, 0x01, 0x7b, 0x6b, 0x6e, 0x81, 0x9e, 0x40, 0x25, 0x1e, 0x9e, 0x92,
0x56, 0xec, 0xc1, 0x8b, 0x6c, 0x54, 0x9b, 0xda, 0x31, 0x11, 0x77, 0x65, 0xa9, 0x82, 0x83, 0x73,
0x68, 0xe4, 0x96, 0x56, 0x34, 0x39, 0x1f, 0xe5, 0x9b, 0x9c, 0xb7, 0x5e, 0x7a, 0x58, 0xea, 0x95,
0x45, 0xd3, 0xf3, 0xa8, 0xf1, 0x79, 0xad, 0xfd, 0xe0, 0x83, 0x64, 0xe7, 0xd9, 0x86, 0xfa, 0x7a,
0xef, 0xdf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x95, 0x4f, 0x9d, 0xcf, 0x0b, 0x17, 0x00, 0x00,
0x9c, 0xcf, 0x2e, 0x0e, 0x5e, 0xf7, 0xae, 0x88, 0x70, 0x99, 0x4f, 0x03, 0xc1, 0xc4, 0x5c, 0x2f,
0x1f, 0xd4, 0x68, 0x30, 0x9b, 0xc4, 0xb2, 0xd6, 0x35, 0x94, 0x1f, 0x45, 0x24, 0x10, 0xe8, 0x4d,
0xa8, 0x27, 0x9a, 0xe6, 0x2e, 0xf3, 0x4d, 0xa3, 0x65, 0x1c, 0xd5, 0x71, 0x2d, 0xe5, 0xf5, 0x7c,
0x74, 0x07, 0xaa, 0x13, 0x3a, 0x39, 0xa7, 0x91, 0x5c, 0x2f, 0xa8, 0xf5, 0x8a, 0x66, 0xf4, 0x7c,
0xb4, 0x07, 0x9b, 0xf1, 0x61, 0x66, 0xb1, 0x65, 0x1c, 0x55, 0xf1, 0x86, 0x24, 0x7b, 0x3e, 0xba,
0x05, 0x65, 0x6f, 0x1c, 0x7a, 0xcf, 0xcc, 0x52, 0xcb, 0x38, 0x2a, 0x61, 0x4d, 0x58, 0x7f, 0x2c,
0xc0, 0x76, 0x37, 0xd1, 0xdd, 0x57, 0x4a, 0xd0, 0xb7, 0xa0, 0x1c, 0x85, 0x63, 0xca, 0x4d, 0xa3,
0x55, 0x3c, 0xda, 0x3a, 0xbe, 0xd7, 0x4e, 0xee, 0xd1, 0x5e, 0x92, 0x6c, 0x63, 0x29, 0x86, 0xb5,
0x34, 0xfa, 0x1e, 0xec, 0x44, 0xf4, 0x9a, 0x92, 0x31, 0xf5, 0x5d, 0xe2, 0x79, 0xe1, 0x2c, 0x10,
0xdc, 0x2c, 0xb4, 0x8a, 0x47, 0xb5, 0xe3, 0xfd, 0x85, 0x0a, 0x1c, 0x8b, 0x74, 0xb4, 0x04, 0x6e,
0x46, 0x79, 0x06, 0x47, 0x6f, 0xc3, 0xce, 0x98, 0x70, 0xe1, 0xce, 0xa6, 0x3e, 0x11, 0xd4, 0xd5,
0x46, 0x17, 0x95, 0xd1, 0xdb, 0x72, 0xe1, 0x4c, 0xf1, 0xbb, 0xca, 0xfc, 0x5f, 0x42, 0x59, 0xd9,
0x80, 0x1a, 0x50, 0xc5, 0x83, 0x27, 0xb6, 0xeb, 0x0c, 0x1c, 0xbb, 0xf9, 0x1a, 0xda, 0x02, 0x50,
0xe4, 0xe0, 0xa9, 0x63, 0xe3, 0xa6, 0x81, 0x6e, 0xc3, 0x8e, 0xa2, 0xfb, 0x1d, 0xa7, 0xf3, 0xc8,
0x76, 0xcf, 0x86, 0x36, 0x1e, 0x36, 0x0b, 0x68, 0x1f, 0x6e, 0x6b, 0xf6, 0xe0, 0xc4, 0xc6, 0x9d,
0x91, 0xed, 0x76, 0x07, 0xce, 0xc8, 0x76, 0x46, 0xcd, 0x62, 0xaa, 0xa1, 0x73, 0xd2, 0xef, 0x39,
0xcd, 0x52, 0xaa, 0x61, 0x34, 0x78, 0x6c, 0x3b, 0x6e, 0xbf, 0x33, 0x1c, 0xd9, 0xb8, 0x59, 0xb6,
0x7e, 0x55, 0x84, 0xdd, 0xd4, 0x2b, 0xa3, 0xf0, 0x19, 0x0d, 0xfa, 0x54, 0x10, 0x9f, 0x08, 0x82,
0x2e, 0x00, 0x79, 0x61, 0x20, 0x22, 0xe2, 0x09, 0x97, 0xf8, 0x7e, 0x44, 0x39, 0x8f, 0x7d, 0x5a,
0x3b, 0xfe, 0xf6, 0x0a, 0x9f, 0xe6, 0x76, 0xb7, 0xbb, 0xf1, 0xd6, 0x4e, 0xb2, 0xd3, 0x0e, 0x44,
0x34, 0xc7, 0x3b, 0xde, 0x32, 0x1f, 0xb5, 0xa0, 0xe6, 0x53, 0xee, 0x45, 0x6c, 0x2a, 0x58, 0x18,
0x28, 0x40, 0x54, 0x71, 0x96, 0x25, 0x43, 0xcf, 0x26, 0xe4, 0x92, 0xc6, 0x88, 0xd0, 0x04, 0x7a,
0x0f, 0xaa, 0x42, 0x1e, 0x39, 0x9a, 0x4f, 0xa9, 0x02, 0xc5, 0xd6, 0xf1, 0xdd, 0x75, 0x66, 0x49,
0x19, 0xbc, 0x10, 0x47, 0xbb, 0xb0, 0xc1, 0xe7, 0x93, 0xf3, 0x70, 0x6c, 0x96, 0x35, 0xc8, 0x34,
0x85, 0x10, 0x94, 0x02, 0x32, 0xa1, 0xe6, 0x86, 0xe2, 0xaa, 0x6f, 0x74, 0x00, 0x15, 0x9f, 0x7a,
0x6c, 0x42, 0xc6, 0xdc, 0xdc, 0x6c, 0x19, 0x47, 0x0d, 0x9c, 0xd2, 0x07, 0x27, 0xd2, 0x7b, 0xab,
0x2e, 0x8a, 0x9a, 0x50, 0x7c, 0x46, 0xe7, 0x0a, 0xfe, 0x25, 0x2c, 0x3f, 0xe5, 0x2d, 0xae, 0xc9,
0x78, 0x46, 0xe3, 0x1b, 0x6a, 0xe2, 0xbd, 0xc2, 0x03, 0xc3, 0xfa, 0x9b, 0x01, 0xb7, 0x52, 0x7b,
0x4f, 0x69, 0x34, 0x61, 0x9c, 0xb3, 0x30, 0xe0, 0x68, 0x1f, 0x2a, 0x34, 0xe0, 0x6e, 0x18, 0x8c,
0xb5, 0xa6, 0x0a, 0xde, 0xa4, 0x01, 0x1f, 0x04, 0xe3, 0x39, 0x32, 0x61, 0x73, 0x1a, 0xb1, 0x6b,
0x22, 0xb4, 0xbe, 0x0a, 0x4e, 0x48, 0xf4, 0x5d, 0xd8, 0x20, 0x9e, 0x47, 0x39, 0x57, 0xee, 0xda,
0x3a, 0xfe, 0xca, 0x0a, 0xa7, 0x64, 0x0e, 0x69, 0x77, 0x94, 0x30, 0x8e, 0x37, 0x59, 0x23, 0xd8,
0xd0, 0x1c, 0x84, 0x60, 0xeb, 0xcc, 0x79, 0xec, 0x0c, 0x9e, 0x3a, 0x6e, 0xa7, 0xdb, 0xb5, 0x87,
0xc3, 0xe6, 0x6b, 0x68, 0x07, 0x1a, 0xce, 0xc0, 0xed, 0xdb, 0xfd, 0x87, 0x36, 0x1e, 0x7e, 0xdc,
0x3b, 0x6d, 0x1a, 0xe8, 0x75, 0xd8, 0xee, 0x39, 0x9f, 0xf6, 0x46, 0x9d, 0x51, 0x6f, 0xe0, 0xb8,
0x03, 0xe7, 0xc9, 0x0f, 0x9b, 0x05, 0x09, 0xbf, 0x81, 0xe3, 0x62, 0xfb, 0x93, 0x33, 0x7b, 0x38,
0x6a, 0x16, 0xad, 0x5f, 0x17, 0xa1, 0xa1, 0x22, 0xd1, 0x8d, 0x98, 0xa0, 0x11, 0x23, 0xe8, 0xc7,
0xcf, 0x81, 0x57, 0x7b, 0x61, 0x72, 0x6e, 0xd3, 0x2b, 0xa0, 0xea, 0x1d, 0x28, 0x09, 0x09, 0x8c,
0xc2, 0x4b, 0x00, 0x43, 0x49, 0x66, 0x30, 0x51, 0x5c, 0x89, 0x89, 0x52, 0x06, 0x13, 0xbb, 0xb0,
0x41, 0x26, 0x32, 0xdd, 0x13, 0xfc, 0x68, 0x4a, 0x96, 0x36, 0x05, 0x32, 0x97, 0xf9, 0xdc, 0xdc,
0x68, 0x15, 0x8f, 0x4a, 0xb8, 0xa2, 0x18, 0x3d, 0x9f, 0xa3, 0x7b, 0x50, 0x93, 0xd1, 0x9c, 0x12,
0x21, 0x68, 0x14, 0x28, 0x2c, 0x55, 0x31, 0xd0, 0x80, 0x9f, 0x6a, 0x4e, 0x0e, 0x69, 0x15, 0x05,
0x9c, 0xff, 0x36, 0xd2, 0xfe, 0x5e, 0x00, 0x33, 0xef, 0x80, 0x05, 0x12, 0xd0, 0x16, 0x14, 0xe2,
0x82, 0x5d, 0xc5, 0x05, 0xe6, 0xa3, 0xf7, 0x73, 0x2e, 0xfc, 0xea, 0x3a, 0x17, 0x2e, 0x34, 0xb4,
0x33, 0xde, 0xfc, 0x00, 0xb6, 0xb4, 0x27, 0xbc, 0x38, 0x76, 0x66, 0x51, 0x85, 0x76, 0x6f, 0x4d,
0x68, 0x71, 0x43, 0xe4, 0xe0, 0xb1, 0x0f, 0x95, 0xf8, 0x1d, 0xe0, 0x66, 0xa9, 0x55, 0x3c, 0xaa,
0xe2, 0x4d, 0xfd, 0x10, 0x70, 0x74, 0x08, 0xc0, 0xb8, 0x9b, 0xa0, 0xbf, 0xac, 0xd0, 0x5f, 0x65,
0xfc, 0x54, 0x33, 0xac, 0xcf, 0xa1, 0xa4, 0x72, 0xfc, 0x2e, 0x98, 0x09, 0x7c, 0x75, 0xd1, 0x3b,
0xb5, 0x71, 0xbf, 0x37, 0x1c, 0xf6, 0x06, 0x4e, 0xf3, 0x35, 0xd4, 0x84, 0xfa, 0x43, 0xbb, 0x3b,
0xe8, 0x27, 0x15, 0xd2, 0x90, 0xd0, 0x8e, 0x39, 0x1a, 0xde, 0xcd, 0x02, 0xba, 0x05, 0xcd, 0x6e,
0xc7, 0x71, 0x3f, 0xed, 0xd9, 0x4f, 0xdd, 0xee, 0xc7, 0x1d, 0xc7, 0xb1, 0x9f, 0x34, 0x8b, 0xe8,
0x10, 0xf6, 0x53, 0x6e, 0xc7, 0x39, 0x71, 0x4f, 0x07, 0xc3, 0x51, 0xba, 0x5c, 0xb2, 0xfe, 0x55,
0xcd, 0x64, 0xf3, 0x49, 0xbe, 0x8c, 0xe9, 0xc7, 0xc0, 0xc8, 0xbc, 0x60, 0xc8, 0x86, 0x4d, 0xfd,
0xf8, 0x25, 0x8f, 0xcd, 0xd7, 0x56, 0x38, 0x3a, 0xa3, 0xa6, 0xad, 0xdf, 0xae, 0x18, 0xf9, 0xc9,
0x5e, 0xf4, 0x11, 0xd4, 0xa6, 0x8b, 0xa4, 0x56, 0x10, 0xae, 0x1d, 0xbf, 0xf1, 0xfc, 0xd4, 0xc7,
0xd9, 0x2d, 0xe8, 0x18, 0x2a, 0xc9, 0x0b, 0xaf, 0x9c, 0x5a, 0x3b, 0xde, 0xcd, 0x6c, 0x57, 0xbe,
0xd7, 0xab, 0x38, 0x95, 0x43, 0x1f, 0x42, 0x59, 0x46, 0x45, 0x63, 0xbd, 0x76, 0xfc, 0xd6, 0x0b,
0x4c, 0x97, 0x5a, 0x62, 0xc3, 0xf5, 0x3e, 0x19, 0xe6, 0x73, 0x12, 0xb8, 0x63, 0xc6, 0x85, 0xb9,
0xa9, 0xc3, 0x7c, 0x4e, 0x82, 0x27, 0x8c, 0x0b, 0xe4, 0x00, 0x78, 0x44, 0xd0, 0xcb, 0x30, 0x62,
0x54, 0xe6, 0xc3, 0x52, 0x61, 0x58, 0x7d, 0x40, 0xba, 0x41, 0x9f, 0x92, 0xd1, 0x80, 0x1e, 0x80,
0x49, 0x22, 0xef, 0x8a, 0x5d, 0x53, 0x77, 0x42, 0x2e, 0x03, 0x2a, 0xc6, 0x2c, 0x78, 0x16, 0x3f,
0xcf, 0x55, 0x15, 0x91, 0xdd, 0x78, 0xbd, 0x9f, 0x2e, 0xab, 0x57, 0x1a, 0x3d, 0x82, 0x2d, 0xe2,
0x4f, 0x58, 0xe0, 0x72, 0x2a, 0x04, 0x0b, 0x2e, 0xb9, 0x09, 0xca, 0x3f, 0xad, 0x15, 0xd6, 0x74,
0xa4, 0xe0, 0x30, 0x96, 0xc3, 0x0d, 0x92, 0x25, 0xd1, 0x97, 0xa0, 0xc1, 0x02, 0x11, 0x85, 0xee,
0x84, 0x72, 0x2e, 0x1f, 0xb4, 0x9a, 0x4a, 0xb6, 0xba, 0x62, 0xf6, 0x35, 0x4f, 0x0a, 0x85, 0xb3,
0xac, 0x50, 0x5d, 0x0b, 0x29, 0x66, 0x22, 0x74, 0x17, 0xaa, 0x34, 0xf0, 0xa2, 0xf9, 0x54, 0x50,
0xdf, 0x6c, 0xe8, 0x14, 0x48, 0x19, 0xb2, 0x64, 0x09, 0x72, 0xc9, 0xcd, 0x2d, 0xe5, 0x51, 0xf5,
0x8d, 0x08, 0xec, 0xe8, 0x84, 0xcc, 0xc2, 0x64, 0x5b, 0x79, 0xf5, 0x9b, 0x2f, 0xf0, 0xea, 0x52,
0x9a, 0xc7, 0xbe, 0x6d, 0x8a, 0x25, 0x36, 0xfa, 0x11, 0xec, 0x2f, 0x7a, 0x3f, 0xb5, 0xca, 0xdd,
0x49, 0xdc, 0x10, 0x98, 0x4d, 0x75, 0x54, 0xeb, 0x45, 0x8d, 0x03, 0xde, 0xf3, 0x72, 0x7c, 0x9e,
0xf6, 0x23, 0xef, 0xc0, 0x2d, 0xe2, 0x09, 0x15, 0x3e, 0x8d, 0x79, 0x57, 0x35, 0x5c, 0xe6, 0x8e,
0x8a, 0x1d, 0xd2, 0x6b, 0x71, 0x72, 0x74, 0xe5, 0xca, 0xc1, 0x19, 0xd4, 0xb3, 0xc9, 0x92, 0xad,
0x94, 0x55, 0x5d, 0x29, 0xef, 0x67, 0x2b, 0x65, 0xae, 0xcf, 0x5b, 0x6a, 0x15, 0x33, 0x45, 0xf4,
0xe0, 0x13, 0x80, 0x05, 0x90, 0x57, 0x28, 0xfd, 0x7a, 0x5e, 0xe9, 0xde, 0x0a, 0xa5, 0x72, 0x7f,
0x56, 0xe5, 0x67, 0xb0, 0xbd, 0x04, 0xdd, 0x15, 0x7a, 0xdf, 0xcd, 0xeb, 0xbd, 0xb3, 0x4a, 0xaf,
0x56, 0x32, 0xcf, 0xea, 0xbe, 0x84, 0xdb, 0x2b, 0x03, 0xb8, 0xe2, 0x84, 0x07, 0xf9, 0x13, 0xac,
0x17, 0x97, 0xfc, 0xec, 0xe3, 0xf2, 0x93, 0x4c, 0x2b, 0x99, 0x4b, 0x03, 0x74, 0x02, 0xf7, 0xa6,
0x2c, 0x48, 0x00, 0xed, 0x92, 0xf1, 0x38, 0x8d, 0x21, 0x0d, 0xc8, 0xf9, 0x98, 0xfa, 0x71, 0x7b,
0x73, 0x67, 0xca, 0x82, 0x18, 0xe2, 0x9d, 0xf1, 0x38, 0x0d, 0x9e, 0x12, 0xb1, 0xfe, 0x5a, 0x80,
0x46, 0xce, 0x83, 0xe8, 0x83, 0x45, 0xed, 0xd4, 0x8d, 0xc3, 0x97, 0xd7, 0xf8, 0xfa, 0xe5, 0x8a,
0x66, 0xe1, 0x8b, 0x15, 0xcd, 0xe2, 0x4b, 0x16, 0xcd, 0x7b, 0x50, 0x8b, 0xcb, 0x92, 0x9a, 0x90,
0x74, 0x5f, 0x91, 0x54, 0x2a, 0x39, 0x20, 0x1d, 0x40, 0x65, 0x1a, 0x72, 0xa6, 0xda, 0x61, 0x59,
0x89, 0xcb, 0x38, 0xa5, 0xff, 0x47, 0x98, 0xb6, 0x7c, 0xd8, 0xb9, 0x01, 0xa2, 0x65, 0x43, 0x8d,
0x1b, 0x86, 0x26, 0xad, 0x51, 0x21, 0xdf, 0x2e, 0xa7, 0xc6, 0x17, 0xf3, 0xc6, 0x5b, 0xbf, 0x37,
0xe0, 0xf5, 0xf4, 0x98, 0x5e, 0x70, 0xcd, 0x04, 0x51, 0x2f, 0xe3, 0x43, 0x38, 0xfc, 0x59, 0x44,
0xa6, 0x53, 0xea, 0xbb, 0x8b, 0x02, 0x92, 0x1d, 0x0a, 0xf4, 0x14, 0x79, 0x27, 0x16, 0x5a, 0xf7,
0xba, 0x5e, 0xca, 0x09, 0x34, 0x9e, 0x28, 0x35, 0xb1, 0x7e, 0x9c, 0x3c, 0x04, 0x98, 0xce, 0xce,
0xc7, 0xcc, 0x73, 0xa5, 0xfb, 0x4a, 0x6a, 0x4f, 0x55, 0x73, 0x1e, 0xd3, 0xb9, 0xf5, 0x1b, 0x03,
0xb6, 0x97, 0x46, 0x3d, 0xd9, 0x72, 0xc7, 0x8d, 0x6a, 0xec, 0x8a, 0x84, 0x94, 0xd5, 0x98, 0xb3,
0xcb, 0x80, 0x88, 0x59, 0x44, 0xe3, 0xf3, 0x17, 0x0c, 0xd9, 0x14, 0x7a, 0x57, 0x84, 0xe9, 0xa6,
0xb0, 0xa8, 0x9b, 0x42, 0xc5, 0x90, 0xcd, 0xcc, 0xdb, 0xd0, 0x64, 0xbc, 0xc3, 0x22, 0x3f, 0x0a,
0xa7, 0x71, 0x63, 0xa7, 0xac, 0xa9, 0xe0, 0x1b, 0x7c, 0xeb, 0x9f, 0x46, 0x26, 0xc3, 0x30, 0xfd,
0xe9, 0x8c, 0x72, 0x31, 0x0a, 0xbf, 0x1f, 0xb2, 0x75, 0xbd, 0x45, 0x3c, 0x3f, 0x64, 0x62, 0x24,
0xe7, 0x07, 0x47, 0x86, 0x69, 0xad, 0x63, 0x96, 0x07, 0xf8, 0xd2, 0xcd, 0x01, 0xfe, 0x4d, 0xa8,
0xfb, 0x8c, 0x4f, 0xc7, 0x64, 0xae, 0x55, 0x97, 0xe3, 0x91, 0x4d, 0xf3, 0x94, 0xfa, 0x95, 0xc3,
0xf4, 0xc6, 0x2b, 0x0f, 0xd3, 0xd6, 0x6f, 0x0d, 0x38, 0x4c, 0xaf, 0x6c, 0xfb, 0x4c, 0xe0, 0xe5,
0x71, 0x7b, 0xf5, 0xcd, 0x97, 0x6f, 0x51, 0xb8, 0x79, 0x8b, 0x95, 0x26, 0x16, 0x5f, 0xdd, 0xc4,
0x3f, 0x18, 0x70, 0x37, 0x93, 0x3b, 0x81, 0x47, 0xc7, 0xff, 0xd7, 0xb1, 0xb1, 0xfe, 0x61, 0xc0,
0x1b, 0xab, 0x61, 0x84, 0x29, 0x9f, 0x86, 0x01, 0xa7, 0x6b, 0x4c, 0xfe, 0x0e, 0x54, 0xd3, 0xa3,
0x9e, 0x53, 0x2c, 0x33, 0x59, 0x89, 0x17, 0x1b, 0x64, 0x61, 0x90, 0x23, 0xa6, 0xea, 0x58, 0x8a,
0x0a, 0xe1, 0x29, 0xbd, 0x48, 0xde, 0x52, 0x36, 0x79, 0x97, 0xaf, 0x5b, 0xbe, 0x79, 0xdd, 0x43,
0x00, 0xdd, 0xcc, 0xb9, 0xb3, 0x88, 0xc5, 0x63, 0x7b, 0x55, 0x73, 0xce, 0x22, 0x66, 0x61, 0xd8,
0xbb, 0x79, 0xd3, 0x27, 0x94, 0x5c, 0xd3, 0xff, 0x18, 0x37, 0xd6, 0x0f, 0xe0, 0xcd, 0x4c, 0x21,
0xd5, 0x6f, 0xd5, 0x72, 0xdf, 0xb8, 0x46, 0x7b, 0xde, 0xda, 0xc2, 0xb2, 0xb5, 0x7f, 0x32, 0xa0,
0xf6, 0x94, 0x3c, 0x9b, 0x25, 0x4d, 0x5e, 0x13, 0x8a, 0x9c, 0x5d, 0xc6, 0xc5, 0x4f, 0x7e, 0xca,
0x42, 0x23, 0xd8, 0x84, 0x72, 0x41, 0x26, 0x53, 0xb5, 0xbf, 0x84, 0x17, 0x0c, 0x79, 0xa8, 0x08,
0xa7, 0xcc, 0x53, 0xee, 0xad, 0x63, 0x4d, 0xa8, 0x7f, 0x0a, 0xc8, 0x7c, 0x1c, 0x92, 0x04, 0x2f,
0x09, 0xa9, 0x57, 0x7c, 0x9f, 0x05, 0x97, 0xb1, 0x6b, 0x13, 0x52, 0x16, 0xf6, 0x2b, 0xc2, 0xaf,
0x94, 0x43, 0xeb, 0x58, 0x7d, 0x23, 0x0b, 0xea, 0xe2, 0x8a, 0x45, 0xfe, 0x29, 0x89, 0xa4, 0x1f,
0xe2, 0xf9, 0x35, 0xc7, 0xb3, 0x3e, 0x87, 0x83, 0xcc, 0x05, 0x12, 0xb7, 0x24, 0x1d, 0x9c, 0x09,
0x9b, 0xd7, 0x34, 0xe2, 0x49, 0x41, 0x6f, 0xe0, 0x84, 0x94, 0xe7, 0x5d, 0x44, 0xe1, 0x24, 0xbe,
0x92, 0xfa, 0x96, 0xe3, 0xa8, 0x08, 0xe3, 0x3f, 0xce, 0x0a, 0x22, 0x94, 0xe7, 0xcb, 0x31, 0x9f,
0x06, 0x62, 0xa4, 0x2e, 0x29, 0xa7, 0xc2, 0x3a, 0xce, 0xf1, 0xac, 0xdf, 0x19, 0x80, 0x6e, 0x1a,
0xf0, 0x9c, 0x83, 0x3f, 0x82, 0x4a, 0xda, 0xa1, 0x6a, 0x44, 0x67, 0x5a, 0x88, 0xf5, 0x57, 0xc1,
0xe9, 0x2e, 0xf4, 0xae, 0xd4, 0xa0, 0x64, 0x92, 0xea, 0x71, 0x7b, 0xa5, 0x06, 0x9c, 0x8a, 0x59,
0x7f, 0x36, 0xe0, 0xde, 0x4d, 0xdd, 0xbd, 0xc0, 0xa7, 0x3f, 0x7f, 0x09, 0x5f, 0x7d, 0x71, 0x93,
0x77, 0x61, 0x23, 0xbc, 0xb8, 0xe0, 0x54, 0xc4, 0xde, 0x8d, 0x29, 0x19, 0x05, 0xce, 0x7e, 0x41,
0xe3, 0x7f, 0x58, 0xd5, 0xf7, 0x32, 0x46, 0x4a, 0x29, 0x46, 0xac, 0xbf, 0x18, 0xb0, 0xb7, 0xe6,
0x16, 0xe8, 0x31, 0x54, 0xe2, 0x59, 0x2a, 0xe9, 0xcc, 0xee, 0x3f, 0xcf, 0x46, 0xb5, 0xa9, 0x1d,
0x13, 0x71, 0x93, 0x96, 0x2a, 0x38, 0xb8, 0x80, 0x46, 0x6e, 0x69, 0x45, 0xcf, 0xf3, 0x61, 0xbe,
0xe7, 0x79, 0xeb, 0x85, 0x87, 0xa5, 0x5e, 0x59, 0xf4, 0x40, 0x0f, 0x1b, 0x9f, 0xd5, 0xda, 0xf7,
0xdf, 0x4f, 0x76, 0x9e, 0x6f, 0xa8, 0xaf, 0x6f, 0xfc, 0x3b, 0x00, 0x00, 0xff, 0xff, 0xf2, 0xe9,
0x47, 0xc4, 0x1a, 0x17, 0x00, 0x00,
}

View File

@ -117,7 +117,7 @@ message CommunityCategory {
}
message CommunityInvitation {
bytes community_description = 1;
bytes wrapped_community_description = 1; // community in a wrapped & signed (by owner) protocol message
bytes grant = 2;
string chat_id = 3;
bytes public_key = 4;